[R-gregmisc-users] SF.net SVN: r-gregmisc:[1639] trunk/gdata/R
Brought to you by:
warnes
From: <wa...@us...> - 2013-01-14 20:47:59
|
Revision: 1639 http://sourceforge.net/p/r-gregmisc/code/1639 Author: warnes Date: 2013-01-14 20:47:57 +0000 (Mon, 14 Jan 2013) Log Message: ----------- Replace (obsolete) '.path.package' with 'find.package' function. Modified Paths: -------------- trunk/gdata/R/installXLSXsupport.R trunk/gdata/R/sheetCount.R trunk/gdata/R/xls2sep.R trunk/gdata/R/xlsFormats.R Modified: trunk/gdata/R/installXLSXsupport.R =================================================================== --- trunk/gdata/R/installXLSXsupport.R 2012-12-14 22:50:47 UTC (rev 1638) +++ trunk/gdata/R/installXLSXsupport.R 2013-01-14 20:47:57 UTC (rev 1639) @@ -10,7 +10,7 @@ ## ## directories - package.dir <- .path.package('gdata') + package.dir <- find.package('gdata') perl.dir <- file.path(package.dir,'perl') ## ## Modified: trunk/gdata/R/sheetCount.R =================================================================== --- trunk/gdata/R/sheetCount.R 2012-12-14 22:50:47 UTC (rev 1638) +++ trunk/gdata/R/sheetCount.R 2013-01-14 20:47:57 UTC (rev 1639) @@ -15,7 +15,7 @@ ## ## directories - package.dir <- .path.package('gdata') + package.dir <- find.package('gdata') perl.dir <- file.path(package.dir,'perl') ## ## Modified: trunk/gdata/R/xls2sep.R =================================================================== --- trunk/gdata/R/xls2sep.R 2012-12-14 22:50:47 UTC (rev 1638) +++ trunk/gdata/R/xls2sep.R 2013-01-14 20:47:57 UTC (rev 1639) @@ -36,7 +36,7 @@ ## ## directories - package.dir <- .path.package('gdata') + package.dir <- find.package('gdata') perl.dir <- file.path(package.dir,'perl') ## Modified: trunk/gdata/R/xlsFormats.R =================================================================== --- trunk/gdata/R/xlsFormats.R 2012-12-14 22:50:47 UTC (rev 1638) +++ trunk/gdata/R/xlsFormats.R 2013-01-14 20:47:57 UTC (rev 1639) @@ -10,7 +10,7 @@ ## ## directories - package.dir <- .path.package('gdata') + package.dir <- find.package('gdata') perl.dir <- file.path(package.dir,'perl') ## ## This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |