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
2020-04-24Update doc blocks with new name (#15857)Stefan Giehl
* update doc blocks with new name * submodule updates * updates expected UI files
2019-07-05Update the link tag for all php files (#14635)Luca
I updated the link tag for all php files with the new matomo link. Not sure if it is realistic that this will get merged but I though that someday someone has to do this(?)
2018-05-03Added new setting field to configure multiple values (#12807)Thomas Steur
* Added new setting field to configure multiple values * remove not needed comment * better spacing between rows * make fields wider * fix ui test * rename multipair to multituple * rename variable * fix it was not possible to persist nested arrays * only catch error when using old version * catch exception * better implementation * require higher version * trying to fix json_encoded columm missing in db during updater * silence errors * hard code the query * fix user login cannot be null * fail if query fails
2018-04-24GDPR + Add a couple of new platform features especially around validating ↵Thomas Steur
settings (#12558) * add a couple of new platform features especially around validating settings * more validators and other tweaks * few tweaks * allow plugins to add header script in JS tests * some work on gdpr * remove email feature * menu update * add date tooltip * make sure privacy has its own icon * added some text * add opt out info * better titles * add some information about webserver logs * add log import notice * give angular some time to render * show border around iframe * make sure to place a notification in modal dialog if needed * when opening a modal, make sure the top part is visible * disable newsletter sign up by default * command line tool to anonymize and remove previously tracked raw data * implement some basic consent features into piwik.js * minor tweak * schedule entries to anonymize data in past * let users anonymize historical data * better overview * better naming * explain consent tracking * add legitimate interest * new menu structure for privacy * use a proper db table for scheduled anonymizations * add some tracker tests * some tests and fixes * couple of fixes and tests * starting to add some UI tests * more tweaks * add missing file * fix jslint * have the field full width * more tweaks * create directory if needed * various fixes * fix some tests * make sure keys will be always returned in same order * more fixes * fix some tests * apply feedback from review * fix some tests * this might fix mysqli tests * fix some tests * trying to fix mysqli tests * fix system test * fix comment * remove some duplicated code * update method name * trigger event when logs need to be deleted * add possibility to anonymize userId and orderId * trigger event in tracking code page * expire consent in hours * post another event * update wording for privacy GDPR * fix various ui tests * fix some tests * trying to fix ui tests * trigger another test run * fix system test * fix some ui tests * show a table of contents on tracking code page, fix title, add mobile apps and API * fix ui test * 3.5.0-b2 update * Re-generate piwik.js * fix job status and selector style * make sure to include only sites with admin access * some tweaks * fix some ui tests * fix some ui tests * fix test
2016-12-16Store site search settings correctly (#11022)Stefan Giehl
* store site search settings correctly * Updated instruction for JS code in https://github.com/piwik/piwik/pull/11011 https://github.com/piwik/piwik/issues/11007 * improve check if default keywords are used * Tests
2016-04-11refs #7983 let plugins add or remove fields to websites and better settings apiThomas Steur
2015-06-17refs #7893 added possibility to measure mobile appsThomas Steur
2015-05-27fix core folder with php-cs-fixer for psr-2fabiocarneiro
2015-04-08load all site ids only if needed. Makes dashboard much faster if one is ↵Thomas Steur
superuser and has many sites
2014-11-27refs #6728 automatically cache settings in tracker cache if used in tracker ↵Thomas Steur
mode. As soon as a setting is used in tracker mode we will cache it now making it much easier for developers to use settings in tracker mode and we will no longer query the database on each tracking request if a setting is requested apart from cache creation. Refactored the settings API under the hood to make this possible. The classes were doing things they were not supposed to do. For instance settings class also took care of storage which it should not and settings class took care of many validation things that should be done in a setting class. I cleaned up that code and it is also much better testable now.
2014-09-18fix commentThomas Steur
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-05-29refs #5212 added possibility to make a system setting readable for non super ↵Thomas Steur
users
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 fix some linksThomas Steur
2013-12-03refs #4244 converted more linksThomas Steur
2013-12-03converted some links to use @linkThomas Steur
2013-11-12Refs #4200, revised documentation for core/Settings/Setting.php and changed ↵diosmosis
names of some fields.
2013-10-25refs #4126 cleanupThomas Steur
2013-10-25refs #4126 added possibility to call getValue directly on the settingThomas Steur
2013-10-25refs #4126 make sure to list settings by orderThomas Steur
2013-10-25refs #4126 added some tests, fixed some bugs and moved some methods where ↵Thomas Steur
they belong to not have a circular dependency
2013-10-24refs #4126 added more example, handle type array and field multi select ↵Thomas Steur
correct, code cleanup
2013-10-24refs #4126 added some documentation and removed some unused methodsThomas Steur
2013-10-24refs #4126 refactored plugin settings to work with User and System setting ↵Thomas Steur
data objects, the plugin settings does not know anything abotu User/System settings so it is possible to add different kind of settings in the future. Also added nonce when saving settings