[Vegan-commits] r2600 - in pkg/vegan: R inst
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Thu Aug 29 10:15:17 CEST 2013
Author: jarioksa
Date: 2013-08-29 10:15:16 +0200 (Thu, 29 Aug 2013)
New Revision: 2600
Modified:
pkg/vegan/R/vegandocs.R
pkg/vegan/inst/ChangeLog
Log:
avoid using tools:::
Modified: pkg/vegan/R/vegandocs.R
===================================================================
--- pkg/vegan/R/vegandocs.R 2013-08-28 12:46:34 UTC (rev 2599)
+++ pkg/vegan/R/vegandocs.R 2013-08-29 08:15:16 UTC (rev 2600)
@@ -16,10 +16,9 @@
## Try html
helptype <- getOption("help_type")
if (length(helptype) && helptype == "html") {
- if (!tools:::httpdPort)
- startDynamicHelp()
- browseURL(paste("http://127.0.0.1:", tools:::httpdPort,
- "/library/vegan/doc/NEWS.html", sep=""))
+ browseURL(paste("file://",
+ system.file(package="vegan", "doc", "NEWS.html"),
+ sep=""))
} else {
file.show(Rd2txt(file.path(system.file(package="vegan"),
"NEWS.Rd"), tempfile()))
Modified: pkg/vegan/inst/ChangeLog
===================================================================
--- pkg/vegan/inst/ChangeLog 2013-08-28 12:46:34 UTC (rev 2599)
+++ pkg/vegan/inst/ChangeLog 2013-08-29 08:15:16 UTC (rev 2600)
@@ -22,6 +22,10 @@
* tweak for R < 2.13.0 removed: change in cmdscale() output
(capscale).
+
+ * vegandocs: does not use unexported tools:::httpdPort. Now only
+ remaining ':::' case is querying default cluster in the
+ environment parallel:::.reg.
Version 2.1-33 (closed August 28, 2013)
More information about the Vegan-commits
mailing list