-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
397a525
commit 1518384
Showing
46 changed files
with
1,090 additions
and
464 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,34 @@ | ||
Package: curl | ||
Type: Package | ||
Title: A Modern and Flexible Web Client for R | ||
Version: 5.2.1 | ||
Version: 6.0.1 | ||
Authors@R: c( | ||
person("Jeroen", "Ooms", role = c("aut", "cre"), email = "jeroen@berkeley.edu", | ||
person("Jeroen", "Ooms", role = c("aut", "cre"), email = "jeroenooms@gmail.com", | ||
comment = c(ORCID = "0000-0002-4035-0289")), | ||
person("Hadley", "Wickham", , "hadley@rstudio.com", role = "ctb"), | ||
person("RStudio", role = "cph") | ||
) | ||
Description: The curl() and curl_download() functions provide highly | ||
configurable drop-in replacements for base url() and download.file() with | ||
better performance, support for encryption (https, ftps), gzip compression, | ||
authentication, and other 'libcurl' goodies. The core of the package implements a | ||
framework for performing fully customized requests where data can be processed | ||
either in memory, on disk, or streaming via the callback or connection | ||
interfaces. Some knowledge of 'libcurl' is recommended; for a more-user-friendly | ||
web client see the 'httr' package which builds on this package with http | ||
specific tools and logic. | ||
person("Hadley", "Wickham", role = "ctb"), | ||
person("Posit Software, PBC", role = "cph")) | ||
Description: Bindings to 'libcurl' <https://curl.se/libcurl/> for performing fully | ||
configurable HTTP/FTP requests where responses can be processed in memory, on | ||
disk, or streaming via the callback or connection interfaces. Some knowledge | ||
of 'libcurl' is recommended; for a more-user-friendly web client see the | ||
'httr2' package which builds on this package with http specific tools and logic. | ||
License: MIT + file LICENSE | ||
SystemRequirements: libcurl: libcurl-devel (rpm) or | ||
libcurl4-openssl-dev (deb). | ||
URL: https://jeroen.r-universe.dev/curl https://curl.se/libcurl/ | ||
SystemRequirements: libcurl (>= 7.62): libcurl-devel (rpm) or | ||
libcurl4-openssl-dev (deb) | ||
URL: https://jeroen.r-universe.dev/curl | ||
BugReports: https://github.com/jeroen/curl/issues | ||
Suggests: spelling, testthat (>= 1.0.0), knitr, jsonlite, later, | ||
rmarkdown, httpuv (>= 1.4.4), webutils | ||
VignetteBuilder: knitr | ||
Depends: R (>= 3.0.0) | ||
RoxygenNote: 7.3.0 | ||
RoxygenNote: 7.3.2.9000 | ||
Encoding: UTF-8 | ||
Language: en-US | ||
NeedsCompilation: yes | ||
Packaged: 2024-02-26 21:12:31 UTC; jeroen | ||
Packaged: 2024-11-13 13:14:47 UTC; jeroen | ||
Author: Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>), | ||
Hadley Wickham [ctb], | ||
RStudio [cph] | ||
Maintainer: Jeroen Ooms <jeroen@berkeley.edu> | ||
Posit Software, PBC [cph] | ||
Maintainer: Jeroen Ooms <jeroenooms@gmail.com> | ||
Repository: CRAN | ||
Date/Publication: 2024-03-01 23:22:46 UTC | ||
Date/Publication: 2024-11-14 09:20:02 UTC |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
YEAR: 2022 | ||
COPYRIGHT HOLDER: Jeroen Ooms; RStudio | ||
YEAR: 2024 | ||
COPYRIGHT HOLDER: Jeroen Ooms; Posit Software, PBC |
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# This file is autogenerated using make-errorcodes.R | ||
libcurl_error_codes <- | ||
c("curl_error_unsupported_protocol", "curl_error_failed_init", | ||
"curl_error_url_malformat", "curl_error_not_built_in", "curl_error_couldnt_resolve_proxy", | ||
"curl_error_couldnt_resolve_host", "curl_error_couldnt_connect", | ||
"curl_error_weird_server_reply", "curl_error_remote_access_denied", | ||
"curl_error_ftp_accept_failed", "curl_error_ftp_weird_pass_reply", | ||
"curl_error_ftp_accept_timeout", "curl_error_ftp_weird_pasv_reply", | ||
"curl_error_ftp_weird_227_format", "curl_error_ftp_cant_get_host", | ||
"curl_error_http2", "curl_error_ftp_couldnt_set_type", "curl_error_partial_file", | ||
"curl_error_ftp_couldnt_retr_file", "curl_error_obsolete20", | ||
"curl_error_quote_error", "curl_error_http_returned_error", "curl_error_write_error", | ||
"curl_error_obsolete24", "curl_error_upload_failed", "curl_error_read_error", | ||
"curl_error_out_of_memory", "curl_error_operation_timedout", | ||
"curl_error_obsolete29", "curl_error_ftp_port_failed", "curl_error_ftp_couldnt_use_rest", | ||
"curl_error_obsolete32", "curl_error_range_error", "curl_error_http_post_error", | ||
"curl_error_ssl_connect_error", "curl_error_bad_download_resume", | ||
"curl_error_file_couldnt_read_file", "curl_error_ldap_cannot_bind", | ||
"curl_error_ldap_search_failed", "curl_error_obsolete40", "curl_error_function_not_found", | ||
"curl_error_aborted_by_callback", "curl_error_bad_function_argument", | ||
"curl_error_obsolete44", "curl_error_interface_failed", "curl_error_obsolete46", | ||
"curl_error_too_many_redirects", "curl_error_unknown_option", | ||
"curl_error_setopt_option_syntax", "curl_error_obsolete50", "curl_error_peer_failed_verification", | ||
"curl_error_got_nothing", "curl_error_ssl_engine_notfound", "curl_error_ssl_engine_setfailed", | ||
"curl_error_send_error", "curl_error_recv_error", "curl_error_obsolete57", | ||
"curl_error_ssl_certproblem", "curl_error_ssl_cipher", "curl_error_peer_failed_verification", | ||
"curl_error_bad_content_encoding", "curl_error_ldap_invalid_url", | ||
"curl_error_filesize_exceeded", "curl_error_use_ssl_failed", | ||
"curl_error_send_fail_rewind", "curl_error_ssl_engine_initfailed", | ||
"curl_error_login_denied", "curl_error_tftp_notfound", "curl_error_tftp_perm", | ||
"curl_error_remote_disk_full", "curl_error_tftp_illegal", "curl_error_tftp_unknownid", | ||
"curl_error_remote_file_exists", "curl_error_tftp_nosuchuser", | ||
"curl_error_conv_failed", "curl_error_conv_reqd", "curl_error_ssl_cacert_badfile", | ||
"curl_error_remote_file_not_found", "curl_error_ssh", "curl_error_ssl_shutdown_failed", | ||
"curl_error_again", "curl_error_ssl_crl_badfile", "curl_error_ssl_issuer_error", | ||
"curl_error_ftp_pret_failed", "curl_error_rtsp_cseq_error", "curl_error_rtsp_session_error", | ||
"curl_error_ftp_bad_file_list", "curl_error_chunk_failed", "curl_error_no_connection_available", | ||
"curl_error_ssl_pinnedpubkeynotmatch", "curl_error_ssl_invalidcertstatus", | ||
"curl_error_http2_stream", "curl_error_recursive_api_call", "curl_error_auth_error", | ||
"curl_error_http3", "curl_error_quic_connect_error", "curl_error_proxy", | ||
"curl_error_ssl_clientcert", "curl_error_unrecoverable_poll", | ||
"curl_error_too_large", "curl_error_ech_required") |
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
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
Oops, something went wrong.