Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2015-02-19Merge pull request #7244 from piwik/unique_visitors_metasitesMatthieu Aubry
Correctly process unique visitors across websites in MetaSite
2015-02-19 do not process INDEX_NB_UNIQ_FINGERPRINTS unless specifically asked formattab
2015-02-19Making algorithm processing unique visitors across websites actually work, ↵mattab
refs https://github.com/PiwikPRO/plugin-MetaSites/issues/3
2015-02-192.11.1-b12.11.1-b1Matthieu Aubry
2015-02-19Fixes #7195 Make code more efficient by only updating the numeric archive ↵mattab
tables (blob tables don't have `done` flags)
2015-02-182.11.0 - KABOOM!2.11.0Matthieu Aubry
2015-02-16phpdoc and scrutinizer warning fixesMatthieu Napoli
2015-02-16Fix warning detected by Scrutinizer:Matthieu Napoli
Since getLocalConfigInfoForHostname() is declared private, calling it with static will lead to errors in possible sub-classes. You can either use self, or increase the visibility of commandExists() to at least protected.
2015-02-16Fix warning detected by Scrutinizer:Matthieu Napoli
Since commandExists() is declared private, calling it with static will lead to errors in possible sub-classes. You can either use self, or increase the visibility of commandExists() to at least protected.
2015-02-162.11.0-rc12.11.0-rc1Matthieu Aubry
2015-02-16Return null in case a return value is expected (suppresses warning)Matthieu Napoli
2015-02-16Renamed variableMatthieu Napoli
2015-02-16Merge pull request #7200 from piwik/4633_2Matthieu Aubry
Renamed SegmentFilter metadata to segment
2015-02-16Added log statements in the task scheduler to debug future problems and #6868Matthieu Napoli
2015-02-16refs #4633 we should convert a segment value to a segment filter before ↵Thomas Steur
queued filters are applied which allows us to use the prependSegment filter in combination with AddSegmentValue
2015-02-16refs #4633 actually it is not a good idea to generate a segment for ↵Thomas Steur
subtables since they can belong to different repots and need different segments
2015-02-16refs #4633 a couple of code improvements eg we do not need to run a filter ↵Thomas Steur
within a filter and run them recursive. not sure if recursive is a good idea though
2015-02-14refs #7111 - added baidu.co.thsgiehl
2015-02-13refs #4633 rename segment filter to segment, fixed a bug re visitTime and ↵Thomas Steur
extracted code into a filter
2015-02-13refs #4633 rename segmentFilter => segmentThomas Steur
2015-02-132.11.0-b72.11.0-b7mattab
2015-02-132.11.0-b62.11.0-b6Matthieu Aubry
2015-02-13refs #4633 added tests for newly added filtersThomas Steur
2015-02-13refs #4633 open segmented visitor log with one click on a rowThomas Steur
2015-02-13refs #4633 update metadata API to include information whether a report is ↵Thomas Steur
linked to a segment
2015-02-13Merge pull request #7189 from piwik/7136Matthieu Aubry
Site Searches metric should include duplicate site searches requests
2015-02-13Refs #6436, #7112 fix performance regression, assume there are not ↵2.11.0-b5diosmosis
duplicates in DB when doing segment query foraction since group by in sub-query is slow.
2015-02-13update commentmattab
2015-02-12ref #7117 Make sure we get the real list of activated plugins when adding ↵Matthieu Napoli
plugin configs
2015-02-12Moved an exception into its own fileMatthieu Napoli
2015-02-12Moved the monolog configuration and code into a Monolog pluginMatthieu Napoli
2015-02-11Trim the hostname before sending email, fixes #7157mattab
2015-02-11Merge pull request #7117 from piwik/plugin-configMatthieu Aubry
Plugins can provide their own config files
2015-02-11Simplified the cache configurationMatthieu Napoli
2015-02-10ref #6609 Plugins can provide their own config filesMatthieu Napoli
2015-02-10#7094 Added a new "Development" language that shows the raw translation idMatthieu Napoli
This language is shown when development mode is enabled.
2015-02-09Merge pull request #7119 from piwik/performance_improvementsMatthieu Aubry
Various performance improvements, especially for Range period and installations with many sites
2015-02-09Test to remove the if statement and see if tests still passMatthieu Aubry
2015-02-09Merge pull request #7112 from piwik/6436_action_dupesMatthieu Aubry
Refactor new action insertion code so duplicate actions will not exist + provide means to fix duplicates
2015-02-09Merge branch 'master' into removed-registryMatthieu Napoli
Conflicts: CHANGELOG.md
2015-02-09Merge pull request #7146 from peterbo/exclude-tracking-paramtersMatthieu Aubry
Allow Plugins to register parameters to exclude from the tracking URL
2015-02-09Fixes #7145 - Allow Plugins to register parameters to exlude from the ↵p.boehlke
tracking URL.
2015-02-08Forgot to document TableMetadata DAO class.diosmosis
2015-02-08fixes #6604 - allow empty keyword for Ixquicksgiehl
2015-02-08Merge branch 'master' into 6436_action_dupesdiosmosis
2015-02-08Refactoring entire branch, moved most of logic to command class, turned ↵diosmosis
DuplicateActionRemover into a DAO that only deals w/ duplicate actions, created two new DAO classes (one for log_action manipulation and one for getting relational table metadata), deprecated SHOW COLUMNS method in Db in favor of new table metadata DAO, and added & fixed tests.
2015-02-07Merge pull request #7021 from piwik/move_language_reportStefan Giehl
Moved language reports to their own plugin
2015-02-06Remove version change.diosmosis
2015-02-06Fixes #7145 - Allow Plugins to register parameters to exlude from the ↵p.boehlke
tracking URL.
2015-02-05refs #6811 make sure the endDate is valid when switching between websitesThomas Steur
Imagine website is created on 2015-12-20, if current selected date was eg 2015-04-18,2015-04-29 the startDate was automatically fixed already to 2015-12-20,2015-04-29 but not the endDate. This is now done and it will apply 2015-12-20,2015-12-20. The code looks a bit more complex as there was another bug that although it applied 2015-12-20,2015-12-20 it did still display the date range for 2015-04-18,2015-04-29 in the UI in the calendar which is wrong. Also I do now fix the date in case period != range. So period=day&date=2015-04-29 would result in period=day&date=2015-12-20