2019-05-23 15:38:44 +02:00
// The file contents for the current environment will overwrite these during build.
// The build system defaults to the dev environment which uses `environment.ts`, but if you do
// `ng build --env=prod` then `environment.prod.ts` will be used instead.
2022-08-08 16:49:07 +02:00
// The eoscInfo of which env maps to which file can be found in `.angular-cli.json`.
2019-05-23 15:38:44 +02:00
2020-11-18 18:01:52 +01:00
import { EnvProperties } from "../app/openaireLibrary/utils/properties/env-properties" ;
export let properties : EnvProperties = {
environment : "development" ,
2022-05-16 16:14:50 +02:00
adminToolsPortalType : "eosc" ,
2022-08-08 16:49:07 +02:00
dashboard : "eosc" ,
2020-11-18 18:01:52 +01:00
enablePiwikTrack : false ,
useCache : true ,
useLongCache : true ,
showAddThis : true ,
2022-05-18 12:30:00 +02:00
enableEoscDataTransfer : true ,
2020-11-18 18:01:52 +01:00
framesAPIURL : "https://beta.openaire.eu/stats3/" ,
2022-05-05 16:48:45 +02:00
statisticsAPIURL : "https://beta.services.openaire.eu/stats-api/" ,
2020-11-18 18:01:52 +01:00
statisticsFrameAPIURL : "https://beta.openaire.eu/stats/" ,
2022-05-05 16:48:45 +02:00
statisticsFrameNewAPIURL : "https://beta.services.openaire.eu/stats-tool/" ,
2020-11-18 18:01:52 +01:00
useNewStatistisTool : true ,
claimsAPIURL : "http://dl170.madgik.di.uoa.gr:8180/dnet-claims-service-2.0.0-SNAPSHOT/rest/claimsService/" ,
searchAPIURLLAst : "http://beta.services.openaire.eu/search/v2/api/" ,
[Aggregator | new-theme]: [NEW] Added service entity in Menu, properties and added landing and search pages.
1. aggregators.ts: Added in PortalAggregators.disabled object, service entity & route.
2. app.component.ts: Added in menuItems "Serive" and use for menuItems entity names from OpenaireEntities.
3. app-routing.module.ts: Added routes for service landing, search and advanced search pages.
4. environments/: Added values for properties searchLinkToService, searchLinkToServices, searchLinkToAdvancedServices, errorLink
5. [NEW] Files added for services landing, search and advanced search pages: landingPages/service/, advancedSearchServices.component.ts, advancedSearchServices.module.ts, advancedSearchServices-routing.module.ts, searchServices.component.ts, searchServices.module.ts, searchServices-routing.module.ts
2022-05-13 15:07:09 +02:00
searchResourcesAPIURL : "http://beta.services.openaire.eu/search/v2/api/resources" ,
2020-11-18 18:01:52 +01:00
openCitationsAPIURL : "https://services.openaire.eu/opencitations/getCitations?id=" ,
csvAPIURL : "https://beta.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/" ,
orcidURL : "https://orcid.org/" ,
doiURL : "https://dx.doi.org/" ,
pmcURL : "http://europepmc.org/articles/" ,
pmidURL : "https://www.ncbi.nlm.nih.gov/pubmed/" ,
handleURL : "http://hdl.handle.net/" ,
cordisURL : "http://cordis.europa.eu/projects/" ,
openDoarURL : "http://v2.sherpa.ac.uk/id/repository/" ,
r3DataURL : "http://service.re3data.org/repository/" ,
2022-05-03 15:08:38 +02:00
fairSharingURL : "https://fairsharing.org/" ,
eoscMarketplaceURL : "https://marketplace.eosc-portal.eu/services/" ,
2020-11-18 18:01:52 +01:00
sherpaURL : "http://sherpa.ac.uk/romeo/issn/" ,
sherpaURLSuffix : "/" ,
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" ,
helpdeskEmail : "helpdesk@openaire.eu" ,
utilsService : "http://dl170.madgik.di.uoa.gr:8000" ,
vocabulariesAPI : "https://dev-openaire.d4science.org/provision/mvc/vocabularies/" ,
piwikBaseUrl : "https://analytics.openaire.eu/piwik.php?idsite=" ,
piwikSiteId : "6" ,
2021-11-08 17:49:16 +01:00
loginUrl : "http://mpagasas.di.uoa.gr:8080/login-service/openid_connect_login" ,
userInfoUrl : "http://mpagasas.di.uoa.gr:8080/login-service/userInfo" ,
logoutUrl : "http://mpagasas.di.uoa.gr:8080/login-service/openid_logout" ,
2020-11-18 18:01:52 +01:00
cookieDomain : ".di.uoa.gr" ,
feedbackmail : "kostis30fylloy@gmail.com" ,
cacheUrl : "http://dl170.madgik.di.uoa.gr:3000/get?url=" ,
2020-11-25 18:39:05 +01:00
adminToolsCommunity : "aggregator" ,
2020-11-18 18:01:52 +01:00
adminToolsAPIURL : "http://duffy.di.uoa.gr:8080/uoa-admin-tools/" ,
2020-11-25 18:39:05 +01:00
useHelpTexts : false ,
2020-11-18 18:01:52 +01:00
datasourcesAPI : "https://beta.services.openaire.eu/openaire/ds/search/" ,
contextsAPI : "https://dev-openaire.d4science.org/openaire/context" ,
communityAPI : "https://dev-openaire.d4science.org/openaire/community/" ,
csvLimit : 2000 ,
pagingLimit : 20 ,
resultsPerPage : 10 ,
"baseLink" : "" ,
2022-02-18 15:58:47 +01:00
"domain" : "https://explore.eosc-portal.eu" ,
2020-11-18 18:01:52 +01:00
searchLinkToResult : "/search/result?id=" ,
searchLinkToPublication : "/search/publication?articleId=" ,
searchLinkToProject : "/search/project?projectId=" ,
searchLinkToDataProvider : "/search/dataprovider?datasourceId=" ,
[Aggregator | new-theme]: [NEW] Added service entity in Menu, properties and added landing and search pages.
1. aggregators.ts: Added in PortalAggregators.disabled object, service entity & route.
2. app.component.ts: Added in menuItems "Serive" and use for menuItems entity names from OpenaireEntities.
3. app-routing.module.ts: Added routes for service landing, search and advanced search pages.
4. environments/: Added values for properties searchLinkToService, searchLinkToServices, searchLinkToAdvancedServices, errorLink
5. [NEW] Files added for services landing, search and advanced search pages: landingPages/service/, advancedSearchServices.component.ts, advancedSearchServices.module.ts, advancedSearchServices-routing.module.ts, searchServices.component.ts, searchServices.module.ts, searchServices-routing.module.ts
2022-05-13 15:07:09 +02:00
searchLinkToService : "/search/service?serviceId=" ,
2020-11-18 18:01:52 +01:00
searchLinkToDataset : "/search/dataset?datasetId=" ,
searchLinkToSoftwareLanding : "/search/software?softwareId=" ,
searchLinkToOrp : "/search/other?orpId=" ,
searchLinkToOrganization : "/search/organization?organizationId=" ,
searchLinkToPublications : "/search/find/publications" ,
searchLinkToDataProviders : "/search/find/dataproviders" ,
[Aggregator | new-theme]: [NEW] Added service entity in Menu, properties and added landing and search pages.
1. aggregators.ts: Added in PortalAggregators.disabled object, service entity & route.
2. app.component.ts: Added in menuItems "Serive" and use for menuItems entity names from OpenaireEntities.
3. app-routing.module.ts: Added routes for service landing, search and advanced search pages.
4. environments/: Added values for properties searchLinkToService, searchLinkToServices, searchLinkToAdvancedServices, errorLink
5. [NEW] Files added for services landing, search and advanced search pages: landingPages/service/, advancedSearchServices.component.ts, advancedSearchServices.module.ts, advancedSearchServices-routing.module.ts, searchServices.component.ts, searchServices.module.ts, searchServices-routing.module.ts
2022-05-13 15:07:09 +02:00
searchLinkToServices : "/search/find/services" ,
2020-11-18 18:01:52 +01:00
searchLinkToProjects : "/search/find/projects" ,
searchLinkToDatasets : "/search/find/datasets" ,
searchLinkToSoftware : "/search/find/software" ,
searchLinkToOrps : "/search/find/other" ,
searchLinkToOrganizations : "/search/find/organizations" ,
searchLinkToCompatibleDataProviders : "/search/content-providers" ,
searchLinkToEntityRegistriesDataProviders : "/search/entity-registries" ,
searchLinkToJournals : "/search/journals" ,
searchLinkToResults : "/search/find/research-outcomes" ,
searchLinkToAdvancedPublications : "/search/advanced/publications" ,
searchLinkToAdvancedProjects : "/search/advanced/projects" ,
searchLinkToAdvancedDatasets : "/search/advanced/datasets" ,
searchLinkToAdvancedSoftware : "/search/advanced/software" ,
searchLinkToAdvancedOrps : "/search/advanced/other" ,
searchLinkToAdvancedDataProviders : "/search/advanced/dataproviders" ,
[Aggregator | new-theme]: [NEW] Added service entity in Menu, properties and added landing and search pages.
1. aggregators.ts: Added in PortalAggregators.disabled object, service entity & route.
2. app.component.ts: Added in menuItems "Serive" and use for menuItems entity names from OpenaireEntities.
3. app-routing.module.ts: Added routes for service landing, search and advanced search pages.
4. environments/: Added values for properties searchLinkToService, searchLinkToServices, searchLinkToAdvancedServices, errorLink
5. [NEW] Files added for services landing, search and advanced search pages: landingPages/service/, advancedSearchServices.component.ts, advancedSearchServices.module.ts, advancedSearchServices-routing.module.ts, searchServices.component.ts, searchServices.module.ts, searchServices-routing.module.ts
2022-05-13 15:07:09 +02:00
searchLinkToAdvancedServices : "/search/advanced/services" ,
2020-11-18 18:01:52 +01:00
searchLinkToAdvancedOrganizations : "/search/advanced/organizations" ,
searchLinkToAdvancedResults : "/search/advanced/research-outcomes" ,
[Aggregator | new-theme]: [NEW] Added service entity in Menu, properties and added landing and search pages.
1. aggregators.ts: Added in PortalAggregators.disabled object, service entity & route.
2. app.component.ts: Added in menuItems "Serive" and use for menuItems entity names from OpenaireEntities.
3. app-routing.module.ts: Added routes for service landing, search and advanced search pages.
4. environments/: Added values for properties searchLinkToService, searchLinkToServices, searchLinkToAdvancedServices, errorLink
5. [NEW] Files added for services landing, search and advanced search pages: landingPages/service/, advancedSearchServices.component.ts, advancedSearchServices.module.ts, advancedSearchServices-routing.module.ts, searchServices.component.ts, searchServices.module.ts, searchServices-routing.module.ts
2022-05-13 15:07:09 +02:00
errorLink : "/error" ,
2020-11-18 18:01:52 +01:00
lastIndexInformationLink : "https://www.openaire.eu/aggregation-and-content-provision-workflows" ,
showLastIndexInformationLink : true ,
widgetLink : "https://beta.openaire.eu/index.php?option=com_openaire&view=widget&format=raw&projectId=" ,
claimsInformationLink : "https://www.openaire.eu/linking-beta" ,
lastIndexUpdate : "2019-11-01" ,
indexInfoAPI : "https://beta.services.openaire.eu/openaire/info/" ,
depositLearnHowPage : "/participate/deposit/learn-how" ,
depositSearchPage : "/participate/deposit/search" ,
altMetricsAPIURL : "https://api.altmetric.com/v1/doi/" ,
2022-05-03 15:53:37 +02:00
reCaptchaSiteKey : null ,
2021-11-25 15:10:20 +01:00
footerGrantText : "This OpenAIRE gateway is part of a project that has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreements No. 777541 and 101017452"
2019-05-23 15:38:44 +02:00
} ;