From a8dc3761eab39ed3c6f6ec0107fac20c2b2a784e Mon Sep 17 00:00:00 2001 From: "k.triantafyllou" Date: Fri, 27 Nov 2020 16:44:03 +0000 Subject: [PATCH] [UsageCounts | Trunk]: New text and UI changes --- src/app/about/about.component.css | 7 +- src/app/about/about.component.html | 160 ++++++----- src/app/analytics/analytics.component.css | 2 +- src/app/analytics/analytics.component.html | 249 +++++++++--------- src/app/analytics/analytics.component.ts | 6 +- src/app/contact/contact.component.html | 55 ++-- src/app/home/home.component.css | 28 +- src/app/home/home.component.html | 132 +++++----- src/app/resources/resources.component.html | 191 +++++++------- src/assets/usage-statistics-assets/home/2.svg | 4 +- src/styles.css | 7 +- 11 files changed, 449 insertions(+), 392 deletions(-) diff --git a/src/app/about/about.component.css b/src/app/about/about.component.css index a88ac66..36b4be5 100644 --- a/src/app/about/about.component.css +++ b/src/app/about/about.component.css @@ -58,8 +58,9 @@ @media only screen and (min-width: 1200px) { .architecture { - background-size: 80% 70%; - height: 450px; + background-size: 95% 75%; + background-position: 0 50%; + height: 600px; } .architecture > div { @@ -68,7 +69,7 @@ background-position: 0 0; background-size: auto; margin-top: -50px; - width: 30%; + width: 31%; } } diff --git a/src/app/about/about.component.html b/src/app/about/about.component.html index bfe661e..4b5b9bd 100644 --- a/src/app/about/about.component.html +++ b/src/app/about/about.component.html @@ -5,105 +5,119 @@
-

About

-
- UsageCounts service is an OpenAIRE service built after the development of the Usage Statistics Service within - OpenAIRE. UsageCounts forms metrics of usage activity of Open Access Repositories categorizing the data - retrieved by country, number of downloads, number of views, number of repositories and all derivative - quantitative open metrics, in a comprehensive way for all stakeholders. +
+

About

+
+ UsageCounts service is an OpenAIRE service built to cover the needs of content providers and consumers and + offer + added value to assist them in reaching their goals. UsageCounts forms metrics of usage activity of Open Access + Repositories categorizing the data retrieved by country, number of downloads, number of views, number of + repositories and all derivative quantitative open metrics, comprehensively. +
-
-

About

-
- UsageCounts service is an OpenAIRE service built after the development of the Usage Statistics Service within - OpenAIRE. UsageCounts forms metrics of usage activity of Open Access Repositories categorizing the data - retrieved by country, number of downloads, number of views, number of repositories and all derivative - quantitative open metrics, in a comprehensive way for all stakeholders. +
+
+

About

+
+ UsageCounts service is an OpenAIRE service built to cover the needs of content providers and consumers and + offer + added value to assist them in reaching their goals. UsageCounts forms metrics of usage activity of Open Access + Repositories categorizing the data retrieved by country, number of downloads, number of views, number of + repositories and all derivative quantitative open metrics, comprehensively. +
-
+

Architecture

UsageCounts service collects usage activity from OpenAIRE content providers for usage events related to - research products of the OpenAIRE graph, creates and deploys aggregated statistics for these products. + research products of the OpenAIRE + Research Graph, creates and deploys aggregated statistics for these + products.
-
+
UsageCounts service collects usage activity from OpenAIRE content providers for usage events related to - research products of the OpenAIRE graph, creates and deploys aggregated statistics for these products. + research products of the OpenAIRE + Research Graph, creates and deploys aggregated statistics for these + products.
-
-
-

Architecture & Workflows

-
-
- -
-
-

Architecture functionalities

-
-
    -
  1. Constant tracking of views and downloads of open science repositories registered on OpenAIRE PROVIDE -
  2. -
  3. Creation of downloadable reports available only for content providers
  4. -
  5. Instant connection with the OpenAIRE Research Graph
  6. -
  7. Compatibility with COUNTER Code of Practice that provides standards based usage statistics and enables - comparability with statistics from other data sources -
  8. -
  9. Anonymisation of IP-addresses
  10. -
+
+

Architecture & Workflows

+
+
+
-
-
-
-
-
- Push - Usage Statistics Tracking Workflow -
-
    -
  • An institutional repository is registered in OpenAIRE.
  • -
  • Server side tracking: Plugins (Dspace) or patches (Eprints) using Matomo’s Web Analytics HTTP API. -
  • -
  • Usage Activity is tracked and logged in real time.
  • -
  • Ιnformation is transferred offline to OpenAIRE’s DBs for statistical analysis.
  • -
  • Statistics are deployed for human (OpenAIRE’s Portal) and machine (Sushi-Lite API) consumption.
  • -
+

Architecture functionalities

+
+
    +
  1. Constant tracking of views and downloads of open science content providers registered on OpenAIRE + PROVIDE. +
  2. +
  3. Creation of downloadable reports available only for content providers.
  4. +
  5. Instant connection with the OpenAIRE Research Graph.
  6. +
  7. Compatibility with COUNTER Code of Practice that provides standards based usage statistics and + enables + comparability with statistics from other data sources. +
  8. +
  9. Anonymization of IP-addresses.
  10. +
+
-
-
- Collecting (Pull) Consolidated Usage Statistics Reports -
-
    -
  • Gathering of consolidated statistics reports from aggregation services, such as IRUS-UK, using - protocols such as SUSHI-Lite. -
  • -
  • Statistics are stored in OpenAIRE’s DB for statistical analysis.
  • -
  • Statistics are deployed via OpenAIRE’s Portal or Sushi-Lite API.
  • -
+
+
+
+
+
+ Push + Usage Statistics Tracking Workflow +
+
    +
  • An institutional repository is registered in OpenAIRE.
  • +
  • Server side tracking: Plugins (Dspace) or patches (Eprints) using Matomo’s Web Analytics HTTP API. +
  • +
  • Usage Activity is tracked and logged in real time.
  • +
  • Information is transferred offline to OpenAIRE’s DBs for statistical analysis.
  • +
  • Statistics are deployed for human (OpenAIRE’s Portal) and machine (Sushi-Lite API) consumption.
  • +
+
+
+
+ Collecting (Pull) Consolidated Usage Statistics Reports +
+
    +
  • Gathering of consolidated statistics reports from aggregation services, such as IRUS-UK, using + protocols such as SUSHI-Lite. +
  • +
  • Statistics are stored in OpenAIRE's DB for statistical analysis.
  • +
  • Statistics are deployed via OpenAIRE’s Portal or Sushi-Lite API.
  • +
+
-

About - FAQs

- +
+

About - FAQs

+ +
diff --git a/src/app/analytics/analytics.component.css b/src/app/analytics/analytics.component.css index 70c4431..e692290 100644 --- a/src/app/analytics/analytics.component.css +++ b/src/app/analytics/analytics.component.css @@ -46,7 +46,7 @@ button.search, button.search:hover { outline: none; background-color: transparent; font-family: "Roboto", sans-serif; - font-size: 12px; + font-size: 16px; } button.search:hover { diff --git a/src/app/analytics/analytics.component.html b/src/app/analytics/analytics.component.html index a2cad69..bdede2e 100644 --- a/src/app/analytics/analytics.component.html +++ b/src/app/analytics/analytics.component.html @@ -9,26 +9,27 @@
-

Track Countries Usage Activity

-
-
-
-
- - - - {{option}} - - -
-
+
+

Track Countries Usage Activity

+
+
+
+
+ + + + {{option}} + + +
+
{{country}} @@ -38,95 +39,96 @@ +
+
- -
-
-
{{(country) ? country : 'worldwide'}}
-
Results
-
-
-