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-04-17refs #3838 use pagination in SitesManager to be able to manage many hundreds ↵Thomas Steur
or thousands of sites
2014-07-23removed lots of trailing whitespaceChristian Raue
2014-07-15fixed method signaturesChristian 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-02-03Remove all occurences of @package / @subpackage / @category from core/ files.Fabian Becker
refs #4609
2014-01-27Simplify API of Pattern methodmattab
2013-12-18rename class Filter -> BaseFilter to prevent error "two constructors are ↵Thomas Steur
defined on PHP 5.3.2"
2013-12-03converted some links to use @linkThomas Steur
2013-10-23Refs #4200, document rest of DataTable filters.diosmosis
2013-07-21Refs #4059 Work in progress: Conversion to use Namespaces: Period*, Metrics, ↵mattab
Segment, SegmentExpression, PluginsManager. Removed some deprecated code.
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-13filter_pattern= will now work on metadata columns. This will be useful for ↵mattpiwik
example, if we wanted to select only a number of "countries", from the UserCountry.getCity API, we could do the following: &filter_column=country&filter_pattern=de|fr|es|it|nl It will filter and only return only the Cities, which belong to the country specified. This will work ,because rows have a metadata <country> Refs #1652 git-svn-id: http://dev.piwik.org/svn/trunk@7173 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-05-28added/fixed doc blockssgiehl
git-svn-id: http://dev.piwik.org/svn/trunk@6353 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2011-03-23Refs #2218 Thanks for the tip Anthon, it helped me see the light... mattpiwik
Now the filter object itself will take care of applying recursively when the table was recursively loaded indeed. Leaving open until I can check that all occurences on demo are fixed git-svn-id: http://dev.piwik.org/svn/trunk@4169 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2011-01-17Fixes #173 - making all filters recursive by default (no performance impact ↵mattpiwik
since it won't load the tables if they were not loaded in the API). Updating all filters to reflect new abstract class signature git-svn-id: http://dev.piwik.org/svn/trunk@3764 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-07-27Fixing bugmattpiwik
git-svn-id: http://dev.piwik.org/svn/trunk@2703 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-07-27fixing spacesmattpiwik
git-svn-id: http://dev.piwik.org/svn/trunk@2702 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-07-27Refs #1486mattpiwik
Patch by halfdan required by Alerts plugin * Invert pattern match * Date.addPeriod and Date.subPeriod git-svn-id: http://dev.piwik.org/svn/trunk@2701 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-09refs #911 - simplifying regexps; preg_quote() where neededrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@1377 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-05-05- ADDED search field below data tables is now using the regular expression ↵mattpiwik
syntax. For example, a search for "google|yahoo" would match all rows containing "google" or "yahoo". All search strings containing any of the special characters from this list: . \ + * ? [ ^ ] $ ( ) { } = ! < > | must be escaped with a back slash, eg. if you want to search for keywords containing "piwik!" you would search for "piwik\!". - ADDED new configuration option: default number of rows returned in API responses "API_datatable_default_limit = 50" - REMOVED the automatic generic filters. The limit and sort and safe decode are applied by each module when necessary. - removed exact match filter. Now all searches are using regular expressions syntax. Exact match can be done using ^exact search here$ - fixed notice when natural sort on a non existing column - fixed CSV export for datatable_array - clarified code for plotting multiple lines in an evolution chart - FIXED #624 Added icon "save as image" below all graphs (next to the Export icon) - moved all JS functions into the piwikHelper static class - added example in ExampleUI plugin to plot only visits from google and yahoo! in 4 lines of code - added message when flash is disabled and graph not showing, linking to piwik faq. - added expressInstall.swf feature git-svn-id: http://dev.piwik.org/svn/trunk@1085 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-03-20- fix #14 Searching on countries within the DataTable is not working properlymattpiwik
- if Piwik_GetWidgetList is called several times, hook is only fired once - search in datatable is now case insensitive git-svn-id: http://dev.piwik.org/svn/trunk@992 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-11-20- clearspring export now works. check out widgetize modulemattpiwik
git-svn-id: http://dev.piwik.org/svn/trunk@720 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2008-08-04oops i totally screwed up my last commit, deleting /modules instead of ↵mattpiwik
renaming it... git-svn-id: http://dev.piwik.org/svn/trunk@587 59fd770c-687e-43c8-a1e3-f5a4ff64c105