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
2010-06-03refs #1368 - Piwik::prefixTable() is deprecatedvipsoft
2010-06-03fixes #1152 - remove deprecated "name" from getInformation() arrayvipsoft
2010-05-31Fixes #1351 All error messages displayed to screen/API should not be ↵matt
translated. Thanks JulienM for patch! I simply refactored the 'you must be have %s access [...]' messages by putting the admin/view/superuser as a parameter in the string
2010-05-28Fix typo in GBP symbolmatt
2010-05-27refs #1378vipsoft
2010-05-27refs #1382 - add tooltips to ok.png and remove.png when in edit statevipsoft
2010-05-07Clarifying title for default currency/timezonematt
2010-05-05Fixes unit tests to work with plugins that setup new tables, or execute ↵matt
ALTER queries during install() It is also possible to specifically unload some plugins to ensure that the plugins don't affect the modules being tested (eg. SitesManager disables the feedburner plugin to avoid having to test for the new column added by feedburner plugin)
2010-05-05Fixes #1321 adding Venezuelan Bolivar currencymatt
2010-05-04Refs #56 regression admin users can access Websites tabmatt
2010-04-24refs #2117 - fix a couple of unit testsvipsoft
2010-04-13tweaks for xhtml self-closing tagsvipsoft
2010-04-09Fixes #526matt
* Added possibility to change password, for super user and normal users * Refactored Login to add a new hook that is meant to init the session (set the cookies). this hook is called when the password is changed. * Added general feedback message at top of the admin screens, to let users know that changes have been successful.
2010-04-09Refs #56 matt
* Calendar for a given website will show dates relative to this websites's timezone * API results now display relative to website's timezone * MultiSites will convert "today" and "yesterday" to Piwik default timezone * MultiSites calendar min and max date are the min and max date based on website's timezones. For example, the max date might be tomorrow in UTC if some websites are set to UTC+12
2010-04-09refs #56 - sort cities within each continentvipsoft
2010-04-08refs #1261 - add unit tests for more complete test coveragevipsoft
2010-04-08fixes #1261 - SitesManager: add getSitesIdFromSiteUrl( $url ) to API; add ↵vipsoft
unit test
2010-04-08refs #1276 - fix regression introduced by [2045] where alias URLs no longer ↵vipsoft
accepted
2010-04-07Refs #56 matt
* Adding timezone during piwik install. Will set default timezone, and use it for the first created website. * Had to apply manual patch to QuickForm Select to handle optgroups, added unit tests to check patch is applied * Skips the Database check screen if there was no error
2010-04-02Fixes #1276matt
Had to encode the urls, otherwise htmlentities returned empty string, as the string wasn't in utf-8.
2010-04-02Pounds symbol fixmatt
2010-04-02 * Added General settings page to: enable browser archiving, define today's ↵matt
archive time to live (fixes #1149) * added User settings page, that all logged in users can access to edit: Alias, email, default report to load, default date. Implemented settings in the _option table (rather than adding new fields to the table). Fixes #401 refs #526 * the super user can edit settings for the anonymous user and force the anonymous to the login screen or a specific website * added order feature in admin menu + colored current menu + hiding menu entries that are not visible to the logged in user anyway * improved styles of admin forms
2010-03-31Fixes #41 Adding URL Query parameters exclude setting, per website, and ↵matt
global. We also by default exclude sessionid, phpsessid, etc. The query parameters are excluded case insensitive.
2010-03-30Fixes #1001 Adding currency setting per websitematt
Defaulting currency to USD for all existing websites Simplifying website admin screen by rolling all settings into the same form (still using ajax) Adding SitesManager and UsersManager to the list of hidden plugins Slightly refactored printing money values to accomodate per website preference
2010-03-29Refs #56 matt
- Added timezone setting per website. Added API to fetch the list of supported timezones. UTC Manual offsets are supported even if the PHP doesn't have timezone support built in. - Added default timezone setting that the Super user can set. It will be used to pre-select timezones when creating new websites, or setting the default timezone when adding websites via the API without specifying the timezone. - Default timezone set to UTC to all existing websites on update. PHP Default timezone set to UTC in index.php and piwik.php. - Removed all usage of mysql date/time functions (which are internally doing timezone conversions based on mysql timezone), now using php generated timestamps (in UTC), or dates manually converted to the website timezone. - Altered the few Mysql fields that were defaulting to "Current timestamp", they now default to NULL. - Deprecated the field log_visit.server_date and log_conversion.server_date as they are now not used. Must use DATE(visit_last_action_time) instead. Note that the new INDEX on (idsite, visit_last_action_time, config_md5config) will greatly benefit the Live! plugin. - Deprecated Piwik_Date->get, must now use Piwik_Date->toString - Deprecated the DB adapters getCurrentTimezone() feature, as we now don't rely on the DB timezone. Also removed the warning from the install screen.
2010-03-22refs #43 - getIp() returns a stringified, unsigned number; changed unit test ↵vipsoft
to match getIp()'s behaviour; SitesManager converts min/max to non-negative numbers
2010-03-22Fixes #43matt
- modify websites admin UI, API to add a column Exclude IPs - IPs contain wildcards, unlimited IPs per website - below the website table, added a "Global IP exclude" list. Ips there are excluded from all websites automatically. - IPs are stored in the tracker cache file for fast access at Tracking time. - added new field in website table "excluded_ips" - refactored the ajax loading/error display to allow multiple loading/error div per page
2010-03-21clean-up XHTML self-closing tags in preparation for validation; note: I ↵vipsoft
skipped plugins/Live as there's a large patch to merge
2010-02-11fix unit testsvipsoft
2010-02-10refs #1122 - fix usagevipsoft
2010-02-10fixes #1122 - per Matt's reviewvipsoft
2010-01-30fixes #1122vipsoft
2010-01-30fixes #1096 - translateable plugin descriptionsvipsoft
2009-12-27fixes #1090vipsoft
2009-12-12fixes #1072 - wrap plugin author name with author_homepage (instead of homepage)vipsoft
2009-12-09- Few updates in the messaging matt
- in DBStats API, table name is not bound using ? in the query, so it has to be escaped
2009-12-08fixes #1056 - core plugins should display release versionvipsoft
2009-12-05fixes #9 - add inline help re: alias urls to SitesManager "add site"vipsoft
2009-12-04fixes #1053 - don't display "add site" link if not the superuservipsoft
2009-11-05refs #510 - deprecated '[@id=IDVALUE]' changed to '#IDVALUE'vipsoft
2009-11-01fixes #959 - show website name in UI when displaying tracking codevipsoft
2009-11-01fix malformed admin pages (script tag appearing before html tag)vipsoft
2009-10-23fixes #1012 - use translation in DBStats; move translation to the template, ↵vipsoft
so Piwik_AddAdminMenu() is more consistent in use with Piwik_AddMenu and Piwik_AddWidget
2009-10-21fixes #996 - message box error when deleting a website open for edittingvipsoft
2009-08-27refs #540 - fix path so tests can run standalone from their own directoryvipsoft
2009-08-27fixes #540 - move plugin unit tests from tests/core/*.php to ↵vipsoft
plugins/*/tests/*.php
2009-08-22phpdoc cleanup:vipsoft
* 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
2009-08-12fixes #922 - use View factory in core plugins; post View.getView event (new ↵vipsoft
hook)
2009-08-09minor XHTML formatting editsvipsoft
2009-07-28refs #877 - refactoredvipsoft