├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── test-coverage.yaml ├── .gitignore ├── .hooks └── description ├── .pre-commit-config.yaml ├── DESCRIPTION ├── LICENSE ├── Makefile ├── NAMESPACE ├── R ├── ISO-639-2-language-codes.R ├── client-main.R ├── client-private-dcmi2host.R ├── client-private-embargo-publish.R ├── client-private-frictionless.R ├── client-private-methods.R ├── deposits-package.R ├── desc-to-meta.R ├── figshare-categories.R ├── httptest2-mocks.R ├── httr2-helpers.R ├── metadata-dcmi.R ├── metadata-template.R ├── metadata-translate.R ├── metadata-validate.R ├── search-params.R ├── service-desc-meta.R ├── service-functions.R ├── service-methods.R ├── service-urls.R ├── tokens.R ├── upload-figshare.R ├── upload-zenodo.R └── utils.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codemeta.json ├── data-raw ├── get-dcmi-xml.R └── get-zenodo-licenses.R ├── inst ├── extdata │ ├── dc │ │ ├── dc.xsd │ │ ├── dcmitype.xsd │ │ ├── dcterms.xsd │ │ ├── schema-template.json │ │ └── schema.json │ ├── figshare │ │ ├── from_dc.json │ │ └── schema.json │ └── zenodo │ │ ├── from_dc.json │ │ ├── schema.json │ │ ├── to_dc.json │ │ └── zenodo_licenses.csv └── httptest2 │ └── redact.R ├── man ├── dcmi_terms.Rd ├── deposits-package.Rd ├── depositsClient.Rd ├── deposits_metadata_template.Rd ├── deposits_services.Rd ├── figshare_categories.Rd └── get_deposits_token.Rd ├── tests ├── script.bash ├── testthat.R └── testthat │ ├── _snaps │ └── client.md │ ├── client-new │ └── api │ │ └── account │ │ └── articles.json │ ├── fs_client │ └── api │ │ └── account │ │ └── articles.json │ ├── fs_create │ └── api │ │ └── account │ │ └── articles.json │ ├── fs_get_publ │ └── api │ │ ├── account │ │ └── articles.json │ │ └── articles │ │ └── 23514972.json │ ├── fs_list │ └── api │ │ └── account │ │ └── articles.json │ ├── fs_new │ └── api │ │ ├── account │ │ ├── articles-8417b4-POST.R │ │ └── articles.json │ │ └── articles │ │ └── 23522487.json │ ├── fs_new2 │ └── api │ │ ├── account │ │ ├── articles-8417b4-POST.R │ │ └── articles.json │ │ └── articles │ │ └── 23522484.json │ ├── fs_retr │ └── api │ │ ├── account │ │ └── articles.json │ │ └── articles │ │ └── 23522487.json │ ├── fs_up │ ├── api │ │ ├── account │ │ │ └── articles.json │ │ └── articles │ │ │ ├── 23522487 │ │ │ ├── files-8d2582-POST.R │ │ │ └── files │ │ │ │ ├── 41251068-POST.R │ │ │ │ └── 41251068.json │ │ │ ├── 23522487-54b0b5-PUT.R │ │ │ └── 23522487.json │ ├── files │ │ └── hash │ │ │ └── 1-861b94-PUT.txt │ └── fup-eu-west-1.up │ │ └── 04b4b28d-1bb0-454b-a8f6-537a7462ad28.json │ ├── fs_up2 │ ├── api │ │ ├── account │ │ │ └── articles.json │ │ └── articles │ │ │ ├── 23522487 │ │ │ ├── files-e3c461-POST.R │ │ │ └── files │ │ │ │ ├── 41251092-POST.R │ │ │ │ └── 41251092.json │ │ │ ├── 23522487-54b0b5-PUT.R │ │ │ └── 23522487.json │ ├── files │ │ └── hash │ │ │ └── 1-861b94-PUT.txt │ └── fup-eu-west-1.up │ │ └── aa8d38ef-a31c-4852-b3f8-ecdebec4f6df.json │ ├── fs_update │ └── api │ │ ├── account │ │ └── articles.json │ │ └── articles │ │ ├── 23522487-c14ad9-PUT.R │ │ └── 23522487.json │ ├── fs_update_dp1 │ └── api │ │ └── articles │ │ └── 23522487-54b0b5-PUT.R │ ├── fs_update_dp2 │ └── api │ │ └── articles │ │ └── 23522487-1e2e5c-PUT.R │ ├── helper-test-client.R │ ├── meta-new1 │ └── sbapi │ │ └── deposit │ │ └── depositions-fa7f86.json │ ├── meta-new2 │ └── sbapi │ │ └── deposit │ │ └── depositions-fa7f86.json │ ├── meta-new3 │ └── sbapi │ │ └── deposit │ │ └── depositions-fa7f86.json │ ├── meta-new4 │ └── sbapi │ │ └── deposit │ │ └── depositions-fa7f86.json │ ├── print-fs │ └── api │ │ └── account │ │ └── articles.json │ ├── print-zen │ └── sbapi │ │ └── deposit │ │ └── depositions-fa7f86.json │ ├── search_fs │ └── api │ │ └── articles │ │ └── search-b2e6ce-POST.json │ ├── search_zen │ └── sbapi │ │ └── records-53e6de.json │ ├── services_fs │ └── api │ │ └── account │ │ └── articles.json │ ├── services_zen │ └── sbapi │ │ └── deposit │ │ └── depositions-fa7f86.json │ ├── test-client-figshare.R │ ├── test-client-metadata.R │ ├── test-client-zenodo.R │ ├── test-client.R │ ├── test-figshare-categories.R │ ├── test-iso-639-languages.R │ ├── test-metadata-validate.R │ ├── test-search.R │ ├── test-services.R │ ├── zen_client │ └── sbapi │ │ └── deposit │ │ └── depositions-fa7f86.json │ ├── zen_create │ └── sbapi │ │ └── deposit │ │ └── depositions-fa7f86.json │ ├── zen_dl │ └── sbapi │ │ ├── deposit │ │ └── depositions │ │ │ └── 29712.json │ │ └── records │ │ └── 29712 │ │ └── draft │ │ └── files │ │ └── data.csv │ │ └── content.txt │ ├── zen_dl_fail │ └── sbapi │ │ └── deposit │ │ └── depositions │ │ └── 29712.json │ ├── zen_embargo │ └── sbapi │ │ └── deposit │ │ └── depositions │ │ └── 29712-8f7fb0-PUT.json │ ├── zen_list │ └── sbapi │ │ └── deposit │ │ └── depositions-fa7f86.json │ ├── zen_new │ └── sbapi │ │ └── deposit │ │ ├── depositions-c69359-POST.R │ │ └── depositions-fa7f86.json │ ├── zen_retr │ └── sbapi │ │ └── deposit │ │ └── depositions │ │ └── 29712.json │ ├── zen_up │ └── sbapi │ │ ├── deposit │ │ └── depositions │ │ │ ├── 29712-6ea865-PUT.json │ │ │ └── 29712.json │ │ └── files │ │ └── hash │ │ └── data.csv-861b94-PUT.R │ ├── zen_up2 │ └── sbapi │ │ ├── deposit │ │ └── depositions │ │ │ ├── 29712-6ea865-PUT.json │ │ │ └── 29712.json │ │ └── files │ │ └── hash │ │ └── data2.csv-861b94-PUT.R │ ├── zen_update │ └── sbapi │ │ └── deposit │ │ └── depositions │ │ ├── 29712-455baf-PUT.json │ │ └── 29712.json │ └── zen_update_dp │ └── sbapi │ └── deposit │ └── depositions │ └── 29712-342c38-PUT.json └── vignettes ├── deposits-R6.Rmd ├── deposits.Rmd ├── fig1.png ├── fig1.tex ├── frictionless.Rmd ├── install-setup.Rmd ├── makefile ├── metadata.Rmd ├── versioning.Rmd └── workflow.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/.gitignore -------------------------------------------------------------------------------- /.hooks/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/.hooks/description -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2021 2 | COPYRIGHT HOLDER: deposits authors 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/ISO-639-2-language-codes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/ISO-639-2-language-codes.R -------------------------------------------------------------------------------- /R/client-main.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/client-main.R -------------------------------------------------------------------------------- /R/client-private-dcmi2host.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/client-private-dcmi2host.R -------------------------------------------------------------------------------- /R/client-private-embargo-publish.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/client-private-embargo-publish.R -------------------------------------------------------------------------------- /R/client-private-frictionless.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/client-private-frictionless.R -------------------------------------------------------------------------------- /R/client-private-methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/client-private-methods.R -------------------------------------------------------------------------------- /R/deposits-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/deposits-package.R -------------------------------------------------------------------------------- /R/desc-to-meta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/desc-to-meta.R -------------------------------------------------------------------------------- /R/figshare-categories.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/figshare-categories.R -------------------------------------------------------------------------------- /R/httptest2-mocks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/httptest2-mocks.R -------------------------------------------------------------------------------- /R/httr2-helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/httr2-helpers.R -------------------------------------------------------------------------------- /R/metadata-dcmi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/metadata-dcmi.R -------------------------------------------------------------------------------- /R/metadata-template.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/metadata-template.R -------------------------------------------------------------------------------- /R/metadata-translate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/metadata-translate.R -------------------------------------------------------------------------------- /R/metadata-validate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/metadata-validate.R -------------------------------------------------------------------------------- /R/search-params.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/search-params.R -------------------------------------------------------------------------------- /R/service-desc-meta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/service-desc-meta.R -------------------------------------------------------------------------------- /R/service-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/service-functions.R -------------------------------------------------------------------------------- /R/service-methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/service-methods.R -------------------------------------------------------------------------------- /R/service-urls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/service-urls.R -------------------------------------------------------------------------------- /R/tokens.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/tokens.R -------------------------------------------------------------------------------- /R/upload-figshare.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/upload-figshare.R -------------------------------------------------------------------------------- /R/upload-zenodo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/upload-zenodo.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/codemeta.json -------------------------------------------------------------------------------- /data-raw/get-dcmi-xml.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/data-raw/get-dcmi-xml.R -------------------------------------------------------------------------------- /data-raw/get-zenodo-licenses.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/data-raw/get-zenodo-licenses.R -------------------------------------------------------------------------------- /inst/extdata/dc/dc.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/inst/extdata/dc/dc.xsd -------------------------------------------------------------------------------- /inst/extdata/dc/dcmitype.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/inst/extdata/dc/dcmitype.xsd -------------------------------------------------------------------------------- /inst/extdata/dc/dcterms.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/inst/extdata/dc/dcterms.xsd -------------------------------------------------------------------------------- /inst/extdata/dc/schema-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/inst/extdata/dc/schema-template.json -------------------------------------------------------------------------------- /inst/extdata/dc/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/inst/extdata/dc/schema.json -------------------------------------------------------------------------------- /inst/extdata/figshare/from_dc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/inst/extdata/figshare/from_dc.json -------------------------------------------------------------------------------- /inst/extdata/figshare/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/inst/extdata/figshare/schema.json -------------------------------------------------------------------------------- /inst/extdata/zenodo/from_dc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/inst/extdata/zenodo/from_dc.json -------------------------------------------------------------------------------- /inst/extdata/zenodo/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/inst/extdata/zenodo/schema.json -------------------------------------------------------------------------------- /inst/extdata/zenodo/to_dc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/inst/extdata/zenodo/to_dc.json -------------------------------------------------------------------------------- /inst/extdata/zenodo/zenodo_licenses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/inst/extdata/zenodo/zenodo_licenses.csv -------------------------------------------------------------------------------- /inst/httptest2/redact.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/inst/httptest2/redact.R -------------------------------------------------------------------------------- /man/dcmi_terms.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/man/dcmi_terms.Rd -------------------------------------------------------------------------------- /man/deposits-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/man/deposits-package.Rd -------------------------------------------------------------------------------- /man/depositsClient.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/man/depositsClient.Rd -------------------------------------------------------------------------------- /man/deposits_metadata_template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/man/deposits_metadata_template.Rd -------------------------------------------------------------------------------- /man/deposits_services.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/man/deposits_services.Rd -------------------------------------------------------------------------------- /man/figshare_categories.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/man/figshare_categories.Rd -------------------------------------------------------------------------------- /man/get_deposits_token.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/man/get_deposits_token.Rd -------------------------------------------------------------------------------- /tests/script.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/script.bash -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/_snaps/client.md -------------------------------------------------------------------------------- /tests/testthat/client-new/api/account/articles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/client-new/api/account/articles.json -------------------------------------------------------------------------------- /tests/testthat/fs_client/api/account/articles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_client/api/account/articles.json -------------------------------------------------------------------------------- /tests/testthat/fs_create/api/account/articles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_create/api/account/articles.json -------------------------------------------------------------------------------- /tests/testthat/fs_get_publ/api/account/articles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_get_publ/api/account/articles.json -------------------------------------------------------------------------------- /tests/testthat/fs_get_publ/api/articles/23514972.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_get_publ/api/articles/23514972.json -------------------------------------------------------------------------------- /tests/testthat/fs_list/api/account/articles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_list/api/account/articles.json -------------------------------------------------------------------------------- /tests/testthat/fs_new/api/account/articles-8417b4-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_new/api/account/articles-8417b4-POST.R -------------------------------------------------------------------------------- /tests/testthat/fs_new/api/account/articles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_new/api/account/articles.json -------------------------------------------------------------------------------- /tests/testthat/fs_new/api/articles/23522487.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_new/api/articles/23522487.json -------------------------------------------------------------------------------- /tests/testthat/fs_new2/api/account/articles-8417b4-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_new2/api/account/articles-8417b4-POST.R -------------------------------------------------------------------------------- /tests/testthat/fs_new2/api/account/articles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_new2/api/account/articles.json -------------------------------------------------------------------------------- /tests/testthat/fs_new2/api/articles/23522484.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_new2/api/articles/23522484.json -------------------------------------------------------------------------------- /tests/testthat/fs_retr/api/account/articles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_retr/api/account/articles.json -------------------------------------------------------------------------------- /tests/testthat/fs_retr/api/articles/23522487.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_retr/api/articles/23522487.json -------------------------------------------------------------------------------- /tests/testthat/fs_up/api/account/articles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_up/api/account/articles.json -------------------------------------------------------------------------------- /tests/testthat/fs_up/api/articles/23522487-54b0b5-PUT.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_up/api/articles/23522487-54b0b5-PUT.R -------------------------------------------------------------------------------- /tests/testthat/fs_up/api/articles/23522487.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_up/api/articles/23522487.json -------------------------------------------------------------------------------- /tests/testthat/fs_up/api/articles/23522487/files-8d2582-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_up/api/articles/23522487/files-8d2582-POST.R -------------------------------------------------------------------------------- /tests/testthat/fs_up/api/articles/23522487/files/41251068-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_up/api/articles/23522487/files/41251068-POST.R -------------------------------------------------------------------------------- /tests/testthat/fs_up/api/articles/23522487/files/41251068.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_up/api/articles/23522487/files/41251068.json -------------------------------------------------------------------------------- /tests/testthat/fs_up/files/hash/1-861b94-PUT.txt: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /tests/testthat/fs_up/fup-eu-west-1.up/04b4b28d-1bb0-454b-a8f6-537a7462ad28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_up/fup-eu-west-1.up/04b4b28d-1bb0-454b-a8f6-537a7462ad28.json -------------------------------------------------------------------------------- /tests/testthat/fs_up2/api/account/articles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_up2/api/account/articles.json -------------------------------------------------------------------------------- /tests/testthat/fs_up2/api/articles/23522487-54b0b5-PUT.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_up2/api/articles/23522487-54b0b5-PUT.R -------------------------------------------------------------------------------- /tests/testthat/fs_up2/api/articles/23522487.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_up2/api/articles/23522487.json -------------------------------------------------------------------------------- /tests/testthat/fs_up2/api/articles/23522487/files-e3c461-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_up2/api/articles/23522487/files-e3c461-POST.R -------------------------------------------------------------------------------- /tests/testthat/fs_up2/api/articles/23522487/files/41251092-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_up2/api/articles/23522487/files/41251092-POST.R -------------------------------------------------------------------------------- /tests/testthat/fs_up2/api/articles/23522487/files/41251092.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_up2/api/articles/23522487/files/41251092.json -------------------------------------------------------------------------------- /tests/testthat/fs_up2/files/hash/1-861b94-PUT.txt: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /tests/testthat/fs_up2/fup-eu-west-1.up/aa8d38ef-a31c-4852-b3f8-ecdebec4f6df.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_up2/fup-eu-west-1.up/aa8d38ef-a31c-4852-b3f8-ecdebec4f6df.json -------------------------------------------------------------------------------- /tests/testthat/fs_update/api/account/articles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_update/api/account/articles.json -------------------------------------------------------------------------------- /tests/testthat/fs_update/api/articles/23522487-c14ad9-PUT.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_update/api/articles/23522487-c14ad9-PUT.R -------------------------------------------------------------------------------- /tests/testthat/fs_update/api/articles/23522487.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_update/api/articles/23522487.json -------------------------------------------------------------------------------- /tests/testthat/fs_update_dp1/api/articles/23522487-54b0b5-PUT.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_update_dp1/api/articles/23522487-54b0b5-PUT.R -------------------------------------------------------------------------------- /tests/testthat/fs_update_dp2/api/articles/23522487-1e2e5c-PUT.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/fs_update_dp2/api/articles/23522487-1e2e5c-PUT.R -------------------------------------------------------------------------------- /tests/testthat/helper-test-client.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/helper-test-client.R -------------------------------------------------------------------------------- /tests/testthat/meta-new1/sbapi/deposit/depositions-fa7f86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/meta-new1/sbapi/deposit/depositions-fa7f86.json -------------------------------------------------------------------------------- /tests/testthat/meta-new2/sbapi/deposit/depositions-fa7f86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/meta-new2/sbapi/deposit/depositions-fa7f86.json -------------------------------------------------------------------------------- /tests/testthat/meta-new3/sbapi/deposit/depositions-fa7f86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/meta-new3/sbapi/deposit/depositions-fa7f86.json -------------------------------------------------------------------------------- /tests/testthat/meta-new4/sbapi/deposit/depositions-fa7f86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/meta-new4/sbapi/deposit/depositions-fa7f86.json -------------------------------------------------------------------------------- /tests/testthat/print-fs/api/account/articles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/print-fs/api/account/articles.json -------------------------------------------------------------------------------- /tests/testthat/print-zen/sbapi/deposit/depositions-fa7f86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/print-zen/sbapi/deposit/depositions-fa7f86.json -------------------------------------------------------------------------------- /tests/testthat/search_fs/api/articles/search-b2e6ce-POST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/search_fs/api/articles/search-b2e6ce-POST.json -------------------------------------------------------------------------------- /tests/testthat/search_zen/sbapi/records-53e6de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/search_zen/sbapi/records-53e6de.json -------------------------------------------------------------------------------- /tests/testthat/services_fs/api/account/articles.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | ] 4 | -------------------------------------------------------------------------------- /tests/testthat/services_zen/sbapi/deposit/depositions-fa7f86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/services_zen/sbapi/deposit/depositions-fa7f86.json -------------------------------------------------------------------------------- /tests/testthat/test-client-figshare.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/test-client-figshare.R -------------------------------------------------------------------------------- /tests/testthat/test-client-metadata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/test-client-metadata.R -------------------------------------------------------------------------------- /tests/testthat/test-client-zenodo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/test-client-zenodo.R -------------------------------------------------------------------------------- /tests/testthat/test-client.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/test-client.R -------------------------------------------------------------------------------- /tests/testthat/test-figshare-categories.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/test-figshare-categories.R -------------------------------------------------------------------------------- /tests/testthat/test-iso-639-languages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/test-iso-639-languages.R -------------------------------------------------------------------------------- /tests/testthat/test-metadata-validate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/test-metadata-validate.R -------------------------------------------------------------------------------- /tests/testthat/test-search.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/test-search.R -------------------------------------------------------------------------------- /tests/testthat/test-services.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/test-services.R -------------------------------------------------------------------------------- /tests/testthat/zen_client/sbapi/deposit/depositions-fa7f86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_client/sbapi/deposit/depositions-fa7f86.json -------------------------------------------------------------------------------- /tests/testthat/zen_create/sbapi/deposit/depositions-fa7f86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_create/sbapi/deposit/depositions-fa7f86.json -------------------------------------------------------------------------------- /tests/testthat/zen_dl/sbapi/deposit/depositions/29712.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_dl/sbapi/deposit/depositions/29712.json -------------------------------------------------------------------------------- /tests/testthat/zen_dl/sbapi/records/29712/draft/files/data.csv/content.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_dl/sbapi/records/29712/draft/files/data.csv/content.txt -------------------------------------------------------------------------------- /tests/testthat/zen_dl_fail/sbapi/deposit/depositions/29712.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_dl_fail/sbapi/deposit/depositions/29712.json -------------------------------------------------------------------------------- /tests/testthat/zen_embargo/sbapi/deposit/depositions/29712-8f7fb0-PUT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_embargo/sbapi/deposit/depositions/29712-8f7fb0-PUT.json -------------------------------------------------------------------------------- /tests/testthat/zen_list/sbapi/deposit/depositions-fa7f86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_list/sbapi/deposit/depositions-fa7f86.json -------------------------------------------------------------------------------- /tests/testthat/zen_new/sbapi/deposit/depositions-c69359-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_new/sbapi/deposit/depositions-c69359-POST.R -------------------------------------------------------------------------------- /tests/testthat/zen_new/sbapi/deposit/depositions-fa7f86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_new/sbapi/deposit/depositions-fa7f86.json -------------------------------------------------------------------------------- /tests/testthat/zen_retr/sbapi/deposit/depositions/29712.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_retr/sbapi/deposit/depositions/29712.json -------------------------------------------------------------------------------- /tests/testthat/zen_up/sbapi/deposit/depositions/29712-6ea865-PUT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_up/sbapi/deposit/depositions/29712-6ea865-PUT.json -------------------------------------------------------------------------------- /tests/testthat/zen_up/sbapi/deposit/depositions/29712.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_up/sbapi/deposit/depositions/29712.json -------------------------------------------------------------------------------- /tests/testthat/zen_up/sbapi/files/hash/data.csv-861b94-PUT.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_up/sbapi/files/hash/data.csv-861b94-PUT.R -------------------------------------------------------------------------------- /tests/testthat/zen_up2/sbapi/deposit/depositions/29712-6ea865-PUT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_up2/sbapi/deposit/depositions/29712-6ea865-PUT.json -------------------------------------------------------------------------------- /tests/testthat/zen_up2/sbapi/deposit/depositions/29712.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_up2/sbapi/deposit/depositions/29712.json -------------------------------------------------------------------------------- /tests/testthat/zen_up2/sbapi/files/hash/data2.csv-861b94-PUT.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_up2/sbapi/files/hash/data2.csv-861b94-PUT.R -------------------------------------------------------------------------------- /tests/testthat/zen_update/sbapi/deposit/depositions/29712-455baf-PUT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_update/sbapi/deposit/depositions/29712-455baf-PUT.json -------------------------------------------------------------------------------- /tests/testthat/zen_update/sbapi/deposit/depositions/29712.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_update/sbapi/deposit/depositions/29712.json -------------------------------------------------------------------------------- /tests/testthat/zen_update_dp/sbapi/deposit/depositions/29712-342c38-PUT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/tests/testthat/zen_update_dp/sbapi/deposit/depositions/29712-342c38-PUT.json -------------------------------------------------------------------------------- /vignettes/deposits-R6.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/vignettes/deposits-R6.Rmd -------------------------------------------------------------------------------- /vignettes/deposits.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/vignettes/deposits.Rmd -------------------------------------------------------------------------------- /vignettes/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/vignettes/fig1.png -------------------------------------------------------------------------------- /vignettes/fig1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/vignettes/fig1.tex -------------------------------------------------------------------------------- /vignettes/frictionless.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/vignettes/frictionless.Rmd -------------------------------------------------------------------------------- /vignettes/install-setup.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/vignettes/install-setup.Rmd -------------------------------------------------------------------------------- /vignettes/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/vignettes/makefile -------------------------------------------------------------------------------- /vignettes/metadata.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/vignettes/metadata.Rmd -------------------------------------------------------------------------------- /vignettes/versioning.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/vignettes/versioning.Rmd -------------------------------------------------------------------------------- /vignettes/workflow.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/deposits/HEAD/vignettes/workflow.Rmd --------------------------------------------------------------------------------