Deploy:
Add a folder with properties and instructions about deployment in all environments Properties: Add environment property Production related changes index.html robots.txt sitemaps .angular-cli.json (export sitemap path to /) Environment property pass in navbar and footer git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-portal/trunk@54357 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
parent
14810a78d7
commit
41957f05a1
|
@ -9,7 +9,16 @@
|
||||||
"outDir": "dist/browser",
|
"outDir": "dist/browser",
|
||||||
"assets": [
|
"assets": [
|
||||||
"assets",
|
"assets",
|
||||||
"robots.txt"
|
"robots.txt",
|
||||||
|
{"glob": "sitemap.xml", "input": "./sitemaps", "output": "./"},
|
||||||
|
{"glob": "sitemap.xml", "input": "./sitemaps", "output": "./assets"},
|
||||||
|
{ "glob": "**/*", "input": "./sitemaps/publication", "output": "./" },
|
||||||
|
{ "glob": "**/*", "input": "./sitemaps/dataset", "output": "./" },
|
||||||
|
{ "glob": "**/*", "input": "./sitemaps/software", "output": "./" },
|
||||||
|
{ "glob": "**/*", "input": "./sitemaps/other", "output": "./" },
|
||||||
|
{ "glob": "**/*", "input": "./sitemaps/project", "output": "./" },
|
||||||
|
{ "glob": "**/*", "input": "./sitemaps/organization", "output": "./" },
|
||||||
|
{ "glob": "**/*", "input": "./sitemaps/dataprovider", "output": "./" }
|
||||||
],
|
],
|
||||||
"index": "index.html",
|
"index": "index.html",
|
||||||
"main": "main.ts",
|
"main": "main.ts",
|
||||||
|
@ -38,7 +47,16 @@
|
||||||
"outDir": "dist/server",
|
"outDir": "dist/server",
|
||||||
"assets": [
|
"assets": [
|
||||||
"assets",
|
"assets",
|
||||||
"robots.txt"
|
"robots.txt",
|
||||||
|
{"glob": "sitemap.xml", "input": "./sitemaps", "output": "./"},
|
||||||
|
{"glob": "sitemap.xml", "input": "./sitemaps", "output": "./assets"},
|
||||||
|
{ "glob": "**/*", "input": "./sitemaps/publication", "output": "./" },
|
||||||
|
{ "glob": "**/*", "input": "./sitemaps/dataset", "output": "./" },
|
||||||
|
{ "glob": "**/*", "input": "./sitemaps/software", "output": "./" },
|
||||||
|
{ "glob": "**/*", "input": "./sitemaps/other", "output": "./" },
|
||||||
|
{ "glob": "**/*", "input": "./sitemaps/project", "output": "./" },
|
||||||
|
{ "glob": "**/*", "input": "./sitemaps/organization", "output": "./" },
|
||||||
|
{ "glob": "**/*", "input": "./sitemaps/dataprovider", "output": "./" }
|
||||||
],
|
],
|
||||||
"index": "index.html",
|
"index": "index.html",
|
||||||
"main": "main.server.ts",
|
"main": "main.server.ts",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"productionMode" : false,
|
"environment" : "beta",
|
||||||
"enablePiwikTrack" : true,
|
"enablePiwikTrack" : true,
|
||||||
"enableHelper" : true,
|
"enableHelper" : true,
|
||||||
"useCache" : true,
|
"useCache" : true,
|
|
@ -0,0 +1,34 @@
|
||||||
|
#ATTENTION
|
||||||
|
#DON'T run it in svn folder - it REMOVES files
|
||||||
|
#Copy project in another file "deploy-folder"
|
||||||
|
#cd "deploy-folder"
|
||||||
|
#run the script
|
||||||
|
|
||||||
|
## cp the file according to the deploy environment
|
||||||
|
|
||||||
|
# cp production-properties.json ../src/assets/env-properties.json;
|
||||||
|
# cp test-properties.json ../src/assets/env-properties.json;
|
||||||
|
# cp beta-properties.json ../src/assets/env-properties.json;
|
||||||
|
|
||||||
|
## uncommect from here-->
|
||||||
|
# echo -n 'Check properties service to have the url for the deployment environment!!';
|
||||||
|
# echo -n "Press key:";
|
||||||
|
# read -n1 ans
|
||||||
|
# echo -n "Pressed";
|
||||||
|
# pico ../src/app/openaireLibrary/utils/properties/environment-specific.service.ts;
|
||||||
|
# echo 'For Production keep meta for bots';
|
||||||
|
# echo -n 'Check index.html: For test keep meta for noindex, for production remove noindex and keep meta for Search engines verification';
|
||||||
|
# echo -n "Press key:";
|
||||||
|
# read -n1 ans
|
||||||
|
# echo -n "Pressed";
|
||||||
|
# pico ../src/index.html;
|
||||||
|
# echo -n 'Check Robots.txt: For test and beta add "Diasallow /", for production remove it!';
|
||||||
|
# echo -n "Press key:";
|
||||||
|
# read -n1 ans
|
||||||
|
# echo -n "Pressed";
|
||||||
|
# pico ../src/robots.txt;
|
||||||
|
# rm -rf ../src/assets/common-assets/.svn/;
|
||||||
|
# rm -rf ../src/app/openaireLibrary/.svn/;
|
||||||
|
# echo 'Run "cd ..; npm run build:dynamic; cd deploy;" ';
|
||||||
|
# echo 'Then run prepary deploy script';
|
||||||
|
##<-- to here
|
|
@ -0,0 +1,20 @@
|
||||||
|
#ATTENTION
|
||||||
|
#DON'T run it in svn folder - it REMOVES files
|
||||||
|
#First you have to run prepareBuild Script!!!!!!!
|
||||||
|
|
||||||
|
## uncommect from here-->
|
||||||
|
|
||||||
|
# rm -rf ../src ../node_modules ../.idea/ ../installOpenaireLib.sh;
|
||||||
|
# echo 'Now copy to the server!'
|
||||||
|
#echo 'remove this deploy folder'
|
||||||
|
|
||||||
|
##<-- to here
|
||||||
|
|
||||||
|
#Deploy instructions!
|
||||||
|
#copy "deploy-folder" in beta.explore.openaire.eu, test.openaire.eu or explore.openaire.eu depending which in environment want to deploy and properties selected
|
||||||
|
#copies of previous deployments exist in "/home/argiro.kokogiannaki/deployments-folder/dashboardYYYY-MM-DD"
|
||||||
|
#run "npm i"
|
||||||
|
#become nodejs user: "sudo su nodejs -s /bin/bash"
|
||||||
|
#go to "cd /srv/www/portal"
|
||||||
|
#cp files from "cp -r HOME_PATH/deployments-folder/* ."
|
||||||
|
#restart portal "pm2 restart openaire"
|
|
@ -0,0 +1,93 @@
|
||||||
|
{
|
||||||
|
"environment" : "production",
|
||||||
|
"enablePiwikTrack" : true,
|
||||||
|
"enableHelper" : true,
|
||||||
|
"useCache" : true,
|
||||||
|
"metricsAPIURL" : "https://services.openaire.eu/usagestats/",
|
||||||
|
"framesAPIURL" : "https://www.openaire.eu/stats3/",
|
||||||
|
"statisticsAPIURL" : "https://beta.services.openaire.eu/stats-api/",
|
||||||
|
"statisticsFrameAPIURL":"https://www.openaire.eu/stats/",
|
||||||
|
"claimsAPIURL" : "https://services.openaire.eu/claims/rest/claimsService/",
|
||||||
|
"searchAPIURLLAst" : "https://services.openaire.eu/search/v2/api/",
|
||||||
|
"searchResourcesAPIURL" : "https://services.openaire.eu/search/v2/api/resources",
|
||||||
|
"csvAPIURL" : "https://services.openaire.eu/search/v2/api/reports",
|
||||||
|
"searchCrossrefAPIURL" : "https://api.crossref.org/works",
|
||||||
|
"searchDataciteAPIURL" : "https://api.datacite.org/works",
|
||||||
|
"searchOrcidURL" : "https://pub.orcid.org/v2.1/",
|
||||||
|
"pmidURL" : "http://www.ncbi.nlm.nih.gov/pubmed/",
|
||||||
|
"doiURL" : "https://dx.doi.org/",
|
||||||
|
"cordisURL" : "http://cordis.europa.eu/projects/",
|
||||||
|
"pmcURL" : "http://europepmc.org/articles/",
|
||||||
|
"handleURL" : "http://hdl.handle.net/",
|
||||||
|
"openDoarURL": "http://v2.sherpa.ac.uk/id/repository/",
|
||||||
|
"r3DataURL": "http://service.re3data.org/repository/",
|
||||||
|
"zenodo" : "https://zenodo.org/",
|
||||||
|
"openAccess" : "https://www.openaire.eu/support/faq#article-id-234",
|
||||||
|
"openAccessRepo" : "https://www.openaire.eu/support/faq#article-id-310",
|
||||||
|
"fp7Guidlines" : "https://www.openaire.eu/open-access-in-fp7-seventh-research-framework-programme",
|
||||||
|
"h2020Guidlines" : "https://www.openaire.eu/oa-publications/h2020/open-access-in-horizon-2020",
|
||||||
|
"ercGuidlines" : "http://erc.europa.eu/sites/default/files/document/file/ERC_Open_Access_Guidelines-revised_2014.pdf",
|
||||||
|
"helpdesk" : "https://www.openaire.eu/support/helpdesk",
|
||||||
|
"uploadService" : "https://explore.openaire.eu/upload/",
|
||||||
|
|
||||||
|
"vocabulariesAPI" :"https://services.openaire.eu/provision/mvc/vocabularies/",
|
||||||
|
|
||||||
|
"piwikBaseUrl" :"https://analytics.openaire.eu/piwik.php?idsite=",
|
||||||
|
"piwikSiteId" : "109",
|
||||||
|
"loginUrl" :"https://services.openaire.eu/uoa-user-management/openid_connect_login",
|
||||||
|
|
||||||
|
"logoutUrl" :"https://aai.openaire.eu/proxy/saml2/idp/SingleLogoutService.php?ReturnTo=",
|
||||||
|
|
||||||
|
"cookieDomain" :".openaire.eu",
|
||||||
|
|
||||||
|
"feedbackmail" :"feedback@openaire.eu",
|
||||||
|
|
||||||
|
"cacheUrl" :"https://explore.openaire.eu/cache/get?url=",
|
||||||
|
|
||||||
|
"datasourcesAPI": "https://services.openaire.eu/openaire/ds/search/",
|
||||||
|
|
||||||
|
"adminToolsAPIURL" :"https://services.openaire.eu/uoa-admin-tools/",
|
||||||
|
|
||||||
|
"adminToolsCommunity" :"openaire",
|
||||||
|
"contextsAPI":"https://services.openaire.eu/openaire/context",
|
||||||
|
"communityAPI": "https://services.openaire.eu/openaire/community/",
|
||||||
|
|
||||||
|
"csvLimit": 2000,
|
||||||
|
"pagingLimit": 20,
|
||||||
|
"resultsPerPage": 10,
|
||||||
|
|
||||||
|
"baseLink" : "https://explore.openaire.eu",
|
||||||
|
|
||||||
|
"searchLinkToPublication" : "/search/publication?articleId=",
|
||||||
|
"searchLinkToProject" : "/search/project?projectId=",
|
||||||
|
"searchLinkToDataProvider" : "/search/dataprovider?datasourceId=",
|
||||||
|
"searchLinkToDataset" : "/search/dataset?datasetId=",
|
||||||
|
"searchLinkToOrp" : "/search/other?orpId=",
|
||||||
|
"searchLinkToOrganization" : "/search/organization?organizationId=",
|
||||||
|
|
||||||
|
"searchLinkToPublications" : "/search/find/publications",
|
||||||
|
"searchLinkToDataProviders" : "/search/find/dataproviders",
|
||||||
|
"searchLinkToProjects" : "/search/find/projects",
|
||||||
|
"searchLinkToDatasets" : "/search/find/datasets",
|
||||||
|
"searchLinkToSoftware" : "/search/find/software",
|
||||||
|
"searchLinkToOrps" : "/search/find/other",
|
||||||
|
"searchLinkToOrganizations" : "/search/find/organizations",
|
||||||
|
"searchLinkToCompatibleDataProviders" : "/search/content-providers",
|
||||||
|
"searchLinkToCompatibleDataProvidersTable" : "/search/content-providers-table",
|
||||||
|
"searchLinkToEntityRegistriesDataProviders" : "/search/entity-registries",
|
||||||
|
"searchLinkToEntityRegistriesDataProvidersTable" : "/search/entity-registries-table",
|
||||||
|
"searchLinkToJournals" : "/search/journals",
|
||||||
|
"searchLinkToJournalsTable" : "/search/journals-table",
|
||||||
|
|
||||||
|
"searchLinkToAdvancedPublications" : "/search/advanced/publications",
|
||||||
|
"searchLinkToAdvancedProjects" : "/search/advanced/projects",
|
||||||
|
"searchLinkToAdvancedDatasets" : "/search/advanced/datasets",
|
||||||
|
"searchLinkToAdvancedSoftware" : "/search/advanced/software",
|
||||||
|
"searchLinkToAdvancedOrps" : "/search/advanced/other",
|
||||||
|
"searchLinkToAdvancedDataProviders" : "/search/advanced/dataproviders",
|
||||||
|
"searchLinkToAdvancedOrganizations" : "/search/advanced/organizations",
|
||||||
|
"lastIndexInformationLink" : "https://www.openaire.eu/aggregation-and-content-provision-workflows",
|
||||||
|
"showLastIndexInformationLink" : true,
|
||||||
|
"widgetLink" : "https://www.openaire.eu/index.php?option=com_openaire&view=widget&format=raw&projectId=",
|
||||||
|
"claimsInformationLink": "https://www.openaire.eu/linking"
|
||||||
|
}
|
|
@ -0,0 +1,93 @@
|
||||||
|
{
|
||||||
|
"environment" : "test",
|
||||||
|
"enablePiwikTrack" : true,
|
||||||
|
"enableHelper" : true,
|
||||||
|
"useCache" : true,
|
||||||
|
"metricsAPIURL" : "https://services.openaire.eu/usagestats/",
|
||||||
|
"framesAPIURL" : "https://test.openaire.eu/stats3/",
|
||||||
|
"statisticsAPIURL" : "https://beta.services.openaire.eu/stats-api/",
|
||||||
|
"statisticsFrameAPIURL":"https://test.openaire.eu/stats/",
|
||||||
|
"claimsAPIURL" : "https://services.openaire.eu/claims/rest/claimsService/",
|
||||||
|
"searchAPIURLLAst" : "http://services.openaire.eu:8480/shadowSearch/rest/v2/api/",
|
||||||
|
"searchResourcesAPIURL" : "http://services.openaire.eu:8480/shadowSearch/rest/v2/api/resources",
|
||||||
|
"csvAPIURL" : "http://services.openaire.eu:8480/shadowSearch/rest/v2/api/reports",
|
||||||
|
"searchCrossrefAPIURL" : "https://api.crossref.org/works",
|
||||||
|
"searchDataciteAPIURL" : "https://api.datacite.org/works",
|
||||||
|
"searchOrcidURL" : "https://pub.orcid.org/v2.1/",
|
||||||
|
"pmidURL" : "http://www.ncbi.nlm.nih.gov/pubmed/",
|
||||||
|
"doiURL" : "https://dx.doi.org/",
|
||||||
|
"cordisURL" : "http://cordis.europa.eu/projects/",
|
||||||
|
"pmcURL" : "http://europepmc.org/articles/",
|
||||||
|
"handleURL" : "http://hdl.handle.net/",
|
||||||
|
"openDoarURL": "http://v2.sherpa.ac.uk/id/repository/",
|
||||||
|
"r3DataURL": "http://service.re3data.org/repository/",
|
||||||
|
"zenodo" : "https://zenodo.org/",
|
||||||
|
"openAccess" : "https://www.openaire.eu/support/faq#article-id-234",
|
||||||
|
"openAccessRepo" : "https://www.openaire.eu/support/faq#article-id-310",
|
||||||
|
"fp7Guidlines" : "https://www.openaire.eu/open-access-in-fp7-seventh-research-framework-programme",
|
||||||
|
"h2020Guidlines" : "https://www.openaire.eu/oa-publications/h2020/open-access-in-horizon-2020",
|
||||||
|
"ercGuidlines" : "http://erc.europa.eu/sites/default/files/document/file/ERC_Open_Access_Guidelines-revised_2014.pdf",
|
||||||
|
"helpdesk" : "https://www.openaire.eu/support/helpdesk",
|
||||||
|
"uploadService" : "https://explore.openaire.eu/upload/",
|
||||||
|
|
||||||
|
"vocabulariesAPI" :"https://services.openaire.eu/provision/mvc/vocabularies/",
|
||||||
|
|
||||||
|
"piwikBaseUrl" :"https://analytics.openaire.eu/piwik.php?idsite=",
|
||||||
|
"piwikSiteId" : "109",
|
||||||
|
"loginUrl" :"https://services.openaire.eu/uoa-user-management/openid_connect_login",
|
||||||
|
|
||||||
|
"logoutUrl" :"https://aai.openaire.eu/proxy/saml2/idp/SingleLogoutService.php?ReturnTo=",
|
||||||
|
|
||||||
|
"cookieDomain" :".openaire.eu",
|
||||||
|
|
||||||
|
"feedbackmail" :"feedback@openaire.eu",
|
||||||
|
|
||||||
|
"cacheUrl" :"https://explore.openaire.eu/cache/get?url=",
|
||||||
|
|
||||||
|
"datasourcesAPI": "https://services.openaire.eu/openaire/ds/search/",
|
||||||
|
|
||||||
|
"adminToolsAPIURL" :"https://services.openaire.eu/uoa-admin-tools/",
|
||||||
|
|
||||||
|
"adminToolsCommunity" :"openaire",
|
||||||
|
"contextsAPI":"https://services.openaire.eu/openaire/context",
|
||||||
|
"communityAPI": "https://services.openaire.eu/openaire/community/",
|
||||||
|
|
||||||
|
"csvLimit": 2000,
|
||||||
|
"pagingLimit": 20,
|
||||||
|
"resultsPerPage": 10,
|
||||||
|
|
||||||
|
"baseLink" : "https://test.explore.openaire.eu",
|
||||||
|
|
||||||
|
"searchLinkToPublication" : "/search/publication?articleId=",
|
||||||
|
"searchLinkToProject" : "/search/project?projectId=",
|
||||||
|
"searchLinkToDataProvider" : "/search/dataprovider?datasourceId=",
|
||||||
|
"searchLinkToDataset" : "/search/dataset?datasetId=",
|
||||||
|
"searchLinkToOrp" : "/search/other?orpId=",
|
||||||
|
"searchLinkToOrganization" : "/search/organization?organizationId=",
|
||||||
|
|
||||||
|
"searchLinkToPublications" : "/search/find/publications",
|
||||||
|
"searchLinkToDataProviders" : "/search/find/dataproviders",
|
||||||
|
"searchLinkToProjects" : "/search/find/projects",
|
||||||
|
"searchLinkToDatasets" : "/search/find/datasets",
|
||||||
|
"searchLinkToSoftware" : "/search/find/software",
|
||||||
|
"searchLinkToOrps" : "/search/find/other",
|
||||||
|
"searchLinkToOrganizations" : "/search/find/organizations",
|
||||||
|
"searchLinkToCompatibleDataProviders" : "/search/content-providers",
|
||||||
|
"searchLinkToCompatibleDataProvidersTable" : "/search/content-providers-table",
|
||||||
|
"searchLinkToEntityRegistriesDataProviders" : "/search/entity-registries",
|
||||||
|
"searchLinkToEntityRegistriesDataProvidersTable" : "/search/entity-registries-table",
|
||||||
|
"searchLinkToJournals" : "/search/journals",
|
||||||
|
"searchLinkToJournalsTable" : "/search/journals-table",
|
||||||
|
|
||||||
|
"searchLinkToAdvancedPublications" : "/search/advanced/publications",
|
||||||
|
"searchLinkToAdvancedProjects" : "/search/advanced/projects",
|
||||||
|
"searchLinkToAdvancedDatasets" : "/search/advanced/datasets",
|
||||||
|
"searchLinkToAdvancedSoftware" : "/search/advanced/software",
|
||||||
|
"searchLinkToAdvancedOrps" : "/search/advanced/other",
|
||||||
|
"searchLinkToAdvancedDataProviders" : "/search/advanced/dataproviders",
|
||||||
|
"searchLinkToAdvancedOrganizations" : "/search/advanced/organizations",
|
||||||
|
"lastIndexInformationLink" : "https://www.openaire.eu/aggregation-and-content-provision-workflows",
|
||||||
|
"showLastIndexInformationLink" : false,
|
||||||
|
"widgetLink" : "https://test.openaire.eu/index.php?option=com_openaire&view=widget&format=raw&projectId=",
|
||||||
|
"claimsInformationLink": "https://www.openaire.eu/linking"
|
||||||
|
}
|
|
@ -1,24 +0,0 @@
|
||||||
#ATTENTION
|
|
||||||
#DON'T run it in svn folder - it REMOVES files
|
|
||||||
#Copy project in another file "deploy-folder"
|
|
||||||
#cd "deploy-folder"
|
|
||||||
#run the script
|
|
||||||
|
|
||||||
## uncommect from here-->
|
|
||||||
# cp explore-production-properties.json src/assets/env-properties.json;
|
|
||||||
# rm -rf src/assets/common-assets/.svn/;
|
|
||||||
# rm -rf src/app/openaireLibrary/.svn/;
|
|
||||||
# pico src/app/openaireLibrary/utils/properties/environment-specific.service.ts;
|
|
||||||
# npm run build:dynamic;
|
|
||||||
# rm -rf src node_modules .idea/ connect-production-properties.json installOpenaireLib.sh;
|
|
||||||
# echo 'Ready!';
|
|
||||||
# echo 'Now copy to the server!'
|
|
||||||
##<-- to here
|
|
||||||
|
|
||||||
#copy "deploy-folder" in demo.openaire.eu
|
|
||||||
#coppies of previous deployments exist in "/home/argiro.kokogiannaki/uoa-portal/openaireYYYY-MM-DD"
|
|
||||||
#run "npm i"
|
|
||||||
#become nodejs user: "sudo su nodejs -s /bin/bash"
|
|
||||||
#go to "cd /srv/www/portal"
|
|
||||||
#cp files from "cp -r HOME_PATH/deploy-folder/* ."
|
|
||||||
#restart portal "pm2 restart openaire"
|
|
|
@ -16,7 +16,7 @@ import {Session} from './openaireLibrary/login/utils/helper.class';
|
||||||
`],
|
`],
|
||||||
template: `
|
template: `
|
||||||
|
|
||||||
<navbar *ngIf= "properties" portal="explore" onlyTop=false [(communityId)]="properties.adminToolsCommunity" [userMenuItems]=userMenuItems [menuItems]=menuItems
|
<navbar *ngIf= "properties" portal="explore" [environment]=properties.environment [onlyTop]=false [(communityId)]="properties.adminToolsCommunity" [userMenuItems]=userMenuItems [menuItems]=menuItems
|
||||||
[(APIUrl)]="properties.adminToolsAPIURL" [(logInUrl)]="properties.loginUrl" [(logOutUrl)]="properties.logoutUrl" [(cookieDomain)]="properties.cookieDomain"></navbar>
|
[(APIUrl)]="properties.adminToolsAPIURL" [(logInUrl)]="properties.loginUrl" [(logOutUrl)]="properties.logoutUrl" [(cookieDomain)]="properties.cookieDomain"></navbar>
|
||||||
<div class="custom-main-content" >
|
<div class="custom-main-content" >
|
||||||
<main>
|
<main>
|
||||||
|
@ -31,7 +31,7 @@ import {Session} from './openaireLibrary/login/utils/helper.class';
|
||||||
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="chevron-right" ratio="1"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"></polyline></svg>
|
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="chevron-right" ratio="1"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"></polyline></svg>
|
||||||
</span></a>
|
</span></a>
|
||||||
</cookie-law>
|
</cookie-law>
|
||||||
<bottom *ngIf= "isClient" [menuItems]=bottomMenuItems></bottom>
|
<bottom *ngIf= "isClient && properties" [menuItems]=bottomMenuItems [environment]=properties.environment></bottom>
|
||||||
|
|
||||||
`
|
`
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"productionMode" : false,
|
"environment" : "production",
|
||||||
"enablePiwikTrack" : false,
|
"enablePiwikTrack" : false,
|
||||||
"enableHelper" : true,
|
"enableHelper" : true,
|
||||||
"useCache" : false,
|
"useCache" : false,
|
||||||
|
@ -91,11 +91,8 @@
|
||||||
"searchLinkToAdvancedOrps" : "/search/advanced/other",
|
"searchLinkToAdvancedOrps" : "/search/advanced/other",
|
||||||
"searchLinkToAdvancedDataProviders" : "/search/advanced/dataproviders",
|
"searchLinkToAdvancedDataProviders" : "/search/advanced/dataproviders",
|
||||||
"searchLinkToAdvancedOrganizations" : "/search/advanced/organizations",
|
"searchLinkToAdvancedOrganizations" : "/search/advanced/organizations",
|
||||||
"searchLinkToAdvancedPeople" : "/search/advanced/people",
|
|
||||||
|
|
||||||
"lastIndexInformationLink" : "https://www.openaire.eu/aggregation-and-content-provision-workflows",
|
"lastIndexInformationLink" : "https://www.openaire.eu/aggregation-and-content-provision-workflows",
|
||||||
"showLastIndexInformationLink" : true,
|
"showLastIndexInformationLink" : true,
|
||||||
|
|
||||||
"widgetLink" : "https://beta.openaire.eu/index.php?option=com_openaire&view=widget&format=raw&projectId=",
|
"widgetLink" : "https://beta.openaire.eu/index.php?option=com_openaire&view=widget&format=raw&projectId=",
|
||||||
"claimsInformationLink": "https://www.openaire.eu/linking-beta"
|
"claimsInformationLink": "https://www.openaire.eu/linking-beta"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en-gb" dir="ltr" vocab="http://schema.org/">
|
<html lang="en-gb" dir="ltr" vocab="http://schema.org/">
|
||||||
<head>
|
<head>
|
||||||
<!--link href="http://beta.explore.openaire.eu" rel="canonical" /-->
|
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
@ -20,7 +19,10 @@
|
||||||
<meta property="og:image:type" content="image/png" />
|
<meta property="og:image:type" content="image/png" />
|
||||||
<meta property="og:image:width" content="360" />
|
<meta property="og:image:width" content="360" />
|
||||||
<meta property="og:image:height" content="359" />
|
<meta property="og:image:height" content="359" />
|
||||||
<meta name="robots" content="noindex">
|
<!--meta name="robots" content="noindex"-->
|
||||||
|
<meta name="google-site-verification" content="rZ-58gIX8IqzBte6Qv4J5yY9aSiDP15Dfc1Yr9yezqE" />
|
||||||
|
<meta name="msvalidate.01" content="AE99823CD202A982BAA0154148234DA8" />
|
||||||
|
<meta name="yandex-verification" content="a7b057437d324960" />
|
||||||
<link rel="apple-touch-icon" sizes="57x57" href="assets/common-assets/logo/apple-icon-57x57.png">
|
<link rel="apple-touch-icon" sizes="57x57" href="assets/common-assets/logo/apple-icon-57x57.png">
|
||||||
<link rel="apple-touch-icon" sizes="60x60" href="assets/common-assets/logo/apple-icon-60x60.png">
|
<link rel="apple-touch-icon" sizes="60x60" href="assets/common-assets/logo/apple-icon-60x60.png">
|
||||||
<link rel="apple-touch-icon" sizes="72x72" href="assets/common-assets/logo/apple-icon-72x72.png">
|
<link rel="apple-touch-icon" sizes="72x72" href="assets/common-assets/logo/apple-icon-72x72.png">
|
||||||
|
@ -65,6 +67,7 @@ $(document).ready(function(){
|
||||||
console.log("Is ready - load uikit ***")
|
console.log("Is ready - load uikit ***")
|
||||||
$.getScript("assets/common-assets/common/uikit.js");
|
$.getScript("assets/common-assets/common/uikit.js");
|
||||||
$.getScript("assets/common-assets/common/uikit-icons-max.js");
|
$.getScript("assets/common-assets/common/uikit-icons-max.js");
|
||||||
|
$.getScript("//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-559d24521cd8c080");
|
||||||
});
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -1,4 +1,14 @@
|
||||||
User-Agent: *
|
User-Agent: *
|
||||||
Disallow: /cache
|
Disallow: /cache
|
||||||
Disallow: /upload
|
Disallow: /upload
|
||||||
Disallow: /
|
#Disallow: /
|
||||||
|
|
||||||
|
|
||||||
|
Sitemap: https://explore.openaire.eu/sitemap.xml
|
||||||
|
Sitemap: https://explore.openaire.eu/publicationSitemap.xml
|
||||||
|
Sitemap: https://explore.openaire.eu/datasetSitemap.xml
|
||||||
|
Sitemap: https://explore.openaire.eu/softwareSitemap.xml
|
||||||
|
Sitemap: https://explore.openaire.eu/otherSitemap.xml
|
||||||
|
Sitemap: https://explore.openaire.eu/projectSitemap.xml
|
||||||
|
Sitemap: https://explore.openaire.eu/organizationSitemap.xml
|
||||||
|
Sitemap: https://explore.openaire.eu/dataproviderSitemap.xml
|
||||||
|
|
|
@ -0,0 +1,113 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>1</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/participate/claim]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.9</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/search/find]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>1</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/search/find/publications]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.9</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/search/find/datasets]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.9</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/search/find/software]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.9</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/search/find/other]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.9</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/search/find/projects]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.9</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/search/find/organizations]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.9</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/search/find/dataproviders]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.9</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/search/advanced/publications]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.8</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/search/advanced/datasets]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.8</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/search/advanced/software]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.8</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/search/advanced/other]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.8</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/search/advanced/projects]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.8</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/search/advanced/organizations]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.8</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/search/advanced/dataproviders]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.8</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/search/content-providers]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.7</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/search/entity-registries]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.7</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/search/journals]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.7</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/participate/deposit-publications]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.8</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc><![CDATA[https://explore.openaire.eu/participate/deposit-datasets]]></loc>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.8</priority>
|
||||||
|
</url>
|
||||||
|
</urlset>
|
Loading…
Reference in New Issue