search for: curlgethead

Displaying 7 results from an estimated 7 matches for "curlgethead".

2015 Feb 01
0
libcurl support and curlGetHeaders warning message in R CMD check
...SE > > But when I try to build any packages with R.devel (for pre-release > testing) I get lots and lots of Notes/errors like: > > > Found the following (possibly) invalid URLs: > URL: http://statnet.org/ > From: DESCRIPTION > Status: Error > Message: curlGetHeaders is not supported on this platform > > Maybe this url check should first verify that libcurl is available? > > > If it is the case that libcurl is required for R CMD check --as-cran, > I'll try to follow up with R debian for how to get appropriate version. > (seems like l...
2015 Jan 27
2
libcurl support and curlGetHeaders warning message in R CMD check
...capabilities('libcurl') libcurl FALSE But when I try to build any packages with R.devel (for pre-release testing) I get lots and lots of Notes/errors like: Found the following (possibly) invalid URLs: URL: http://statnet.org/ From: DESCRIPTION Status: Error Message: curlGetHeaders is not supported on this platform Maybe this url check should first verify that libcurl is available? If it is the case that libcurl is required for R CMD check --as-cran, I'll try to follow up with R debian for how to get appropriate version. (seems like libcurl 7.28 is not yet include...
2020 Oct 10
0
R 4.0.3 is released
...nks to Suharto Anggono's PR#17891. Further, quantile(x, prN, names=FALSE) now works even when prN contains NAs, thanks to Anggono's PR#17892. Ditto for ordered factors or Date objects when type = 1 or 3, thanks to PR#17899. * Libcurl-based internet access, including curlGetHeaders(), was not respecting the "timeout" option. If this causes unanticipated timeouts, consider increasing the default by setting R_DEFAULT_INTERNET_TIMEOUT. * as.Date(<char>) now also works with an initial "", thanks to Michael Chirico's P...
2020 Oct 10
0
R 4.0.3 is released
...nks to Suharto Anggono's PR#17891. Further, quantile(x, prN, names=FALSE) now works even when prN contains NAs, thanks to Anggono's PR#17892. Ditto for ordered factors or Date objects when type = 1 or 3, thanks to PR#17899. * Libcurl-based internet access, including curlGetHeaders(), was not respecting the "timeout" option. If this causes unanticipated timeouts, consider increasing the default by setting R_DEFAULT_INTERNET_TIMEOUT. * as.Date(<char>) now also works with an initial "", thanks to Michael Chirico's P...
2020 Oct 10
0
R 4.0.3 is released
...nks to Suharto Anggono's PR#17891. Further, quantile(x, prN, names=FALSE) now works even when prN contains NAs, thanks to Anggono's PR#17892. Ditto for ordered factors or Date objects when type = 1 or 3, thanks to PR#17899. * Libcurl-based internet access, including curlGetHeaders(), was not respecting the "timeout" option. If this causes unanticipated timeouts, consider increasing the default by setting R_DEFAULT_INTERNET_TIMEOUT. * as.Date(<char>) now also works with an initial "", thanks to Michael Chirico's P...
2017 Jul 31
3
reproducible segmentation fault installing packages on FreeBSD 11.1
Hi, This happens when attempting to install any package. There were no such problems on 11.0. Some other ways to trigger the problem: curlGetHeaders("http://bugs.r-project.org") There are no problems with the first two calls, but then the crash always happens on the third call. tf <- tempfile() download.file("http://cran.r-project.org/",tf,method="libcurl") This one is ok for the first five calls, but always...
2018 Dec 04
3
patch to support custom HTTP headers in download.file() and url()
..., 0}}, {"gzfile", do_gzfile, 0, 11, 4, {PP_FUNCALL, PREC_FN, 0}}, @@ -983,7 +983,7 @@ FUNTAB R_FunTab[] = {"eSoftVersion",do_eSoftVersion, 0, 11, 0, {PP_FUNCALL, PREC_FN, 0}}, {"curlVersion", do_curlVersion, 0, 11, 0, {PP_FUNCALL, PREC_FN, 0}}, {"curlGetHeaders",do_curlGetHeaders,0, 11, 3, {PP_FUNCALL, PREC_FN, 0}}, -{"curlDownload",do_curlDownload, 0, 11, 5, {PP_FUNCALL, PREC_FN, 0}}, +{"curlDownload",do_curlDownload, 0, 11, 6, {PP_FUNCALL, PREC_FN, 0}}, {NULL, NULL, 0, 0, 0, {PP_INVALID, PREC_FN, 0}}, }; diff --git a/src/m...