Last updated on 2024-12-22 10:50:26 CET.
Package | ERROR | NOTE | OK |
---|---|---|---|
BigDataPE | 13 | ||
pikchr | 13 | ||
RapidFuzz | 4 | 9 | |
webdav | 2 | 11 |
Current CRAN status: OK: 13
Current CRAN status: OK: 13
Current CRAN status: NOTE: 4, OK: 9
Version: 1.0
Check: installed package size
Result: NOTE
installed size is 6.5Mb
sub-directories of 1Mb or more:
libs 5.8Mb
Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64
Current CRAN status: ERROR: 2, OK: 11
Version: 0.1.2
Check: examples
Result: ERROR
Running examples in ‘webdav-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: webdav_create_directory
> ### Title: Create a collection (directory) on a WebDAV server
> ### Aliases: webdav_create_directory
>
> ### ** Examples
>
>
> # Example usage with a public WebDAV server.
> # Visit test_server$url link to view the results of the operation.
> library(magrittr)
> library(httr2)
> test_server <- "https://www.webdavserver.com/" %>%
+ request() %>%
+ req_retry(max_tries = 3, max_seconds = 4, backoff = ~ 1) %>%
+ req_perform() %>%
+ try(silent = TRUE)
>
> # Create a directory on the WebDAV server
> if (class(test_server) != "try-error")
+ webdav_create_directory(base_url = test_server$url, folder_path = "Test_Folder", verbose = TRUE)
Folder path to create: Test_Folder
Base URL: https://www.webdavserver.com/Userbc3a693/Test_Folder
Username: Not provided
Request object created successfully.
No authentication added.
Error during directory creation: Failed to perform HTTP request.
Error in value[[3L]](cond) : Failed to create directory.
Calls: webdav_create_directory ... tryCatch -> tryCatchList -> tryCatchOne -> <Anonymous>
Execution halted
Flavor: r-devel-linux-x86_64-debian-clang
Version: 0.1.2
Check: examples
Result: ERROR
Running examples in ‘webdav-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: webdav_copy_file
> ### Title: Copy a resource on the WebDAV server
> ### Aliases: webdav_copy_file
>
> ### ** Examples
>
> # Example usage with a public WebDAV server.
> # Visit test_server$url link to view the results of the operation.
> library(magrittr)
> library(httr2)
> test_server <- "https://www.webdavserver.com/" %>%
+ request() %>%
+ req_retry(max_tries = 3, max_seconds = 4, backoff = ~ 1) %>%
+ req_perform() %>%
+ try(silent = TRUE)
>
> # Copy a file from one path to another
> if (class(test_server) != "try-error")
+ webdav_copy_file(base_url = test_server$url,
+ from_path = "Project.pdf",
+ to_path = "New_Project.pdf",
+ verbose = TRUE)
Base URL: https://www.webdavserver.com/User5f96ea3
Copying from: Project.pdf to: New_Project.pdf
Source Path: https://www.webdavserver.com/User5f96ea3/Project.pdf
Destination Path: https://www.webdavserver.com/User5f96ea3/New_Project.pdf
Base URL: https://www.webdavserver.com/User5f96ea3/Project.pdf
Username: Not provided
Request object created successfully.
No authentication added.
Error during the copy process: Failed to perform HTTP request.
Error in value[[3L]](cond) : Failed to copy resource.
Calls: webdav_copy_file ... tryCatch -> tryCatchList -> tryCatchOne -> <Anonymous>
Execution halted
Flavor: r-release-linux-x86_64