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-01-12Moved Piwik\TaskScheduler to Piwik\Scheduler\SchedulerMatthieu Napoli
2015-01-12Moved classes into new Scheduler componentMatthieu Napoli
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-07-23removed lots of trailing whitespaceChristian Raue
2014-06-10Piwik is a free/libre analytics platform. Refs #4455 GNU Package requirement ↵mattab
to use free/libre instead of open source
2014-06-06refs #5301 to prevent naming collisions use the full class namespaceThomas Steur
2014-02-03Remove all occurences of @package / @subpackage / @category from core/ files.Fabian Becker
refs #4609
2013-12-08Refs #4200 revised some of class/method docs.diosmosis
2013-12-03refs #4244 converted more linksThomas Steur
2013-12-03converted some links to use @linkThomas Steur
2013-11-13Refs #4200, finished documenting scheduled task related classes.diosmosis
2013-11-01Fixing build.diosmosis
2013-11-01Fixing build.diosmosis
2013-11-01Refs #4200, documented the ScheduledTask class.diosmosis
2013-10-07refs #4194 marked some classes/methods/functions as available for pluginsThomas Steur
2013-09-20fix syntax errorThomas Steur
2013-09-20cache marketplace requests only for 20minutes, clear cache entries once a dayThomas Steur
2013-08-02Refs #4059 Converting dozens of plugins/* classes to use Namespaces, ↵mattab
\Piwik\Plugins\* Added namespaces to functions.php files in the five plugins that had one Work in progress
2013-07-23Refs #4059 Work in progress: Conversion to use Namespaces of dozen more classesmattab
Removed many Piwik_ functions, in Piwik 2 it is best practise to use the methods calls instead Todo: finish converting core/ classes + convert plugins/ classes to use \Piwik\Plugin namespace + fix build + Merge master
2013-03-28Mass conversion of all files to the newly agreed coding standard: PSR 1/2mattab
Converting Piwik core source files, PHP, JS, TPL, CSS More info: http://piwik.org/participate/coding-standards/
2013-02-06Fix typo in comment.Fabian Becker
2013-02-06Removing SVN $, since Git does not provide auto properties.Fabian Becker
2013-01-26fixes #3704 #3706JulienMoumne
git-svn-id: http://dev.piwik.org/svn/trunk@7790 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-10-15Refs #2992 Site Search KABOOM, Refs #49mattpiwik
Implementing Site Search tracking & reporting in Piwik core! * New Admin UI to customize, for each site, wheter site search is enabled. Also options to set default values to use. * New Reports: Searches, Searches with no result, Search categories, Top Pages Following a Search * to track "No result keyword" users will have to tag their site with a JS call, or add a new parameter to the search result page &search_count=X (X being zero for no result searches) * Reports works with Row evolution, PDF/HTML reports, Piwik Mobile * idaction_url is now NULLable because, Site Search records a page with idaction_name == Keyword, and idaction_url == NULL. This ensures that the Site Searches don't create "Page URL Not defined" records. * updates to Tracker JS API, new function trackSiteSearch, also added in PHP tracker * New fields in log_visit to track searches * new segment, "searches" which can be used to select visitors who did a search ie. searches>0 or those who searched a lot, ie searches>10 TODO: * commmit integration test, TESTING, DOCS, FAQ, release, and a nice Prayer to the universe and the stars, hoping that I can code a major new feature without any bug... * It would be awesome to have compatiblity with Transitions so we can see, for a given site search, what are the starting pages and Destination pages Thank you for your patience Timo, and thank in advance everyone for your help Testing this new feature! git-svn-id: http://dev.piwik.org/svn/trunk@7190 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-07-14some doc block / code improvementssgiehl
git-svn-id: http://dev.piwik.org/svn/trunk@6510 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-04-22Fixes #2805, made LogDataPurger delete unused actions from log_actions.benakamoorthi
Notes: * Added more priority levels for scheduled tasks. Priorities can be between 0 and 12 now. * Modified priority of purge data tasks to have LOW priority and optimize tables task to have LOWEST priority. * Fixed bug introduced in #53 w/ regard to task priorities. lowest priority tasks were not being run. * Added Piwik_LockTables & Piwik_UnlockTables functions to PluginsFunctions/Sql.php. * Added prefixTables(...) utility function to Piwik_Common. git-svn-id: http://dev.piwik.org/svn/trunk@6221 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-04-07Fixes #53. Augmented the log data deletion feature. Added the ability to ↵benakamoorthi
purge old reports and metrics. Other changes: * Added the following plugin functions: Piwik_DropTables, Piwik_OptimizeTables, Piwik_DeleteAllRows. Also refactored existing code to use them. * Modified graph, tag cloud & datatable templates/views to show a different message if there's no data for a report and if its possible that report was purged. * Refactored DbStats API, added getAllTablesStatus method that doesn't modify the SHOW TABLE STATUS result. * Deletelogs config options are now stored in the DB. * Added task priority support to the TaskScheduler. git-svn-id: http://dev.piwik.org/svn/trunk@6174 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-08-20refs #1630robocoder
git-svn-id: http://dev.piwik.org/svn/trunk@2968 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-08-12fix formattingrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@2922 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-08-12fix svn:keywordsrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@2921 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-07-24Fixes #1184 Great patch by Julien Moumne to add Scheduled Task API in Piwikmattpiwik
* possibilty to schedule daily/weekly/monthly tasks * tasks are executed via the crontab script for now (refs #1411 should be updated to trigger the tasks as well) * features the first use case: a Monthly OPTIMIZE TABLE statement ran on all piwik archive tables (to defragment the space after we run the DELETE statements) * Next candidates: PDF reports by email, custom Alerts * comes his very serious unit testing git-svn-id: http://dev.piwik.org/svn/trunk@2648 59fd770c-687e-43c8-a1e3-f5a4ff64c105