Skip to content

Commit 9414e46

Browse files
author
smeyer
committed
comments
git-svn-id: https://svn.r-project.org/R/trunk@87260 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent b78cb51 commit 9414e46

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

doc/manual/Makefile.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -436,10 +436,12 @@ distdir: $(DISTFILES)
436436
exit 1; \
437437
fi
438438
# $(distdir)/doc/html has already been created
439+
# NB: the pre-built R-admin.html is referenced from INSTALL and configure
439440
@$(TEXI2HTML) --no-headers --number-sections \
440441
$(srcdir)/R-admin.texi -I$(srcdir) \
441442
-o $(distdir)/../html/R-admin.html
442443

444+
## referenced from the top-level README
443445
front-matter: ${top_builddir}/doc/RESOURCES ${top_builddir}/doc/FAQ
444446

445447
${top_builddir}/doc/RESOURCES: $(srcdir)/resources.texi

src/library/tools/R/dynamicHelp.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,13 +146,14 @@ httpd <- function(path, query, ...)
146146
}
147147

148148
.HTMLusermanuals <- function() {
149+
## FIXME: recommended packages might not be available
149150
pkgs <- unlist(.get_standard_package_names())
150151

151152
out <- HTMLheader("R User Manuals")
152153
for (pkg in pkgs) {
153154
vinfo <- getVignetteInfo(pkg)
154155
if (nrow(vinfo))
155-
out <- c(out, paste0('<h2>Manuals in package', sQuote(pkg),'</h2>'),
156+
out <- c(out, paste0('<h2>Manuals in package ', sQuote(pkg),'</h2>'),
156157
makeVignetteTable(cbind(Package=pkg, vinfo[,c("File", "Title", "PDF", "R"), drop = FALSE])))
157158
}
158159
out <- c(out, "<hr/>\n</div></body></html>")

0 commit comments

Comments
 (0)