From 6de2ad0a567c32254b1100f2f69b5bd568705e2a Mon Sep 17 00:00:00 2001 From: Alex Martzios Date: Tue, 20 Dec 2022 10:04:42 +0200 Subject: [PATCH] progress on various graph tasks --- src/app/about/about.component.html | 6 +++--- src/app/app.component.ts | 20 ++++++++++++-------- src/app/openaireLibrary | 2 +- src/environments/environment.beta.ts | 2 +- src/environments/environment.prod.ts | 2 +- 5 files changed, 18 insertions(+), 14 deletions(-) diff --git a/src/app/about/about.component.html b/src/app/about/about.component.html index 786d545..a9cd1c1 100644 --- a/src/app/about/about.component.html +++ b/src/app/about/about.component.html @@ -50,7 +50,7 @@ -
+ project link. + order to calculate a confidence value for each publication->project link. A confidence threshold is set to optimise high accuracy while minimising false positives, such as matches with page or report numbers, post/zip codes, parts of telephone numbers, DOIs or URLs, accession numbers. @@ -651,7 +651,7 @@
- + -->

Data & Metrics

diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 5a2a5cf..2cc8dce 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -55,21 +55,25 @@ export class AppComponent implements OnInit, OnDestroy { rootItem: new MenuItem("about", "About", "", "/about", false, [], null, {}), items: [ new MenuItem("overview", "Overview", "", "/about", false, [], null, {}), - new MenuItem("architecture", "Architecture", "", "/about", false, [], null, {}, null, 'architecture'), new MenuItem("metrics", "Data and Metrics", "", "/about", false, [], null, {}, null, 'metrics'), new MenuItem("infrastructure", "Infrastructure", "", "/about", false, [], null, {}, null, 'infrastructure'), new MenuItem("team", "Team", "", "/about", false, [], null, {}, null, 'team') ] }, { - rootItem: new MenuItem("resources", "API & Resources", "/develop/overview.html", "", false, [], null, {}), + rootItem: new MenuItem("resources", "Resources", "", "", false, [], null, {}), items: [ - new MenuItem("resources", "Overview", "/develop/overview.html", "", false, [], null, {}), - new MenuItem("", "Authentication", "/develop/authentication.html", "", false, [], null, {}), - new MenuItem("", "Bulk Access", "/develop/graph-dumps.html", "", false, [], null, {}), - new MenuItem("", "Selective Access", "/develop/api.html", "", false, [], null, {}), - new MenuItem("", "Response Metadata Format", "/develop/response-metadata-format.html", "", false, [], null, {}), - new MenuItem("references", "References", "/resources/references", "", false, [], null, {}), + new MenuItem("documentation", "Documentation", "/doc", "", false, [], null, {}), + new MenuItem("data", "Data", "/doc/category/downloads", "", false, [], null, {}), + new MenuItem("apis", "APIs", "/develop/overview.html", "", false, [], null, {}, [ + new MenuItem("", "Overview", "/develop/overview.html", "", false, [], null, {}), + new MenuItem("", "Authentication", "/develop/authentication.html", "", false, [], null, {}), + new MenuItem("", "Bulk Access", "/develop/graph-dumps.html", "", false, [], null, {}), + new MenuItem("", "Selective Access", "/develop/api.html", "", false, [], null, {}), + new MenuItem("", "Response Metadata Format", "/develop/response-metadata-format.html", "", false, [], null, {}), + new MenuItem("references", "References", "", "/resources/references", false, [], null, {}), + ]), + new MenuItem("publications", "Publications", "/doc/category/publications", "", false, [], null, {}, [], []), ] }, { diff --git a/src/app/openaireLibrary b/src/app/openaireLibrary index 825e29b..e837d55 160000 --- a/src/app/openaireLibrary +++ b/src/app/openaireLibrary @@ -1 +1 @@ -Subproject commit 825e29b5af80be940457ee6382f5a403d607e7f5 +Subproject commit e837d55e2793cc7feb2da90a070d71854a298009 diff --git a/src/environments/environment.beta.ts b/src/environments/environment.beta.ts index 1b06cda..276a8e0 100644 --- a/src/environments/environment.beta.ts +++ b/src/environments/environment.beta.ts @@ -9,7 +9,7 @@ export let properties: EnvProperties = { piwikSiteId: "", searchAPIURLLAst: "https://beta.services.openaire.eu/search/v2/api/", adminToolsAPIURL: "https://beta.services.openaire.eu/uoa-admin-tools/", - admins: ["graph@openaire.eu"], + admins: ["feedback@openaire.eu"], cookieDomain: ".openaire.eu", reCaptchaSiteKey: "6LezhVIUAAAAAOb4nHDd87sckLhMXFDcHuKyS76P", searchLinkToResult: "/search/result?id=", diff --git a/src/environments/environment.prod.ts b/src/environments/environment.prod.ts index 400bd0e..ee4e2a6 100644 --- a/src/environments/environment.prod.ts +++ b/src/environments/environment.prod.ts @@ -9,7 +9,7 @@ export let properties: EnvProperties = { piwikSiteId: "373", searchAPIURLLAst: "https://services.openaire.eu/search/v2/api/", adminToolsAPIURL:"https://services.openaire.eu/uoa-admin-tools/", - admins: ["graph@openaire.eu"], + admins: ["feedback@openaire.eu"], cookieDomain: ".openaire.eu", reCaptchaSiteKey: "6LezhVIUAAAAAOb4nHDd87sckLhMXFDcHuKyS76P", searchLinkToResult: "/search/result?id=",