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
2016-12-01New visit dimension "total interactions" and new action dimension ↵Thomas Steur
"Interaction position" and corresponding segments (#10911) * adding new interaction segments * add possibility to limit queries * fix Piwik does not join correctly if 2 custom joins require each other * added position to api output * Contents plugin: Rename "Interaction" metric to "Content Interaction"
2016-11-14fix exit page was not correct when last action was download or outlinkThomas Steur
(cherry picked from commit 092ccb6)
2016-09-30Merge branch '2.x-dev' into 3.0-m09Thomas Steur
2016-10-01Track a unique id for each pageview (#10499)Thomas Steur
* track a unique id for each pageview * fix tests * reduce idpageview to 6 bytes * added changelog entry
2016-09-27do not make log_action.idaction (and foreign keys) BIGINT to prevent large ↵Matthieu Aubry
overhead (#10569) Partial revert https://github.com/piwik/piwik/pull/10548/files
2016-09-26On very high traffic Piwik servers, prevent integer overflow by making ↵Matthieu Aubry
auto_increment fields BIGINT UNSIGNED (#10548) * Change Latitude and Longitude data types to DECIMAL instead of FLOAT * Add system test that forces an integer overflow, currently failing as expected * Make all overflow-able fields BIGINT UNSIGNED * Make overflow-able fields BIGINT UNSIGNED * These fields were not covered by the new SimulateAutoIncrementIntegerOverflow test * fix comment * Make it clear that id* fields are UNSIGNED when installing Piwik * BIGINT(10) for consistency * Update core fields to BIGINT * UI tests: New fields to be updated to bigint
2016-09-20refs #9231 Make all log_* tables fields NULLable (#10492)Thomas Steur
2016-09-19Make sure to set an entry page if none was set before (#10510)Thomas Steur
* make sure to set an entry page if none is set yet * fix possible error * Site searches will set idaction=0, which is actually a valid entry page url, so we test specifically for false * Add test case where the visit directly starts with an event * Add system test where the first actions of a visit are events (without URL set), followed by a pageview later -> the pageview will be set as the entry page * Update processed api responses * UI tests: two new fields in log_visit have been updated * Processed API responses
2016-04-18DB field piwik_log_visit.visit_total_actions too small (#10002)Thomas Steur
* fixes #9565 DB field piwik_log_visit.visit_total_actions too small * change type of some db columns that are too small
2016-02-01actionType is a segment of type "dimension"mattab
2016-01-22fix average time on page determined by using unique pageviews instead of hitsThomas Steur
2015-12-01New segment: ActionTypeThomas Steur
2015-11-19refs #8076 #9224 adding new segment ActionUrl + new operators starts with ↵Thomas Steur
and ends with
2015-10-05Fix testsmattab
2015-10-05Add new Custom Segments: outlinkURL and downloadUrl to segment on any ↵mattab
Clicked URL or Downloaded file
2014-11-27Fixing lots of system tests.diosmosis
2014-11-27Fix several bugs causing differences in API output w/ master.diosmosis
2014-11-27Allow ProcessedMetrics to declare some metrics as temporary so they will be ↵diosmosis
removed if not explicitly requested.
2014-11-24Merge branch 'master' into processed_metrics_metadatadiosmosis
Conflicts: plugins/Actions/Reports/Base.php
2014-11-17Only use '-' as formatted average page generation time if formatting for ↵diosmosis
HTML (for backwards compatibility).
2014-11-17Use correct precision in AveragePageGenerationTime.diosmosis
2014-11-15Use correct precision for AveragePageGenerationTime processed metric.diosmosis
2014-11-14Move all Metrics to Columns folder.diosmosis
2014-08-26refs #6045 #6049 added an event to collect visitor info and made sure the ↵Thomas Steur
Piwik UI kinda works when most tracker plugins are disabled
2014-07-23removed lots of trailing whitespaceChristian Raue
2014-07-22removed unused use statementssgiehl
2014-07-18refs #5820 added documentation and improved codeThomas Steur
2014-07-07If a dimension only implements a getName() method it should extend Dimension ↵Thomas Steur
and not VisitDimension which is more "correct" and improves performance since we do not have to check whether they are installed and whether they implement certain methods
2014-07-01moved dimensions into a subdirectoryThomas Steur
2014-06-26smarter install and update of columns which will automatically update the ↵Thomas Steur
column in case the type changes making it super easy for developers, not sure if everything works already and need to xhprof it
2014-06-26pass all kind of column information so we can do some more checksThomas Steur
2014-06-25started to handle changes to dimensions, for instance if a new dimension is ↵Thomas Steur
added the platform should detect this and run an update script. also if a dimension suddenly handles new cases such as conversion it should automatically add a column to log_conversion after a user confirms. Have not tested update and/or installation yet
2014-06-23do not define segments on dimension creation as those are not needed during ↵Thomas Steur
tracking for instance, makes it a bit faster
2014-06-18merging master into branch, wish me luckThomas Steur
2014-06-18this should fix the tests, in case of new visits the idvisitor was not setThomas Steur
2014-06-17starting to move actions from tracker into pluginsThomas Steur
2014-06-16moved some more dimensions to plugins, fixed some issues, removed some more ↵Thomas Steur
duplicated code etc. Tests will not be green as there fixes to country detection
2014-06-13moved more logic from core to pluginsThomas Steur
2014-06-13this might fix some tests, I reckon exit_url and exit_name was sometimes set ↵Thomas Steur
to 0 when false was returned
2014-06-11converted more reports, segments, dimensions, ... not finished yetThomas Steur
2014-06-11starting to refactor reports into classes, also refactored some more ↵Thomas Steur
dimensions which is still not 100% working and needs more work