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:
Diamantis Tziotzios 2024-09-19 15:08:01 +03:00
commit c08cb4f89c
26 changed files with 22903 additions and 14012 deletions

View File

@ -1,28 +1,29 @@
###################### GENERAL ######################### #OpenCDMP
#version selections
PROXY_TAG=mainline-alpine PROXY_TAG=mainline-alpine
MAIN_APP_TAG=2.1.10 MAIN_APP_TAG=2.5.8
NOTIFICATION_APP_TAG=2.1.11 NOTIFICATION_APP_TAG=0.0.7
ANNOTATION_APP_TAG=2.1.10 ANNOTATION_APP_TAG=0.0.7
DOCX_APP_TAG=0.0.14 DOCX_APP_TAG=0.0.23
JSON_APP_TAG=0.0.9 JSON_APP_TAG=0.0.18
ZENODO_APP_TAG=2.0.10 ZENODO_APP_TAG=2.1.7
#Other Services
POSTGRES_TAG=16-alpine POSTGRES_TAG=16-alpine
ELK_TAG=8.13.0 ELK_TAG=8.13.0
KEYCLOAK_TAG=24.0.2 KEYCLOAK_TAG=24.0.2
RABBITMQ_TAG=3.13-management RABBITMQ_TAG=3.15-management
PDF_SERVICE_TAG=8.4.0 PDF_SERVICE_TAG=8.9.2
#Application configuration #Docker configuration
DOCKER_REGISTRY=crepo.cite.gr/ DOCKER_REGISTRY=crepo.cite.gr/
PROFILE=test PROFILE=test
#port speficiations #Port settings
SERVER_PORT=8080 SERVER_PORT=8080
PROXY_APP_PORT=8081 PROXY_APP_PORT=8081
POSTGRES_PORT=5432 POSTGRES_PORT=5432
#storage paths #Storage paths
CONFIG_FILES_PATH=./config-files/ CONFIG_FILES_PATH=./config-files/
LOG_FILES_PATH=./logs/ LOG_FILES_PATH=./logs/
STORAGE_PATH=./storage/ STORAGE_PATH=./storage/

View File

@ -249,6 +249,15 @@ services:
networks: networks:
- opencdmp-gotenberg-shared-network - opencdmp-gotenberg-shared-network
################################# DOCS #################################
opendmp.docs:
cpus: "0.3"
mem_limit: 256M
restart: unless-stopped
expose:
- "3000"
networks: networks:
opencdmp-proxy-network: opencdmp-proxy-network:
name: opencdmp-proxy-network name: opencdmp-proxy-network

View File

@ -1,5 +1,4 @@
services: services:
############################## PROXY ######################################## ############################## PROXY ########################################
opencdmp.proxy: opencdmp.proxy:
container_name: opencdmp.proxy container_name: opencdmp.proxy
@ -74,7 +73,7 @@ services:
opencdmp.backend: opencdmp.backend:
condition: service_started condition: service_started
############################## POSTGRES 16 ############################################ ############################## POSTGRES ############################################
opencdmp.postgres: opencdmp.postgres:
container_name: opencdmp.postgres container_name: opencdmp.postgres
image: postgres:${POSTGRES_TAG} image: postgres:${POSTGRES_TAG}
@ -97,7 +96,7 @@ services:
container_name: opencdmp.rabbitmq container_name: opencdmp.rabbitmq
image: rabbitmq:${RABBITMQ_TAG} image: rabbitmq:${RABBITMQ_TAG}
############################## GOTENBERG ############################################## ############################## PDF SERVICE ##############################################
opencdmp.pdf-service: opencdmp.pdf-service:
image: gotenberg/gotenberg:${PDF_SERVICE_TAG} image: gotenberg/gotenberg:${PDF_SERVICE_TAG}
container_name: opencdmp.pdf-service container_name: opencdmp.pdf-service

View File

@ -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]]"

View File

@ -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

View File

@ -2,6 +2,7 @@ tenant:
multitenancy: multitenancy:
is-multitenant: true is-multitenant: true
default-tenant-code: default default-tenant-code: default
support-expansion-tenant: true
interceptor: interceptor:
client-claims-prefix: client_ client-claims-prefix: client_
enforce-trusted-tenant: false enforce-trusted-tenant: false

View File

@ -1,14 +1,21 @@
notification: notification:
dmpInvitationExternalUserType: 065DEECD-21BB-44AF-9983-E660FDF24BC4 planInvitationExternalUserType: 065DEECD-21BB-44AF-9983-E660FDF24BC4
dmpInvitationExistingUserType: 4904dea2-5079-46d3-83be-3a19c9ab45dc planInvitationExistingUserType: 4904dea2-5079-46d3-83be-3a19c9ab45dc
dmpModifiedType: 4542262A-22F8-4BAA-9DB6-1C8E70AC1DBB planModifiedType: 4542262A-22F8-4BAA-9DB6-1C8E70AC1DBB
dmpFinalisedType: 90DB0B46-42DE-BD89-AEBF-6F27EFEB256E 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 descriptionModifiedType: 4FDBFA80-7A71-4A69-B854-67CBB70648F1
descriptionFinalisedType: 33790bad-94d4-488a-8ee2-7f6295ca18ea descriptionFinalisedType: 33790bad-94d4-488a-8ee2-7f6295ca18ea
descriptionAnnotationCreatedType: db1e99d2-a240-4e75-9bb2-ef25b234c1f0
descriptionAnnotationStatusChangedType: 3189e3a6-91e6-40c6-8ff8-275a68445aec
mergeAccountConfirmationType: BFE68845-CB05-4C5A-A03D-29161A7C9660 mergeAccountConfirmationType: BFE68845-CB05-4C5A-A03D-29161A7C9660
removeCredentialConfirmationType: C9BC3F16-057E-4BBA-8A5F-36BD835E5604 removeCredentialConfirmationType: C9BC3F16-057E-4BBA-8A5F-36BD835E5604
dmpDepositType: 55736F7A-83AB-4190-AF43-9D031A6F9612 dmpDepositType: 55736F7A-83AB-4190-AF43-9D031A6F9612
descriptionTemplateInvitationType: 223BB607-EFA1-4CE7-99EC-4BEABFEF9A8B descriptionTemplateInvitationType: 223BB607-EFA1-4CE7-99EC-4BEABFEF9A8B
contactSupportType: 5B1D6C52-88F9-418B-9B8A-6F1F963D9EAD contactSupportType: 5B1D6C52-88F9-418B-9B8A-6F1F963D9EAD
publicContactSupportType: B542B606-ACC6-4629-ADEF-4D8EE2F01222 publicContactSupportType: B542B606-ACC6-4629-ADEF-4D8EE2F01222
tenantSpecificInvitationExternalUserType: 497dada5-eccc-4bc0-9e0b-63e22b4eb0be
tenantSpecificInvitationExistingUserType: b3809c17-d1e4-420a-919c-828564114191
contactSupportEmail: support@dmp.com contactSupportEmail: support@dmp.com

View File

@ -1,15 +1,5 @@
storage: storage:
service: 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: static-files:
semantics: /Semantics.json semantics: /Semantics.json
material-files: material-files:
@ -19,3 +9,4 @@ storage:
glossary: /material/glossary/ glossary: /material/glossary/
faq: /material/faq/ faq: /material/faq/
language: /i18n/ language: /i18n/
cookiePolicy: /cookie-policy/

View File

@ -4,6 +4,7 @@ tenant:
multitenancy: multitenancy:
is-multitenant: true is-multitenant: true
default-tenant-code: default default-tenant-code: default
support-expansion-tenant: true
interceptor: interceptor:
client-claims-prefix: client_ client-claims-prefix: client_
enforce-trusted-tenant: false 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

View File

@ -84,7 +84,7 @@
familiarize users with basic RDM concepts and guide them throughout the process of 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 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 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 target="_blank">open source software</a> and is available through the <a
href="http://catalogue.openaire.eu/" target="_blank">OpenAIRE href="http://catalogue.openaire.eu/" target="_blank">OpenAIRE
Service catalogue</a> and the <a Service catalogue</a> and the <a
@ -660,7 +660,7 @@
Is Argos open source? Is Argos open source?
</h4> </h4>
<p> <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 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" <a href="https://code-repo.d4science.org/MaDgiK-CITE/argos/src/branch/master"
target="_blank">here</a>. target="_blank">here</a>.

View File

@ -84,10 +84,10 @@
</div> </div>
<div class="row"> <div class="row">
<div class="col-md-12"> <div class="col-md-12">
<p><span>The </span><span>OpenCDMP</span><span>&nbsp;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">&nbsp;and EUDAT CDI and is offered both as a software &ldquo;OpenCDMP &#39;&#39; and as an online service under the name &ldquo;ARGOS&rdquo;. </span></p> <p><span>The </span><span>OpenDMP</span><span>&nbsp;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">&nbsp;and EUDAT CDI and is offered both as a software &ldquo;OpenDMP &#39;&#39; and as an online service under the name &ldquo;ARGOS&rdquo;. </span></p>
<p><span></span></p> <p><span></span></p>
<ol> <ol>
<li><span><a href="https://code-repo.d4science.org/MaDgiK-CITE/argos">OpenCDMP software</a></span><span>&nbsp;is offered under the Free Open Source Software license &nbsp;</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>&nbsp;is offered under the Free Open Source Software license &nbsp;</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>&nbsp;service</span><span>&nbsp;is offered by</span><span>&nbsp;</span><span>OpenAIRE</span><span>&nbsp;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">&nbsp;Use of ARGOS denotes agreement with the following terms:</span> <li><span><a href="https://argos.openaire.eu/">ARGOS</a></span><span>&nbsp;service</span><span>&nbsp;is offered by</span><span>&nbsp;</span><span>OpenAIRE</span><span>&nbsp;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">&nbsp;Use of ARGOS denotes agreement with the following terms:</span>
<ol> <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 (&ldquo;published&rdquo;). If assigned a DOI, the DMP records are linked to and preserved in Zenodo, the OpenAIRE&rsquo;s repository service. The ARGOS service is made available for use free-of-charge for research, educational and informational purposes.</span></li> <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 (&ldquo;published&rdquo;). If assigned a DOI, the DMP records are linked to and preserved in Zenodo, the OpenAIRE&rsquo;s repository service. The ARGOS service is made available for use free-of-charge for research, educational and informational purposes.</span></li>

View File

@ -1946,7 +1946,7 @@
margin-left: -20px; margin-left: -20px;
} }
</style> </style>
<base href="https://devel.opencdmp.eu/"> <base href="https://devel.opendmp.eu/">
</head> </head>
<body data-spy="scroll" data-target="#toc"> <body data-spy="scroll" data-target="#toc">
@ -1965,15 +1965,15 @@
<p><strong>Modelo de Dados</strong> &ndash; &eacute; composto por um conjunto de quest&otilde;es que descrevem o que os Datasets cont&ecirc;m e como s&atilde;o tratados. Estes modelos est&atilde;o ligados a PGDs, de modo a que os utilizadores tenham acesso a formatos espec&iacute;ficos consoante a institui&ccedil;&atilde;o a que reportam. Os modelos s&oacute; 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> <p><strong>Modelo de Dados</strong> &ndash; &eacute; composto por um conjunto de quest&otilde;es que descrevem o que os Datasets cont&ecirc;m e como s&atilde;o tratados. Estes modelos est&atilde;o ligados a PGDs, de modo a que os utilizadores tenham acesso a formatos espec&iacute;ficos consoante a institui&ccedil;&atilde;o a que reportam. Os modelos s&oacute; 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>
<li> <li>
<p style="line-height: 2;"><strong>Importa</strong><strong>r ficheiro </strong>- Suporta a fun&ccedil;&atilde;o de importar ficheiros em formato .json, que s&atilde;o produzidos de acordo com as especifica&ccedil;&otilde;es da Research Data Alliance (RDA) para PGDs acion&aacute;veis por m&aacute;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&ccedil;&atilde;o de importar ficheiros em formato .json, que s&atilde;o produzidos de acordo com as especifica&ccedil;&otilde;es da Research Data Alliance (RDA) para PGDs acion&aacute;veis por m&aacute;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> </li>
</ul> </ul>
<br /> <br />
<p style="padding-left: 40px; text-align: justify; line-height: 2;">O bot&atilde;o <strong>&ldquo;Criar novo PGD&rdquo; </strong>permite de forma simples iniciar o seu plano. Esta op&ccedil;&atilde;o<strong> </strong>fornece um editor que percorre os elementos essenciais de um PGD, guiando o processo de cria&ccedil;&atilde;o do documento passo a passo.<br /><br /><em>A partir do "In&iacute;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&atilde;o <strong>&ldquo;Criar novo PGD&rdquo; </strong>permite de forma simples iniciar o seu plano. Esta op&ccedil;&atilde;o<strong> </strong>fornece um editor que percorre os elementos essenciais de um PGD, guiando o processo de cria&ccedil;&atilde;o do documento passo a passo.<br /><br /><em>A partir do "In&iacute;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 /> <br />
<p style="padding-left: 40px; text-align: justify;"><em>A partir de &ldquo;Adicione um Dataset&rdquo;<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> &eacute; uma forma simples de adicionar novos modelos de dados a PGDs pr&eacute;-existentes.<br /><br /><em>A partir do &ldquo;In&iacute;cio&rdquo;<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 &ldquo;Adicione um Dataset&rdquo;<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> &eacute; uma forma simples de adicionar novos modelos de dados a PGDs pr&eacute;-existentes.<br /><br /><em>A partir do &ldquo;In&iacute;cio&rdquo;<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 &ldquo;Os meus Datasets&rdquo;<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 &ldquo;Os meus PGDs&rdquo;<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 de &ldquo;Os meus Datasets&rdquo;<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 &ldquo;Os meus PGDs&rdquo;<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 &ldquo;Editor de Dataset&rdquo;<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 do &ldquo;Editor de Dataset&rdquo;<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 &nbsp;Outros termos</h2> <h2 id="mcetoc_1fbs4o53q132" style="text-align: justify;">1.2 &nbsp;Outros termos</h2>
<ul style="text-align: justify;"> <ul style="text-align: justify;">
<li> <li>
@ -1996,7 +1996,7 @@
<h1 id="mcetoc_1fbs4o53q133" style="text-align: justify;">2. Navega&ccedil;&atilde;o</h1> <h1 id="mcetoc_1fbs4o53q133" style="text-align: justify;">2. Navega&ccedil;&atilde;o</h1>
<h2 id="mcetoc_1fbs4o53q134" style="text-align: justify;">2.1 P&aacute;gina Inicial</h2> <h2 id="mcetoc_1fbs4o53q134" style="text-align: justify;">2.1 P&aacute;gina Inicial</h2>
<p style="text-align: justify; line-height: 2;">A p&aacute;gina inicial poder&aacute; ser encontrada em <a href="https://argos.openaire.eu/splash/">https://argos.openaire.eu/splash/</a>, tamb&eacute;m acess&iacute;vel atrav&eacute;s do<a href="http://catalogue.openaire.eu/search;quantity=10"> </a><a href="http://catalogue.openaire.eu/">Cat&aacute;logo de Servi&ccedil;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; line-height: 2;">A p&aacute;gina inicial poder&aacute; ser encontrada em <a href="https://argos.openaire.eu/splash/">https://argos.openaire.eu/splash/</a>, tamb&eacute;m acess&iacute;vel atrav&eacute;s do<a href="http://catalogue.openaire.eu/search;quantity=10"> </a><a href="http://catalogue.openaire.eu/">Cat&aacute;logo de Servi&ccedil;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;"> <ul style="text-align: justify;">
<li> <li>
<p style="line-height: 2;"><strong>Sobre &ndash; </strong>Informa sobre o &acirc;mbito e principais fun&ccedil;&otilde;es da ferramenta (como funciona, Roadmap, FAQs, quais os contribuidores).</p> <p style="line-height: 2;"><strong>Sobre &ndash; </strong>Informa sobre o &acirc;mbito e principais fun&ccedil;&otilde;es da ferramenta (como funciona, Roadmap, FAQs, quais os contribuidores).</p>
@ -2013,13 +2013,13 @@
</ul> </ul>
<h2 id="mcetoc_1fbs4o53q135" style="text-align: justify;">2.2 &nbsp;&nbsp;&nbsp;Login</h2> <h2 id="mcetoc_1fbs4o53q135" style="text-align: justify;">2.2 &nbsp;&nbsp;&nbsp;Login</h2>
<p style="text-align: justify;"><br />Est&atilde;o dispon&iacute;veis diferentes op&ccedil;&otilde;es de login, desde meios de comunica&ccedil;&atilde;o social a canais de investiga&ccedil;&atilde;o e comunica&ccedil;&atilde;o acad&eacute;mica.</p> <p style="text-align: justify;"><br />Est&atilde;o dispon&iacute;veis diferentes op&ccedil;&otilde;es de login, desde meios de comunica&ccedil;&atilde;o social a canais de investiga&ccedil;&atilde;o e comunica&ccedil;&atilde;o acad&eacute;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&ccedil;&atilde;o! N&atilde;o &eacute; necess&aacute;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&ccedil;&atilde;o! N&atilde;o &eacute; necess&aacute;ria uma conta de utilizador.<br /><br /></em></p>
<h2 id="mcetoc_1fbs4o53q136" style="text-align: justify;">2.3&nbsp;&nbsp; Menu do Utilizador</h2> <h2 id="mcetoc_1fbs4o53q136" style="text-align: justify;">2.3&nbsp;&nbsp; Menu do Utilizador</h2>
<p style="text-align: justify;">Espa&ccedil;o dedicado e que poder&aacute; ser customizado de acordo com o perfil pessoal do utilizador.<br /><br /></p> <p style="text-align: justify;">Espa&ccedil;o dedicado e que poder&aacute; ser customizado de acordo com o perfil pessoal do utilizador.<br /><br /></p>
<table style="height: 263px; width: 845px;" width="634"> <table style="height: 263px; width: 845px;" width="634">
<tbody> <tbody>
<tr> <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;"> <td style="width: 518px;">
<p style="text-align: justify; line-height: 2;"><strong>Defini&ccedil;&otilde;es do Meu Perfil</strong> -&nbsp; Exibe a p&aacute;gina de perfil que cont&eacute;m detalhes&nbsp; tais como: nome, e-mail, dados da conta Zenodo, etc.</p> <p style="text-align: justify; line-height: 2;"><strong>Defini&ccedil;&otilde;es do Meu Perfil</strong> -&nbsp; Exibe a p&aacute;gina de perfil que cont&eacute;m detalhes&nbsp; tais como: nome, e-mail, dados da conta Zenodo, etc.</p>
<p style="text-align: justify; line-height: 2;"><strong>PGDs associados</strong> - Cole&ccedil;&atilde;o dos PGDs do utilizador.</p> <p style="text-align: justify; line-height: 2;"><strong>PGDs associados</strong> - Cole&ccedil;&atilde;o dos PGDs do utilizador.</p>
@ -2046,12 +2046,12 @@
</td> </td>
</tr> </tr>
<tr style="height: 289px;"> <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;"> <td style="width: 74px; height: 289px;">
<p><span style="font-size: 12pt; font-family: arial, helvetica, sans-serif;"><strong>&nbsp;</strong></span></p> <p><span style="font-size: 12pt; font-family: arial, helvetica, sans-serif;"><strong>&nbsp;</strong></span></p>
</td> </td>
<td style="width: 379px; height: 289px;" width="301"> <td style="width: 379px; height: 289px;" width="301">
<p><span style="font-size: 12pt; font-family: arial, helvetica, sans-serif;"><strong>&nbsp;</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>&nbsp;</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> </td>
</tr> </tr>
<tr style="height: 77px;"> <tr style="height: 77px;">
@ -2132,11 +2132,11 @@
<h2 id="mcetoc_1fbs4o53q138" style="text-align: justify;">2.5&nbsp;&nbsp; In&iacute;cio</h2> <h2 id="mcetoc_1fbs4o53q138" style="text-align: justify;">2.5&nbsp;&nbsp; In&iacute;cio</h2>
<p style="text-align: justify;">O &ldquo;In&iacute;cio&rdquo; &eacute; a informa&ccedil;&atilde;o que aparece depois de entrar no Argos a partir da p&aacute;gina inicial.</p> <p style="text-align: justify;">O &ldquo;In&iacute;cio&rdquo; &eacute; a informa&ccedil;&atilde;o que aparece depois de entrar no Argos a partir da p&aacute;gina inicial.</p>
<p style="text-align: justify;">Inclui informa&ccedil;&atilde;o condensada baseada na fun&ccedil;&atilde;o Argos e na sua utiliza&ccedil;&atilde;o.</p> <p style="text-align: justify;">Inclui informa&ccedil;&atilde;o condensada baseada na fun&ccedil;&atilde;o Argos e na sua utiliza&ccedil;&atilde;o.</p>
<p style="text-align: justify;"><strong><br />In&iacute;cio &ndash; </strong><strong>Antes de iniciar a sess&atilde;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&iacute;cio &ndash; </strong><strong>Antes de iniciar a sess&atilde;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"> <table style="width: 941px;" width="600">
<tbody> <tbody>
<tr> <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"> <td style="width: 503px;" width="196">
<p style="line-height: 2;"><strong><br />&Uacute;ltima Atividade</strong> - Exibe os PGDs e Datasets publicamente dispon&iacute;veis, de acordo com a data da sua publica&ccedil;&atilde;o no Argos e a sua etiqueta (PGDs ou Datasets).</p> <p style="line-height: 2;"><strong><br />&Uacute;ltima Atividade</strong> - Exibe os PGDs e Datasets publicamente dispon&iacute;veis, de acordo com a data da sua publica&ccedil;&atilde;o no Argos e a sua etiqueta (PGDs ou Datasets).</p>
</td> </td>
@ -2147,7 +2147,7 @@
<table style="width: 943px;" width="600"> <table style="width: 943px;" width="600">
<tbody> <tbody>
<tr> <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"> <td style="width: 698.5px;" width="476">
<p style="line-height: 2; text-align: justify;"><strong><br />Uso P&uacute;blico</strong> - Mostra o n&uacute;mero de PGDs, Datasets, Grants e Organiza&ccedil;&otilde;es publicamente dispon&iacute;veis e inclu&iacute;das no Argos.</p> <p style="line-height: 2; text-align: justify;"><strong><br />Uso P&uacute;blico</strong> - Mostra o n&uacute;mero de PGDs, Datasets, Grants e Organiza&ccedil;&otilde;es publicamente dispon&iacute;veis e inclu&iacute;das no Argos.</p>
<p style="line-height: 2; text-align: justify;">&nbsp;</p> <p style="line-height: 2; text-align: justify;">&nbsp;</p>
@ -2157,11 +2157,11 @@
</tbody> </tbody>
</table> </table>
<p style="text-align: justify;">&nbsp;</p> <p style="text-align: justify;">&nbsp;</p>
<p style="text-align: justify;"><strong>In&iacute;cio - Ap&oacute;s Iniciar a Sess&atilde;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&iacute;cio - Ap&oacute;s Iniciar a Sess&atilde;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"> <table style="width: 942px;" width="600">
<tbody> <tbody>
<tr> <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"> <td style="width: 480px;" width="128">
<p style="text-align: justify; line-height: 2;"><strong><br />&Uacute;ltima Atividade </strong>- Exibe os PGDs e Datasets do utilizador, de acordo com a data da sua &uacute;ltima modifica&ccedil;&atilde;o, estado&nbsp; do documento (rascunho, finalizado, publicado) e a sua etiqueta (PGDs ou Datasets).</p> <p style="text-align: justify; line-height: 2;"><strong><br />&Uacute;ltima Atividade </strong>- Exibe os PGDs e Datasets do utilizador, de acordo com a data da sua &uacute;ltima modifica&ccedil;&atilde;o, estado&nbsp; do documento (rascunho, finalizado, publicado) e a sua etiqueta (PGDs ou Datasets).</p>
</td> </td>
@ -2172,7 +2172,7 @@
<table style="width: 944px;" width="600"> <table style="width: 944px;" width="600">
<tbody> <tbody>
<tr> <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"> <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&ccedil;&otilde;es.</p> <p style="line-height: 2;"><strong><br />Uso Pessoal </strong>- Mostra a atividade do utilizador nos PGDs, Datasets, Grants e Organiza&ccedil;&otilde;es.</p>
</td> </td>
@ -2184,7 +2184,7 @@
<br /> <br />
<p style="text-align: justify; line-height: 2;">Cont&eacute;m todos os PGDs e Datasets de que o utilizador &eacute; propriet&aacute;rio ou colaborador. Tanto os PGDs, como os Datasets, s&atilde;o classificados pela data da sua &uacute;ltima modifica&ccedil;&atilde;o, o estado do documento (rascunho, finalizado, publicado) e a sua etiqueta (PGDs ou Datasets).<br /><br /></p> <p style="text-align: justify; line-height: 2;">Cont&eacute;m todos os PGDs e Datasets de que o utilizador &eacute; propriet&aacute;rio ou colaborador. Tanto os PGDs, como os Datasets, s&atilde;o classificados pela data da sua &uacute;ltima modifica&ccedil;&atilde;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> <h4 style="text-align: justify;"><strong>Os Meus PGDs<br /><br /></strong></h4>
<p style="text-align: justify; line-height: 2;">Quando a etiqueta &eacute; <span style="color: #2dc26b;"><strong>verde</strong></span> trata-se de um PGD, mostrando o papel da pessoa que v&ecirc; o PGD, o estado do processo de escrita, a vers&atilde;o atual do PGD, o grant associado ao PGD, o n&uacute;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 &eacute; <span style="color: #2dc26b;"><strong>verde</strong></span> trata-se de um PGD, mostrando o papel da pessoa que v&ecirc; o PGD, o estado do processo de escrita, a vers&atilde;o atual do PGD, o grant associado ao PGD, o n&uacute;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;"> <ul style="text-align: justify;">
<li> <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&iacute;veis com a RDA).</p> <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&iacute;veis com a RDA).</p>
@ -2206,7 +2206,7 @@
<table style="width: 938px;" width="600"> <table style="width: 938px;" width="600">
<tbody> <tbody>
<tr> <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"> <td style="width: 472px;" width="328">
<p style="line-height: 2;"><strong><br />Nova Vers&atilde;o</strong> - Inicia uma nova vers&atilde;o do PGD.</p> <p style="line-height: 2;"><strong><br />Nova Vers&atilde;o</strong> - Inicia uma nova vers&atilde;o do PGD.</p>
<p style="line-height: 2;"><strong>Ver todas as Vers&otilde;es do PGD</strong>&nbsp; - Mostra o hist&oacute;rico das diferentes vers&otilde;es do PGD.</p> <p style="line-height: 2;"><strong>Ver todas as Vers&otilde;es do PGD</strong>&nbsp; - Mostra o hist&oacute;rico das diferentes vers&otilde;es do PGD.</p>
@ -2217,7 +2217,7 @@
</table> </table>
<br /> <br />
<h4 style="text-align: justify;"><strong>Os Meus Datasets<br /><br /></strong></h4> <h4 style="text-align: justify;"><strong>Os Meus Datasets<br /><br /></strong></h4>
<p style="text-align: justify; line-height: 2;">Quando a etiqueta &eacute; <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&iacute;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 &eacute; <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&iacute;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;"> <ul style="text-align: justify;">
<li> <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&iacute;veis com a RDA).</p> <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&iacute;veis com a RDA).</p>
@ -2238,7 +2238,7 @@
<p style="text-align: justify; line-height: 2;">Tanto os PGDs como os Datasets s&atilde;o organizados e apresentados pela data da sua &uacute;ltima modifica&ccedil;&atilde;o e pela sua etiqueta (PGDs ou Datasets). Os utilizadores tamb&eacute;m podem procurar o PGD ou Dataset a partir da barra de pesquisa.<br /><br /></p> <p style="text-align: justify; line-height: 2;">Tanto os PGDs como os Datasets s&atilde;o organizados e apresentados pela data da sua &uacute;ltima modifica&ccedil;&atilde;o e pela sua etiqueta (PGDs ou Datasets). Os utilizadores tamb&eacute;m podem procurar o PGD ou Dataset a partir da barra de pesquisa.<br /><br /></p>
<h4 style="text-align: justify;"><strong>PGDs P&uacute;blicos<br /><br /></strong></h4> <h4 style="text-align: justify;"><strong>PGDs P&uacute;blicos<br /><br /></strong></h4>
<p style="text-align: justify; line-height: 2;">Quando a etiqueta &eacute; <span style="color: #2dc26b;"><strong>verde</strong></span> trata-se de um PGD e exibe o t&iacute;tulo do PGD, o seu estado, a sua vers&atilde;o, o grant associado, o n&uacute;mero e o nome dos Datasets que o PGD cont&eacute;m.</p> <p style="text-align: justify; line-height: 2;">Quando a etiqueta &eacute; <span style="color: #2dc26b;"><strong>verde</strong></span> trata-se de um PGD e exibe o t&iacute;tulo do PGD, o seu estado, a sua vers&atilde;o, o grant associado, o n&uacute;mero e o nome dos Datasets que o PGD cont&eacute;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;"> <ul style="text-align: justify;">
<li> <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&iacute;veis com a RDA).</p> <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&iacute;veis com a RDA).</p>
@ -2250,7 +2250,7 @@
</li> </li>
</ul> </ul>
<h4 style="text-align: justify;"><strong>Datasets P&uacute;blicos<br /><br /></strong></h4> <h4 style="text-align: justify;"><strong>Datasets P&uacute;blicos<br /><br /></strong></h4>
<p style="text-align: justify; line-height: 2;">Quando a etiqueta &eacute; <span style="color: #f9ec0c;"><strong>amarelo</strong></span> trata-se de um Dataset P&uacute;blico e mostra o t&iacute;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&iacute;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 &eacute; <span style="color: #f9ec0c;"><strong>amarelo</strong></span> trata-se de um Dataset P&uacute;blico e mostra o t&iacute;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&iacute;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;"> <ul style="text-align: justify;">
<li> <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&iacute;veis com a RDA).</p> <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&iacute;veis com a RDA).</p>
@ -2259,7 +2259,7 @@
<table style="height: 147px; width: 934px;" width="602"> <table style="height: 147px; width: 934px;" width="602">
<tbody> <tbody>
<tr> <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;"> <td style="width: 328.75px;">
<p><strong>Copiar o Dataset </strong>- Cria uma c&oacute;pia do Dataset.</p> <p><strong>Copiar o Dataset </strong>- Cria uma c&oacute;pia do Dataset.</p>
</td> </td>
@ -2269,14 +2269,14 @@
<p style="text-align: justify;">&nbsp;</p> <p style="text-align: justify;">&nbsp;</p>
<h2 id="mcetoc_1fbs4o53q13b" style="text-align: justify;">2.8&nbsp;&nbsp; Criar novo PGD</h2> <h2 id="mcetoc_1fbs4o53q13b" style="text-align: justify;">2.8&nbsp;&nbsp; Criar novo PGD</h2>
<p style="text-align: justify;"><br />Existem v&aacute;rias formas de criar um novo PGD no Argos.</p> <p style="text-align: justify;"><br />Existem v&aacute;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&ccedil;&atilde;o de um PGD:</p> <p style="padding-left: 40px; text-align: justify; line-height: 2;">Existem 4 etapas envolvidas na cria&ccedil;&atilde;o de um PGD:</p>
<p style="text-align: justify; line-height: 2; padding-left: 80px;">- Informa&ccedil;&atilde;o Geral<strong>;</strong></p> <p style="text-align: justify; line-height: 2; padding-left: 80px;">- Informa&ccedil;&atilde;o Geral<strong>;</strong></p>
<p style="padding-left: 80px; text-align: justify; line-height: 2;">- Informa&ccedil;&atilde;o sobre o Financiamento;</p> <p style="padding-left: 80px; text-align: justify; line-height: 2;">- Informa&ccedil;&atilde;o sobre o Financiamento;</p>
<p style="padding-left: 80px; text-align: justify; line-height: 2;">- Informa&ccedil;&atilde;o sobre a Licen&ccedil;a;</p> <p style="padding-left: 80px; text-align: justify; line-height: 2;">- Informa&ccedil;&atilde;o sobre a Licen&ccedil;a;</p>
<p style="padding-left: 80px; text-align: justify; line-height: 2;">- Informa&ccedil;&atilde;o sobre os Datasets.<br /><br /></p> <p style="padding-left: 80px; text-align: justify; line-height: 2;">- Informa&ccedil;&atilde;o sobre os Datasets.<br /><br /></p>
<h4 style="text-align: justify;"><strong>Informa&ccedil;&atilde;o Geral</strong></h4> <h4 style="text-align: justify;"><strong>Informa&ccedil;&atilde;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;"> <ul style="text-align: justify;">
<li> <li>
<p style="line-height: 2;"><strong>T&iacute;tulo do PGD </strong>- T&iacute;tulo do documento.</p> <p style="line-height: 2;"><strong>T&iacute;tulo do PGD </strong>- T&iacute;tulo do documento.</p>
@ -2301,7 +2301,7 @@
</li> </li>
</ul> </ul>
<h4 style="text-align: justify;"><strong>Informa&ccedil;&atilde;o sobre o Financiamento<br /><br /></strong></h4> <h4 style="text-align: justify;"><strong>Informa&ccedil;&atilde;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;"> <ul style="text-align: justify;">
<li> <li>
<p style="line-height: 2;"><strong>Organiza&ccedil;&otilde;es de Financiamento</strong> - Integra uma lista onde os utilizadores podem selecionar a organiza&ccedil;&atilde;o atrav&eacute;s da qual a investiga&ccedil;&atilde;o &eacute; financiada. Caso o nome de uma organiza&ccedil;&atilde;o financiadora n&atilde;o possa ser encontrado no Argos, os utilizadores podem criar um novo registo com o nome e detalhes da organiza&ccedil;&atilde;o financiadora ("Inserir manualmente").</p> <p style="line-height: 2;"><strong>Organiza&ccedil;&otilde;es de Financiamento</strong> - Integra uma lista onde os utilizadores podem selecionar a organiza&ccedil;&atilde;o atrav&eacute;s da qual a investiga&ccedil;&atilde;o &eacute; financiada. Caso o nome de uma organiza&ccedil;&atilde;o financiadora n&atilde;o possa ser encontrado no Argos, os utilizadores podem criar um novo registo com o nome e detalhes da organiza&ccedil;&atilde;o financiadora ("Inserir manualmente").</p>
@ -2314,7 +2314,7 @@
</li> </li>
</ul> </ul>
<h4 style="text-align: justify;"><strong>Informa&ccedil;&atilde;o sobre a Licen&ccedil;a</strong></h4> <h4 style="text-align: justify;"><strong>Informa&ccedil;&atilde;o sobre a Licen&ccedil;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;"> <ul style="text-align: justify;">
<li> <li>
<p><strong>Licen&ccedil;a</strong> - Inclui uma lista de licen&ccedil;as a escolher e a atribuir aos PGDs.</p> <p><strong>Licen&ccedil;a</strong> - Inclui uma lista de licen&ccedil;as a escolher e a atribuir aos PGDs.</p>
@ -2322,7 +2322,7 @@
</ul> </ul>
<strong><strong><span style="font-family: arial, helvetica, sans-serif; font-size: 18pt; background-color: #ffffff; color: #7e8c8d;"><br /></span></strong></strong> <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&ccedil;&atilde;o sobre os Datasets</strong></h4> <h4 style="text-align: justify;"><strong>Informa&ccedil;&atilde;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;"> <ul style="text-align: justify;">
<li> <li>
<p style="line-height: 2;"><strong>Informa&ccedil;&atilde;o sobre os Datasets </strong>&ndash; Permite selecionar o modelo para descrever os seus datasets. Poder&aacute; selecionar mais do que um modelo de dados.</p> <p style="line-height: 2;"><strong>Informa&ccedil;&atilde;o sobre os Datasets </strong>&ndash; Permite selecionar o modelo para descrever os seus datasets. Poder&aacute; 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="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&atilde;o ligados e associados a pelo menos um PGD. Um Dataset n&atilde;o pode existir como registo &uacute;nico.</p> <p style="text-align: justify; line-height: 2;"><br />No Argos, os Datasets est&atilde;o ligados e associados a pelo menos um PGD. Um Dataset n&atilde;o pode existir como registo &uacute;nico.</p>
<p style="text-align: justify; line-height: 2;"><strong>Primeiro </strong><strong>Dataset</strong></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&aacute; preencher a descri&ccedil;&atilde;o dos seus dados no &ldquo;Editor de Dataset&rdquo;.</p> <p style="text-align: justify; line-height: 2;">Uma vez criado o PGD, o utilizador poder&aacute; preencher a descri&ccedil;&atilde;o dos seus dados no &ldquo;Editor de Dataset&rdquo;.</p>
<p style="text-align: justify; line-height: 2;"><strong>&nbsp;<br /></strong></p> <p style="text-align: justify; line-height: 2;"><strong>&nbsp;<br /></strong></p>
<ul style="text-align: justify;"> <ul style="text-align: justify;">
@ -2368,18 +2368,18 @@
</ul> </ul>
<br /> <br />
<h4 style="text-align: justify;"><strong>Selecione um PGD para o seu Dataset</strong></h4> <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&aacute; existente na lista.</p> <p style="text-align: justify; line-height: 2;">Selecione um PGD j&aacute; existente na lista.</p>
<br /> <br />
<h4 style="text-align: justify;"><strong>Selecione um Modelo</strong></h4> <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> <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> <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&ccedil;&atilde;o que financia o seu grant.</p> <p style="text-align: justify; line-height: 2;">Selecionar o modelo de dados para descrever o seu Dataset, de acordo com a organiza&ccedil;&atilde;o que financia o seu grant.</p>
<h4 style="text-align: justify;"><strong><br />Edite o Dataset</strong></h4> <h4 style="text-align: justify;"><strong><br />Edite o Dataset</strong></h4>
<br /> <br />
<p style="text-align: justify; line-height: 2;">O &ldquo;Editor de Dataset&rdquo; apoia na descri&ccedil;&atilde;o de informa&ccedil;&atilde;o de acordo com o modelo selecionado.</p> <p style="text-align: justify; line-height: 2;">O &ldquo;Editor de Dataset&rdquo; apoia na descri&ccedil;&atilde;o de informa&ccedil;&atilde;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;"> <ul style="text-align: justify;">
<li> <li>
<p><strong>Guardar Datasets - </strong>Existem v&aacute;rias formas de guardar Datasets no Argos. Todas t&ecirc;m a mesma finalidade, diferindo da a&ccedil;&atilde;o de acompanhamento.</p> <p><strong>Guardar Datasets - </strong>Existem v&aacute;rias formas de guardar Datasets no Argos. Todas t&ecirc;m a mesma finalidade, diferindo da a&ccedil;&atilde;o de acompanhamento.</p>
@ -2394,7 +2394,7 @@
</li> </li>
<li> <li>
<p><strong>Concluir &ndash; </strong>Salva todas as altera&ccedil;&otilde;es realizadas, encerrando a janela do editor e redirecionando para o &ldquo;In&iacute;cio&rdquo;.</p> <p><strong>Concluir &ndash; </strong>Salva todas as altera&ccedil;&otilde;es realizadas, encerrando a janela do editor e redirecionando para o &ldquo;In&iacute;cio&rdquo;.</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> </li>
</ul> </ul>
<br /> <br />
@ -2402,26 +2402,26 @@
<p style="text-align: justify; line-height: 2;">Regista os PGDs e Datasets no Argos, ap&oacute;s a sua edi&ccedil;&atilde;o e conclus&atilde;o.</p> <p style="text-align: justify; line-height: 2;">Regista os PGDs e Datasets no Argos, ap&oacute;s a sua edi&ccedil;&atilde;o e conclus&atilde;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&atilde;o-lhes fornecidas funcionalidades adicionais que est&atilde;o ligadas &agrave; conclus&atilde;o do processo de escrita dos PGDs.</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&atilde;o-lhes fornecidas funcionalidades adicionais que est&atilde;o ligadas &agrave; conclus&atilde;o do processo de escrita dos PGDs.</p>
<p style="text-align: justify; line-height: 2;">S&atilde;o aplic&aacute;veis funcionalidades diferentes consoante o estado do PGD, ou seja, antes ou depois da conclus&atilde;o do PGD.</p> <p style="text-align: justify; line-height: 2;">S&atilde;o aplic&aacute;veis funcionalidades diferentes consoante o estado do PGD, ou seja, antes ou depois da conclus&atilde;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&ccedil;&atilde;o que acrescentaram relativamente a grants, investigadores, descri&ccedil;&atilde;o do PGD e Datasets e/ou modelos de dados utilizados.</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&ccedil;&atilde;o que acrescentaram relativamente a grants, investigadores, descri&ccedil;&atilde;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&aacute;gina.</p> <p style="text-align: justify; line-height: 2;">Podem ser adicionados novos Datasets em qualquer altura, a partir desta p&aacute;gina.</p>
<p style="text-align: justify; line-height: 2;">Os utilizadores podem exportar o PGD, come&ccedil;ar a trabalhar numa nova vers&atilde;o e/ou convidar colegas a colaborar na conclus&atilde;o do seu plano.</p> <p style="text-align: justify; line-height: 2;">Os utilizadores podem exportar o PGD, come&ccedil;ar a trabalhar numa nova vers&atilde;o e/ou convidar colegas a colaborar na conclus&atilde;o do seu plano.</p>
<p style="text-align: justify; line-height: 2;"><strong><br />Convidar </strong></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 /> <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&oacute;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> <p style="text-align: justify; line-height: 2;"><strong>Ap&oacute;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 /> <br />
<p style="text-align: justify; line-height: 2;">Ap&oacute;s a conclus&atilde;o do PGD, este poder&aacute; ser tornado publicamente vis&iacute;vel no Argos e depositado no Zenodo.</p> <p style="text-align: justify; line-height: 2;">Ap&oacute;s a conclus&atilde;o do PGD, este poder&aacute; ser tornado publicamente vis&iacute;vel no Argos e depositado no Zenodo.</p>
<p style="text-align: justify; line-height: 2;">Os utilizadores podem exportar o PGD finalizado, come&ccedil;ar a trabalhar numa nova vers&atilde;o e/ou convidar colegas a colaborar na conclus&atilde;o do plano.</p> <p style="text-align: justify; line-height: 2;">Os utilizadores podem exportar o PGD finalizado, come&ccedil;ar a trabalhar numa nova vers&atilde;o e/ou convidar colegas a colaborar na conclus&atilde;o do plano.</p>
<p style="text-align: justify; line-height: 2;">&Eacute; poss&iacute;vel reverter a conclus&atilde;o do PGD.</p> <p style="text-align: justify; line-height: 2;">&Eacute; poss&iacute;vel reverter a conclus&atilde;o do PGD.</p>
<p style="line-height: 2;">&nbsp;</p> <p style="line-height: 2;">&nbsp;</p>
<p style="line-height: 2;"><strong>Antes de concluir os Datasets</strong></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;">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&aacute;gina, e rever a informa&ccedil;&atilde;o que acrescentaram relativamente ao grant, investigadores e descri&ccedil;&atilde;o do Dataset.</p> <p style="line-height: 2;">Os utilizadores podem aceder a todo o PGD do qual o Dataset faz parte, a partir dessa p&aacute;gina, e rever a informa&ccedil;&atilde;o que acrescentaram relativamente ao grant, investigadores e descri&ccedil;&atilde;o do Dataset.</p>
<p style="line-height: 2;">Os utilizadores podem exportar a descri&ccedil;&atilde;o do Dataset e convidar os colegas a colaborar na sua conclus&atilde;o.</p> <p style="line-height: 2;">Os utilizadores podem exportar a descri&ccedil;&atilde;o do Dataset e convidar os colegas a colaborar na sua conclus&atilde;o.</p>
<p style="line-height: 2;">&nbsp;</p> <p style="line-height: 2;">&nbsp;</p>
<p style="line-height: 2;"><strong>&nbsp;</strong><strong>Ap&oacute;s concluir os Datasets</strong></p> <p style="line-height: 2;"><strong>&nbsp;</strong><strong>Ap&oacute;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&oacute;s a conclus&atilde;o do Dataset, este poder&aacute; ser exportado e partilhado com colegas para revis&atilde;o.<br /><br /><br /></p> <p style="line-height: 2;"><br />Ap&oacute;s a conclus&atilde;o do Dataset, este poder&aacute; ser exportado e partilhado com colegas para revis&atilde;o.<br /><br /><br /></p>
<p style="line-height: 2;">&nbsp;</p> <p style="line-height: 2;">&nbsp;</p>
</div> </div>

View File

@ -20,20 +20,9 @@ server {
root /usr/share/nginx/html; 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 / { location / {
try_files $uri $uri/ /index.html =404; try_files $uri $uri/ /index.html =404;
add_header Cache-Control "no-store, no-cache, must-revalidate"; add_header Cache-Control "no-store, no-cache, must-revalidate";
} }
} }

View File

@ -6,7 +6,7 @@
"Enabled": false, "Enabled": false,
"Url": "localhost:5000/" "Url": "localhost:5000/"
}, },
"defaultCulture": "en-US", "defaultCulture": "en",
"defaultLanguage": "en", "defaultLanguage": "en",
"defaultBlueprintId": "86635178-36a6-484f-9057-a934e4eeecd5", "defaultBlueprintId": "86635178-36a6-484f-9057-a934e4eeecd5",
"keycloak": { "keycloak": {
@ -25,7 +25,18 @@
"enabled": true "enabled": true
}, },
"annotation_service": { "annotation_service": {
"enabled": true "enabled": true,
"statusIcons": [
{
"internalStatus": "0",
"icon": "check"
},
{
"id": "948fdf9c-6b84-467c-884b-5323c5ea15d7",
"icon": "done_all"
}
],
"defaultStatusIcon": "animation"
}, },
"zenodoConfiguration": { "zenodoConfiguration": {
"clientId": "dmp_plugins", "clientId": "dmp_plugins",
@ -41,10 +52,21 @@
"url": "https://beta.analytics.openaire.eu/", "url": "https://beta.analytics.openaire.eu/",
"siteId": 361 "siteId": 361
}, },
"analytics": {
"providers": [
{
"enabled": true,
"type": "matomo",
"options": {
"url": "https://beta.analytics.openaire.eu/",
"siteId": 361
}
}
]
},
"lockInterval": 60000, "lockInterval": 60000,
"guideAssets": "assets/images/guide", "guideAssets": "assets/images/guide",
"allowOrganizationCreator": true, "allowOrganizationCreator": true,
"useSplash": false,
"orcidPath": "https://orcid.org/", "orcidPath": "https://orcid.org/",
"maxFileSizeInMB": 10, "maxFileSizeInMB": 10,
"authProviders": { "authProviders": {
@ -69,5 +91,65 @@
"researcherId": "5a2112e7-ea99-4cfe-98a1-68665e26726e", "researcherId": "5a2112e7-ea99-4cfe-98a1-68665e26726e",
"grantId": "5b9c284f-f041-4995-96cc-fad7ad13289c", "grantId": "5b9c284f-f041-4995-96cc-fad7ad13289c",
"organizationId": "7eeffb98-58fb-4921-82ec-e27f32f8e738" "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