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
AgeCommit message (Collapse)Author
2015-03-10Rename Archive\Invalidator to ArchiveInvalidator and Archive\Purger for ↵diosmosis
ArchivePurger for clarity.
2015-03-05Merge branch 'master' into 7181_isolated_archive_purgingdiosmosis
Conflicts: core/ArchiveProcessor/Rules.php
2015-03-05Refs #7181, move ArchiveInvalidator to Piwik\Archive\Invalidator away from ↵diosmosis
Piwik\DataAccess since it iss not a DAO.
2015-03-05Refs #7181, rename remaining InvalidatedReports class to ↵diosmosis
SitesToReprocessDistributedList and move to Piwik\CronArchive since CronArchive is only consumer of the list. Made the list derive from Piwik\Concurrency\DistributedList.
2015-03-05#5277 use the logger to log stuff, not `print`Matthieu Napoli
2015-02-16phpdoc and scrutinizer warning fixesMatthieu Napoli
2015-01-09fix Notice: Undefined index: defaultReport in ..../core/CronArchive.php on ↵mattab
line 1518 reported in http://forum.piwik.org/read.php?2,123367
2015-01-05Submodulesmattab
2014-12-22When importing visits on a day different from the visits day, invalidate the ↵Thomas Steur
archived reports
2014-12-17Merge branch 'master' into log-refactoring-1Matthieu Napoli
Conflicts: composer.json composer.lock config/global.php core/Container/StaticContainer.php
2014-12-16Merge pull request #6856 from piwik/6672_preprocess_ranges2.10.0-b7Matthieu Aubry
during core:archive console command, preprocess any custom date ranges that were selected in any User's Preferences
2014-12-16Fixes #6672 Pre-process custom date ranges when any user has this selected ↵mattab
in preferences, and pre-process for ALL websites this user has access to, in case he selects "All websites" dashboard
2014-12-16Provide clearer URL error message in CronArchive.diosmosis
2014-12-16Do not exit in CronArchive::logFatalError, throw exception.diosmosis
2014-12-16Refactor without changing logicmattab
2014-12-15Merge remote-tracking branch 'origin/master' into log-refactoring-1Matthieu Napoli
Conflicts: composer.lock
2014-12-09Fixes #6830 If timestamp success fetched from DB is in the future, we set it ↵mattab
to now
2014-12-08Merge branch 'master' into log-refactoring-1Matthieu Napoli
2014-12-08fixes #6823 When there are several Super Users in Piwik, archive.php web ↵mattab
cron should accept any of those Super User tokens
2014-12-05#6622 Logger refactoring: removed manual overriding of the log level in CLI ↵Matthieu Napoli
since it's now dependent of the verbosity level `Piwik\Log::setLogLevel` is now deprecated and doesn't do anything. Its usages have been removed.
2014-11-27Merge branch 'master' into processed_metrics_metadatadiosmosis
Conflicts: tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_scheduled_report_in_csv__ScheduledReports.generateReport_month.original.csv tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_scheduled_report_in_html_tables_only__ScheduledReports.generateReport_month.original.html tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getReportMetadata_day.xml tests/PHPUnit/System/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_tables_only__ScheduledReports.generateReport_week.original.html
2014-11-27Fixes #6730 when period archiving fails (or any of segments fails) then we ↵mattab
will make sure to re-process the data for this website in the next run
2014-11-18Fix cron archiving if no visits on some days.diosmosis
2014-11-14Make MetricsFormatter a class with instance methods and move Html related ↵diosmosis
functionality to derived class. Use FOrmatter in Metric::format calls so Metrics do not have to be aware of context of formatting, and so Metric::format methods will have less code redundancy.
2014-11-09Fixing more tests.diosmosis
2014-11-05fixes #6598 Add sites to be invalidated when the archiving failed to make ↵mattab
sure we try to reprocess again later
2014-11-05refs #6508 some refactoring and renamingmattab
2014-11-05refs #6508 started refactoring the code, created two new objects: ↵mattab
ArchiveInvalidator to include the API CoreAdminHome.invalidateArchivedReports and InvalidatedReports to store the info of which report was invalidated
2014-10-16Fix CronArchive token_auth refactor.diosmosis
2014-10-16Remove unused variable in CronArchive (CronArchive::$isCoreInited).diosmosis
2014-10-16Forgot to remove calls to initCheckCli in last commit.diosmosis
2014-10-16Moving CronArchive token auth check to archive script since it is only for ↵diosmosis
when the archive.php script is invoked from a web request.
2014-10-04moved some queries within core to model filesThomas Steur
This is only a start. Especially the Tracker model contains quite a bunch of different models. Ideally, one day, the tracker is refactored and all the goal tracker stuff including the queries are in the goal plugins, all the ecommerce stuff is in an ecommerce plugin etc. Haven't moved some of the LogAggregator queries.
2014-09-30Deprecating Piwik::setUserHasSuperUserAccess() and switching to ↵diosmosis
Access::doAsSuperUser().
2014-09-30coding style fixes, some PHPStorm inspection fixes, improved readability of ↵Thomas Steur
code, few refactorings, all as part of our code cleanup strategy
2014-09-22rename Site -> Websitemattab
2014-09-22Small function renamemattab
2014-08-20Refactor factory methods into base Factory type for ease of testing.diosmosis
2014-07-23reduced multiple empty lines to exactly oneChristian Raue
2014-07-23removed lots of trailing whitespaceChristian Raue
2014-07-22Merge pull request #5847 from craue/code-cleanup-2Thomas Steur
code cleanup
2014-07-21Refs #5807, forgot to commit change default value change.diosmosis
2014-07-21Refs #5807, change CronArchive:: default value to be array() and modify docs.diosmosis
2014-07-21Fixes #5807, refactor CronArchive class so it does not configure itself ↵diosmosis
based on command line arguments. It now has properties that must be set. The core:archive command has been refactored to set these properties based on command line args. Also includes: - bug fix to CronArchive::initLog method (config was modified after log instance created which negated it's effect) - misc/archive.php no longer uses Archive.php but executes the core:archive console command using Piwik\Console - remove forcelogtoscreen parameter (no longer necessary due to initLog changes)
2014-07-19fixed field visibility keyword orderChristian Raue
2014-07-15fixed method signaturesChristian Raue
2014-07-15removed unused variablesChristian Raue
2014-07-10--force-periods will respect the config setting "Periods enabled in API" ↵mattab
enabled_periods_API
2014-07-07included default value for concurent threads numberMichał Gaździk
2014-07-01add --concurrent-requests-per-website: When processing a website and its ↵mattab
segments, number of requests to process in parallel refs https://github.com/piwik/piwik/pull/319 refs #5396