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
diff options
context:
space:
mode:
authordiosmosis <diosmosis@users.noreply.github.com>2019-03-13 03:13:57 +0300
committerGitHub <noreply@github.com>2019-03-13 03:13:57 +0300
commitdef74364a2d821d5dddaceece76c217547b99d14 (patch)
treecb6966a9ffec1a1b4c946d82ca0f91ec53c29b18 /plugins/ExampleLogTables
parente26f5e7a359e990b4c4d726de85839e8923619ab (diff)
Couple assorted changes (#13935)
* Allow annotations API to accept multiple periods, so evolution graphs that use multiple periods work. * Remove warning when rows_to_display viewdatatable config property is left at its default value. * Allow individual cells in an html visualization to be styled (if the visualization is extended). * Remove unneeded TODO. * In series picker encode picked rows in case the labels have commas. * Must decode the rows value as well (as it is not handled by API, must be done in plugin). * Allow joins to specified through LogAggregator::queryConversionsByDimension(). * Add safety check to _idts processing: if visitor is unknown, ignore _idts value, since it is their first visit. * In the tracker when searching by visitor ID, search through entire log_visit table instead of just in the last 30 mins. * When tracking visitor days since first, do not round since this can result in inaccurate data when rounding up. Which can cause trouble when finding the start visit for a log. * Allow HtmlTable descendants to add any html attributes to cells. * Allow derived Visualizations to add custom parameters to API requests via a new RequestConfig method. * Tweak to TODO. * Add test for annotations API change & get to pass. * Apply more review feedback * Update INI config docs for window_look_back_for_visitor. * Only copy visitor properties if action is part of an existing visit. * Some more properties that should be copied over from known visitor even if new visit. * Fixing some tests. * update test * Fix CustomEventsTest test failures. * Fixing more tests. * update rest of tests * Fixing tests. * Update some test files. * Fix log statements. * To better handle out of order actions, add part of last_action_time check to visitor ID search. * Update tests. * Updating expected screenshots. * Fix ArchiveCronTest. * Throw exception if idorder not unique. * Only throw exception if idorder specified. * Fixing a couple tests. * Fix another test.
Diffstat (limited to 'plugins/ExampleLogTables')
-rw-r--r--plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_all__UserId.getUsers_month.xml4
-rw-r--r--plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_all__VisitsSummary.get_month.xml4
-rw-r--r--plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_men__UserId.getUsers_month.xml4
-rw-r--r--plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_men__VisitsSummary.get_month.xml6
4 files changed, 9 insertions, 9 deletions
diff --git a/plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_all__UserId.getUsers_month.xml b/plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_all__UserId.getUsers_month.xml
index 537029b08e..49a8e28d1d 100644
--- a/plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_all__UserId.getUsers_month.xml
+++ b/plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_all__UserId.getUsers_month.xml
@@ -5,8 +5,8 @@
<nb_visits>45</nb_visits>
<nb_actions>70</nb_actions>
<max_actions>3</max_actions>
- <sum_visit_length>25</sum_visit_length>
- <bounce_count>25</bounce_count>
+ <sum_visit_length>24</sum_visit_length>
+ <bounce_count>26</bounce_count>
<nb_visits_converted>0</nb_visits_converted>
<sum_daily_nb_uniq_visitors>11</sum_daily_nb_uniq_visitors>
<sum_daily_nb_users>11</sum_daily_nb_users>
diff --git a/plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_all__VisitsSummary.get_month.xml b/plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_all__VisitsSummary.get_month.xml
index f22cfae43b..171c2ae454 100644
--- a/plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_all__VisitsSummary.get_month.xml
+++ b/plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_all__VisitsSummary.get_month.xml
@@ -5,8 +5,8 @@
<nb_visits>195</nb_visits>
<nb_actions>264</nb_actions>
<nb_visits_converted>0</nb_visits_converted>
- <bounce_count>130</bounce_count>
- <sum_visit_length>80</sum_visit_length>
+ <bounce_count>131</bounce_count>
+ <sum_visit_length>79</sum_visit_length>
<max_actions>3</max_actions>
<bounce_rate>67%</bounce_rate>
<nb_actions_per_visit>1.4</nb_actions_per_visit>
diff --git a/plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_men__UserId.getUsers_month.xml b/plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_men__UserId.getUsers_month.xml
index f88f48454a..0be3977a33 100644
--- a/plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_men__UserId.getUsers_month.xml
+++ b/plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_men__UserId.getUsers_month.xml
@@ -5,8 +5,8 @@
<nb_visits>45</nb_visits>
<nb_actions>70</nb_actions>
<max_actions>3</max_actions>
- <sum_visit_length>25</sum_visit_length>
- <bounce_count>25</bounce_count>
+ <sum_visit_length>24</sum_visit_length>
+ <bounce_count>26</bounce_count>
<nb_visits_converted>0</nb_visits_converted>
<sum_daily_nb_uniq_visitors>11</sum_daily_nb_uniq_visitors>
<sum_daily_nb_users>11</sum_daily_nb_users>
diff --git a/plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_men__VisitsSummary.get_month.xml b/plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_men__VisitsSummary.get_month.xml
index 4e9a3bd824..97edda327c 100644
--- a/plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_men__VisitsSummary.get_month.xml
+++ b/plugins/ExampleLogTables/tests/System/expected/test_ExampleLogTables_men__VisitsSummary.get_month.xml
@@ -5,10 +5,10 @@
<nb_visits>57</nb_visits>
<nb_actions>88</nb_actions>
<nb_visits_converted>0</nb_visits_converted>
- <bounce_count>32</bounce_count>
- <sum_visit_length>31</sum_visit_length>
+ <bounce_count>33</bounce_count>
+ <sum_visit_length>30</sum_visit_length>
<max_actions>3</max_actions>
- <bounce_rate>56%</bounce_rate>
+ <bounce_rate>58%</bounce_rate>
<nb_actions_per_visit>1.5</nb_actions_per_visit>
<avg_time_on_site>1</avg_time_on_site>
</result> \ No newline at end of file