From ba2a83eef031723ff5ee9cc822d4c9db8fda8c52 Mon Sep 17 00:00:00 2001 From: "CITE\\dtziotzios" Date: Mon, 14 Oct 2024 16:37:03 +0300 Subject: [PATCH] code cleanup --- .gitignore | 2 - .../opencdmp/commons/enums/ProviderType.java | 36 - .../enums/DatabaseEnumConverter.java | 1 - .../enums/ProviderTypeConverter.java | 15 - .../opencdmp/controllers/UserController.java | 2 +- .../publicapi/PublicApiStaticHelpers.java | 4 +- .../controllers/swagger/SwaggerHelpers.java | 2 +- .../resources/material/about/About_en.html | 3 +- .../cookie-policy/CookiePolicy_en.html | 19 +- .../main/resources/material/faq/Faq_en.html | 669 +---- .../terms-of-service/TermsOfService_en.html | 24 +- .../material/user-guide/UserGuide_de.html | 2523 ----------------- .../material/user-guide/UserGuide_en.html | 1728 +---------- .../material/user-guide/UserGuide_es.html | 2523 ----------------- .../material/user-guide/UserGuide_gr.html | 2523 ----------------- .../material/user-guide/UserGuide_pt.html | 2445 ---------------- .../material/user-guide/UserGuide_sk.html | 2523 ----------------- .../material/user-guide/UserGuide_sr.html | 2523 ----------------- .../material/user-guide/UserGuide_tr.html | 2523 ----------------- frontend/README.md | 27 - 20 files changed, 24 insertions(+), 20091 deletions(-) delete mode 100644 backend/core/src/main/java/org/opencdmp/commons/enums/ProviderType.java delete mode 100644 backend/core/src/main/java/org/opencdmp/data/converters/enums/ProviderTypeConverter.java delete mode 100644 backend/web/src/main/resources/material/user-guide/UserGuide_de.html delete mode 100644 backend/web/src/main/resources/material/user-guide/UserGuide_es.html delete mode 100644 backend/web/src/main/resources/material/user-guide/UserGuide_gr.html delete mode 100644 backend/web/src/main/resources/material/user-guide/UserGuide_pt.html delete mode 100644 backend/web/src/main/resources/material/user-guide/UserGuide_sk.html delete mode 100644 backend/web/src/main/resources/material/user-guide/UserGuide_sr.html delete mode 100644 backend/web/src/main/resources/material/user-guide/UserGuide_tr.html delete mode 100644 frontend/README.md diff --git a/.gitignore b/.gitignore index 291bc8d8d..d39ab7132 100644 --- a/.gitignore +++ b/.gitignore @@ -47,8 +47,6 @@ ELK.Docker/shared/data-elk/ bin/ *.classpath .run -openDMP/backend/uploads/ -openDMP/backend/tmp/ logs/ backend/web/src/main/resources/certificates/ /storage/ diff --git a/backend/core/src/main/java/org/opencdmp/commons/enums/ProviderType.java b/backend/core/src/main/java/org/opencdmp/commons/enums/ProviderType.java deleted file mode 100644 index bc6c36d32..000000000 --- a/backend/core/src/main/java/org/opencdmp/commons/enums/ProviderType.java +++ /dev/null @@ -1,36 +0,0 @@ -package org.opencdmp.commons.enums; - -import com.fasterxml.jackson.annotation.JsonValue; -import org.opencdmp.data.converters.enums.DatabaseEnum; - -import java.util.HashMap; -import java.util.Map; - -public enum ProviderType implements DatabaseEnum { - - Google (1), - Facebook ( 2), - Twitter ( 3), - LinkedIn (4), - NativeLogin ( 5), - B2Access ( 6), - ORCID (7), - OpenAire ( 8), - Configurable ( 9), - Zenodo (10), - Keycloack ( 128); - - private final Integer value; - - ProviderType(Integer value) { - this.value = value; - } - - @JsonValue - public Integer getValue() { return this.value; } - - private static final Map map = EnumUtils.getEnumValueMap(ProviderType.class); - public static ProviderType of(Integer i) { - return map.get(i); - } -} diff --git a/backend/core/src/main/java/org/opencdmp/data/converters/enums/DatabaseEnumConverter.java b/backend/core/src/main/java/org/opencdmp/data/converters/enums/DatabaseEnumConverter.java index d6a0f303e..961889702 100644 --- a/backend/core/src/main/java/org/opencdmp/data/converters/enums/DatabaseEnumConverter.java +++ b/backend/core/src/main/java/org/opencdmp/data/converters/enums/DatabaseEnumConverter.java @@ -1,6 +1,5 @@ package org.opencdmp.data.converters.enums; -import org.opencdmp.commons.enums.ProviderType; import jakarta.persistence.AttributeConverter; import jakarta.persistence.Converter; diff --git a/backend/core/src/main/java/org/opencdmp/data/converters/enums/ProviderTypeConverter.java b/backend/core/src/main/java/org/opencdmp/data/converters/enums/ProviderTypeConverter.java deleted file mode 100644 index 06e253ecf..000000000 --- a/backend/core/src/main/java/org/opencdmp/data/converters/enums/ProviderTypeConverter.java +++ /dev/null @@ -1,15 +0,0 @@ -package org.opencdmp.data.converters.enums; - -import org.opencdmp.commons.enums.ProviderType; -import jakarta.persistence.AttributeConverter; -import jakarta.persistence.Converter; - -import java.util.HashMap; -import java.util.Map; - -@Converter -public class ProviderTypeConverter extends DatabaseEnumConverter { - public ProviderType of(Integer i) { - return ProviderType.of(i); - } -} diff --git a/backend/web/src/main/java/org/opencdmp/controllers/UserController.java b/backend/web/src/main/java/org/opencdmp/controllers/UserController.java index 23ad6e1d8..b762e8f33 100644 --- a/backend/web/src/main/java/org/opencdmp/controllers/UserController.java +++ b/backend/web/src/main/java/org/opencdmp/controllers/UserController.java @@ -217,7 +217,7 @@ public class UserController { )) @Swagger404 public User get( - @Parameter(name = "email", description = "The email of a user to fetch", example = "admin@cite.gr", required = true) @PathVariable("email") String email, + @Parameter(name = "email", description = "The email of a user to fetch", example = "opencdmp@cite.gr", required = true) @PathVariable("email") String email, @Parameter(name = "fieldSet", description = SwaggerHelpers.Commons.fieldset_description, required = true) FieldSet fieldSet ) throws MyApplicationException, MyForbiddenException, MyNotFoundException { logger.debug(new MapLogEntry("retrieving" + User.class.getSimpleName()).And("email", email).And("fields", fieldSet)); diff --git a/backend/web/src/main/java/org/opencdmp/controllers/publicapi/PublicApiStaticHelpers.java b/backend/web/src/main/java/org/opencdmp/controllers/publicapi/PublicApiStaticHelpers.java index a586e20e6..1769af2c3 100644 --- a/backend/web/src/main/java/org/opencdmp/controllers/publicapi/PublicApiStaticHelpers.java +++ b/backend/web/src/main/java/org/opencdmp/controllers/publicapi/PublicApiStaticHelpers.java @@ -170,7 +170,7 @@ public final class PublicApiStaticHelpers { " \"users\": [\n" + " {\n" + " \"id\": \"00476b4d-0491-44ca-b2fd-92e695062a48\",\n" + - " \"name\": \"OpenDMP OpenDMP\",\n" + + " \"name\": \"OpenCDMP OpenCDMP\",\n" + " \"role\": 0,\n" + " \"email\": \"opendmpeu@gmail.com\",\n" + " \"hint\": \"UserInfoListingModel\"\n" + @@ -213,7 +213,7 @@ public final class PublicApiStaticHelpers { " \"users\": [\n" + " {\n" + " \"id\": \"00476b4d-0491-44ca-b2fd-92e695062a48\",\n" + - " \"name\": \"OpenDMP OpenDMP\",\n" + + " \"name\": \"OpenCDMP OpenCDMP\",\n" + " \"role\": 0,\n" + " \"email\": \"opendmpeu@gmail.com\",\n" + " \"hint\": \"UserInfoListingModel\"\n" + diff --git a/backend/web/src/main/java/org/opencdmp/controllers/swagger/SwaggerHelpers.java b/backend/web/src/main/java/org/opencdmp/controllers/swagger/SwaggerHelpers.java index a01110aaf..7ae8b3176 100644 --- a/backend/web/src/main/java/org/opencdmp/controllers/swagger/SwaggerHelpers.java +++ b/backend/web/src/main/java/org/opencdmp/controllers/swagger/SwaggerHelpers.java @@ -4281,7 +4281,7 @@ public final class SwaggerHelpers { "contacts":[ { "id":"20d108c6-8277-40d0-a2b8-e6d8c9c332f0", - "value":"dmproot@cite.gr", + "value":"opencdmp@cite.gr", "type":0, "ordinal":0, "user":{ diff --git a/backend/web/src/main/resources/material/about/About_en.html b/backend/web/src/main/resources/material/about/About_en.html index 2f0fc37ac..617a42204 100644 --- a/backend/web/src/main/resources/material/about/About_en.html +++ b/backend/web/src/main/resources/material/about/About_en.html @@ -66,8 +66,7 @@
-

ARGOS is an online tool in support of automated processes to creating, managing, sharing and linking DMPs with research artifacts they correspond to. It is the joint effort of OpenAIRE and EUDAT to deliver an open platform for Data Management Planning that addresses FAIR and Open best practices and assumes no barriers for its use and adoption. It does so by applying common standards for machine-actionable DMPs as defined by the global research data community of RDA and by communicating and consulting with researchers, research communities and funders to better reflect on their needs. -

ARGOS provides a flexible environment and an easy interface for users to navigate and use.

+

OpenCDMP is an open and extensible software platform designed to simplify the management, monitoring, and maintenance of Output Management Plans (OMPs), such as Data Management Plans (DMPs) and Software Management Plans (SMPs). It provides a flexible and customizable environment that streamlines the complex processes involved in handling OMPs, ensuring efficiency, compliance, and collaboration across various projects and organizations.

diff --git a/backend/web/src/main/resources/material/cookie-policy/CookiePolicy_en.html b/backend/web/src/main/resources/material/cookie-policy/CookiePolicy_en.html index 6194e0eba..e8cafd856 100644 --- a/backend/web/src/main/resources/material/cookie-policy/CookiePolicy_en.html +++ b/backend/web/src/main/resources/material/cookie-policy/CookiePolicy_en.html @@ -84,27 +84,26 @@
-

ARGOS ("us", "we", "our") uses cookies. By using ARGOS, you consent to the use of cookies.

-

Our Cookies Policy explains what cookies are, how we use cookies, how third-parties we may partner with may use cookies on ARGOS, your choices regarding cookies and further information about cookies.

+

OpenCDMP ("us", "we", "our") uses cookies. By using OpenCDMP, you consent to the use of cookies.

+

Our Cookies Policy explains what cookies are, how we use cookies, how third-parties we may partner with may use cookies on OpenCDMP, your choices regarding cookies and further information about cookies.


What are cookies

-

Cookies are small pieces of text sent by your web browser by a website you visit. A cookie file is stored in your web browser and allows ARGOS or a third-party to recognize you and make your next visit easier and ARGOS more useful to you.

+

Cookies are small pieces of text sent by your web browser by a website you visit. A cookie file is stored in your web browser and allows OpenCDMP or a third-party to recognize you and make your next visit easier and OpenCDMP more useful to you.

Cookies can be "persistent" or "session" cookies.


-

How Argos uses cookies

-

When you use and access ARGOS, we may place cookies files in your web browser.

-

We use cookies for the following purposes: to enable certain functions of ARGOS and to provide analytics.

-

We use both session and persistent cookies on ARGOS and we use different types of cookies to run the Service:

+

How OpenCDMP uses cookies

+

When you use and access OpenCDMP, we may place cookies files in your web browser.

+

We use cookies for the following purposes: to enable certain functions of OpenCDMP and to provide analytics.

+

We use both session and persistent cookies on OpenCDMP and we use different types of cookies to run the Service:

1. Essential cookies. We may use essential cookies to authenticate users and prevent fraudulent use of user accounts.

-

2. Performance cookies. We use performance cookies to count visits and traffic sources, so we can measure and improve the performance of Argos, for example by analysing patterns of user behaviour in order to enhance user experience or by identifying areas of the website which may require maintenance. All information these cookies collect is anonymous.

-

 3. Third-party cookies. Apart from our own cookies, we may use cookies from sources that Argos and OpenAIRE (Argos provider) makes use of for Argos to properly function and validate input and output. Third-party cookies are also used to report usage statistics of Argos.

+

2. Performance cookies. We use performance cookies to count visits and traffic sources, so we can measure and improve the performance of OpenCDMP, for example by analysing patterns of user behaviour in order to enhance user experience or by identifying areas of the website which may require maintenance. All information these cookies collect is anonymous.

+

 3. Third-party cookies. Apart from our own cookies, we may use cookies from sources that OpenCDMP makes use of for OpenCDMP to properly function and validate input and output. Third-party cookies are also used to report usage statistics of OpenCDMP.


What are your choices regarding cookies

If you'd like to delete cookies or instruct your web browser to delete or refuse cookies, please visit the help pages of your web browser.

Please note, however, that if you delete cookies or refuse to accept them, you might not be able to use all of the features we offer, you may not be able to store your preferences, and some of our pages might not display properly.

-

Please contact OpenAIRE’s Data Protection Officer for further information on the cookies that we use and their purposes: dpo@openaire.eu 

Last updated: 16/06/2020

diff --git a/backend/web/src/main/resources/material/faq/Faq_en.html b/backend/web/src/main/resources/material/faq/Faq_en.html index 82600bf1d..1a5d990ef 100644 --- a/backend/web/src/main/resources/material/faq/Faq_en.html +++ b/backend/web/src/main/resources/material/faq/Faq_en.html @@ -74,673 +74,8 @@
-

About ARGOS

-

What is ARGOS?

-

Argos is an open and collaborative platform developed by OpenAIRE to facilitate - Research Data Management (RDM) activities concerning the implementation of Data - Management Plans. It uses OpenAIRE guides created by the RDM Task Force to - 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 OpenDMP open source software and is available through the OpenAIRE - Service catalogue and the EOSC.

- -
-

Is Argos designed for one specific funder, e.g. the EC/Horizon Europe?

-

- Argos is a flexible tool, designed to accommodate all research performing - and research funding organisations’ policies and Research Data Management (RDM) needs. - It already supports templates for different authorities. - These templates are created by Admin users in Argos. - In addition, we currently work to provide non-administrative users with the capability - to modify templates according to their own needs. -

-
-

Why use Argos?

-

Argos is easy to use and navigate around. It familiarises users with the DMP process - and provides guidance on basic RDM concepts so that users find useful resources to - learn from without having to leave the Argos environment. Users can invite their - colleagues and collaboratively work on completing a DMP. Moreover, Argos is an - integral part of the OpeAIRE ecosystem and the Research - Graph. Argos integrates - other services of the ecosystem to enable contextualisation of information, which is - especially useful when data are re-used, for example to understand how/ if they can - be repurposed.

-
-

Who is Argos for?

-

Argos is designed as a tool for inclusive use by researchers, students, funders, - research communities and institutions. It can be used in the context of research - projects’ conduct to comply with funders’ RDM requirements, as a tool in support of - literacy programmes in academia or can be independently deployed to meet given - stakeholder demands. Also, it is available in native languages, thanks to the help - of OpenAIRE NOADs, which strengthens common understanding of all researchers - involved in the DMP writing process. - By using Argos, researchers and students are able to create their DMPs in - collaboration with other colleagues, learn basic RDM concepts throughout the process - and publish DMPs as outputs in an open and FAIR manner, among other things by - assigning DOIs and licenses and by maintaining DMPs as living documents through - versioning. - At the same time, Argos can be configured and deployed by funders, institutions and - research communities. They can plug in their own services and/ or make use of - OpenAIRE underlying services that Argos is built with ad-hoc.

-
-

Using Argos

-

- Argos consists of two main functionalities: DMPs and Datasets. - Argos can be used for: -

- A. Viewing/ consulting publicly released DMPs and Datasets or Projects - corresponding to - DMPs -

- Argos offers options for publishing DMPs in two modes, private or public. To view - public DMPs and Datasets, there is no need for login to the platform. -

- B. Writing and publishing a DMP -

- Argos helps researchers comply with mandates that may be attached to their grant - proposal/ project funding. They can therefore choose from the most suitable to their - needs template from the Datasets collection and proceed with answering the - corresponding questions. Once finalized, researchers can assign a DOI to their DMP, - publish and eventually cite it. -

- C. Practicing on writing DMPs and Dataset Descriptions -

- Argos may be used for educational purposes. The process of Data Management Planning - reflects the data management lifecycle, hence the tool can be used in response to - global RDM training demands. Examples may refer to embedding DMPs and DMP tools in - specific curricula or be embedded in library instructions’ sessions to familiarize - researchers and students the processes of RDM and DMP. -

-
-

Can I exploit ARGOS DMPs?

-

- Of course. If you want to compare DMPs or analyse DMP data, then we advise you to export the records in .xml. - This schema is the most complete as it includes all information held in a DMP: information provided by the Admin - when structuring the template and input provided by researchers when completing their DMPs. -

-
-

Manage Account

-

Log in and out of Argos

-

- You can log in Argos by selecting one of the providers from the Login page. Argos - does not require Sign Up. -

-
-

Create an administrator account

-

- If you are interested in becoming an administrator in Argos and benefit from extra - features relevant to creating tailored templates, please email argos@openaire.eu . -

- -
-

- Switch from administrator account -

-

- There is no need to switch from your administrator account to use Argos. The only - difference between regular users and administrators profiles in Argos is an extra - set of tools at the bottom of the main tool bar that is positioned on the left - handside. -

-
-

- Change your email -

-

- Argos does not have Sign Up. To change email, please see “Switch between accounts”. - Alternatevily, you can add more email addresses to your user account by selecting - the “Add alternative email” from your profile. -

-
-

- Switch between accounts -

-

- You can switch between email accounts by loging in with different providers from the - Login page. The change depends on whether you have used different email addresses to - sign up with those providers. On the occassion that only one email address is used - for all providers offered by Argos, then no change is expected. You can always add - new email accounts in your profile from the “Add alternative email” in your profile - page. -

-
-

- Delete your account -

-

- If you want to delete your Argos profile, please email argos@openaire.eu . -

-
-

- Accounts access and safety -

-

- How can I access my account and edit my profile? -

-

- You can access your profile page and make desired edits from clicking on the avatar - at the very top of the toolbar located on the right handside. -

-
-

- Can’t login to ARGOS -

-

- Please try using a different provider from the Login page and contact us at: - argos@openaire.eu . -

-
-

- Accessing Argos -

-

- If you are reading this right now, you probably know the answer already! One way to - access Argos is through the OpenAIRE Service - catalogue. Another way is through the - EOSC - Catalogue. But, you can always find Argos at - argos.openaire.eu . - To access Argos software, please visit - https://code-repo.d4science.org/MaDgiK-CITE/argos/src/branch/master - . -

-
-

Argos User Roles

-

- Who is the author of a DMP? -

-

- Author of the DMP is everyone contributing to writing the DMP. Both Argos owners and - Argos members are DMP authors. Researchers, however, are not DMP authors. -

-
-

- What is the difference between owners and - members? -

-

- Argos DMP owner is the person initiating the DMP. People who are invited to join the - DMP process are members who contribute to writing the DMP. DMP owners have extra - editing rights and they are the ones to finalize the DMP process. Members can view - and edit DMPs and Datasets, but can not perform further actions for its validation - or finalization. -

-
-

- What is the role of a researcher in Argos? -

-

- Researchers in Argos are project contributors and usually those who own or have - managed data described in respective DMPs. -

-
-

- Can a researcher be a DMP author? -

-

- Of course! This depends on whether the researcher has also been involved in the DMP - writing process. -

-
-

- What does an Admin user do? -

-

- Not everyone can become an Admin user in Argos. This happens upon request at - argos@openaire.eu. Admin users are able to create - their own tailored templates from - a specialised editor, configure their own APIs and integrate services with Argos in - collaboration with and support of the Argos development team. Fees may apply - according to the type of requests. -

-
-

Creating DMPs

-

- I can’t find my project in the list. What should - I do? -

-

- DMPs that are created as part of the project proposal are not included in Argos. - Only accepted project proposals are listed in the platform. If you can’t find your - project in the list (drop-down menu), please use the “Insert manually” - functionality. -

-
-

- I can’t find my grant in the list. What should I - do? -

-

- If you can’t find your grant in the list (drop-down menu), please use the “Insert - manually” functionality. -

-
-

- How do I edit and design my own DMP - template? -

-

- You have to be an Admin user to design your own template in Argos. To learn more - about Admin users, check “What does an Admin user do?”. -

-
-

- Can I create my own templates in Argos? -

-

- Yes, you can, provided that you are an Admin user. To learn more about Admin users, - check “What does an Admin user do?”. -

-
-

- What is the difference between “Save”, “Save & - Close”, “Save & Add New”? -

-
-

They all perform the same action, but the difference lies in where you are directed - after you have saved your DMP or Dataset.

-
    -
  • - When choosing Save, information that you have added in the editor is kept - and you - can continue adding more from the same page you were working on. -
  • -
  • - When choosing Save & Close, information that you have added is kept, but the - editor’s window closes and you are redirected to your dashboard. -
  • -
  • - [only for datasets] When choosing Save & Add New, information that you have - added is - kept, and you are redirected to another editor to start a new dataset. -
  • -
-
-
-

- Can I modify things once I have finalized - them? -

-

- Yes, you can, as long as you haven’t assigned a DOI to your DMP. You just select - “Undo Finalization”. -

-
-

- How do I invite collaborators? -

-

- You may use the “Invite” button to share DMPs with your colleagues and start working - on them together. -

-
-

- Can scientists collaborate on the same DMP even though they may belong to different institutions (e.g. a hospital, a University, etc, collaborating on a project) and the dataset also "belongs" to different institutions? -

-

- Of course. Argos supports collaborations across diverse teams. There are two most frequent ways that can address this question: -

- A. Everyone works on the same DMP, but on different dataset descriptions -

- In this case, each organisation makes its own dataset description(s) in a single DMP. - That means that the manager (i.e. person responsible for the DMP activity) creates a DMP in ARGOS - and shares it with everyone. If the DMP is shared with co-ownership rights, - then the people will be able to edit it and add their dataset descriptions at any time during the project. - If there is the need to control editing rights of people writing the DMPs, then the manager can create the dataset description(s) - and share these each time with the team members that are responsible for adding input for the specified datasets. -

- B. Everyone works on their own DMP and content is later merged into one single DMP -

- In this case, each organisation might work on their own DMP for the same project. - At one point, you need to decide which DMP is going to be the core for the work you perform, share co-ownership - between managers of all DMPs so they can copy all dataset descriptions of their DMPs in this single DMP document. -

-
-

- How do I create an identical DMP or Dataset as a - copy? -

-

- DMPs and Datasets can be cloned and used in different research contexts. - Existing DMPs presenting similarities with new ones, can be cloned, changed name and - then edited according to the new project data requirements. - Existing Datasets can be cloned and used in new DMPs that are reusing data described - in their context. -

-
-

- What is the DMP version? How is it set? -

-

- Versioning in Argos is both an internal and an external process. That means that - versioning happens both in the Argos environment when editing the DMP, and outside - of Argos when a DMP output is published in Zenodo. At every stage of the DMP - lifecycle, users have the option of keeping versions of the DMPs they are editing. - In Argos, users can create new versions of their DMPs by selecting the “Start New - Version” option to keep track of the evolution of their DMP throughout the writing - process. When published, versioning is associated with a DOI. Published DMPs are - automatically versioned every time a newer version of the same output is uploaded in - Zenodo. -

-
-

- DMPs and Datasets -

-

- What is the DMP? -

-

- A DMP in Argos consists of vital information about the research project on behalf of - which the DMP is created and of more in depth information about the management, - handling and curation of datasets collected, produced or reused during the research - lifetime. A DMP in Argos accommodates documentation of more than one datasets. That - way datasets are provided with the flexibility to be described separately, following - different templates per type of dataset or research community concerned each time, - also possible to be copied and used in multiple DMPs. Datasets are then bundled up - in a DMP and can be shared more broadly. Special attention is given to the handling - of data that are being re-used via OpenAIRE APIs. -

-
-

- How do I find which Dataset template to use? -

-

- This depends on the reason why you are creating a DMP in the first place. If it is - for compliance matters with funders, institutions or research communities RDM - policies, then you may select the dataset template of that particular stakeholder. - If you are creating a DMP for training purposes, you may select and work on any - template from the Argos collection. -

-
-

- How do I create my own Dataset template? -

-

- Currently, it is not possible for all Argos users to create dataset templates of - their own, so they have to work on predefined templates. Additional rights for - editing Dataset templates according to tailored needs have Admin users. This is - expected to change in the near future. To learn more about Admin users, check “What - does an Admin user do?”. -

-
-

- Can I create smaller versions of a template for project proposals? -

-

- Yes, it is possible in Argos to create short versions of templates that can be used - for grant proposals, such as for Horizon Europe. - If you are interested in working with us to create this short version of any ARGOS template, - please contact us: argos@openaire.eu. -

-
-

- Can I customise an existing template (e.g. for a specific institution)? -

-

- Yes, you can. In the current version, this is possible for Admin users who have their own deployment on-premises or cloud. - Please note that this subject to change in the near future as we are working on a feature that will allow all users - to customise (remove/add/extend) specific questions on the template they are working on. -

-
-

- What is a Dataset? -

-

- A Dataset in Argos is an editor with set up questions that support the creation of - descriptions of how data are / have been handled, managed and curated throughout the - research data lifecycle. The editor holds a collection of Dataset templates each one - with different sets of predefined questions as per funders, institutions, research - communities RDM policy requirements. Researchers and students can choose the - template that corresponds to their RDM needs in order to get funding or get their - degree, respectively. A DMP in Argos may consist of one or more datasets. -

-
-

- Why do I need more than one Dataset? -

-

- You don’t necessarily need to have many Datasets in a DMP. However, you might be - producing a plethora of data during your research that are diverse in type and/ or - scope of collection/ re-use, thus presenting diverse management needs. Argos gives - you the flexibility to describe all data produced and/ or re-used in your research - separately. That way it is easy to perform the mapping of information provided in a - DMP to the respective data types or data collections they correspond to. Equally, - reuse of particular datasets in different DMPs is easier. For the latter, please - check “How do I create an identical DMP or Dataset as a copy?”. -

-
-

- It is not very clear to me when one should choose to add a dataset or to describe several "data products" in the same description. -

-

- This is something that has to be tackled conceptually, from the author of the DMP. - If those "products" have their own lifetime and rules (IPR, Access rights, etc), they should be described as different datasets. - Alternative formats should not be treated as different datasets, unless they have other differences due to the format, too. - But, for instance, if you have datasets in CSV and JSON formats and under the same terms, they could be seen as one dataset description in the DMP. -

-
-

- Can I add to my DMP information about datasets published on Zenodo? -

-

- Argos offers a search to Zenodo for prefilling the DMP you are working with dataset metadata. - This search has been developed according to the rules set by Zenodo - and therefore has the same behaviour as when you are using the search bar on the Zenodo interface. - However, we understand the need to be able to find records with their PID, - hence we introduced some changes and now support searching DOIs from the Argos interface. -

-
-

- Is it possible to describe a dataset that is not yet in a repository? -

-

- Of course! You can choose to manually describe your dataset, e.g. for a dataset you are planning to produce, - instead of pre-filling the template with available metadata from a dataset that has already been shared and preserved in a repository. -

-
-

- What are public DMPs and Datasets? -

-

- Public DMPs and Public Datasets are collections of openly available Argos outputs. - That means that DMP owners and members are making their DMP and/or Dataset outputs - available to all Argos and non-Argos users who might want to consult or re-use them - under the framework provided by the assigned DMP license. Please also check “Is all - the information I create visible by default?”. -

-
-

- Is all information I create visible by - default? -

-

- No, it is not. You can choose how your DMP is displayed in Argos from the - “Visibility” option. Choosing Public will immediately locate your DMP in the “Public - DMPs” collection and make it available to all Argos and non-Argos users. - Choosing Private will keep the DMP visible only to you and to the people invited to - edit the DMP in collaboration with you. Private DMPs are not publicly displayed to - other users. -

-
-

- What is the difference between the DMP and the dataset export? -

-

- DMP export contains all vital information for a DMP, including funding and dataset details, - while dataset export is a subset of the DMP export containing information only about a dataset described in the DMP. - Both DMP and Dataset exports are available in .pdf, .docx, .xml. - In addition, DMP export is available in the RDA .json format - to increase interoperability of ARGOS exchanged DMPs. -

-
-

- Is there a storage allowance limitation for the - DMPs and Dataset files? -

-

- No, there is no storage limit or fee for either files stored in Argos. -

-
-

- Publishing DMPs -

-

- Is it possible to publish DMPs in different repositories (so not Zenodo)? -

-

- Yes, it is possible. - But, to have different repositories attached to the system, you will need your own on-premises or cloud deployment. - We are already working on that for DSpace and Dataverse repositories. -

-
-

- Do you know that Zenodo has empty DMPs from ARGOS? -

-

- Yes, we are aware of that. - Argos has no control over the DMPs that you generate and publish and thus can not be held accountable for empty DMPs. - Please remember that, as on all other occasions where you publish content, you should do so responsinbly. - If you have any questions regarding publishing DMPs, don’t hesitate to contact us at argos@openaire.eu. -

-
-

- Once I upload a final version of a DMP to Zenodo, do I need to update this first final version from Zenodo or from Argos? -

-

- Both options are possible according to how you have deposited the DMP in the first place. - If you have deposited your DMP with a token (i.e. from the ARGOS account on Zenodo), - then you won’t have editing rights on the Zenodo record, but you will still be able to make changes - on ARGOS by starting and depositing a new version of the published DMP. - However, if you have deposited your DMP using your own account on Zenodo (i.e. login to Zenodo with your own credentials), - then you are able to also make minor changes, e.g. on the title of the DMP, directly from the Zenodo interface. -

-
-

Troubleshooting

-

- Can’t finalize a DMP -

-

- You might be experiencing this problem because there are incomplete mandatory fields - in your DMP. Please check for those fields, fill in with appropriate information and - try again. Should the problem persists, please contact argos@openaire.eu . -

-
-

- Can’t co-edit a DMP -

-

- DMPs can be shared with many colleagues in support of collaborative writing, but - DMPs should be worked by one person at a time. Argos will inform you if another - colleague has the DMP you are trying to edit open, so that your team avoids - information loss. -

-
-

- Deposit is not working -

-

- You need to have a Zenodo login to perform a deposit. Please sign up in Zenodo or - use the token option to publish your DMPs and get a DOI. -

-
-

Legal and privacy

-

- Is Argos open source? -

-

- 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 - here. -

-
-

- Can I contribute to Argos development? -

-

- Of course! Please feel free to suggest new features and to actively contribute to - Argos development via pull requests in Gitea. -

-
-

- Is Argos GDPR compliant? -

-

- Argos takes all necessary steps in handling and protecting personal and sensitive - information. Please check the Argos Terms of Service and Privacy Policy. -

-
-

- Which is the Argos data policy? -

-

- Please find all information about Argos Terms of Service and Privacy, here. - Additionally, you may find Argos Cookies policy, here. -

-
-

- What is the work ownership of information - created in Argos? -

-

- Unless there are any contractual or institutional agreements stating ownership of - outputs produced in the context of a project/ collaboration, owners of Argos outputs - are DMP contributors, i.e. DMP owners and DMP members, who have been involved with - writing the DMP. -

-
-

- Which are the terms and policies of Argos? -

-

- Please find all information about Argos Terms of Service and Privacy, here. - Additionally, you may find Argos Cookies policy, here. -

- - +

About OpenCDMP

+ FAQ page placeholder.
diff --git a/backend/web/src/main/resources/material/terms-of-service/TermsOfService_en.html b/backend/web/src/main/resources/material/terms-of-service/TermsOfService_en.html index 2bcaaeb33..de8808fa2 100644 --- a/backend/web/src/main/resources/material/terms-of-service/TermsOfService_en.html +++ b/backend/web/src/main/resources/material/terms-of-service/TermsOfService_en.html @@ -84,29 +84,7 @@
-

The OpenDMP service was developed to provide a more flexible, collaborative environment with machine actionable solutions in writing, sharing and publishing Data Management Plans (DMPs). It is a product of cooperation between OpenAIRE AMKE and EUDAT CDI and is offered both as a software “OpenDMP '' and as an online service under the name “ARGOS”.

-

-
    -
  1. OpenDMP software is offered under the Free Open Source Software license  Apache 2.0, for further development and use by institutions and interested parties.
  2. -
  3. ARGOS service is offered by OpenAIRE as part of its mission to support Open Science in the European Research Area, focusing on information linking and contextualisation that enriches its Research Graph. Use of ARGOS denotes agreement with the following terms: -
      -
    1. 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 OpenAIRE 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.
    2. -
    3. Login to ARGOS is possible through a variety of external providers, among which Google, Facebook, Twitter, B2Access and OpenAIRE Login, that share information of their user profiles with ARGOS, according to the rights that have been granted to the given provider by the user. External email addresses that are used in invitations for collaborations are held in ARGOS database that stores information about only the name, surname and email address of the DMP creator and collaborator.  Personal data is collected via the login option and via email invitations sent to external DMP contributors. This personal information as well as the activity of ARGOS users is used only for deriving usage metrics and assessing the service quality. They are stored in ARGOS database for as long as the account is active and they are accessible only from people in the team in charge of quality and risk assessment. They will not be used for other purposes other than the ones stated in this document and they can be deleted at any time should the user claim a relevant request. The aforementioned processes are also facilitated by the use of cookies (see below the “Cookie policy”).
    4. -
    5. Data concerning DMP information will be used by OpenAIRE for research and development purposes, such as identifying DMP models, and for ensuring compliance with policy requirements and monitoring of DMPs uptake linked to OpenAIRE’s Monitoring Dashboards and the Open Science Observatory.
    6. -
    7. The DMP Manager, i.e. the person who creates and manages a DMP, and/ or the contributor, i.e. the person who is invited to collaborate on a DMP, shall ensure that content is accurate and presented in a way that adheres to these Terms of Service and applicable laws, including, but not limited to, privacy, data protection and intellectual property rights.
    8. -
    9. ARGOS service is provided by OpenAIRE “as is”. Although OpenAIRE and its partners take measures for the availability, dependability, and accuracy of the service, access to ARGOS, utilisation of its features and preservation of the data deposited or produced by the service are not guaranteed. OpenAIRE cannot be held responsible for any data loss regarding DMPs, ethical or financial damage or any other direct or indirect impact that any failure of ARGOS service may have on its users.  
    10. -
    11. ARGOS users are exclusively responsible for their use of content, and shall hold OpenAIRE free and harmless in connection with their download and/or use.
    12. -
    13. OpenAIRE may not be held responsible for the content provided or statements made in Data Management Plans created and managed by its users.
    14. -
    15. All content is provided “as-is”. Users of content (“Users”) shall respect applicable license conditions. Download and use of content from ARGOS does not transfer any intellectual property rights in the content to the User.
    16. -
    17. In the case any content is reported as violating third party rights or other legal provisions, ARGOS reserves the right to remove the content from the service until the dispute is legally settled. Any such incidents should be reported at noticeandtakedown@openaire.eu 
    18. -
    19. ARGOS users are held responsible for the data and information they provide in the service. Users may not add information, data or any other type of artifact that may be malicious, intentionally erroneous and potentially harmful for other ARGOS users, IPR owners and/or the general public.
    20. -
    21. In case a user of ARGOS identifies a potential infringement of copyright, harmful or malicious operation, function, code, information or data, shall inform OpenAIRE providing sufficient evidence for the identification of the case and the information and/or data challenged.
    22. -
    23. OpenAIRE reserves the right, without notice, at its sole discretion and without liability, (i) to alter or delete inappropriate content, and (ii) to restrict or remove User access where it considers that use of ARGOS interferes with its operations or violates these Terms of Service or applicable laws.
    24. -
    25. These Terms of Service are subject to change by OpenAIRE at any time and without notice, other than through posting the updated Terms of Service on the OpenAIRE website and indicating the version and date of last update.
    26. -
    -
  4. -
-

For any questions or comments you may have about the current Terms of Service, please contact us: argos@openaire.eu 

+ Terms of Service page placeholder.
diff --git a/backend/web/src/main/resources/material/user-guide/UserGuide_de.html b/backend/web/src/main/resources/material/user-guide/UserGuide_de.html deleted file mode 100644 index b15c3d1c9..000000000 --- a/backend/web/src/main/resources/material/user-guide/UserGuide_de.html +++ /dev/null @@ -1,2523 +0,0 @@ - - - - - - - - - - - - - - -
-
-
- -
-
-
-
-

 

-
-
    -
  1. -

    Entities & Terminology

    -
  2. -
      -
    1. -

      Key entities

      -
    2. -

       

      -

      Data Management Plan (DMP) is a collection of dataset descriptions, associated with an activity (“project” or “grant”). A DMP may be versioned, is exportable to various forms, currently machine readable (xml, json) and human readable (pdf/openxml) and can be assigned a DOI and published in Zenodo.

      -

       

      -

      Dataset in Argos describes data according to a set of rules that is the dataset template.

      -

       

      -

      Dataset Template is the set of rules that describe what Datasets contain and how they are handled. Dataset Templates are modified by Admins and contain attributes/fields, behavioral rules (e.g. toggling visibility of fields) and validation rules. Dataset Templates are linked to DMPs so that users are provided with specific formats of descriptions.

      -

       

      -

      Project is a logical entity that defines the context where one or more Data Management Plans may be formed in.

      -

       

      -

      Grant is a logical entity that defines the context where one or more Data Management Plans may be formed in.

      -

       

      -

      Users are associated to DMPs and other entities (e.g. Datasets, Organizations) for authorization and may map to researchers.

      -

       

      -

      Import - Import function supports upload of .json files that are produced according to RDA specifications for machine-actionable DMPs

      -

       

      -

      -

       

      -

      - - - - - - -
      -

      Start New DMP is an easy way to start writing a DMP. It provides an editor that goes through the essential elements of a DMP and guides the process of its creation step by step.

      -

       

      -

      From “Homepage”

      -

      -

       

      -

      From Dashboard

      -

      -

      or

      -

      -

       

      -

      From “Add Dataset”

      -

      -
      -

       

      -

       

      -

      - - - - - - -
      -

      Add Dataset is an easy way to add new datasets to pre-existing DMPs.

      -

       

      -

      From Dashboard

      -

      -

       

      -

      From “My Datasets”

      -

      -

       

      -

      From “My DMPs”

      -

      -

       

      -

      From Dataset Editor

      -

      -
      -

       

      -
    3. -

      Secondary entities

      -
    4. -

       

      -

      Repository  - an electronic database or an information system where data are stored and maintained

      -

       

      -

      Data set - a collection of data which are bind together under a specific format

      -

       

      -

      Registry - a database of entities and descriptions

      -

       

      -

      Service - a software of specific operations and tasks that interacts with other software and hardware

      -

       

      -

      Researcher - an individual practicing research

      -

       

      -

      Funding organization - an organisation that funds research programmes and/ or researchers’ activities

      -

       

      -
    -
  3. -

    Navigation

    -
  4. -
      -
    1. -

      Homepage

      -
    2. -

       

      -

      The homepage can be found under argos.openaire.eu, also accessible from  the OpenAIRE Service catalogue and the EOSC.

      -

       

      -

      -

       

      -

      About - informs about the scope and main functions of the tool (How it works, ROADMAP, FAQs, Contributors)

      -

       

      -

      Resources - provides useful information about using Argos and includes dissemination material (Media Kit, User Guide, Co-branding)

      -

       

      -

      Contact - a contact form that facilitates communication with Argos team

      -

       

      -

      Sign in - enters the tool as a user

      -
    3. -

      Login

      -
    4. -

       

      -

      Different login options are available to choose from social media to research and scholarly communication channels.

      -

      -

       

      -

      Note! No user account is required.

      -

       

      -
    5. -

      User Account Menu

      -
    6. -

       

      -

      A dedicated, customisable space of the user’s personal profile.

      -

       

      -

      - - - - - - - -
      -

      -
      -

      My profile settings -  displays the profile page which contains details such as name, email, zenodo account details etc.

      -

       

      -

      Associated DMPs - a collection of users’ DMPs

      -

       

      -

      Log out - terminates the session, and redirects to the login page.

      -
      -

       

      -

       

      -
    7. -

      Main Menu

      -
    8. -

       

      -

      The main menu is located on the left side of the screen. Depending on how users view the tool, i.e. whether they have logged in or not, the main menu changes to include features that are available only in individuals’ dashboards.

      -

       

      -

      - - - - - - - -
      -

      Main menu - not logged in

      -

       

      -

      -

       

      -

      Home  - gets you back to the homepage / dashboard

      -

       

      -

      Public DMPs - a collection of DMPs publicly available in Argos

      -

       

      -

      Public Datasets - a collection of Datasets publicly available in Argos

      -

       

      -

      Co-Branding - a page to view the software and learn how to contribute

      -

       

      -

      Support - a contact form that facilitates communication with Argos team

      -

       

      -

      Send feedback - a feedback form to contribute thoughts and opinions about using Argos

      -

       

      -

      About - informs about the scope and main functions of the tool

      -

       

      -

      Terms of Service - provides the legal status for using of ARGOS

      -

       

      -

      Glossary - includes the terminology used in the tool and explains basic components

      -

       

      -

      User Guide - a guide for users to learn how to use Argos

      -

       

      -
      -

      Main menu - logged in

      -

       

      -

      -

       

      -

      Home  - gets you back to the homepage / dashboard

      -

       

      -

      My DMPs - includes all DMPs which the user is either the owner or the collaborator of

      -

       

      -

      My Datasets - includes all Datasets which the user is either the owner or the collaborator of

      -

       

      -

      Public DMPs - a collection of DMPs publicly available in Argos

      -

       

      -

      Public Datasets - a collection of Datasets publicly available in Argos

      -

       

      -

      About - informs about the scope and main functions of the tool

      -

       

      -

      Terms of Service - provides the legal status for using of ARGOS

      -

       

      -

      Glossary - includes the terminology used in the tool and explains basic components

      -

       

      -

      User Guide - a guide for users to learn how to use Argos

      -

       

      -

      Contact support - a contact form that facilitates communication with Argos team

      -

       

      -
      -
    9. -

      Dashboard

      -
    10. -

       

      -

      Dashboard is the console that appears after entering Argos from the Homepage and includes condensed information based on Argos function and their use.

      -

       

      -

      Dashboard - Not logged in

      -

       

      -

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Latest Activity - displays publicly available DMPs and Datasets according to the date of their publication in Argos and their Label (DMPs or Datasets)

      -
      -

       

      -

      - - - - - - - -
      -

      -
      -

      Public Usage - shows the number of publicly available DMPs, Datasets, Grants and Organizations included in Argos

      -

       

      -

      Note! When logged in to ARGOS the Homepage becomes a personal Dashboard, hence the numbers change to correspond to information provided by the individual’s activity.

      -
      -

       

      -

      Dashboard - Logged in

      -

       

      -

      -

       

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Latest Activity - displays users’ DMPs and Datasets classified according to the date of their last modification, the status of the document (draft, finalized, published) and their label (DMPs or Datasets)

      -
      -

       

      -

      - - - - - - - -
      -

      -
      -

      Personal Usage - shows users activity in DMPs, Datasets, Grants and Organizations

      -
      -

       

      -
    11. -

      My DMPs / My Datasets

      -
    12. -

       

      -

      Contains all DMPs and Datasets which the user is either the owner or the collaborator of. Both DMPs and Datasets on the user dashboard are classified by the date of their last modification, the status of the document (draft, finalized, published) and their label (DMPs or Datasets).

      -

       

      -

      My DMPs

      -

      Each DMP card is green and shows the role of the person viewing the DMP, the status of the writing process, the version of the current DMP, the grant associated with the DMP, the number and name of datasets that the DMP has.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      Add Dataset - adds more Datasets to existing DMPs

      -

       

      -

      Invite - provides people with edit rights on the document

      -

       

      -

      Clone - creates an exact replica of the DMP

      -

       

      -

      - - - - - - - -
      -

      -
      -

      New version - starts a new version of the DMP

      -

      All DMP Versions  - shows the history of the different versions of the existing DMP

      -

      Delete - permanently removes DMPs

      -

       

      -
      -

       

      -

       

      -

      My Datasets

      -

      Each Dataset card is yellow and shows the role of the person viewing the Dataset, the status of the writing process, the grant associated with the DMP and the tite of the DMP that the dataset is part of.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      Invite - Sends email or searches the Argos Users Catalogue to find colleagues/ collaborators. Invitation sent provides people with edit rights on the document.

      -

       

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Copy Dataset - creates a copy of the dataset

      -

      Delete - permanently removes Datasets

      -
      -
    13. -

      Public DMPs / Public Datasets

      -
    14. -

       

      -

      Contains DMPs outputs that are openly available in Argos. That means that DMP owners and members are making their DMP and/or Dataset outputs available to all Argos and non-Argos users who might want to consult or re-use them under the framework provided by the assigned DMP license.

      -

      Both DMPs and Datasets on the user dashboard are classified by the date of their last modification and their label (DMPs or Datasets). Users can also search for the DMP or Dataset from the search bar.

      -

       

      -

      Public DMPs

      -

      Each Public DMP card is green and displays the title of the DMP, its status (published), the version of the DMP, the grant associated with it, the number and name of datasets that the DMP contains.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      Clone - creates an exact replica of the DMP

      -

      - - - - - - - -
      -

      -
      -

      All DMP Versions - shows the history of the different versions of the existing DMP

      -

       

      -
      -

       

      -

       

      -

      Public Datasets

      -

      Each Public Dataset card is yellow and displays the title of the dataset, the status of the dataset (published), the grant associated with the DMP and the title of the DMP that the dataset is part of.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Copy Dataset - creates a copy of the dataset

      -
      -
    15. -

      Create DMPs

      -
    16. -

       

      -

      There are many ways to create new DMPs in Argos.

      -

       

      -

      Start new DMP - Start Wizard

      -

      -

       

      -

      There are four steps involved in creating a DMP: Main Info - Funding Info - License Info - Dataset Info

      -

       

      -

       

      -
        -
      1. Main Info
      2. -

         

        -

        -

        -

         

        -

         

        -

        Title - title of the DMP

        -

         

        -

        Description - brief description of what the DMP is about, it’s scope and objectives

        -

         

        -

        Language - the language of the DMP

        -

         

        -

        Visibility - how the DMP is displayed in Argos. By choosing Public, the DMP is automatically made available to all users from the “Public DMPs” collection.

        -

         

        -

        Researchers - the people that have produced, processed, analysed the data described in the DMP

        -

         

        -

        Organizations - the names of the organizations contributing to the creation and revision of the DMPs

        -

         

        -

        Contact - the contact details of the DMP owner

        -

         

        -

         

        -
      3. Funding Info
      4. -

         

        -

        -

         

        -

        Funding organizations - A drop-down menu where users may find the organisation that their research is funded by. In case that the name of a funding organisation can not be found in Argos, users may create a new record with the name and details of the funding organisation (“Insert it manually”).

        -

         

        -

        Grants - A drop-down menu to select the grant that is associated with the research project of the given funding organisation. In case that the grant can not be found in Argos, users may create a new record with the number and name of the grant (“Insert it manually”).

        -

         

        -

        Project - This field is to be completed only for projects where multiple grants apply. Otherwise, it is left blank and is later filled automatically by Argos metadata.

        -

         

        -

        Note!  There may be many projects associated with a grant number.

        -

         

        -

         

        -
      5. License Info
      6. -

         

        -

        -

        License - A list of licenses to choose from and assign to DMPs

        -

         

        -

         

        -
      7. Dataset Info
      8. -

         

        -

        -

         

        -

        Dataset Info - Select a template to describe your datasets. You may select more than one template.

        -

         

        -

        Save DMPs

        -

         

        -

        Discard - undo all changes made to the dataset

        -

         

        -

        Save - keeps all changes made to the DMP and continues work on the same page

        -

         

        -

        Save & Add Dataset - keeps all changes made to the DMP and the Dataset editor starts to describe the first dataset of the DMP

        - -
      -
    17. -

      Add Dataset(s)

      -
    18. -

      There are two ways to create datasets: when creating the first dataset of the DMP and when adding datasets to existing DMPs. Add datasets are linked to and are associated with at least one DMP in Argos. A dataset can not exist as an orphan record.

      -

       

      -

      First dataset

      -

      -

      Once the DMP is created, the user can fill in the description for their data in the Dataset Editor.

      -

       

      -

      Add dataset - Adds more Dataset to existing DMPs

      -

      There are three steps involved in adding a Dataset: Select a DMP for your Dataset - Select Template - Edit Dataset

      -

       

      -
        -
      1. Select a DMP for your Dataset
      2. -

        -

        Selects an existing DMP from the drop-down menu

        -

         

        -
      3. Select Template
      4. -

        -

        Selects the template of the Dataset that users are required to describe their datasets with by corresponding to their grant funding organisations.

        -

         

        -
      5. Edit Dataset
      6. -

        -

        A Dataset Editor to add information that describes management activities according to the selected template.

        -

         

        -

        Save Datasets

        -

        There are many ways to Save a DMP in Argos. They all serve the same function, but the difference lies in the follow up action.

        -

         

        -

        -

         

        -

        Discard - undo all changes made to the dataset

        -

         

        -

        Save - keeps all changes made and continues work on the same page

        -

         

        -

        Save & Close - keeps all changes made, but the editor’s window closes and the user is redirected to their dashboard

        -

         

        -

        Save & Add New - keeps all changes made and a new editor starts to describe a new dataset

        -
      -
    19. -

      DMPs/ Datasets records

      -
    20. -

      Records of DMPs and Datasets in Argos after editing and after finalization.

      -

      Users can view the DMPs and Datasets they create from their dashboard. By opening a record they have created, they are provided with additional functionalities that are binded to the completion of the DMP writing process. Different functionalities apply according to the status of the DMP, i.e. before or after the DMP finalization.

      -

       

      -

       

      -

      DMPs before finalization

      -

      -

       

      -

      Before finalization, the DMP can be further edited, deleted or cloned. Users can review information that they have added regarding grant, researchers, DMP description and datasets used. New datasets can be added at any time from this page. Users can export the DMP, they can start working on a new version and/ or invite colleagues to collaborate on completing the DMP.

      -

       

      -

       

      -

      Invite

      -

      -

       

      -

       

      -

      DMPs after finalization

      -

      -

       

      -

      After the DMP finalization, the DMP can be made publicly visible in Argos and deposited in Zenodo. Users can export the finalized DMP, they can start working on a new version and/ or invite colleagues to collaborate on completing the DMP. Finalization is possible to be reverted.

      -

       

      -

       

      -

      Datasets before finalization

      -

      Argos offers different options before and after the Dataset finalization.

      -

       

      -

      -

       

      -

      Before finalization, the Dataset can be further edited, deleted or cloned. Users can access the whole DMP that the dataset is part of from that page and review information that they have added regarding grant, researchers and Dataset description. Users can export the description of the dataset and invite colleagues to collaborate on its completion.

      -

       

      -

       

      -

      Datasets after finalization

      -

      -

       

      -

      After finalization, the Dataset can be exported and shared with colleagues for review.

      -

       

      -

       

      -

       

      -

       

      -

       

      -
    -
-
-
-
-
- - - - - - diff --git a/backend/web/src/main/resources/material/user-guide/UserGuide_en.html b/backend/web/src/main/resources/material/user-guide/UserGuide_en.html index b15c3d1c9..3eea0db69 100644 --- a/backend/web/src/main/resources/material/user-guide/UserGuide_en.html +++ b/backend/web/src/main/resources/material/user-guide/UserGuide_en.html @@ -2,1165 +2,16 @@ - + - + - - - -
-
-
- -
-
-
-
-

 

-
-
    -
  1. -

    Entities & Terminology

    -
  2. -
      -
    1. -

      Key entities

      -
    2. -

       

      -

      Data Management Plan (DMP) is a collection of dataset descriptions, associated with an activity (“project” or “grant”). A DMP may be versioned, is exportable to various forms, currently machine readable (xml, json) and human readable (pdf/openxml) and can be assigned a DOI and published in Zenodo.

      -

       

      -

      Dataset in Argos describes data according to a set of rules that is the dataset template.

      -

       

      -

      Dataset Template is the set of rules that describe what Datasets contain and how they are handled. Dataset Templates are modified by Admins and contain attributes/fields, behavioral rules (e.g. toggling visibility of fields) and validation rules. Dataset Templates are linked to DMPs so that users are provided with specific formats of descriptions.

      -

       

      -

      Project is a logical entity that defines the context where one or more Data Management Plans may be formed in.

      -

       

      -

      Grant is a logical entity that defines the context where one or more Data Management Plans may be formed in.

      -

       

      -

      Users are associated to DMPs and other entities (e.g. Datasets, Organizations) for authorization and may map to researchers.

      -

       

      -

      Import - Import function supports upload of .json files that are produced according to RDA specifications for machine-actionable DMPs

      -

       

      -

      -

       

      -

      - - - - - - -
      -

      Start New DMP is an easy way to start writing a DMP. It provides an editor that goes through the essential elements of a DMP and guides the process of its creation step by step.

      -

       

      -

      From “Homepage”

      -

      -

       

      -

      From Dashboard

      -

      -

      or

      -

      -

       

      -

      From “Add Dataset”

      -

      -
      -

       

      -

       

      -

      - - - - - - -
      -

      Add Dataset is an easy way to add new datasets to pre-existing DMPs.

      -

       

      -

      From Dashboard

      -

      -

       

      -

      From “My Datasets”

      -

      -

       

      -

      From “My DMPs”

      -

      -

       

      -

      From Dataset Editor

      -

      -
      -

       

      -
    3. -

      Secondary entities

      -
    4. -

       

      -

      Repository  - an electronic database or an information system where data are stored and maintained

      -

       

      -

      Data set - a collection of data which are bind together under a specific format

      -

       

      -

      Registry - a database of entities and descriptions

      -

       

      -

      Service - a software of specific operations and tasks that interacts with other software and hardware

      -

       

      -

      Researcher - an individual practicing research

      -

       

      -

      Funding organization - an organisation that funds research programmes and/ or researchers’ activities

      -

       

      -
    -
  3. -

    Navigation

    -
  4. -
      -
    1. -

      Homepage

      -
    2. -

       

      -

      The homepage can be found under argos.openaire.eu, also accessible from  the OpenAIRE Service catalogue and the EOSC.

      -

       

      -

      -

       

      -

      About - informs about the scope and main functions of the tool (How it works, ROADMAP, FAQs, Contributors)

      -

       

      -

      Resources - provides useful information about using Argos and includes dissemination material (Media Kit, User Guide, Co-branding)

      -

       

      -

      Contact - a contact form that facilitates communication with Argos team

      -

       

      -

      Sign in - enters the tool as a user

      -
    3. -

      Login

      -
    4. -

       

      -

      Different login options are available to choose from social media to research and scholarly communication channels.

      -

      -

       

      -

      Note! No user account is required.

      -

       

      -
    5. -

      User Account Menu

      -
    6. -

       

      -

      A dedicated, customisable space of the user’s personal profile.

      -

       

      -

      - - - - - - - -
      -

      -
      -

      My profile settings -  displays the profile page which contains details such as name, email, zenodo account details etc.

      -

       

      -

      Associated DMPs - a collection of users’ DMPs

      -

       

      -

      Log out - terminates the session, and redirects to the login page.

      -
      -

       

      -

       

      -
    7. -

      Main Menu

      -
    8. -

       

      -

      The main menu is located on the left side of the screen. Depending on how users view the tool, i.e. whether they have logged in or not, the main menu changes to include features that are available only in individuals’ dashboards.

      -

       

      -

      - - - - - - - -
      -

      Main menu - not logged in

      -

       

      -

      -

       

      -

      Home  - gets you back to the homepage / dashboard

      -

       

      -

      Public DMPs - a collection of DMPs publicly available in Argos

      -

       

      -

      Public Datasets - a collection of Datasets publicly available in Argos

      -

       

      -

      Co-Branding - a page to view the software and learn how to contribute

      -

       

      -

      Support - a contact form that facilitates communication with Argos team

      -

       

      -

      Send feedback - a feedback form to contribute thoughts and opinions about using Argos

      -

       

      -

      About - informs about the scope and main functions of the tool

      -

       

      -

      Terms of Service - provides the legal status for using of ARGOS

      -

       

      -

      Glossary - includes the terminology used in the tool and explains basic components

      -

       

      -

      User Guide - a guide for users to learn how to use Argos

      -

       

      -
      -

      Main menu - logged in

      -

       

      -

      -

       

      -

      Home  - gets you back to the homepage / dashboard

      -

       

      -

      My DMPs - includes all DMPs which the user is either the owner or the collaborator of

      -

       

      -

      My Datasets - includes all Datasets which the user is either the owner or the collaborator of

      -

       

      -

      Public DMPs - a collection of DMPs publicly available in Argos

      -

       

      -

      Public Datasets - a collection of Datasets publicly available in Argos

      -

       

      -

      About - informs about the scope and main functions of the tool

      -

       

      -

      Terms of Service - provides the legal status for using of ARGOS

      -

       

      -

      Glossary - includes the terminology used in the tool and explains basic components

      -

       

      -

      User Guide - a guide for users to learn how to use Argos

      -

       

      -

      Contact support - a contact form that facilitates communication with Argos team

      -

       

      -
      -
    9. -

      Dashboard

      -
    10. -

       

      -

      Dashboard is the console that appears after entering Argos from the Homepage and includes condensed information based on Argos function and their use.

      -

       

      -

      Dashboard - Not logged in

      -

       

      -

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Latest Activity - displays publicly available DMPs and Datasets according to the date of their publication in Argos and their Label (DMPs or Datasets)

      -
      -

       

      -

      - - - - - - - -
      -

      -
      -

      Public Usage - shows the number of publicly available DMPs, Datasets, Grants and Organizations included in Argos

      -

       

      -

      Note! When logged in to ARGOS the Homepage becomes a personal Dashboard, hence the numbers change to correspond to information provided by the individual’s activity.

      -
      -

       

      -

      Dashboard - Logged in

      -

       

      -

      -

       

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Latest Activity - displays users’ DMPs and Datasets classified according to the date of their last modification, the status of the document (draft, finalized, published) and their label (DMPs or Datasets)

      -
      -

       

      -

      - - - - - - - -
      -

      -
      -

      Personal Usage - shows users activity in DMPs, Datasets, Grants and Organizations

      -
      -

       

      -
    11. -

      My DMPs / My Datasets

      -
    12. -

       

      -

      Contains all DMPs and Datasets which the user is either the owner or the collaborator of. Both DMPs and Datasets on the user dashboard are classified by the date of their last modification, the status of the document (draft, finalized, published) and their label (DMPs or Datasets).

      -

       

      -

      My DMPs

      -

      Each DMP card is green and shows the role of the person viewing the DMP, the status of the writing process, the version of the current DMP, the grant associated with the DMP, the number and name of datasets that the DMP has.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      Add Dataset - adds more Datasets to existing DMPs

      -

       

      -

      Invite - provides people with edit rights on the document

      -

       

      -

      Clone - creates an exact replica of the DMP

      -

       

      -

      - - - - - - - -
      -

      -
      -

      New version - starts a new version of the DMP

      -

      All DMP Versions  - shows the history of the different versions of the existing DMP

      -

      Delete - permanently removes DMPs

      -

       

      -
      -

       

      -

       

      -

      My Datasets

      -

      Each Dataset card is yellow and shows the role of the person viewing the Dataset, the status of the writing process, the grant associated with the DMP and the tite of the DMP that the dataset is part of.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      Invite - Sends email or searches the Argos Users Catalogue to find colleagues/ collaborators. Invitation sent provides people with edit rights on the document.

      -

       

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Copy Dataset - creates a copy of the dataset

      -

      Delete - permanently removes Datasets

      -
      -
    13. -

      Public DMPs / Public Datasets

      -
    14. -

       

      -

      Contains DMPs outputs that are openly available in Argos. That means that DMP owners and members are making their DMP and/or Dataset outputs available to all Argos and non-Argos users who might want to consult or re-use them under the framework provided by the assigned DMP license.

      -

      Both DMPs and Datasets on the user dashboard are classified by the date of their last modification and their label (DMPs or Datasets). Users can also search for the DMP or Dataset from the search bar.

      -

       

      -

      Public DMPs

      -

      Each Public DMP card is green and displays the title of the DMP, its status (published), the version of the DMP, the grant associated with it, the number and name of datasets that the DMP contains.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      Clone - creates an exact replica of the DMP

      -

      - - - - - - - -
      -

      -
      -

      All DMP Versions - shows the history of the different versions of the existing DMP

      -

       

      -
      -

       

      -

       

      -

      Public Datasets

      -

      Each Public Dataset card is yellow and displays the title of the dataset, the status of the dataset (published), the grant associated with the DMP and the title of the DMP that the dataset is part of.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Copy Dataset - creates a copy of the dataset

      -
      -
    15. -

      Create DMPs

      -
    16. -

       

      -

      There are many ways to create new DMPs in Argos.

      -

       

      -

      Start new DMP - Start Wizard

      -

      -

       

      -

      There are four steps involved in creating a DMP: Main Info - Funding Info - License Info - Dataset Info

      -

       

      -

       

      -
        -
      1. Main Info
      2. -

         

        -

        -

        -

         

        -

         

        -

        Title - title of the DMP

        -

         

        -

        Description - brief description of what the DMP is about, it’s scope and objectives

        -

         

        -

        Language - the language of the DMP

        -

         

        -

        Visibility - how the DMP is displayed in Argos. By choosing Public, the DMP is automatically made available to all users from the “Public DMPs” collection.

        -

         

        -

        Researchers - the people that have produced, processed, analysed the data described in the DMP

        -

         

        -

        Organizations - the names of the organizations contributing to the creation and revision of the DMPs

        -

         

        -

        Contact - the contact details of the DMP owner

        -

         

        -

         

        -
      3. Funding Info
      4. -

         

        -

        -

         

        -

        Funding organizations - A drop-down menu where users may find the organisation that their research is funded by. In case that the name of a funding organisation can not be found in Argos, users may create a new record with the name and details of the funding organisation (“Insert it manually”).

        -

         

        -

        Grants - A drop-down menu to select the grant that is associated with the research project of the given funding organisation. In case that the grant can not be found in Argos, users may create a new record with the number and name of the grant (“Insert it manually”).

        -

         

        -

        Project - This field is to be completed only for projects where multiple grants apply. Otherwise, it is left blank and is later filled automatically by Argos metadata.

        -

         

        -

        Note!  There may be many projects associated with a grant number.

        -

         

        -

         

        -
      5. License Info
      6. -

         

        -

        -

        License - A list of licenses to choose from and assign to DMPs

        -

         

        -

         

        -
      7. Dataset Info
      8. -

         

        -

        -

         

        -

        Dataset Info - Select a template to describe your datasets. You may select more than one template.

        -

         

        -

        Save DMPs

        -

         

        -

        Discard - undo all changes made to the dataset

        -

         

        -

        Save - keeps all changes made to the DMP and continues work on the same page

        -

         

        -

        Save & Add Dataset - keeps all changes made to the DMP and the Dataset editor starts to describe the first dataset of the DMP

        - -
      -
    17. -

      Add Dataset(s)

      -
    18. -

      There are two ways to create datasets: when creating the first dataset of the DMP and when adding datasets to existing DMPs. Add datasets are linked to and are associated with at least one DMP in Argos. A dataset can not exist as an orphan record.

      -

       

      -

      First dataset

      -

      -

      Once the DMP is created, the user can fill in the description for their data in the Dataset Editor.

      -

       

      -

      Add dataset - Adds more Dataset to existing DMPs

      -

      There are three steps involved in adding a Dataset: Select a DMP for your Dataset - Select Template - Edit Dataset

      -

       

      -
        -
      1. Select a DMP for your Dataset
      2. -

        -

        Selects an existing DMP from the drop-down menu

        -

         

        -
      3. Select Template
      4. -

        -

        Selects the template of the Dataset that users are required to describe their datasets with by corresponding to their grant funding organisations.

        -

         

        -
      5. Edit Dataset
      6. -

        -

        A Dataset Editor to add information that describes management activities according to the selected template.

        -

         

        -

        Save Datasets

        -

        There are many ways to Save a DMP in Argos. They all serve the same function, but the difference lies in the follow up action.

        -

         

        -

        -

         

        -

        Discard - undo all changes made to the dataset

        -

         

        -

        Save - keeps all changes made and continues work on the same page

        -

         

        -

        Save & Close - keeps all changes made, but the editor’s window closes and the user is redirected to their dashboard

        -

         

        -

        Save & Add New - keeps all changes made and a new editor starts to describe a new dataset

        -
      -
    19. -

      DMPs/ Datasets records

      -
    20. -

      Records of DMPs and Datasets in Argos after editing and after finalization.

      -

      Users can view the DMPs and Datasets they create from their dashboard. By opening a record they have created, they are provided with additional functionalities that are binded to the completion of the DMP writing process. Different functionalities apply according to the status of the DMP, i.e. before or after the DMP finalization.

      -

       

      -

       

      -

      DMPs before finalization

      -

      -

       

      -

      Before finalization, the DMP can be further edited, deleted or cloned. Users can review information that they have added regarding grant, researchers, DMP description and datasets used. New datasets can be added at any time from this page. Users can export the DMP, they can start working on a new version and/ or invite colleagues to collaborate on completing the DMP.

      -

       

      -

       

      -

      Invite

      -

      -

       

      -

       

      -

      DMPs after finalization

      -

      -

       

      -

      After the DMP finalization, the DMP can be made publicly visible in Argos and deposited in Zenodo. Users can export the finalized DMP, they can start working on a new version and/ or invite colleagues to collaborate on completing the DMP. Finalization is possible to be reverted.

      -

       

      -

       

      -

      Datasets before finalization

      -

      Argos offers different options before and after the Dataset finalization.

      -

       

      -

      -

       

      -

      Before finalization, the Dataset can be further edited, deleted or cloned. Users can access the whole DMP that the dataset is part of from that page and review information that they have added regarding grant, researchers and Dataset description. Users can export the description of the dataset and invite colleagues to collaborate on its completion.

      -

       

      -

       

      -

      Datasets after finalization

      -

      -

       

      -

      After finalization, the Dataset can be exported and shared with colleagues for review.

      -

       

      -

       

      -

       

      -

       

      -

       

      -
    -
-
-
-
-
- - - - - - diff --git a/backend/web/src/main/resources/material/user-guide/UserGuide_gr.html b/backend/web/src/main/resources/material/user-guide/UserGuide_gr.html deleted file mode 100644 index b15c3d1c9..000000000 --- a/backend/web/src/main/resources/material/user-guide/UserGuide_gr.html +++ /dev/null @@ -1,2523 +0,0 @@ - - - - - - - - - - - - - - -
-
-
- -
-
-
-
-

 

-
-
    -
  1. -

    Entities & Terminology

    -
  2. -
      -
    1. -

      Key entities

      -
    2. -

       

      -

      Data Management Plan (DMP) is a collection of dataset descriptions, associated with an activity (“project” or “grant”). A DMP may be versioned, is exportable to various forms, currently machine readable (xml, json) and human readable (pdf/openxml) and can be assigned a DOI and published in Zenodo.

      -

       

      -

      Dataset in Argos describes data according to a set of rules that is the dataset template.

      -

       

      -

      Dataset Template is the set of rules that describe what Datasets contain and how they are handled. Dataset Templates are modified by Admins and contain attributes/fields, behavioral rules (e.g. toggling visibility of fields) and validation rules. Dataset Templates are linked to DMPs so that users are provided with specific formats of descriptions.

      -

       

      -

      Project is a logical entity that defines the context where one or more Data Management Plans may be formed in.

      -

       

      -

      Grant is a logical entity that defines the context where one or more Data Management Plans may be formed in.

      -

       

      -

      Users are associated to DMPs and other entities (e.g. Datasets, Organizations) for authorization and may map to researchers.

      -

       

      -

      Import - Import function supports upload of .json files that are produced according to RDA specifications for machine-actionable DMPs

      -

       

      -

      -

       

      -

      - - - - - - -
      -

      Start New DMP is an easy way to start writing a DMP. It provides an editor that goes through the essential elements of a DMP and guides the process of its creation step by step.

      -

       

      -

      From “Homepage”

      -

      -

       

      -

      From Dashboard

      -

      -

      or

      -

      -

       

      -

      From “Add Dataset”

      -

      -
      -

       

      -

       

      -

      - - - - - - -
      -

      Add Dataset is an easy way to add new datasets to pre-existing DMPs.

      -

       

      -

      From Dashboard

      -

      -

       

      -

      From “My Datasets”

      -

      -

       

      -

      From “My DMPs”

      -

      -

       

      -

      From Dataset Editor

      -

      -
      -

       

      -
    3. -

      Secondary entities

      -
    4. -

       

      -

      Repository  - an electronic database or an information system where data are stored and maintained

      -

       

      -

      Data set - a collection of data which are bind together under a specific format

      -

       

      -

      Registry - a database of entities and descriptions

      -

       

      -

      Service - a software of specific operations and tasks that interacts with other software and hardware

      -

       

      -

      Researcher - an individual practicing research

      -

       

      -

      Funding organization - an organisation that funds research programmes and/ or researchers’ activities

      -

       

      -
    -
  3. -

    Navigation

    -
  4. -
      -
    1. -

      Homepage

      -
    2. -

       

      -

      The homepage can be found under argos.openaire.eu, also accessible from  the OpenAIRE Service catalogue and the EOSC.

      -

       

      -

      -

       

      -

      About - informs about the scope and main functions of the tool (How it works, ROADMAP, FAQs, Contributors)

      -

       

      -

      Resources - provides useful information about using Argos and includes dissemination material (Media Kit, User Guide, Co-branding)

      -

       

      -

      Contact - a contact form that facilitates communication with Argos team

      -

       

      -

      Sign in - enters the tool as a user

      -
    3. -

      Login

      -
    4. -

       

      -

      Different login options are available to choose from social media to research and scholarly communication channels.

      -

      -

       

      -

      Note! No user account is required.

      -

       

      -
    5. -

      User Account Menu

      -
    6. -

       

      -

      A dedicated, customisable space of the user’s personal profile.

      -

       

      -

      - - - - - - - -
      -

      -
      -

      My profile settings -  displays the profile page which contains details such as name, email, zenodo account details etc.

      -

       

      -

      Associated DMPs - a collection of users’ DMPs

      -

       

      -

      Log out - terminates the session, and redirects to the login page.

      -
      -

       

      -

       

      -
    7. -

      Main Menu

      -
    8. -

       

      -

      The main menu is located on the left side of the screen. Depending on how users view the tool, i.e. whether they have logged in or not, the main menu changes to include features that are available only in individuals’ dashboards.

      -

       

      -

      - - - - - - - -
      -

      Main menu - not logged in

      -

       

      -

      -

       

      -

      Home  - gets you back to the homepage / dashboard

      -

       

      -

      Public DMPs - a collection of DMPs publicly available in Argos

      -

       

      -

      Public Datasets - a collection of Datasets publicly available in Argos

      -

       

      -

      Co-Branding - a page to view the software and learn how to contribute

      -

       

      -

      Support - a contact form that facilitates communication with Argos team

      -

       

      -

      Send feedback - a feedback form to contribute thoughts and opinions about using Argos

      -

       

      -

      About - informs about the scope and main functions of the tool

      -

       

      -

      Terms of Service - provides the legal status for using of ARGOS

      -

       

      -

      Glossary - includes the terminology used in the tool and explains basic components

      -

       

      -

      User Guide - a guide for users to learn how to use Argos

      -

       

      -
      -

      Main menu - logged in

      -

       

      -

      -

       

      -

      Home  - gets you back to the homepage / dashboard

      -

       

      -

      My DMPs - includes all DMPs which the user is either the owner or the collaborator of

      -

       

      -

      My Datasets - includes all Datasets which the user is either the owner or the collaborator of

      -

       

      -

      Public DMPs - a collection of DMPs publicly available in Argos

      -

       

      -

      Public Datasets - a collection of Datasets publicly available in Argos

      -

       

      -

      About - informs about the scope and main functions of the tool

      -

       

      -

      Terms of Service - provides the legal status for using of ARGOS

      -

       

      -

      Glossary - includes the terminology used in the tool and explains basic components

      -

       

      -

      User Guide - a guide for users to learn how to use Argos

      -

       

      -

      Contact support - a contact form that facilitates communication with Argos team

      -

       

      -
      -
    9. -

      Dashboard

      -
    10. -

       

      -

      Dashboard is the console that appears after entering Argos from the Homepage and includes condensed information based on Argos function and their use.

      -

       

      -

      Dashboard - Not logged in

      -

       

      -

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Latest Activity - displays publicly available DMPs and Datasets according to the date of their publication in Argos and their Label (DMPs or Datasets)

      -
      -

       

      -

      - - - - - - - -
      -

      -
      -

      Public Usage - shows the number of publicly available DMPs, Datasets, Grants and Organizations included in Argos

      -

       

      -

      Note! When logged in to ARGOS the Homepage becomes a personal Dashboard, hence the numbers change to correspond to information provided by the individual’s activity.

      -
      -

       

      -

      Dashboard - Logged in

      -

       

      -

      -

       

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Latest Activity - displays users’ DMPs and Datasets classified according to the date of their last modification, the status of the document (draft, finalized, published) and their label (DMPs or Datasets)

      -
      -

       

      -

      - - - - - - - -
      -

      -
      -

      Personal Usage - shows users activity in DMPs, Datasets, Grants and Organizations

      -
      -

       

      -
    11. -

      My DMPs / My Datasets

      -
    12. -

       

      -

      Contains all DMPs and Datasets which the user is either the owner or the collaborator of. Both DMPs and Datasets on the user dashboard are classified by the date of their last modification, the status of the document (draft, finalized, published) and their label (DMPs or Datasets).

      -

       

      -

      My DMPs

      -

      Each DMP card is green and shows the role of the person viewing the DMP, the status of the writing process, the version of the current DMP, the grant associated with the DMP, the number and name of datasets that the DMP has.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      Add Dataset - adds more Datasets to existing DMPs

      -

       

      -

      Invite - provides people with edit rights on the document

      -

       

      -

      Clone - creates an exact replica of the DMP

      -

       

      -

      - - - - - - - -
      -

      -
      -

      New version - starts a new version of the DMP

      -

      All DMP Versions  - shows the history of the different versions of the existing DMP

      -

      Delete - permanently removes DMPs

      -

       

      -
      -

       

      -

       

      -

      My Datasets

      -

      Each Dataset card is yellow and shows the role of the person viewing the Dataset, the status of the writing process, the grant associated with the DMP and the tite of the DMP that the dataset is part of.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      Invite - Sends email or searches the Argos Users Catalogue to find colleagues/ collaborators. Invitation sent provides people with edit rights on the document.

      -

       

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Copy Dataset - creates a copy of the dataset

      -

      Delete - permanently removes Datasets

      -
      -
    13. -

      Public DMPs / Public Datasets

      -
    14. -

       

      -

      Contains DMPs outputs that are openly available in Argos. That means that DMP owners and members are making their DMP and/or Dataset outputs available to all Argos and non-Argos users who might want to consult or re-use them under the framework provided by the assigned DMP license.

      -

      Both DMPs and Datasets on the user dashboard are classified by the date of their last modification and their label (DMPs or Datasets). Users can also search for the DMP or Dataset from the search bar.

      -

       

      -

      Public DMPs

      -

      Each Public DMP card is green and displays the title of the DMP, its status (published), the version of the DMP, the grant associated with it, the number and name of datasets that the DMP contains.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      Clone - creates an exact replica of the DMP

      -

      - - - - - - - -
      -

      -
      -

      All DMP Versions - shows the history of the different versions of the existing DMP

      -

       

      -
      -

       

      -

       

      -

      Public Datasets

      -

      Each Public Dataset card is yellow and displays the title of the dataset, the status of the dataset (published), the grant associated with the DMP and the title of the DMP that the dataset is part of.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Copy Dataset - creates a copy of the dataset

      -
      -
    15. -

      Create DMPs

      -
    16. -

       

      -

      There are many ways to create new DMPs in Argos.

      -

       

      -

      Start new DMP - Start Wizard

      -

      -

       

      -

      There are four steps involved in creating a DMP: Main Info - Funding Info - License Info - Dataset Info

      -

       

      -

       

      -
        -
      1. Main Info
      2. -

         

        -

        -

        -

         

        -

         

        -

        Title - title of the DMP

        -

         

        -

        Description - brief description of what the DMP is about, it’s scope and objectives

        -

         

        -

        Language - the language of the DMP

        -

         

        -

        Visibility - how the DMP is displayed in Argos. By choosing Public, the DMP is automatically made available to all users from the “Public DMPs” collection.

        -

         

        -

        Researchers - the people that have produced, processed, analysed the data described in the DMP

        -

         

        -

        Organizations - the names of the organizations contributing to the creation and revision of the DMPs

        -

         

        -

        Contact - the contact details of the DMP owner

        -

         

        -

         

        -
      3. Funding Info
      4. -

         

        -

        -

         

        -

        Funding organizations - A drop-down menu where users may find the organisation that their research is funded by. In case that the name of a funding organisation can not be found in Argos, users may create a new record with the name and details of the funding organisation (“Insert it manually”).

        -

         

        -

        Grants - A drop-down menu to select the grant that is associated with the research project of the given funding organisation. In case that the grant can not be found in Argos, users may create a new record with the number and name of the grant (“Insert it manually”).

        -

         

        -

        Project - This field is to be completed only for projects where multiple grants apply. Otherwise, it is left blank and is later filled automatically by Argos metadata.

        -

         

        -

        Note!  There may be many projects associated with a grant number.

        -

         

        -

         

        -
      5. License Info
      6. -

         

        -

        -

        License - A list of licenses to choose from and assign to DMPs

        -

         

        -

         

        -
      7. Dataset Info
      8. -

         

        -

        -

         

        -

        Dataset Info - Select a template to describe your datasets. You may select more than one template.

        -

         

        -

        Save DMPs

        -

         

        -

        Discard - undo all changes made to the dataset

        -

         

        -

        Save - keeps all changes made to the DMP and continues work on the same page

        -

         

        -

        Save & Add Dataset - keeps all changes made to the DMP and the Dataset editor starts to describe the first dataset of the DMP

        - -
      -
    17. -

      Add Dataset(s)

      -
    18. -

      There are two ways to create datasets: when creating the first dataset of the DMP and when adding datasets to existing DMPs. Add datasets are linked to and are associated with at least one DMP in Argos. A dataset can not exist as an orphan record.

      -

       

      -

      First dataset

      -

      -

      Once the DMP is created, the user can fill in the description for their data in the Dataset Editor.

      -

       

      -

      Add dataset - Adds more Dataset to existing DMPs

      -

      There are three steps involved in adding a Dataset: Select a DMP for your Dataset - Select Template - Edit Dataset

      -

       

      -
        -
      1. Select a DMP for your Dataset
      2. -

        -

        Selects an existing DMP from the drop-down menu

        -

         

        -
      3. Select Template
      4. -

        -

        Selects the template of the Dataset that users are required to describe their datasets with by corresponding to their grant funding organisations.

        -

         

        -
      5. Edit Dataset
      6. -

        -

        A Dataset Editor to add information that describes management activities according to the selected template.

        -

         

        -

        Save Datasets

        -

        There are many ways to Save a DMP in Argos. They all serve the same function, but the difference lies in the follow up action.

        -

         

        -

        -

         

        -

        Discard - undo all changes made to the dataset

        -

         

        -

        Save - keeps all changes made and continues work on the same page

        -

         

        -

        Save & Close - keeps all changes made, but the editor’s window closes and the user is redirected to their dashboard

        -

         

        -

        Save & Add New - keeps all changes made and a new editor starts to describe a new dataset

        -
      -
    19. -

      DMPs/ Datasets records

      -
    20. -

      Records of DMPs and Datasets in Argos after editing and after finalization.

      -

      Users can view the DMPs and Datasets they create from their dashboard. By opening a record they have created, they are provided with additional functionalities that are binded to the completion of the DMP writing process. Different functionalities apply according to the status of the DMP, i.e. before or after the DMP finalization.

      -

       

      -

       

      -

      DMPs before finalization

      -

      -

       

      -

      Before finalization, the DMP can be further edited, deleted or cloned. Users can review information that they have added regarding grant, researchers, DMP description and datasets used. New datasets can be added at any time from this page. Users can export the DMP, they can start working on a new version and/ or invite colleagues to collaborate on completing the DMP.

      -

       

      -

       

      -

      Invite

      -

      -

       

      -

       

      -

      DMPs after finalization

      -

      -

       

      -

      After the DMP finalization, the DMP can be made publicly visible in Argos and deposited in Zenodo. Users can export the finalized DMP, they can start working on a new version and/ or invite colleagues to collaborate on completing the DMP. Finalization is possible to be reverted.

      -

       

      -

       

      -

      Datasets before finalization

      -

      Argos offers different options before and after the Dataset finalization.

      -

       

      -

      -

       

      -

      Before finalization, the Dataset can be further edited, deleted or cloned. Users can access the whole DMP that the dataset is part of from that page and review information that they have added regarding grant, researchers and Dataset description. Users can export the description of the dataset and invite colleagues to collaborate on its completion.

      -

       

      -

       

      -

      Datasets after finalization

      -

      -

       

      -

      After finalization, the Dataset can be exported and shared with colleagues for review.

      -

       

      -

       

      -

       

      -

       

      -

       

      -
    -
-
-
-
-
- - - - - - diff --git a/backend/web/src/main/resources/material/user-guide/UserGuide_pt.html b/backend/web/src/main/resources/material/user-guide/UserGuide_pt.html deleted file mode 100644 index 31855cda0..000000000 --- a/backend/web/src/main/resources/material/user-guide/UserGuide_pt.html +++ /dev/null @@ -1,2445 +0,0 @@ - - - - - - - - - - - - - - - -
-
-

1.    Terminologia

-

1.1 Termos chave

-
    -
  • -

    Plano de Gestão de Dados (PGD) – Corresponde a um conjunto de Datasets, associado a uma determinada atividade (grant ou projeto). O PGD pode ser versionado e exportado em vários formatos. É, atualmente, “machine readable” (xml, json) e “human readable” (pdf/openxml). Pode, igualmente, ser-lhe atribuído um DOI e proceder-se à sua publicação no Zenodo.

    -
  • -
  • -

    Dataset - Descreve os dados de acordo com um conjunto de regras, através de um modelo de dados.

    -
  • -
  • -

    Modelo de Dados – é 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 grant e/ou um projeto definem o contexto em que um ou mais PGDs podem ser criados.

    -
  • -
  • -

    Importar ficheiro - 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.

    -
  • -
-
-

O botão “Criar novo PGD” permite de forma simples iniciar o seu plano. Esta opção fornece um editor que percorre os elementos essenciais de um PGD, guiando o processo de criação do documento passo a passo.

A partir do "Início"



-
-

A partir de “Adicione um Dataset”



Adicionar um Dataset é uma forma simples de adicionar novos modelos de dados a PGDs pré-existentes.

A partir do “Início”

-

A partir de “Os meus Datasets”



A partir de “Os meus PGDs”



-

A partir do “Editor de Dataset”



-

1.2  Outros termos

-
    -
  • -

    Repositório - Base de dados eletrónica ou sistema de informação onde os dados são armazenados e mantidos.

    -
  • -
  • -

    Registo – Uma base de dados de entidades e descrições.

    -
  • -
  • -

    Serviço - Um software de operações e tarefas específicas, que interage com outro software e hardware.

    -
  • -
  • -

    Investigador – Um indivíduo que pratica investigação.

    -
  • -
  • -

    Financiador – Uma organização que financia projetos de investigação e/ou atividades de investigadores.

    -
  • -
-
-

2. Navegação

-

2.1 Página Inicial

-

A página inicial poderá ser encontrada em https://argos.openaire.eu/splash/, também acessível através do Catálogo de Serviços do OpenAIRE e EOSC.

-

-
    -
  • -

    Sobre – Informa sobre o âmbito e principais funções da ferramenta (como funciona, Roadmap, FAQs, quais os contribuidores).

    -
  • -
  • -

    Recursos - Fornece informação útil sobre a utilização do Argos e inclui material de divulgação (Media Kit, Guia do Utilizador, Co-branding).

    -
  • -
  • -

    Contactos – Um formulário de contacto que permite a comunicação com a equipa do Argos.

    -
  • -
  • -

    Sign in – Entrar na aplicação como utilizador.

    -
  • -
-

2.2    Login

-


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.

-


Atenção! Não é necessária uma conta de utilizador.

-

2.3   Menu do Utilizador

-

Espaço dedicado e que poderá ser customizado de acordo com o perfil pessoal do utilizador.

- - - - - - - -
-

Definições do Meu Perfil -  Exibe a página de perfil que contém detalhes  tais como: nome, e-mail, dados da conta Zenodo, etc.

-

PGDs associados - Coleção dos PGDs do utilizador.

-

Log out - Termina a sessão e redireciona para a página de login.

-
-

 

-

2.4   Menu Principal

-

O menu principal está localizado no lado esquerdo do ecrã.

-

Dependendo da forma como os utilizadores vêem a ferramenta, ou seja, se já efetuaram o login ou não, o menu principal altera-se para incluir características que estão apenas disponíveis no painel dos respetivos  utilizadores.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-


Menu Principal – 
Antes de  Iniciar a Sessão

-
-

 

-
-


Menu Principal - Após Iniciar 
a Sessão

-

-

 

-
-

 

-
Início  - Direciona o utilizador para a página inicial/painel. -

 

-
Início  - Direciona o utilizador para a página inicial/painel.
PGDs públicos – Conjunto de PGDs que estão disponíveis publicamente no Argos. -

 

-
Os meus PGDs - Inclui todos os PGDs dos quais o utilizador é proprietário ou colaborador.
Datasets públicos – Conjunto de Datasets que estão disponíveis publicamente no Argos. -

 

-
Os meus Datasets - Inclui todos os Datasets dos quais o utilizador é proprietário ou colaborador.
Co-Branding - Página para visualizar o software e aprender como contribuir para a aplicação. -

 

-
PGDs públicos - Conjunto de PGDs que estão disponíveis publicamente no Argos.
Suporte - Formulário de contacto que permite a comunicação com a equipa do Argos. -

 

-
Datasets públicos - Conjunto de Datasets que estão disponíveis publicamente no Argos.
Enviar comentários - Formulário de feedback para contribuir com sugestões e opiniões sobre a utilização de Argos. -

 

-
Sobre - Informa sobre o âmbito e principais funcionalidades da ferramenta.
Sobre - Informa sobre o âmbito e principais funcionalidades da ferramenta. -

 

-
Condições do Serviço - Providencia o status legal para a utilização do Argos.
Condições do Serviço - Providencia o status legal para a utilização do Argos. -

 

-
Glossário - Inclui os termos usados na ferramenta e explica os componentes básicos.
Glossário - Inclui os termos usados na ferramenta e explica os componentes básicos. -

 

-
Guia do Utilizador - Guia para os utilizadores aprenderem a usar o Argos.
Guia do Utilizador - Guia para os utilizadores aprenderem a usar o Argos. -

 

-
-

Contacto de suporte - Formulário de contacto que permite a comunicação com a equipa do Argos.

-
-

 

-

2.5   Início

-

O “Início” é a informação que aparece depois de entrar no Argos a partir da página inicial.

-

Inclui informação condensada baseada na função Argos e na sua utilização.

-


Início –
Antes de iniciar a sessão

- - - - - - - -
-


Última Atividade
- 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).

-
-
- - - - - - - -
-


Uso Público
- Mostra o número de PGDs, Datasets, Grants e Organizações publicamente disponíveis e incluídas no Argos.

-

 

-

Atenção! Após iniciar a sessão no Argos, a página inicial torna-se num painel pessoal e, como tal, os números alteram-se de acordo com a atividade do utilizador.

-
-

 

-

Início - Após Iniciar a Sessão



- - - - - - - -
-


Última Atividade
- 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).

-
-

 

- - - - - - - -
-


Uso Pessoal
- Mostra a atividade do utilizador nos PGDs, Datasets, Grants e Organizações.

-
-

 

-

2.6   Os Meus PGDs / Os Meus Datasets

-
-

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).

-

Os Meus PGDs

-

Quando a etiqueta é verde 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.

-
    -
  • -

    Exportar - 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).

    -
  • -
-
    -
  • -

    Adicionar Dataset - Permite adicionar mais Datasets aos PGDs existentes.

    -
  • -
-
    -
  • -

    Convidar - Fornece direitos de edição sobre o documento.

    -
  • -
  • -

    Duplicar - Cria uma réplica exata do PGD.

    -
  • -
- - - - - - - -
-


Nova Versão
- Inicia uma nova versão do PGD.

-

Ver todas as Versões do PGD  - Mostra o histórico das diferentes versões do PGD.

-

Eliminar - Remove permanentemente o PGD.

-
-
-

Os Meus Datasets

-

Quando a etiqueta é amarelo 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.



-
    -
  • -

    Exportar - 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).

    -
  • -
  • -

    Convidar - Possibilidade de envio de e-mail ou pesquisa no Catálogo de Utilizadores do Argos, de modo a encontrar colegas/colaboradores. O convite enviado fornece direitos de edição sobre o documento.

    -
  • -
  • -

    Copiar o Dataset - Cria uma cópia do Dataset.

    -
  • -
  • -

    Eliminar - Remove permanentemente o Dataset.

    -
  • -
-
-

2.7   PGDs Públicos / Datasets Públicos

-


Contém informação de PGDs que estão disponíveis em acesso aberto no Argos. Isto significa que os proprietários e membros do PGD estão a disponibilizar os seus PGDs e Datasets associados a todos os utilizadores (Argos e não Argos), que queiram consultá-los ou reutilizá-los no âmbito da licença atribuída.

-

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.

-

PGDs Públicos

-

Quando a etiqueta é verde 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.

-



-
    -
  • -

    Exportar - 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).

    -
  • -
-
    -
  • -

    Duplicar - Cria uma cópia idêntica do PGD.

    -
  • -
-

Datasets Públicos

-

Quando a etiqueta é amarelo 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 associado ao PGD e o título do PGD do qual o Dataset faz parte.



-
    -
  • -

    Exportar - 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).

    -
  • -
- - - - - - - -
-

Copiar o Dataset - Cria uma cópia do Dataset.

-
-

 

-

2.8   Criar novo PGD

-


Existem várias formas de criar um novo PGD no Argos.

-

-

Existem 4 etapas envolvidas na criação de um PGD:

-

- Informação Geral;

-

- Informação sobre o Financiamento;

-

- Informação sobre a Licença;

-

- Informação sobre os Datasets.

-

Informação Geral

-



-
    -
  • -

    Título do PGD - Título do documento.

    -
  • -
  • -

    Descrição - Breve descrição do contexto e objetivos do PGD.

    -
  • -
  • -

    Idioma - Idioma do PGD.

    -
  • -
  • -

    Visibilidade – Informação sobre como será disponibilizado o PGD no Argos. Ao selecionar “Público” o PGD é disponibilizado a todos os utilizadores, através da opção “PGDs Públicos”.

    -
  • -
  • -

    Investigadores - As pessoas que produziram, processaram e analisaram os dados descritos no PGD.

    -
  • -
  • -

    Organizações - Nomes das organizações que contribuem para a criação e a revisão dos PGDs.

    -
  • -
  • -

    Contacto - Detalhe do proprietário do PGD.

    -
  • -
-

Informação sobre o Financiamento

-

-
    -
  • -

    Organizações de Financiamento - 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").

    -
  • -
  • -

    Grants - Integra um menu pendente para selecionar o grant que está associado ao projeto de investigação da organização financiadora em questão. Caso o grant não seja encontrado no Argos, os utilizadores podem criar um novo registo com o número e nome do mesmo ("Inserir manualmente").

    -
  • -
  • -

    Projeto - Este campo é para ser preenchido apenas por projetos onde múltiplos grants são aplicáveis. De outra forma, este campo não deverá ser preenchido, sendo mais tarde adicionada informação de forma automática pelos metadados do Argos.

    -
  • -
-

Informação sobre a Licença

-


-
    -
  • -

    Licença - Inclui uma lista de licenças a escolher e a atribuir aos PGDs.

    -
  • -
-
-

Informação sobre os Datasets

-


-
    -
  • -

    Informação sobre os Datasets – Permite selecionar o modelo para descrever os seus datasets. Poderá selecionar mais do que um modelo de dados.

    -
  • -
  • -

    Guardar Salva todas as alterações efetuadas ao PGD, permitindo continuar a trabalhar na mesma página.

    -
  • -
  • -

    Guardar & Adicionar Dataset – Salva todas as alterações efetuadas ao PGD, sendo dado início ao Editor do Dataset para começar a descrever o primeiro conjunto de dados do PGD.

    -
  • -
-
-

2.9  Adicionar Dataset(s)

-
-

Existem duas maneiras de criar Datasets:

-

- Criar o primeiro Dataset do PGD;

-

- Adicionar Datasets aos PGDs existentes.

-


No Argos, os Datasets estão ligados e associados a pelo menos um PGD. Um Dataset não pode existir como registo único.

-

Primeiro Dataset

-

-

Uma vez criado o PGD, o utilizador poderá preencher a descrição dos seus dados no “Editor de Dataset”.

-

 

-
    -
  • -

    Adicionar Dataset - Adiciona mais Datasets a PGDs já existentes.

    -
  • -
-

São três os passos a seguir para adicionar um Dataset:

-
    -
  • -
      -
    • -

      Selecionar o PGD para o seu Dataset;

      -
    • -
    • -

      Selecionar o modelo de dados respetivo;

      -
    • -
    • -

      Editar o Dataset.

      -
    • -
    -
  • -
-
-

Selecione um PGD para o seu Dataset

-


-

Selecione um PGD já existente na lista.

-
-

Selecione um Modelo

-
-

-
-

Selecionar o modelo de dados para descrever o seu Dataset, de acordo com a organização que financia o seu grant.

-


Edite o Dataset

-
-

O “Editor de Dataset” apoia na descrição de informação de acordo com o modelo selecionado.

-


-
    -
  • -

    Guardar Datasets - Existem várias formas de guardar Datasets no Argos. Todas têm a mesma finalidade, diferindo da ação de acompanhamento.

    -
  • -
-
    -
  • -

    Ignorar – Não guarda as alterações realizadas no Dataset.

    -
  • -
  • -

    Guardar – Salva todas as alterações realizadas e permite continuar a trabalhar na mesma página.

    -
  • -
  • -

    Concluir – Salva todas as alterações realizadas, encerrando a janela do editor e redirecionando para o “Início”.

    -

    -
  • -
-
-

2.10 Registo de PGDs/Datasets

-

Regista os PGDs e Datasets no Argos, após a sua edição e conclusão.

-

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.

-

São aplicáveis funcionalidades diferentes consoante o estado do PGD, ou seja, antes ou depois da conclusão do PGD.

-


Antes de concluir o PGD

-

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.

-

Podem ser adicionados novos Datasets em qualquer altura, a partir desta página.

-

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.

-


Convidar

-



-

Após concluir o PGD


-
-

Após a conclusão do PGD, este poderá ser tornado publicamente visível no Argos e depositado no Zenodo.

-

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.

-

É possível reverter a conclusão do PGD.

-

 

-

Antes de concluir os Datasets

-



-

Antes de concluir o Dataset, este pode ainda ser editado, eliminado ou duplicado.

-

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.

-

Os utilizadores podem exportar a descrição do Dataset e convidar os colegas a colaborar na sua conclusão.

-

 

-

 Após concluir os Datasets

-


-


Após a conclusão do Dataset, este poderá ser exportado e partilhado com colegas para revisão.


-

 

-
- - - - \ No newline at end of file diff --git a/backend/web/src/main/resources/material/user-guide/UserGuide_sk.html b/backend/web/src/main/resources/material/user-guide/UserGuide_sk.html deleted file mode 100644 index b15c3d1c9..000000000 --- a/backend/web/src/main/resources/material/user-guide/UserGuide_sk.html +++ /dev/null @@ -1,2523 +0,0 @@ - - - - - - - - - - - - - - -
-
-
- -
-
-
-
-

 

-
-
    -
  1. -

    Entities & Terminology

    -
  2. -
      -
    1. -

      Key entities

      -
    2. -

       

      -

      Data Management Plan (DMP) is a collection of dataset descriptions, associated with an activity (“project” or “grant”). A DMP may be versioned, is exportable to various forms, currently machine readable (xml, json) and human readable (pdf/openxml) and can be assigned a DOI and published in Zenodo.

      -

       

      -

      Dataset in Argos describes data according to a set of rules that is the dataset template.

      -

       

      -

      Dataset Template is the set of rules that describe what Datasets contain and how they are handled. Dataset Templates are modified by Admins and contain attributes/fields, behavioral rules (e.g. toggling visibility of fields) and validation rules. Dataset Templates are linked to DMPs so that users are provided with specific formats of descriptions.

      -

       

      -

      Project is a logical entity that defines the context where one or more Data Management Plans may be formed in.

      -

       

      -

      Grant is a logical entity that defines the context where one or more Data Management Plans may be formed in.

      -

       

      -

      Users are associated to DMPs and other entities (e.g. Datasets, Organizations) for authorization and may map to researchers.

      -

       

      -

      Import - Import function supports upload of .json files that are produced according to RDA specifications for machine-actionable DMPs

      -

       

      -

      -

       

      -

      - - - - - - -
      -

      Start New DMP is an easy way to start writing a DMP. It provides an editor that goes through the essential elements of a DMP and guides the process of its creation step by step.

      -

       

      -

      From “Homepage”

      -

      -

       

      -

      From Dashboard

      -

      -

      or

      -

      -

       

      -

      From “Add Dataset”

      -

      -
      -

       

      -

       

      -

      - - - - - - -
      -

      Add Dataset is an easy way to add new datasets to pre-existing DMPs.

      -

       

      -

      From Dashboard

      -

      -

       

      -

      From “My Datasets”

      -

      -

       

      -

      From “My DMPs”

      -

      -

       

      -

      From Dataset Editor

      -

      -
      -

       

      -
    3. -

      Secondary entities

      -
    4. -

       

      -

      Repository  - an electronic database or an information system where data are stored and maintained

      -

       

      -

      Data set - a collection of data which are bind together under a specific format

      -

       

      -

      Registry - a database of entities and descriptions

      -

       

      -

      Service - a software of specific operations and tasks that interacts with other software and hardware

      -

       

      -

      Researcher - an individual practicing research

      -

       

      -

      Funding organization - an organisation that funds research programmes and/ or researchers’ activities

      -

       

      -
    -
  3. -

    Navigation

    -
  4. -
      -
    1. -

      Homepage

      -
    2. -

       

      -

      The homepage can be found under argos.openaire.eu, also accessible from  the OpenAIRE Service catalogue and the EOSC.

      -

       

      -

      -

       

      -

      About - informs about the scope and main functions of the tool (How it works, ROADMAP, FAQs, Contributors)

      -

       

      -

      Resources - provides useful information about using Argos and includes dissemination material (Media Kit, User Guide, Co-branding)

      -

       

      -

      Contact - a contact form that facilitates communication with Argos team

      -

       

      -

      Sign in - enters the tool as a user

      -
    3. -

      Login

      -
    4. -

       

      -

      Different login options are available to choose from social media to research and scholarly communication channels.

      -

      -

       

      -

      Note! No user account is required.

      -

       

      -
    5. -

      User Account Menu

      -
    6. -

       

      -

      A dedicated, customisable space of the user’s personal profile.

      -

       

      -

      - - - - - - - -
      -

      -
      -

      My profile settings -  displays the profile page which contains details such as name, email, zenodo account details etc.

      -

       

      -

      Associated DMPs - a collection of users’ DMPs

      -

       

      -

      Log out - terminates the session, and redirects to the login page.

      -
      -

       

      -

       

      -
    7. -

      Main Menu

      -
    8. -

       

      -

      The main menu is located on the left side of the screen. Depending on how users view the tool, i.e. whether they have logged in or not, the main menu changes to include features that are available only in individuals’ dashboards.

      -

       

      -

      - - - - - - - -
      -

      Main menu - not logged in

      -

       

      -

      -

       

      -

      Home  - gets you back to the homepage / dashboard

      -

       

      -

      Public DMPs - a collection of DMPs publicly available in Argos

      -

       

      -

      Public Datasets - a collection of Datasets publicly available in Argos

      -

       

      -

      Co-Branding - a page to view the software and learn how to contribute

      -

       

      -

      Support - a contact form that facilitates communication with Argos team

      -

       

      -

      Send feedback - a feedback form to contribute thoughts and opinions about using Argos

      -

       

      -

      About - informs about the scope and main functions of the tool

      -

       

      -

      Terms of Service - provides the legal status for using of ARGOS

      -

       

      -

      Glossary - includes the terminology used in the tool and explains basic components

      -

       

      -

      User Guide - a guide for users to learn how to use Argos

      -

       

      -
      -

      Main menu - logged in

      -

       

      -

      -

       

      -

      Home  - gets you back to the homepage / dashboard

      -

       

      -

      My DMPs - includes all DMPs which the user is either the owner or the collaborator of

      -

       

      -

      My Datasets - includes all Datasets which the user is either the owner or the collaborator of

      -

       

      -

      Public DMPs - a collection of DMPs publicly available in Argos

      -

       

      -

      Public Datasets - a collection of Datasets publicly available in Argos

      -

       

      -

      About - informs about the scope and main functions of the tool

      -

       

      -

      Terms of Service - provides the legal status for using of ARGOS

      -

       

      -

      Glossary - includes the terminology used in the tool and explains basic components

      -

       

      -

      User Guide - a guide for users to learn how to use Argos

      -

       

      -

      Contact support - a contact form that facilitates communication with Argos team

      -

       

      -
      -
    9. -

      Dashboard

      -
    10. -

       

      -

      Dashboard is the console that appears after entering Argos from the Homepage and includes condensed information based on Argos function and their use.

      -

       

      -

      Dashboard - Not logged in

      -

       

      -

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Latest Activity - displays publicly available DMPs and Datasets according to the date of their publication in Argos and their Label (DMPs or Datasets)

      -
      -

       

      -

      - - - - - - - -
      -

      -
      -

      Public Usage - shows the number of publicly available DMPs, Datasets, Grants and Organizations included in Argos

      -

       

      -

      Note! When logged in to ARGOS the Homepage becomes a personal Dashboard, hence the numbers change to correspond to information provided by the individual’s activity.

      -
      -

       

      -

      Dashboard - Logged in

      -

       

      -

      -

       

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Latest Activity - displays users’ DMPs and Datasets classified according to the date of their last modification, the status of the document (draft, finalized, published) and their label (DMPs or Datasets)

      -
      -

       

      -

      - - - - - - - -
      -

      -
      -

      Personal Usage - shows users activity in DMPs, Datasets, Grants and Organizations

      -
      -

       

      -
    11. -

      My DMPs / My Datasets

      -
    12. -

       

      -

      Contains all DMPs and Datasets which the user is either the owner or the collaborator of. Both DMPs and Datasets on the user dashboard are classified by the date of their last modification, the status of the document (draft, finalized, published) and their label (DMPs or Datasets).

      -

       

      -

      My DMPs

      -

      Each DMP card is green and shows the role of the person viewing the DMP, the status of the writing process, the version of the current DMP, the grant associated with the DMP, the number and name of datasets that the DMP has.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      Add Dataset - adds more Datasets to existing DMPs

      -

       

      -

      Invite - provides people with edit rights on the document

      -

       

      -

      Clone - creates an exact replica of the DMP

      -

       

      -

      - - - - - - - -
      -

      -
      -

      New version - starts a new version of the DMP

      -

      All DMP Versions  - shows the history of the different versions of the existing DMP

      -

      Delete - permanently removes DMPs

      -

       

      -
      -

       

      -

       

      -

      My Datasets

      -

      Each Dataset card is yellow and shows the role of the person viewing the Dataset, the status of the writing process, the grant associated with the DMP and the tite of the DMP that the dataset is part of.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      Invite - Sends email or searches the Argos Users Catalogue to find colleagues/ collaborators. Invitation sent provides people with edit rights on the document.

      -

       

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Copy Dataset - creates a copy of the dataset

      -

      Delete - permanently removes Datasets

      -
      -
    13. -

      Public DMPs / Public Datasets

      -
    14. -

       

      -

      Contains DMPs outputs that are openly available in Argos. That means that DMP owners and members are making their DMP and/or Dataset outputs available to all Argos and non-Argos users who might want to consult or re-use them under the framework provided by the assigned DMP license.

      -

      Both DMPs and Datasets on the user dashboard are classified by the date of their last modification and their label (DMPs or Datasets). Users can also search for the DMP or Dataset from the search bar.

      -

       

      -

      Public DMPs

      -

      Each Public DMP card is green and displays the title of the DMP, its status (published), the version of the DMP, the grant associated with it, the number and name of datasets that the DMP contains.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      Clone - creates an exact replica of the DMP

      -

      - - - - - - - -
      -

      -
      -

      All DMP Versions - shows the history of the different versions of the existing DMP

      -

       

      -
      -

       

      -

       

      -

      Public Datasets

      -

      Each Public Dataset card is yellow and displays the title of the dataset, the status of the dataset (published), the grant associated with the DMP and the title of the DMP that the dataset is part of.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Copy Dataset - creates a copy of the dataset

      -
      -
    15. -

      Create DMPs

      -
    16. -

       

      -

      There are many ways to create new DMPs in Argos.

      -

       

      -

      Start new DMP - Start Wizard

      -

      -

       

      -

      There are four steps involved in creating a DMP: Main Info - Funding Info - License Info - Dataset Info

      -

       

      -

       

      -
        -
      1. Main Info
      2. -

         

        -

        -

        -

         

        -

         

        -

        Title - title of the DMP

        -

         

        -

        Description - brief description of what the DMP is about, it’s scope and objectives

        -

         

        -

        Language - the language of the DMP

        -

         

        -

        Visibility - how the DMP is displayed in Argos. By choosing Public, the DMP is automatically made available to all users from the “Public DMPs” collection.

        -

         

        -

        Researchers - the people that have produced, processed, analysed the data described in the DMP

        -

         

        -

        Organizations - the names of the organizations contributing to the creation and revision of the DMPs

        -

         

        -

        Contact - the contact details of the DMP owner

        -

         

        -

         

        -
      3. Funding Info
      4. -

         

        -

        -

         

        -

        Funding organizations - A drop-down menu where users may find the organisation that their research is funded by. In case that the name of a funding organisation can not be found in Argos, users may create a new record with the name and details of the funding organisation (“Insert it manually”).

        -

         

        -

        Grants - A drop-down menu to select the grant that is associated with the research project of the given funding organisation. In case that the grant can not be found in Argos, users may create a new record with the number and name of the grant (“Insert it manually”).

        -

         

        -

        Project - This field is to be completed only for projects where multiple grants apply. Otherwise, it is left blank and is later filled automatically by Argos metadata.

        -

         

        -

        Note!  There may be many projects associated with a grant number.

        -

         

        -

         

        -
      5. License Info
      6. -

         

        -

        -

        License - A list of licenses to choose from and assign to DMPs

        -

         

        -

         

        -
      7. Dataset Info
      8. -

         

        -

        -

         

        -

        Dataset Info - Select a template to describe your datasets. You may select more than one template.

        -

         

        -

        Save DMPs

        -

         

        -

        Discard - undo all changes made to the dataset

        -

         

        -

        Save - keeps all changes made to the DMP and continues work on the same page

        -

         

        -

        Save & Add Dataset - keeps all changes made to the DMP and the Dataset editor starts to describe the first dataset of the DMP

        - -
      -
    17. -

      Add Dataset(s)

      -
    18. -

      There are two ways to create datasets: when creating the first dataset of the DMP and when adding datasets to existing DMPs. Add datasets are linked to and are associated with at least one DMP in Argos. A dataset can not exist as an orphan record.

      -

       

      -

      First dataset

      -

      -

      Once the DMP is created, the user can fill in the description for their data in the Dataset Editor.

      -

       

      -

      Add dataset - Adds more Dataset to existing DMPs

      -

      There are three steps involved in adding a Dataset: Select a DMP for your Dataset - Select Template - Edit Dataset

      -

       

      -
        -
      1. Select a DMP for your Dataset
      2. -

        -

        Selects an existing DMP from the drop-down menu

        -

         

        -
      3. Select Template
      4. -

        -

        Selects the template of the Dataset that users are required to describe their datasets with by corresponding to their grant funding organisations.

        -

         

        -
      5. Edit Dataset
      6. -

        -

        A Dataset Editor to add information that describes management activities according to the selected template.

        -

         

        -

        Save Datasets

        -

        There are many ways to Save a DMP in Argos. They all serve the same function, but the difference lies in the follow up action.

        -

         

        -

        -

         

        -

        Discard - undo all changes made to the dataset

        -

         

        -

        Save - keeps all changes made and continues work on the same page

        -

         

        -

        Save & Close - keeps all changes made, but the editor’s window closes and the user is redirected to their dashboard

        -

         

        -

        Save & Add New - keeps all changes made and a new editor starts to describe a new dataset

        -
      -
    19. -

      DMPs/ Datasets records

      -
    20. -

      Records of DMPs and Datasets in Argos after editing and after finalization.

      -

      Users can view the DMPs and Datasets they create from their dashboard. By opening a record they have created, they are provided with additional functionalities that are binded to the completion of the DMP writing process. Different functionalities apply according to the status of the DMP, i.e. before or after the DMP finalization.

      -

       

      -

       

      -

      DMPs before finalization

      -

      -

       

      -

      Before finalization, the DMP can be further edited, deleted or cloned. Users can review information that they have added regarding grant, researchers, DMP description and datasets used. New datasets can be added at any time from this page. Users can export the DMP, they can start working on a new version and/ or invite colleagues to collaborate on completing the DMP.

      -

       

      -

       

      -

      Invite

      -

      -

       

      -

       

      -

      DMPs after finalization

      -

      -

       

      -

      After the DMP finalization, the DMP can be made publicly visible in Argos and deposited in Zenodo. Users can export the finalized DMP, they can start working on a new version and/ or invite colleagues to collaborate on completing the DMP. Finalization is possible to be reverted.

      -

       

      -

       

      -

      Datasets before finalization

      -

      Argos offers different options before and after the Dataset finalization.

      -

       

      -

      -

       

      -

      Before finalization, the Dataset can be further edited, deleted or cloned. Users can access the whole DMP that the dataset is part of from that page and review information that they have added regarding grant, researchers and Dataset description. Users can export the description of the dataset and invite colleagues to collaborate on its completion.

      -

       

      -

       

      -

      Datasets after finalization

      -

      -

       

      -

      After finalization, the Dataset can be exported and shared with colleagues for review.

      -

       

      -

       

      -

       

      -

       

      -

       

      -
    -
-
-
-
-
- - - - - - diff --git a/backend/web/src/main/resources/material/user-guide/UserGuide_sr.html b/backend/web/src/main/resources/material/user-guide/UserGuide_sr.html deleted file mode 100644 index b15c3d1c9..000000000 --- a/backend/web/src/main/resources/material/user-guide/UserGuide_sr.html +++ /dev/null @@ -1,2523 +0,0 @@ - - - - - - - - - - - - - - -
-
-
- -
-
-
-
-

 

-
-
    -
  1. -

    Entities & Terminology

    -
  2. -
      -
    1. -

      Key entities

      -
    2. -

       

      -

      Data Management Plan (DMP) is a collection of dataset descriptions, associated with an activity (“project” or “grant”). A DMP may be versioned, is exportable to various forms, currently machine readable (xml, json) and human readable (pdf/openxml) and can be assigned a DOI and published in Zenodo.

      -

       

      -

      Dataset in Argos describes data according to a set of rules that is the dataset template.

      -

       

      -

      Dataset Template is the set of rules that describe what Datasets contain and how they are handled. Dataset Templates are modified by Admins and contain attributes/fields, behavioral rules (e.g. toggling visibility of fields) and validation rules. Dataset Templates are linked to DMPs so that users are provided with specific formats of descriptions.

      -

       

      -

      Project is a logical entity that defines the context where one or more Data Management Plans may be formed in.

      -

       

      -

      Grant is a logical entity that defines the context where one or more Data Management Plans may be formed in.

      -

       

      -

      Users are associated to DMPs and other entities (e.g. Datasets, Organizations) for authorization and may map to researchers.

      -

       

      -

      Import - Import function supports upload of .json files that are produced according to RDA specifications for machine-actionable DMPs

      -

       

      -

      -

       

      -

      - - - - - - -
      -

      Start New DMP is an easy way to start writing a DMP. It provides an editor that goes through the essential elements of a DMP and guides the process of its creation step by step.

      -

       

      -

      From “Homepage”

      -

      -

       

      -

      From Dashboard

      -

      -

      or

      -

      -

       

      -

      From “Add Dataset”

      -

      -
      -

       

      -

       

      -

      - - - - - - -
      -

      Add Dataset is an easy way to add new datasets to pre-existing DMPs.

      -

       

      -

      From Dashboard

      -

      -

       

      -

      From “My Datasets”

      -

      -

       

      -

      From “My DMPs”

      -

      -

       

      -

      From Dataset Editor

      -

      -
      -

       

      -
    3. -

      Secondary entities

      -
    4. -

       

      -

      Repository  - an electronic database or an information system where data are stored and maintained

      -

       

      -

      Data set - a collection of data which are bind together under a specific format

      -

       

      -

      Registry - a database of entities and descriptions

      -

       

      -

      Service - a software of specific operations and tasks that interacts with other software and hardware

      -

       

      -

      Researcher - an individual practicing research

      -

       

      -

      Funding organization - an organisation that funds research programmes and/ or researchers’ activities

      -

       

      -
    -
  3. -

    Navigation

    -
  4. -
      -
    1. -

      Homepage

      -
    2. -

       

      -

      The homepage can be found under argos.openaire.eu, also accessible from  the OpenAIRE Service catalogue and the EOSC.

      -

       

      -

      -

       

      -

      About - informs about the scope and main functions of the tool (How it works, ROADMAP, FAQs, Contributors)

      -

       

      -

      Resources - provides useful information about using Argos and includes dissemination material (Media Kit, User Guide, Co-branding)

      -

       

      -

      Contact - a contact form that facilitates communication with Argos team

      -

       

      -

      Sign in - enters the tool as a user

      -
    3. -

      Login

      -
    4. -

       

      -

      Different login options are available to choose from social media to research and scholarly communication channels.

      -

      -

       

      -

      Note! No user account is required.

      -

       

      -
    5. -

      User Account Menu

      -
    6. -

       

      -

      A dedicated, customisable space of the user’s personal profile.

      -

       

      -

      - - - - - - - -
      -

      -
      -

      My profile settings -  displays the profile page which contains details such as name, email, zenodo account details etc.

      -

       

      -

      Associated DMPs - a collection of users’ DMPs

      -

       

      -

      Log out - terminates the session, and redirects to the login page.

      -
      -

       

      -

       

      -
    7. -

      Main Menu

      -
    8. -

       

      -

      The main menu is located on the left side of the screen. Depending on how users view the tool, i.e. whether they have logged in or not, the main menu changes to include features that are available only in individuals’ dashboards.

      -

       

      -

      - - - - - - - -
      -

      Main menu - not logged in

      -

       

      -

      -

       

      -

      Home  - gets you back to the homepage / dashboard

      -

       

      -

      Public DMPs - a collection of DMPs publicly available in Argos

      -

       

      -

      Public Datasets - a collection of Datasets publicly available in Argos

      -

       

      -

      Co-Branding - a page to view the software and learn how to contribute

      -

       

      -

      Support - a contact form that facilitates communication with Argos team

      -

       

      -

      Send feedback - a feedback form to contribute thoughts and opinions about using Argos

      -

       

      -

      About - informs about the scope and main functions of the tool

      -

       

      -

      Terms of Service - provides the legal status for using of ARGOS

      -

       

      -

      Glossary - includes the terminology used in the tool and explains basic components

      -

       

      -

      User Guide - a guide for users to learn how to use Argos

      -

       

      -
      -

      Main menu - logged in

      -

       

      -

      -

       

      -

      Home  - gets you back to the homepage / dashboard

      -

       

      -

      My DMPs - includes all DMPs which the user is either the owner or the collaborator of

      -

       

      -

      My Datasets - includes all Datasets which the user is either the owner or the collaborator of

      -

       

      -

      Public DMPs - a collection of DMPs publicly available in Argos

      -

       

      -

      Public Datasets - a collection of Datasets publicly available in Argos

      -

       

      -

      About - informs about the scope and main functions of the tool

      -

       

      -

      Terms of Service - provides the legal status for using of ARGOS

      -

       

      -

      Glossary - includes the terminology used in the tool and explains basic components

      -

       

      -

      User Guide - a guide for users to learn how to use Argos

      -

       

      -

      Contact support - a contact form that facilitates communication with Argos team

      -

       

      -
      -
    9. -

      Dashboard

      -
    10. -

       

      -

      Dashboard is the console that appears after entering Argos from the Homepage and includes condensed information based on Argos function and their use.

      -

       

      -

      Dashboard - Not logged in

      -

       

      -

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Latest Activity - displays publicly available DMPs and Datasets according to the date of their publication in Argos and their Label (DMPs or Datasets)

      -
      -

       

      -

      - - - - - - - -
      -

      -
      -

      Public Usage - shows the number of publicly available DMPs, Datasets, Grants and Organizations included in Argos

      -

       

      -

      Note! When logged in to ARGOS the Homepage becomes a personal Dashboard, hence the numbers change to correspond to information provided by the individual’s activity.

      -
      -

       

      -

      Dashboard - Logged in

      -

       

      -

      -

       

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Latest Activity - displays users’ DMPs and Datasets classified according to the date of their last modification, the status of the document (draft, finalized, published) and their label (DMPs or Datasets)

      -
      -

       

      -

      - - - - - - - -
      -

      -
      -

      Personal Usage - shows users activity in DMPs, Datasets, Grants and Organizations

      -
      -

       

      -
    11. -

      My DMPs / My Datasets

      -
    12. -

       

      -

      Contains all DMPs and Datasets which the user is either the owner or the collaborator of. Both DMPs and Datasets on the user dashboard are classified by the date of their last modification, the status of the document (draft, finalized, published) and their label (DMPs or Datasets).

      -

       

      -

      My DMPs

      -

      Each DMP card is green and shows the role of the person viewing the DMP, the status of the writing process, the version of the current DMP, the grant associated with the DMP, the number and name of datasets that the DMP has.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      Add Dataset - adds more Datasets to existing DMPs

      -

       

      -

      Invite - provides people with edit rights on the document

      -

       

      -

      Clone - creates an exact replica of the DMP

      -

       

      -

      - - - - - - - -
      -

      -
      -

      New version - starts a new version of the DMP

      -

      All DMP Versions  - shows the history of the different versions of the existing DMP

      -

      Delete - permanently removes DMPs

      -

       

      -
      -

       

      -

       

      -

      My Datasets

      -

      Each Dataset card is yellow and shows the role of the person viewing the Dataset, the status of the writing process, the grant associated with the DMP and the tite of the DMP that the dataset is part of.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      Invite - Sends email or searches the Argos Users Catalogue to find colleagues/ collaborators. Invitation sent provides people with edit rights on the document.

      -

       

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Copy Dataset - creates a copy of the dataset

      -

      Delete - permanently removes Datasets

      -
      -
    13. -

      Public DMPs / Public Datasets

      -
    14. -

       

      -

      Contains DMPs outputs that are openly available in Argos. That means that DMP owners and members are making their DMP and/or Dataset outputs available to all Argos and non-Argos users who might want to consult or re-use them under the framework provided by the assigned DMP license.

      -

      Both DMPs and Datasets on the user dashboard are classified by the date of their last modification and their label (DMPs or Datasets). Users can also search for the DMP or Dataset from the search bar.

      -

       

      -

      Public DMPs

      -

      Each Public DMP card is green and displays the title of the DMP, its status (published), the version of the DMP, the grant associated with it, the number and name of datasets that the DMP contains.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      Clone - creates an exact replica of the DMP

      -

      - - - - - - - -
      -

      -
      -

      All DMP Versions - shows the history of the different versions of the existing DMP

      -

       

      -
      -

       

      -

       

      -

      Public Datasets

      -

      Each Public Dataset card is yellow and displays the title of the dataset, the status of the dataset (published), the grant associated with the DMP and the title of the DMP that the dataset is part of.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Copy Dataset - creates a copy of the dataset

      -
      -
    15. -

      Create DMPs

      -
    16. -

       

      -

      There are many ways to create new DMPs in Argos.

      -

       

      -

      Start new DMP - Start Wizard

      -

      -

       

      -

      There are four steps involved in creating a DMP: Main Info - Funding Info - License Info - Dataset Info

      -

       

      -

       

      -
        -
      1. Main Info
      2. -

         

        -

        -

        -

         

        -

         

        -

        Title - title of the DMP

        -

         

        -

        Description - brief description of what the DMP is about, it’s scope and objectives

        -

         

        -

        Language - the language of the DMP

        -

         

        -

        Visibility - how the DMP is displayed in Argos. By choosing Public, the DMP is automatically made available to all users from the “Public DMPs” collection.

        -

         

        -

        Researchers - the people that have produced, processed, analysed the data described in the DMP

        -

         

        -

        Organizations - the names of the organizations contributing to the creation and revision of the DMPs

        -

         

        -

        Contact - the contact details of the DMP owner

        -

         

        -

         

        -
      3. Funding Info
      4. -

         

        -

        -

         

        -

        Funding organizations - A drop-down menu where users may find the organisation that their research is funded by. In case that the name of a funding organisation can not be found in Argos, users may create a new record with the name and details of the funding organisation (“Insert it manually”).

        -

         

        -

        Grants - A drop-down menu to select the grant that is associated with the research project of the given funding organisation. In case that the grant can not be found in Argos, users may create a new record with the number and name of the grant (“Insert it manually”).

        -

         

        -

        Project - This field is to be completed only for projects where multiple grants apply. Otherwise, it is left blank and is later filled automatically by Argos metadata.

        -

         

        -

        Note!  There may be many projects associated with a grant number.

        -

         

        -

         

        -
      5. License Info
      6. -

         

        -

        -

        License - A list of licenses to choose from and assign to DMPs

        -

         

        -

         

        -
      7. Dataset Info
      8. -

         

        -

        -

         

        -

        Dataset Info - Select a template to describe your datasets. You may select more than one template.

        -

         

        -

        Save DMPs

        -

         

        -

        Discard - undo all changes made to the dataset

        -

         

        -

        Save - keeps all changes made to the DMP and continues work on the same page

        -

         

        -

        Save & Add Dataset - keeps all changes made to the DMP and the Dataset editor starts to describe the first dataset of the DMP

        - -
      -
    17. -

      Add Dataset(s)

      -
    18. -

      There are two ways to create datasets: when creating the first dataset of the DMP and when adding datasets to existing DMPs. Add datasets are linked to and are associated with at least one DMP in Argos. A dataset can not exist as an orphan record.

      -

       

      -

      First dataset

      -

      -

      Once the DMP is created, the user can fill in the description for their data in the Dataset Editor.

      -

       

      -

      Add dataset - Adds more Dataset to existing DMPs

      -

      There are three steps involved in adding a Dataset: Select a DMP for your Dataset - Select Template - Edit Dataset

      -

       

      -
        -
      1. Select a DMP for your Dataset
      2. -

        -

        Selects an existing DMP from the drop-down menu

        -

         

        -
      3. Select Template
      4. -

        -

        Selects the template of the Dataset that users are required to describe their datasets with by corresponding to their grant funding organisations.

        -

         

        -
      5. Edit Dataset
      6. -

        -

        A Dataset Editor to add information that describes management activities according to the selected template.

        -

         

        -

        Save Datasets

        -

        There are many ways to Save a DMP in Argos. They all serve the same function, but the difference lies in the follow up action.

        -

         

        -

        -

         

        -

        Discard - undo all changes made to the dataset

        -

         

        -

        Save - keeps all changes made and continues work on the same page

        -

         

        -

        Save & Close - keeps all changes made, but the editor’s window closes and the user is redirected to their dashboard

        -

         

        -

        Save & Add New - keeps all changes made and a new editor starts to describe a new dataset

        -
      -
    19. -

      DMPs/ Datasets records

      -
    20. -

      Records of DMPs and Datasets in Argos after editing and after finalization.

      -

      Users can view the DMPs and Datasets they create from their dashboard. By opening a record they have created, they are provided with additional functionalities that are binded to the completion of the DMP writing process. Different functionalities apply according to the status of the DMP, i.e. before or after the DMP finalization.

      -

       

      -

       

      -

      DMPs before finalization

      -

      -

       

      -

      Before finalization, the DMP can be further edited, deleted or cloned. Users can review information that they have added regarding grant, researchers, DMP description and datasets used. New datasets can be added at any time from this page. Users can export the DMP, they can start working on a new version and/ or invite colleagues to collaborate on completing the DMP.

      -

       

      -

       

      -

      Invite

      -

      -

       

      -

       

      -

      DMPs after finalization

      -

      -

       

      -

      After the DMP finalization, the DMP can be made publicly visible in Argos and deposited in Zenodo. Users can export the finalized DMP, they can start working on a new version and/ or invite colleagues to collaborate on completing the DMP. Finalization is possible to be reverted.

      -

       

      -

       

      -

      Datasets before finalization

      -

      Argos offers different options before and after the Dataset finalization.

      -

       

      -

      -

       

      -

      Before finalization, the Dataset can be further edited, deleted or cloned. Users can access the whole DMP that the dataset is part of from that page and review information that they have added regarding grant, researchers and Dataset description. Users can export the description of the dataset and invite colleagues to collaborate on its completion.

      -

       

      -

       

      -

      Datasets after finalization

      -

      -

       

      -

      After finalization, the Dataset can be exported and shared with colleagues for review.

      -

       

      -

       

      -

       

      -

       

      -

       

      -
    -
-
-
-
-
- - - - - - diff --git a/backend/web/src/main/resources/material/user-guide/UserGuide_tr.html b/backend/web/src/main/resources/material/user-guide/UserGuide_tr.html deleted file mode 100644 index b15c3d1c9..000000000 --- a/backend/web/src/main/resources/material/user-guide/UserGuide_tr.html +++ /dev/null @@ -1,2523 +0,0 @@ - - - - - - - - - - - - - - -
-
-
- -
-
-
-
-

 

-
-
    -
  1. -

    Entities & Terminology

    -
  2. -
      -
    1. -

      Key entities

      -
    2. -

       

      -

      Data Management Plan (DMP) is a collection of dataset descriptions, associated with an activity (“project” or “grant”). A DMP may be versioned, is exportable to various forms, currently machine readable (xml, json) and human readable (pdf/openxml) and can be assigned a DOI and published in Zenodo.

      -

       

      -

      Dataset in Argos describes data according to a set of rules that is the dataset template.

      -

       

      -

      Dataset Template is the set of rules that describe what Datasets contain and how they are handled. Dataset Templates are modified by Admins and contain attributes/fields, behavioral rules (e.g. toggling visibility of fields) and validation rules. Dataset Templates are linked to DMPs so that users are provided with specific formats of descriptions.

      -

       

      -

      Project is a logical entity that defines the context where one or more Data Management Plans may be formed in.

      -

       

      -

      Grant is a logical entity that defines the context where one or more Data Management Plans may be formed in.

      -

       

      -

      Users are associated to DMPs and other entities (e.g. Datasets, Organizations) for authorization and may map to researchers.

      -

       

      -

      Import - Import function supports upload of .json files that are produced according to RDA specifications for machine-actionable DMPs

      -

       

      -

      -

       

      -

      - - - - - - -
      -

      Start New DMP is an easy way to start writing a DMP. It provides an editor that goes through the essential elements of a DMP and guides the process of its creation step by step.

      -

       

      -

      From “Homepage”

      -

      -

       

      -

      From Dashboard

      -

      -

      or

      -

      -

       

      -

      From “Add Dataset”

      -

      -
      -

       

      -

       

      -

      - - - - - - -
      -

      Add Dataset is an easy way to add new datasets to pre-existing DMPs.

      -

       

      -

      From Dashboard

      -

      -

       

      -

      From “My Datasets”

      -

      -

       

      -

      From “My DMPs”

      -

      -

       

      -

      From Dataset Editor

      -

      -
      -

       

      -
    3. -

      Secondary entities

      -
    4. -

       

      -

      Repository  - an electronic database or an information system where data are stored and maintained

      -

       

      -

      Data set - a collection of data which are bind together under a specific format

      -

       

      -

      Registry - a database of entities and descriptions

      -

       

      -

      Service - a software of specific operations and tasks that interacts with other software and hardware

      -

       

      -

      Researcher - an individual practicing research

      -

       

      -

      Funding organization - an organisation that funds research programmes and/ or researchers’ activities

      -

       

      -
    -
  3. -

    Navigation

    -
  4. -
      -
    1. -

      Homepage

      -
    2. -

       

      -

      The homepage can be found under argos.openaire.eu, also accessible from  the OpenAIRE Service catalogue and the EOSC.

      -

       

      -

      -

       

      -

      About - informs about the scope and main functions of the tool (How it works, ROADMAP, FAQs, Contributors)

      -

       

      -

      Resources - provides useful information about using Argos and includes dissemination material (Media Kit, User Guide, Co-branding)

      -

       

      -

      Contact - a contact form that facilitates communication with Argos team

      -

       

      -

      Sign in - enters the tool as a user

      -
    3. -

      Login

      -
    4. -

       

      -

      Different login options are available to choose from social media to research and scholarly communication channels.

      -

      -

       

      -

      Note! No user account is required.

      -

       

      -
    5. -

      User Account Menu

      -
    6. -

       

      -

      A dedicated, customisable space of the user’s personal profile.

      -

       

      -

      - - - - - - - -
      -

      -
      -

      My profile settings -  displays the profile page which contains details such as name, email, zenodo account details etc.

      -

       

      -

      Associated DMPs - a collection of users’ DMPs

      -

       

      -

      Log out - terminates the session, and redirects to the login page.

      -
      -

       

      -

       

      -
    7. -

      Main Menu

      -
    8. -

       

      -

      The main menu is located on the left side of the screen. Depending on how users view the tool, i.e. whether they have logged in or not, the main menu changes to include features that are available only in individuals’ dashboards.

      -

       

      -

      - - - - - - - -
      -

      Main menu - not logged in

      -

       

      -

      -

       

      -

      Home  - gets you back to the homepage / dashboard

      -

       

      -

      Public DMPs - a collection of DMPs publicly available in Argos

      -

       

      -

      Public Datasets - a collection of Datasets publicly available in Argos

      -

       

      -

      Co-Branding - a page to view the software and learn how to contribute

      -

       

      -

      Support - a contact form that facilitates communication with Argos team

      -

       

      -

      Send feedback - a feedback form to contribute thoughts and opinions about using Argos

      -

       

      -

      About - informs about the scope and main functions of the tool

      -

       

      -

      Terms of Service - provides the legal status for using of ARGOS

      -

       

      -

      Glossary - includes the terminology used in the tool and explains basic components

      -

       

      -

      User Guide - a guide for users to learn how to use Argos

      -

       

      -
      -

      Main menu - logged in

      -

       

      -

      -

       

      -

      Home  - gets you back to the homepage / dashboard

      -

       

      -

      My DMPs - includes all DMPs which the user is either the owner or the collaborator of

      -

       

      -

      My Datasets - includes all Datasets which the user is either the owner or the collaborator of

      -

       

      -

      Public DMPs - a collection of DMPs publicly available in Argos

      -

       

      -

      Public Datasets - a collection of Datasets publicly available in Argos

      -

       

      -

      About - informs about the scope and main functions of the tool

      -

       

      -

      Terms of Service - provides the legal status for using of ARGOS

      -

       

      -

      Glossary - includes the terminology used in the tool and explains basic components

      -

       

      -

      User Guide - a guide for users to learn how to use Argos

      -

       

      -

      Contact support - a contact form that facilitates communication with Argos team

      -

       

      -
      -
    9. -

      Dashboard

      -
    10. -

       

      -

      Dashboard is the console that appears after entering Argos from the Homepage and includes condensed information based on Argos function and their use.

      -

       

      -

      Dashboard - Not logged in

      -

       

      -

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Latest Activity - displays publicly available DMPs and Datasets according to the date of their publication in Argos and their Label (DMPs or Datasets)

      -
      -

       

      -

      - - - - - - - -
      -

      -
      -

      Public Usage - shows the number of publicly available DMPs, Datasets, Grants and Organizations included in Argos

      -

       

      -

      Note! When logged in to ARGOS the Homepage becomes a personal Dashboard, hence the numbers change to correspond to information provided by the individual’s activity.

      -
      -

       

      -

      Dashboard - Logged in

      -

       

      -

      -

       

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Latest Activity - displays users’ DMPs and Datasets classified according to the date of their last modification, the status of the document (draft, finalized, published) and their label (DMPs or Datasets)

      -
      -

       

      -

      - - - - - - - -
      -

      -
      -

      Personal Usage - shows users activity in DMPs, Datasets, Grants and Organizations

      -
      -

       

      -
    11. -

      My DMPs / My Datasets

      -
    12. -

       

      -

      Contains all DMPs and Datasets which the user is either the owner or the collaborator of. Both DMPs and Datasets on the user dashboard are classified by the date of their last modification, the status of the document (draft, finalized, published) and their label (DMPs or Datasets).

      -

       

      -

      My DMPs

      -

      Each DMP card is green and shows the role of the person viewing the DMP, the status of the writing process, the version of the current DMP, the grant associated with the DMP, the number and name of datasets that the DMP has.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      Add Dataset - adds more Datasets to existing DMPs

      -

       

      -

      Invite - provides people with edit rights on the document

      -

       

      -

      Clone - creates an exact replica of the DMP

      -

       

      -

      - - - - - - - -
      -

      -
      -

      New version - starts a new version of the DMP

      -

      All DMP Versions  - shows the history of the different versions of the existing DMP

      -

      Delete - permanently removes DMPs

      -

       

      -
      -

       

      -

       

      -

      My Datasets

      -

      Each Dataset card is yellow and shows the role of the person viewing the Dataset, the status of the writing process, the grant associated with the DMP and the tite of the DMP that the dataset is part of.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      Invite - Sends email or searches the Argos Users Catalogue to find colleagues/ collaborators. Invitation sent provides people with edit rights on the document.

      -

       

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Copy Dataset - creates a copy of the dataset

      -

      Delete - permanently removes Datasets

      -
      -
    13. -

      Public DMPs / Public Datasets

      -
    14. -

       

      -

      Contains DMPs outputs that are openly available in Argos. That means that DMP owners and members are making their DMP and/or Dataset outputs available to all Argos and non-Argos users who might want to consult or re-use them under the framework provided by the assigned DMP license.

      -

      Both DMPs and Datasets on the user dashboard are classified by the date of their last modification and their label (DMPs or Datasets). Users can also search for the DMP or Dataset from the search bar.

      -

       

      -

      Public DMPs

      -

      Each Public DMP card is green and displays the title of the DMP, its status (published), the version of the DMP, the grant associated with it, the number and name of datasets that the DMP contains.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      Clone - creates an exact replica of the DMP

      -

      - - - - - - - -
      -

      -
      -

      All DMP Versions - shows the history of the different versions of the existing DMP

      -

       

      -
      -

       

      -

       

      -

      Public Datasets

      -

      Each Public Dataset card is yellow and displays the title of the dataset, the status of the dataset (published), the grant associated with the DMP and the title of the DMP that the dataset is part of.

      -

       

      -

      -

       

      -

      Export - supports download of the DMP outputs in the following formats: PDF, Document, XML, RDA JSON (can be imported to other RDA compliant DMP tools)

      -

       

      -

      - - - - - - - -
      -

      -
      -

      Copy Dataset - creates a copy of the dataset

      -
      -
    15. -

      Create DMPs

      -
    16. -

       

      -

      There are many ways to create new DMPs in Argos.

      -

       

      -

      Start new DMP - Start Wizard

      -

      -

       

      -

      There are four steps involved in creating a DMP: Main Info - Funding Info - License Info - Dataset Info

      -

       

      -

       

      -
        -
      1. Main Info
      2. -

         

        -

        -

        -

         

        -

         

        -

        Title - title of the DMP

        -

         

        -

        Description - brief description of what the DMP is about, it’s scope and objectives

        -

         

        -

        Language - the language of the DMP

        -

         

        -

        Visibility - how the DMP is displayed in Argos. By choosing Public, the DMP is automatically made available to all users from the “Public DMPs” collection.

        -

         

        -

        Researchers - the people that have produced, processed, analysed the data described in the DMP

        -

         

        -

        Organizations - the names of the organizations contributing to the creation and revision of the DMPs

        -

         

        -

        Contact - the contact details of the DMP owner

        -

         

        -

         

        -
      3. Funding Info
      4. -

         

        -

        -

         

        -

        Funding organizations - A drop-down menu where users may find the organisation that their research is funded by. In case that the name of a funding organisation can not be found in Argos, users may create a new record with the name and details of the funding organisation (“Insert it manually”).

        -

         

        -

        Grants - A drop-down menu to select the grant that is associated with the research project of the given funding organisation. In case that the grant can not be found in Argos, users may create a new record with the number and name of the grant (“Insert it manually”).

        -

         

        -

        Project - This field is to be completed only for projects where multiple grants apply. Otherwise, it is left blank and is later filled automatically by Argos metadata.

        -

         

        -

        Note!  There may be many projects associated with a grant number.

        -

         

        -

         

        -
      5. License Info
      6. -

         

        -

        -

        License - A list of licenses to choose from and assign to DMPs

        -

         

        -

         

        -
      7. Dataset Info
      8. -

         

        -

        -

         

        -

        Dataset Info - Select a template to describe your datasets. You may select more than one template.

        -

         

        -

        Save DMPs

        -

         

        -

        Discard - undo all changes made to the dataset

        -

         

        -

        Save - keeps all changes made to the DMP and continues work on the same page

        -

         

        -

        Save & Add Dataset - keeps all changes made to the DMP and the Dataset editor starts to describe the first dataset of the DMP

        - -
      -
    17. -

      Add Dataset(s)

      -
    18. -

      There are two ways to create datasets: when creating the first dataset of the DMP and when adding datasets to existing DMPs. Add datasets are linked to and are associated with at least one DMP in Argos. A dataset can not exist as an orphan record.

      -

       

      -

      First dataset

      -

      -

      Once the DMP is created, the user can fill in the description for their data in the Dataset Editor.

      -

       

      -

      Add dataset - Adds more Dataset to existing DMPs

      -

      There are three steps involved in adding a Dataset: Select a DMP for your Dataset - Select Template - Edit Dataset

      -

       

      -
        -
      1. Select a DMP for your Dataset
      2. -

        -

        Selects an existing DMP from the drop-down menu

        -

         

        -
      3. Select Template
      4. -

        -

        Selects the template of the Dataset that users are required to describe their datasets with by corresponding to their grant funding organisations.

        -

         

        -
      5. Edit Dataset
      6. -

        -

        A Dataset Editor to add information that describes management activities according to the selected template.

        -

         

        -

        Save Datasets

        -

        There are many ways to Save a DMP in Argos. They all serve the same function, but the difference lies in the follow up action.

        -

         

        -

        -

         

        -

        Discard - undo all changes made to the dataset

        -

         

        -

        Save - keeps all changes made and continues work on the same page

        -

         

        -

        Save & Close - keeps all changes made, but the editor’s window closes and the user is redirected to their dashboard

        -

         

        -

        Save & Add New - keeps all changes made and a new editor starts to describe a new dataset

        -
      -
    19. -

      DMPs/ Datasets records

      -
    20. -

      Records of DMPs and Datasets in Argos after editing and after finalization.

      -

      Users can view the DMPs and Datasets they create from their dashboard. By opening a record they have created, they are provided with additional functionalities that are binded to the completion of the DMP writing process. Different functionalities apply according to the status of the DMP, i.e. before or after the DMP finalization.

      -

       

      -

       

      -

      DMPs before finalization

      -

      -

       

      -

      Before finalization, the DMP can be further edited, deleted or cloned. Users can review information that they have added regarding grant, researchers, DMP description and datasets used. New datasets can be added at any time from this page. Users can export the DMP, they can start working on a new version and/ or invite colleagues to collaborate on completing the DMP.

      -

       

      -

       

      -

      Invite

      -

      -

       

      -

       

      -

      DMPs after finalization

      -

      -

       

      -

      After the DMP finalization, the DMP can be made publicly visible in Argos and deposited in Zenodo. Users can export the finalized DMP, they can start working on a new version and/ or invite colleagues to collaborate on completing the DMP. Finalization is possible to be reverted.

      -

       

      -

       

      -

      Datasets before finalization

      -

      Argos offers different options before and after the Dataset finalization.

      -

       

      -

      -

       

      -

      Before finalization, the Dataset can be further edited, deleted or cloned. Users can access the whole DMP that the dataset is part of from that page and review information that they have added regarding grant, researchers and Dataset description. Users can export the description of the dataset and invite colleagues to collaborate on its completion.

      -

       

      -

       

      -

      Datasets after finalization

      -

      -

       

      -

      After finalization, the Dataset can be exported and shared with colleagues for review.

      -

       

      -

       

      -

       

      -

       

      -

       

      -
    -
-
-
-
-
- - - - - - diff --git a/frontend/README.md b/frontend/README.md deleted file mode 100644 index f2469f634..000000000 --- a/frontend/README.md +++ /dev/null @@ -1,27 +0,0 @@ -# Frontend2 - -This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.7.4. - -## Development server - -Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files. - -## Code scaffolding - -Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`. - -## Build - -Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `-prod` flag for a production build. - -## Running unit tests - -Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io). - -## Running end-to-end tests - -Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/). - -## Further help - -To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).