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-22update phpdoc commentsvipsoft
2010-06-03refs #1368 - Piwik::prefixTable() is deprecatedvipsoft
2010-06-03fixes #1152 - remove deprecated "name" from getInformation() arrayvipsoft
2010-05-19Refs #1120 Live! plugin i18nmatt
2010-05-06fixes #1337 - remove static .htaccess files and ↵vipsoft
defined('PIWIK_INCLUDE_PATH') or die "guard"; we'll enhance PhpSecInfo to assist the user in configuring their environment more securely
2010-04-22refs #1120 - commiting jr-ewing's Live-0-6-rc2.patchvipsoft
2010-04-14Refs #1120 by tommatt
Fixes hover cursor
2010-04-13Refs #1120matt
* Fixes performance issue with the Live! widget by changing the primary key on the log_visit table: all sql queries must hit the idsite first, then the idvisit, to ensure the INDEX is used for the ORDER BY LIMIT (without doing full table scan). * Lowering timeout to 8s for more real time results
2010-04-13tweaks for xhtml self-closing tagsvipsoft
2010-04-12(no commit message)matt
2010-04-12Refs #56matt
* Live! widget now displays dates and times relative to the website timezone * cleaned up code a bit * removed ability to not specify the idSite in Live! API requests. It is now mandatory (feature was not used and doesn't really makes sense)
2010-04-01Fixing Notice: Undefined index: visit_server_date in ↵matt
C:\piwik\plugins\Live\Visitor.php on line 86
2010-03-30refs #1120 - commiting update from Live-0.5.5.zipvipsoft
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-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-03-01fixes #1182 - coding style changesvipsoft
2010-02-24refs #1120 - merged from Live.zip as there were too many conflicts with ↵vipsoft
piwik.patch against the svn trunk
2010-02-10fixes #1122 - per Matt's reviewvipsoft
2010-02-04fix http://forum.piwik.org/index.php?showtopic=4891vipsoft
2010-01-30fixes #1122vipsoft
2010-01-30fixes #1096 - translateable plugin descriptionsvipsoft
2010-01-27refs #1062 - fix page load errors when Live widget added to dashboardvipsoft
2010-01-26refs #1120 - suppress broken image link where no search engine icon definedvipsoft
2010-01-03refs #44 - fix broken images links in the CSSvipsoft
2009-12-13refs #44 - translate columns in Live "Visitor Log"vipsoft
rename typo'd translation string *OperatinsSystem to *OperatingSystem upcase submenu titles for consistency
2009-12-13Only initialize spy once, if repeatedly previewing Live widget.vipsoft
2009-12-13remove 'label' from getLastVisitsDetailsvipsoft
2009-12-13refs comment:ticket:44:42 - wrap URL of visited page with anchor tagvipsoft
2009-12-13fixes #1074 - missing parameters for module=Live&action=indexvipsoft
2009-12-12fixes #1072 - wrap plugin author name with author_homepage (instead of homepage)vipsoft
2009-12-10refs #708, refs #44 - update sql to reflect column renamingvipsoft
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-03add file (missed in [1621])vipsoft
2009-12-03refs #44 - check in updated Live plugin by jr-ewingvipsoft
2009-08-23Tweak phpdoc config. Add some missing phpdocs.vipsoft
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-11Change die('Restricted access') to simply die.vipsoft
With error_reporting(E_ALL|E_NOTICE) it prints nothing and is more consistent with directly accessing other Piwik php files.
2009-07-27fix JSON stringify'd layout not completely decoded;vipsoft
add defined(PIWIK_INCLUDE_PATH) before require_once per checklist
2009-07-20fixes #857 - add Silverlight and Google Gears detection; revert #744 & #683, ↵vipsoft
restoring Java and Quicktime detection given #852. Kept "Cookie". AIR not detectable.
2009-07-08fixes #803 - remove unnecessary require_once from core, plugins, and parts ofvipsoft
libs. (I didn't touch: open-flash-chart, Zend Framework, and PEAR HTML.)
2009-06-28Fixes #524 - add standard Piwik header to .php files in core & plugins, withvipsoft
the exception of those in core/Updates/.
2009-05-31- on a rainy sunday night, implented one of the most requested feature which ↵matt
was little work and should make a lot of users happy! fixes #747 adding links on both sub tables for search engines and keywords linking directly to the search engine page for this keyword added definition for the main search engines (approx 15) users can contribute more if they like; if a definition, eg. "search?q={k}" for Google is not found, then we simply link to the search engine homepage. updated FAQ on how to add a search engine see http://piwik.org/faq/general/#faq_39 added tests to check that the search engine file is defined properly - renamed queuefilter to queueFilter for consistency
2009-05-28fixes #744 - kill Java plugin stats on server-sidevipsoft
2009-05-21Replace "new Object()" with equivalent "{}"; also fix "new Object" vipsoft
(without constructor syntax).
2009-05-15Refs #44, localizing date & time.vipsoft
2009-05-09- refs #683 killing quicktime detectionmatt
- fixing broken updater code regression
2009-04-27- API CHANGE: the API for the function Piwik_AddWidget has changed. The new ↵matt
API is Piwik_AddWidget( $widgetCategory, $widgetName, $controllerName, $controllerAction, $customParameters = array()). See examples of calls in all the core Piwik plugins. This change was necessary to make widgets more modular (they now accept custom parameters). - API CHANGE: a small number of CSV outputs for some API calls would change following the simplification of DataTable_Simple implementation. Affected calls are VisitsSummary.get, Goals.get, VisitFrequency.get. This is due to a change in the implementation of DataTable_Simple (we simplified implementation). - FIXED #84 Added proper translations for all columns, in tables, and graphs. - FIXED #322 piwik is now using open flash chart 2 - FIXED #126 all dates should be correctly displayed in all graphs. For example, evolution graph for days would show, on the X axis "Mon 29", "Wed 31". For months it would show "Aug 2009", etc. - ADDED: when hovering any of the sparklines, the UI makes it clear that clicking will refresh the evolution graph. This feature was in Piwik for months, and even Google Analytics implemented this UI feature after Piwik. However in Piwik it wasn't clear to the user that the sparklines were clickable. - ADDED: now widgets can be created with custom parameters. This makes it possible to create a widget that calls a controller->action with other custom parameters, this is used in Piwik to draw an evolution graph (module=VisitsSummary & action=getEvolutionGraph) for a given metric (&columns[]=nb_visits). These custom parameters are automatically forwarded to the sparkline url, the flash graph when clicked on sparkline, etc. - The widget layout is now saved as a JSON string rather than a custom data structure. The dashboard code should be able to read & restore most of the layouts from the old format (except the evolution graphs widgets). Simplified the Dashboard.js, widgetMenu.js, cleaned up what was a messy code. - Added sentence in Widgetize to let users know they can easily export the Piwik dashboard in an iframe. - Changed the way translations used in Javascript are loaded: all translations strings finishing by _js will be loaded to be used in the templates when calling {loadJavascriptTranslations plugins='YOUR_PLUGIN_NAME'} - Moved all templates in plugins under plugins/$PLUGIN/templates/ - 'Khtml (Konqueror, Safari)' now displayed as 'KHTML (Safari, Chrome)'
2009-03-26- fixing broken unit tests and previously broken period archiving.matt