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
2014-12-04Tracker refactoringThomas Steur
2014-11-07refs #6435 replace possible comma with a dot. Not 100% sure if that works yetThomas Steur
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-06-10Piwik is a free/libre analytics platform. Refs #4455 GNU Package requirement ↵mattab
to use free/libre instead of open source
2014-02-03Remove all occurences of @package / @subpackage / @category from core/ files.Fabian Becker
refs #4609
2013-10-08Applying phpstorm code style PSR refs #3771mattab
2013-09-14Refactoring Profiler features out of Piwik classmattab
2013-07-31Refs #3741 PHP Namespace conversion continued: Tracker classes,mattab
renaming Unzip to Uncompress, Renaming Tracker/Referer to Tracker/Referrer, and few more
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-07-20Removing extra namespace \Coremattab
2013-07-18Refactor class Piwik_Common to \Piwik\Core\CommonFabian Becker
Notice that auto refactoring has created a nested namespace. Not sure this is what we want - so we might have to edit those nested namespaces afterwards (I think they don't look so good)
2013-07-18Refactor class Piwik_Commin to \Piwik\Core\CommonFabian Becker
Notice that auto refactoring has created a nested namespace. Not sure this is what we want - so we might have to edit those nested namespaces afterwards (I think they don't look so good)
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-06Removing SVN $, since Git does not provide auto properties.Fabian Becker
2012-06-21added/fixed doc blockssgiehl
git-svn-id: http://dev.piwik.org/svn/trunk@6486 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-05-24completed a bunch of php doc blockssgiehl
git-svn-id: http://dev.piwik.org/svn/trunk@6300 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2011-12-02refs #2608 - Non-static method Piwik_Tracker_Db::isProfilingEnabled() should ↵robocoder
not be called statically git-svn-id: http://dev.piwik.org/svn/trunk@5513 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-11-15fixes #1817 - added Piwik_Tracker_ExitWithException(); also fixed a ↵robocoder
regression where db exceptions were not being caught because the adapters no longer throw PDOException git-svn-id: http://dev.piwik.org/svn/trunk@3316 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-04-13Refs #56mattpiwik
* reverted field log_visit.visit_server_date and the INDEX on this field, as it is used by Tracker_Visit->recognizeTheVisitor() and significantly breaks performance if removed. The index on visit_last_action_time that was used instead has a very high cardinality, and queries were very slow, locking up the whole table. Drawback is that we now have 2 distinct large indexes on the largest Piwik table... * Fixed issue from forum where archiving for today failed to execute in the crontab http://forum.piwik.org/index.php?showtopic=7211 * Fixed warning in Piwik_Tracker_Db->fetchOne causing tracking to fail on empty cache git-svn-id: http://dev.piwik.org/svn/trunk@2091 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-04-06refs #1292/[2054] - typo in phpdocsrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@2055 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-04-06fixes #882 - Piwik_Query() can now be used by tracker plugins;robocoder
fixes #1292 - remove (deprecated/unused) Piwik_Quote() since we use Zend_Db for prepared statements; add Piwik_FetchRow() for completeness git-svn-id: http://dev.piwik.org/svn/trunk@2054 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-09-19refs #904 - mysql error codesrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@1475 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-09-18fixes #904 - MySQL error codes; unsupported adapters can map these to ↵robocoder
driver-specific SQLSTATE (see example) fixes #980 - Piwik Installation support for "MySQL Improved" (mysqli) extension fixes #984 - Set client connection charset to utf8. Fixed tracker profiling data not recorded until after report generated. More refactoring and database abstraction: - Installation gets a list of adapters instead of hardcoding in the plugin - checking for database-specific system requirements deferred to the adapter - error detection moved to adapter but we still use MySQL error codes rather than defining new constants Note: unit tests don't run with MYSQLI -- Zend Framework's Mysqli adapater doesn't support prepare() yet git-svn-id: http://dev.piwik.org/svn/trunk@1473 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-09-07fixes #425 - provide MySQLi support; added a factory method and refactored ↵robocoder
Tracker/Db.php into separate adapters git-svn-id: http://dev.piwik.org/svn/trunk@1456 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-08-23Tweak phpdoc config. Add some missing phpdocs.robocoder
git-svn-id: http://dev.piwik.org/svn/trunk@1431 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-08-22phpdoc cleanup:robocoder
* add @category (Piwik => 'core', Piwik_Plugins => 'plugins') * in core, use @package and @subpackage more consistently to group files/classes; exception is DataFiles/*, PluginsFunctions/*, and SmartyPlugins/* * in plugins, @package is the plugin name * removed '@param none' -- not a phpdoc convention * '@throws' and '@return void' are also not phpdoc conventions, but are widely used elsewhere, e.g., Smarty & Zend git-svn-id: http://dev.piwik.org/svn/trunk@1420 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-08-05refs #865 - re-worked unix_socket support for Zend_Db and Tracker_Dbrobocoder
Installation will now accept: - host - host:port - host:/socket/path - /socket/path Connecting to the database, Piwik will look at the unix_socket setting (if set), or a socket path in the port; else fallback to traditional host:port. git-svn-id: http://dev.piwik.org/svn/trunk@1367 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-07-19fixes #865 - unix_socket supportrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@1311 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-07-19refs #865; revert #614 [991]robocoder
git-svn-id: http://dev.piwik.org/svn/trunk@1310 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-07-08fixes #803 - remove unnecessary require_once from core, plugins, and parts ofrobocoder
libs. (I didn't touch: open-flash-chart, Zend Framework, and PEAR HTML.) git-svn-id: http://dev.piwik.org/svn/trunk@1296 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-07-01Add svn:keywords Id to .php files in core, plugins, and jsrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@1270 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-03-20- fixed #9 referer URLs with host registered as main_url or alias_url should ↵mattpiwik
NOT be counted as referer now if a visitor comes to piwik.org/ with a piwik.org/xx/y/z referer, it will be considered a direct entry rather than a referer visit. makes use of the new caching mechanism introduced with the Goal Tracking plugin, to cache website-related data for super fast access at Tracker time. - Goals is not a tracker plugin anymore (improving performance of Tracker) - fixed bug that the cache file wasn't read properly and goal queries were done at each piwik.php request git-svn-id: http://dev.piwik.org/svn/trunk@994 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-03-19Fix #614 - MySQL unix socket supportrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@991 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-03-09tiny updatesmattpiwik
git-svn-id: http://dev.piwik.org/svn/trunk@972 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-01-12- fixing failed when profiling enabled [prefixTable()]mattpiwik
git-svn-id: http://dev.piwik.org/svn/trunk@860 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2008-12-24- adding CacheFile for caching data used in Tracker/* codemattpiwik
- adding form to add / edit a Goal - fixing line ending to Unix git-svn-id: http://dev.piwik.org/svn/trunk@842 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2008-10-28- renaming all instances of LogStats to Tracker for claritymattpiwik
- improving error message to be prettier - adding footer in all admin pages for consistency git-svn-id: http://dev.piwik.org/svn/trunk@649 59fd770c-687e-43c8-a1e3-f5a4ff64c105