Rev 49612 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/utils/man/help.start.Rd% Part of the R package, http://www.R-project.org% Copyright 1995-2009 R Core Development Team% Distributed under GPL 2 or later\name{help.start}\title{Hypertext Documentation}\alias{help.start}\description{Start the hypertext (currently HTML) version of \R's onlinedocumentation.}\usage{help.start(update = FALSE, gui = "irrelevant",browser = getOption("browser"), remote = NULL)}\arguments{\item{update}{logical: should this attempt to update the package index toreflect the currently available packages. (Not attempted if\code{remote} is non-\code{NULL}.)}\item{gui}{just for compatibility with S-PLUS.}\item{browser}{the name of the program to be used as hypertextbrowser. It should be in the \env{PATH}, or a full path specified.Alternatively, it can be an \R function which will be called with aURL as its only argument.#ifdef windowsThis option is normally unset on Windows, when the file-associationmechanism will be used.#endif}\item{remote}{A character string giving a valid URL for the\file{\var{\link{R_HOME}}} directory on a remote location.}}\details{Unless \code{remote} is specified this requires the HTTP server to beavailable (it will be started if possible: see\code{\link{startDynamicHelp}}).One of the links on the index page is the HTML package index,\file{R.home("docs")/html/packages.html}, which can be remade by\code{\link{make.packages.html}(temp = FALSE)}. For local operation,the HTTP server will remake a temporary version of this list when thelink is first clicked, and each time thereafter check if updating isneeded (if \code{\link{.libPaths}} has changed or any of thedirectories has been changed). This can be slow, and using\code{update = TRUE} will ensure that the packages list is updatedbefore launching the index page.Argument \code{remote} can be used to point to HTML help published byanother \R installation: it will typically only show packages from themain library of that installation.}\seealso{\code{\link{help}()} for on- and off-line help in other formats.\code{\link{browseURL}} for how the help file is displayed.\code{\link{RSiteSearch}} to access an on-line search of \R resources.}\examples{\donttest{help.start()}\dontrun{#ifdef unix## the 'remote' arg can be tested byhelp.start(remote=paste("file://", R.home(), sep=""))#endif}}\keyword{documentation}