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-15(no commit message)matt
2010-06-03refs #1368 - Piwik::prefixTable() is deprecatedvipsoft
2010-06-03fixes #1152 - remove deprecated "name" from getInformation() arrayvipsoft
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-03-16Fixing Provider plugin during trackermatt
2010-03-16Fixes #1011 Provider plugin now limits row count to 500matt
2010-02-16throw error if ALTER fails for reasons other than "column already exists"vipsoft
2010-02-10fixes #1122 - per Matt's reviewvipsoft
2010-01-30fixes #1122vipsoft
2010-01-30fixes #1096 - translateable plugin descriptionsvipsoft
2010-01-04refs #558, revert [1753], move these lines back to top per matt's reviewvipsoft
2009-12-31fixes #558 - plugin to use Public Suffix List to enhance Provider report; ↵vipsoft
the register-domain-libs contains a PHP data structure to represent the contents of effective_tld_names.dat -- this loads and executes much faster (and can be opcode cached) than the implementation using Domain.class.php
2009-12-30refs #558 - add Provider.getCleanHostname hookvipsoft
2009-12-12fixes #1072 - wrap plugin author name with author_homepage (instead of homepage)vipsoft
2009-12-08fixes #1056 - core plugins should display release versionvipsoft
2009-11-14html decode General_Unknown for translationsvipsoft
2009-10-29Use Piwik_Exec() for DDL queries as earlier versions of mysqli can't prepare ↵vipsoft
these statements.
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-14fixes #931 - translate 'Providers'vipsoft
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-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-07-01Add svn:keywords Id to .php files in core, plugins, and jsvipsoft
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-18core code using Piwik_FetchOne|All|Query to easily work on the DB matt
2009-05-06- adding translations for all "label" columns matt
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-04-07- finishes fixes #640 now unique visitors column won't show for periods in ↵matt
reports and API responses
2009-04-07Filters are now applied bymatt
$table->filter('Limit', array(2,2)); rather than $table->filter('Piwik_DataTable_Filter_Limit', array(2,2)); old way still works though
2009-04-06- make sure all "Others" type legends are correct on all graphsmatt
- regression: 'label' should always be first column, prettier in API results - translate some text in plugin + show how easy it is to translate a plugin
2009-04-03- changing ways of applying filters to a datatable, now ↵matt
$table->filter('Piwik_DataTable_Filter_Sort', array ('nb_visits', 'desc')); - refs #640 now accurately reporting nb_uniq_visitors in all reports - adding tests
2009-03-30- fixing recently introduced sorting issue, refactoring, cleaning up the ↵matt
generic filters concept by removing the automatic sorting of data - fixing issue when executing unit tests would invalidate tmp/cache/tracker files - fixed edge case issue when calling several apis from one http request, and requesting recursive output, it was failing in some random cases - adding a unit test that calls all callable api methods and check for non empty output -
2009-03-27- memory and speed optimizations of archiving, refs #374 (hopefully fixing ↵matt
it but not sure yet) - added support for profiling memory & time in Piwik via the events mechanism - small other changes
2009-03-26- fixing broken unit tests and previously broken period archiving.matt
2009-03-10- refs #374 Performance: Fix memory leak during Archiving processmatt
refactoring and fixing architecture issue, which makes code more simple
2009-02-11- fix #87 Unknow provider redirects to wiki helpmatt
2009-01-12- Fixing Uncaught exception 'Exception' with message 'Error query: ↵matt
SQLSTATE[HY000]: General error: 1406 Data too long for column 'location_browser_lang' at row 1' in core\\Tracker\\Db.php
2008-12-22- fix actions table column namesmatt
- display total size used by piwik in dbUsage plugin - adding tests in pre-release check
2008-12-17- adding Goal Tracking related goodness in core, and pluginsmatt
- goal table icon below datatable that have goal segmentation - rss export icon below datatable - cleaning code, refactoring, renaming goodness - adding switch enable_detect_unique_visitor_using_settings that enables/disable heuristic based on config hash - refactoring how plugins handle archiving for more clarity
2008-12-08- cleaning the API/ codematt
- deleting class Api_Apiable concept not used anymore
2008-11-21- fixing #333 When Provider plugin is enabled, it should improve the country ↵matt
detection algorithm
2008-10-28- renaming all instances of LogStats to Tracker for claritymatt
- improving error message to be prettier - adding footer in all admin pages for consistency
2008-09-05Adding new files from refactoring (should have been in last commit)matt
2008-09-05Refactoring Widget and Menu code (in core and all plugins)matt
Commit patch by Maciej adding support for multiple lines plotting Cleaning Date object + small other code improvements
2008-08-19Fixed the menu is now fully translatable! oufmatt
Fixed javascript handling of translations: we can now load translations strings in several places in the templates, they will all be concatenated into one bigger object Fixed handling japanese error messages in API with correct charset Finished (hopefuly?) to make all strings translatable. Added colored logo now in login screen All templates now defined the dates necessary to build the calendar, as we notice that most pages want to show the calendar. Added destructor to LogStats/Db.php so that plugins don't have to call disconnect() on the object Made JS tag smaller Improved templates structuring, refactored CSS, etc. still lots to do in this area, if you wanna help?
2008-08-14(no commit message)matt
2008-08-12- renaming archiveMonth -> archivePeriodmatt
2008-07-28- Adding description to each pluginmatt
- cleaning plugins listing, splitting ExamplePlugin in multiple small plugins, renamed Home -> CoreHome PluginsAdmin -> CorePluginsAdmin AdminHome -> CoreAdminHome - simplified authentication classes (not using Zend_Auth_Db anymore) - adding a new widget listing the last posts on Piwik.org/blog