From 36ce5660a6522913761e893aee4bb5fe8cb800cf Mon Sep 17 00:00:00 2001 From: boB Rudis Date: Mon, 15 Jan 2018 22:05:20 -0500 Subject: [PATCH] removed clipr --- DESCRIPTION | 12 +++++----- NAMESPACE | 1 - NEWS.md | 4 ++++ R/as_req.r | 8 ++----- R/splashr-package.R | 1 - cran-comments.md | 50 +++++------------------------------------ man/as_httr_req.Rd | 7 ++---- man/execute_lua.Rd | 1 + man/get_content_size.Rd | 1 + man/get_content_type.Rd | 1 + man/get_har_entry.Rd | 1 + man/get_request_type.Rd | 1 + man/get_request_url.Rd | 1 + man/get_response_body.Rd | 1 + man/har_entry_count.Rd | 1 + man/install_splash.Rd | 1 + man/render_har.Rd | 1 + man/render_html.Rd | 1 + man/render_jpeg.Rd | 1 + man/render_json.Rd | 1 + man/render_png.Rd | 1 + man/splash_active.Rd | 1 + man/splash_add_lua.Rd | 1 + man/splash_click.Rd | 1 + man/splash_debug.Rd | 1 + man/splash_enable_javascript.Rd | 1 + man/splash_focus.Rd | 1 + man/splash_go.Rd | 1 + man/splash_har.Rd | 1 + man/splash_har_reset.Rd | 1 + man/splash_history.Rd | 1 + man/splash_html.Rd | 1 + man/splash_images.Rd | 1 + man/splash_perf_stats.Rd | 1 + man/splash_plugins.Rd | 1 + man/splash_png.Rd | 1 + man/splash_press.Rd | 1 + man/splash_private_mode.Rd | 1 + man/splash_release.Rd | 1 + man/splash_response_body.Rd | 1 + man/splash_send_keys.Rd | 1 + man/splash_send_text.Rd | 1 + man/splash_user_agent.Rd | 1 + man/splash_version.Rd | 1 + man/splash_wait.Rd | 1 + man/start_splash.Rd | 1 + man/stop_splash.Rd | 1 + vignettes/intro_to_splashr.Rmd | 2 +- 48 files changed, 61 insertions(+), 64 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index e6755f8..0ecf6a2 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,12 +1,13 @@ Package: splashr Type: Package Title: Tools to Work with the 'Splash' 'JavaScript' Rendering and Scraping Service -Version: 0.4.0 -Date: 2017-08-26 +Version: 0.4.1 +Date: 2018-01-16 Encoding: UTF-8 Authors@R: c( - person("Bob", "Rudis", email = "bob@rud.is", role = c("aut", "cre")) - ) + person("Bob", "Rudis", email = "bob@rud.is", role = c("aut", "cre"), + comment = c(ORCID = "0000-0001-5670-2640")) + ) Maintainer: Bob Rudis Description: 'Splash' is a 'JavaScript' rendering service. It is a lightweight web browser with an 'HTTP' API, implemented in 'Python' using 'Twisted' @@ -32,7 +33,6 @@ Imports: xml2, curl, httr, - clipr, purrr, stats, utils, @@ -45,5 +45,5 @@ Imports: jsonlite, HARtools, lubridate -RoxygenNote: 6.0.1 +RoxygenNote: 6.0.1.9000 VignetteBuilder: knitr diff --git a/NAMESPACE b/NAMESPACE index 7a744c9..935d9d2 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -92,7 +92,6 @@ importFrom(HARtools,HARviewer) importFrom(HARtools,HARviewerOutput) importFrom(HARtools,renderHARviewer) importFrom(HARtools,writeHAR) -importFrom(clipr,read_clip) importFrom(curl,curl_unescape) importFrom(formatR,tidy_source) importFrom(jsonlite,fromJSON) diff --git a/NEWS.md b/NEWS.md index 3ffdeab..df44147 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +0.4.1 + +* removed clipr usage due to CRAN + 0.4.0 * moved to 'docker' pacakge since it's on CRAN diff --git a/R/as_req.r b/R/as_req.r index 9ee87e4..c90d291 100644 --- a/R/as_req.r +++ b/R/as_req.r @@ -3,15 +3,13 @@ #' This function is very useful if you used `splashr` to find XHR requests in a dynamic #' page and want to be able to make a call directly to that XHR resource. Once you #' identify the proper HAR entry, pass it to this function and fully working function -#' that makes an `httr::VERB()` request will be created and returned. The text of the function -#' will also be put onto the clipboad if `add_clip` is `TRUE`` +#' that makes an `httr::VERB()` request will be created and returned. #' #' @md #' @param entry HAR entry #' @param quiet quiet (no messages) -#' @param add_clip add clip (paste the function text to the clipboard) #' @export -as_httr_req <- function(entry, quiet=TRUE, add_clip=TRUE) { +as_httr_req <- function(entry, quiet=TRUE) { req <- entry$request @@ -82,8 +80,6 @@ as_httr_req <- function(entry, quiet=TRUE, add_clip=TRUE) { formatR::tidy_source(text=out, width.cutoff=30, indent=4, file=fil) tmp <- paste0(readLines(fil), collapse="\n") - if (add_clip) clipr::write_clip(tmp) - if (!quiet) cat(tmp, "\n") # make a bona fide R function diff --git a/R/splashr-package.R b/R/splashr-package.R index 167221d..d4dbb99 100644 --- a/R/splashr-package.R +++ b/R/splashr-package.R @@ -20,7 +20,6 @@ #' @importFrom xml2 read_html url_parse #' @importFrom jsonlite fromJSON unbox stream_in #' @importFrom openssl base64_decode -#' @importFrom clipr read_clip #' @importFrom lubridate ymd_hms #' @importFrom scales comma #' @importFrom stats setNames diff --git a/cran-comments.md b/cran-comments.md index 5c6fafa..af10c74 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,8 +1,8 @@ ## Test environments -* local OS X install, R 3.4.1 on both 10.12 and 10.13 Beta 6 -* local ubuntu 3.4.1 and r-devel -* ubuntu on travis-ci, R oldrel, 3.4.1 and r-devel +* local OS X install, R 3.4.3 on both 10.12 and 10.13.2 +* local ubuntu 3.4.2 and r-devel +* ubuntu on travis-ci, R oldrel, current and r-devel * win-builder (devel and release) ## R CMD check results @@ -17,45 +17,7 @@ This is a new release, so there are no reverse dependencies. --- -Hey folks, +Submitting patch due to CRAN note. -The tests skip on CRAN and the examples are \dontrun{} because -they require an active Splash server running for the most -accurate results (mocking would not exercise the interaction with -the Splash API server). The core functionality is much the same -as RSelenium, but Splash is more designed for scraping -than Selenium which is more geared towards web site automated -testing. This will hopefully be a nice addition to the R web -scraping world. - -It is fully tested on Travis: https://travis-ci.org/hrbrmstr/splashr -with 2 different Python configurations across all three R versions. -It's an active test that spins up a local Docker container and runs -on push and weekly. (It imports the 'docker' package, hence my -mentioning the diverse python configs). - -Neither Appveyor (and, all other free Windows CI systems) nor -rhub nor WinBuilder support co-runbninbg Docker linux containers -so the tests are not run there, but the package is built regularly -on WinBuilder and rhub's Windows and "CRAN" environments to -catch any other platform-related package errors. - -There are many Imports because this works with a diverse amount -of web content and also tries to play well with 'httr' and 'rvest' -as well as the 'hartools' package. - -There are three vignettes and I tried to reduce the image sizes -for the figures in them as much as possible. I'll glady do some -cropping if you would like the total size to be even smaller. I -fully understand wanting to keep pacakges as small as possible. - -The package is also well-documented and has 44% code coverage: -https://codecov.io/gh/hrbrmstr/splashr/tree/master/R -I'm going to get that up closer to 80% for the next release which will -extend the "DSL" functions. - -Thx for your time & efforts! - --boB - -P.S. Hope you folks had a great summer! +Removed clipboard functionality since that was the path of +least resistance. \ No newline at end of file diff --git a/man/as_httr_req.Rd b/man/as_httr_req.Rd index e01cd2a..2b1a7a0 100644 --- a/man/as_httr_req.Rd +++ b/man/as_httr_req.Rd @@ -4,19 +4,16 @@ \alias{as_httr_req} \title{Create an httr verb request function from an HAR request} \usage{ -as_httr_req(entry, quiet = TRUE, add_clip = TRUE) +as_httr_req(entry, quiet = TRUE) } \arguments{ \item{entry}{HAR entry} \item{quiet}{quiet (no messages)} - -\item{add_clip}{add clip (paste the function text to the clipboard)} } \description{ This function is very useful if you used \code{splashr} to find XHR requests in a dynamic page and want to be able to make a call directly to that XHR resource. Once you identify the proper HAR entry, pass it to this function and fully working function -that makes an \code{httr::VERB()} request will be created and returned. The text of the function -will also be put onto the clipboad if \code{add_clip} is `TRUE`` +that makes an \code{httr::VERB()} request will be created and returned. } diff --git a/man/execute_lua.Rd b/man/execute_lua.Rd index df843b6..1b50b40 100644 --- a/man/execute_lua.Rd +++ b/man/execute_lua.Rd @@ -58,3 +58,4 @@ Other splash_renderers: \code{\link{render_har}}, \code{\link{render_html}}, \code{\link{render_jpeg}}, \code{\link{render_json}}, \code{\link{render_png}} } +\concept{splash_renderers} diff --git a/man/get_content_size.Rd b/man/get_content_size.Rd index fdee0cd..7a0c151 100644 --- a/man/get_content_size.Rd +++ b/man/get_content_size.Rd @@ -26,3 +26,4 @@ Other splash_har_helpers: \code{\link{get_content_type}}, \code{\link{get_response_body}}, \code{\link{har_entry_count}} } +\concept{splash_har_helpers} diff --git a/man/get_content_type.Rd b/man/get_content_type.Rd index c6f2934..0e3bbab 100644 --- a/man/get_content_type.Rd +++ b/man/get_content_type.Rd @@ -61,3 +61,4 @@ Other splash_har_helpers: \code{\link{get_content_size}}, \code{\link{get_response_body}}, \code{\link{har_entry_count}} } +\concept{splash_har_helpers} diff --git a/man/get_har_entry.Rd b/man/get_har_entry.Rd index 2c22e8b..4311cdf 100644 --- a/man/get_har_entry.Rd +++ b/man/get_har_entry.Rd @@ -22,3 +22,4 @@ Other splash_har_helpers: \code{\link{get_content_size}}, \code{\link{get_response_body}}, \code{\link{har_entry_count}} } +\concept{splash_har_helpers} diff --git a/man/get_request_type.Rd b/man/get_request_type.Rd index 1d009ef..ade7b01 100644 --- a/man/get_request_type.Rd +++ b/man/get_request_type.Rd @@ -26,3 +26,4 @@ Other splash_har_helpers: \code{\link{get_content_size}}, \code{\link{get_response_body}}, \code{\link{har_entry_count}} } +\concept{splash_har_helpers} diff --git a/man/get_request_url.Rd b/man/get_request_url.Rd index 99c841e..ce17ffe 100644 --- a/man/get_request_url.Rd +++ b/man/get_request_url.Rd @@ -20,3 +20,4 @@ Other splash_har_helpers: \code{\link{get_content_size}}, \code{\link{get_response_body}}, \code{\link{har_entry_count}} } +\concept{splash_har_helpers} diff --git a/man/get_response_body.Rd b/man/get_response_body.Rd index a14b7ee..2542102 100644 --- a/man/get_response_body.Rd +++ b/man/get_response_body.Rd @@ -26,3 +26,4 @@ Other splash_har_helpers: \code{\link{get_content_size}}, \code{\link{get_request_url}}, \code{\link{har_entry_count}} } +\concept{splash_har_helpers} diff --git a/man/har_entry_count.Rd b/man/har_entry_count.Rd index 51172f7..1ab8ef1 100644 --- a/man/har_entry_count.Rd +++ b/man/har_entry_count.Rd @@ -20,3 +20,4 @@ Other splash_har_helpers: \code{\link{get_content_size}}, \code{\link{get_request_url}}, \code{\link{get_response_body}} } +\concept{splash_har_helpers} diff --git a/man/install_splash.Rd b/man/install_splash.Rd index 97c6fef..22938a3 100644 --- a/man/install_splash.Rd +++ b/man/install_splash.Rd @@ -23,3 +23,4 @@ stop_splash(splash_container) Other splash_docker_helpers: \code{\link{start_splash}}, \code{\link{stop_splash}} } +\concept{splash_docker_helpers} diff --git a/man/render_har.Rd b/man/render_har.Rd index beba004..02abd1f 100644 --- a/man/render_har.Rd +++ b/man/render_har.Rd @@ -77,3 +77,4 @@ Other splash_renderers: \code{\link{execute_lua}}, \code{\link{render_html}}, \code{\link{render_jpeg}}, \code{\link{render_json}}, \code{\link{render_png}} } +\concept{splash_renderers} diff --git a/man/render_html.Rd b/man/render_html.Rd index 929651e..4025b0d 100644 --- a/man/render_html.Rd +++ b/man/render_html.Rd @@ -78,3 +78,4 @@ Other splash_renderers: \code{\link{execute_lua}}, \code{\link{render_har}}, \code{\link{render_jpeg}}, \code{\link{render_json}}, \code{\link{render_png}} } +\concept{splash_renderers} diff --git a/man/render_jpeg.Rd b/man/render_jpeg.Rd index ae003b6..c5b7500 100644 --- a/man/render_jpeg.Rd +++ b/man/render_jpeg.Rd @@ -82,3 +82,4 @@ Other splash_renderers: \code{\link{execute_lua}}, \code{\link{render_har}}, \code{\link{render_html}}, \code{\link{render_json}}, \code{\link{render_png}} } +\concept{splash_renderers} diff --git a/man/render_json.Rd b/man/render_json.Rd index 8b5cf55..5a4b7d8 100644 --- a/man/render_json.Rd +++ b/man/render_json.Rd @@ -114,3 +114,4 @@ Other splash_renderers: \code{\link{execute_lua}}, \code{\link{render_har}}, \code{\link{render_html}}, \code{\link{render_jpeg}}, \code{\link{render_png}} } +\concept{splash_renderers} diff --git a/man/render_png.Rd b/man/render_png.Rd index 9c7d4fc..e3e4408 100644 --- a/man/render_png.Rd +++ b/man/render_png.Rd @@ -83,3 +83,4 @@ Other splash_renderers: \code{\link{execute_lua}}, \code{\link{render_har}}, \code{\link{render_html}}, \code{\link{render_jpeg}}, \code{\link{render_json}} } +\concept{splash_renderers} diff --git a/man/splash_active.Rd b/man/splash_active.Rd index 30ce8bd..95e7ab7 100644 --- a/man/splash_active.Rd +++ b/man/splash_active.Rd @@ -27,3 +27,4 @@ Other splash_info_functions: \code{\link{splash_debug}}, \code{\link{splash_perf_stats}}, \code{\link{splash_version}} } +\concept{splash_info_functions} diff --git a/man/splash_add_lua.Rd b/man/splash_add_lua.Rd index bd1e03e..f8d9c7d 100644 --- a/man/splash_add_lua.Rd +++ b/man/splash_add_lua.Rd @@ -35,3 +35,4 @@ Other splash_dsl_functions: \code{\link{splash_click}}, \code{\link{splash_send_keys}}, \code{\link{splash_send_text}}, \code{\link{splash_wait}} } +\concept{splash_dsl_functions} diff --git a/man/splash_click.Rd b/man/splash_click.Rd index 7553589..c1eed58 100644 --- a/man/splash_click.Rd +++ b/man/splash_click.Rd @@ -23,3 +23,4 @@ Other splash_dsl_functions: \code{\link{splash_add_lua}}, \code{\link{splash_send_keys}}, \code{\link{splash_send_text}}, \code{\link{splash_wait}} } +\concept{splash_dsl_functions} diff --git a/man/splash_debug.Rd b/man/splash_debug.Rd index fdf01b4..1e55fde 100644 --- a/man/splash_debug.Rd +++ b/man/splash_debug.Rd @@ -27,4 +27,5 @@ Other splash_info_functions: \code{\link{splash_active}}, \code{\link{splash_perf_stats}}, \code{\link{splash_version}} } +\concept{splash_info_functions} \keyword{internal} diff --git a/man/splash_enable_javascript.Rd b/man/splash_enable_javascript.Rd index 56348c1..4c54bd3 100644 --- a/man/splash_enable_javascript.Rd +++ b/man/splash_enable_javascript.Rd @@ -32,3 +32,4 @@ Other splash_dsl_attributes: \code{\link{splash_images}}, \code{\link{splash_private_mode}}, \code{\link{splash_response_body}} } +\concept{splash_dsl_attributes} diff --git a/man/splash_focus.Rd b/man/splash_focus.Rd index c5d7dfd..49ad75d 100644 --- a/man/splash_focus.Rd +++ b/man/splash_focus.Rd @@ -26,3 +26,4 @@ Other splash_dsl_functions: \code{\link{splash_add_lua}}, \code{\link{splash_send_keys}}, \code{\link{splash_send_text}}, \code{\link{splash_wait}} } +\concept{splash_dsl_functions} diff --git a/man/splash_go.Rd b/man/splash_go.Rd index 24f16c3..ec52ee5 100644 --- a/man/splash_go.Rd +++ b/man/splash_go.Rd @@ -34,3 +34,4 @@ Other splash_dsl_functions: \code{\link{splash_add_lua}}, \code{\link{splash_send_keys}}, \code{\link{splash_send_text}}, \code{\link{splash_wait}} } +\concept{splash_dsl_functions} diff --git a/man/splash_har.Rd b/man/splash_har.Rd index 2ac3948..7b82ec3 100644 --- a/man/splash_har.Rd +++ b/man/splash_har.Rd @@ -32,3 +32,4 @@ Other splash_dsl_functions: \code{\link{splash_add_lua}}, \code{\link{splash_send_keys}}, \code{\link{splash_send_text}}, \code{\link{splash_wait}} } +\concept{splash_dsl_functions} diff --git a/man/splash_har_reset.Rd b/man/splash_har_reset.Rd index 4355ab7..f98551c 100644 --- a/man/splash_har_reset.Rd +++ b/man/splash_har_reset.Rd @@ -21,3 +21,4 @@ Other splash_dsl_functions: \code{\link{splash_add_lua}}, \code{\link{splash_send_keys}}, \code{\link{splash_send_text}}, \code{\link{splash_wait}} } +\concept{splash_dsl_functions} diff --git a/man/splash_history.Rd b/man/splash_history.Rd index ea054f5..7e87566 100644 --- a/man/splash_history.Rd +++ b/man/splash_history.Rd @@ -24,3 +24,4 @@ Other splash_info_functions: \code{\link{splash_active}}, \code{\link{splash_perf_stats}}, \code{\link{splash_version}} } +\concept{splash_info_functions} diff --git a/man/splash_html.Rd b/man/splash_html.Rd index c6170c8..9888cb0 100644 --- a/man/splash_html.Rd +++ b/man/splash_html.Rd @@ -34,3 +34,4 @@ Other splash_dsl_functions: \code{\link{splash_add_lua}}, \code{\link{splash_send_keys}}, \code{\link{splash_send_text}}, \code{\link{splash_wait}} } +\concept{splash_dsl_functions} diff --git a/man/splash_images.Rd b/man/splash_images.Rd index c8465ac..7a15144 100644 --- a/man/splash_images.Rd +++ b/man/splash_images.Rd @@ -33,3 +33,4 @@ Other splash_dsl_attributes: \code{\link{splash_enable_javascript}}, \code{\link{splash_private_mode}}, \code{\link{splash_response_body}} } +\concept{splash_dsl_attributes} diff --git a/man/splash_perf_stats.Rd b/man/splash_perf_stats.Rd index 60b7567..b43213a 100644 --- a/man/splash_perf_stats.Rd +++ b/man/splash_perf_stats.Rd @@ -23,3 +23,4 @@ Other splash_info_functions: \code{\link{splash_active}}, \code{\link{splash_debug}}, \code{\link{splash_history}}, \code{\link{splash_version}} } +\concept{splash_info_functions} diff --git a/man/splash_plugins.Rd b/man/splash_plugins.Rd index 63ee58e..13f814f 100644 --- a/man/splash_plugins.Rd +++ b/man/splash_plugins.Rd @@ -30,3 +30,4 @@ Other splash_dsl_attributes: \code{\link{splash_enable_javascript}}, \code{\link{splash_private_mode}}, \code{\link{splash_response_body}} } +\concept{splash_dsl_attributes} diff --git a/man/splash_png.Rd b/man/splash_png.Rd index c0fa149..5a50a92 100644 --- a/man/splash_png.Rd +++ b/man/splash_png.Rd @@ -34,3 +34,4 @@ Other splash_dsl_functions: \code{\link{splash_add_lua}}, \code{\link{splash_send_keys}}, \code{\link{splash_send_text}}, \code{\link{splash_wait}} } +\concept{splash_dsl_functions} diff --git a/man/splash_press.Rd b/man/splash_press.Rd index 38655fb..ce4f99d 100644 --- a/man/splash_press.Rd +++ b/man/splash_press.Rd @@ -23,3 +23,4 @@ Other splash_dsl_functions: \code{\link{splash_add_lua}}, \code{\link{splash_send_keys}}, \code{\link{splash_send_text}}, \code{\link{splash_wait}} } +\concept{splash_dsl_functions} diff --git a/man/splash_private_mode.Rd b/man/splash_private_mode.Rd index 5c231ea..6e33cc8 100644 --- a/man/splash_private_mode.Rd +++ b/man/splash_private_mode.Rd @@ -33,3 +33,4 @@ Other splash_dsl_attributes: \code{\link{splash_enable_javascript}}, \code{\link{splash_plugins}}, \code{\link{splash_response_body}} } +\concept{splash_dsl_attributes} diff --git a/man/splash_release.Rd b/man/splash_release.Rd index 79696b6..50d38f0 100644 --- a/man/splash_release.Rd +++ b/man/splash_release.Rd @@ -23,3 +23,4 @@ Other splash_dsl_functions: \code{\link{splash_add_lua}}, \code{\link{splash_send_keys}}, \code{\link{splash_send_text}}, \code{\link{splash_wait}} } +\concept{splash_dsl_functions} diff --git a/man/splash_response_body.Rd b/man/splash_response_body.Rd index 1a90d2e..300a6bc 100644 --- a/man/splash_response_body.Rd +++ b/man/splash_response_body.Rd @@ -30,3 +30,4 @@ Other splash_dsl_attributes: \code{\link{splash_enable_javascript}}, \code{\link{splash_plugins}}, \code{\link{splash_private_mode}} } +\concept{splash_dsl_attributes} diff --git a/man/splash_send_keys.Rd b/man/splash_send_keys.Rd index c88add9..9e0e6e9 100644 --- a/man/splash_send_keys.Rd +++ b/man/splash_send_keys.Rd @@ -32,3 +32,4 @@ Other splash_dsl_functions: \code{\link{splash_add_lua}}, \code{\link{splash_release}}, \code{\link{splash_send_text}}, \code{\link{splash_wait}} } +\concept{splash_dsl_functions} diff --git a/man/splash_send_text.Rd b/man/splash_send_text.Rd index 35742b2..b912c83 100644 --- a/man/splash_send_text.Rd +++ b/man/splash_send_text.Rd @@ -29,3 +29,4 @@ Other splash_dsl_functions: \code{\link{splash_add_lua}}, \code{\link{splash_release}}, \code{\link{splash_send_keys}}, \code{\link{splash_wait}} } +\concept{splash_dsl_functions} diff --git a/man/splash_user_agent.Rd b/man/splash_user_agent.Rd index 2cdda1a..ffba323 100644 --- a/man/splash_user_agent.Rd +++ b/man/splash_user_agent.Rd @@ -67,4 +67,5 @@ splash_local \%>\% jsonlite::fromJSON() } } +\concept{splash_dsl_functions_functions} \keyword{datasets} diff --git a/man/splash_version.Rd b/man/splash_version.Rd index 454e315..509b0d3 100644 --- a/man/splash_version.Rd +++ b/man/splash_version.Rd @@ -23,3 +23,4 @@ Other splash_info_functions: \code{\link{splash_active}}, \code{\link{splash_debug}}, \code{\link{splash_history}}, \code{\link{splash_perf_stats}} } +\concept{splash_info_functions} diff --git a/man/splash_wait.Rd b/man/splash_wait.Rd index 3bcd705..53df349 100644 --- a/man/splash_wait.Rd +++ b/man/splash_wait.Rd @@ -34,3 +34,4 @@ Other splash_dsl_functions: \code{\link{splash_add_lua}}, \code{\link{splash_send_keys}}, \code{\link{splash_send_text}} } +\concept{splash_dsl_functions} diff --git a/man/start_splash.Rd b/man/start_splash.Rd index f8d3ea0..d13e9f1 100644 --- a/man/start_splash.Rd +++ b/man/start_splash.Rd @@ -33,3 +33,4 @@ stop_splash(splash_container) Other splash_docker_helpers: \code{\link{install_splash}}, \code{\link{stop_splash}} } +\concept{splash_docker_helpers} diff --git a/man/stop_splash.Rd b/man/stop_splash.Rd index aadcad2..b867fe9 100644 --- a/man/stop_splash.Rd +++ b/man/stop_splash.Rd @@ -28,3 +28,4 @@ stop_splash(splash_container) Other splash_docker_helpers: \code{\link{install_splash}}, \code{\link{start_splash}} } +\concept{splash_docker_helpers} diff --git a/vignettes/intro_to_splashr.Rmd b/vignettes/intro_to_splashr.Rmd index f1a6b7c..ca564d8 100644 --- a/vignettes/intro_to_splashr.Rmd +++ b/vignettes/intro_to_splashr.Rmd @@ -269,7 +269,7 @@ req() %>% ## Output is the same as previous block ``` -The text of the function is also put on the clipboard by default, so you can paste it right into a script or package for use later on: +This is an example of the built `httr` function: ``` httr::VERB(verb = "GET", url = "https://analytics.usa.gov/data/live/devices.json",