%\VignetteIndexEntry{biocViews-CreateRepositoryHTML} % % NOTE -- ONLY EDIT THE .Rnw FILE!!! The .tex file is % likely to be overwritten. % \documentclass[12pt]{article} \usepackage{amsmath} \usepackage[authoryear,round]{natbib} \usepackage{hyperref} \textwidth=6.2in \textheight=8.5in \oddsidemargin=.1in \evensidemargin=.1in \headheight=-.3in \newcommand{\scscst}{\scriptscriptstyle} \newcommand{\scst}{\scriptstyle} \newcommand{\Rfunction}[1]{{\texttt{#1}}} \newcommand{\Robject}[1]{{\texttt{#1}}} \newcommand{\Rpackage}[1]{{\textit{#1}}} \newcommand{\Rmethod}[1]{{\texttt{#1}}} \newcommand{\Rfunarg}[1]{{\texttt{#1}}} \newcommand{\Rclass}[1]{{\textit{#1}}} \textwidth=6.2in \bibliographystyle{plainnat} \begin{document} %\setkeys{Gin}{width=0.55\textwidth} \title{HOWTO generate repository HTML} \author{S. Falcon} \maketitle <>= library("biocViews") @ \section{Overview} This document assumes you have a collection of R packages on local disk that you would like to prepare for publishing to the web. The end result we are going for is: \begin{enumerate} \item Packages organized per CRAN-style repository standard \item PACKAGES files created for install.packages access \item VIEWS file created for generating biocViews \item A vignette directory created containing the extracted vignette pdf files from each source package in the repository. \item An html directory created containing html descriptions of each package with links for downloading available artifacts. \item A simple alphabetical listing index.html file \end{enumerate} \section{CRAN-style Layout} Establish a top-level directory for the repository, we will refer to this directory as reposRoot. Place your packages as follows: \begin{description} \item[src/contrib] Contains all source packages (*.tar.gz). \item[bin/windows/contrib/x.y] Contains all win.binary packages (*.zip). Where x.y is the major.minor version number of R. \item[bin/macosx/el-capitan/contrib/x.y] Contains the mac.binary.el-capitan (El Capitan) (*.tgz) packages. \end{description} You will need the following parameters: <>= reposRoot <- "path/to/reposRoot" ## The names are essential contribPaths <- c(source="src/contrib", win.binary="bin/windows/contrib/3.4", `mac.binary.el-capitan`="bin/macosx/el-capitan/contrib/3.4") @ \section{Extracting vignettes} The \Rfunction{extractVignettes} function extracts pdf files from inst/doc. The default is to extract to a reposRoot/vignettes. <>= extractVignettes(reposRoot, contribPaths["source"]) @ \section{Generating the control files} The \Rfunction{genReposControlFiles} function will generate the PACKAGES files for each contrib path and also create a VIEWS file with complete info for later use by biocViews. <>= genReposControlFiles(reposRoot, contribPaths) @ \section{Generating the HTML} The \Rfunction{writeRepositoryHtml} will generate HTML detail files for each package in reposRoot/html. The function will also create an index.html file at the top level. Two CSS files are included with \Rpackage{biocViews} that are automatically copied along side the appropriate HTML files during the HTML generation process. These CSS files are: \begin{verbatim} reposRoot/repository-detail.css reposRoot/html/package-detail.css \end{verbatim} \section{Design and extension notes} The basic idea is that using the VIEWS file and the known repository structure (location of packages and extracted vignettes), we represent the details for each package in the repository in a \Rclass{PackageDetail-class} instance. \Rclass{packageDetail-class} objects know how to write themselves to HTML using the \Rmethod{htmlValue} method. We used the \Rpackage{XML} package's \Rfunction{xmlOutputDOM} function to build up the HTML documents. Each HTML producing class extends \Rclass{Htmlized-class} which contains a slot to hold the DOM tree and provides a place to put methods that are not specific to any given HTML outputting class. In terms of extending this to generate the biocViews, have a look at \Rfunction{setDependsOnMeImportsMeSuggestsMe} which builds up an adjacency matrix representing package dependencies, importations, and suggestions. The matrix is square with rows and columns labeled with the names of the packages. The entries are 0/1 with $a_{ij}=1$ meaning that package $j$ depends on package $i$. \subsection{Details on HTML generation} I started by breaking the \Rmethod{htmlValue} method for \Rclass{PackageDetail-class} into one helper function for each logical section of the HTML we produce (author, description, details, downloads, and vignettes). That made the long method short enough to be readable. In order to be able to mix and match the different chunks and be able to more easily create new renderings, it seemed that it would be easiest to be able to render to HTML each chunk with a method. One possibility is a function \Rfunction{htmlChunk(object, ``descriptions'')} where the dispatch would be done using a switch statement or similar. A more flexible approach is to create dummy classes for each output ``chunk''. Each dummy class contains (subclasses) \Rclass{PackageDescription} and that's it. We then can take advantage of the behavior of the \Rmethod{as} method to convert. <>= ## Define classes like this for each logical document chunk setClass("pdAuthorMaintainerInfo", contains="PackageDetail") setClass("pdVignetteInfo", contains="PackageDetail") ## Then define a htmlValue method setMethod("htmlValue", signature(object="pdDescriptionInfo"), function(object) { node <- xmlNode("p", cleanText(object@Description), attrs=c(class="description")) node }) ## Then you can make use of all this... ## Assume object contains a PackageDetail instance authorInfo <- as(object, "pdAuthorMaintainerInfo") dom$addNode(htmlValue(authorInfo)) @ One advantage of this setup is that we can now define a method to generate complete HTML documents that will work for all the dummy classes. Hence mix and match. \subsection{A note on the htmlValue method for PackageDetail} We could parameterize as follows. Not sure this makes things easier to follow, but it does demonstrate how you could start building up documents in a more programatic fashion. \begin{verbatim} details <- list(heading=list(tag="h3", text="Details"), content="pdDetailsInfo") downloads <- list(heading=list(tag="h3", text="Download Package"), content="pdDownloadInfo") vignettes <- list(heading=list(tag="h3", text="Vignettes (Documentation)"), content="pdVignetteInfo") doSection <- function(sec) { dom$addTag(sec$heading$tag, sec$heading$text) secObj <- as(object, sec$content) dom$addNode(htmlValue(secObj)) } lapply(list(details, downloads, vignettes), doSection) \end{verbatim} \end{document}