Skip to content

Commit 2c89aa8

Browse files
committed
some more URL updates (mostly http -> https)
1 parent a788856 commit 2c89aa8

File tree

5 files changed

+23
-16
lines changed

5 files changed

+23
-16
lines changed

ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2020-11-06 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION: More URL updates, e.g. http -> https
4+
* README.md: Ditto
5+
* inst/CITATION: Ditto
6+
* man/Rcpp-package.Rd: Ditto
7+
18
2020-10-25 Dirk Eddelbuettel <[email protected]>
29

310
* DESCRIPTION (Version, Date): Roll minor version

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Description: The 'Rcpp' package provides R functions as well as C++ classes whic
1010
mapped back and forth to C++ equivalents which facilitates both writing of new
1111
code as well as easier integration of third-party libraries. Documentation
1212
about 'Rcpp' is provided by several vignettes included in this package, via the
13-
'Rcpp Gallery' site at <http://gallery.rcpp.org>, the paper by Eddelbuettel and
13+
'Rcpp Gallery' site at <https://gallery.rcpp.org>, the paper by Eddelbuettel and
1414
Francois (2011, <doi:10.18637/jss.v040.i08>), the book by Eddelbuettel (2013,
1515
<doi:10.1007/978-1-4614-6868-4>) and the paper by Eddelbuettel and Balamuta (2018,
1616
<doi:10.1080/00031305.2017.1375990>); see 'citation("Rcpp")' for details.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Among the other vignettes are the [Rcpp
7777
FAQ](https://cran.r-project.org/package=Rcpp/vignettes/Rcpp-FAQ.pdf) and the
7878
introduction to [Rcpp
7979
Attributes](https://cran.r-project.org/package=Rcpp/vignettes/Rcpp-attributes.pdf).
80-
Additional documentation is available via the [Rcpp book](http://www.rcpp.org/book)
80+
Additional documentation is available via the [Rcpp book](http://www.rcpp.org/book/)
8181
by Eddelbuettel (2013, Springer); see 'citation("Rcpp")' for details.
8282

8383
### Examples

inst/CITATION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ citEntry(entry = "Article",
99
volume = "40",
1010
number = "8",
1111
pages = "1--18",
12-
url = "http://www.jstatsoft.org/v40/i08/",
12+
url = "https://www.jstatsoft.org/v40/i08/",
1313
doi = "10.18637/jss.v040.i08",
1414

1515
textVersion = paste("Dirk Eddelbuettel and Romain Francois (2011).",
1616
"Rcpp: Seamless R and C++ Integration.",
1717
"Journal of Statistical Software, 40(8), 1-18.",
18-
"URL http://www.jstatsoft.org/v40/i08/.")
18+
"URL https://www.jstatsoft.org/v40/i08/.")
1919
)
2020

2121
citEntry(entry = "Book",

man/Rcpp-package.Rd

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
the \code{.Call} interface provided by \R.
99
}
1010
\section{Introduction}{
11-
\pkg{Rcpp} provides C++ classes to facilitate manipulation of a large
12-
number of R data structures : vectors, functions, environments, ...
13-
11+
\pkg{Rcpp} provides C++ classes to facilitate manipulation of a large
12+
number of R data structures : vectors, functions, environments, ...
13+
1414
The \dQuote{Rcpp-introduction} vignette gives an introduction on the package
1515
}
1616
\section{Usage for package building}{
@@ -20,7 +20,7 @@
2020
\references{
2121
Dirk Eddelbuettel and Romain Francois (2011). \pkg{Rcpp}: Seamless R
2222
and C++ Integration. \emph{Journal of Statistical Software},
23-
\bold{40(8)}, 1-18. URL \url{http://www.jstatsoft.org/v40/i08/} and
23+
\bold{40(8)}, 1-18. URL \url{https://www.jstatsoft.org/v40/i08/} and
2424
available as \code{vignette("Rcpp-introduction")}.
2525

2626
Eddelbuettel, Dirk (2013) Seamless R and C++ Integration with
@@ -29,25 +29,25 @@
2929
\section{History}{
3030
The initial versions of Rcpp were written by Dominick Samperi during 2005 and
3131
2006.
32-
33-
Dirk Eddelbuettel made some additions, and became maintainer in 2008.
34-
32+
33+
Dirk Eddelbuettel made some additions, and became maintainer in 2008.
34+
3535
Dirk Eddelbuettel and Romain Francois have been extending Rcpp since 2009.
3636
}
3737
\seealso{
3838
Development for \pkg{Rcpp} can be followed via the GitHub repository
39-
at \url{http://github.com/RcppCore/Rcpp}.
39+
at \url{https://github.com/RcppCore/Rcpp}.
4040

4141
Extensive examples with full documentation are available at
42-
\url{http://gallery.rcpp.org}.
42+
\url{https://gallery.rcpp.org}.
4343
}
4444
\examples{
45-
\dontrun{
45+
\dontrun{
4646
# introduction to Rcpp
47-
vignette("Rcpp-introduction")
47+
vignette("Rcpp-introduction")
4848

4949
# information on how to build a package that uses Rcpp
50-
vignette("Rcpp-package")
50+
vignette("Rcpp-package")
5151
}
5252
}
5353
\keyword{programming}

0 commit comments

Comments
 (0)