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/config
AgeCommit message (Collapse)Author
2013-09-12Minor code changes + style following reviewmattab
2013-09-06Change description of ip_address_mask_length setting in global.ini.phpFabian Becker
After enabling AnonymizeIP to mask IPv6 addresses the notion of this setting had to be changed to represent a masking level rather than a mask length.
2013-08-11Refs #3942 Now themes don't need to have a PHP file, themes can simply ↵mattab
specify a "stylesheet" entry in the plugin.piwik.json, this CSS/less file will be loaded as if it was registered with the css event
2013-08-05Refs #4041, #4040 add new CoreVisualizations plugin and move HtmlTable, ↵Benaka Moorthi
Cloud & JqplotGraph visualizations to it and improve UIIntegration test debug output.
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-15PleineLune should not be loaded by default. Should be loaded only in ↵Benaka Moorthi
config.ini.php.
2013-07-09Initialisation of the PleineLune themeThomas ZILLIOX
2013-06-28Removing feature: enable_archive_parents_of_datatable = 0 (main reason: ↵mattab
there is no test, second reason: there is no public plugin using this feature AFAIK) @Timo if you need this feature, let's put it back with some tests.. Refs #2697
2013-06-27Removing Smarty strings from codebase, fixing installmattab
Adding twig to LEGALNOTICE Refs #4019
2013-06-26 * admin screens,mattab
* removed the remains of CDN/jquery feature Refs #4019
2013-06-05Adding setting for limiting Custom Variables report in the config file, ↵mattab
separate from the referrer config. This is especially useful to fix an ecommerce bug where "Visits" don't display properly for all products, since we used to truncate after 50 rows. Also sets by default to 1000 to ensure ecommerce tracking mostly work. Refs #3569
2013-06-02refs #3960 update jquery to 1.10.1sgiehl
2013-06-01added missing search engine; refactored & fixed search engine testssgiehl
2013-05-23Fixes #39511.12-b16mattab
2013-05-15Refs #2135 Enabling plugin by default for all updatesmattab
2013-04-05fixing white spacemattab
2013-03-30Fix failing test after update for jquery/jqueryuiFabian Becker
2013-03-24Fixes #3131, add new auto-updating widget that displays the number of ↵diosmosis
visitors, visits and actions in the last N minutes. Notes: - Added visitors metric to result of Live.getCounters.
2013-03-20visitor log improvementsTimo Besenreuther
* use a limit for the number of actions that are loaded for every visit. without a limit, the web server might crash (e.g. when there are 100K+ page views in one visit after a log import) * regular pagination in visitor log. (a) performance improvement: use indexes in the select query. (b) bug fix: the old logic was incorrect. in one setup, there are 10K+ visits but the visitor log only showed one full page and one page with one visit. * removed reference to trunk from tests read me
2013-03-08Fixes #3803mattab
New config setting for tracker: ; The window to look back for a previous visit by this current visitor. Defaults to visit_standard_length. ; If you are looking for higher accuracy of "returning visitors" metrics, you may set this value to 86400 or more. ; This is especially useful when you use the Tracking API where tracking Returning Visitors often depends on this setting. ; The value window_look_back_for_visitor is used only if it is set to greater than visit_standard_length window_look_back_for_visitor = 0
2013-02-21Removing SWFobject from Piwik and all mentions of it Refs #1652mattab
2013-02-20Fixes #2830 Implementing Tracker Cache TTL (in config file, [Tracker]mattab
2013-02-08Removing references to archive.sh [ci skip]mattab
2013-01-29That wasn't supposed to be in there.Fabian Becker
refs #1552 git-svn-id: http://dev.piwik.org/svn/trunk@7816 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2013-01-29New admin menus, hooray!Fabian Becker
New vertical admin menus are organized as follow: - Predefined menus are Manage, Settings, Diagnostics, Plugins, Community - New submenus can be defined via Piwik_AddAdminSubMenu() - Piwik_AddAdminMenu defaults to "Settings" fixed #1552 git-svn-id: http://dev.piwik.org/svn/trunk@7815 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2013-01-16Enable Overlay pluginmattpiwik
git-svn-id: http://dev.piwik.org/svn/trunk@7760 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2013-01-15Fixes #3633 - I will now update the website to change existing linksmattpiwik
git-svn-id: http://dev.piwik.org/svn/trunk@7751 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2013-01-09fixing #3657 NEW config settingmattpiwik
; By default Piwik runs OPTIMIZE TABLE SQL queries to free spaces after deleting some data. ; If your Piwik tracks millions of pages, the OPTIMIZE TABLE queries might run for hours (seen in "SHOW FULL PROCESSLIST \g") ; so you can disable these special queries here: enable_sql_optimize_queries = 1 git-svn-id: http://dev.piwik.org/svn/trunk@7738 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2013-01-02Refs #3637 adding new feature thx EricCG for patch + suggestion!mattpiwik
; By default when user logs out he is redirected to Piwik "homepage" usually the Login form. ; Uncomment the next line to set a URL to redirect the user to after he logs out of Piwik. ; login_logout_url = http://... git-svn-id: http://dev.piwik.org/svn/trunk@7711 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-12-30refs #3337 MobileMessaging installed by defaultJulienMoumne
git-svn-id: http://dev.piwik.org/svn/trunk@7703 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-12-14Fixes #1253, added annotations plugin that allows attaching notes to ↵benakamoorthi
different days. Notes: * Modified renderers so they would render arrays better. Before, arrays were added to DataTables and array keys were either lost or ignored, now they are rendered. * Fixed issue w/ JSON rendering that rendered arrays when the PHP arrays didn't have contiguous keys. * Augmented some exception messages. * Added utility method processRequest to Piwik_API_Request to ease use of the class. git-svn-id: http://dev.piwik.org/svn/trunk@7612 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-11-14refs #2465BeezyT
overlay has two modes now: full screen with sidebar & full screen without sidebar. for now, it is only accessible via a new row action in the pages report. because of this change, some mostly not-so-nice core-changes could be removed (mainly that's good because overlay doesn't impact as many things outside the plugin anymore): * disableHistory option of broadcast * handling for parameter overlayUrl in broadcast * openLinksInOverlay() method of html table * config option overlay_launch_from_pages_report * hack for data table to launch overlay from the links other changes: * error message for wrong domain has nice styles and links to admin page when the user has admin privileges * when registering row actions, the order can be set * made row action style a little more compact * increased min width of label column a bit git-svn-id: http://dev.piwik.org/svn/trunk@7470 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-11-12refs #2465BeezyT
* Renaming Insight to Overlay * Includes a new minified piwik.js, generated as described in js/README. Please double-check whether the file is OK. * Servers that had the Insight plugin installed will need to delete it manually, right? git-svn-id: http://dev.piwik.org/svn/trunk@7445 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-11-09refs #2465BeezyT
* links in the pages report can be opened in insight instead of a new tab (to enable, use config option insight_launch_from_pages_report) * links containing an image should really work properly now * plugin description set git-svn-id: http://dev.piwik.org/svn/trunk@7420 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-11-09refs #2465BeezyT
* renaming menu item to "Page Overlay", putting it under Actions * config option to disable framed mode altogether (can be used when websites contain frame busters) * fixed error for anonymous user * loading message in framed mode git-svn-id: http://dev.piwik.org/svn/trunk@7419 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-11-08refs #2465 InsightBeezyT
* links to the current url get a bubble as well * limit for the number of pages loaded from the API can be configured * ready for translation * url normalizer doesn't remove the hash part anymore (which corresponds to the latest behavior of the tracker) git-svn-id: http://dev.piwik.org/svn/trunk@7405 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-10-24Fixes #3404, remove feedburner plugin and allow Piwik to work if plugin ↵benakamoorthi
folders do not exist. Notes: * Display warning if there are loaded plugins that cannot be found in the plugins diretory. git-svn-id: http://dev.piwik.org/svn/trunk@7296 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-10-23Fixes #3080, add config option to disable trusted_hosts check, tweak many ↵benakamoorthi
translations, modify UI to display one input w/ a label if only one trusted host is set (or if there's an injected host), set trusted host to Host if no stored trusted hosts and user is superuser, and don't use regex to check host. git-svn-id: http://dev.piwik.org/svn/trunk@7280 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-10-19Fixes #3452, add UserCountry to Plugins_Tracker config and in order to avoid ↵benakamoorthi
possible fatal error, moved UNKNOWN_CODE to Tracker_Visit and use 'country_code' instead of LocationProvider constant. git-svn-id: http://dev.piwik.org/svn/trunk@7237 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-10-15Enabling Transitions plugin by default! fixes #3332mattpiwik
KUDDOS TIMO! git-svn-id: http://dev.piwik.org/svn/trunk@7219 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-10-15Refs #2992 Site Search KABOOM, Refs #49mattpiwik
Implementing Site Search tracking & reporting in Piwik core! * New Admin UI to customize, for each site, wheter site search is enabled. Also options to set default values to use. * New Reports: Searches, Searches with no result, Search categories, Top Pages Following a Search * to track "No result keyword" users will have to tag their site with a JS call, or add a new parameter to the search result page &search_count=X (X being zero for no result searches) * Reports works with Row evolution, PDF/HTML reports, Piwik Mobile * idaction_url is now NULLable because, Site Search records a page with idaction_name == Keyword, and idaction_url == NULL. This ensures that the Site Searches don't create "Page URL Not defined" records. * updates to Tracker JS API, new function trackSiteSearch, also added in PHP tracker * New fields in log_visit to track searches * new segment, "searches" which can be used to select visitors who did a search ie. searches>0 or those who searched a lot, ie searches>10 TODO: * commmit integration test, TESTING, DOCS, FAQ, release, and a nice Prayer to the universe and the stars, hoping that I can code a major new feature without any bug... * It would be awesome to have compatiblity with Transitions so we can see, for a given site search, what are the starting pages and Destination pages Thank you for your patience Timo, and thank in advance everyone for your help Testing this new feature! git-svn-id: http://dev.piwik.org/svn/trunk@7190 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-09-13Refs #3330, #766, #3227 use RankingQuery and truncate tables as they are ↵benakamoorthi
created in Actions plugin. Also modified phpunit integration testing mechanism so all API calls are tested and outputted before a test case throws. git-svn-id: http://dev.piwik.org/svn/trunk@6980 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-08-02Increasing website list to 15 by default (seems a good move?)mattpiwik
git-svn-id: http://dev.piwik.org/svn/trunk@6648 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-07-27fixes #3277 - move superuser section after databaserobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@6573 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-07-25refs #3273 - update to jquery ui 1.8.22robocoder
git-svn-id: http://dev.piwik.org/svn/trunk@6547 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-07-22refs #3273robocoder
git-svn-id: http://dev.piwik.org/svn/trunk@6531 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-06-20Fixes #3196, modified long running queries in PrivacyManager to use ↵benakamoorthi
segmented strategy. Added option to disable automatic database size estimate in data purging feature, and made estimate load only by AJAX and never when getting the index. git-svn-id: http://dev.piwik.org/svn/trunk@6484 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-05-30Fixes #3071 New config setting to Allow automatic upgrades to Beta or RC ↵mattpiwik
releases [Debug] allow_upgrades_to_beta = 0 practical to test for Auto upgrades or for users & devs Refs #3021 git-svn-id: http://dev.piwik.org/svn/trunk@6404 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-05-26Fixes #3136 will be used in the upcoming SDKmattpiwik
git-svn-id: http://dev.piwik.org/svn/trunk@6319 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-05-22Fixes #3102, removed upper limit for 'action_category_level_limit' config ↵benakamoorthi
setting by making MAXIMUM_DEPTH_LEVEL_ALLOWED settable. git-svn-id: http://dev.piwik.org/svn/trunk@6294 59fd770c-687e-43c8-a1e3-f5a4ff64c105