[Pgfsweave-commits] r3 - / pkg www

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Fri Feb 6 19:28:56 CET 2009


Author: cameronbracken
Date: 2009-02-06 19:28:56 +0100 (Fri, 06 Feb 2009)
New Revision: 3

Removed:
   branches/
   pkg/DESCRIPTION
   pkg/NAMESPACE
   pkg/NEWS
   pkg/R/
   pkg/README
   pkg/exec/
   pkg/inst/
   pkg/man/
   tags/
Modified:
   www/index.php
Log:
cleaned repo for external

Deleted: pkg/DESCRIPTION
===================================================================
--- pkg/DESCRIPTION	2009-02-06 07:20:40 UTC (rev 2)
+++ pkg/DESCRIPTION	2009-02-06 18:28:56 UTC (rev 3)
@@ -1,12 +0,0 @@
-Package: pgfSweave
-Type: Package
-Title: Extending the functionality of cacheSweave to include quality speedy graphics compilation
-Version: 0.6
-Date: 2008-01-11
-Author: Cameron Bracken <cameron.bracken at gmail.com> and Charlie Sharpsteen <source at sharpsteen.net>
-Maintainer: Cameron Bracken <cameron.bracken at gmail.com> 
-Depends: grDevices, utils, stashR, filehash, cacheSweave
-Imports: digest
-Description: The package cacheSweave provides a convenient way for speeding up compilation of Sweave documents which include computationally intensive code chunks.  pgfSweave provides new features beyond cacheSweave:  (1) better recognition of code chunk changes (2) the 'caching' of code chunks which generate graphics and (3) the generation of graphics in which the font matches that of the main document. This functionality is achieved using the eps2pgf utility and the external graphics feature in the TeX package pgf.
-License: GPL
-LazyLoad: yes

Deleted: pkg/NAMESPACE
===================================================================
--- pkg/NAMESPACE	2009-02-06 07:20:40 UTC (rev 2)
+++ pkg/NAMESPACE	2009-02-06 18:28:56 UTC (rev 3)
@@ -1,7 +0,0 @@
-export("pgfSweaveDriver")
-export("pgfSweave")
-
-import(utils)
-importFrom(digest, "digest")
-importFrom(cacheSweave, "getCacheDir", "setCacheDir")
-importFrom(tools, "texi2dvi")

Deleted: pkg/NEWS
===================================================================
--- pkg/NEWS	2009-02-06 07:20:40 UTC (rev 2)
+++ pkg/NEWS	2009-02-06 18:28:56 UTC (rev 3)
@@ -1,4 +0,0 @@
-2009-01-11 Cameron Bracken <cameron.bracken at gmail.com>
-
-* pgfSweave added to rforge.net (http://www.rforge.net/pgfSweave/)
-* Tagged version 0.5, current version in trunk is 0.6

Deleted: pkg/README
===================================================================
--- pkg/README	2009-02-06 07:20:40 UTC (rev 2)
+++ pkg/README	2009-02-06 18:28:56 UTC (rev 3)
@@ -1,50 +0,0 @@
-Last Updated: January 26, 2009 
-
-TODO:
-* Finish the vignette
-* Determine if pgf 2.00 contains the external capabilities so that can be stated in the vignette and the documentation.
-* Determine the limitations R CMD pgfSweave.
-* More extensive testing with plain latex and with windows.
-* Figure out how to fill the environment variable $R_HOME in exec/pgfSweave
-* Figure out how to call the script exec/pgfSweave when using R CMD pgfSweave
-* Figure out how to call eps2pgf.jar with the rJava package 
-
-BUGS:
-* Package currently generates a bash shell script to compile external graphics, which will obviously not work in windows.
-* No checking for correct version of pgf.
-* If java does not exist the compilation is reported as successful though the pgf file did not properly get created. 
-* Adding white space at the end of a code chunk causes all of the following code chunks to be registered as changed
-* A stray Rplots.pdf gets generated using caching. Not sure if this a cacheSweave problem or a pgfSweave problem.  When using a gui interface a plotting window opens up.
-* latex/pdflatex is not found when using R.app unless path to pdflatex is hardcoded (but R CMD pdfSweave <file> works)
-* Vignette does not compile with R CMD {check,build,install} because file is not normal Sweave (Solution for the final document may just be to save images separately and create a standard Sweave file). For now vignette moved to inst/doc/src.
-
-ISSUES (not serious bugs but things to note):
-* external=T only works if a single plot is generated with a single code chunk.  This is an issue with Sweave as well. The offered fix in Sweave is to cat() your own includegraphics commands.
-* Not all latex commands work in labels for example \scshape works but \textsc{} does not
-* Changing the width and height of a figure ONLY but not the code chunk does not register as a change and thus the code chunk will not recompile.
-
-POSSIBLE NEW FEATURES:
-* Automatically add the \pgfrealjobname command if it is not already in the file like the Sweave style file is added when stylepath=TRUE.
-* When a pgf/TikZ graphic is included manually (not in a code chunk) add the commands to externalize into the graphics into the shell script that is created. This may need to be a separate function that gives the tex file a once over and checks if the pdf file exists corresponding to the name in \beginpgfgraphicnamed{name} or the corresponding TikZ externalization command. There are already scripts available on example to do stuff like this so maybe integration of one of those may be possible. 
-* Add support for TikZ externalization.  TikZ externalization library is more elegant and could provide more advanced options. Though this is not really necessary currently.
-* pgf graphics device.
-
-RESOLVED (resolution in brackets):
-* [If pgf is TRUE it supercedes everything else] Using the 'pdf' option and 'external' option will conflict suggest using one or the other or possibly have a default when this is the case
-* [Use \usepackage[nogin]{Sweave}] output pdf size when included in document is refined by textwidth by default, need a feature to add the 'width' and 'height' and possibly and other option 'scale' the \includegraphics[width=,height=,scale=]{file}
-
-DONE (old TODO items):
-* Documentation has a boatload of warnings under R CMD check.
-
-POSSIBLE POST TO R-devel:
-I am writing a package that includes a shell script in the exec/ directory say "ABC".  This script is a wrapper to an R function "abc" which takes a file as an input.  I want to be able to use R CMD ABC <file> similar to Sweave.  It it possible to have R CMD search for a script that is not in R_HOME/bin?  
-
-From the other angle would it be possible to have a package install a script in R_HOME/bin? 
-
-I realize this would just be a convenience but
-
-echo "system('<file>')" | R --vanilla --slave
-or
-`R HOME`/library/mypackage/exec/ABC <file>
-
-are less desirable.  

Modified: www/index.php
===================================================================
--- www/index.php	2009-02-06 07:20:40 UTC (rev 2)
+++ www/index.php	2009-02-06 18:28:56 UTC (rev 3)
@@ -43,7 +43,7 @@
 
 <!-- end of project description -->
 
-<p> No content added. </p>
+<p> To install the latest revision of pgfSweave use: <code>install.packages('pgfSweave',,'http://www.rforge.net/')</code> </p>
 
 <p> The <strong>project summary page</strong> you can find <a href="http://<?php echo $domain; ?>/projects/<?php echo $group_name; ?>/"><strong>here</strong></a>. </p>
 



More information about the Pgfsweave-commits mailing list