[Roxygen-commits] r266 - in pkg: . R inst/doc man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Fri Dec 23 11:00:16 CET 2011


Author: manuel
Date: 2011-12-23 11:00:15 +0100 (Fri, 23 Dec 2011)
New Revision: 266

Added:
   pkg/R/aaa.R
Modified:
   pkg/DESCRIPTION
   pkg/inst/doc/roxygen.Rnw
   pkg/inst/doc/roxygen.pdf
   pkg/man/parse.ref.preref.Rd
   pkg/man/parse.ref.srcref.Rd
   pkg/man/register.preref.parser.Rd
   pkg/man/register.preref.parsers.Rd
Log:
...

Modified: pkg/DESCRIPTION
===================================================================
--- pkg/DESCRIPTION	2011-12-23 09:17:44 UTC (rev 265)
+++ pkg/DESCRIPTION	2011-12-23 10:00:15 UTC (rev 266)
@@ -11,7 +11,7 @@
 URL: http://roxygen.org
 Depends: digest, gsubfn
 Suggests: Rgraphviz (>= 1.19.2), tools (>= 2.9.1), testthat
-Collate: 'functional.R' 'list.R' 'roxygen.R' 'string.R' 'memoize.R' 'parse.R'
+Collate: 'aaa.R' 'functional.R' 'list.R' 'roxygen.R' 'string.R' 'memoize.R' 'parse.R'
     'parseS4.R' 'roclet.R' 'callgraph.R' 'description.R' 'collate.R'
     'namespace.R' 'Rd.R' 'Rdmerge.R' 'Rdapi.R' 'Rdtank.R' 'Rd2.R'
     'roxygenize.R'

Added: pkg/R/aaa.R
===================================================================
--- pkg/R/aaa.R	                        (rev 0)
+++ pkg/R/aaa.R	2011-12-23 10:00:15 UTC (rev 266)
@@ -0,0 +1,8 @@
+
+.onAttach <- function(libname, pkgname) {
+  packageStartupMessage(paste("This is roxygen 0.3-2:\n",
+                              " Please note that roxygen is no longer being\n",
+                              " actively developed. Please see its successor\n",
+                              " roxygen2 on CRAN!\n"))
+  return(TRUE)
+}


Property changes on: pkg/R/aaa.R
___________________________________________________________________
Added: svn:keywords
   + Date Revision Author URL Id
Added: svn:eol-style
   + native

Modified: pkg/inst/doc/roxygen.Rnw
===================================================================
--- pkg/inst/doc/roxygen.Rnw	2011-12-23 09:17:44 UTC (rev 265)
+++ pkg/inst/doc/roxygen.Rnw	2011-12-23 10:00:15 UTC (rev 266)
@@ -50,7 +50,7 @@
 run after \Roxygen{} has processed the package skeleton.
 
 First, create the package skeleton:
-<<keep.source=true>>=
+<<keep.source=true,eval=FALSE>>=
 library(roxygen)
 package.skeleton('helloRoxygen',
                  code_files='hello-roxygen.R',

Modified: pkg/inst/doc/roxygen.pdf
===================================================================
(Binary files differ)

Modified: pkg/man/parse.ref.preref.Rd
===================================================================
--- pkg/man/parse.ref.preref.Rd	2011-12-23 09:17:44 UTC (rev 265)
+++ pkg/man/parse.ref.preref.Rd	2011-12-23 10:00:15 UTC (rev 266)
@@ -1,8 +1,11 @@
-\name{parse.ref.preref}
-\alias{parse.ref.preref}
-\title{Parse a preref...}
-\usage{\method{parse.ref}{preref} (ref, ...)}
-\description{Parse a preref}
-\value{List containing the parsed preref}
-\arguments{\item{ref}{the preref to be parsed}
-\item{\dots}{ignored}}
+\name{parse.ref.preref}
+\alias{parse.ref.preref}
+\alias{parse.ref.srcref}
+\title{Parse a preref...}
+\usage{\method{parse.ref}{preref} (ref, ...)
+\method{parse.ref}{srcref} (...)
+}
+\description{Parse a preref}
+\value{List containing the parsed preref}
+\arguments{\item{ref}{the preref to be parsed}
+\item{\dots}{ignored}}

Modified: pkg/man/parse.ref.srcref.Rd
===================================================================
--- pkg/man/parse.ref.srcref.Rd	2011-12-23 09:17:44 UTC (rev 265)
+++ pkg/man/parse.ref.srcref.Rd	2011-12-23 10:00:15 UTC (rev 266)
@@ -1,10 +1,9 @@
-\name{parse.ref.srcref}
-\alias{parse.ref.srcref}
-\title{Parse a srcref...}
-\usage{
-### parse.ref.srcref(ref, ...)
-parse.ref.srcref(...)
-}
-\description{Parse a srcref}
-\value{List containing the parsed srcref}
-\arguments{\item{...}{the srcref to be parsed}}
+\name{parse.ref.srcref}
+\alias{parse.ref.srcref}
+\title{Parse a srcref...}
+\usage{
+\method{parse.ref}{srcref} (ref, ...)
+}
+\description{Parse a srcref}
+\value{List containing the parsed srcref}
+\arguments{\item{...}{the srcref to be parsed}}

Modified: pkg/man/register.preref.parser.Rd
===================================================================
--- pkg/man/register.preref.parser.Rd	2011-12-23 09:17:44 UTC (rev 265)
+++ pkg/man/register.preref.parser.Rd	2011-12-23 10:00:15 UTC (rev 266)
@@ -1,9 +1,10 @@
-\name{register.preref.parser}
-\alias{register.preref.parser}
-\title{Specifically register a preref parser...}
-\description{Specifically register a preref parser}
-\value{\code{NULL}}
-\seealso{\code{\link{register.parser}}}
-\arguments{\item{key}{the key upon which to register}
-\item{parser}{the parser callback to register;
-a function taking \code{key} and \code{expression}}}
+\name{register.preref.parser}
+\alias{register.preref.parser}
+\alias{register.srcref.parser}
+\title{Specifically register a preref parser...}
+\description{Specifically register a preref parser}
+\value{\code{NULL}}
+\seealso{\code{\link{register.parser}}}
+\arguments{\item{key}{the key upon which to register}
+\item{parser}{the parser callback to register;
+a function taking \code{key} and \code{expression}}}

Modified: pkg/man/register.preref.parsers.Rd
===================================================================
--- pkg/man/register.preref.parsers.Rd	2011-12-23 09:17:44 UTC (rev 265)
+++ pkg/man/register.preref.parsers.Rd	2011-12-23 10:00:15 UTC (rev 266)
@@ -1,7 +1,8 @@
-\name{register.preref.parsers}
-\alias{register.preref.parsers}
-\title{Register many preref parsers at once.}
-\description{Register many preref parsers at once.}
-\value{\code{NULL}}
-\arguments{\item{parser}{the parser to register}
-\item{\dots}{the keys upon which to register}}
+\name{register.preref.parsers}
+\alias{register.preref.parsers}
+\alias{register.srcref.parsers}
+\title{Register many preref parsers at once.}
+\description{Register many preref parsers at once.}
+\value{\code{NULL}}
+\arguments{\item{parser}{the parser to register}
+\item{\dots}{the keys upon which to register}}



More information about the Roxygen-commits mailing list