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:
authorThomas Steur <tsteur@users.noreply.github.com>2018-09-17 01:07:13 +0300
committerGitHub <noreply@github.com>2018-09-17 01:07:13 +0300
commit77333b27e89a35696c27964862ce164d277d9ebb (patch)
tree81b59a7da2a73eb0cd19574d5dca7a5bb30b9d8f
parent0bbd21d32b983480bac549d89ddbb2fbb268e629 (diff)
Fix "not empty" condition in SegmentExpression (#13386) (#13431)
* Fix "not empty" condition in SegmentExpression (#13386) * Fix "not empty" condition in SegmentExpression * fix tests * update expected values in AutoSuggestAPITest, SegmentTest * fix some tests * fix more tests
-rw-r--r--core/Segment/SegmentExpression.php4
-rw-r--r--plugins/API/tests/System/expected/test_AutoSuggestAPITest_daysSinceFirstVisit__API.getSuggestedValuesForSegment.xml1
-rw-r--r--plugins/API/tests/System/expected/test_AutoSuggestAPITest_daysSinceLastEcommerceOrder__API.getSuggestedValuesForSegment.xml1
-rw-r--r--plugins/API/tests/System/expected/test_AutoSuggestAPITest_daysSinceLastVisit__API.getSuggestedValuesForSegment.xml1
-rw-r--r--plugins/API/tests/System/expected/test_AutoSuggestAPITest_deviceBrand__API.getSuggestedValuesForSegment.xml1
-rw-r--r--plugins/API/tests/System/expected/test_AutoSuggestAPITest_deviceBrand__VisitsSummary.get_range.xml16
-rw-r--r--plugins/API/tests/System/expected/test_AutoSuggestAPITest_events__API.getSuggestedValuesForSegment.xml1
-rw-r--r--plugins/API/tests/System/expected/test_AutoSuggestAPITest_events__VisitsSummary.get_range.xml18
-rw-r--r--plugins/API/tests/System/expected/test_AutoSuggestAPITest_searches__API.getSuggestedValuesForSegment.xml1
-rw-r--r--plugins/API/tests/System/expected/test_AutoSuggestAPITest_searches__VisitsSummary.get_range.xml18
-rw-r--r--plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitDuration__API.getSuggestedValuesForSegment.xml1
-rw-r--r--plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitDuration__VisitsSummary.get_range.xml18
-rw-r--r--plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitServerHour__API.getSuggestedValuesForSegment.xml1
-rw-r--r--plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitServerHour__VisitsSummary.get_range.xml18
-rw-r--r--plugins/Ecommerce/tests/System/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_tables_and_graph__ScheduledReports.generateReport_week.original.html156
-rw-r--r--plugins/Ecommerce/tests/System/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_tables_only__ScheduledReports.generateReport_week.original.html156
-rw-r--r--tests/PHPUnit/Integration/SegmentTest.php12
-rw-r--r--tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_scheduled_report_in_html_tables_and_graph__ScheduledReports.generateReport_month.original.html150
-rw-r--r--tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_scheduled_report_in_html_tables_only__ScheduledReports.generateReport_month.original.html150
19 files changed, 358 insertions, 366 deletions
diff --git a/core/Segment/SegmentExpression.php b/core/Segment/SegmentExpression.php
index 40eea9581f..ffade291be 100644
--- a/core/Segment/SegmentExpression.php
+++ b/core/Segment/SegmentExpression.php
@@ -263,12 +263,12 @@ class SegmentExpression
break;
case self::MATCH_IS_NOT_NULL_NOR_EMPTY:
- $sqlMatch = '%s IS NOT NULL AND (%s <> \'\' OR %s = 0)';
+ $sqlMatch = '%s IS NOT NULL AND %s <> \'\' AND %s <> \'0\'';
$value = null;
break;
case self::MATCH_IS_NULL_OR_EMPTY:
- $sqlMatch = '%s IS NULL OR %s = \'\' ';
+ $sqlMatch = '%s IS NULL OR %s = \'\' OR %s = \'0\'';
$value = null;
break;
diff --git a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_daysSinceFirstVisit__API.getSuggestedValuesForSegment.xml b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_daysSinceFirstVisit__API.getSuggestedValuesForSegment.xml
index 487ce13284..90545e08bf 100644
--- a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_daysSinceFirstVisit__API.getSuggestedValuesForSegment.xml
+++ b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_daysSinceFirstVisit__API.getSuggestedValuesForSegment.xml
@@ -2,5 +2,4 @@
<result>
<row>100</row>
<row>101</row>
- <row>0</row>
</result> \ No newline at end of file
diff --git a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_daysSinceLastEcommerceOrder__API.getSuggestedValuesForSegment.xml b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_daysSinceLastEcommerceOrder__API.getSuggestedValuesForSegment.xml
index ab150e6b32..73d5727246 100644
--- a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_daysSinceLastEcommerceOrder__API.getSuggestedValuesForSegment.xml
+++ b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_daysSinceLastEcommerceOrder__API.getSuggestedValuesForSegment.xml
@@ -2,5 +2,4 @@
<result>
<row>50</row>
<row>51</row>
- <row>0</row>
</result> \ No newline at end of file
diff --git a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_daysSinceLastVisit__API.getSuggestedValuesForSegment.xml b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_daysSinceLastVisit__API.getSuggestedValuesForSegment.xml
index 9a04ddc8c8..497af1a4a5 100644
--- a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_daysSinceLastVisit__API.getSuggestedValuesForSegment.xml
+++ b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_daysSinceLastVisit__API.getSuggestedValuesForSegment.xml
@@ -2,5 +2,4 @@
<result>
<row>10</row>
<row>11</row>
- <row>0</row>
</result> \ No newline at end of file
diff --git a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_deviceBrand__API.getSuggestedValuesForSegment.xml b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_deviceBrand__API.getSuggestedValuesForSegment.xml
index 981ff8e068..1eb076ac56 100644
--- a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_deviceBrand__API.getSuggestedValuesForSegment.xml
+++ b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_deviceBrand__API.getSuggestedValuesForSegment.xml
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8" ?>
<result>
- <row>Unknown</row>
<row>Dell</row>
<row>Google</row>
<row>HTC</row>
diff --git a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_deviceBrand__VisitsSummary.get_range.xml b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_deviceBrand__VisitsSummary.get_range.xml
index e5851e11e6..0e04d3f6d9 100644
--- a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_deviceBrand__VisitsSummary.get_range.xml
+++ b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_deviceBrand__VisitsSummary.get_range.xml
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8" ?>
<result>
- <nb_visits>25</nb_visits>
- <nb_actions>67</nb_actions>
- <nb_visits_converted>25</nb_visits_converted>
- <bounce_count>13</bounce_count>
- <sum_visit_length>19452</sum_visit_length>
+ <nb_visits>2</nb_visits>
+ <nb_actions>6</nb_actions>
+ <nb_visits_converted>2</nb_visits_converted>
+ <bounce_count>1</bounce_count>
+ <sum_visit_length>1621</sum_visit_length>
<max_actions>5</max_actions>
- <bounce_rate>52%</bounce_rate>
- <nb_actions_per_visit>2.7</nb_actions_per_visit>
- <avg_time_on_site>778</avg_time_on_site>
+ <bounce_rate>50%</bounce_rate>
+ <nb_actions_per_visit>3</nb_actions_per_visit>
+ <avg_time_on_site>811</avg_time_on_site>
</result> \ No newline at end of file
diff --git a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_events__API.getSuggestedValuesForSegment.xml b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_events__API.getSuggestedValuesForSegment.xml
index 727df89075..70bdb9e417 100644
--- a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_events__API.getSuggestedValuesForSegment.xml
+++ b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_events__API.getSuggestedValuesForSegment.xml
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<result>
- <row>0</row>
<row>1</row>
</result> \ No newline at end of file
diff --git a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_events__VisitsSummary.get_range.xml b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_events__VisitsSummary.get_range.xml
index 7ace3fcbe7..eb20b7dcf9 100644
--- a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_events__VisitsSummary.get_range.xml
+++ b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_events__VisitsSummary.get_range.xml
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8" ?>
<result>
- <nb_visits>18</nb_visits>
- <nb_actions>18</nb_actions>
- <nb_visits_converted>18</nb_visits_converted>
- <bounce_count>18</bounce_count>
- <sum_visit_length>0</sum_visit_length>
- <max_actions>1</max_actions>
- <bounce_rate>100%</bounce_rate>
- <nb_actions_per_visit>1</nb_actions_per_visit>
- <avg_time_on_site>0</avg_time_on_site>
+ <nb_visits>17</nb_visits>
+ <nb_actions>77</nb_actions>
+ <nb_visits_converted>17</nb_visits_converted>
+ <bounce_count>0</bounce_count>
+ <sum_visit_length>27557</sum_visit_length>
+ <max_actions>5</max_actions>
+ <bounce_rate>0%</bounce_rate>
+ <nb_actions_per_visit>4.5</nb_actions_per_visit>
+ <avg_time_on_site>1621</avg_time_on_site>
</result> \ No newline at end of file
diff --git a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_searches__API.getSuggestedValuesForSegment.xml b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_searches__API.getSuggestedValuesForSegment.xml
index 727df89075..70bdb9e417 100644
--- a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_searches__API.getSuggestedValuesForSegment.xml
+++ b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_searches__API.getSuggestedValuesForSegment.xml
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<result>
- <row>0</row>
<row>1</row>
</result> \ No newline at end of file
diff --git a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_searches__VisitsSummary.get_range.xml b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_searches__VisitsSummary.get_range.xml
index 7c9bf3fd36..125518f3a5 100644
--- a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_searches__VisitsSummary.get_range.xml
+++ b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_searches__VisitsSummary.get_range.xml
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8" ?>
<result>
- <nb_visits>26</nb_visits>
- <nb_actions>50</nb_actions>
- <nb_visits_converted>26</nb_visits_converted>
- <bounce_count>18</bounce_count>
- <sum_visit_length>12968</sum_visit_length>
- <max_actions>4</max_actions>
- <bounce_rate>69%</bounce_rate>
- <nb_actions_per_visit>1.9</nb_actions_per_visit>
- <avg_time_on_site>499</avg_time_on_site>
+ <nb_visits>9</nb_visits>
+ <nb_actions>45</nb_actions>
+ <nb_visits_converted>9</nb_visits_converted>
+ <bounce_count>0</bounce_count>
+ <sum_visit_length>14589</sum_visit_length>
+ <max_actions>5</max_actions>
+ <bounce_rate>0%</bounce_rate>
+ <nb_actions_per_visit>5</nb_actions_per_visit>
+ <avg_time_on_site>1621</avg_time_on_site>
</result> \ No newline at end of file
diff --git a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitDuration__API.getSuggestedValuesForSegment.xml b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitDuration__API.getSuggestedValuesForSegment.xml
index 829f7602ef..1d39a66637 100644
--- a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitDuration__API.getSuggestedValuesForSegment.xml
+++ b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitDuration__API.getSuggestedValuesForSegment.xml
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<result>
- <row>0</row>
<row>1621</row>
</result> \ No newline at end of file
diff --git a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitDuration__VisitsSummary.get_range.xml b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitDuration__VisitsSummary.get_range.xml
index 7ace3fcbe7..eb20b7dcf9 100644
--- a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitDuration__VisitsSummary.get_range.xml
+++ b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitDuration__VisitsSummary.get_range.xml
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8" ?>
<result>
- <nb_visits>18</nb_visits>
- <nb_actions>18</nb_actions>
- <nb_visits_converted>18</nb_visits_converted>
- <bounce_count>18</bounce_count>
- <sum_visit_length>0</sum_visit_length>
- <max_actions>1</max_actions>
- <bounce_rate>100%</bounce_rate>
- <nb_actions_per_visit>1</nb_actions_per_visit>
- <avg_time_on_site>0</avg_time_on_site>
+ <nb_visits>17</nb_visits>
+ <nb_actions>77</nb_actions>
+ <nb_visits_converted>17</nb_visits_converted>
+ <bounce_count>0</bounce_count>
+ <sum_visit_length>27557</sum_visit_length>
+ <max_actions>5</max_actions>
+ <bounce_rate>0%</bounce_rate>
+ <nb_actions_per_visit>4.5</nb_actions_per_visit>
+ <avg_time_on_site>1621</avg_time_on_site>
</result> \ No newline at end of file
diff --git a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitServerHour__API.getSuggestedValuesForSegment.xml b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitServerHour__API.getSuggestedValuesForSegment.xml
index 727df89075..70bdb9e417 100644
--- a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitServerHour__API.getSuggestedValuesForSegment.xml
+++ b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitServerHour__API.getSuggestedValuesForSegment.xml
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<result>
- <row>0</row>
<row>1</row>
</result> \ No newline at end of file
diff --git a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitServerHour__VisitsSummary.get_range.xml b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitServerHour__VisitsSummary.get_range.xml
index 7ace3fcbe7..eb20b7dcf9 100644
--- a/plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitServerHour__VisitsSummary.get_range.xml
+++ b/plugins/API/tests/System/expected/test_AutoSuggestAPITest_visitServerHour__VisitsSummary.get_range.xml
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8" ?>
<result>
- <nb_visits>18</nb_visits>
- <nb_actions>18</nb_actions>
- <nb_visits_converted>18</nb_visits_converted>
- <bounce_count>18</bounce_count>
- <sum_visit_length>0</sum_visit_length>
- <max_actions>1</max_actions>
- <bounce_rate>100%</bounce_rate>
- <nb_actions_per_visit>1</nb_actions_per_visit>
- <avg_time_on_site>0</avg_time_on_site>
+ <nb_visits>17</nb_visits>
+ <nb_actions>77</nb_actions>
+ <nb_visits_converted>17</nb_visits_converted>
+ <bounce_count>0</bounce_count>
+ <sum_visit_length>27557</sum_visit_length>
+ <max_actions>5</max_actions>
+ <bounce_rate>0%</bounce_rate>
+ <nb_actions_per_visit>4.5</nb_actions_per_visit>
+ <avg_time_on_site>1621</avg_time_on_site>
</result> \ No newline at end of file
diff --git a/plugins/Ecommerce/tests/System/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_tables_and_graph__ScheduledReports.generateReport_week.original.html b/plugins/Ecommerce/tests/System/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_tables_and_graph__ScheduledReports.generateReport_week.original.html
index 9fc9a7301a..b1fedf85f1 100644
--- a/plugins/Ecommerce/tests/System/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_tables_and_graph__ScheduledReports.generateReport_week.original.html
+++ b/plugins/Ecommerce/tests/System/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_tables_and_graph__ScheduledReports.generateReport_week.original.html
@@ -44,377 +44,377 @@
</h2>
<ul>
<li>
- <a href="#MultiSites_getAll" style="text-decoration:none; color: #ddd;">
+ <a href="#MultiSites_getAll" style="text-decoration:none; color: #0d0d0d;">
All Websites dashboard
</a>
</li>
<li>
- <a href="#VisitsSummary_get" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitsSummary_get" style="text-decoration:none; color: #0d0d0d;">
Visits Summary
</a>
</li>
<li>
- <a href="#CustomVariables_getCustomVariables" style="text-decoration:none; color: #ddd;">
+ <a href="#CustomVariables_getCustomVariables" style="text-decoration:none; color: #0d0d0d;">
Custom Variables
</a>
</li>
<li>
- <a href="#DevicesDetection_getType" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getType" style="text-decoration:none; color: #0d0d0d;">
Device type
</a>
</li>
<li>
- <a href="#DevicesDetection_getModel" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getModel" style="text-decoration:none; color: #0d0d0d;">
Device model
</a>
</li>
<li>
- <a href="#DevicesDetection_getBrand" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getBrand" style="text-decoration:none; color: #0d0d0d;">
Device brand
</a>
</li>
<li>
- <a href="#Resolution_getResolution" style="text-decoration:none; color: #ddd;">
+ <a href="#Resolution_getResolution" style="text-decoration:none; color: #0d0d0d;">
Screen Resolution
</a>
</li>
<li>
- <a href="#DevicesDetection_getOsVersions" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getOsVersions" style="text-decoration:none; color: #0d0d0d;">
Operating System versions
</a>
</li>
<li>
- <a href="#DevicesDetection_getBrowsers" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getBrowsers" style="text-decoration:none; color: #0d0d0d;">
Browsers
</a>
</li>
<li>
- <a href="#DevicesDetection_getBrowserVersions" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getBrowserVersions" style="text-decoration:none; color: #0d0d0d;">
Browser version
</a>
</li>
<li>
- <a href="#Resolution_getConfiguration" style="text-decoration:none; color: #ddd;">
+ <a href="#Resolution_getConfiguration" style="text-decoration:none; color: #0d0d0d;">
Configurations
</a>
</li>
<li>
- <a href="#DevicesDetection_getOsFamilies" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getOsFamilies" style="text-decoration:none; color: #0d0d0d;">
Operating System families
</a>
</li>
<li>
- <a href="#DevicesDetection_getBrowserEngines" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getBrowserEngines" style="text-decoration:none; color: #0d0d0d;">
Browser engines
</a>
</li>
<li>
- <a href="#DevicePlugins_getPlugin" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicePlugins_getPlugin" style="text-decoration:none; color: #0d0d0d;">
Browser Plugins
</a>
</li>
<li>
- <a href="#VisitorInterest_getNumberOfVisitsPerVisitDuration" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitorInterest_getNumberOfVisitsPerVisitDuration" style="text-decoration:none; color: #0d0d0d;">
Length of Visits
</a>
</li>
<li>
- <a href="#VisitorInterest_getNumberOfVisitsPerPage" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitorInterest_getNumberOfVisitsPerPage" style="text-decoration:none; color: #0d0d0d;">
Pages per Visit
</a>
</li>
<li>
- <a href="#VisitorInterest_getNumberOfVisitsByVisitCount" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitorInterest_getNumberOfVisitsByVisitCount" style="text-decoration:none; color: #0d0d0d;">
Visits by Visit Number
</a>
</li>
<li>
- <a href="#VisitorInterest_getNumberOfVisitsByDaysSinceLast" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitorInterest_getNumberOfVisitsByDaysSinceLast" style="text-decoration:none; color: #0d0d0d;">
Visits by days since last visit
</a>
</li>
<li>
- <a href="#VisitFrequency_get" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitFrequency_get" style="text-decoration:none; color: #0d0d0d;">
Returning Visits
</a>
</li>
<li>
- <a href="#VisitTime_getVisitInformationPerLocalTime" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitTime_getVisitInformationPerLocalTime" style="text-decoration:none; color: #0d0d0d;">
Visits per local time
</a>
</li>
<li>
- <a href="#VisitTime_getVisitInformationPerServerTime" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitTime_getVisitInformationPerServerTime" style="text-decoration:none; color: #0d0d0d;">
Visits per server time
</a>
</li>
<li>
- <a href="#VisitTime_getByDayOfWeek" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitTime_getByDayOfWeek" style="text-decoration:none; color: #0d0d0d;">
Visits by Day of Week
</a>
</li>
<li>
- <a href="#UserId_getUsers" style="text-decoration:none; color: #ddd;">
+ <a href="#UserId_getUsers" style="text-decoration:none; color: #0d0d0d;">
User IDs
</a>
</li>
<li>
- <a href="#UserCountry_getCountry" style="text-decoration:none; color: #ddd;">
+ <a href="#UserCountry_getCountry" style="text-decoration:none; color: #0d0d0d;">
Country
</a>
</li>
<li>
- <a href="#UserCountry_getContinent" style="text-decoration:none; color: #ddd;">
+ <a href="#UserCountry_getContinent" style="text-decoration:none; color: #0d0d0d;">
Continent
</a>
</li>
<li>
- <a href="#UserCountry_getRegion" style="text-decoration:none; color: #ddd;">
+ <a href="#UserCountry_getRegion" style="text-decoration:none; color: #0d0d0d;">
Region
</a>
</li>
<li>
- <a href="#UserLanguage_getLanguage" style="text-decoration:none; color: #ddd;">
+ <a href="#UserLanguage_getLanguage" style="text-decoration:none; color: #0d0d0d;">
Browser language
</a>
</li>
<li>
- <a href="#UserCountry_getCity" style="text-decoration:none; color: #ddd;">
+ <a href="#UserCountry_getCity" style="text-decoration:none; color: #0d0d0d;">
City
</a>
</li>
<li>
- <a href="#UserLanguage_getLanguageCode" style="text-decoration:none; color: #ddd;">
+ <a href="#UserLanguage_getLanguageCode" style="text-decoration:none; color: #0d0d0d;">
Language code
</a>
</li>
<li>
- <a href="#Actions_get" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_get" style="text-decoration:none; color: #0d0d0d;">
Actions - Main metrics
</a>
</li>
<li>
- <a href="#Bandwidth_get" style="text-decoration:none; color: #ddd;">
+ <a href="#Bandwidth_get" style="text-decoration:none; color: #0d0d0d;">
Bandwidth - Main metrics
</a>
</li>
<li>
- <a href="#Actions_getPageUrls" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getPageUrls" style="text-decoration:none; color: #0d0d0d;">
Page URLs
</a>
</li>
<li>
- <a href="#Actions_getEntryPageUrls" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getEntryPageUrls" style="text-decoration:none; color: #0d0d0d;">
Entry pages
</a>
</li>
<li>
- <a href="#Actions_getEntryPageTitles" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getEntryPageTitles" style="text-decoration:none; color: #0d0d0d;">
Entry page titles
</a>
</li>
<li>
- <a href="#Actions_getExitPageUrls" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getExitPageUrls" style="text-decoration:none; color: #0d0d0d;">
Exit pages
</a>
</li>
<li>
- <a href="#Actions_getExitPageTitles" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getExitPageTitles" style="text-decoration:none; color: #0d0d0d;">
Exit page titles
</a>
</li>
<li>
- <a href="#Actions_getPageTitles" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getPageTitles" style="text-decoration:none; color: #0d0d0d;">
Page titles
</a>
</li>
<li>
- <a href="#Actions_getSiteSearchKeywords" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getSiteSearchKeywords" style="text-decoration:none; color: #0d0d0d;">
Site Search Keywords
</a>
</li>
<li>
- <a href="#Actions_getPageUrlsFollowingSiteSearch" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getPageUrlsFollowingSiteSearch" style="text-decoration:none; color: #0d0d0d;">
Pages Following a Site Search
</a>
</li>
<li>
- <a href="#Actions_getSiteSearchNoResultKeywords" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getSiteSearchNoResultKeywords" style="text-decoration:none; color: #0d0d0d;">
Search Keywords with No Results
</a>
</li>
<li>
- <a href="#Actions_getPageTitlesFollowingSiteSearch" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getPageTitlesFollowingSiteSearch" style="text-decoration:none; color: #0d0d0d;">
Page Titles Following a Site Search
</a>
</li>
<li>
- <a href="#Actions_getSiteSearchCategories" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getSiteSearchCategories" style="text-decoration:none; color: #0d0d0d;">
Search Categories
</a>
</li>
<li>
- <a href="#Actions_getOutlinks" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getOutlinks" style="text-decoration:none; color: #0d0d0d;">
Outlinks
</a>
</li>
<li>
- <a href="#Actions_getDownloads" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getDownloads" style="text-decoration:none; color: #0d0d0d;">
Downloads
</a>
</li>
<li>
- <a href="#Events_getCategory" style="text-decoration:none; color: #ddd;">
+ <a href="#Events_getCategory" style="text-decoration:none; color: #0d0d0d;">
Event Categories
</a>
</li>
<li>
- <a href="#Events_getAction" style="text-decoration:none; color: #ddd;">
+ <a href="#Events_getAction" style="text-decoration:none; color: #0d0d0d;">
Event Actions
</a>
</li>
<li>
- <a href="#Events_getName" style="text-decoration:none; color: #ddd;">
+ <a href="#Events_getName" style="text-decoration:none; color: #0d0d0d;">
Event Names
</a>
</li>
<li>
- <a href="#Contents_getContentNames" style="text-decoration:none; color: #ddd;">
+ <a href="#Contents_getContentNames" style="text-decoration:none; color: #0d0d0d;">
Content Name
</a>
</li>
<li>
- <a href="#Contents_getContentPieces" style="text-decoration:none; color: #ddd;">
+ <a href="#Contents_getContentPieces" style="text-decoration:none; color: #0d0d0d;">
Content Piece
</a>
</li>
<li>
- <a href="#Referrers_getReferrerType" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getReferrerType" style="text-decoration:none; color: #0d0d0d;">
Referrer Type
</a>
</li>
<li>
- <a href="#Referrers_getAll" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getAll" style="text-decoration:none; color: #0d0d0d;">
All Referrers
</a>
</li>
<li>
- <a href="#Referrers_getKeywords" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getKeywords" style="text-decoration:none; color: #0d0d0d;">
Keywords
</a>
</li>
<li>
- <a href="#Referrers_getSearchEngines" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getSearchEngines" style="text-decoration:none; color: #0d0d0d;">
Search Engines
</a>
</li>
<li>
- <a href="#Referrers_getWebsites" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getWebsites" style="text-decoration:none; color: #0d0d0d;">
Websites
</a>
</li>
<li>
- <a href="#Referrers_getSocials" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getSocials" style="text-decoration:none; color: #0d0d0d;">
Social Networks
</a>
</li>
<li>
- <a href="#Referrers_getCampaigns" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getCampaigns" style="text-decoration:none; color: #0d0d0d;">
Campaigns
</a>
</li>
<li>
- <a href="#Goals_get_idGoal--ecommerceOrder" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_get_idGoal--ecommerceOrder" style="text-decoration:none; color: #0d0d0d;">
Ecommerce Orders
</a>
</li>
<li>
- <a href="#Goals_getVisitsUntilConversion_idGoal--ecommerceOrder" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getVisitsUntilConversion_idGoal--ecommerceOrder" style="text-decoration:none; color: #0d0d0d;">
Ecommerce Orders - Visits to Conversion
</a>
</li>
<li>
- <a href="#Goals_getDaysToConversion_idGoal--ecommerceOrder" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getDaysToConversion_idGoal--ecommerceOrder" style="text-decoration:none; color: #0d0d0d;">
Ecommerce Orders - Days to Conversion
</a>
</li>
<li>
- <a href="#Goals_get_idGoal--ecommerceAbandonedCart" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_get_idGoal--ecommerceAbandonedCart" style="text-decoration:none; color: #0d0d0d;">
Abandoned Carts
</a>
</li>
<li>
- <a href="#Goals_getVisitsUntilConversion_idGoal--ecommerceAbandonedCart" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getVisitsUntilConversion_idGoal--ecommerceAbandonedCart" style="text-decoration:none; color: #0d0d0d;">
Abandoned Carts - Visits to Conversion
</a>
</li>
<li>
- <a href="#Goals_getDaysToConversion_idGoal--ecommerceAbandonedCart" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getDaysToConversion_idGoal--ecommerceAbandonedCart" style="text-decoration:none; color: #0d0d0d;">
Abandoned Carts - Days to Conversion
</a>
</li>
<li>
- <a href="#Goals_getItemsName" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getItemsName" style="text-decoration:none; color: #0d0d0d;">
Product Name
</a>
</li>
<li>
- <a href="#Goals_getItemsSku" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getItemsSku" style="text-decoration:none; color: #0d0d0d;">
Product SKU
</a>
</li>
<li>
- <a href="#Goals_getItemsCategory" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getItemsCategory" style="text-decoration:none; color: #0d0d0d;">
Product Category
</a>
</li>
<li>
- <a href="#Goals_get" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_get" style="text-decoration:none; color: #0d0d0d;">
Goals
</a>
</li>
<li>
- <a href="#Goals_getVisitsUntilConversion" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getVisitsUntilConversion" style="text-decoration:none; color: #0d0d0d;">
Visits to Conversion
</a>
</li>
<li>
- <a href="#Goals_getDaysToConversion" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getDaysToConversion" style="text-decoration:none; color: #0d0d0d;">
Days to Conversion
</a>
</li>
<li>
- <a href="#Goals_get_idGoal--1" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_get_idGoal--1" style="text-decoration:none; color: #0d0d0d;">
Goal title match, triggered ONCE
</a>
</li>
<li>
- <a href="#Goals_getVisitsUntilConversion_idGoal--1" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getVisitsUntilConversion_idGoal--1" style="text-decoration:none; color: #0d0d0d;">
title match, triggered ONCE - Visits to Conversion
</a>
</li>
<li>
- <a href="#Goals_getDaysToConversion_idGoal--1" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getDaysToConversion_idGoal--1" style="text-decoration:none; color: #0d0d0d;">
title match, triggered ONCE - Days to Conversion
</a>
</li>
<li>
- <a href="#ExampleUI_getTemperatures" style="text-decoration:none; color: #ddd;">
+ <a href="#ExampleUI_getTemperatures" style="text-decoration:none; color: #0d0d0d;">
Data tables
</a>
</li>
<li>
- <a href="#ExampleUI_getTemperaturesEvolution" style="text-decoration:none; color: #ddd;">
+ <a href="#ExampleUI_getTemperaturesEvolution" style="text-decoration:none; color: #0d0d0d;">
Temperatures evolution over time
</a>
</li>
<li>
- <a href="#ExampleUI_getPlanetRatios" style="text-decoration:none; color: #ddd;">
+ <a href="#ExampleUI_getPlanetRatios" style="text-decoration:none; color: #0d0d0d;">
Pie graph
</a>
</li>
<li>
- <a href="#ExampleUI_getPlanetRatiosWithLogos" style="text-decoration:none; color: #ddd;">
+ <a href="#ExampleUI_getPlanetRatiosWithLogos" style="text-decoration:none; color: #0d0d0d;">
Advanced tag cloud: with logos and links
</a>
</li>
@@ -4303,7 +4303,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/index.htm'>
+ <a style="color: #0d0d0d;" href='http://example.org/index.htm'>
/index.htm </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4361,7 +4361,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/index.htm'>
+ <a style="color: #0d0d0d;" href='http://example.org/index.htm'>
/index.htm </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4491,7 +4491,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/index.htm'>
+ <a style="color: #0d0d0d;" href='http://example.org/index.htm'>
/index.htm </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
diff --git a/plugins/Ecommerce/tests/System/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_tables_only__ScheduledReports.generateReport_week.original.html b/plugins/Ecommerce/tests/System/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_tables_only__ScheduledReports.generateReport_week.original.html
index c19ed61ef1..c36012bdfc 100644
--- a/plugins/Ecommerce/tests/System/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_tables_only__ScheduledReports.generateReport_week.original.html
+++ b/plugins/Ecommerce/tests/System/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_tables_only__ScheduledReports.generateReport_week.original.html
@@ -44,377 +44,377 @@
</h2>
<ul>
<li>
- <a href="#MultiSites_getAll" style="text-decoration:none; color: #ddd;">
+ <a href="#MultiSites_getAll" style="text-decoration:none; color: #0d0d0d;">
All Websites dashboard
</a>
</li>
<li>
- <a href="#VisitsSummary_get" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitsSummary_get" style="text-decoration:none; color: #0d0d0d;">
Visits Summary
</a>
</li>
<li>
- <a href="#CustomVariables_getCustomVariables" style="text-decoration:none; color: #ddd;">
+ <a href="#CustomVariables_getCustomVariables" style="text-decoration:none; color: #0d0d0d;">
Custom Variables
</a>
</li>
<li>
- <a href="#DevicesDetection_getType" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getType" style="text-decoration:none; color: #0d0d0d;">
Device type
</a>
</li>
<li>
- <a href="#DevicesDetection_getModel" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getModel" style="text-decoration:none; color: #0d0d0d;">
Device model
</a>
</li>
<li>
- <a href="#DevicesDetection_getBrand" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getBrand" style="text-decoration:none; color: #0d0d0d;">
Device brand
</a>
</li>
<li>
- <a href="#Resolution_getResolution" style="text-decoration:none; color: #ddd;">
+ <a href="#Resolution_getResolution" style="text-decoration:none; color: #0d0d0d;">
Screen Resolution
</a>
</li>
<li>
- <a href="#DevicesDetection_getOsVersions" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getOsVersions" style="text-decoration:none; color: #0d0d0d;">
Operating System versions
</a>
</li>
<li>
- <a href="#DevicesDetection_getBrowsers" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getBrowsers" style="text-decoration:none; color: #0d0d0d;">
Browsers
</a>
</li>
<li>
- <a href="#DevicesDetection_getBrowserVersions" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getBrowserVersions" style="text-decoration:none; color: #0d0d0d;">
Browser version
</a>
</li>
<li>
- <a href="#Resolution_getConfiguration" style="text-decoration:none; color: #ddd;">
+ <a href="#Resolution_getConfiguration" style="text-decoration:none; color: #0d0d0d;">
Configurations
</a>
</li>
<li>
- <a href="#DevicesDetection_getOsFamilies" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getOsFamilies" style="text-decoration:none; color: #0d0d0d;">
Operating System families
</a>
</li>
<li>
- <a href="#DevicesDetection_getBrowserEngines" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getBrowserEngines" style="text-decoration:none; color: #0d0d0d;">
Browser engines
</a>
</li>
<li>
- <a href="#DevicePlugins_getPlugin" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicePlugins_getPlugin" style="text-decoration:none; color: #0d0d0d;">
Browser Plugins
</a>
</li>
<li>
- <a href="#VisitorInterest_getNumberOfVisitsPerVisitDuration" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitorInterest_getNumberOfVisitsPerVisitDuration" style="text-decoration:none; color: #0d0d0d;">
Length of Visits
</a>
</li>
<li>
- <a href="#VisitorInterest_getNumberOfVisitsPerPage" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitorInterest_getNumberOfVisitsPerPage" style="text-decoration:none; color: #0d0d0d;">
Pages per Visit
</a>
</li>
<li>
- <a href="#VisitorInterest_getNumberOfVisitsByVisitCount" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitorInterest_getNumberOfVisitsByVisitCount" style="text-decoration:none; color: #0d0d0d;">
Visits by Visit Number
</a>
</li>
<li>
- <a href="#VisitorInterest_getNumberOfVisitsByDaysSinceLast" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitorInterest_getNumberOfVisitsByDaysSinceLast" style="text-decoration:none; color: #0d0d0d;">
Visits by days since last visit
</a>
</li>
<li>
- <a href="#VisitFrequency_get" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitFrequency_get" style="text-decoration:none; color: #0d0d0d;">
Returning Visits
</a>
</li>
<li>
- <a href="#VisitTime_getVisitInformationPerLocalTime" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitTime_getVisitInformationPerLocalTime" style="text-decoration:none; color: #0d0d0d;">
Visits per local time
</a>
</li>
<li>
- <a href="#VisitTime_getVisitInformationPerServerTime" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitTime_getVisitInformationPerServerTime" style="text-decoration:none; color: #0d0d0d;">
Visits per server time
</a>
</li>
<li>
- <a href="#VisitTime_getByDayOfWeek" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitTime_getByDayOfWeek" style="text-decoration:none; color: #0d0d0d;">
Visits by Day of Week
</a>
</li>
<li>
- <a href="#UserId_getUsers" style="text-decoration:none; color: #ddd;">
+ <a href="#UserId_getUsers" style="text-decoration:none; color: #0d0d0d;">
User IDs
</a>
</li>
<li>
- <a href="#UserCountry_getCountry" style="text-decoration:none; color: #ddd;">
+ <a href="#UserCountry_getCountry" style="text-decoration:none; color: #0d0d0d;">
Country
</a>
</li>
<li>
- <a href="#UserCountry_getContinent" style="text-decoration:none; color: #ddd;">
+ <a href="#UserCountry_getContinent" style="text-decoration:none; color: #0d0d0d;">
Continent
</a>
</li>
<li>
- <a href="#UserCountry_getRegion" style="text-decoration:none; color: #ddd;">
+ <a href="#UserCountry_getRegion" style="text-decoration:none; color: #0d0d0d;">
Region
</a>
</li>
<li>
- <a href="#UserLanguage_getLanguage" style="text-decoration:none; color: #ddd;">
+ <a href="#UserLanguage_getLanguage" style="text-decoration:none; color: #0d0d0d;">
Browser language
</a>
</li>
<li>
- <a href="#UserCountry_getCity" style="text-decoration:none; color: #ddd;">
+ <a href="#UserCountry_getCity" style="text-decoration:none; color: #0d0d0d;">
City
</a>
</li>
<li>
- <a href="#UserLanguage_getLanguageCode" style="text-decoration:none; color: #ddd;">
+ <a href="#UserLanguage_getLanguageCode" style="text-decoration:none; color: #0d0d0d;">
Language code
</a>
</li>
<li>
- <a href="#Actions_get" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_get" style="text-decoration:none; color: #0d0d0d;">
Actions - Main metrics
</a>
</li>
<li>
- <a href="#Bandwidth_get" style="text-decoration:none; color: #ddd;">
+ <a href="#Bandwidth_get" style="text-decoration:none; color: #0d0d0d;">
Bandwidth - Main metrics
</a>
</li>
<li>
- <a href="#Actions_getPageUrls" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getPageUrls" style="text-decoration:none; color: #0d0d0d;">
Page URLs
</a>
</li>
<li>
- <a href="#Actions_getEntryPageUrls" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getEntryPageUrls" style="text-decoration:none; color: #0d0d0d;">
Entry pages
</a>
</li>
<li>
- <a href="#Actions_getEntryPageTitles" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getEntryPageTitles" style="text-decoration:none; color: #0d0d0d;">
Entry page titles
</a>
</li>
<li>
- <a href="#Actions_getExitPageUrls" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getExitPageUrls" style="text-decoration:none; color: #0d0d0d;">
Exit pages
</a>
</li>
<li>
- <a href="#Actions_getExitPageTitles" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getExitPageTitles" style="text-decoration:none; color: #0d0d0d;">
Exit page titles
</a>
</li>
<li>
- <a href="#Actions_getPageTitles" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getPageTitles" style="text-decoration:none; color: #0d0d0d;">
Page titles
</a>
</li>
<li>
- <a href="#Actions_getSiteSearchKeywords" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getSiteSearchKeywords" style="text-decoration:none; color: #0d0d0d;">
Site Search Keywords
</a>
</li>
<li>
- <a href="#Actions_getPageUrlsFollowingSiteSearch" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getPageUrlsFollowingSiteSearch" style="text-decoration:none; color: #0d0d0d;">
Pages Following a Site Search
</a>
</li>
<li>
- <a href="#Actions_getSiteSearchNoResultKeywords" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getSiteSearchNoResultKeywords" style="text-decoration:none; color: #0d0d0d;">
Search Keywords with No Results
</a>
</li>
<li>
- <a href="#Actions_getPageTitlesFollowingSiteSearch" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getPageTitlesFollowingSiteSearch" style="text-decoration:none; color: #0d0d0d;">
Page Titles Following a Site Search
</a>
</li>
<li>
- <a href="#Actions_getSiteSearchCategories" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getSiteSearchCategories" style="text-decoration:none; color: #0d0d0d;">
Search Categories
</a>
</li>
<li>
- <a href="#Actions_getOutlinks" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getOutlinks" style="text-decoration:none; color: #0d0d0d;">
Outlinks
</a>
</li>
<li>
- <a href="#Actions_getDownloads" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getDownloads" style="text-decoration:none; color: #0d0d0d;">
Downloads
</a>
</li>
<li>
- <a href="#Events_getCategory" style="text-decoration:none; color: #ddd;">
+ <a href="#Events_getCategory" style="text-decoration:none; color: #0d0d0d;">
Event Categories
</a>
</li>
<li>
- <a href="#Events_getAction" style="text-decoration:none; color: #ddd;">
+ <a href="#Events_getAction" style="text-decoration:none; color: #0d0d0d;">
Event Actions
</a>
</li>
<li>
- <a href="#Events_getName" style="text-decoration:none; color: #ddd;">
+ <a href="#Events_getName" style="text-decoration:none; color: #0d0d0d;">
Event Names
</a>
</li>
<li>
- <a href="#Contents_getContentNames" style="text-decoration:none; color: #ddd;">
+ <a href="#Contents_getContentNames" style="text-decoration:none; color: #0d0d0d;">
Content Name
</a>
</li>
<li>
- <a href="#Contents_getContentPieces" style="text-decoration:none; color: #ddd;">
+ <a href="#Contents_getContentPieces" style="text-decoration:none; color: #0d0d0d;">
Content Piece
</a>
</li>
<li>
- <a href="#Referrers_getReferrerType" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getReferrerType" style="text-decoration:none; color: #0d0d0d;">
Referrer Type
</a>
</li>
<li>
- <a href="#Referrers_getAll" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getAll" style="text-decoration:none; color: #0d0d0d;">
All Referrers
</a>
</li>
<li>
- <a href="#Referrers_getKeywords" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getKeywords" style="text-decoration:none; color: #0d0d0d;">
Keywords
</a>
</li>
<li>
- <a href="#Referrers_getSearchEngines" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getSearchEngines" style="text-decoration:none; color: #0d0d0d;">
Search Engines
</a>
</li>
<li>
- <a href="#Referrers_getWebsites" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getWebsites" style="text-decoration:none; color: #0d0d0d;">
Websites
</a>
</li>
<li>
- <a href="#Referrers_getSocials" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getSocials" style="text-decoration:none; color: #0d0d0d;">
Social Networks
</a>
</li>
<li>
- <a href="#Referrers_getCampaigns" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getCampaigns" style="text-decoration:none; color: #0d0d0d;">
Campaigns
</a>
</li>
<li>
- <a href="#Goals_get_idGoal--ecommerceOrder" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_get_idGoal--ecommerceOrder" style="text-decoration:none; color: #0d0d0d;">
Ecommerce Orders
</a>
</li>
<li>
- <a href="#Goals_getVisitsUntilConversion_idGoal--ecommerceOrder" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getVisitsUntilConversion_idGoal--ecommerceOrder" style="text-decoration:none; color: #0d0d0d;">
Ecommerce Orders - Visits to Conversion
</a>
</li>
<li>
- <a href="#Goals_getDaysToConversion_idGoal--ecommerceOrder" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getDaysToConversion_idGoal--ecommerceOrder" style="text-decoration:none; color: #0d0d0d;">
Ecommerce Orders - Days to Conversion
</a>
</li>
<li>
- <a href="#Goals_get_idGoal--ecommerceAbandonedCart" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_get_idGoal--ecommerceAbandonedCart" style="text-decoration:none; color: #0d0d0d;">
Abandoned Carts
</a>
</li>
<li>
- <a href="#Goals_getVisitsUntilConversion_idGoal--ecommerceAbandonedCart" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getVisitsUntilConversion_idGoal--ecommerceAbandonedCart" style="text-decoration:none; color: #0d0d0d;">
Abandoned Carts - Visits to Conversion
</a>
</li>
<li>
- <a href="#Goals_getDaysToConversion_idGoal--ecommerceAbandonedCart" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getDaysToConversion_idGoal--ecommerceAbandonedCart" style="text-decoration:none; color: #0d0d0d;">
Abandoned Carts - Days to Conversion
</a>
</li>
<li>
- <a href="#Goals_getItemsName" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getItemsName" style="text-decoration:none; color: #0d0d0d;">
Product Name
</a>
</li>
<li>
- <a href="#Goals_getItemsSku" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getItemsSku" style="text-decoration:none; color: #0d0d0d;">
Product SKU
</a>
</li>
<li>
- <a href="#Goals_getItemsCategory" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getItemsCategory" style="text-decoration:none; color: #0d0d0d;">
Product Category
</a>
</li>
<li>
- <a href="#Goals_get" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_get" style="text-decoration:none; color: #0d0d0d;">
Goals
</a>
</li>
<li>
- <a href="#Goals_getVisitsUntilConversion" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getVisitsUntilConversion" style="text-decoration:none; color: #0d0d0d;">
Visits to Conversion
</a>
</li>
<li>
- <a href="#Goals_getDaysToConversion" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getDaysToConversion" style="text-decoration:none; color: #0d0d0d;">
Days to Conversion
</a>
</li>
<li>
- <a href="#Goals_get_idGoal--1" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_get_idGoal--1" style="text-decoration:none; color: #0d0d0d;">
Goal title match, triggered ONCE
</a>
</li>
<li>
- <a href="#Goals_getVisitsUntilConversion_idGoal--1" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getVisitsUntilConversion_idGoal--1" style="text-decoration:none; color: #0d0d0d;">
title match, triggered ONCE - Visits to Conversion
</a>
</li>
<li>
- <a href="#Goals_getDaysToConversion_idGoal--1" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getDaysToConversion_idGoal--1" style="text-decoration:none; color: #0d0d0d;">
title match, triggered ONCE - Days to Conversion
</a>
</li>
<li>
- <a href="#ExampleUI_getTemperatures" style="text-decoration:none; color: #ddd;">
+ <a href="#ExampleUI_getTemperatures" style="text-decoration:none; color: #0d0d0d;">
Data tables
</a>
</li>
<li>
- <a href="#ExampleUI_getTemperaturesEvolution" style="text-decoration:none; color: #ddd;">
+ <a href="#ExampleUI_getTemperaturesEvolution" style="text-decoration:none; color: #0d0d0d;">
Temperatures evolution over time
</a>
</li>
<li>
- <a href="#ExampleUI_getPlanetRatios" style="text-decoration:none; color: #ddd;">
+ <a href="#ExampleUI_getPlanetRatios" style="text-decoration:none; color: #0d0d0d;">
Pie graph
</a>
</li>
<li>
- <a href="#ExampleUI_getPlanetRatiosWithLogos" style="text-decoration:none; color: #ddd;">
+ <a href="#ExampleUI_getPlanetRatiosWithLogos" style="text-decoration:none; color: #0d0d0d;">
Advanced tag cloud: with logos and links
</a>
</li>
@@ -4086,7 +4086,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/index.htm'>
+ <a style="color: #0d0d0d;" href='http://example.org/index.htm'>
/index.htm </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4137,7 +4137,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/index.htm'>
+ <a style="color: #0d0d0d;" href='http://example.org/index.htm'>
/index.htm </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4253,7 +4253,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/index.htm'>
+ <a style="color: #0d0d0d;" href='http://example.org/index.htm'>
/index.htm </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
diff --git a/tests/PHPUnit/Integration/SegmentTest.php b/tests/PHPUnit/Integration/SegmentTest.php
index d1bea412f2..f2771a2e10 100644
--- a/tests/PHPUnit/Integration/SegmentTest.php
+++ b/tests/PHPUnit/Integration/SegmentTest.php
@@ -81,21 +81,21 @@ class SegmentTest extends IntegrationTestCase
// IS NOT NULL
array('browserCode==ff;referrerKeyword!=', array(
- 'where' => ' log_visit.config_browser_name = ? AND ( log_visit.referer_keyword IS NOT NULL AND (log_visit.referer_keyword <> \'\' OR log_visit.referer_keyword = 0) ) ',
+ 'where' => ' log_visit.config_browser_name = ? AND ( log_visit.referer_keyword IS NOT NULL AND log_visit.referer_keyword <> \'\' AND log_visit.referer_keyword <> \'0\' ) ',
'bind' => array('ff')
)),
array('referrerKeyword!=,browserCode==ff', array(
- 'where' => ' (( log_visit.referer_keyword IS NOT NULL AND (log_visit.referer_keyword <> \'\' OR log_visit.referer_keyword = 0) ) OR log_visit.config_browser_name = ? )',
+ 'where' => ' (( log_visit.referer_keyword IS NOT NULL AND log_visit.referer_keyword <> \'\' AND log_visit.referer_keyword <> \'0\' ) OR log_visit.config_browser_name = ? )',
'bind' => array('ff')
)),
// IS NULL
array('browserCode==ff;referrerKeyword==', array(
- 'where' => ' log_visit.config_browser_name = ? AND ( log_visit.referer_keyword IS NULL OR log_visit.referer_keyword = \'\' ) ',
+ 'where' => ' log_visit.config_browser_name = ? AND ( log_visit.referer_keyword IS NULL OR log_visit.referer_keyword = \'\' OR log_visit.referer_keyword = \'0\' ) ',
'bind' => array('ff')
)),
array('referrerKeyword==,browserCode==ff', array(
- 'where' => ' (( log_visit.referer_keyword IS NULL OR log_visit.referer_keyword = \'\' ) OR log_visit.config_browser_name = ? )',
+ 'where' => ' (( log_visit.referer_keyword IS NULL OR log_visit.referer_keyword = \'\' OR log_visit.referer_keyword = \'0\' ) OR log_visit.config_browser_name = ? )',
'bind' => array('ff')
)),
@@ -630,8 +630,8 @@ class SegmentTest extends IntegrationTestCase
log_conversion.idgoal = ? AND HOUR(log_visit.visit_last_action_time) = ? AND log_link_visit_action.custom_var_k1 = ?
AND (
log_link_visit_action.idaction_url IS NOT NULL
- AND (log_link_visit_action.idaction_url <> ''
- OR log_link_visit_action.idaction_url = 0)
+ AND log_link_visit_action.idaction_url <> ''
+ AND log_link_visit_action.idaction_url <> '0'
)
GROUP BY log_visit.idvisit
ORDER BY NULL
diff --git a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_scheduled_report_in_html_tables_and_graph__ScheduledReports.generateReport_month.original.html b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_scheduled_report_in_html_tables_and_graph__ScheduledReports.generateReport_month.original.html
index 963e4dbfbc..865f1fdeec 100644
--- a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_scheduled_report_in_html_tables_and_graph__ScheduledReports.generateReport_month.original.html
+++ b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_scheduled_report_in_html_tables_and_graph__ScheduledReports.generateReport_month.original.html
@@ -44,317 +44,317 @@
</h2>
<ul>
<li>
- <a href="#MultiSites_getAll" style="text-decoration:none; color: #ddd;">
+ <a href="#MultiSites_getAll" style="text-decoration:none; color: #0d0d0d;">
All Websites dashboard
</a>
</li>
<li>
- <a href="#VisitsSummary_get" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitsSummary_get" style="text-decoration:none; color: #0d0d0d;">
Visits Summary
</a>
</li>
<li>
- <a href="#CustomVariables_getCustomVariables" style="text-decoration:none; color: #ddd;">
+ <a href="#CustomVariables_getCustomVariables" style="text-decoration:none; color: #0d0d0d;">
Custom Variables
</a>
</li>
<li>
- <a href="#DevicesDetection_getType" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getType" style="text-decoration:none; color: #0d0d0d;">
Device type
</a>
</li>
<li>
- <a href="#DevicesDetection_getModel" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getModel" style="text-decoration:none; color: #0d0d0d;">
Device model
</a>
</li>
<li>
- <a href="#DevicesDetection_getBrand" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getBrand" style="text-decoration:none; color: #0d0d0d;">
Device brand
</a>
</li>
<li>
- <a href="#Resolution_getResolution" style="text-decoration:none; color: #ddd;">
+ <a href="#Resolution_getResolution" style="text-decoration:none; color: #0d0d0d;">
Screen Resolution
</a>
</li>
<li>
- <a href="#DevicesDetection_getOsVersions" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getOsVersions" style="text-decoration:none; color: #0d0d0d;">
Operating System versions
</a>
</li>
<li>
- <a href="#DevicesDetection_getBrowsers" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getBrowsers" style="text-decoration:none; color: #0d0d0d;">
Browsers
</a>
</li>
<li>
- <a href="#DevicesDetection_getBrowserVersions" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getBrowserVersions" style="text-decoration:none; color: #0d0d0d;">
Browser version
</a>
</li>
<li>
- <a href="#Resolution_getConfiguration" style="text-decoration:none; color: #ddd;">
+ <a href="#Resolution_getConfiguration" style="text-decoration:none; color: #0d0d0d;">
Configurations
</a>
</li>
<li>
- <a href="#DevicesDetection_getOsFamilies" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getOsFamilies" style="text-decoration:none; color: #0d0d0d;">
Operating System families
</a>
</li>
<li>
- <a href="#DevicesDetection_getBrowserEngines" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getBrowserEngines" style="text-decoration:none; color: #0d0d0d;">
Browser engines
</a>
</li>
<li>
- <a href="#DevicePlugins_getPlugin" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicePlugins_getPlugin" style="text-decoration:none; color: #0d0d0d;">
Browser Plugins
</a>
</li>
<li>
- <a href="#VisitorInterest_getNumberOfVisitsPerVisitDuration" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitorInterest_getNumberOfVisitsPerVisitDuration" style="text-decoration:none; color: #0d0d0d;">
Length of Visits
</a>
</li>
<li>
- <a href="#VisitorInterest_getNumberOfVisitsPerPage" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitorInterest_getNumberOfVisitsPerPage" style="text-decoration:none; color: #0d0d0d;">
Pages per Visit
</a>
</li>
<li>
- <a href="#VisitorInterest_getNumberOfVisitsByVisitCount" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitorInterest_getNumberOfVisitsByVisitCount" style="text-decoration:none; color: #0d0d0d;">
Visits by Visit Number
</a>
</li>
<li>
- <a href="#VisitorInterest_getNumberOfVisitsByDaysSinceLast" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitorInterest_getNumberOfVisitsByDaysSinceLast" style="text-decoration:none; color: #0d0d0d;">
Visits by days since last visit
</a>
</li>
<li>
- <a href="#VisitFrequency_get" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitFrequency_get" style="text-decoration:none; color: #0d0d0d;">
Returning Visits
</a>
</li>
<li>
- <a href="#VisitTime_getVisitInformationPerLocalTime" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitTime_getVisitInformationPerLocalTime" style="text-decoration:none; color: #0d0d0d;">
Visits per local time
</a>
</li>
<li>
- <a href="#VisitTime_getVisitInformationPerServerTime" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitTime_getVisitInformationPerServerTime" style="text-decoration:none; color: #0d0d0d;">
Visits per server time
</a>
</li>
<li>
- <a href="#VisitTime_getByDayOfWeek" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitTime_getByDayOfWeek" style="text-decoration:none; color: #0d0d0d;">
Visits by Day of Week
</a>
</li>
<li>
- <a href="#UserId_getUsers" style="text-decoration:none; color: #ddd;">
+ <a href="#UserId_getUsers" style="text-decoration:none; color: #0d0d0d;">
User IDs
</a>
</li>
<li>
- <a href="#UserCountry_getCountry" style="text-decoration:none; color: #ddd;">
+ <a href="#UserCountry_getCountry" style="text-decoration:none; color: #0d0d0d;">
Country
</a>
</li>
<li>
- <a href="#UserCountry_getContinent" style="text-decoration:none; color: #ddd;">
+ <a href="#UserCountry_getContinent" style="text-decoration:none; color: #0d0d0d;">
Continent
</a>
</li>
<li>
- <a href="#UserCountry_getRegion" style="text-decoration:none; color: #ddd;">
+ <a href="#UserCountry_getRegion" style="text-decoration:none; color: #0d0d0d;">
Region
</a>
</li>
<li>
- <a href="#UserLanguage_getLanguage" style="text-decoration:none; color: #ddd;">
+ <a href="#UserLanguage_getLanguage" style="text-decoration:none; color: #0d0d0d;">
Browser language
</a>
</li>
<li>
- <a href="#UserCountry_getCity" style="text-decoration:none; color: #ddd;">
+ <a href="#UserCountry_getCity" style="text-decoration:none; color: #0d0d0d;">
City
</a>
</li>
<li>
- <a href="#UserLanguage_getLanguageCode" style="text-decoration:none; color: #ddd;">
+ <a href="#UserLanguage_getLanguageCode" style="text-decoration:none; color: #0d0d0d;">
Language code
</a>
</li>
<li>
- <a href="#Actions_get" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_get" style="text-decoration:none; color: #0d0d0d;">
Actions - Main metrics
</a>
</li>
<li>
- <a href="#Bandwidth_get" style="text-decoration:none; color: #ddd;">
+ <a href="#Bandwidth_get" style="text-decoration:none; color: #0d0d0d;">
Bandwidth - Main metrics
</a>
</li>
<li>
- <a href="#Actions_getPageUrls" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getPageUrls" style="text-decoration:none; color: #0d0d0d;">
Page URLs
</a>
</li>
<li>
- <a href="#Actions_getEntryPageUrls" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getEntryPageUrls" style="text-decoration:none; color: #0d0d0d;">
Entry pages
</a>
</li>
<li>
- <a href="#Actions_getEntryPageTitles" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getEntryPageTitles" style="text-decoration:none; color: #0d0d0d;">
Entry page titles
</a>
</li>
<li>
- <a href="#Actions_getExitPageUrls" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getExitPageUrls" style="text-decoration:none; color: #0d0d0d;">
Exit pages
</a>
</li>
<li>
- <a href="#Actions_getExitPageTitles" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getExitPageTitles" style="text-decoration:none; color: #0d0d0d;">
Exit page titles
</a>
</li>
<li>
- <a href="#Actions_getPageTitles" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getPageTitles" style="text-decoration:none; color: #0d0d0d;">
Page titles
</a>
</li>
<li>
- <a href="#Actions_getSiteSearchKeywords" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getSiteSearchKeywords" style="text-decoration:none; color: #0d0d0d;">
Site Search Keywords
</a>
</li>
<li>
- <a href="#Actions_getPageUrlsFollowingSiteSearch" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getPageUrlsFollowingSiteSearch" style="text-decoration:none; color: #0d0d0d;">
Pages Following a Site Search
</a>
</li>
<li>
- <a href="#Actions_getSiteSearchNoResultKeywords" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getSiteSearchNoResultKeywords" style="text-decoration:none; color: #0d0d0d;">
Search Keywords with No Results
</a>
</li>
<li>
- <a href="#Actions_getPageTitlesFollowingSiteSearch" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getPageTitlesFollowingSiteSearch" style="text-decoration:none; color: #0d0d0d;">
Page Titles Following a Site Search
</a>
</li>
<li>
- <a href="#Actions_getSiteSearchCategories" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getSiteSearchCategories" style="text-decoration:none; color: #0d0d0d;">
Search Categories
</a>
</li>
<li>
- <a href="#Actions_getOutlinks" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getOutlinks" style="text-decoration:none; color: #0d0d0d;">
Outlinks
</a>
</li>
<li>
- <a href="#Actions_getDownloads" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getDownloads" style="text-decoration:none; color: #0d0d0d;">
Downloads
</a>
</li>
<li>
- <a href="#Events_getCategory" style="text-decoration:none; color: #ddd;">
+ <a href="#Events_getCategory" style="text-decoration:none; color: #0d0d0d;">
Event Categories
</a>
</li>
<li>
- <a href="#Events_getAction" style="text-decoration:none; color: #ddd;">
+ <a href="#Events_getAction" style="text-decoration:none; color: #0d0d0d;">
Event Actions
</a>
</li>
<li>
- <a href="#Events_getName" style="text-decoration:none; color: #ddd;">
+ <a href="#Events_getName" style="text-decoration:none; color: #0d0d0d;">
Event Names
</a>
</li>
<li>
- <a href="#Contents_getContentNames" style="text-decoration:none; color: #ddd;">
+ <a href="#Contents_getContentNames" style="text-decoration:none; color: #0d0d0d;">
Content Name
</a>
</li>
<li>
- <a href="#Contents_getContentPieces" style="text-decoration:none; color: #ddd;">
+ <a href="#Contents_getContentPieces" style="text-decoration:none; color: #0d0d0d;">
Content Piece
</a>
</li>
<li>
- <a href="#Referrers_getReferrerType" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getReferrerType" style="text-decoration:none; color: #0d0d0d;">
Referrer Type
</a>
</li>
<li>
- <a href="#Referrers_getAll" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getAll" style="text-decoration:none; color: #0d0d0d;">
All Referrers
</a>
</li>
<li>
- <a href="#Referrers_getKeywords" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getKeywords" style="text-decoration:none; color: #0d0d0d;">
Keywords
</a>
</li>
<li>
- <a href="#Referrers_getSearchEngines" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getSearchEngines" style="text-decoration:none; color: #0d0d0d;">
Search Engines
</a>
</li>
<li>
- <a href="#Referrers_getWebsites" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getWebsites" style="text-decoration:none; color: #0d0d0d;">
Websites
</a>
</li>
<li>
- <a href="#Referrers_getSocials" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getSocials" style="text-decoration:none; color: #0d0d0d;">
Social Networks
</a>
</li>
<li>
- <a href="#Referrers_getCampaigns" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getCampaigns" style="text-decoration:none; color: #0d0d0d;">
Campaigns
</a>
</li>
<li>
- <a href="#Goals_get" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_get" style="text-decoration:none; color: #0d0d0d;">
Goals
</a>
</li>
<li>
- <a href="#Goals_getVisitsUntilConversion" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getVisitsUntilConversion" style="text-decoration:none; color: #0d0d0d;">
Visits to Conversion
</a>
</li>
<li>
- <a href="#Goals_getDaysToConversion" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getDaysToConversion" style="text-decoration:none; color: #0d0d0d;">
Days to Conversion
</a>
</li>
<li>
- <a href="#ExampleUI_getTemperatures" style="text-decoration:none; color: #ddd;">
+ <a href="#ExampleUI_getTemperatures" style="text-decoration:none; color: #0d0d0d;">
Data tables
</a>
</li>
<li>
- <a href="#ExampleUI_getTemperaturesEvolution" style="text-decoration:none; color: #ddd;">
+ <a href="#ExampleUI_getTemperaturesEvolution" style="text-decoration:none; color: #0d0d0d;">
Temperatures evolution over time
</a>
</li>
<li>
- <a href="#ExampleUI_getPlanetRatios" style="text-decoration:none; color: #ddd;">
+ <a href="#ExampleUI_getPlanetRatios" style="text-decoration:none; color: #0d0d0d;">
Pie graph
</a>
</li>
<li>
- <a href="#ExampleUI_getPlanetRatiosWithLogos" style="text-decoration:none; color: #ddd;">
+ <a href="#ExampleUI_getPlanetRatiosWithLogos" style="text-decoration:none; color: #0d0d0d;">
Advanced tag cloud: with logos and links
</a>
</li>
@@ -4482,7 +4482,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/index.htm'>
+ <a style="color: #0d0d0d;" href='http://example.org/index.htm'>
/index.htm </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4507,7 +4507,7 @@
<tr style="background-color: #f2f2f2;">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://'>
+ <a style="color: #0d0d0d;" href='http://'>
Page URL not defined </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4532,7 +4532,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/thankyou'>
+ <a style="color: #0d0d0d;" href='http://example.org/thankyou'>
/thankyou </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4557,7 +4557,7 @@
<tr style="background-color: #f2f2f2;">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/products'>
+ <a style="color: #0d0d0d;" href='http://example.org/products'>
/products </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4621,7 +4621,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/index.htm'>
+ <a style="color: #0d0d0d;" href='http://example.org/index.htm'>
/index.htm </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4640,7 +4640,7 @@
<tr style="background-color: #f2f2f2;">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/products'>
+ <a style="color: #0d0d0d;" href='http://example.org/products'>
/products </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4771,7 +4771,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/index.htm'>
+ <a style="color: #0d0d0d;" href='http://example.org/index.htm'>
/index.htm </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4790,7 +4790,7 @@
<tr style="background-color: #f2f2f2;">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/thankyou'>
+ <a style="color: #0d0d0d;" href='http://example.org/thankyou'>
/thankyou </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4809,7 +4809,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/products'>
+ <a style="color: #0d0d0d;" href='http://example.org/products'>
/products </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -5395,7 +5395,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://referrer.com/Other_Page.htm'>
+ <a style="color: #0d0d0d;" href='http://referrer.com/Other_Page.htm'>
referrer.com/Other_Page.htm </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -5420,7 +5420,7 @@
<tr style="background-color: #f2f2f2;">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='https://referrer.com/Other_Page.htm'>
+ <a style="color: #0d0d0d;" href='https://referrer.com/Other_Page.htm'>
referrer.com/Other_Page.htm </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -5445,7 +5445,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://referrer.com/page.htm?param=valuewith some spaces'>
+ <a style="color: #0d0d0d;" href='http://referrer.com/page.htm?param=valuewith some spaces'>
referrer.com/page.htm?param=valuewith some spaces </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
diff --git a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_scheduled_report_in_html_tables_only__ScheduledReports.generateReport_month.original.html b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_scheduled_report_in_html_tables_only__ScheduledReports.generateReport_month.original.html
index 34adffcff0..af32f6b443 100644
--- a/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_scheduled_report_in_html_tables_only__ScheduledReports.generateReport_month.original.html
+++ b/tests/PHPUnit/System/expected/test_TwoVisitors_twoWebsites_differentDays_scheduled_report_in_html_tables_only__ScheduledReports.generateReport_month.original.html
@@ -44,317 +44,317 @@
</h2>
<ul>
<li>
- <a href="#MultiSites_getAll" style="text-decoration:none; color: #ddd;">
+ <a href="#MultiSites_getAll" style="text-decoration:none; color: #0d0d0d;">
All Websites dashboard
</a>
</li>
<li>
- <a href="#VisitsSummary_get" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitsSummary_get" style="text-decoration:none; color: #0d0d0d;">
Visits Summary
</a>
</li>
<li>
- <a href="#CustomVariables_getCustomVariables" style="text-decoration:none; color: #ddd;">
+ <a href="#CustomVariables_getCustomVariables" style="text-decoration:none; color: #0d0d0d;">
Custom Variables
</a>
</li>
<li>
- <a href="#DevicesDetection_getType" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getType" style="text-decoration:none; color: #0d0d0d;">
Device type
</a>
</li>
<li>
- <a href="#DevicesDetection_getModel" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getModel" style="text-decoration:none; color: #0d0d0d;">
Device model
</a>
</li>
<li>
- <a href="#DevicesDetection_getBrand" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getBrand" style="text-decoration:none; color: #0d0d0d;">
Device brand
</a>
</li>
<li>
- <a href="#Resolution_getResolution" style="text-decoration:none; color: #ddd;">
+ <a href="#Resolution_getResolution" style="text-decoration:none; color: #0d0d0d;">
Screen Resolution
</a>
</li>
<li>
- <a href="#DevicesDetection_getOsVersions" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getOsVersions" style="text-decoration:none; color: #0d0d0d;">
Operating System versions
</a>
</li>
<li>
- <a href="#DevicesDetection_getBrowsers" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getBrowsers" style="text-decoration:none; color: #0d0d0d;">
Browsers
</a>
</li>
<li>
- <a href="#DevicesDetection_getBrowserVersions" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getBrowserVersions" style="text-decoration:none; color: #0d0d0d;">
Browser version
</a>
</li>
<li>
- <a href="#Resolution_getConfiguration" style="text-decoration:none; color: #ddd;">
+ <a href="#Resolution_getConfiguration" style="text-decoration:none; color: #0d0d0d;">
Configurations
</a>
</li>
<li>
- <a href="#DevicesDetection_getOsFamilies" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getOsFamilies" style="text-decoration:none; color: #0d0d0d;">
Operating System families
</a>
</li>
<li>
- <a href="#DevicesDetection_getBrowserEngines" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicesDetection_getBrowserEngines" style="text-decoration:none; color: #0d0d0d;">
Browser engines
</a>
</li>
<li>
- <a href="#DevicePlugins_getPlugin" style="text-decoration:none; color: #ddd;">
+ <a href="#DevicePlugins_getPlugin" style="text-decoration:none; color: #0d0d0d;">
Browser Plugins
</a>
</li>
<li>
- <a href="#VisitorInterest_getNumberOfVisitsPerVisitDuration" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitorInterest_getNumberOfVisitsPerVisitDuration" style="text-decoration:none; color: #0d0d0d;">
Length of Visits
</a>
</li>
<li>
- <a href="#VisitorInterest_getNumberOfVisitsPerPage" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitorInterest_getNumberOfVisitsPerPage" style="text-decoration:none; color: #0d0d0d;">
Pages per Visit
</a>
</li>
<li>
- <a href="#VisitorInterest_getNumberOfVisitsByVisitCount" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitorInterest_getNumberOfVisitsByVisitCount" style="text-decoration:none; color: #0d0d0d;">
Visits by Visit Number
</a>
</li>
<li>
- <a href="#VisitorInterest_getNumberOfVisitsByDaysSinceLast" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitorInterest_getNumberOfVisitsByDaysSinceLast" style="text-decoration:none; color: #0d0d0d;">
Visits by days since last visit
</a>
</li>
<li>
- <a href="#VisitFrequency_get" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitFrequency_get" style="text-decoration:none; color: #0d0d0d;">
Returning Visits
</a>
</li>
<li>
- <a href="#VisitTime_getVisitInformationPerLocalTime" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitTime_getVisitInformationPerLocalTime" style="text-decoration:none; color: #0d0d0d;">
Visits per local time
</a>
</li>
<li>
- <a href="#VisitTime_getVisitInformationPerServerTime" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitTime_getVisitInformationPerServerTime" style="text-decoration:none; color: #0d0d0d;">
Visits per server time
</a>
</li>
<li>
- <a href="#VisitTime_getByDayOfWeek" style="text-decoration:none; color: #ddd;">
+ <a href="#VisitTime_getByDayOfWeek" style="text-decoration:none; color: #0d0d0d;">
Visits by Day of Week
</a>
</li>
<li>
- <a href="#UserId_getUsers" style="text-decoration:none; color: #ddd;">
+ <a href="#UserId_getUsers" style="text-decoration:none; color: #0d0d0d;">
User IDs
</a>
</li>
<li>
- <a href="#UserCountry_getCountry" style="text-decoration:none; color: #ddd;">
+ <a href="#UserCountry_getCountry" style="text-decoration:none; color: #0d0d0d;">
Country
</a>
</li>
<li>
- <a href="#UserCountry_getContinent" style="text-decoration:none; color: #ddd;">
+ <a href="#UserCountry_getContinent" style="text-decoration:none; color: #0d0d0d;">
Continent
</a>
</li>
<li>
- <a href="#UserCountry_getRegion" style="text-decoration:none; color: #ddd;">
+ <a href="#UserCountry_getRegion" style="text-decoration:none; color: #0d0d0d;">
Region
</a>
</li>
<li>
- <a href="#UserLanguage_getLanguage" style="text-decoration:none; color: #ddd;">
+ <a href="#UserLanguage_getLanguage" style="text-decoration:none; color: #0d0d0d;">
Browser language
</a>
</li>
<li>
- <a href="#UserCountry_getCity" style="text-decoration:none; color: #ddd;">
+ <a href="#UserCountry_getCity" style="text-decoration:none; color: #0d0d0d;">
City
</a>
</li>
<li>
- <a href="#UserLanguage_getLanguageCode" style="text-decoration:none; color: #ddd;">
+ <a href="#UserLanguage_getLanguageCode" style="text-decoration:none; color: #0d0d0d;">
Language code
</a>
</li>
<li>
- <a href="#Actions_get" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_get" style="text-decoration:none; color: #0d0d0d;">
Actions - Main metrics
</a>
</li>
<li>
- <a href="#Bandwidth_get" style="text-decoration:none; color: #ddd;">
+ <a href="#Bandwidth_get" style="text-decoration:none; color: #0d0d0d;">
Bandwidth - Main metrics
</a>
</li>
<li>
- <a href="#Actions_getPageUrls" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getPageUrls" style="text-decoration:none; color: #0d0d0d;">
Page URLs
</a>
</li>
<li>
- <a href="#Actions_getEntryPageUrls" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getEntryPageUrls" style="text-decoration:none; color: #0d0d0d;">
Entry pages
</a>
</li>
<li>
- <a href="#Actions_getEntryPageTitles" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getEntryPageTitles" style="text-decoration:none; color: #0d0d0d;">
Entry page titles
</a>
</li>
<li>
- <a href="#Actions_getExitPageUrls" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getExitPageUrls" style="text-decoration:none; color: #0d0d0d;">
Exit pages
</a>
</li>
<li>
- <a href="#Actions_getExitPageTitles" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getExitPageTitles" style="text-decoration:none; color: #0d0d0d;">
Exit page titles
</a>
</li>
<li>
- <a href="#Actions_getPageTitles" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getPageTitles" style="text-decoration:none; color: #0d0d0d;">
Page titles
</a>
</li>
<li>
- <a href="#Actions_getSiteSearchKeywords" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getSiteSearchKeywords" style="text-decoration:none; color: #0d0d0d;">
Site Search Keywords
</a>
</li>
<li>
- <a href="#Actions_getPageUrlsFollowingSiteSearch" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getPageUrlsFollowingSiteSearch" style="text-decoration:none; color: #0d0d0d;">
Pages Following a Site Search
</a>
</li>
<li>
- <a href="#Actions_getSiteSearchNoResultKeywords" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getSiteSearchNoResultKeywords" style="text-decoration:none; color: #0d0d0d;">
Search Keywords with No Results
</a>
</li>
<li>
- <a href="#Actions_getPageTitlesFollowingSiteSearch" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getPageTitlesFollowingSiteSearch" style="text-decoration:none; color: #0d0d0d;">
Page Titles Following a Site Search
</a>
</li>
<li>
- <a href="#Actions_getSiteSearchCategories" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getSiteSearchCategories" style="text-decoration:none; color: #0d0d0d;">
Search Categories
</a>
</li>
<li>
- <a href="#Actions_getOutlinks" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getOutlinks" style="text-decoration:none; color: #0d0d0d;">
Outlinks
</a>
</li>
<li>
- <a href="#Actions_getDownloads" style="text-decoration:none; color: #ddd;">
+ <a href="#Actions_getDownloads" style="text-decoration:none; color: #0d0d0d;">
Downloads
</a>
</li>
<li>
- <a href="#Events_getCategory" style="text-decoration:none; color: #ddd;">
+ <a href="#Events_getCategory" style="text-decoration:none; color: #0d0d0d;">
Event Categories
</a>
</li>
<li>
- <a href="#Events_getAction" style="text-decoration:none; color: #ddd;">
+ <a href="#Events_getAction" style="text-decoration:none; color: #0d0d0d;">
Event Actions
</a>
</li>
<li>
- <a href="#Events_getName" style="text-decoration:none; color: #ddd;">
+ <a href="#Events_getName" style="text-decoration:none; color: #0d0d0d;">
Event Names
</a>
</li>
<li>
- <a href="#Contents_getContentNames" style="text-decoration:none; color: #ddd;">
+ <a href="#Contents_getContentNames" style="text-decoration:none; color: #0d0d0d;">
Content Name
</a>
</li>
<li>
- <a href="#Contents_getContentPieces" style="text-decoration:none; color: #ddd;">
+ <a href="#Contents_getContentPieces" style="text-decoration:none; color: #0d0d0d;">
Content Piece
</a>
</li>
<li>
- <a href="#Referrers_getReferrerType" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getReferrerType" style="text-decoration:none; color: #0d0d0d;">
Referrer Type
</a>
</li>
<li>
- <a href="#Referrers_getAll" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getAll" style="text-decoration:none; color: #0d0d0d;">
All Referrers
</a>
</li>
<li>
- <a href="#Referrers_getKeywords" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getKeywords" style="text-decoration:none; color: #0d0d0d;">
Keywords
</a>
</li>
<li>
- <a href="#Referrers_getSearchEngines" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getSearchEngines" style="text-decoration:none; color: #0d0d0d;">
Search Engines
</a>
</li>
<li>
- <a href="#Referrers_getWebsites" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getWebsites" style="text-decoration:none; color: #0d0d0d;">
Websites
</a>
</li>
<li>
- <a href="#Referrers_getSocials" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getSocials" style="text-decoration:none; color: #0d0d0d;">
Social Networks
</a>
</li>
<li>
- <a href="#Referrers_getCampaigns" style="text-decoration:none; color: #ddd;">
+ <a href="#Referrers_getCampaigns" style="text-decoration:none; color: #0d0d0d;">
Campaigns
</a>
</li>
<li>
- <a href="#Goals_get" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_get" style="text-decoration:none; color: #0d0d0d;">
Goals
</a>
</li>
<li>
- <a href="#Goals_getVisitsUntilConversion" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getVisitsUntilConversion" style="text-decoration:none; color: #0d0d0d;">
Visits to Conversion
</a>
</li>
<li>
- <a href="#Goals_getDaysToConversion" style="text-decoration:none; color: #ddd;">
+ <a href="#Goals_getDaysToConversion" style="text-decoration:none; color: #0d0d0d;">
Days to Conversion
</a>
</li>
<li>
- <a href="#ExampleUI_getTemperatures" style="text-decoration:none; color: #ddd;">
+ <a href="#ExampleUI_getTemperatures" style="text-decoration:none; color: #0d0d0d;">
Data tables
</a>
</li>
<li>
- <a href="#ExampleUI_getTemperaturesEvolution" style="text-decoration:none; color: #ddd;">
+ <a href="#ExampleUI_getTemperaturesEvolution" style="text-decoration:none; color: #0d0d0d;">
Temperatures evolution over time
</a>
</li>
<li>
- <a href="#ExampleUI_getPlanetRatios" style="text-decoration:none; color: #ddd;">
+ <a href="#ExampleUI_getPlanetRatios" style="text-decoration:none; color: #0d0d0d;">
Pie graph
</a>
</li>
<li>
- <a href="#ExampleUI_getPlanetRatiosWithLogos" style="text-decoration:none; color: #ddd;">
+ <a href="#ExampleUI_getPlanetRatiosWithLogos" style="text-decoration:none; color: #0d0d0d;">
Advanced tag cloud: with logos and links
</a>
</li>
@@ -4272,7 +4272,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/index.htm'>
+ <a style="color: #0d0d0d;" href='http://example.org/index.htm'>
/index.htm </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4297,7 +4297,7 @@
<tr style="background-color: #f2f2f2;">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://'>
+ <a style="color: #0d0d0d;" href='http://'>
Page URL not defined </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4322,7 +4322,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/thankyou'>
+ <a style="color: #0d0d0d;" href='http://example.org/thankyou'>
/thankyou </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4347,7 +4347,7 @@
<tr style="background-color: #f2f2f2;">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/products'>
+ <a style="color: #0d0d0d;" href='http://example.org/products'>
/products </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4404,7 +4404,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/index.htm'>
+ <a style="color: #0d0d0d;" href='http://example.org/index.htm'>
/index.htm </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4423,7 +4423,7 @@
<tr style="background-color: #f2f2f2;">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/products'>
+ <a style="color: #0d0d0d;" href='http://example.org/products'>
/products </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4540,7 +4540,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/index.htm'>
+ <a style="color: #0d0d0d;" href='http://example.org/index.htm'>
/index.htm </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4559,7 +4559,7 @@
<tr style="background-color: #f2f2f2;">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/thankyou'>
+ <a style="color: #0d0d0d;" href='http://example.org/thankyou'>
/thankyou </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -4578,7 +4578,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://example.org/products'>
+ <a style="color: #0d0d0d;" href='http://example.org/products'>
/products </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -5129,7 +5129,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://referrer.com/Other_Page.htm'>
+ <a style="color: #0d0d0d;" href='http://referrer.com/Other_Page.htm'>
referrer.com/Other_Page.htm </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -5154,7 +5154,7 @@
<tr style="background-color: #f2f2f2;">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='https://referrer.com/Other_Page.htm'>
+ <a style="color: #0d0d0d;" href='https://referrer.com/Other_Page.htm'>
referrer.com/Other_Page.htm </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
@@ -5179,7 +5179,7 @@
<tr style=";">
<td style="padding:17px 15px;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">
- <a style="color: #ddd;" href='http://referrer.com/page.htm?param=valuewith some spaces'>
+ <a style="color: #0d0d0d;" href='http://referrer.com/page.htm?param=valuewith some spaces'>
referrer.com/page.htm?param=valuewith some spaces </a>
</td>
<td style="padding:17px 15px; text-align:right;;border-bottom:1px solid rgb(231,231,231);font-size: 15px;padding:17px 15px;color:#0d0d0d;font-family:-apple-system, BlinkMacSystemFont, &#039;Segoe UI&#039;, Roboto, Oxygen-Sans, Cantarell, &#039;Helvetica Neue&#039;, sans-serif;">