Skip to content

Commit b05cb28

Browse files
committed
Update URLs
Change http to https and reomve the .html from the perldoc URLs
1 parent 69de92d commit b05cb28

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

R/capture.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ NULL
1616
#' @family rex
1717
#' @aliases .
1818
#' @seealso \code{\link{group}} for grouping without capturing. Perl 5 Capture
19-
#' Groups \url{http://perldoc.perl.org/perlre.html#Capture-groups}
19+
#' Groups \url{https://perldoc.perl.org/perlre#Capture-groups}
2020
#' @examples
2121
#'
2222
#' # Match paired quotation marks
@@ -58,7 +58,7 @@ register(capture_group)
5858
#' together and do not reference or extract the grouped value later.
5959
#' @inheritParams capture
6060
#' @seealso \code{\link{capture}} for grouping with capturing. Perl 5 Extended
61-
#' Patterns \url{http://perldoc.perl.org/perlre.html#Extended-Patterns}
61+
#' Patterns \url{https://perldoc.perl.org/perlre#Extended-Patterns}
6262
#' @family rex
6363
group <- function(...) {
6464
p( "(?:", p(escape_dots(...)), ")" )

R/lookarounds.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ NULL
2121
#' @name lookarounds
2222
#' @title Lookarounds
2323
#' @family rex
24-
#' @seealso Perl 5 Documentation \url{http://perldoc.perl.org/perlre.html#Extended-Patterns}
24+
#' @seealso Perl 5 Documentation \url{https://perldoc.perl.org/perlre#Extended-Patterns}
2525
#' @examples
2626
#' stopifnot(grepl(rex("crab" %if_next_is% "apple"), "crabapple", perl = TRUE))
2727
#' stopifnot(grepl(rex("crab" %if_prev_is% "apple"), "applecrab", perl = TRUE))

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!-- badges: start -->
44
[![codecov.io](https://codecov.io/github/kevinushey/rex/coverage.svg?branch=master)](https://codecov.io/github/kevinushey/rex?branch=master)
5-
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://www.tidyverse.org/lifecycle/#stable)
5+
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html)
66
<!-- badges: end -->
77

88
### Friendly Regular Expressions
@@ -78,5 +78,5 @@ shortcuts as valid variables fixing the NOTEs.
7878
partially inspired `rex`.
7979
- [PCRE](http://www.pcre.org/) - Perl Compatible Regular Expressions, the
8080
engine that `rex` regular expressions use.
81-
- [Perl 5 Regular Expressions](http://perldoc.perl.org/perlre.html) - Perl
81+
- [Perl 5 Regular Expressions](https://perldoc.perl.org/perlre) - Perl
8282
regular expression documentation, which are nearly 100% compatible with PCRE.

man/capture.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/group.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/lookarounds.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vignettes/log_parsing.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ vignette: >
1010
---
1111

1212
Parsing server log files is a common task in server administration.
13-
[1](http://link.springer.com/article/10.1007/BF03325089),[2](http://stackoverflow.com/search?q=%22Apache+log%22)
13+
[1](https://link.springer.com/article/10.1007/BF03325089),[2](https://stackoverflow.com/search?q=%22Apache+log%22)
1414
Historically R would not be well suited to this and it would be better
1515
performed using a scripting language such as perl. Rex, however, makes this
1616
easy to do and allows you to perform both the data cleaning and analysis in R!

0 commit comments

Comments
 (0)