├── .dockerignore ├── .eslintrc.yml ├── .git-blame-ignore-revs ├── .github └── workflows │ ├── dockerpublish.yml │ └── tests.yml ├── .gitignore ├── .invenio ├── .prettierrc ├── .python-version ├── Dockerfile ├── LICENSE ├── README.md ├── app_data ├── README.md ├── communities.yaml ├── img │ ├── aas.png │ ├── astrothesis.png │ ├── biosyslit.png │ ├── briefideas.png │ ├── cernopenlab.png │ ├── covid-19.png │ ├── cs19.png │ ├── ecfunded.png │ ├── horizon-zen.png │ ├── lory.png │ └── tops.png ├── known_file_formats.yaml ├── names.yaml ├── oai_sets.yaml ├── pages.yaml ├── pages │ ├── biosyslit │ │ └── how-to-submit.html │ └── horizon │ │ ├── how-to-submit.html │ │ └── join.html ├── users.yaml ├── vocabularies-future.yaml ├── vocabularies.yaml └── vocabularies │ ├── awards.yaml │ ├── description_types.yaml │ ├── funders.yaml │ └── licenses.csv ├── assets ├── js │ ├── components │ │ ├── community │ │ │ └── overrides │ │ │ │ ├── FileModificationModalMessage.js │ │ │ │ └── SubcommunityCreateForm.js │ │ ├── landing_page │ │ │ └── overrides │ │ │ │ └── UpgradeLegacyRecordButton.js │ │ └── react_invenio_forms │ │ │ └── CustomAffiliationsSuggestions.js │ └── invenio_app_rdm │ │ └── overridableRegistry │ │ └── mapping.js ├── less │ ├── LICENSE │ ├── theme.config │ └── zenodo-rdm │ │ ├── collections │ │ ├── form.overrides │ │ ├── form.variables │ │ ├── menu.overrides │ │ ├── menu.variables │ │ ├── table.overrides │ │ └── table.variables │ │ ├── elements │ │ ├── button.overrides │ │ ├── button.variables │ │ ├── container.overrides │ │ ├── container.variables │ │ ├── divider.overrides │ │ ├── divider.variables │ │ ├── header.overrides │ │ ├── header.variables │ │ ├── label.overrides │ │ ├── label.variables │ │ ├── list.overrides │ │ ├── list.variables │ │ ├── segment.overrides │ │ └── segment.variables │ │ ├── globals │ │ ├── site.overrides │ │ └── site.variables │ │ ├── modules │ │ ├── dropdown.overrides │ │ ├── dropdown.variables │ │ ├── popup.overrides │ │ ├── popup.variables │ │ ├── transition.overrides │ │ └── transition.variables │ │ └── views │ │ ├── card.overrides │ │ ├── card.variables │ │ ├── item.overrides │ │ └── item.variables └── templates │ ├── custom_fields │ └── .gitkeep │ └── search │ └── .gitkeep ├── benchmark ├── iiif.py └── manifest.json ├── docker-compose.full.yml ├── docker-compose.yml ├── docker-services.yml ├── docker ├── db │ └── init-readonly-user.sql ├── nginx │ ├── Dockerfile │ ├── conf.d │ │ └── default.conf │ ├── nginx.conf │ ├── test.crt │ └── test.key ├── pgadmin │ └── servers.json ├── pgbouncer │ ├── pgbouncer.ini │ └── userlist.txt └── uwsgi │ ├── uwsgi.ini │ ├── uwsgi_rest.ini │ └── uwsgi_ui.ini ├── invenio.cfg ├── krb5.conf ├── legacy ├── README.md ├── pyproject.toml ├── run-tests.sh ├── tests │ └── test_licenses_vocabulary.py └── zenodo_legacy │ ├── __init__.py │ ├── data │ ├── __init__.py │ ├── legacy_licenses.json │ └── legacy_to_rdm_map.json │ ├── funders.py │ ├── licenses.py │ └── utils.py ├── migrator ├── MANIFEST.in ├── README.md ├── migrate.sh ├── run-tests.sh ├── scripts │ ├── add_admins.sh │ ├── communities_dump.sql │ ├── create_missing_indices.sql │ ├── deleted_records_dump.sql │ ├── deposits_dump.sql │ ├── dump_affiliations_db.py │ ├── dump_awards_db.py │ ├── dump_funders_db.py │ ├── files_bucket_dump.sql │ ├── files_files_dump.sql │ ├── files_object_dump.sql │ ├── gen_create_constraints.sql │ ├── gen_create_indices.sql │ ├── gen_delete_constraints.sql │ ├── gen_drop_indices.sql │ ├── github_releases_dump.sql │ ├── github_repositories_dump.sql │ ├── oauth2server_clients_dump.sql │ ├── oauth2server_tokens_dump.sql │ ├── oauthclient_remoteaccount_dump.sql │ ├── oauthclient_remotetoken_dump.sql │ ├── records_dump.sql │ ├── requests_dump.sql │ ├── restore_indices.sql │ ├── update_sequences.sql │ ├── users_dump.sql │ └── webhooks_events_dump.sql ├── setup.cfg ├── setup.py ├── streams.yaml ├── tests │ ├── actions │ │ ├── communities │ │ │ ├── conftest.py │ │ │ ├── test_community_actions.py │ │ │ ├── test_community_actions_stream.py │ │ │ └── testdata │ │ │ │ ├── create.jsonl │ │ │ │ ├── delete.jsonl │ │ │ │ └── update.jsonl │ │ ├── conftest.py │ │ ├── drafts │ │ │ ├── conftest.py │ │ │ ├── test_drafts_actions_stream.py │ │ │ └── testdata │ │ │ │ ├── create.jsonl │ │ │ │ ├── edit-update.jsonl │ │ │ │ ├── edit.jsonl │ │ │ │ ├── file-upload.jsonl │ │ │ │ ├── publish-edit.jsonl │ │ │ │ ├── publish-new.jsonl │ │ │ │ └── update.jsonl │ │ ├── github │ │ │ ├── conftest.py │ │ │ ├── test_github_actions.py │ │ │ ├── test_github_actions_stream.py │ │ │ └── testdata │ │ │ │ ├── hook_disable.jsonl │ │ │ │ ├── hook_enable_step1.jsonl │ │ │ │ ├── hook_enable_step2.jsonl │ │ │ │ ├── hook_update.jsonl │ │ │ │ ├── release_process.jsonl │ │ │ │ ├── release_receive.jsonl │ │ │ │ └── release_update.jsonl │ │ ├── oauth │ │ │ ├── conftest.py │ │ │ ├── test_oauth_actions.py │ │ │ ├── test_oauth_actions_stream.py │ │ │ └── testdata │ │ │ │ ├── applications │ │ │ │ ├── create.jsonl │ │ │ │ ├── delete.jsonl │ │ │ │ ├── reset.jsonl │ │ │ │ └── update.jsonl │ │ │ │ ├── linked_accounts │ │ │ │ ├── connect_gh.jsonl │ │ │ │ ├── connect_orcid.jsonl │ │ │ │ ├── disconnect_gh_client.jsonl │ │ │ │ ├── disconnect_gh_token.jsonl │ │ │ │ └── disconnect_orcid.jsonl │ │ │ │ └── tokens │ │ │ │ ├── create.jsonl │ │ │ │ ├── delete.jsonl │ │ │ │ └── update.jsonl │ │ └── users │ │ │ ├── conftest.py │ │ │ ├── test_user_actions.py │ │ │ └── test_user_actions_stream.py │ ├── conftest.py │ ├── extract │ │ ├── conftest.py │ │ ├── test_kafka_extract.py │ │ └── testdata │ │ │ ├── ops.jsonl.gz │ │ │ └── tx_info.jsonl.gz │ └── transform │ │ ├── test_community_transform.py │ │ ├── test_featured_community_transform.py │ │ ├── test_record_transform.py │ │ └── test_request_transform.py └── zenodo_rdm_migrator │ ├── __init__.py │ ├── __main__.py │ ├── actions │ ├── __init__.py │ └── transform │ │ ├── __init__.py │ │ ├── communities.py │ │ ├── drafts.py │ │ ├── files.py │ │ ├── github.py │ │ ├── ignored.py │ │ ├── oauth.py │ │ └── users.py │ ├── errors.py │ ├── extract │ ├── __init__.py │ └── kafka.py │ ├── stream.py │ └── transform │ ├── __init__.py │ ├── communities.py │ ├── entries │ ├── __init__.py │ ├── communities.py │ ├── parents.py │ ├── records │ │ ├── __init__.py │ │ ├── custom_fields.py │ │ ├── metadata.py │ │ └── records.py │ ├── requests.py │ └── users.py │ ├── records.py │ ├── requests.py │ ├── transactions.py │ └── users.py ├── pyproject.toml ├── run-js-linter.sh ├── scripts ├── admin │ ├── clear_pending_files.py │ ├── community_manage_requests.py │ ├── record_management.py │ └── set_file_quotas.py ├── data │ └── added_file_formats.yaml ├── deploy.py ├── ec_create_checks.py ├── ec_transfer_records.py ├── export-all-xml.py ├── export-blr.py ├── export-datacite.py ├── generate_iiif_tiles.py ├── known_formats_gen.py ├── new_api_flow.py ├── old_api_flow.py ├── run_script.py └── sleep.py ├── site ├── .gitkeep ├── README.md ├── pyproject.toml ├── run-tests.sh ├── tests │ ├── __init__.py │ ├── conftest.py │ ├── fake_datacite_client.py │ ├── legacy │ │ ├── conftest.py │ │ ├── deposits │ │ │ ├── conftest.py │ │ │ ├── test_rest_api_metadata.py │ │ │ └── test_rest_api_simpleflow.py │ │ ├── test_communities.py │ │ ├── test_extra_formats.py │ │ └── test_quickstart.py │ ├── moderation │ │ ├── test_domains.py │ │ └── test_moderation_queries.py │ ├── openaire │ │ ├── conftest.py │ │ ├── test_components.py │ │ ├── test_openaire_helpers.py │ │ ├── test_serializer.py │ │ └── test_tasks.py │ ├── requests │ │ ├── conftest.py │ │ ├── test_community_manage_record_request.py │ │ └── test_record_upgrade_request.py │ ├── resources │ │ ├── conftest.py │ │ └── test_record_file_permissions.py │ ├── support │ │ └── test_contact_form.py │ ├── test_search.py │ └── test_views.py └── zenodo_rdm │ ├── __init__.py │ ├── api.py │ ├── assets │ └── semantic-ui │ │ ├── js │ │ └── zenodo_rdm │ │ │ ├── .gitkeep │ │ │ └── src │ │ │ ├── blr-related-works │ │ │ ├── BlrSearch.js │ │ │ ├── api │ │ │ │ └── config.js │ │ │ ├── components │ │ │ │ ├── BlrResultsLoader.js │ │ │ │ ├── Filter.js │ │ │ │ ├── LayoutSwitchButtons.js │ │ │ │ ├── NoResults.js │ │ │ │ ├── RecordItem.js │ │ │ │ └── ResultsLayout.js │ │ │ └── index.js │ │ │ ├── branded-community │ │ │ ├── community-item.js │ │ │ └── index.js │ │ │ ├── citations │ │ │ ├── CitationsSearch.js │ │ │ ├── api │ │ │ │ └── config.js │ │ │ ├── components │ │ │ │ ├── CitationRow.js │ │ │ │ ├── Counter.js │ │ │ │ ├── ErrorMessage.js │ │ │ │ ├── Filter.js │ │ │ │ ├── NoCitations.js │ │ │ │ └── Results.js │ │ │ ├── index.js │ │ │ └── sanitizer.js │ │ │ ├── communities-carousel.js │ │ │ └── support │ │ │ ├── components │ │ │ ├── CategoryDropdown.js │ │ │ ├── FileTable.js │ │ │ ├── FileUploader.js │ │ │ ├── SupportForm.js │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── support.js │ │ └── less │ │ └── zenodo_rdm │ │ ├── .gitkeep │ │ └── previewer │ │ └── image-previewer.less │ ├── cli.py │ ├── communities_ui │ ├── __init__.py │ └── views │ │ ├── communities.py │ │ └── metrics_config.py │ ├── config.py │ ├── curation │ ├── __init__.py │ ├── config.py │ ├── curators.py │ ├── ext.py │ ├── jobs.py │ ├── proxies.py │ ├── rules.py │ └── tasks.py │ ├── custom_fields │ ├── __init__.py │ ├── domain_fields.py │ ├── legacy.py │ └── publishing.py │ ├── custom_schemes.py │ ├── decorators.py │ ├── errors.py │ ├── exporter │ ├── __init__.py │ ├── cli.py │ ├── config.py │ ├── ext.py │ ├── jobs.py │ ├── tasks.py │ └── views.py │ ├── facets.py │ ├── files.py │ ├── filters.py │ ├── generators.py │ ├── github │ ├── release.py │ └── schemas.py │ ├── index_templates │ ├── __init__.py │ └── os-v2 │ │ ├── __init__.py │ │ └── rdmrecords-template.json │ ├── legacy │ ├── __init__.py │ ├── deserializers │ │ ├── __init__.py │ │ ├── metadata.py │ │ └── schemas.py │ ├── ext.py │ ├── requests │ │ ├── __init__.py │ │ ├── community_manage_record.py │ │ ├── record_upgrade.py │ │ └── utils.py │ ├── resources.py │ ├── scopes.py │ ├── serializers │ │ ├── __init__.py │ │ └── schemas │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── files.py │ │ │ ├── legacyjson.py │ │ │ └── zenodojson.py │ ├── services.py │ ├── tokens.py │ └── views.py │ ├── metrics │ ├── __init__.py │ ├── api.py │ ├── config.py │ ├── ext.py │ ├── proxies.py │ ├── tasks.py │ ├── utils.py │ └── views.py │ ├── moderation │ ├── __init__.py │ ├── config.py │ ├── errors.py │ ├── ext.py │ ├── handlers.py │ ├── models.py │ ├── percolator.py │ ├── proxies.py │ ├── rules.py │ ├── tasks.py │ └── uow.py │ ├── openaire │ ├── __init__.py │ ├── config.py │ ├── errors.py │ ├── ext.py │ ├── proxies.py │ ├── records │ │ └── components.py │ ├── serializers │ │ ├── __init__.py │ │ └── schema.py │ ├── tasks.py │ └── utils.py │ ├── params.py │ ├── partners │ ├── __init__.py │ ├── client.py │ ├── dryad.py │ ├── lory.py │ ├── payloads.py │ └── plazi.py │ ├── permissions.py │ ├── previewer │ └── image_previewer.py │ ├── profiler.py │ ├── providers.py │ ├── queryparser.py │ ├── redirector.py │ ├── resources.py │ ├── schema.py │ ├── serializers │ ├── __init__.py │ ├── bibtex.py │ ├── cff.py │ ├── codemeta.py │ └── datacite.py │ ├── sitemap.py │ ├── stats │ ├── __init__.py │ ├── config.py │ ├── errors.py │ ├── exporters.py │ ├── ext.py │ ├── tasks.py │ └── utils.py │ ├── subcommunities │ ├── __init__.py │ ├── request.py │ └── schema.py │ ├── support │ ├── __init__.py │ ├── schema.py │ └── views.py │ ├── templates │ └── semantic-ui │ │ ├── invenio_checks │ │ └── requests │ │ │ └── help_message.html │ │ ├── profiler │ │ └── index.html │ │ └── zenodo_rdm │ │ ├── obo.html │ │ └── support.html │ ├── tokens.py │ ├── utils.py │ ├── views.py │ └── webpack.py ├── static ├── describo │ └── zenodo-describo-profile.json ├── favicon.ico ├── images │ ├── annostor.svg │ ├── arcadia-logo.svg │ ├── briefideas.png │ ├── cern.png │ ├── checklistbank-logo.png │ ├── collections │ │ ├── agrisciences.jpg │ │ ├── animalia.jpg │ │ ├── archaea.jpg │ │ ├── bacteria.jpg │ │ ├── bsd-mesh.jpg │ │ ├── cm-mesh.jpg │ │ ├── ebm-mesh.jpg │ │ ├── ejt.jpg │ │ ├── engineering.jpg │ │ ├── erc.jpg │ │ ├── euratom.jpg │ │ ├── fp7.jpg │ │ ├── fungi.jpg │ │ ├── h2020.jpg │ │ ├── hcfws-mesh.jpg │ │ ├── he.jpg │ │ ├── ho-mesh.jpg │ │ ├── holotype.jpg │ │ ├── humanities.jpg │ │ ├── linnaeus-holotype.jpg │ │ ├── linnaeus.jpg │ │ ├── mhealth.jpg │ │ ├── msca.jpg │ │ ├── nci.jpg │ │ ├── nei.jpg │ │ ├── new-species.jpg │ │ ├── nhgri.jpg │ │ ├── nhlbi.jpg │ │ ├── nigms.jpg │ │ ├── nlm.jpg │ │ ├── nsciences.jpg │ │ ├── plantae.jpg │ │ ├── protista.jpg │ │ ├── research-mesh.jpg │ │ ├── ssciences.jpg │ │ └── t-rex.jpg │ ├── edmo-icon.svg │ ├── eu.png │ ├── eufunded.png │ ├── f1000.jpg │ ├── gbif-full-logo-green.png │ ├── gbif.png │ ├── github.svg │ ├── inspire.svg │ ├── invenio-rdm.svg │ ├── logo.svg │ ├── openaire.png │ ├── openaire.svg │ ├── reana.svg │ ├── sib.png │ ├── sibils-logo.png │ ├── swh.png │ ├── treatment-bank.png │ ├── treatmentbank-logo.png │ ├── zenodo-gradient-1000.png │ └── zenodo-gradient-round.svg ├── js │ └── mirador3-dist │ │ ├── 10.bdb16df0.js │ │ ├── 11.ba873e37.js │ │ ├── 12.007d06b1.js │ │ ├── 4.32e961c6.js │ │ ├── 5.7ce5ddf0.js │ │ ├── 6.98f01b2f.js │ │ ├── 7.79e586cf.js │ │ ├── 8.69d38e7c.js │ │ ├── 9.b421f62a.js │ │ └── main.js ├── oai2.xsl └── robots.txt ├── templates ├── .gitkeep ├── security │ └── email │ │ ├── change_notice.html │ │ ├── change_notice.txt │ │ ├── confirmation_instructions.html │ │ ├── confirmation_instructions.txt │ │ ├── reset_instructions.html │ │ ├── reset_instructions.txt │ │ ├── reset_notice.html │ │ ├── reset_notice.txt │ │ ├── welcome.html │ │ └── welcome.txt ├── semantic-ui │ ├── invenio_accounts │ │ ├── login_user.html │ │ └── register_user.html │ ├── invenio_app_rdm │ │ ├── records │ │ │ └── previewers │ │ │ │ ├── mirador_preview.html │ │ │ │ ├── preview_unavailable.html │ │ │ │ └── simple_image_preview.html │ │ └── site_footer.html │ ├── invenio_communities │ │ ├── community_theme_template.css │ │ ├── details │ │ │ └── base.html │ │ └── frontpage.html │ ├── invenio_requests │ │ ├── community-manage-record │ │ │ └── user_dashboard.html │ │ └── legacy-record-upgrade │ │ │ └── index.html │ ├── invenio_theme │ │ └── page_cover.html │ └── zenodo_rdm │ │ ├── footer.html │ │ ├── frontpage.html │ │ ├── header_frontpage.html │ │ ├── macros │ │ ├── carousel_item.html │ │ ├── communities_carousel_slides.html │ │ ├── communities_list.html │ │ ├── creators.html │ │ ├── featured_communities_carousel.html │ │ ├── recent_uploads_list.html │ │ └── record_item.html │ │ ├── records │ │ ├── detail.html │ │ ├── details │ │ │ └── details.html │ │ └── macros.html │ │ └── trackingcode │ │ ├── trackingcode-prod.html │ │ └── trackingcode-qa.html └── themes │ ├── biosyslit │ ├── invenio_app_rdm │ │ ├── footer.html │ │ └── site_footer.html │ └── invenio_communities │ │ └── details │ │ ├── header.html │ │ └── home │ │ └── index.html │ ├── horizon │ ├── invenio_app_rdm │ │ ├── footer.html │ │ └── site_footer.html │ └── invenio_communities │ │ └── details │ │ ├── header.html │ │ └── home │ │ └── index.html │ └── nih │ ├── invenio_app_rdm │ ├── footer.html │ └── site_footer.html │ └── invenio_communities │ └── details │ ├── header.html │ └── home │ └── index.html ├── translations ├── .gitkeep ├── babel.ini └── en │ └── LC_MESSAGES │ └── messages.po ├── uv.lock └── wipe_recreate.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | # Ignore local virtualenv (if present) 2 | .venv/ 3 | .python-version 4 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/workflows/dockerpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/.github/workflows/dockerpublish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/.gitignore -------------------------------------------------------------------------------- /.invenio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/.invenio -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/.prettierrc -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.9.21 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/README.md -------------------------------------------------------------------------------- /app_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/README.md -------------------------------------------------------------------------------- /app_data/communities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/communities.yaml -------------------------------------------------------------------------------- /app_data/img/aas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/img/aas.png -------------------------------------------------------------------------------- /app_data/img/astrothesis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/img/astrothesis.png -------------------------------------------------------------------------------- /app_data/img/biosyslit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/img/biosyslit.png -------------------------------------------------------------------------------- /app_data/img/briefideas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/img/briefideas.png -------------------------------------------------------------------------------- /app_data/img/cernopenlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/img/cernopenlab.png -------------------------------------------------------------------------------- /app_data/img/covid-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/img/covid-19.png -------------------------------------------------------------------------------- /app_data/img/cs19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/img/cs19.png -------------------------------------------------------------------------------- /app_data/img/ecfunded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/img/ecfunded.png -------------------------------------------------------------------------------- /app_data/img/horizon-zen.png: -------------------------------------------------------------------------------- 1 | ../../static/images/zenodo-gradient-1000.png -------------------------------------------------------------------------------- /app_data/img/lory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/img/lory.png -------------------------------------------------------------------------------- /app_data/img/tops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/img/tops.png -------------------------------------------------------------------------------- /app_data/known_file_formats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/known_file_formats.yaml -------------------------------------------------------------------------------- /app_data/names.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/names.yaml -------------------------------------------------------------------------------- /app_data/oai_sets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/oai_sets.yaml -------------------------------------------------------------------------------- /app_data/pages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/pages.yaml -------------------------------------------------------------------------------- /app_data/pages/biosyslit/how-to-submit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/pages/biosyslit/how-to-submit.html -------------------------------------------------------------------------------- /app_data/pages/horizon/how-to-submit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/pages/horizon/how-to-submit.html -------------------------------------------------------------------------------- /app_data/pages/horizon/join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/pages/horizon/join.html -------------------------------------------------------------------------------- /app_data/users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/users.yaml -------------------------------------------------------------------------------- /app_data/vocabularies-future.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/vocabularies-future.yaml -------------------------------------------------------------------------------- /app_data/vocabularies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/vocabularies.yaml -------------------------------------------------------------------------------- /app_data/vocabularies/awards.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/vocabularies/awards.yaml -------------------------------------------------------------------------------- /app_data/vocabularies/description_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/vocabularies/description_types.yaml -------------------------------------------------------------------------------- /app_data/vocabularies/funders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/vocabularies/funders.yaml -------------------------------------------------------------------------------- /app_data/vocabularies/licenses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/app_data/vocabularies/licenses.csv -------------------------------------------------------------------------------- /assets/js/components/community/overrides/FileModificationModalMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/js/components/community/overrides/FileModificationModalMessage.js -------------------------------------------------------------------------------- /assets/js/components/community/overrides/SubcommunityCreateForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/js/components/community/overrides/SubcommunityCreateForm.js -------------------------------------------------------------------------------- /assets/js/components/landing_page/overrides/UpgradeLegacyRecordButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/js/components/landing_page/overrides/UpgradeLegacyRecordButton.js -------------------------------------------------------------------------------- /assets/js/components/react_invenio_forms/CustomAffiliationsSuggestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/js/components/react_invenio_forms/CustomAffiliationsSuggestions.js -------------------------------------------------------------------------------- /assets/js/invenio_app_rdm/overridableRegistry/mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/js/invenio_app_rdm/overridableRegistry/mapping.js -------------------------------------------------------------------------------- /assets/less/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/LICENSE -------------------------------------------------------------------------------- /assets/less/theme.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/theme.config -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/collections/form.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/collections/form.overrides -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/collections/form.variables: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/collections/menu.overrides: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/collections/menu.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/collections/menu.variables -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/collections/table.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/collections/table.overrides -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/collections/table.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/collections/table.variables -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/elements/button.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/elements/button.overrides -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/elements/button.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/elements/button.variables -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/elements/container.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/elements/container.overrides -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/elements/container.variables: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/elements/divider.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/elements/divider.overrides -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/elements/divider.variables: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/elements/header.overrides: -------------------------------------------------------------------------------- 1 | .ui.tiny.header { 2 | font-weight: @semibold; 3 | } -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/elements/header.variables: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/elements/label.overrides: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/elements/label.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/elements/label.variables -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/elements/list.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/elements/list.overrides -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/elements/list.variables: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/elements/segment.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/elements/segment.overrides -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/elements/segment.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/elements/segment.variables -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/globals/site.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/globals/site.overrides -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/globals/site.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/globals/site.variables -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/modules/dropdown.overrides: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/modules/dropdown.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/modules/dropdown.variables -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/modules/popup.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/modules/popup.overrides -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/modules/popup.variables: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/modules/transition.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/modules/transition.overrides -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/modules/transition.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/modules/transition.variables -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/views/card.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/views/card.overrides -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/views/card.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/views/card.variables -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/views/item.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/views/item.overrides -------------------------------------------------------------------------------- /assets/less/zenodo-rdm/views/item.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/less/zenodo-rdm/views/item.variables -------------------------------------------------------------------------------- /assets/templates/custom_fields/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/templates/custom_fields/.gitkeep -------------------------------------------------------------------------------- /assets/templates/search/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/assets/templates/search/.gitkeep -------------------------------------------------------------------------------- /benchmark/iiif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/benchmark/iiif.py -------------------------------------------------------------------------------- /benchmark/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/benchmark/manifest.json -------------------------------------------------------------------------------- /docker-compose.full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/docker-compose.full.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/docker-services.yml -------------------------------------------------------------------------------- /docker/db/init-readonly-user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/docker/db/init-readonly-user.sql -------------------------------------------------------------------------------- /docker/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/docker/nginx/Dockerfile -------------------------------------------------------------------------------- /docker/nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/docker/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /docker/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/docker/nginx/nginx.conf -------------------------------------------------------------------------------- /docker/nginx/test.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/docker/nginx/test.crt -------------------------------------------------------------------------------- /docker/nginx/test.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/docker/nginx/test.key -------------------------------------------------------------------------------- /docker/pgadmin/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/docker/pgadmin/servers.json -------------------------------------------------------------------------------- /docker/pgbouncer/pgbouncer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/docker/pgbouncer/pgbouncer.ini -------------------------------------------------------------------------------- /docker/pgbouncer/userlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/docker/pgbouncer/userlist.txt -------------------------------------------------------------------------------- /docker/uwsgi/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/docker/uwsgi/uwsgi.ini -------------------------------------------------------------------------------- /docker/uwsgi/uwsgi_rest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/docker/uwsgi/uwsgi_rest.ini -------------------------------------------------------------------------------- /docker/uwsgi/uwsgi_ui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/docker/uwsgi/uwsgi_ui.ini -------------------------------------------------------------------------------- /invenio.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/invenio.cfg -------------------------------------------------------------------------------- /krb5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/krb5.conf -------------------------------------------------------------------------------- /legacy/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legacy/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/legacy/pyproject.toml -------------------------------------------------------------------------------- /legacy/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/legacy/run-tests.sh -------------------------------------------------------------------------------- /legacy/tests/test_licenses_vocabulary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/legacy/tests/test_licenses_vocabulary.py -------------------------------------------------------------------------------- /legacy/zenodo_legacy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/legacy/zenodo_legacy/__init__.py -------------------------------------------------------------------------------- /legacy/zenodo_legacy/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/legacy/zenodo_legacy/data/__init__.py -------------------------------------------------------------------------------- /legacy/zenodo_legacy/data/legacy_licenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/legacy/zenodo_legacy/data/legacy_licenses.json -------------------------------------------------------------------------------- /legacy/zenodo_legacy/data/legacy_to_rdm_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/legacy/zenodo_legacy/data/legacy_to_rdm_map.json -------------------------------------------------------------------------------- /legacy/zenodo_legacy/funders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/legacy/zenodo_legacy/funders.py -------------------------------------------------------------------------------- /legacy/zenodo_legacy/licenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/legacy/zenodo_legacy/licenses.py -------------------------------------------------------------------------------- /legacy/zenodo_legacy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/legacy/zenodo_legacy/utils.py -------------------------------------------------------------------------------- /migrator/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/MANIFEST.in -------------------------------------------------------------------------------- /migrator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/README.md -------------------------------------------------------------------------------- /migrator/migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/migrate.sh -------------------------------------------------------------------------------- /migrator/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/run-tests.sh -------------------------------------------------------------------------------- /migrator/scripts/add_admins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/add_admins.sh -------------------------------------------------------------------------------- /migrator/scripts/communities_dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/communities_dump.sql -------------------------------------------------------------------------------- /migrator/scripts/create_missing_indices.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/create_missing_indices.sql -------------------------------------------------------------------------------- /migrator/scripts/deleted_records_dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/deleted_records_dump.sql -------------------------------------------------------------------------------- /migrator/scripts/deposits_dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/deposits_dump.sql -------------------------------------------------------------------------------- /migrator/scripts/dump_affiliations_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/dump_affiliations_db.py -------------------------------------------------------------------------------- /migrator/scripts/dump_awards_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/dump_awards_db.py -------------------------------------------------------------------------------- /migrator/scripts/dump_funders_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/dump_funders_db.py -------------------------------------------------------------------------------- /migrator/scripts/files_bucket_dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/files_bucket_dump.sql -------------------------------------------------------------------------------- /migrator/scripts/files_files_dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/files_files_dump.sql -------------------------------------------------------------------------------- /migrator/scripts/files_object_dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/files_object_dump.sql -------------------------------------------------------------------------------- /migrator/scripts/gen_create_constraints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/gen_create_constraints.sql -------------------------------------------------------------------------------- /migrator/scripts/gen_create_indices.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/gen_create_indices.sql -------------------------------------------------------------------------------- /migrator/scripts/gen_delete_constraints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/gen_delete_constraints.sql -------------------------------------------------------------------------------- /migrator/scripts/gen_drop_indices.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/gen_drop_indices.sql -------------------------------------------------------------------------------- /migrator/scripts/github_releases_dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/github_releases_dump.sql -------------------------------------------------------------------------------- /migrator/scripts/github_repositories_dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/github_repositories_dump.sql -------------------------------------------------------------------------------- /migrator/scripts/oauth2server_clients_dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/oauth2server_clients_dump.sql -------------------------------------------------------------------------------- /migrator/scripts/oauth2server_tokens_dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/oauth2server_tokens_dump.sql -------------------------------------------------------------------------------- /migrator/scripts/oauthclient_remoteaccount_dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/oauthclient_remoteaccount_dump.sql -------------------------------------------------------------------------------- /migrator/scripts/oauthclient_remotetoken_dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/oauthclient_remotetoken_dump.sql -------------------------------------------------------------------------------- /migrator/scripts/records_dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/records_dump.sql -------------------------------------------------------------------------------- /migrator/scripts/requests_dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/requests_dump.sql -------------------------------------------------------------------------------- /migrator/scripts/restore_indices.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/restore_indices.sql -------------------------------------------------------------------------------- /migrator/scripts/update_sequences.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/update_sequences.sql -------------------------------------------------------------------------------- /migrator/scripts/users_dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/users_dump.sql -------------------------------------------------------------------------------- /migrator/scripts/webhooks_events_dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/scripts/webhooks_events_dump.sql -------------------------------------------------------------------------------- /migrator/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/setup.cfg -------------------------------------------------------------------------------- /migrator/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/setup.py -------------------------------------------------------------------------------- /migrator/streams.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/streams.yaml -------------------------------------------------------------------------------- /migrator/tests/actions/communities/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/communities/conftest.py -------------------------------------------------------------------------------- /migrator/tests/actions/communities/test_community_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/communities/test_community_actions.py -------------------------------------------------------------------------------- /migrator/tests/actions/communities/test_community_actions_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/communities/test_community_actions_stream.py -------------------------------------------------------------------------------- /migrator/tests/actions/communities/testdata/create.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/communities/testdata/create.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/communities/testdata/delete.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/communities/testdata/delete.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/communities/testdata/update.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/communities/testdata/update.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/conftest.py -------------------------------------------------------------------------------- /migrator/tests/actions/drafts/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/drafts/conftest.py -------------------------------------------------------------------------------- /migrator/tests/actions/drafts/test_drafts_actions_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/drafts/test_drafts_actions_stream.py -------------------------------------------------------------------------------- /migrator/tests/actions/drafts/testdata/create.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/drafts/testdata/create.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/drafts/testdata/edit-update.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/drafts/testdata/edit-update.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/drafts/testdata/edit.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/drafts/testdata/edit.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/drafts/testdata/file-upload.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/drafts/testdata/file-upload.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/drafts/testdata/publish-edit.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/drafts/testdata/publish-edit.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/drafts/testdata/publish-new.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/drafts/testdata/publish-new.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/drafts/testdata/update.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/drafts/testdata/update.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/github/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/github/conftest.py -------------------------------------------------------------------------------- /migrator/tests/actions/github/test_github_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/github/test_github_actions.py -------------------------------------------------------------------------------- /migrator/tests/actions/github/test_github_actions_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/github/test_github_actions_stream.py -------------------------------------------------------------------------------- /migrator/tests/actions/github/testdata/hook_disable.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/github/testdata/hook_disable.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/github/testdata/hook_enable_step1.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/github/testdata/hook_enable_step1.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/github/testdata/hook_enable_step2.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/github/testdata/hook_enable_step2.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/github/testdata/hook_update.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/github/testdata/hook_update.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/github/testdata/release_process.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/github/testdata/release_process.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/github/testdata/release_receive.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/github/testdata/release_receive.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/github/testdata/release_update.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/github/testdata/release_update.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/oauth/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/oauth/conftest.py -------------------------------------------------------------------------------- /migrator/tests/actions/oauth/test_oauth_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/oauth/test_oauth_actions.py -------------------------------------------------------------------------------- /migrator/tests/actions/oauth/test_oauth_actions_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/oauth/test_oauth_actions_stream.py -------------------------------------------------------------------------------- /migrator/tests/actions/oauth/testdata/applications/create.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/oauth/testdata/applications/create.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/oauth/testdata/applications/delete.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/oauth/testdata/applications/delete.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/oauth/testdata/applications/reset.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/oauth/testdata/applications/reset.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/oauth/testdata/applications/update.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/oauth/testdata/applications/update.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/oauth/testdata/linked_accounts/connect_gh.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/oauth/testdata/linked_accounts/connect_gh.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/oauth/testdata/linked_accounts/connect_orcid.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/oauth/testdata/linked_accounts/connect_orcid.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/oauth/testdata/linked_accounts/disconnect_gh_client.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/oauth/testdata/linked_accounts/disconnect_gh_client.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/oauth/testdata/linked_accounts/disconnect_gh_token.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/oauth/testdata/linked_accounts/disconnect_gh_token.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/oauth/testdata/linked_accounts/disconnect_orcid.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/oauth/testdata/linked_accounts/disconnect_orcid.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/oauth/testdata/tokens/create.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/oauth/testdata/tokens/create.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/oauth/testdata/tokens/delete.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/oauth/testdata/tokens/delete.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/oauth/testdata/tokens/update.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/oauth/testdata/tokens/update.jsonl -------------------------------------------------------------------------------- /migrator/tests/actions/users/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/users/conftest.py -------------------------------------------------------------------------------- /migrator/tests/actions/users/test_user_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/users/test_user_actions.py -------------------------------------------------------------------------------- /migrator/tests/actions/users/test_user_actions_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/actions/users/test_user_actions_stream.py -------------------------------------------------------------------------------- /migrator/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/conftest.py -------------------------------------------------------------------------------- /migrator/tests/extract/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/extract/conftest.py -------------------------------------------------------------------------------- /migrator/tests/extract/test_kafka_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/extract/test_kafka_extract.py -------------------------------------------------------------------------------- /migrator/tests/extract/testdata/ops.jsonl.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/extract/testdata/ops.jsonl.gz -------------------------------------------------------------------------------- /migrator/tests/extract/testdata/tx_info.jsonl.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/extract/testdata/tx_info.jsonl.gz -------------------------------------------------------------------------------- /migrator/tests/transform/test_community_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/transform/test_community_transform.py -------------------------------------------------------------------------------- /migrator/tests/transform/test_featured_community_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/transform/test_featured_community_transform.py -------------------------------------------------------------------------------- /migrator/tests/transform/test_record_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/transform/test_record_transform.py -------------------------------------------------------------------------------- /migrator/tests/transform/test_request_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/tests/transform/test_request_transform.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/__init__.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/__main__.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/actions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/actions/__init__.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/actions/transform/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/actions/transform/__init__.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/actions/transform/communities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/actions/transform/communities.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/actions/transform/drafts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/actions/transform/drafts.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/actions/transform/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/actions/transform/files.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/actions/transform/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/actions/transform/github.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/actions/transform/ignored.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/actions/transform/ignored.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/actions/transform/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/actions/transform/oauth.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/actions/transform/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/actions/transform/users.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/errors.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/extract/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/extract/__init__.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/extract/kafka.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/extract/kafka.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/stream.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/transform/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/transform/__init__.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/transform/communities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/transform/communities.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/transform/entries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/transform/entries/__init__.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/transform/entries/communities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/transform/entries/communities.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/transform/entries/parents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/transform/entries/parents.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/transform/entries/records/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/transform/entries/records/__init__.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/transform/entries/records/custom_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/transform/entries/records/custom_fields.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/transform/entries/records/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/transform/entries/records/metadata.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/transform/entries/records/records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/transform/entries/records/records.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/transform/entries/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/transform/entries/requests.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/transform/entries/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/transform/entries/users.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/transform/records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/transform/records.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/transform/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/transform/requests.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/transform/transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/transform/transactions.py -------------------------------------------------------------------------------- /migrator/zenodo_rdm_migrator/transform/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/migrator/zenodo_rdm_migrator/transform/users.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run-js-linter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/run-js-linter.sh -------------------------------------------------------------------------------- /scripts/admin/clear_pending_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/scripts/admin/clear_pending_files.py -------------------------------------------------------------------------------- /scripts/admin/community_manage_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/scripts/admin/community_manage_requests.py -------------------------------------------------------------------------------- /scripts/admin/record_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/scripts/admin/record_management.py -------------------------------------------------------------------------------- /scripts/admin/set_file_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/scripts/admin/set_file_quotas.py -------------------------------------------------------------------------------- /scripts/data/added_file_formats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/scripts/data/added_file_formats.yaml -------------------------------------------------------------------------------- /scripts/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/scripts/deploy.py -------------------------------------------------------------------------------- /scripts/ec_create_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/scripts/ec_create_checks.py -------------------------------------------------------------------------------- /scripts/ec_transfer_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/scripts/ec_transfer_records.py -------------------------------------------------------------------------------- /scripts/export-all-xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/scripts/export-all-xml.py -------------------------------------------------------------------------------- /scripts/export-blr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/scripts/export-blr.py -------------------------------------------------------------------------------- /scripts/export-datacite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/scripts/export-datacite.py -------------------------------------------------------------------------------- /scripts/generate_iiif_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/scripts/generate_iiif_tiles.py -------------------------------------------------------------------------------- /scripts/known_formats_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/scripts/known_formats_gen.py -------------------------------------------------------------------------------- /scripts/new_api_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/scripts/new_api_flow.py -------------------------------------------------------------------------------- /scripts/old_api_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/scripts/old_api_flow.py -------------------------------------------------------------------------------- /scripts/run_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/scripts/run_script.py -------------------------------------------------------------------------------- /scripts/sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/scripts/sleep.py -------------------------------------------------------------------------------- /site/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/.gitkeep -------------------------------------------------------------------------------- /site/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/pyproject.toml -------------------------------------------------------------------------------- /site/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/run-tests.sh -------------------------------------------------------------------------------- /site/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/__init__.py -------------------------------------------------------------------------------- /site/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/conftest.py -------------------------------------------------------------------------------- /site/tests/fake_datacite_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/fake_datacite_client.py -------------------------------------------------------------------------------- /site/tests/legacy/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/legacy/conftest.py -------------------------------------------------------------------------------- /site/tests/legacy/deposits/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/legacy/deposits/conftest.py -------------------------------------------------------------------------------- /site/tests/legacy/deposits/test_rest_api_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/legacy/deposits/test_rest_api_metadata.py -------------------------------------------------------------------------------- /site/tests/legacy/deposits/test_rest_api_simpleflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/legacy/deposits/test_rest_api_simpleflow.py -------------------------------------------------------------------------------- /site/tests/legacy/test_communities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/legacy/test_communities.py -------------------------------------------------------------------------------- /site/tests/legacy/test_extra_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/legacy/test_extra_formats.py -------------------------------------------------------------------------------- /site/tests/legacy/test_quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/legacy/test_quickstart.py -------------------------------------------------------------------------------- /site/tests/moderation/test_domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/moderation/test_domains.py -------------------------------------------------------------------------------- /site/tests/moderation/test_moderation_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/moderation/test_moderation_queries.py -------------------------------------------------------------------------------- /site/tests/openaire/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/openaire/conftest.py -------------------------------------------------------------------------------- /site/tests/openaire/test_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/openaire/test_components.py -------------------------------------------------------------------------------- /site/tests/openaire/test_openaire_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/openaire/test_openaire_helpers.py -------------------------------------------------------------------------------- /site/tests/openaire/test_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/openaire/test_serializer.py -------------------------------------------------------------------------------- /site/tests/openaire/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/openaire/test_tasks.py -------------------------------------------------------------------------------- /site/tests/requests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/requests/conftest.py -------------------------------------------------------------------------------- /site/tests/requests/test_community_manage_record_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/requests/test_community_manage_record_request.py -------------------------------------------------------------------------------- /site/tests/requests/test_record_upgrade_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/requests/test_record_upgrade_request.py -------------------------------------------------------------------------------- /site/tests/resources/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/resources/conftest.py -------------------------------------------------------------------------------- /site/tests/resources/test_record_file_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/resources/test_record_file_permissions.py -------------------------------------------------------------------------------- /site/tests/support/test_contact_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/support/test_contact_form.py -------------------------------------------------------------------------------- /site/tests/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/test_search.py -------------------------------------------------------------------------------- /site/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/tests/test_views.py -------------------------------------------------------------------------------- /site/zenodo_rdm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/api.py -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/blr-related-works/BlrSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/blr-related-works/BlrSearch.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/blr-related-works/api/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/blr-related-works/api/config.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/blr-related-works/components/BlrResultsLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/blr-related-works/components/BlrResultsLoader.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/blr-related-works/components/Filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/blr-related-works/components/Filter.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/blr-related-works/components/LayoutSwitchButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/blr-related-works/components/LayoutSwitchButtons.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/blr-related-works/components/NoResults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/blr-related-works/components/NoResults.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/blr-related-works/components/RecordItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/blr-related-works/components/RecordItem.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/blr-related-works/components/ResultsLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/blr-related-works/components/ResultsLayout.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/blr-related-works/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/blr-related-works/index.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/branded-community/community-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/branded-community/community-item.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/branded-community/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/branded-community/index.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/CitationsSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/CitationsSearch.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/api/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/api/config.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/components/CitationRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/components/CitationRow.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/components/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/components/Counter.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/components/ErrorMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/components/ErrorMessage.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/components/Filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/components/Filter.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/components/NoCitations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/components/NoCitations.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/components/Results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/components/Results.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/index.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/sanitizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/citations/sanitizer.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/communities-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/communities-carousel.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/support/components/CategoryDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/support/components/CategoryDropdown.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/support/components/FileTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/support/components/FileTable.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/support/components/FileUploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/support/components/FileUploader.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/support/components/SupportForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/support/components/SupportForm.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/support/components/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/support/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/js/zenodo_rdm/src/support/support.js -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/less/zenodo_rdm/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/zenodo_rdm/assets/semantic-ui/less/zenodo_rdm/previewer/image-previewer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/assets/semantic-ui/less/zenodo_rdm/previewer/image-previewer.less -------------------------------------------------------------------------------- /site/zenodo_rdm/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/cli.py -------------------------------------------------------------------------------- /site/zenodo_rdm/communities_ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/communities_ui/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/communities_ui/views/communities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/communities_ui/views/communities.py -------------------------------------------------------------------------------- /site/zenodo_rdm/communities_ui/views/metrics_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/communities_ui/views/metrics_config.py -------------------------------------------------------------------------------- /site/zenodo_rdm/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/config.py -------------------------------------------------------------------------------- /site/zenodo_rdm/curation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/curation/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/curation/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/curation/config.py -------------------------------------------------------------------------------- /site/zenodo_rdm/curation/curators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/curation/curators.py -------------------------------------------------------------------------------- /site/zenodo_rdm/curation/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/curation/ext.py -------------------------------------------------------------------------------- /site/zenodo_rdm/curation/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/curation/jobs.py -------------------------------------------------------------------------------- /site/zenodo_rdm/curation/proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/curation/proxies.py -------------------------------------------------------------------------------- /site/zenodo_rdm/curation/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/curation/rules.py -------------------------------------------------------------------------------- /site/zenodo_rdm/curation/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/curation/tasks.py -------------------------------------------------------------------------------- /site/zenodo_rdm/custom_fields/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/custom_fields/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/custom_fields/domain_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/custom_fields/domain_fields.py -------------------------------------------------------------------------------- /site/zenodo_rdm/custom_fields/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/custom_fields/legacy.py -------------------------------------------------------------------------------- /site/zenodo_rdm/custom_fields/publishing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/custom_fields/publishing.py -------------------------------------------------------------------------------- /site/zenodo_rdm/custom_schemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/custom_schemes.py -------------------------------------------------------------------------------- /site/zenodo_rdm/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/decorators.py -------------------------------------------------------------------------------- /site/zenodo_rdm/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/errors.py -------------------------------------------------------------------------------- /site/zenodo_rdm/exporter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/exporter/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/exporter/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/exporter/cli.py -------------------------------------------------------------------------------- /site/zenodo_rdm/exporter/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/exporter/config.py -------------------------------------------------------------------------------- /site/zenodo_rdm/exporter/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/exporter/ext.py -------------------------------------------------------------------------------- /site/zenodo_rdm/exporter/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/exporter/jobs.py -------------------------------------------------------------------------------- /site/zenodo_rdm/exporter/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/exporter/tasks.py -------------------------------------------------------------------------------- /site/zenodo_rdm/exporter/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/exporter/views.py -------------------------------------------------------------------------------- /site/zenodo_rdm/facets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/facets.py -------------------------------------------------------------------------------- /site/zenodo_rdm/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/files.py -------------------------------------------------------------------------------- /site/zenodo_rdm/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/filters.py -------------------------------------------------------------------------------- /site/zenodo_rdm/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/generators.py -------------------------------------------------------------------------------- /site/zenodo_rdm/github/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/github/release.py -------------------------------------------------------------------------------- /site/zenodo_rdm/github/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/github/schemas.py -------------------------------------------------------------------------------- /site/zenodo_rdm/index_templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/index_templates/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/index_templates/os-v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/index_templates/os-v2/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/index_templates/os-v2/rdmrecords-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/index_templates/os-v2/rdmrecords-template.json -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/deserializers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/deserializers/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/deserializers/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/deserializers/metadata.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/deserializers/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/deserializers/schemas.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/ext.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/requests/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/requests/community_manage_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/requests/community_manage_record.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/requests/record_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/requests/record_upgrade.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/requests/utils.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/resources.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/scopes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/scopes.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/serializers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/serializers/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/serializers/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/serializers/schemas/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/serializers/schemas/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/serializers/schemas/common.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/serializers/schemas/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/serializers/schemas/files.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/serializers/schemas/legacyjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/serializers/schemas/legacyjson.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/serializers/schemas/zenodojson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/serializers/schemas/zenodojson.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/services.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/tokens.py -------------------------------------------------------------------------------- /site/zenodo_rdm/legacy/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/legacy/views.py -------------------------------------------------------------------------------- /site/zenodo_rdm/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/metrics/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/metrics/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/metrics/api.py -------------------------------------------------------------------------------- /site/zenodo_rdm/metrics/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/metrics/config.py -------------------------------------------------------------------------------- /site/zenodo_rdm/metrics/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/metrics/ext.py -------------------------------------------------------------------------------- /site/zenodo_rdm/metrics/proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/metrics/proxies.py -------------------------------------------------------------------------------- /site/zenodo_rdm/metrics/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/metrics/tasks.py -------------------------------------------------------------------------------- /site/zenodo_rdm/metrics/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/metrics/utils.py -------------------------------------------------------------------------------- /site/zenodo_rdm/metrics/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/metrics/views.py -------------------------------------------------------------------------------- /site/zenodo_rdm/moderation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/moderation/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/moderation/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/moderation/config.py -------------------------------------------------------------------------------- /site/zenodo_rdm/moderation/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/moderation/errors.py -------------------------------------------------------------------------------- /site/zenodo_rdm/moderation/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/moderation/ext.py -------------------------------------------------------------------------------- /site/zenodo_rdm/moderation/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/moderation/handlers.py -------------------------------------------------------------------------------- /site/zenodo_rdm/moderation/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/moderation/models.py -------------------------------------------------------------------------------- /site/zenodo_rdm/moderation/percolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/moderation/percolator.py -------------------------------------------------------------------------------- /site/zenodo_rdm/moderation/proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/moderation/proxies.py -------------------------------------------------------------------------------- /site/zenodo_rdm/moderation/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/moderation/rules.py -------------------------------------------------------------------------------- /site/zenodo_rdm/moderation/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/moderation/tasks.py -------------------------------------------------------------------------------- /site/zenodo_rdm/moderation/uow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/moderation/uow.py -------------------------------------------------------------------------------- /site/zenodo_rdm/openaire/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/openaire/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/openaire/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/openaire/config.py -------------------------------------------------------------------------------- /site/zenodo_rdm/openaire/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/openaire/errors.py -------------------------------------------------------------------------------- /site/zenodo_rdm/openaire/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/openaire/ext.py -------------------------------------------------------------------------------- /site/zenodo_rdm/openaire/proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/openaire/proxies.py -------------------------------------------------------------------------------- /site/zenodo_rdm/openaire/records/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/openaire/records/components.py -------------------------------------------------------------------------------- /site/zenodo_rdm/openaire/serializers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/openaire/serializers/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/openaire/serializers/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/openaire/serializers/schema.py -------------------------------------------------------------------------------- /site/zenodo_rdm/openaire/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/openaire/tasks.py -------------------------------------------------------------------------------- /site/zenodo_rdm/openaire/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/openaire/utils.py -------------------------------------------------------------------------------- /site/zenodo_rdm/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/params.py -------------------------------------------------------------------------------- /site/zenodo_rdm/partners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/partners/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/partners/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/partners/client.py -------------------------------------------------------------------------------- /site/zenodo_rdm/partners/dryad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/partners/dryad.py -------------------------------------------------------------------------------- /site/zenodo_rdm/partners/lory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/partners/lory.py -------------------------------------------------------------------------------- /site/zenodo_rdm/partners/payloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/partners/payloads.py -------------------------------------------------------------------------------- /site/zenodo_rdm/partners/plazi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/partners/plazi.py -------------------------------------------------------------------------------- /site/zenodo_rdm/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/permissions.py -------------------------------------------------------------------------------- /site/zenodo_rdm/previewer/image_previewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/previewer/image_previewer.py -------------------------------------------------------------------------------- /site/zenodo_rdm/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/profiler.py -------------------------------------------------------------------------------- /site/zenodo_rdm/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/providers.py -------------------------------------------------------------------------------- /site/zenodo_rdm/queryparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/queryparser.py -------------------------------------------------------------------------------- /site/zenodo_rdm/redirector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/redirector.py -------------------------------------------------------------------------------- /site/zenodo_rdm/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/resources.py -------------------------------------------------------------------------------- /site/zenodo_rdm/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/schema.py -------------------------------------------------------------------------------- /site/zenodo_rdm/serializers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/serializers/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/serializers/bibtex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/serializers/bibtex.py -------------------------------------------------------------------------------- /site/zenodo_rdm/serializers/cff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/serializers/cff.py -------------------------------------------------------------------------------- /site/zenodo_rdm/serializers/codemeta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/serializers/codemeta.py -------------------------------------------------------------------------------- /site/zenodo_rdm/serializers/datacite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/serializers/datacite.py -------------------------------------------------------------------------------- /site/zenodo_rdm/sitemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/sitemap.py -------------------------------------------------------------------------------- /site/zenodo_rdm/stats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/stats/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/stats/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/stats/config.py -------------------------------------------------------------------------------- /site/zenodo_rdm/stats/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/stats/errors.py -------------------------------------------------------------------------------- /site/zenodo_rdm/stats/exporters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/stats/exporters.py -------------------------------------------------------------------------------- /site/zenodo_rdm/stats/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/stats/ext.py -------------------------------------------------------------------------------- /site/zenodo_rdm/stats/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/stats/tasks.py -------------------------------------------------------------------------------- /site/zenodo_rdm/stats/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/stats/utils.py -------------------------------------------------------------------------------- /site/zenodo_rdm/subcommunities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/subcommunities/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/subcommunities/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/subcommunities/request.py -------------------------------------------------------------------------------- /site/zenodo_rdm/subcommunities/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/subcommunities/schema.py -------------------------------------------------------------------------------- /site/zenodo_rdm/support/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/support/__init__.py -------------------------------------------------------------------------------- /site/zenodo_rdm/support/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/support/schema.py -------------------------------------------------------------------------------- /site/zenodo_rdm/support/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/support/views.py -------------------------------------------------------------------------------- /site/zenodo_rdm/templates/semantic-ui/invenio_checks/requests/help_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/templates/semantic-ui/invenio_checks/requests/help_message.html -------------------------------------------------------------------------------- /site/zenodo_rdm/templates/semantic-ui/profiler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/templates/semantic-ui/profiler/index.html -------------------------------------------------------------------------------- /site/zenodo_rdm/templates/semantic-ui/zenodo_rdm/obo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/templates/semantic-ui/zenodo_rdm/obo.html -------------------------------------------------------------------------------- /site/zenodo_rdm/templates/semantic-ui/zenodo_rdm/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/templates/semantic-ui/zenodo_rdm/support.html -------------------------------------------------------------------------------- /site/zenodo_rdm/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/tokens.py -------------------------------------------------------------------------------- /site/zenodo_rdm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/utils.py -------------------------------------------------------------------------------- /site/zenodo_rdm/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/views.py -------------------------------------------------------------------------------- /site/zenodo_rdm/webpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/site/zenodo_rdm/webpack.py -------------------------------------------------------------------------------- /static/describo/zenodo-describo-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/describo/zenodo-describo-profile.json -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/images/annostor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/annostor.svg -------------------------------------------------------------------------------- /static/images/arcadia-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/arcadia-logo.svg -------------------------------------------------------------------------------- /static/images/briefideas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/briefideas.png -------------------------------------------------------------------------------- /static/images/cern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/cern.png -------------------------------------------------------------------------------- /static/images/checklistbank-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/checklistbank-logo.png -------------------------------------------------------------------------------- /static/images/collections/agrisciences.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/agrisciences.jpg -------------------------------------------------------------------------------- /static/images/collections/animalia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/animalia.jpg -------------------------------------------------------------------------------- /static/images/collections/archaea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/archaea.jpg -------------------------------------------------------------------------------- /static/images/collections/bacteria.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/bacteria.jpg -------------------------------------------------------------------------------- /static/images/collections/bsd-mesh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/bsd-mesh.jpg -------------------------------------------------------------------------------- /static/images/collections/cm-mesh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/cm-mesh.jpg -------------------------------------------------------------------------------- /static/images/collections/ebm-mesh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/ebm-mesh.jpg -------------------------------------------------------------------------------- /static/images/collections/ejt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/ejt.jpg -------------------------------------------------------------------------------- /static/images/collections/engineering.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/engineering.jpg -------------------------------------------------------------------------------- /static/images/collections/erc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/erc.jpg -------------------------------------------------------------------------------- /static/images/collections/euratom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/euratom.jpg -------------------------------------------------------------------------------- /static/images/collections/fp7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/fp7.jpg -------------------------------------------------------------------------------- /static/images/collections/fungi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/fungi.jpg -------------------------------------------------------------------------------- /static/images/collections/h2020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/h2020.jpg -------------------------------------------------------------------------------- /static/images/collections/hcfws-mesh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/hcfws-mesh.jpg -------------------------------------------------------------------------------- /static/images/collections/he.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/he.jpg -------------------------------------------------------------------------------- /static/images/collections/ho-mesh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/ho-mesh.jpg -------------------------------------------------------------------------------- /static/images/collections/holotype.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/holotype.jpg -------------------------------------------------------------------------------- /static/images/collections/humanities.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/humanities.jpg -------------------------------------------------------------------------------- /static/images/collections/linnaeus-holotype.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/linnaeus-holotype.jpg -------------------------------------------------------------------------------- /static/images/collections/linnaeus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/linnaeus.jpg -------------------------------------------------------------------------------- /static/images/collections/mhealth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/mhealth.jpg -------------------------------------------------------------------------------- /static/images/collections/msca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/msca.jpg -------------------------------------------------------------------------------- /static/images/collections/nci.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/nci.jpg -------------------------------------------------------------------------------- /static/images/collections/nei.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/nei.jpg -------------------------------------------------------------------------------- /static/images/collections/new-species.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/new-species.jpg -------------------------------------------------------------------------------- /static/images/collections/nhgri.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/nhgri.jpg -------------------------------------------------------------------------------- /static/images/collections/nhlbi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/nhlbi.jpg -------------------------------------------------------------------------------- /static/images/collections/nigms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/nigms.jpg -------------------------------------------------------------------------------- /static/images/collections/nlm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/nlm.jpg -------------------------------------------------------------------------------- /static/images/collections/nsciences.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/nsciences.jpg -------------------------------------------------------------------------------- /static/images/collections/plantae.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/plantae.jpg -------------------------------------------------------------------------------- /static/images/collections/protista.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/protista.jpg -------------------------------------------------------------------------------- /static/images/collections/research-mesh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/research-mesh.jpg -------------------------------------------------------------------------------- /static/images/collections/ssciences.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/ssciences.jpg -------------------------------------------------------------------------------- /static/images/collections/t-rex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/collections/t-rex.jpg -------------------------------------------------------------------------------- /static/images/edmo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/edmo-icon.svg -------------------------------------------------------------------------------- /static/images/eu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/eu.png -------------------------------------------------------------------------------- /static/images/eufunded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/eufunded.png -------------------------------------------------------------------------------- /static/images/f1000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/f1000.jpg -------------------------------------------------------------------------------- /static/images/gbif-full-logo-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/gbif-full-logo-green.png -------------------------------------------------------------------------------- /static/images/gbif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/gbif.png -------------------------------------------------------------------------------- /static/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/github.svg -------------------------------------------------------------------------------- /static/images/inspire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/inspire.svg -------------------------------------------------------------------------------- /static/images/invenio-rdm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/invenio-rdm.svg -------------------------------------------------------------------------------- /static/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/logo.svg -------------------------------------------------------------------------------- /static/images/openaire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/openaire.png -------------------------------------------------------------------------------- /static/images/openaire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/openaire.svg -------------------------------------------------------------------------------- /static/images/reana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/reana.svg -------------------------------------------------------------------------------- /static/images/sib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/sib.png -------------------------------------------------------------------------------- /static/images/sibils-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/sibils-logo.png -------------------------------------------------------------------------------- /static/images/swh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/swh.png -------------------------------------------------------------------------------- /static/images/treatment-bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/treatment-bank.png -------------------------------------------------------------------------------- /static/images/treatmentbank-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/treatmentbank-logo.png -------------------------------------------------------------------------------- /static/images/zenodo-gradient-1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/zenodo-gradient-1000.png -------------------------------------------------------------------------------- /static/images/zenodo-gradient-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/images/zenodo-gradient-round.svg -------------------------------------------------------------------------------- /static/js/mirador3-dist/10.bdb16df0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/js/mirador3-dist/10.bdb16df0.js -------------------------------------------------------------------------------- /static/js/mirador3-dist/11.ba873e37.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/js/mirador3-dist/11.ba873e37.js -------------------------------------------------------------------------------- /static/js/mirador3-dist/12.007d06b1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/js/mirador3-dist/12.007d06b1.js -------------------------------------------------------------------------------- /static/js/mirador3-dist/4.32e961c6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/js/mirador3-dist/4.32e961c6.js -------------------------------------------------------------------------------- /static/js/mirador3-dist/5.7ce5ddf0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/js/mirador3-dist/5.7ce5ddf0.js -------------------------------------------------------------------------------- /static/js/mirador3-dist/6.98f01b2f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/js/mirador3-dist/6.98f01b2f.js -------------------------------------------------------------------------------- /static/js/mirador3-dist/7.79e586cf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/js/mirador3-dist/7.79e586cf.js -------------------------------------------------------------------------------- /static/js/mirador3-dist/8.69d38e7c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/js/mirador3-dist/8.69d38e7c.js -------------------------------------------------------------------------------- /static/js/mirador3-dist/9.b421f62a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/js/mirador3-dist/9.b421f62a.js -------------------------------------------------------------------------------- /static/js/mirador3-dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/js/mirador3-dist/main.js -------------------------------------------------------------------------------- /static/oai2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/oai2.xsl -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/static/robots.txt -------------------------------------------------------------------------------- /templates/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/.gitkeep -------------------------------------------------------------------------------- /templates/security/email/change_notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/security/email/change_notice.html -------------------------------------------------------------------------------- /templates/security/email/change_notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/security/email/change_notice.txt -------------------------------------------------------------------------------- /templates/security/email/confirmation_instructions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/security/email/confirmation_instructions.html -------------------------------------------------------------------------------- /templates/security/email/confirmation_instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/security/email/confirmation_instructions.txt -------------------------------------------------------------------------------- /templates/security/email/reset_instructions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/security/email/reset_instructions.html -------------------------------------------------------------------------------- /templates/security/email/reset_instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/security/email/reset_instructions.txt -------------------------------------------------------------------------------- /templates/security/email/reset_notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/security/email/reset_notice.html -------------------------------------------------------------------------------- /templates/security/email/reset_notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/security/email/reset_notice.txt -------------------------------------------------------------------------------- /templates/security/email/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/security/email/welcome.html -------------------------------------------------------------------------------- /templates/security/email/welcome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/security/email/welcome.txt -------------------------------------------------------------------------------- /templates/semantic-ui/invenio_accounts/login_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/invenio_accounts/login_user.html -------------------------------------------------------------------------------- /templates/semantic-ui/invenio_accounts/register_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/invenio_accounts/register_user.html -------------------------------------------------------------------------------- /templates/semantic-ui/invenio_app_rdm/records/previewers/mirador_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/invenio_app_rdm/records/previewers/mirador_preview.html -------------------------------------------------------------------------------- /templates/semantic-ui/invenio_app_rdm/records/previewers/preview_unavailable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/invenio_app_rdm/records/previewers/preview_unavailable.html -------------------------------------------------------------------------------- /templates/semantic-ui/invenio_app_rdm/records/previewers/simple_image_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/invenio_app_rdm/records/previewers/simple_image_preview.html -------------------------------------------------------------------------------- /templates/semantic-ui/invenio_app_rdm/site_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/invenio_app_rdm/site_footer.html -------------------------------------------------------------------------------- /templates/semantic-ui/invenio_communities/community_theme_template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/invenio_communities/community_theme_template.css -------------------------------------------------------------------------------- /templates/semantic-ui/invenio_communities/details/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/invenio_communities/details/base.html -------------------------------------------------------------------------------- /templates/semantic-ui/invenio_communities/frontpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/invenio_communities/frontpage.html -------------------------------------------------------------------------------- /templates/semantic-ui/invenio_requests/community-manage-record/user_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/invenio_requests/community-manage-record/user_dashboard.html -------------------------------------------------------------------------------- /templates/semantic-ui/invenio_requests/legacy-record-upgrade/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/invenio_requests/legacy-record-upgrade/index.html -------------------------------------------------------------------------------- /templates/semantic-ui/invenio_theme/page_cover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/invenio_theme/page_cover.html -------------------------------------------------------------------------------- /templates/semantic-ui/zenodo_rdm/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/zenodo_rdm/footer.html -------------------------------------------------------------------------------- /templates/semantic-ui/zenodo_rdm/frontpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/zenodo_rdm/frontpage.html -------------------------------------------------------------------------------- /templates/semantic-ui/zenodo_rdm/header_frontpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/zenodo_rdm/header_frontpage.html -------------------------------------------------------------------------------- /templates/semantic-ui/zenodo_rdm/macros/carousel_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/zenodo_rdm/macros/carousel_item.html -------------------------------------------------------------------------------- /templates/semantic-ui/zenodo_rdm/macros/communities_carousel_slides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/zenodo_rdm/macros/communities_carousel_slides.html -------------------------------------------------------------------------------- /templates/semantic-ui/zenodo_rdm/macros/communities_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/zenodo_rdm/macros/communities_list.html -------------------------------------------------------------------------------- /templates/semantic-ui/zenodo_rdm/macros/creators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/zenodo_rdm/macros/creators.html -------------------------------------------------------------------------------- /templates/semantic-ui/zenodo_rdm/macros/featured_communities_carousel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/zenodo_rdm/macros/featured_communities_carousel.html -------------------------------------------------------------------------------- /templates/semantic-ui/zenodo_rdm/macros/recent_uploads_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/zenodo_rdm/macros/recent_uploads_list.html -------------------------------------------------------------------------------- /templates/semantic-ui/zenodo_rdm/macros/record_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/zenodo_rdm/macros/record_item.html -------------------------------------------------------------------------------- /templates/semantic-ui/zenodo_rdm/records/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/zenodo_rdm/records/detail.html -------------------------------------------------------------------------------- /templates/semantic-ui/zenodo_rdm/records/details/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/zenodo_rdm/records/details/details.html -------------------------------------------------------------------------------- /templates/semantic-ui/zenodo_rdm/records/macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/zenodo_rdm/records/macros.html -------------------------------------------------------------------------------- /templates/semantic-ui/zenodo_rdm/trackingcode/trackingcode-prod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/zenodo_rdm/trackingcode/trackingcode-prod.html -------------------------------------------------------------------------------- /templates/semantic-ui/zenodo_rdm/trackingcode/trackingcode-qa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/semantic-ui/zenodo_rdm/trackingcode/trackingcode-qa.html -------------------------------------------------------------------------------- /templates/themes/biosyslit/invenio_app_rdm/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/themes/biosyslit/invenio_app_rdm/footer.html -------------------------------------------------------------------------------- /templates/themes/biosyslit/invenio_app_rdm/site_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/themes/biosyslit/invenio_app_rdm/site_footer.html -------------------------------------------------------------------------------- /templates/themes/biosyslit/invenio_communities/details/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/themes/biosyslit/invenio_communities/details/header.html -------------------------------------------------------------------------------- /templates/themes/biosyslit/invenio_communities/details/home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/themes/biosyslit/invenio_communities/details/home/index.html -------------------------------------------------------------------------------- /templates/themes/horizon/invenio_app_rdm/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/themes/horizon/invenio_app_rdm/footer.html -------------------------------------------------------------------------------- /templates/themes/horizon/invenio_app_rdm/site_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/themes/horizon/invenio_app_rdm/site_footer.html -------------------------------------------------------------------------------- /templates/themes/horizon/invenio_communities/details/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/themes/horizon/invenio_communities/details/header.html -------------------------------------------------------------------------------- /templates/themes/horizon/invenio_communities/details/home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/themes/horizon/invenio_communities/details/home/index.html -------------------------------------------------------------------------------- /templates/themes/nih/invenio_app_rdm/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/themes/nih/invenio_app_rdm/footer.html -------------------------------------------------------------------------------- /templates/themes/nih/invenio_app_rdm/site_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/themes/nih/invenio_app_rdm/site_footer.html -------------------------------------------------------------------------------- /templates/themes/nih/invenio_communities/details/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/themes/nih/invenio_communities/details/header.html -------------------------------------------------------------------------------- /templates/themes/nih/invenio_communities/details/home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/templates/themes/nih/invenio_communities/details/home/index.html -------------------------------------------------------------------------------- /translations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /translations/babel.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/translations/babel.ini -------------------------------------------------------------------------------- /translations/en/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/uv.lock -------------------------------------------------------------------------------- /wipe_recreate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenodo/zenodo-rdm/HEAD/wipe_recreate.sh --------------------------------------------------------------------------------