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
2009-05-130.2.35matt
2009-05-13(no commit message)matt
2009-05-12fixed #702mauser
2009-05-12fixing bug in the datatable managermatt
2009-05-12- refs #686 properly handling exception so it doesnt show up in logsmatt
2009-05-12- refs #197 converting field to TEXT for old tablesmatt
- refs #103 fixing two bugs: dashboard not highlighted and idgoal wrong parameter in menu (patch by khahn)
2009-05-12fixing installation config errormatt
2009-05-11- adding new option default_period to specify which period to use by default ↵matt
in piwik (default is day)
2009-05-11refs #682 fixing bug when deleteAll is called matt
2009-05-09- refs #683 killing quicktime detectionmatt
- fixing broken updater code regression
2009-05-09(no commit message)matt
2009-05-06now displaying prettier date (better usability) as well as showing a ↵matt
calendar icon. it looks ugly but it's more usable
2009-05-06fixing offset sparklinesmatt
2009-05-05Re-fix #590vipsoft
2009-05-05make sure we dont display empty columns when false was providedmatt
2009-05-05small modifs + fixing one error under IE6 (some left but I can't find where ↵matt
they come from)
2009-05-05- refs #590 without the / in /libs/... the path is wrong on my windows box ↵matt
(missing the /)
2009-05-05Fixes #590 - use relative pathvipsoft
2009-05-05- improved Config.php: This slightly helps reducing the Zend overhead when ↵matt
accessing config entries hundreds of times.
2009-05-05- ADDED search field below data tables is now using the regular expression ↵matt
syntax. For example, a search for "google|yahoo" would match all rows containing "google" or "yahoo". All search strings containing any of the special characters from this list: . \ + * ? [ ^ ] $ ( ) { } = ! < > | must be escaped with a back slash, eg. if you want to search for keywords containing "piwik!" you would search for "piwik\!". - ADDED new configuration option: default number of rows returned in API responses "API_datatable_default_limit = 50" - REMOVED the automatic generic filters. The limit and sort and safe decode are applied by each module when necessary. - removed exact match filter. Now all searches are using regular expressions syntax. Exact match can be done using ^exact search here$ - fixed notice when natural sort on a non existing column - fixed CSV export for datatable_array - clarified code for plotting multiple lines in an evolution chart - FIXED #624 Added icon "save as image" below all graphs (next to the Export icon) - moved all JS functions into the piwikHelper static class - added example in ExampleUI plugin to plot only visits from google and yahoo! in 4 lines of code - added message when flash is disabled and graph not showing, linking to piwik faq. - added expressInstall.swf feature
2009-05-01- Introducing the new "ExampleUI" plugin which shows how to plot data easily ↵matt
in Piwik, reusing the existing framework (evolution graph, pie chart, bar graph, sparklines, tag clouds, tables, and more!)
2009-05-01- refs #686 converting all MSN search engines to be labelled Livematt
- updating translations
2009-05-01refs #686 let's remove the debug code...matt
2009-05-01fixed #686 spam live bot when IP coming from microsoft now excluded..matt
2009-05-01reverting r1078matt
2009-05-01- fixed #682 Notice: Undefined property: Piwik_DataTablematt
2009-05-01(no commit message)matt
2009-04-27fixing broken dashboard when loading old layout format from DBmatt
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-24-added Tracker.saveVisitorInformation and Tracker.saveVisitorInformationEnd ↵mauser
events, -formatting description of plugins (nl2br), -protected instead of private methods in core/Tracker.php
2009-04-16- fixing small bug in Url.php when an array parameter is in the query stringmatt
2009-04-15- RENAMED time_before_archive_considered_outdated in ↵matt
time_before_today_archive_considered_outdated
2009-04-140.2.34matt
2009-04-14- fixed #648 due to wrong order in includes when regenerating cache file in ↵matt
piwik.php
2009-04-070.2.33matt
2009-04-07- fixes #577 Aautomatic purge should be automatically called once a day on ↵matt
every archive table
2009-04-07(no commit message)matt
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-31- fixing ordering on evolution graphsmatt
2009-03-31- fixing ordering on graphsmatt
- adding documentation to specify that plugins can define their own translation files
2009-03-30- fixes #578 Actions API: clarify idsubdatatable VS databaseSubtableId in ↵matt
API response
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-30- fixes #582 API UsersManager.* accepting $userLogin should work well when ↵matt
super user login is passed + adding tests - tests are much faster now: only creating/droping DB and tables once per class rather than once per method - fixing broken test (infinite recursion in datatable calls destruct +100 times)
2009-03-29refs #504 - check that valid_languages and valid_countries is not null; vipsoft
http://ca2.php.net/manual/en/function.in-array.php#86695 describes in_array() returning true if haystack is 0 or false, and not in strict mode
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- fixes #633 When specifying logging messages/errors/exceptions to a file in ↵matt
piwik config, the archiving breaks as path is invalid
2009-03-26- fixing broken unit tests and previously broken period archiving.matt