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:
-rw-r--r--plugins/UserSettings/API.php26
-rwxr-xr-xtests/PHPUnit/Integration/RowEvolutionTest.php15
-rw-r--r--tests/PHPUnit/Integration/expected/test_RowEvolution_mobileDesktop__API.getRowEvolution_day.xml65
-rw-r--r--tests/PHPUnit/Integration/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_row_evolution_graph__PDFReports.generateReport_week.original.html2
-rw-r--r--tests/PHPUnit/Integration/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_tables_and_graph__PDFReports.generateReport_week.original.html228
5 files changed, 208 insertions, 128 deletions
diff --git a/plugins/UserSettings/API.php b/plugins/UserSettings/API.php
index 9e0fdf12f3..701d848904 100644
--- a/plugins/UserSettings/API.php
+++ b/plugins/UserSettings/API.php
@@ -115,19 +115,19 @@ class API
);
$dataTables = array($dataTable);
- if ($dataTable instanceof DataTable\Map) {
- $dataTables = $dataTable->getArray();
- }
- foreach ($dataTables AS $table) {
- if ($table->getRowsCount() == 0) {
- continue;
- }
- foreach ($requiredRows AS $requiredRow => $key) {
- $row = $table->getRowFromLabel($requiredRow);
- if (empty($row)) {
- $table->addRowsFromSimpleArray(array(
- array('label' => $requiredRow, $key => 0)
- ));
+
+ if (!($dataTable instanceof DataTable\Map)) {
+ foreach ($dataTables AS $table) {
+ if ($table->getRowsCount() == 0) {
+ continue;
+ }
+ foreach ($requiredRows AS $requiredRow => $key) {
+ $row = $table->getRowFromLabel($requiredRow);
+ if (empty($row)) {
+ $table->addRowsFromSimpleArray(array(
+ array('label' => $requiredRow, $key => 0)
+ ));
+ }
}
}
}
diff --git a/tests/PHPUnit/Integration/RowEvolutionTest.php b/tests/PHPUnit/Integration/RowEvolutionTest.php
index 5dce031bd6..d93f6560fb 100755
--- a/tests/PHPUnit/Integration/RowEvolutionTest.php
+++ b/tests/PHPUnit/Integration/RowEvolutionTest.php
@@ -163,6 +163,21 @@ class Test_Piwik_Integration_RowEvolution extends IntegrationTestCase
'label' => 'Firefox,Chrome,Opera'
)
));
+
+ // test Row Evolution on Desktop VS Mobile, special "view" report
+ $return[] = array('API.getRowEvolution', array(
+ 'testSuffix' => '_mobileDesktop',
+ 'periods' => 'day',
+ 'idSite' => $idSite2,
+ 'date' => $today,
+ 'otherRequestParameters' => array(
+ 'date' => '2010-03-01,2010-03-06',
+ 'period' => 'month',
+ 'apiModule' => 'UserSettings',
+ 'apiAction' => 'getMobileVsDesktop',
+ 'label' => 'Desktop,Mobile'
+ )
+ ));
// test multi row evolution w/ filter_limit to limit all available labels
$return[] = array('API.getRowEvolution', array(
diff --git a/tests/PHPUnit/Integration/expected/test_RowEvolution_mobileDesktop__API.getRowEvolution_day.xml b/tests/PHPUnit/Integration/expected/test_RowEvolution_mobileDesktop__API.getRowEvolution_day.xml
new file mode 100644
index 0000000000..b9a56dc03a
--- /dev/null
+++ b/tests/PHPUnit/Integration/expected/test_RowEvolution_mobileDesktop__API.getRowEvolution_day.xml
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<result>
+ <column>nb_visits</column>
+ <reportData>
+ <result date="2010-03-01">
+ <row>
+ <nb_visits_0>0</nb_visits_0>
+ <nb_visits_1>0</nb_visits_1>
+ </row>
+ </result>
+ <result date="2010-03-02">
+ <row>
+ <nb_visits_0>1</nb_visits_0>
+ <nb_visits_1>0</nb_visits_1>
+ </row>
+ </result>
+ <result date="2010-03-03">
+ <row>
+ <nb_visits_0>0</nb_visits_0>
+ <nb_visits_1>0</nb_visits_1>
+ </row>
+ </result>
+ <result date="2010-03-04">
+ <row>
+ <nb_visits_0>1</nb_visits_0>
+ <nb_visits_1>0</nb_visits_1>
+ </row>
+ </result>
+ <result date="2010-03-05">
+ <row>
+ <nb_visits_0>0</nb_visits_0>
+ <nb_visits_1>0</nb_visits_1>
+ </row>
+ </result>
+ <result date="2010-03-06">
+ <row>
+ <nb_visits_0>1</nb_visits_0>
+ <nb_visits_1>0</nb_visits_1>
+ </row>
+ </result>
+ </reportData>
+ <metadata>
+ <metrics>
+ <nb_visits_0>
+ <name>Desktop (Visits)</name>
+ <logo>plugins/UserSettings/images/screens/normal.gif</logo>
+ <min>0</min>
+ <max>1</max>
+ </nb_visits_0>
+ <nb_visits_1>
+ <name>Mobile (Visits)</name>
+ </nb_visits_1>
+ </metrics>
+ <dimension>Mobile vs Desktop</dimension>
+ <columns>
+ <nb_visits>Visits</nb_visits>
+ <nb_uniq_visitors>Unique visitors</nb_uniq_visitors>
+ <nb_actions>Actions</nb_actions>
+ <nb_actions_per_visit>Actions per Visit</nb_actions_per_visit>
+ <avg_time_on_site>Avg. Time on Website</avg_time_on_site>
+ <bounce_rate>Bounce Rate</bounce_rate>
+ <conversion_rate>Conversion Rate</conversion_rate>
+ </columns>
+ </metadata>
+</result> \ No newline at end of file
diff --git a/tests/PHPUnit/Integration/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_row_evolution_graph__PDFReports.generateReport_week.original.html b/tests/PHPUnit/Integration/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_row_evolution_graph__PDFReports.generateReport_week.original.html
index 20400ad5ef..543da07364 100644
--- a/tests/PHPUnit/Integration/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_row_evolution_graph__PDFReports.generateReport_week.original.html
+++ b/tests/PHPUnit/Integration/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_row_evolution_graph__PDFReports.generateReport_week.original.html
@@ -26,7 +26,7 @@
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
</body>
diff --git a/tests/PHPUnit/Integration/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_tables_and_graph__PDFReports.generateReport_week.original.html b/tests/PHPUnit/Integration/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_tables_and_graph__PDFReports.generateReport_week.original.html
index d15889e8f8..9683893777 100644
--- a/tests/PHPUnit/Integration/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_tables_and_graph__PDFReports.generateReport_week.original.html
+++ b/tests/PHPUnit/Integration/expected/test_ecommerceOrderWithItems_scheduled_report_in_html_tables_and_graph__PDFReports.generateReport_week.original.html
@@ -357,7 +357,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Website&nbsp;&nbsp;
@@ -440,7 +440,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="VisitsSummary_get" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -455,7 +455,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Name&nbsp;&nbsp;
@@ -524,7 +524,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="VisitTime_getVisitInformationPerServerTime" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -539,7 +539,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Server time&nbsp;&nbsp;
@@ -1119,7 +1119,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="VisitTime_getVisitInformationPerLocalTime" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -1134,7 +1134,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Local time&nbsp;&nbsp;
@@ -1714,7 +1714,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="VisitTime_getByDayOfWeek" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -1729,7 +1729,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Day of the week&nbsp;&nbsp;
@@ -1918,7 +1918,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Goals_get_idGoal--ecommerceOrder" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -1933,7 +1933,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Name&nbsp;&nbsp;
@@ -2026,7 +2026,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Goals_getVisitsUntilConversion_idGoal--ecommerceOrder" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -2041,7 +2041,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Visits to Conversion&nbsp;&nbsp;
@@ -2158,7 +2158,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Goals_getDaysToConversion_idGoal--ecommerceOrder" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -2173,7 +2173,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Days to Conversion&nbsp;&nbsp;
@@ -2298,7 +2298,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Goals_get_idGoal--ecommerceAbandonedCart" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -2313,7 +2313,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Name&nbsp;&nbsp;
@@ -2358,7 +2358,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Goals_getVisitsUntilConversion_idGoal--ecommerceAbandonedCart" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -2373,7 +2373,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Visits to Conversion&nbsp;&nbsp;
@@ -2490,7 +2490,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Goals_getDaysToConversion_idGoal--ecommerceAbandonedCart" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -2505,7 +2505,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Days to Conversion&nbsp;&nbsp;
@@ -2630,7 +2630,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Goals_getItemsSku" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -2645,7 +2645,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Product SKU&nbsp;&nbsp;
@@ -2806,7 +2806,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Goals_getItemsName" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -2821,7 +2821,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Product Name&nbsp;&nbsp;
@@ -3008,7 +3008,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Goals_getItemsCategory" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -3023,7 +3023,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Product Category&nbsp;&nbsp;
@@ -3262,7 +3262,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Actions_get" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -3277,7 +3277,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Name&nbsp;&nbsp;
@@ -3362,7 +3362,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Actions_getPageUrls" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -3377,7 +3377,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Page URL&nbsp;&nbsp;
@@ -3424,7 +3424,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Actions_getEntryPageUrls" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -3439,7 +3439,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Page URL&nbsp;&nbsp;
@@ -3474,7 +3474,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Actions_getExitPageUrls" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -3489,7 +3489,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Page URL&nbsp;&nbsp;
@@ -3524,7 +3524,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Actions_getPageTitles" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -3539,7 +3539,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Page Name&nbsp;&nbsp;
@@ -3724,7 +3724,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Actions_getEntryPageTitles" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -3739,7 +3739,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Page Name&nbsp;&nbsp;
@@ -3800,7 +3800,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Actions_getExitPageTitles" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -3815,7 +3815,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Page Name&nbsp;&nbsp;
@@ -3862,7 +3862,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Actions_getOutlinks" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -3887,7 +3887,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Referrer Type&nbsp;&nbsp;
@@ -3938,7 +3938,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Referers_getAll" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -3983,7 +3983,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Name&nbsp;&nbsp;
@@ -4028,7 +4028,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Goals_getVisitsUntilConversion" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -4043,7 +4043,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Visits to Conversion&nbsp;&nbsp;
@@ -4202,7 +4202,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Goals_getDaysToConversion" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -4217,7 +4217,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Days to Conversion&nbsp;&nbsp;
@@ -4387,7 +4387,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Goals_get_idGoal--1" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -4402,7 +4402,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Name&nbsp;&nbsp;
@@ -4447,7 +4447,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Goals_getVisitsUntilConversion_idGoal--1" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -4462,7 +4462,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Visits to Conversion&nbsp;&nbsp;
@@ -4579,7 +4579,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Goals_getDaysToConversion_idGoal--1" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -4594,7 +4594,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Days to Conversion&nbsp;&nbsp;
@@ -4719,7 +4719,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="UserCountry_getCountry" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -4734,7 +4734,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Country&nbsp;&nbsp;
@@ -4787,7 +4787,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="UserCountry_getContinent" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -4802,7 +4802,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Continent&nbsp;&nbsp;
@@ -4853,7 +4853,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="UserCountry_getRegion" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -4868,7 +4868,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Region&nbsp;&nbsp;
@@ -4921,7 +4921,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="UserCountry_getCity" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -4936,7 +4936,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;City&nbsp;&nbsp;
@@ -4989,7 +4989,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="CustomVariables_getCustomVariables" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -5004,7 +5004,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Custom Variable name&nbsp;&nbsp;
@@ -5101,7 +5101,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="VisitorInterest_getNumberOfVisitsPerVisitDuration" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -5116,7 +5116,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Visit duration&nbsp;&nbsp;
@@ -5209,7 +5209,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="VisitorInterest_getNumberOfVisitsPerPage" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -5224,7 +5224,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Pages per visit&nbsp;&nbsp;
@@ -5317,7 +5317,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="VisitorInterest_getNumberOfVisitsByVisitCount" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -5332,7 +5332,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Visits by Visit Number&nbsp;&nbsp;
@@ -5502,7 +5502,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="VisitorInterest_getNumberOfVisitsByDaysSinceLast" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -5517,7 +5517,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Visits by days since last visit&nbsp;&nbsp;
@@ -5650,7 +5650,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="VisitFrequency_get" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -5665,7 +5665,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Name&nbsp;&nbsp;
@@ -5726,7 +5726,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="Provider_getProvider" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -5741,7 +5741,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Provider&nbsp;&nbsp;
@@ -5794,7 +5794,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="DevicesDetection_getType" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -5809,7 +5809,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Device type&nbsp;&nbsp;
@@ -5862,7 +5862,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="DevicesDetection_getBrand" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -5877,7 +5877,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Device brand&nbsp;&nbsp;
@@ -5930,7 +5930,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="DevicesDetection_getModel" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -5945,7 +5945,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Device model&nbsp;&nbsp;
@@ -5996,7 +5996,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="DevicesDetection_getOsFamilies" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -6011,7 +6011,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Operating System families&nbsp;&nbsp;
@@ -6064,7 +6064,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="DevicesDetection_getOsVersions" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -6079,7 +6079,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Operating System versions&nbsp;&nbsp;
@@ -6132,7 +6132,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="DevicesDetection_getBrowserFamilies" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -6147,7 +6147,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Browsers families&nbsp;&nbsp;
@@ -6200,7 +6200,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="DevicesDetection_getBrowserVersions" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -6215,7 +6215,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Browser versions&nbsp;&nbsp;
@@ -6268,7 +6268,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="UserSettings_getResolution" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -6283,7 +6283,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Resolution&nbsp;&nbsp;
@@ -6334,7 +6334,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="UserSettings_getBrowser" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -6349,7 +6349,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Browser&nbsp;&nbsp;
@@ -6402,7 +6402,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="UserSettings_getBrowserVersion" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -6417,7 +6417,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Browser version&nbsp;&nbsp;
@@ -6470,7 +6470,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="UserSettings_getBrowserType" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -6485,7 +6485,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Browser family&nbsp;&nbsp;
@@ -6536,7 +6536,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="UserSettings_getPlugin" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -6551,7 +6551,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Plugin&nbsp;&nbsp;
@@ -6697,7 +6697,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="UserSettings_getWideScreen" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -6712,7 +6712,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Type of screen&nbsp;&nbsp;
@@ -6765,7 +6765,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="UserSettings_getOS" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -6780,7 +6780,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Operating system&nbsp;&nbsp;
@@ -6833,7 +6833,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="UserSettings_getConfiguration" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -6848,7 +6848,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Configuration&nbsp;&nbsp;
@@ -6899,7 +6899,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="UserSettings_getOSFamily" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -6914,7 +6914,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Operating system family&nbsp;&nbsp;
@@ -6967,7 +6967,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="UserSettings_getMobileVsDesktop" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -6982,7 +6982,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Mobile vs Desktop&nbsp;&nbsp;
@@ -7060,7 +7060,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
<h2 id="UserSettings_getLanguage" style="color: rgb(126,115,99); font-size: 11pt;">
@@ -7075,7 +7075,7 @@
<br/>
<br/>
- <table style="border-collapse:collapse; margin-left: 5px">
+ <table style="border-collapse:collapse; margin-left: 5px;">
<thead style="background-color: rgb(228,226,215); color: rgb(37,87,146); font-size: 11pt;">
<th style="padding: 6px 0;">
&nbsp;Language&nbsp;&nbsp;
@@ -7126,7 +7126,7 @@
</tbody>
</table>
<br/>
- <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt" href="#reportTop">
+ <a style="text-decoration:none; color: rgb(126,115,99); font-size: 9pt;" href="#reportTop">
Back to top
</a>
</body>