|
5 | 5 | #' |
6 | 6 | #' @param site Name of site to search on. Supported options: |
7 | 7 | #' `"google"` (default), `"bing"`, `"duckduckgo"`, `"startpage"`, |
8 | | -#' `"qwant"`,`"rstudio community"`, `"twitter"`,`"stackoverflow"`, |
| 8 | +#' `"qwant"`,`"posit community"`, `"brave"`, `"kagi"`, |
| 9 | +#' `"twitter"`, `"stackoverflow"`, |
9 | 10 | #' `"github"`, `"grep"`, and `"bitbucket"`. |
10 | 11 | #' @param query Contents of string to search. Default is the error message. |
11 | 12 | #' @param rlang Search for results written in R. Default is `TRUE` |
|
20 | 21 | #' @seealso [search_google()], [search_bing()], [search_duckduckgo()], |
21 | 22 | #' [search_startpage()], [search_rseek()], [search_qwant()], |
22 | 23 | #' [search_brave()], [search_kagi()], [search_twitter()], |
23 | | -#' [search_rstudio_community()], [search_stackoverflow()], |
| 24 | +#' [search_posit_community()], [search_stackoverflow()], |
24 | 25 | #' [search_github()], [search_grep()], [search_bitbucket()], and [searcher()] |
25 | 26 | #' @examples |
26 | 27 | #' # Search in a generic way |
|
47 | 48 | #' # Search Brave |
48 | 49 | #' search_brave("webR") |
49 | 50 | #' |
50 | | -#' # Search RStudio Community |
51 | | -#' search_rstudio_community("RStudio IDE") |
| 51 | +#' # Search Posit Community |
| 52 | +#' search_posit_community("RStudio IDE") |
52 | 53 | #' |
53 | 54 | #' # Search Twitter |
54 | 55 | #' search_twitter("searcher") |
@@ -91,8 +92,8 @@ search_site = function(query, |
91 | 92 | "rseek", |
92 | 93 | "brave", |
93 | 94 | "kagi", |
94 | | - "rstudio community", |
95 | | - "rscom", |
| 95 | + "posit community", |
| 96 | + "posit", |
96 | 97 | "twitter", |
97 | 98 | "stackoverflow", |
98 | 99 | "so", |
@@ -127,8 +128,8 @@ search_site = function(query, |
127 | 128 | rseek = search_rseek(query, rlang), |
128 | 129 | brave = search_brave(query, rlang), |
129 | 130 | kagi = search_kagi(query, rlang), |
130 | | - `rstudio community` = , # empty case carried below |
131 | | - rscom = search_rstudio_community(query, rlang), |
| 131 | + `posit community` = , # empty case carried below |
| 132 | + posit = search_posit_community(query, rlang), |
132 | 133 | twitter = search_twitter(query, rlang), |
133 | 134 | stackoverflow = , # empty case carried below |
134 | 135 | so = search_stackoverflow(query, rlang), |
@@ -252,7 +253,7 @@ search_sp = search_startpage |
252 | 253 | #' |
253 | 254 | #' For additional details regarding Ecosia's |
254 | 255 | #' search interface please see: |
255 | | -#' \url{https://ecosia.helpscoutdocs.com/article/502-ecosia-on-desktop} |
| 256 | +#' \url{https://support.ecosia.org/article/657-installing-ecosia-on-your-desktop-device} |
256 | 257 | search_ecosia = searcher("ecosia") |
257 | 258 |
|
258 | 259 | #' @rdname search_site |
@@ -294,19 +295,19 @@ search_kagi = searcher("kagi") |
294 | 295 |
|
295 | 296 | #' @rdname search_site |
296 | 297 | #' @export |
297 | | -#' @section RStudio Community Search: |
298 | | -#' The `search_rstudio_community()` and `search_rscom()` functions both search |
299 | | -#' [RStudio Community](https://community.rstudio.com/) using: |
300 | | -#' \code{https://community.rstudio.com/search?q=<query>} |
| 298 | +#' @section Posit Community Search: |
| 299 | +#' The `search_posit_community()` and `search_posit()` functions both search |
| 300 | +#' [Posit Community](https://forum.posit.co/) using: |
| 301 | +#' \code{https://forum.posit.co/search?q=<query>} |
301 | 302 | #' |
302 | | -#' For additional details regarding [RStudio Community](https://community.rstudio.com/)'s |
| 303 | +#' For additional details regarding [Posit Community](https://forum.posit.co/)'s |
303 | 304 | #' search interface please see the [Discourse](https://discourse.org) API documentation: |
304 | 305 | #' \url{https://docs.discourse.org/#tag/Search} |
305 | | -search_rstudio_community = searcher("rscom") |
| 306 | +search_posit_community = searcher("posit") |
306 | 307 |
|
307 | 308 | #' @rdname search_site |
308 | 309 | #' @export |
309 | | -search_rscom = search_rstudio_community |
| 310 | +search_posit = search_posit_community |
310 | 311 |
|
311 | 312 | #' @rdname search_site |
312 | 313 | #' @export |
|
0 commit comments