forked from IQSS/dataverse-client-r
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rebase to origin #1
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Currently fq is completely broken: 1. It requires start to be set for no reason 2. It fails because match.arg will always fail since no args are given in the function This fix does three things: 1. Test for fq rather than start 2. get rid of the match.arg -- since fq is super flexible, we can't use that here 3. enclose the fq query in I to prevent URL encoding (see r-lib/httr#540 (comment) ). Otherwise, httr encodes colons, square brackets and + and e.g. the [example for date range search](http://guides.dataverse.org/en/latest/api/search.html#date-range-search-example) breaks
ref #38
from 6.1.1 ref #38
@leeper, I believe thesee are the correct modifications, according to [CRAN](https://journal.r-project.org/archive/2012/RJ-2012-009/RJ-2012-009.pdf) and [Hadley](http://r-pkgs.had.co.nz/description.html). Tell me if you think I've misinterpreted something. @pdurbin, please check your ORCID number. I found it [here](https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/TJCLKP) ref #38
also, remove date ref #38
addressing 404 errors in vignette
also correct `create_dataverse()` ref #33
run in a new environment ref #33
This interferes with all the assignments that happens within the function parameter defaults. And also the tests. ref #40
Fix handling of fq
fix multi-download for datasets with folders and change logic
Add ability to download zip of multiple files
and update NEWS as per #50
Add myself as author
Add kuriwaki as author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Please ensure the following before submitting a PR:
/R
not/man
and rundevtools::document()
to update documentation/tests
for any new functionality or bug fixR CMD check
runs without error before submitting the PR