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
path: root/core
AgeCommit message (Collapse)Author
2013-07-21Refs #4059 Work in progress: Conversion to use Namespaces: Period*, Metrics, ↵mattab
Segment, SegmentExpression, PluginsManager. Removed some deprecated code.
2013-07-20Converting to namespace: Period*, Metrics, Segment, SegmentExpression, ↵mattab
PluginsManager
2013-07-20Converting to namespace: Period, Sitemattab
2013-07-20Converting to namespace: Archivemattab
2013-07-20Adding Logic for namespaces in Loader.php + Fixing buildmattab
Converting Access & Auth to namespace
2013-07-20Merge remote-tracking branch 'origin/master' into php-5.3-namespacesmattab
Conflicts: core/AssetManager.php core/JqplotDataGenerator/Evolution.php core/ViewDataTable/GenerateGraphData.php
2013-07-20Removing extra namespace \Coremattab
2013-07-19Refs #4041, move Piwik_ViewDataTable_GenerateGraphData logic to new ↵Benaka Moorthi
JqplotDataGenerator class that does not derive from ViewDataTable and remove recursive API request used to get graph data.
2013-07-19Fix regression caused by ViewDataTable::viewProperties refactor (setting ↵Benaka Moorthi
enable_sort to false had no effect).
2013-07-19Refs #4052 Reprocess CSS file if any of merged files has changedmattab
NOTE: does not support @import'ed less files, could be added in prepareMergedCssFile @diosmosis
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 class Piwik to \Piwik\Core\PiwikFabian Becker
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-18Fixing build.Benaka Moorthi
2013-07-18Refactor Piwik_PluginsManager and Piwik_Plugin class, moved plugin metadata ↵Benaka Moorthi
loading to a new MetadataLoader class, allowed loading of new colors.piwik.json file.
2013-07-17Added initial UI integration tests that use cutycapt to take screenshots of ↵Benaka Moorthi
URLs.
2013-07-17Fixes #4046 Not checking for config/config.ini.php in the system check since ↵mattab
it's not required (and we display warning on other screens that need config writable) Also fixing install process regression and removing config.ini.sample.php
2013-07-17Refs #546 Adding core "Uninstall" feature for Plugins and Themes + Cleanups ↵mattab
+ fix build by moving constant to PluginsManager Todo * ask for confirmation: "Do you want to uninstall X?" // warn that plugin-specific data may be deleted as part of calling the plugin's uninstall method, and may not be recoverable. * call uninstall() method on the plugin class * verify core plugins cant be uninstalled
2013-07-17Fixes #4047 Just removing the test as it is actually not useful anymore (the ↵mattab
manifest.inc.php test that follows is doing the job). thanks for the report!
2013-07-16Refs #3942mattab
* Enabling one theme a time: automatically deactivates another theme if it was enabled (except Zeitgeist which is always on)
2013-07-16Refs #3942mattab
* Zeitgeist is the foundation of our vision for an Open, Extendable Analytics Platform: Piwik 2. * This is the default theme for Piwik 2 from which other themes automatically inherit. * Plugins do not need a PluginName.php class anymore: plugin can be just a theme! (a json file + less/css/templates overloads) * Displaying themes Zeitgeist and PleineLune in the Themes listing
2013-07-15Refs #3942mattab
* Removing getInformation() call from core plugins * Renamed translation key PDFReports_PluginDescriptionReports => PDFReports_PluginDescription
2013-07-15Refs #3942 Adding Themes menu in the admin screen. Next: make Zeitgeist the ↵mattab
default theme (and allow only one enabled theme at a time)
2013-07-15Making Plugin enable/disable work for a thememattab
2013-07-15Refactor template assignment of top menu + isFileWritable()mattab
2013-07-14Fixes #4049 Thanks for the report!mattab
2013-07-13friendly message for devs if composer not updated yetmattab
2013-07-13Merge pull request #88 from tzi/pleineLune__less-installationMatthieu Aubry
CSS, templates improvements. Enable Assetmanager on login page, separate css for installer/upgrader, progress in theming, Less installation. Super boulot Thomas !
2013-07-13Change other occurances of getRequestString. Forgot to do in last commit.Benaka Moorthi
2013-07-13Refactored ViewDataTable::getRequestString to return an array so building a ↵Benaka Moorthi
URL is not necessary. Also changed request_string_suffix view property to request_parameters_to_modify.
2013-07-13Merge branch 'master' of github.com:piwik/piwik into ↵Thomas ZILLIOX
pleineLune__less-installation
2013-07-13Refs #4041, fix bug in displaying DBStats reports by redefining how ↵Benaka Moorthi
columns_to_display view property defaults and allow unique visitors to be displayed on reports that have it, outside of period=day.
2013-07-13Generate a base.css file from a base.less file for Installation & ↵Thomas ZILLIOX
CoreUpdater plugin
2013-07-13Fix regression causing un-flatten option to not be shown (custom parameters ↵Benaka Moorthi
have lower priority than existing query parameters).
2013-07-12fixed/added some missing doc blockssgiehl
2013-07-12Fix row evolution regression (series picker appears when it shouldn't).Benaka Moorthi
2013-07-12Fix regression in ViewDataTable JS parameter setting.Benaka Moorthi
2013-07-12Fix visitor log regression.Benaka Moorthi
2013-07-12Refs #4040, #4041, move all ViewDataTable properties to the viewProperties ↵Benaka Moorthi
array and allow these properties to be specified through new display metadata. Converted the Actions, Goals, UserSettings and VisitTime controllers. Notes: - Includes refactoring of ExcludeLowPopulation filter.
2013-07-12Allow extra query params to be added to ViewDataTable's API request string ↵Benaka Moorthi
and remove modification hack in Goals::getItemsView.
2013-07-12Refs #4041, removed extra ViewDataTable classes used by Goals Controller.Benaka Moorthi
2013-07-11Merge branch 'master' of github.com:piwik/piwik into ↵Thomas ZILLIOX
pleineLune__less-installation
2013-07-11Refs #4041, removed Piwik_ViewDataTable_HtmlTable::recursiveDataTableLoad.Benaka Moorthi
2013-07-11Rename ViewDataTable::setDataTableType/getDefaultDataTableType to ↵Benaka Moorthi
setDataTableCssClass/getDefaultDataTableCssClass and move newly added view data to viewProperties member.
2013-07-11Refs #4041, allow subtable template to be used if idSubtable is in request ↵Benaka Moorthi
so Actions controller doesn't have to call setTemplate. Also did some mild refactoring for Piwik_ViewDataTable_HtmlTable::setRecursiveLoadDataTableIfSearchingForPattern.
2013-07-11Modified _dataTable.twig to use a Piwik_DataTable instance instead of a ↵Benaka Moorthi
DataTable converted to an array, allowed HtmlTables to render expanded DataTables, and removed @CoreHome/_dataTableActions_recursive.twig.
2013-07-10Merge branch 'master' of github.com:piwik/piwik into ↵Thomas ZILLIOX
pleineLune__less-installation
2013-07-10Remove useless breaklinesThomas ZILLIOX
2013-07-10Handle @import rule in less filesThomas ZILLIOX