From 4becdc11617b9a5415d8528cd5ead17aa47f0200 Mon Sep 17 00:00:00 2001 From: Alex Martzios Date: Thu, 23 Feb 2023 14:28:17 +0200 Subject: [PATCH] update OpenAIRE Graph name, update submodules --- src/app/about/about.component.html | 6 +++--- src/app/about/about.component.ts | 4 ++-- src/app/about/team.component.ts | 4 ++-- src/app/app.component.html | 2 +- src/app/app.component.ts | 2 +- src/app/contact/contact.component.html | 2 +- src/app/contact/contact.component.ts | 4 ++-- src/app/home/home.component.html | 14 +++++++------- src/app/home/home.component.ts | 4 ++-- src/app/openaireLibrary | 2 +- src/app/resources/references.component.ts | 8 ++++---- src/app/resources/resources.component.html | 2 +- src/app/resources/resources.component.ts | 2 +- src/assets/common-assets | 2 +- src/assets/graph-assets/resources/2.svg | 2 +- src/index.html | 10 +++++----- src/prod/index.html | 10 +++++----- 17 files changed, 40 insertions(+), 40 deletions(-) diff --git a/src/app/about/about.component.html b/src/app/about/about.component.html index b6a06a9..57a3c3f 100644 --- a/src/app/about/about.component.html +++ b/src/app/about/about.component.html @@ -26,7 +26,7 @@ By following such practices, scientists are implicitly constructing the Global Open Science Graph, where by "graph" we mean a collection of objects interlinked by semantic relationships.

- The OpenAIRE Research Graph includes metadata and links between scientific products (e.g. literature, + The OpenAIRE Graph includes metadata and links between scientific products (e.g. literature, datasets, software, and "other research products"), organizations, funders, funding streams, projects, communities, and (provenance) data sources - the details of the graph data model can be found @@ -62,7 +62,7 @@

- The OpenAIRE Research Graph is operated and maintained at the ICM cutting-edge Technology centre with the facilities and staff guaranteeing robust operation of the whole system. Okeanos SuperComputer hosting the graph consists of 26016 cores in total providing 1082 Tflops/s. @@ -104,7 +104,7 @@

- Key team members contributing to the Research Graph + Key team members contributing to the OpenAIRE Graph
Meet the team diff --git a/src/app/about/about.component.ts b/src/app/about/about.component.ts index ebb594a..45e335b 100644 --- a/src/app/about/about.component.ts +++ b/src/app/about/about.component.ts @@ -25,8 +25,8 @@ export class AboutComponent implements OnInit, OnDestroy { public enrichmentMiningReadMore: boolean = false; properties:EnvProperties = properties; subs: Subscription[] = []; - description = "The OpenAIRE Research Graph includes metadata and links between scientific products (e.g. literature, datasets, software, other research products), organizations, funders, funding streams, projects, communities, and (provenance) data sources. Information on how we build it, the architecture, the infrastructure and the team."; - title = "OpenAIRE - Research Graph | About"; + description = "The OpenAIRE Graph includes metadata and links between scientific products (e.g. literature, datasets, software, other research products), organizations, funders, funding streams, projects, communities, and (provenance) data sources. Information on how we build it, the architecture, the infrastructure and the team."; + title = "OpenAIRE - Graph | About"; public breadcrumbs: Breadcrumb[] = [ { name: 'home', diff --git a/src/app/about/team.component.ts b/src/app/about/team.component.ts index 4a0e96e..9e3db03 100644 --- a/src/app/about/team.component.ts +++ b/src/app/about/team.component.ts @@ -76,8 +76,8 @@ import {HelperFunctions} from '../openaireLibrary/utils/HelperFunctions.class'; export class TeamComponent implements OnInit, OnDestroy { public team: member[] = HelperFunctions.copy(team); properties: EnvProperties = properties; - description = "The OpenAIRE Research Graph Team"; - title = "OpenAIRE - Research Graph | Team"; + description = "The OpenAIRE Graph Team"; + title = "OpenAIRE - Graph | Team"; subs: Subscription[] = []; public breadcrumbs: Breadcrumb[] = [ { diff --git a/src/app/app.component.html b/src/app/app.component.html index 9ff5c3b..9f711c4 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -3,7 +3,7 @@ [user]="user" [userMenuItems]=userMenuItems [menuItems]=menuItems [properties]=properties>
diff --git a/src/app/app.component.ts b/src/app/app.component.ts index f0ff16b..e828875 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -13,7 +13,7 @@ import {SmoothScroll} from './openaireLibrary/utils/smooth-scroll'; }) export class AppComponent implements OnInit, OnDestroy { - title = 'OpenAIRE - Research Graph'; + title = 'OpenAIRE - Graph'; userMenuItems: MenuItem[] = []; menuItems: RootMenuItem [] = []; logInUrl = null; diff --git a/src/app/contact/contact.component.html b/src/app/contact/contact.component.html index 01ba9be..dcf4629 100644 --- a/src/app/contact/contact.component.html +++ b/src/app/contact/contact.component.html @@ -115,6 +115,6 @@
Our team will respond to your submission soon.
- Press OK to redirect to OpenAIRE Research Graph home page. + Press OK to redirect to OpenAIRE Graph home page.
diff --git a/src/app/contact/contact.component.ts b/src/app/contact/contact.component.ts index b8d7374..3afe9f6 100644 --- a/src/app/contact/contact.component.ts +++ b/src/app/contact/contact.component.ts @@ -28,7 +28,7 @@ export class ContactComponent implements OnInit, OnDestroy { public properties: EnvProperties = properties; subs: Subscription[] = []; description = "Do you have questions? Contact us"; - title = "OpenAIRE - Research Graph | Support"; + title = "OpenAIRE - Graph | Support"; public contactForm: UntypedFormGroup; @ViewChild('AlertModal') modal; @@ -145,7 +145,7 @@ export class ContactComponent implements OnInit, OnDestroy { this.faqs.push({ "question": "What do you mean with “transparent graph”?", - "answer": "The OpenAIRE Research Graph is transparent because it keeps tracks of the provenance of each and every information it contains. " + + "answer": "The OpenAIRE Graph is transparent because it keeps tracks of the provenance of each and every information it contains. " + "For each field you can know if they have been collected from one of our sources, if it has been inferred (and with which algorithm and with which confidence level)" }); } diff --git a/src/app/home/home.component.html b/src/app/home/home.component.html index 41b82c7..ea312b2 100644 --- a/src/app/home/home.component.html +++ b/src/app/home/home.component.html @@ -5,7 +5,7 @@

- OpenAIRE Research Graph is an open resource that aggregates a collection of research data properties + OpenAIRE Graph is an open resource that aggregates a collection of research data properties (metadata, links) available within the OpenAIRE Open Science infrastructure for funders, organizations, researchers, research communities and publishers to interlink information by using a semantic graph database approach. @@ -54,7 +54,7 @@

-

Why OpenAIRE Research Graph +

Why OpenAIRE Graph

Unlock the power of open science data
@@ -184,7 +184,7 @@

European Commission

- The EC Participant Portal is using the OpenAIRE Research Graph to collect information about publications and + The EC Participant Portal is using the OpenAIRE Graph to collect information about publications and datasets resulting from H2020 funded projects.
@@ -200,8 +200,8 @@

ORCID

- ORCID data is used to enrich the research product records of the OpenAIRE Research Graph. Through EXPLORE, - ORCID users can instantly identify their works, enrich the OpenAIRE Research Graph and their ORCID profiles. + ORCID data is used to enrich the research product records of the OpenAIRE Graph. Through EXPLORE, + ORCID users can instantly identify their works, enrich the OpenAIRE Graph and their ORCID profiles.
@@ -218,7 +218,7 @@
-

Research Graph is used in OpenAIRE services

+

OpenAIRE Graph is used in OpenAIRE services

@@ -322,7 +322,7 @@
- Research Graph dump and APIs + OpenAIRE Graph dump and APIs
  • How to cite the graph @@ -234,8 +234,8 @@ import {SEOService} from '../openaireLibrary/sharedComponents/SEO/SEO.service'; }) export class ReferencesComponent implements OnInit, OnDestroy { properties: EnvProperties = properties; - description = 'How to cite? Bibliographic references relative to the implementation of the OpenAIRE research graph processing pipeline and how to cite the graph results. '; - title = 'OpenAIRE - Research Graph | References'; + description = 'How to cite? Bibliographic references relative to the implementation of the OpenAIRE Graph processing pipeline and how to cite the graph results. '; + title = 'OpenAIRE - Graph | References'; subs: Subscription[] = []; public breadcrumbs: Breadcrumb[] = [ { diff --git a/src/app/resources/resources.component.html b/src/app/resources/resources.component.html index 8f46b3f..7e27951 100644 --- a/src/app/resources/resources.component.html +++ b/src/app/resources/resources.component.html @@ -36,7 +36,7 @@ premises deployed at the data center facilities of the Interdisciplinary Centre for Mathematical and Computational Modelling (ICM). -
    OpenAIRE Research Graph license is CC-BY: +
    OpenAIRE Graph license is CC-BY: the records returned by the service can be freely re-used by commercial and non-commercial partners under CC-BY license, hence as long as OpenAIRE is acknowledged as a content provider. diff --git a/src/app/resources/resources.component.ts b/src/app/resources/resources.component.ts index 3e8ea38..743ab15 100644 --- a/src/app/resources/resources.component.ts +++ b/src/app/resources/resources.component.ts @@ -17,7 +17,7 @@ export class ResourcesComponent implements OnInit, OnDestroy { properties:EnvProperties; subs: Subscription[] = []; description = "Start building with OpenAIRE APIs. How to access the graph? XML Metadata schema and documentation."; - title = "OpenAIRE - Research Graph | Resources"; + title = "OpenAIRE - Graph | Resources"; public breadcrumbs: Breadcrumb[] = [ { name: 'home', diff --git a/src/assets/common-assets b/src/assets/common-assets index 8cee3e1..0346e54 160000 --- a/src/assets/common-assets +++ b/src/assets/common-assets @@ -1 +1 @@ -Subproject commit 8cee3e11dde9cec4a3bc283067a4d6a6a2f35cf5 +Subproject commit 0346e5413a31ca7b96237efea763c88ea312eadc diff --git a/src/assets/graph-assets/resources/2.svg b/src/assets/graph-assets/resources/2.svg index 6d06800..9a7e076 100644 --- a/src/assets/graph-assets/resources/2.svg +++ b/src/assets/graph-assets/resources/2.svg @@ -30,7 +30,7 @@ <xs:schema xmlns:xs=“http://www.w3.org/2001/XMLSchema xmlns:dri=“http://www.driver-repository.eu/namespace/dri” xmlns=“http://namespace.openaire.eu/oafelementFormDefault=“qualified” targetNamespace=“http://namespace.openaire.eu/oaf”><xs:annotation><xs:documentation>This schema describes the XML serialization of the OpenAIRE Research Graph. For an overview of the model, please check the OpenAIRE Research Graph Data Model at https://doi.org/10.5281/zenodo.2643199 </xs:documentation></xs:annotation><xs:include schemaLocation=“oaf-result-1.0.xsd”/><xs:include schemaLocation=“oaf-org-1.0.xsd”/><xs:include schemaLocation=“oaf-datasource-1.0.xsd”/> +<xs" transform="translate(428 1064)" fill="#7d237c" font-size="10" font-family="OpenSans, Open Sans" opacity="0.8"><xs:schema xmlns:xs=“http://www.w3.org/2001/XMLSchema xmlns:dri=“http://www.driver-repository.eu/namespace/dri” xmlns=“http://namespace.openaire.eu/oafelementFormDefault=“qualified” targetNamespace=“http://namespace.openaire.eu/oaf”><xs:annotation><xs:documentation>This schema describes the XML serialization of the OpenAIRE Graph. For an overview of the model, please check the OpenAIRE Graph Data Model at https://doi.org/10.5281/zenodo.2643199 </xs:documentation></xs:annotation><xs:include schemaLocation=“oaf-result-1.0.xsd”/><xs:include schemaLocation=“oaf-org-1.0.xsd”/><xs:include schemaLocation=“oaf-datasource-1.0.xsd”/> oaf.xsd diff --git a/src/index.html b/src/index.html index 752ecd0..abd188e 100644 --- a/src/index.html +++ b/src/index.html @@ -5,7 +5,7 @@ - OpenAIRE - Research Graph + OpenAIRE - Graph @@ -22,12 +22,12 @@ - - - + + + - + diff --git a/src/prod/index.html b/src/prod/index.html index cdceeb7..1015209 100644 --- a/src/prod/index.html +++ b/src/prod/index.html @@ -5,7 +5,7 @@ - OpenAIRE - Research Graph + OpenAIRE - Graph @@ -23,12 +23,12 @@ - - - + + + - +