Merge branch 'dmp-refactoring' of https://code-repo.d4science.org/MaDgiK-CITE/argos into dmp-refactoring
# Conflicts: # deployment/.env # deployment/docker-compose.yml
This commit is contained in:
commit
c08cb4f89c
|
@ -1,28 +1,29 @@
|
|||
###################### GENERAL #########################
|
||||
#version selections
|
||||
#OpenCDMP
|
||||
PROXY_TAG=mainline-alpine
|
||||
MAIN_APP_TAG=2.1.10
|
||||
NOTIFICATION_APP_TAG=2.1.11
|
||||
ANNOTATION_APP_TAG=2.1.10
|
||||
DOCX_APP_TAG=0.0.14
|
||||
JSON_APP_TAG=0.0.9
|
||||
ZENODO_APP_TAG=2.0.10
|
||||
MAIN_APP_TAG=2.5.8
|
||||
NOTIFICATION_APP_TAG=0.0.7
|
||||
ANNOTATION_APP_TAG=0.0.7
|
||||
DOCX_APP_TAG=0.0.23
|
||||
JSON_APP_TAG=0.0.18
|
||||
ZENODO_APP_TAG=2.1.7
|
||||
|
||||
#Other Services
|
||||
POSTGRES_TAG=16-alpine
|
||||
ELK_TAG=8.13.0
|
||||
KEYCLOAK_TAG=24.0.2
|
||||
RABBITMQ_TAG=3.13-management
|
||||
PDF_SERVICE_TAG=8.4.0
|
||||
RABBITMQ_TAG=3.15-management
|
||||
PDF_SERVICE_TAG=8.9.2
|
||||
|
||||
#Application configuration
|
||||
#Docker configuration
|
||||
DOCKER_REGISTRY=crepo.cite.gr/
|
||||
PROFILE=test
|
||||
|
||||
#port speficiations
|
||||
#Port settings
|
||||
SERVER_PORT=8080
|
||||
PROXY_APP_PORT=8081
|
||||
POSTGRES_PORT=5432
|
||||
|
||||
#storage paths
|
||||
#Storage paths
|
||||
CONFIG_FILES_PATH=./config-files/
|
||||
LOG_FILES_PATH=./logs/
|
||||
STORAGE_PATH=./storage/
|
|
@ -249,6 +249,15 @@ services:
|
|||
networks:
|
||||
- opencdmp-gotenberg-shared-network
|
||||
|
||||
################################# DOCS #################################
|
||||
|
||||
opendmp.docs:
|
||||
cpus: "0.3"
|
||||
mem_limit: 256M
|
||||
restart: unless-stopped
|
||||
expose:
|
||||
- "3000"
|
||||
|
||||
networks:
|
||||
opencdmp-proxy-network:
|
||||
name: opencdmp-proxy-network
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
services:
|
||||
|
||||
############################## PROXY ########################################
|
||||
opencdmp.proxy:
|
||||
container_name: opencdmp.proxy
|
||||
|
@ -74,7 +73,7 @@ services:
|
|||
opencdmp.backend:
|
||||
condition: service_started
|
||||
|
||||
############################## POSTGRES 16 ############################################
|
||||
############################## POSTGRES ############################################
|
||||
opencdmp.postgres:
|
||||
container_name: opencdmp.postgres
|
||||
image: postgres:${POSTGRES_TAG}
|
||||
|
@ -97,7 +96,7 @@ services:
|
|||
container_name: opencdmp.rabbitmq
|
||||
image: rabbitmq:${RABBITMQ_TAG}
|
||||
|
||||
############################## GOTENBERG ##############################################
|
||||
############################## PDF SERVICE ##############################################
|
||||
opencdmp.pdf-service:
|
||||
image: gotenberg/gotenberg:${PDF_SERVICE_TAG}
|
||||
container_name: opencdmp.pdf-service
|
||||
|
|
|
@ -0,0 +1,58 @@
|
|||
idpclient:
|
||||
claims:
|
||||
mapping:
|
||||
Subject:
|
||||
- type: sub
|
||||
Name:
|
||||
- type: name
|
||||
Client:
|
||||
- type: client_id
|
||||
AuthenticationMethod:
|
||||
- type: amr
|
||||
NotBefore:
|
||||
- type: nbf
|
||||
AuthenticatedAt:
|
||||
- type: auth_time
|
||||
ExpiresAt:
|
||||
- type: exp
|
||||
Email:
|
||||
- type: email
|
||||
Roles:
|
||||
- type: resource_access
|
||||
path: dmp_web.roles
|
||||
- type: tenant_roles
|
||||
filterBy: "(.*):::TenantCode::"
|
||||
extractByExpression: "(.*):(.*)"
|
||||
extractExpressionValue: "[[g1]]"
|
||||
GlobalRoles:
|
||||
- type: resource_access
|
||||
path: dmp_web.roles
|
||||
TenantRoles:
|
||||
- type: tenant_roles
|
||||
filterBy: "(.*):::TenantCode::"
|
||||
extractByExpression: "(.*):(.*)"
|
||||
extractExpressionValue: "[[g1]]"
|
||||
Scope:
|
||||
- type: scope
|
||||
AccessToken:
|
||||
- type: x-access-token
|
||||
visibility: SENSITIVE
|
||||
Tenant:
|
||||
- type: x-tenant
|
||||
IssuedAt:
|
||||
- type: iat
|
||||
Issuer:
|
||||
- type: iss
|
||||
Audience:
|
||||
- type: aud
|
||||
TokenType:
|
||||
- type: typ
|
||||
AuthorizedParty:
|
||||
- type: azp
|
||||
Authorities:
|
||||
- type: authorities
|
||||
TenantCodes:
|
||||
- type: tenant_roles
|
||||
filterBy: "(.*):(.*)"
|
||||
extractByExpression: "(.*):(.*)"
|
||||
extractExpressionValue: "[[g2]]"
|
|
@ -0,0 +1,158 @@
|
|||
permissions:
|
||||
policies:
|
||||
DeferredAffiliation:
|
||||
roles:
|
||||
- TenantAdmin
|
||||
- TenantUser
|
||||
- TenantPlanManager
|
||||
- TenantConfigManager
|
||||
clients: [ ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
# Tenants
|
||||
BrowseTenant:
|
||||
roles: [ ]
|
||||
clients: [ ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
EditTenant:
|
||||
roles: [ ]
|
||||
clients: [ "opencdmp-api-dev" ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
DeleteTenant:
|
||||
roles: [ ]
|
||||
claims: [ ]
|
||||
clients: [ "opencdmp-api-dev" ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
AllowNoTenant:
|
||||
roles:
|
||||
- Admin
|
||||
- InstallationAdmin
|
||||
claims: [ ]
|
||||
clients: [ ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
# Users
|
||||
BrowseUser:
|
||||
roles:
|
||||
- Admin
|
||||
clients: [ ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
EditUser:
|
||||
roles: [ ]
|
||||
clients: [ "opencdmp-api-dev" ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
DeleteUser:
|
||||
roles: [ ]
|
||||
claims: [ ]
|
||||
clients: [ "opencdmp-api-dev" ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
#Annotation
|
||||
BrowseAnnotation:
|
||||
roles:
|
||||
- Admin
|
||||
- TenantAdmin
|
||||
entityAffiliated: true
|
||||
clients: [ ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
NewAnnotation:
|
||||
roles:
|
||||
- Admin
|
||||
- TenantAdmin
|
||||
entityAffiliated: true
|
||||
clients: [ ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
EditAnnotation:
|
||||
roles:
|
||||
- Admin
|
||||
- TenantAdmin
|
||||
clients: [ ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
DeleteAnnotation:
|
||||
roles:
|
||||
- Admin
|
||||
- TenantAdmin
|
||||
entityAffiliated: false
|
||||
clients: [ ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
#Tenant Configuration
|
||||
BrowseTenantConfiguration:
|
||||
roles:
|
||||
- Admin
|
||||
- TenantAdmin
|
||||
clients: [ ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
EditTenantConfiguration:
|
||||
roles:
|
||||
- Admin
|
||||
- TenantAdmin
|
||||
clients: [ ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
#Status
|
||||
BrowseStatus:
|
||||
roles:
|
||||
- Admin
|
||||
- TenantAdmin
|
||||
entityAffiliated: true
|
||||
clients: [ ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
EditStatus:
|
||||
roles:
|
||||
- Admin
|
||||
- TenantAdmin
|
||||
clients: [ ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
DeleteStatus:
|
||||
roles:
|
||||
- Admin
|
||||
- TenantAdmin
|
||||
entityAffiliated: false
|
||||
clients: [ ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
#AnnotationStatus
|
||||
BrowseAnnotationStatus:
|
||||
roles:
|
||||
- Admin
|
||||
- TenantAdmin
|
||||
entityAffiliated: true
|
||||
clients: [ ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
EditAnnotationStatus:
|
||||
roles:
|
||||
- Admin
|
||||
- TenantAdmin
|
||||
entityAffiliated: true
|
||||
clients: [ ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
DeleteAnnotationStatus:
|
||||
roles:
|
||||
- Admin
|
||||
- TenantAdmin
|
||||
entityAffiliated: true
|
||||
clients: [ ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
||||
# ViewPage Status
|
||||
ViewStatusPage:
|
||||
roles:
|
||||
- Admin
|
||||
- TenantAdmin
|
||||
clients: [ ]
|
||||
allowAnonymous: false
|
||||
allowAuthenticated: false
|
|
@ -2,6 +2,7 @@ tenant:
|
|||
multitenancy:
|
||||
is-multitenant: true
|
||||
default-tenant-code: default
|
||||
support-expansion-tenant: true
|
||||
interceptor:
|
||||
client-claims-prefix: client_
|
||||
enforce-trusted-tenant: false
|
|
@ -1,14 +1,21 @@
|
|||
notification:
|
||||
dmpInvitationExternalUserType: 065DEECD-21BB-44AF-9983-E660FDF24BC4
|
||||
dmpInvitationExistingUserType: 4904dea2-5079-46d3-83be-3a19c9ab45dc
|
||||
dmpModifiedType: 4542262A-22F8-4BAA-9DB6-1C8E70AC1DBB
|
||||
dmpFinalisedType: 90DB0B46-42DE-BD89-AEBF-6F27EFEB256E
|
||||
planInvitationExternalUserType: 065DEECD-21BB-44AF-9983-E660FDF24BC4
|
||||
planInvitationExistingUserType: 4904dea2-5079-46d3-83be-3a19c9ab45dc
|
||||
planModifiedType: 4542262A-22F8-4BAA-9DB6-1C8E70AC1DBB
|
||||
planFinalisedType: 90DB0B46-42DE-BD89-AEBF-6F27EFEB256E
|
||||
planAnnotationCreatedType: 1cca80f5-2ea9-41ae-a204-9b4332216c24
|
||||
planAnnotationStatusChangedType: 0c8a5c62-e48f-4eca-99ee-a7f262477061
|
||||
descriptionCreatedType: 8965b1d5-99a6-4acf-9016-c0d0ce341364
|
||||
descriptionModifiedType: 4FDBFA80-7A71-4A69-B854-67CBB70648F1
|
||||
descriptionFinalisedType: 33790bad-94d4-488a-8ee2-7f6295ca18ea
|
||||
descriptionAnnotationCreatedType: db1e99d2-a240-4e75-9bb2-ef25b234c1f0
|
||||
descriptionAnnotationStatusChangedType: 3189e3a6-91e6-40c6-8ff8-275a68445aec
|
||||
mergeAccountConfirmationType: BFE68845-CB05-4C5A-A03D-29161A7C9660
|
||||
removeCredentialConfirmationType: C9BC3F16-057E-4BBA-8A5F-36BD835E5604
|
||||
dmpDepositType: 55736F7A-83AB-4190-AF43-9D031A6F9612
|
||||
descriptionTemplateInvitationType: 223BB607-EFA1-4CE7-99EC-4BEABFEF9A8B
|
||||
contactSupportType: 5B1D6C52-88F9-418B-9B8A-6F1F963D9EAD
|
||||
publicContactSupportType: B542B606-ACC6-4629-ADEF-4D8EE2F01222
|
||||
tenantSpecificInvitationExternalUserType: 497dada5-eccc-4bc0-9e0b-63e22b4eb0be
|
||||
tenantSpecificInvitationExistingUserType: b3809c17-d1e4-420a-919c-828564114191
|
||||
contactSupportEmail: support@dmp.com
|
|
@ -1,15 +1,5 @@
|
|||
storage:
|
||||
service:
|
||||
defaultLanguage: en
|
||||
storages:
|
||||
- type: Temp
|
||||
basePath: ${FILE_STORAGE}/temp
|
||||
- type: Main
|
||||
basePath: ${FILE_STORAGE}/main
|
||||
- type: Transformer
|
||||
basePath: ${FILE_STORAGE}/transformer
|
||||
- type: Deposit
|
||||
basePath: ${FILE_STORAGE}/deposit
|
||||
static-files:
|
||||
semantics: /Semantics.json
|
||||
material-files:
|
||||
|
@ -19,3 +9,4 @@ storage:
|
|||
glossary: /material/glossary/
|
||||
faq: /material/faq/
|
||||
language: /i18n/
|
||||
cookiePolicy: /cookie-policy/
|
|
@ -4,6 +4,7 @@ tenant:
|
|||
multitenancy:
|
||||
is-multitenant: true
|
||||
default-tenant-code: default
|
||||
support-expansion-tenant: true
|
||||
interceptor:
|
||||
client-claims-prefix: client_
|
||||
enforce-trusted-tenant: false
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -84,7 +84,7 @@
|
|||
familiarize users with basic RDM concepts and guide them throughout the process of
|
||||
writing DMPs. It also utilises the OpenAIRE pool of services and inferred sources to
|
||||
make DMPs more dynamic in use and easier to be completed and published. Argos is
|
||||
based on the OpenCDMP <a href="https://code-repo.d4science.org/MaDgiK-CITE/argos/src/branch/master"
|
||||
based on the OpenDMP <a href="https://code-repo.d4science.org/MaDgiK-CITE/argos/src/branch/master"
|
||||
target="_blank">open source software</a> and is available through the <a
|
||||
href="http://catalogue.openaire.eu/" target="_blank">OpenAIRE
|
||||
Service catalogue</a> and the <a
|
||||
|
@ -660,7 +660,7 @@
|
|||
Is Argos open source?
|
||||
</h4>
|
||||
<p>
|
||||
Yes, it is. The OpenCDMP software that Argos has deployed upon is open source code
|
||||
Yes, it is. The OpenDMP software that Argos has deployed upon is open source code
|
||||
available under Apache 2.0 license. You may find more information about the software
|
||||
<a href="https://code-repo.d4science.org/MaDgiK-CITE/argos/src/branch/master"
|
||||
target="_blank">here</a>.
|
||||
|
|
|
@ -84,10 +84,10 @@
|
|||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<p><span>The </span><span>OpenCDMP</span><span> service was developed to provide a more flexible, </span><span>collaborative </span><span>environment with machine actionable solutions in writing, sharing and publishing Data Management Plans (DMPs). It is a product of </span><span>cooperation between </span><span>OpenAIRE </span><span>AMKE</span><span class="c0"> and EUDAT CDI and is offered both as a software “OpenCDMP '' and as an online service under the name “ARGOS”. </span></p>
|
||||
<p><span>The </span><span>OpenDMP</span><span> service was developed to provide a more flexible, </span><span>collaborative </span><span>environment with machine actionable solutions in writing, sharing and publishing Data Management Plans (DMPs). It is a product of </span><span>cooperation between </span><span>OpenAIRE </span><span>AMKE</span><span class="c0"> and EUDAT CDI and is offered both as a software “OpenDMP '' and as an online service under the name “ARGOS”. </span></p>
|
||||
<p><span></span></p>
|
||||
<ol>
|
||||
<li><span><a href="https://code-repo.d4science.org/MaDgiK-CITE/argos">OpenCDMP software</a></span><span> is offered under the Free Open Source Software license </span><span>Apache 2.0</span><span class="c0">, for further development and use by institutions and interested parties.</span></li>
|
||||
<li><span><a href="https://code-repo.d4science.org/MaDgiK-CITE/argos">OpenDMP software</a></span><span> is offered under the Free Open Source Software license </span><span>Apache 2.0</span><span class="c0">, for further development and use by institutions and interested parties.</span></li>
|
||||
<li><span><a href="https://argos.openaire.eu/">ARGOS</a></span><span> service</span><span> is offered by</span><span> </span><span>OpenAIRE</span><span> as </span><span>part of its mission to support Open Science in the European Research Area, focusing on information linking and contextualisation that enriches its </span><span class="c5"><a href="https://zenodo.org/record/2600275#.XZpJgUYzY2w">Research Graph</a></span><span>.</span><span class="c0"> Use of ARGOS denotes agreement with the following terms:</span>
|
||||
<ol>
|
||||
<li><span>ARGOS is a software interface and a database with no storage capacity to store or preserve research data. The DMPs created are hosted in the </span><span>OpenAIRE </span><span>production environment for the sole purpose of exposing the DMP records once finalised (“published”). If assigned a DOI, the DMP records are linked to and preserved in Zenodo, the OpenAIRE’s repository service. The ARGOS service is made available for use free-of-charge for research, educational and informational purposes.</span></li>
|
||||
|
|
|
@ -1946,7 +1946,7 @@
|
|||
margin-left: -20px;
|
||||
}
|
||||
</style>
|
||||
<base href="https://devel.opencdmp.eu/">
|
||||
<base href="https://devel.opendmp.eu/">
|
||||
</head>
|
||||
|
||||
<body data-spy="scroll" data-target="#toc">
|
||||
|
@ -1965,15 +1965,15 @@
|
|||
<p><strong>Modelo de Dados</strong> – é composto por um conjunto de questões que descrevem o que os Datasets contêm e como são tratados. Estes modelos estão ligados a PGDs, de modo a que os utilizadores tenham acesso a formatos específicos consoante a instituição a que reportam. Os modelos só podem ser modificados por administradores. Um <strong>grant</strong> e/ou um <strong>projeto </strong>definem o contexto em que um ou mais PGDs podem ser criados.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p style="line-height: 2;"><strong>Importa</strong><strong>r ficheiro </strong>- Suporta a função de importar ficheiros em formato .json, que são produzidos de acordo com as especificações da Research Data Alliance (RDA) para PGDs acionáveis por máquina.<br /><br /><span style="background-color: #fbeeb8; color: #212529; font-family: var(--bs-font-sans-serif); font-size: 1rem;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture1.png" alt="" width="344" height="287" /></span></p>
|
||||
<p style="line-height: 2;"><strong>Importa</strong><strong>r ficheiro </strong>- Suporta a função de importar ficheiros em formato .json, que são produzidos de acordo com as especificações da Research Data Alliance (RDA) para PGDs acionáveis por máquina.<br /><br /><span style="background-color: #fbeeb8; color: #212529; font-family: var(--bs-font-sans-serif); font-size: 1rem;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture1.png" alt="" width="344" height="287" /></span></p>
|
||||
</li>
|
||||
</ul>
|
||||
<br />
|
||||
<p style="padding-left: 40px; text-align: justify; line-height: 2;">O botão <strong>“Criar novo PGD” </strong>permite de forma simples iniciar o seu plano. Esta opção<strong> </strong>fornece um editor que percorre os elementos essenciais de um PGD, guiando o processo de criação do documento passo a passo.<br /><br /><em>A partir do "Início"<br /><br /></em><span style="background-color: #fbeeb8; color: #212529; font-family: var(--bs-font-sans-serif); font-size: 1rem;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture2.png" alt="" width="227" height="42" /><br /><span style="background-color: #fbeeb8; color: #212529; font-family: var(--bs-font-sans-serif); font-size: 1rem;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture3.png" alt="" width="283" height="236" /></span><br /></span></p>
|
||||
<p style="padding-left: 40px; text-align: justify; line-height: 2;">O botão <strong>“Criar novo PGD” </strong>permite de forma simples iniciar o seu plano. Esta opção<strong> </strong>fornece um editor que percorre os elementos essenciais de um PGD, guiando o processo de criação do documento passo a passo.<br /><br /><em>A partir do "Início"<br /><br /></em><span style="background-color: #fbeeb8; color: #212529; font-family: var(--bs-font-sans-serif); font-size: 1rem;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture2.png" alt="" width="227" height="42" /><br /><span style="background-color: #fbeeb8; color: #212529; font-family: var(--bs-font-sans-serif); font-size: 1rem;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture3.png" alt="" width="283" height="236" /></span><br /></span></p>
|
||||
<br />
|
||||
<p style="padding-left: 40px; text-align: justify;"><em>A partir de “Adicione um Dataset”<br /><br /></em><span style="color: #212529; font-family: var(--bs-font-sans-serif); font-size: 1rem;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture4.png" alt="" width="278" height="232" /></span><br /><br /></span><strong>Adicionar um Dataset</strong> é uma forma simples de adicionar novos modelos de dados a PGDs pré-existentes.<br /><br /><em>A partir do “Início”<br /><br /></em><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture5.png" alt="" width="523" height="248" /></p>
|
||||
<p style="padding-left: 40px; text-align: justify;"><em>A partir de “Os meus Datasets”<br /><br /></em><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture6.png" alt="" width="233" height="93" /></span><br /><br /><em>A partir de “Os meus PGDs”<br /><br /></em><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture7.png" alt="" width="272" height="387" /></span><br /><br /></p>
|
||||
<p style="padding-left: 40px; text-align: justify;"><em>A partir do “Editor de Dataset”<br /><br /></em><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture8.png" alt="" width="239" height="194" /></span><br /><br /></p>
|
||||
<p style="padding-left: 40px; text-align: justify;"><em>A partir de “Adicione um Dataset”<br /><br /></em><span style="color: #212529; font-family: var(--bs-font-sans-serif); font-size: 1rem;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture4.png" alt="" width="278" height="232" /></span><br /><br /></span><strong>Adicionar um Dataset</strong> é uma forma simples de adicionar novos modelos de dados a PGDs pré-existentes.<br /><br /><em>A partir do “Início”<br /><br /></em><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture5.png" alt="" width="523" height="248" /></p>
|
||||
<p style="padding-left: 40px; text-align: justify;"><em>A partir de “Os meus Datasets”<br /><br /></em><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture6.png" alt="" width="233" height="93" /></span><br /><br /><em>A partir de “Os meus PGDs”<br /><br /></em><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture7.png" alt="" width="272" height="387" /></span><br /><br /></p>
|
||||
<p style="padding-left: 40px; text-align: justify;"><em>A partir do “Editor de Dataset”<br /><br /></em><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture8.png" alt="" width="239" height="194" /></span><br /><br /></p>
|
||||
<h2 id="mcetoc_1fbs4o53q132" style="text-align: justify;">1.2 Outros termos</h2>
|
||||
<ul style="text-align: justify;">
|
||||
<li>
|
||||
|
@ -1996,7 +1996,7 @@
|
|||
<h1 id="mcetoc_1fbs4o53q133" style="text-align: justify;">2. Navegação</h1>
|
||||
<h2 id="mcetoc_1fbs4o53q134" style="text-align: justify;">2.1 Página Inicial</h2>
|
||||
<p style="text-align: justify; line-height: 2;">A página inicial poderá ser encontrada em <a href="https://argos.openaire.eu/splash/">https://argos.openaire.eu/splash/</a>, também acessível através do<a href="http://catalogue.openaire.eu/search;quantity=10"> </a><a href="http://catalogue.openaire.eu/">Catálogo de Serviços do OpenAIRE</a> e<a href="https://marketplace.eosc-portal.eu/services/argos?fromc=data-management"> </a><a href="https://marketplace.eosc-portal.eu/services/argos">EOSC</a>.</p>
|
||||
<p style="text-align: justify;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture9.png" alt="" width="528" height="265" /></span></p>
|
||||
<p style="text-align: justify;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture9.png" alt="" width="528" height="265" /></span></p>
|
||||
<ul style="text-align: justify;">
|
||||
<li>
|
||||
<p style="line-height: 2;"><strong>Sobre – </strong>Informa sobre o âmbito e principais funções da ferramenta (como funciona, Roadmap, FAQs, quais os contribuidores).</p>
|
||||
|
@ -2013,13 +2013,13 @@
|
|||
</ul>
|
||||
<h2 id="mcetoc_1fbs4o53q135" style="text-align: justify;">2.2 Login</h2>
|
||||
<p style="text-align: justify;"><br />Estão disponíveis diferentes opções de login, desde meios de comunicação social a canais de investigação e comunicação académica.</p>
|
||||
<p style="text-align: justify;"><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture10.png" alt="" width="240" height="228" /></span></span><br /><em>Atenção! Não é necessária uma conta de utilizador.<br /><br /></em></p>
|
||||
<p style="text-align: justify;"><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture10.png" alt="" width="240" height="228" /></span></span><br /><em>Atenção! Não é necessária uma conta de utilizador.<br /><br /></em></p>
|
||||
<h2 id="mcetoc_1fbs4o53q136" style="text-align: justify;">2.3 Menu do Utilizador</h2>
|
||||
<p style="text-align: justify;">Espaço dedicado e que poderá ser customizado de acordo com o perfil pessoal do utilizador.<br /><br /></p>
|
||||
<table style="height: 263px; width: 845px;" width="634">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="width: 323px;"><span style="background-color: #fbeeb8;"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture11.png" alt="" width="199" height="193" /></span></td>
|
||||
<td style="width: 323px;"><span style="background-color: #fbeeb8;"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://devel.opendmp.eu/assets/images/guide/pt/Picture11.png" alt="" width="199" height="193" /></span></td>
|
||||
<td style="width: 518px;">
|
||||
<p style="text-align: justify; line-height: 2;"><strong>Definições do Meu Perfil</strong> - Exibe a página de perfil que contém detalhes tais como: nome, e-mail, dados da conta Zenodo, etc.</p>
|
||||
<p style="text-align: justify; line-height: 2;"><strong>PGDs associados</strong> - Coleção dos PGDs do utilizador.</p>
|
||||
|
@ -2046,12 +2046,12 @@
|
|||
</td>
|
||||
</tr>
|
||||
<tr style="height: 289px;">
|
||||
<td style="width: 386px; height: 289px;" width="301"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><br /><img style="display: block; margin-left: auto; margin-right: auto;" src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture12.png" alt="" width="259" height="633" /></span></td>
|
||||
<td style="width: 386px; height: 289px;" width="301"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><br /><img style="display: block; margin-left: auto; margin-right: auto;" src="https://devel.opendmp.eu/assets/images/guide/pt/Picture12.png" alt="" width="259" height="633" /></span></td>
|
||||
<td style="width: 74px; height: 289px;">
|
||||
<p><span style="font-size: 12pt; font-family: arial, helvetica, sans-serif;"><strong> </strong></span></p>
|
||||
</td>
|
||||
<td style="width: 379px; height: 289px;" width="301">
|
||||
<p><span style="font-size: 12pt; font-family: arial, helvetica, sans-serif;"><strong> </strong></span><span style="background-color: #fbeeb8;"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture13.png" alt="" width="244" height="635" /></span></p>
|
||||
<p><span style="font-size: 12pt; font-family: arial, helvetica, sans-serif;"><strong> </strong></span><span style="background-color: #fbeeb8;"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://devel.opendmp.eu/assets/images/guide/pt/Picture13.png" alt="" width="244" height="635" /></span></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="height: 77px;">
|
||||
|
@ -2132,11 +2132,11 @@
|
|||
<h2 id="mcetoc_1fbs4o53q138" style="text-align: justify;">2.5 Início</h2>
|
||||
<p style="text-align: justify;">O “Início” é a informação que aparece depois de entrar no Argos a partir da página inicial.</p>
|
||||
<p style="text-align: justify;">Inclui informação condensada baseada na função Argos e na sua utilização.</p>
|
||||
<p style="text-align: justify;"><strong><br />Início – </strong><strong>Antes de iniciar a sessão<br /></strong><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture14.png" alt="" width="386" height="238" /></span></span></p>
|
||||
<p style="text-align: justify;"><strong><br />Início – </strong><strong>Antes de iniciar a sessão<br /></strong><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture14.png" alt="" width="386" height="238" /></span></span></p>
|
||||
<table style="width: 941px;" width="600">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="width: 436px;" width="404"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img style="float: left;" src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture15.png" alt="" width="394" height="204" /></span></span></td>
|
||||
<td style="width: 436px;" width="404"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img style="float: left;" src="https://devel.opendmp.eu/assets/images/guide/pt/Picture15.png" alt="" width="394" height="204" /></span></span></td>
|
||||
<td style="width: 503px;" width="196">
|
||||
<p style="line-height: 2;"><strong><br />Última Atividade</strong> - Exibe os PGDs e Datasets publicamente disponíveis, de acordo com a data da sua publicação no Argos e a sua etiqueta (PGDs ou Datasets).</p>
|
||||
</td>
|
||||
|
@ -2147,7 +2147,7 @@
|
|||
<table style="width: 943px;" width="600">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="width: 243.5px;" width="124"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture16.png" alt="" width="113" height="220" /></span></span></td>
|
||||
<td style="width: 243.5px;" width="124"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://devel.opendmp.eu/assets/images/guide/pt/Picture16.png" alt="" width="113" height="220" /></span></span></td>
|
||||
<td style="width: 698.5px;" width="476">
|
||||
<p style="line-height: 2; text-align: justify;"><strong><br />Uso Público</strong> - Mostra o número de PGDs, Datasets, Grants e Organizações publicamente disponíveis e incluídas no Argos.</p>
|
||||
<p style="line-height: 2; text-align: justify;"> </p>
|
||||
|
@ -2157,11 +2157,11 @@
|
|||
</tbody>
|
||||
</table>
|
||||
<p style="text-align: justify;"> </p>
|
||||
<p style="text-align: justify;"><strong>Início - Após Iniciar a Sessão<br /><br /></strong><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture17.png" alt="" width="449" height="212" /></span></span><br /><br /></p>
|
||||
<p style="text-align: justify;"><strong>Início - Após Iniciar a Sessão<br /><br /></strong><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture17.png" alt="" width="449" height="212" /></span></span><br /><br /></p>
|
||||
<table style="width: 942px;" width="600">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="width: 461px;" width="472"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture18.png" alt="" width="427" height="279" /></span></span></td>
|
||||
<td style="width: 461px;" width="472"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture18.png" alt="" width="427" height="279" /></span></span></td>
|
||||
<td style="width: 480px;" width="128">
|
||||
<p style="text-align: justify; line-height: 2;"><strong><br />Última Atividade </strong>- Exibe os PGDs e Datasets do utilizador, de acordo com a data da sua última modificação, estado do documento (rascunho, finalizado, publicado) e a sua etiqueta (PGDs ou Datasets).</p>
|
||||
</td>
|
||||
|
@ -2172,7 +2172,7 @@
|
|||
<table style="width: 944px;" width="600">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="width: 462px;" width="126"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture19.png" alt="" width="119" height="233" /></span></span></td>
|
||||
<td style="width: 462px;" width="126"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://devel.opendmp.eu/assets/images/guide/pt/Picture19.png" alt="" width="119" height="233" /></span></span></td>
|
||||
<td style="width: 481px;" width="474">
|
||||
<p style="line-height: 2;"><strong><br />Uso Pessoal </strong>- Mostra a atividade do utilizador nos PGDs, Datasets, Grants e Organizações.</p>
|
||||
</td>
|
||||
|
@ -2184,7 +2184,7 @@
|
|||
<br />
|
||||
<p style="text-align: justify; line-height: 2;">Contém todos os PGDs e Datasets de que o utilizador é proprietário ou colaborador. Tanto os PGDs, como os Datasets, são classificados pela data da sua última modificação, o estado do documento (rascunho, finalizado, publicado) e a sua etiqueta (PGDs ou Datasets).<br /><br /></p>
|
||||
<h4 style="text-align: justify;"><strong>Os Meus PGDs<br /><br /></strong></h4>
|
||||
<p style="text-align: justify; line-height: 2;">Quando a etiqueta é <span style="color: #2dc26b;"><strong>verde</strong></span> trata-se de um PGD, mostrando o papel da pessoa que vê o PGD, o estado do processo de escrita, a versão atual do PGD, o grant associado ao PGD, o número e nome dos Datasets que o PGD tem.<br /><br /><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture20.png" alt="" width="528" height="255" /></span></span></p>
|
||||
<p style="text-align: justify; line-height: 2;">Quando a etiqueta é <span style="color: #2dc26b;"><strong>verde</strong></span> trata-se de um PGD, mostrando o papel da pessoa que vê o PGD, o estado do processo de escrita, a versão atual do PGD, o grant associado ao PGD, o número e nome dos Datasets que o PGD tem.<br /><br /><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture20.png" alt="" width="528" height="255" /></span></span></p>
|
||||
<ul style="text-align: justify;">
|
||||
<li>
|
||||
<p style="line-height: 2;"><strong>Exportar</strong> - Suporta o download dos outputs do PGD nos seguintes formatos: PDF, Document, XML, RDA JSON (pode ser importado para outras ferramentas de PGD compatíveis com a RDA).</p>
|
||||
|
@ -2206,7 +2206,7 @@
|
|||
<table style="width: 938px;" width="600">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="width: 465px;" width="272"><img style="font-family: arial, helvetica, sans-serif;" src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture21.png" alt="" width="417" height="152" /></td>
|
||||
<td style="width: 465px;" width="272"><img style="font-family: arial, helvetica, sans-serif;" src="https://devel.opendmp.eu/assets/images/guide/pt/Picture21.png" alt="" width="417" height="152" /></td>
|
||||
<td style="width: 472px;" width="328">
|
||||
<p style="line-height: 2;"><strong><br />Nova Versão</strong> - Inicia uma nova versão do PGD.</p>
|
||||
<p style="line-height: 2;"><strong>Ver todas as Versões do PGD</strong> - Mostra o histórico das diferentes versões do PGD.</p>
|
||||
|
@ -2217,7 +2217,7 @@
|
|||
</table>
|
||||
<br />
|
||||
<h4 style="text-align: justify;"><strong>Os Meus Datasets<br /><br /></strong></h4>
|
||||
<p style="text-align: justify; line-height: 2;">Quando a etiqueta é <span style="color: #f9ec0c;"><strong>amarelo</strong></span> trata-se de um Dataset e mostra o papel da pessoa que visualiza o Dataset, o estado do processo de escrita, o grant associado ao PGD e o título do PGD do qual o Dataset faz parte.<br /><br /><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture22.png" alt="" width="470" height="235" /></span></span><br /><br /></p>
|
||||
<p style="text-align: justify; line-height: 2;">Quando a etiqueta é <span style="color: #f9ec0c;"><strong>amarelo</strong></span> trata-se de um Dataset e mostra o papel da pessoa que visualiza o Dataset, o estado do processo de escrita, o grant associado ao PGD e o título do PGD do qual o Dataset faz parte.<br /><br /><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture22.png" alt="" width="470" height="235" /></span></span><br /><br /></p>
|
||||
<ul style="text-align: justify;">
|
||||
<li>
|
||||
<p style="line-height: 2;"><strong>Exportar</strong> - Suporta o download dos outputs do Dataset nos seguintes formatos: PDF, Document, XML, RDA JSON (pode ser importado para outras ferramentas de PGD compatíveis com a RDA).</p>
|
||||
|
@ -2238,7 +2238,7 @@
|
|||
<p style="text-align: justify; line-height: 2;">Tanto os PGDs como os Datasets são organizados e apresentados pela data da sua última modificação e pela sua etiqueta (PGDs ou Datasets). Os utilizadores também podem procurar o PGD ou Dataset a partir da barra de pesquisa.<br /><br /></p>
|
||||
<h4 style="text-align: justify;"><strong>PGDs Públicos<br /><br /></strong></h4>
|
||||
<p style="text-align: justify; line-height: 2;">Quando a etiqueta é <span style="color: #2dc26b;"><strong>verde</strong></span> trata-se de um PGD e exibe o título do PGD, o seu estado, a sua versão, o grant associado, o número e o nome dos Datasets que o PGD contém.</p>
|
||||
<p style="text-align: justify;"><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture23.png" alt="" width="606" height="181" /></span></span><br /><br /></span></p>
|
||||
<p style="text-align: justify;"><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture23.png" alt="" width="606" height="181" /></span></span><br /><br /></span></p>
|
||||
<ul style="text-align: justify;">
|
||||
<li>
|
||||
<p style="line-height: 2;"><strong>Exportar</strong> - Suporta o download dos outputs do PGD nos seguintes formatos: PDF, Document, XML, RDA JSON (pode ser importado para outras ferramentas de PGD compatíveis com a RDA).</p>
|
||||
|
@ -2250,7 +2250,7 @@
|
|||
</li>
|
||||
</ul>
|
||||
<h4 style="text-align: justify;"><strong>Datasets Públicos<br /><br /></strong></h4>
|
||||
<p style="text-align: justify; line-height: 2;">Quando a etiqueta é <span style="color: #f9ec0c;"><strong>amarelo</strong></span> trata-se de um Dataset Público e mostra o título do Dataset, o seu estado, o grant associado ao PGD e o papel da pessoa que visualiza o Dataset, o estado do processo de escrita, o grant<em> </em>associado ao PGD e o título do PGD do qual o Dataset faz parte.<br /><br /><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture24.png" alt="" width="604" height="165" /></span></span></span><br /><br /></p>
|
||||
<p style="text-align: justify; line-height: 2;">Quando a etiqueta é <span style="color: #f9ec0c;"><strong>amarelo</strong></span> trata-se de um Dataset Público e mostra o título do Dataset, o seu estado, o grant associado ao PGD e o papel da pessoa que visualiza o Dataset, o estado do processo de escrita, o grant<em> </em>associado ao PGD e o título do PGD do qual o Dataset faz parte.<br /><br /><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture24.png" alt="" width="604" height="165" /></span></span></span><br /><br /></p>
|
||||
<ul style="text-align: justify;">
|
||||
<li>
|
||||
<p style="line-height: 2;"><strong>Exportar</strong> - Suporta o download dos outputs do Dataset nos seguintes formatos: PDF, Document, XML, RDA JSON (pode ser importado para outras ferramentas de PGD compatíveis com a RDA).</p>
|
||||
|
@ -2259,7 +2259,7 @@
|
|||
<table style="height: 147px; width: 934px;" width="602">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="width: 603.75px;"><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture25.png" alt="" width="285" height="104" /></span></span></span></td>
|
||||
<td style="width: 603.75px;"><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture25.png" alt="" width="285" height="104" /></span></span></span></td>
|
||||
<td style="width: 328.75px;">
|
||||
<p><strong>Copiar o Dataset </strong>- Cria uma cópia do Dataset.</p>
|
||||
</td>
|
||||
|
@ -2269,14 +2269,14 @@
|
|||
<p style="text-align: justify;"> </p>
|
||||
<h2 id="mcetoc_1fbs4o53q13b" style="text-align: justify;">2.8 Criar novo PGD</h2>
|
||||
<p style="text-align: justify;"><br />Existem várias formas de criar um novo PGD no Argos.</p>
|
||||
<span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture26.png" alt="" width="176" height="53" /></span></span></span><br /><br />
|
||||
<span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture26.png" alt="" width="176" height="53" /></span></span></span><br /><br />
|
||||
<p style="padding-left: 40px; text-align: justify; line-height: 2;">Existem 4 etapas envolvidas na criação de um PGD:</p>
|
||||
<p style="text-align: justify; line-height: 2; padding-left: 80px;">- Informação Geral<strong>;</strong></p>
|
||||
<p style="padding-left: 80px; text-align: justify; line-height: 2;">- Informação sobre o Financiamento;</p>
|
||||
<p style="padding-left: 80px; text-align: justify; line-height: 2;">- Informação sobre a Licença;</p>
|
||||
<p style="padding-left: 80px; text-align: justify; line-height: 2;">- Informação sobre os Datasets.<br /><br /></p>
|
||||
<h4 style="text-align: justify;"><strong>Informação Geral</strong></h4>
|
||||
<img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture27.png" alt="" width="604" height="269" /><span style="background-color: #fbeeb8;"><br /><br /><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture28.png" alt="" width="604" height="275" /></span></span></span><br /></span></span><br />
|
||||
<img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture27.png" alt="" width="604" height="269" /><span style="background-color: #fbeeb8;"><br /><br /><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture28.png" alt="" width="604" height="275" /></span></span></span><br /></span></span><br />
|
||||
<ul style="text-align: justify;">
|
||||
<li>
|
||||
<p style="line-height: 2;"><strong>Título do PGD </strong>- Título do documento.</p>
|
||||
|
@ -2301,7 +2301,7 @@
|
|||
</li>
|
||||
</ul>
|
||||
<h4 style="text-align: justify;"><strong>Informação sobre o Financiamento<br /><br /></strong></h4>
|
||||
<span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture29.png" alt="" width="604" height="258" /></span></span></span><br /><br />
|
||||
<span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture29.png" alt="" width="604" height="258" /></span></span></span><br /><br />
|
||||
<ul style="text-align: justify;">
|
||||
<li>
|
||||
<p style="line-height: 2;"><strong>Organizações de Financiamento</strong> - Integra uma lista onde os utilizadores podem selecionar a organização através da qual a investigação é financiada. Caso o nome de uma organização financiadora não possa ser encontrado no Argos, os utilizadores podem criar um novo registo com o nome e detalhes da organização financiadora ("Inserir manualmente").</p>
|
||||
|
@ -2314,7 +2314,7 @@
|
|||
</li>
|
||||
</ul>
|
||||
<h4 style="text-align: justify;"><strong>Informação sobre a Licença</strong></h4>
|
||||
<strong><span style="font-family: arial, helvetica, sans-serif; font-size: 18pt; background-color: #ffffff; color: #7e8c8d;"><br /></span></strong><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture30.png" alt="" width="604" height="255" /></span></span></span><br /><br />
|
||||
<strong><span style="font-family: arial, helvetica, sans-serif; font-size: 18pt; background-color: #ffffff; color: #7e8c8d;"><br /></span></strong><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture30.png" alt="" width="604" height="255" /></span></span></span><br /><br />
|
||||
<ul style="text-align: justify;">
|
||||
<li>
|
||||
<p><strong>Licença</strong> - Inclui uma lista de licenças a escolher e a atribuir aos PGDs.</p>
|
||||
|
@ -2322,7 +2322,7 @@
|
|||
</ul>
|
||||
<strong><strong><span style="font-family: arial, helvetica, sans-serif; font-size: 18pt; background-color: #ffffff; color: #7e8c8d;"><br /></span></strong></strong>
|
||||
<h4 style="text-align: justify;"><strong>Informação sobre os Datasets</strong></h4>
|
||||
<span style="background-color: #fbeeb8;"><br /></span><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture31.png" alt="" width="604" height="288" /></span></span></span><br /><br />
|
||||
<span style="background-color: #fbeeb8;"><br /></span><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture31.png" alt="" width="604" height="288" /></span></span></span><br /><br />
|
||||
<ul style="text-align: justify;">
|
||||
<li>
|
||||
<p style="line-height: 2;"><strong>Informação sobre os Datasets </strong>– Permite selecionar o modelo para descrever os seus datasets. Poderá selecionar mais do que um modelo de dados.</p>
|
||||
|
@ -2342,7 +2342,7 @@
|
|||
<p style="padding-left: 40px; text-align: justify; line-height: 2;">- Adicionar Datasets aos PGDs existentes.</p>
|
||||
<p style="text-align: justify; line-height: 2;"><br />No Argos, os Datasets estão ligados e associados a pelo menos um PGD. Um Dataset não pode existir como registo único.</p>
|
||||
<p style="text-align: justify; line-height: 2;"><strong>Primeiro </strong><strong>Dataset</strong></p>
|
||||
<span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture32.png" alt="" width="573" height="281" /></span></span></span><br /><br />
|
||||
<span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture32.png" alt="" width="573" height="281" /></span></span></span><br /><br />
|
||||
<p style="text-align: justify; line-height: 2;">Uma vez criado o PGD, o utilizador poderá preencher a descrição dos seus dados no “Editor de Dataset”.</p>
|
||||
<p style="text-align: justify; line-height: 2;"><strong> <br /></strong></p>
|
||||
<ul style="text-align: justify;">
|
||||
|
@ -2368,18 +2368,18 @@
|
|||
</ul>
|
||||
<br />
|
||||
<h4 style="text-align: justify;"><strong>Selecione um PGD para o seu Dataset</strong></h4>
|
||||
<span style="background-color: #fbeeb8;"><br /></span><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture33.png" alt="" width="451" height="246" /></span></span></span><br /><br />
|
||||
<span style="background-color: #fbeeb8;"><br /></span><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture33.png" alt="" width="451" height="246" /></span></span></span><br /><br />
|
||||
<p style="text-align: justify; line-height: 2;">Selecione um PGD já existente na lista.</p>
|
||||
<br />
|
||||
<h4 style="text-align: justify;"><strong>Selecione um Modelo</strong></h4>
|
||||
<span style="color: #7e8c8d;"><span style="color: #7e8c8d;"><strong><span style="font-family: arial, helvetica, sans-serif; font-size: 18pt;"><br /></span></strong></span></span>
|
||||
<p style="text-align: justify; line-height: 2;"><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture34.png" alt="" width="938" height="458" /></span></span></span></p>
|
||||
<p style="text-align: justify; line-height: 2;"><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture34.png" alt="" width="938" height="458" /></span></span></span></p>
|
||||
<span style="color: #7e8c8d;"><strong><span style="font-family: arial, helvetica, sans-serif; font-size: 18pt;"><br /></span></strong></span>
|
||||
<p style="text-align: justify; line-height: 2;">Selecionar o modelo de dados para descrever o seu Dataset, de acordo com a organização que financia o seu grant.</p>
|
||||
<h4 style="text-align: justify;"><strong><br />Edite o Dataset</strong></h4>
|
||||
<br />
|
||||
<p style="text-align: justify; line-height: 2;">O “Editor de Dataset” apoia na descrição de informação de acordo com o modelo selecionado.</p>
|
||||
<span style="background-color: #fbeeb8;"><br /><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture35.png" alt="" width="938" height="445" /></span></span></span><br /><br /></span>
|
||||
<span style="background-color: #fbeeb8;"><br /><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture35.png" alt="" width="938" height="445" /></span></span></span><br /><br /></span>
|
||||
<ul style="text-align: justify;">
|
||||
<li>
|
||||
<p><strong>Guardar Datasets - </strong>Existem várias formas de guardar Datasets no Argos. Todas têm a mesma finalidade, diferindo da ação de acompanhamento.</p>
|
||||
|
@ -2394,7 +2394,7 @@
|
|||
</li>
|
||||
<li>
|
||||
<p><strong>Concluir – </strong>Salva todas as alterações realizadas, encerrando a janela do editor e redirecionando para o “Início”.</p>
|
||||
<p><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture36.png" alt="" width="456" height="123" /></span></span></span></span></p>
|
||||
<p><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture36.png" alt="" width="456" height="123" /></span></span></span></span></p>
|
||||
</li>
|
||||
</ul>
|
||||
<br />
|
||||
|
@ -2402,26 +2402,26 @@
|
|||
<p style="text-align: justify; line-height: 2;">Regista os PGDs e Datasets no Argos, após a sua edição e conclusão.</p>
|
||||
<p style="text-align: justify; line-height: 2;">Os utilizadores podem visualizar os PGDs e Datasets que criaram. Ao abrir um registo que tenham criado, são-lhes fornecidas funcionalidades adicionais que estão ligadas à conclusão do processo de escrita dos PGDs.</p>
|
||||
<p style="text-align: justify; line-height: 2;">São aplicáveis funcionalidades diferentes consoante o estado do PGD, ou seja, antes ou depois da conclusão do PGD.</p>
|
||||
<p style="text-align: justify; line-height: 2;"><strong><br />Antes de concluir o PGD<br /><br /></strong><img style="color: #212529; font-family: var(--bs-font-sans-serif); font-size: 1rem;" src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture37.png" alt="" width="938" height="409" /></p>
|
||||
<p style="text-align: justify; line-height: 2;"><strong><br />Antes de concluir o PGD<br /><br /></strong><img style="color: #212529; font-family: var(--bs-font-sans-serif); font-size: 1rem;" src="https://devel.opendmp.eu/assets/images/guide/pt/Picture37.png" alt="" width="938" height="409" /></p>
|
||||
<p style="text-align: justify; line-height: 2;">Antes de concluir o PGD, este pode ainda ser editado, eliminado ou duplicado. Os utilizadores podem rever a informação que acrescentaram relativamente a grants, investigadores, descrição do PGD e Datasets e/ou modelos de dados utilizados.</p>
|
||||
<p style="text-align: justify; line-height: 2;">Podem ser adicionados novos Datasets em qualquer altura, a partir desta página.</p>
|
||||
<p style="text-align: justify; line-height: 2;">Os utilizadores podem exportar o PGD, começar a trabalhar numa nova versão e/ou convidar colegas a colaborar na conclusão do seu plano.</p>
|
||||
<p style="text-align: justify; line-height: 2;"><strong><br />Convidar </strong></p>
|
||||
<span style="background-color: #fbeeb8;"><br /></span><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture38.png" alt="" width="561" height="348" /></span></span></span><br /><br /><br />
|
||||
<p style="text-align: justify; line-height: 2;"><strong>Após concluir o PGD<br /><br /></strong><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture39.png" alt="" width="938" height="408" /></span></span></span><br /></span></p>
|
||||
<span style="background-color: #fbeeb8;"><br /></span><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture38.png" alt="" width="561" height="348" /></span></span></span><br /><br /><br />
|
||||
<p style="text-align: justify; line-height: 2;"><strong>Após concluir o PGD<br /><br /></strong><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture39.png" alt="" width="938" height="408" /></span></span></span><br /></span></p>
|
||||
<br />
|
||||
<p style="text-align: justify; line-height: 2;">Após a conclusão do PGD, este poderá ser tornado publicamente visível no Argos e depositado no Zenodo.</p>
|
||||
<p style="text-align: justify; line-height: 2;">Os utilizadores podem exportar o PGD finalizado, começar a trabalhar numa nova versão e/ou convidar colegas a colaborar na conclusão do plano.</p>
|
||||
<p style="text-align: justify; line-height: 2;">É possível reverter a conclusão do PGD.</p>
|
||||
<p style="line-height: 2;"> </p>
|
||||
<p style="line-height: 2;"><strong>Antes de concluir os Datasets</strong></p>
|
||||
<br /><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture40.png" alt="" width="938" height="291" /></span></span></span><br /><br /><br />
|
||||
<br /><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture40.png" alt="" width="938" height="291" /></span></span></span><br /><br /><br />
|
||||
<p style="line-height: 2;">Antes de concluir o Dataset, este pode ainda ser editado, eliminado ou duplicado.</p>
|
||||
<p style="line-height: 2;">Os utilizadores podem aceder a todo o PGD do qual o Dataset faz parte, a partir dessa página, e rever a informação que acrescentaram relativamente ao grant, investigadores e descrição do Dataset.</p>
|
||||
<p style="line-height: 2;">Os utilizadores podem exportar a descrição do Dataset e convidar os colegas a colaborar na sua conclusão.</p>
|
||||
<p style="line-height: 2;"> </p>
|
||||
<p style="line-height: 2;"><strong> </strong><strong>Após concluir os Datasets</strong></p>
|
||||
<br /><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opencdmp.eu/assets/images/guide/pt/Picture41.png" alt="" width="938" height="325" /></span></span></span><br /><br />
|
||||
<br /><span style="background-color: #fbeeb8;"><span style="background-color: #fbeeb8; font-size: 12pt; font-family: arial, helvetica, sans-serif;"><span style="background-color: #fbeeb8;"><img src="https://devel.opendmp.eu/assets/images/guide/pt/Picture41.png" alt="" width="938" height="325" /></span></span></span><br /><br />
|
||||
<p style="line-height: 2;"><br />Após a conclusão do Dataset, este poderá ser exportado e partilhado com colegas para revisão.<br /><br /><br /></p>
|
||||
<p style="line-height: 2;"> </p>
|
||||
</div>
|
||||
|
|
|
@ -20,17 +20,6 @@ server {
|
|||
|
||||
root /usr/share/nginx/html;
|
||||
|
||||
location = / {
|
||||
return 301 https://$host/splash/;
|
||||
}
|
||||
|
||||
location /splash/ {
|
||||
add_header Cache-Control "no-store, no-cache, must-revalidate";
|
||||
alias /usr/share/nginx/html/assets/splash/;
|
||||
|
||||
}
|
||||
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html =404;
|
||||
add_header Cache-Control "no-store, no-cache, must-revalidate";
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"Enabled": false,
|
||||
"Url": "localhost:5000/"
|
||||
},
|
||||
"defaultCulture": "en-US",
|
||||
"defaultCulture": "en",
|
||||
"defaultLanguage": "en",
|
||||
"defaultBlueprintId": "86635178-36a6-484f-9057-a934e4eeecd5",
|
||||
"keycloak": {
|
||||
|
@ -25,7 +25,18 @@
|
|||
"enabled": true
|
||||
},
|
||||
"annotation_service": {
|
||||
"enabled": true
|
||||
"enabled": true,
|
||||
"statusIcons": [
|
||||
{
|
||||
"internalStatus": "0",
|
||||
"icon": "check"
|
||||
},
|
||||
{
|
||||
"id": "948fdf9c-6b84-467c-884b-5323c5ea15d7",
|
||||
"icon": "done_all"
|
||||
}
|
||||
],
|
||||
"defaultStatusIcon": "animation"
|
||||
},
|
||||
"zenodoConfiguration": {
|
||||
"clientId": "dmp_plugins",
|
||||
|
@ -40,11 +51,22 @@
|
|||
"enabled": true,
|
||||
"url": "https://beta.analytics.openaire.eu/",
|
||||
"siteId": 361
|
||||
},
|
||||
"analytics": {
|
||||
"providers": [
|
||||
{
|
||||
"enabled": true,
|
||||
"type": "matomo",
|
||||
"options": {
|
||||
"url": "https://beta.analytics.openaire.eu/",
|
||||
"siteId": 361
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"lockInterval": 60000,
|
||||
"guideAssets": "assets/images/guide",
|
||||
"allowOrganizationCreator": true,
|
||||
"useSplash": false,
|
||||
"orcidPath": "https://orcid.org/",
|
||||
"maxFileSizeInMB": 10,
|
||||
"authProviders": {
|
||||
|
@ -69,5 +91,65 @@
|
|||
"researcherId": "5a2112e7-ea99-4cfe-98a1-68665e26726e",
|
||||
"grantId": "5b9c284f-f041-4995-96cc-fad7ad13289c",
|
||||
"organizationId": "7eeffb98-58fb-4921-82ec-e27f32f8e738"
|
||||
},
|
||||
"deposit":{
|
||||
"recordUrlIdPlaceholder": "{doi_id}"
|
||||
},
|
||||
"sidebar": {
|
||||
"infoItems": [
|
||||
{
|
||||
"title": "SIDE-BAR.CO-BRANDING",
|
||||
"icon": "toll",
|
||||
"externalUrl": "/splash/resources/co-branding.html",
|
||||
"accessLevel": "public"
|
||||
},
|
||||
{
|
||||
"title": "SIDE-BAR.SUPPORT",
|
||||
"icon": "help",
|
||||
"routerPath": "/contact-support",
|
||||
"accessLevel": "authenticated"
|
||||
},
|
||||
{
|
||||
"title": "SIDE-BAR.SUPPORT",
|
||||
"icon": "help",
|
||||
"externalUrl": "/splash/contact.html",
|
||||
"accessLevel": "unauthenticated"
|
||||
},
|
||||
{
|
||||
"title": "SIDE-BAR.FEEDBACK",
|
||||
"icon": "feedback",
|
||||
"externalUrl": "https://docs.google.com/forms/d/12RSCrUjdSDp2LZLpjDKOi44cN1fLDD2q1-F66SqZIis/viewform?edit_requested=true",
|
||||
"accessLevel": "public"
|
||||
}
|
||||
],
|
||||
"footerItems": [
|
||||
{
|
||||
"routerPath": "/about",
|
||||
"title": "FOOTER.ABOUT",
|
||||
"icon": "feedback",
|
||||
"accessLevel": "public"
|
||||
},
|
||||
{
|
||||
"routerPath": "/terms-and-conditions",
|
||||
"title": "FOOTER.TERMS-OF-SERVICE",
|
||||
"accessLevel": "public"
|
||||
},
|
||||
{
|
||||
"routerPath": "/glossary",
|
||||
"title": "FOOTER.GLOSSARY",
|
||||
"accessLevel": "public"
|
||||
},
|
||||
{
|
||||
"routerPath": "/user-guide",
|
||||
"title": "FOOTER.GUIDE",
|
||||
"accessLevel": "public"
|
||||
},
|
||||
{
|
||||
"routerPath": "/contact-support",
|
||||
"title": "FOOTER.CONTACT-SUPPORT",
|
||||
"accessLevel": "authenticated"
|
||||
}
|
||||
]
|
||||
},
|
||||
"mergeAccountDelayInSeconds": 30
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue