Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
ed3b903
WIP: add metadata from PE to Connector/publish
juriroemer Aug 2, 2024
be2f58b
fix datacite profile
juriroemer Aug 5, 2024
d4e9103
WIP Connector Metadata
juriroemer Aug 9, 2024
c440f05
imports
juriroemer Aug 13, 2024
3cab5ed
layout / ui
juriroemer Aug 13, 2024
ff7988a
fix activeIndex out of bounds when deactivating project features, clo…
juriroemer Aug 20, 2024
81d5111
add search to add property dialog
juriroemer Aug 23, 2024
b4ae51c
Revert "fix activeIndex out of bounds when deactivating project featu…
juriroemer Sep 16, 2024
e647226
Merge branch 'develop' into 047-metadata-in-connector
juriroemer Sep 16, 2024
0148c23
use proper types instead of records
juriroemer Sep 17, 2024
0c7b386
Fix type for ResourcesMetadata in backend feature
juriroemer Sep 17, 2024
daeb0d8
Revert "Fix type for ResourcesMetadata in backend feature"
juriroemer Sep 17, 2024
d653e95
resourcesmetadata type
juriroemer Sep 17, 2024
2a18534
infer chip colors from profile
juriroemer Sep 17, 2024
4094e22
PropertyProfiles and Metadata in OSF Connector
juriroemer Sep 17, 2024
d0442c4
adds basic metadata profile to zenodo connector
juriroemer Sep 17, 2024
ecad9db
Revert "infer chip colors from profile"
juriroemer Sep 20, 2024
512838e
minor fixes
juriroemer Sep 20, 2024
acc6614
refactor metadata handling in backend
juriroemer Sep 20, 2024
d702df5
adds metadata to Zenodo connector
juriroemer Sep 20, 2024
452af1c
adds creators and contributors metadata to zenodo connector
juriroemer Sep 23, 2024
9ccd3ea
adds datacite metadata format to backend
juriroemer Sep 24, 2024
a6c1ae2
remove connector dependency from common/py
juriroemer Sep 27, 2024
cf94885
property editor/profiles
juriroemer Sep 30, 2024
69058db
metadata parsing for datacite and zenodo
juriroemer Sep 30, 2024
249300d
adds helper functions to Metadata Parser
juriroemer Oct 1, 2024
5390327
list values of layout property
juriroemer Oct 1, 2024
963b98d
type hints
juriroemer Oct 1, 2024
0bf0dab
improves MetadataParser
juriroemer Oct 4, 2024
ea55da5
Merge branch 'develop' into 047-metadata-in-connector
juriroemer Oct 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions src/common/assets/profiles/osf.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"metadata": {
"id": ["OSF", "2024.09.17"],
"displayLabel": "OSF",
"description": "A Profile for the OSF connector."
},
"layout": [
{
"id": "https://datacite-metadata-schema.readthedocs.io/en/4.5/properties/title/",
"label": "Title",
"description": "A name or title by which a resource is known. May be the title of a dataset or the name of a piece of software or an instrument.",
"input": [{ "id": "title", "label": "Title", "type": "string" }],
"required": true,
"multiple": true
},
{
"id": "OsfCategory",
"label": "OSF Category",
"input": [
{
"id": "category",
"label": "OSF Category",
"type": "dropdown",
"options": [
"analysis",
"communication",
"data",
"hypothesis",
"instrumentation",
"methods and measures",
"procedure",
"project",
"software",
"other"
]
}
],
"description": "The category of the node, as selected by project contributors.",
"required": true,
"multiple": true
},
{
"id": "https://datacite-metadata-schema.readthedocs.io/en/4.5/properties/description/",
"label": "Description (Abstract)",
"description":
"All additional information that does not fit in any of the other categories. May be used for technical information or detailed information associated with a scientific instrument.",
"input": [{ "id": "abstract", "label": "Description (Abstract)", "type": "textarea" }],
"required": true,
"multiple": false
}
]
}
3 changes: 1 addition & 2 deletions src/common/assets/profiles/stub.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"metadata": {
"id": ["Stub", "1.0.0"],
"name": "stub",
"version": "1.0.0",
"displayLabel": "stub",
"description": "Stubby stuff"
},
"layout": [
Expand Down
Loading