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
2013-10-01refs #4134 renamed some hooksThomas Steur
2013-09-03Fix test, simplifyFabian Becker
refs #3710
2013-09-03Extend AnonymizeIP to properly mask IPv6 addresses.Fabian Becker
maskLength is now interpreted as "mask level" (0-4) and determines the number of bits to be masked. Level IPv4 IPv6 0 0 0 1 8 64 2 16 80 3 24 104 4 32 n/a fixes #3710
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-07-21Refs #4059 Work in progress: Conversion to use Namespaces: Period*, Metrics, ↵mattab
Segment, SegmentExpression, PluginsManager. Removed some deprecated code.
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-07-18Refactor Piwik_Config to \Piwik\Core\ConfigFabian Becker
2 steps required: 1. Refactor > Move > \Piwik\Core\Config (uncheck "Create new File") 2. Refactor > Rename > Piwik_Config to Config
2013-07-15Refs #3942mattab
* Removing getInformation() call from core plugins * Renamed translation key PDFReports_PluginDescriptionReports => PDFReports_PluginDescription
2013-07-12fixed/added some missing doc blockssgiehl
2013-07-06Implemented custom event dispatching system for Piwik (replaced event ↵Benaka Moorthi
dispatcher lib in libs/Event). Notes: - New dispatcher can execute callbacks before or after other callbacks. - It is also possible to dispatch events only to a specific set of plugins instead of all plugins. - Moved Piwik::unprefixClass to Piwik_Common::unprefixClass - Added visibility to some event handlers that were missing it. - Allowed two unit tests to fail w/ better diagnostic messages.
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-10-19refs #3227 removing plugin simple testssgiehl
git-svn-id: http://dev.piwik.org/svn/trunk@7240 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-05-03added/fixed several doc blocks; fixed some csssgiehl
git-svn-id: http://dev.piwik.org/svn/trunk@6243 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-03-05refs #1713 - merge dev branch to trunk (config class refactoring)robocoder
git-svn-id: http://dev.piwik.org/svn/trunk@5951 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-02-08Fixes #2902mattpiwik
* removed ip_address_pre_mask_length setting -- now there is only one setting which anonymises after testing for IP exclusion * Reverted the "synchronize" from [5772] since not needed anymore * Added integration test to test that IP is indeed anonymized * Added integration test to test that IP is anonymized AFTER testing for ip exclusion git-svn-id: http://dev.piwik.org/svn/trunk@5776 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2011-11-13fixes #2769 plus refactoringrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@5431 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2011-05-03fix commentrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@4630 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2011-04-23fixes #1111 - add support for IPv6 addresses (tracking, anonymization, and ↵robocoder
exclusion) fixes #2095 - add new anonymization hook (pre-heuristics) fixes #2055 - optional IP filter when multiple proxies present fixes #1775 - SitesManager: supports CIDR notation for IP exclusion Notes: * Installer no longer checks for IPv6, so the related messages should be deleted from translations * IPv4 mapped addresses (e.g., ::ffff:127.0.0.1) are no longer re-mapped into IPv4 space * users who to query IP addresses from MySQL directly, can use the following SQL, but inet_ntoa() is limited to IPv4 addresses: {{{ select inet_ntoa(conv(hex(location_ip), 16, 10)) from piwik_log_visit; }}} * Windows: IPv6 inet_pton()/inet_ntop() not supported until php 5.3; see #2351 git-svn-id: http://dev.piwik.org/svn/trunk@4533 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2011-04-04refs #2256 - more invalid tagsrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@4312 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-09-27refs #1735 - oops; my mistakerobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@3188 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-09-27fixes #1735 - thanks arnotronrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@3186 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-09-13tweaking all the unit tests to also run from the CLI, e.g.,robocoder
find plugins -name '*.test.php' -exec php {} \; git-svn-id: http://dev.piwik.org/svn/trunk@3143 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-06-03fixes #1152 - remove deprecated "name" from getInformation() arrayrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@2264 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-02-28fixes #692 - plugin (deactivated by default) to anonymize visitor IP ↵robocoder
addresses; the number of octets to mask is configurable; let me know if I've missed any edge cases in the unit tests git-svn-id: http://dev.piwik.org/svn/trunk@1877 59fd770c-687e-43c8-a1e3-f5a4ff64c105