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-15more consistent usage of link color and other ui elements in user/admin areaThomas Steur
2015-01-15show a menu in the user area, lots of improvements to be more consistentThomas Steur
2014-12-04Tracker refactoringThomas Steur
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-08-15refs #5414 this could fix the segmentation fault. It is more of a guess but ↵Thomas Steur
I can see in the strace settings could be envolved in this. Anyway, Settings should use findComponents to get the instances. Wondering if a test fails?
2014-07-23removed lots of trailing whitespaceChristian Raue
2014-06-18Merge remote-tracking branch 'origin/master' into ↵Thomas Steur
report_and_dimension_refactoring Conflicts: plugins/DevicesDetection/DevicesDetection.php plugins/Referrers/Referrers.php
2014-06-16moved some more dimensions to plugins, fixed some issues, removed some more ↵Thomas Steur
duplicated code etc. Tests will not be green as there fixes to country detection
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
2014-01-28Capitalizing Super User for consistency refs #4564mattab
2014-01-23refs #4564 introducing new methods to make user a user has superuser access. ↵Thomas Steur
Old methods will still work but are marked as deprecated and they will be removed in a future release
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, documenting more Settings related classes and fixing build.diosmosis
2013-11-12Refs #4200, revised documentation for core/Settings/Setting.php and changed ↵diosmosis
names of some fields.
2013-11-05Fixing UI Testsmattab
2013-10-29refs #4179 use notification to display plugin successfully activated messageThomas Steur
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 make sure a user cannot read/change settings of another userThomas 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 allow only to change the settings for activated pluginsThomas Steur
2013-10-24refs #4126 display a link to plugin settings page from plugins and themes ↵Thomas Steur
page as well as after activating a plugin
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
2013-10-23refs #4126 for security remove settings in case a user is deleted or a ↵Thomas Steur
plugin installed, needs to be tested
2013-10-22refs #4126 plugins just have to create a settings.php, there is no longer a ↵Thomas Steur
need to use a hook
2013-10-22refs #4126 fix settings were not savedThomas Steur
2013-10-22refs #4126 started to work on plugin settingsThomas Steur