├── .Rbuildignore ├── .github ├── CONTRIBUTING.md ├── issue_template.md ├── pull_request_template.md └── workflows │ └── R-check.yml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R ├── dc_activities.R ├── dc_client_prefixes.R ├── dc_clients.R ├── dc_cn.R ├── dc_dois.R ├── dc_events.R ├── dc_prefixes.R ├── dc_provider_prefixes.R ├── dc_providers.R ├── dc_reports.R ├── dc_status.R ├── print_dc.R ├── rdatacite-package.R ├── rest_helpers.R └── zzz.r ├── README.Rmd ├── README.md ├── codemeta.json ├── cran-comments.md ├── inst └── ignore │ └── dc_person.R ├── man ├── dc_activities.Rd ├── dc_check.Rd ├── dc_client_prefixes.Rd ├── dc_clients.Rd ├── dc_cn.Rd ├── dc_dois.Rd ├── dc_events.Rd ├── dc_prefixes.Rd ├── dc_provider_prefixes.Rd ├── dc_providers.Rd ├── dc_reports.Rd ├── dc_status.Rd └── rdatacite-package.Rd └── tests ├── fixtures ├── dc_activities.yml ├── dc_client_prefixes.yml ├── dc_clients.yml ├── dc_cn.yml ├── dc_cn_fail.yml ├── dc_dois.yml └── dc_events.yml ├── test-all.R └── testthat ├── helper-rdatacite.R ├── test-dc_activities.R ├── test-dc_client_prefixes.R ├── test-dc_clients.R ├── test-dc_cn.R ├── test-dc_dois.R └── test-dc_events.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/R-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/.github/workflows/R-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: rdatacite authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/dc_activities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/R/dc_activities.R -------------------------------------------------------------------------------- /R/dc_client_prefixes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/R/dc_client_prefixes.R -------------------------------------------------------------------------------- /R/dc_clients.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/R/dc_clients.R -------------------------------------------------------------------------------- /R/dc_cn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/R/dc_cn.R -------------------------------------------------------------------------------- /R/dc_dois.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/R/dc_dois.R -------------------------------------------------------------------------------- /R/dc_events.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/R/dc_events.R -------------------------------------------------------------------------------- /R/dc_prefixes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/R/dc_prefixes.R -------------------------------------------------------------------------------- /R/dc_provider_prefixes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/R/dc_provider_prefixes.R -------------------------------------------------------------------------------- /R/dc_providers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/R/dc_providers.R -------------------------------------------------------------------------------- /R/dc_reports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/R/dc_reports.R -------------------------------------------------------------------------------- /R/dc_status.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/R/dc_status.R -------------------------------------------------------------------------------- /R/print_dc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/R/print_dc.R -------------------------------------------------------------------------------- /R/rdatacite-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/R/rdatacite-package.R -------------------------------------------------------------------------------- /R/rest_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/R/rest_helpers.R -------------------------------------------------------------------------------- /R/zzz.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/R/zzz.r -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/README.md -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/codemeta.json -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/ignore/dc_person.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/inst/ignore/dc_person.R -------------------------------------------------------------------------------- /man/dc_activities.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/man/dc_activities.Rd -------------------------------------------------------------------------------- /man/dc_check.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/man/dc_check.Rd -------------------------------------------------------------------------------- /man/dc_client_prefixes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/man/dc_client_prefixes.Rd -------------------------------------------------------------------------------- /man/dc_clients.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/man/dc_clients.Rd -------------------------------------------------------------------------------- /man/dc_cn.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/man/dc_cn.Rd -------------------------------------------------------------------------------- /man/dc_dois.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/man/dc_dois.Rd -------------------------------------------------------------------------------- /man/dc_events.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/man/dc_events.Rd -------------------------------------------------------------------------------- /man/dc_prefixes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/man/dc_prefixes.Rd -------------------------------------------------------------------------------- /man/dc_provider_prefixes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/man/dc_provider_prefixes.Rd -------------------------------------------------------------------------------- /man/dc_providers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/man/dc_providers.Rd -------------------------------------------------------------------------------- /man/dc_reports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/man/dc_reports.Rd -------------------------------------------------------------------------------- /man/dc_status.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/man/dc_status.Rd -------------------------------------------------------------------------------- /man/rdatacite-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/man/rdatacite-package.Rd -------------------------------------------------------------------------------- /tests/fixtures/dc_activities.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/tests/fixtures/dc_activities.yml -------------------------------------------------------------------------------- /tests/fixtures/dc_client_prefixes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/tests/fixtures/dc_client_prefixes.yml -------------------------------------------------------------------------------- /tests/fixtures/dc_clients.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/tests/fixtures/dc_clients.yml -------------------------------------------------------------------------------- /tests/fixtures/dc_cn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/tests/fixtures/dc_cn.yml -------------------------------------------------------------------------------- /tests/fixtures/dc_cn_fail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/tests/fixtures/dc_cn_fail.yml -------------------------------------------------------------------------------- /tests/fixtures/dc_dois.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/tests/fixtures/dc_dois.yml -------------------------------------------------------------------------------- /tests/fixtures/dc_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/tests/fixtures/dc_events.yml -------------------------------------------------------------------------------- /tests/test-all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/tests/test-all.R -------------------------------------------------------------------------------- /tests/testthat/helper-rdatacite.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/tests/testthat/helper-rdatacite.R -------------------------------------------------------------------------------- /tests/testthat/test-dc_activities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/tests/testthat/test-dc_activities.R -------------------------------------------------------------------------------- /tests/testthat/test-dc_client_prefixes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/tests/testthat/test-dc_client_prefixes.R -------------------------------------------------------------------------------- /tests/testthat/test-dc_clients.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/tests/testthat/test-dc_clients.R -------------------------------------------------------------------------------- /tests/testthat/test-dc_cn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/tests/testthat/test-dc_cn.R -------------------------------------------------------------------------------- /tests/testthat/test-dc_dois.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/tests/testthat/test-dc_dois.R -------------------------------------------------------------------------------- /tests/testthat/test-dc_events.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rdatacite/HEAD/tests/testthat/test-dc_events.R --------------------------------------------------------------------------------