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
2015-02-12Set a consistent description in plugins metadatamattab
fixes https://github.com/piwik/piwik/issues/7184
2015-02-05refs #5233 prevent line break after event icon and fix position of event iconThomas Steur
2015-01-20improved method namesgiehl
2015-01-17Merge branch 'master' into 6928sgiehl
2015-01-14Introduced variables for backgroundLiam Sharpe
2015-01-12fixes #6979 - ignore plugins if not availablesgiehl
2015-01-12refs #6928 - set fixed view type for visitor logsgiehl
2015-01-09language update refs #3430sgiehl
2014-12-26include server time (as timestamp) in visitor actions (visitor live API)Felix Schwarz
v2: rename attribute to 'timestamp' as suggested by mattab in pull request #6814
2014-12-22Merge pull request #6889 from piwik/58082.10.0-b10Matthieu Aubry
Fix views and events that have the same timestamp get disordered
2014-12-21moved browser plugin reports to an own plugin 'DevicePlugins'sgiehl
2014-12-19refs #5808 if there are many logs having the same server time, sort them by ↵Thomas Steur
the autoincrement id
2014-12-09moved resolution and configuration reports to a new pluginsgiehl
2014-12-07fixes #6819mattab
2014-12-06Prefix tables in expected strings (travis runs without prefix)mattab
2014-12-06Refactoring SQL into the Modelmattab
2014-12-05The ultimate prize and final step to close the issue: do not group by the ↵mattab
whole set of matched rows, way too slow on huge datasets!
2014-12-05ORDER BY the inner query so the order is deterministic + It uses the INDEXmattab
2014-12-05Added integration test for the model, to test the SQL query generatedmattab
2014-12-05Visitor Profile clean codemattab
2014-12-05Removed checkLatLong API parameter and always set the infomattab
2014-12-05Refactor Live API Visitor Profile logic in own classmattab
2014-12-05Refactor Live SQL into Modelmattab
2014-12-02Fixes #4391 when text overflows, hide it. Also make the column widths using ↵mattab
% rather than pixel values.
2014-12-01Merge pull request #6752 from piwik/remove_screentype_reportMatthieu Aubry
Removed screentype report
2014-12-01Fixes #5304 make the whole close button clickablemattab
2014-12-01Fixes #5241 Display Abandoned cart icon even when there is no Goal or ↵mattab
Ecommerce order in the visit
2014-11-28removed screen type report and widgetsgiehl
2014-11-28Fix regression in report titlemattab
2014-11-27Merge pull request #6625 from piwik/6545Thomas Steur
Do not request live information in case tab is not active
2014-11-27Fixes #6713 Ecommerce log will now show the full Log for each visit who ↵mattab
converted some ecommerce conversions or abandoned carts. Removed 'filterEcommerce' hack from codebase.
2014-11-27Merge branch 'master' into processed_metrics_metadatadiosmosis
Conflicts: plugins/Actions/Reports/GetSiteSearchKeywords.php tests/PHPUnit/System/expected/test_ArchiveCronTest_archive_php_cron_output.txt
2014-11-27Fixes #3147 Add rel="noreferrer" to all outgoing links . This works in ↵mattab
Firefox so far and only for "left clicks". Not perfect, but hopefully other browsers will implement this in the future, as it's a useful privacy enhancing feature!
2014-11-26Merge branch 'master' into processed_metrics_metadatadiosmosis
Conflicts: tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_scheduled_report_in_pdf_tables_only__ScheduledReports.generateReport_month.original.pdf tests/PHPUnit/System/expected/test_csvExport__Live.getLastVisitsDetails_day.csv tests/PHPUnit/System/expected/test_ecommerceOrderWithItems_scheduled_report_in_pdf_tables_only__ScheduledReports.generateReport_week.original.pdf
2014-11-18Removing TODOs and tweaking existing code.diosmosis
2014-11-18Merge branch 'master' into deprecate_usersettingssgiehl
Conflicts: tests/PHPUnit/System/expected/test_OneVisitor_NoKeywordSpecified__Live.getLastVisitsDetails_day.xml
2014-11-17Merge branch 'master' into processed_metrics_metadatadiosmosis
2014-11-17Correctly format totalVisitDurationPretty in Live.getLastVisitsDetails.diosmosis
2014-11-17Handle evolution metrics & goal metrics in ↵diosmosis
Inconsistencies::getPercentMetrics, use correct time formatting in two other places, and fix ImportLogsTest.
2014-11-17Make sure manual calls to MetricsFormatter::getPrettyTimeAsSeconds will use ↵diosmosis
sentence if sentence was used before.
2014-11-17language update refs #3430sgiehl
2014-11-16Merge branch 'master' into processed_metrics_metadatadiosmosis
Conflicts: core/Twig.php
2014-11-16completely removed short os name as it is uselesssgiehl
2014-11-14Replaced usage of deprecated \FakeAccess to ↵Matthieu Napoli
Piwik\Tests\Framework\Mock\FakeAccess
2014-11-14Make MetricsFormatter a class with instance methods and move Html related ↵diosmosis
functionality to derived class. Use FOrmatter in Metric::format calls so Metrics do not have to be aware of context of formatting, and so Metric::format methods will have less code redundancy.
2014-11-14language update refs #3430sgiehl
2014-11-10refs #6545 do not request live information in case tab is not activeThomas Steur
At first I used the window.blur/focus events but noticed it would also stop refreshing if tab is active but browser window is not active. I reckon many people might want to leave the browser open in one window and follow the live visitors while working on something else. That's why we should use the page visibility API which is supported by most browsers (I think not in <= IE9). I used a different library first but noticed it adds many event listeners like mousemove etc and it can make Piwik slow so used the visibility.js library in the end. If someone uses an old browser nothing will change compared to before so that should be ok. In a next version we could initiate a refresh immediately once the browser tab becomes active again.
2014-11-08Converted most other processed metric calculation to use ProcessedMetric class.diosmosis
2014-11-05language update refs #3430sgiehl
2014-10-29Extracted the Piwik\IP class into a standalone Network componentMatthieu Napoli