[Sciviews-commits] r291 - in pkg/SciViews: . R inst
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Mon Sep 6 18:30:44 CEST 2010
Author: phgrosjean
Date: 2010-09-06 18:30:44 +0200 (Mon, 06 Sep 2010)
New Revision: 291
Added:
pkg/SciViews/R/SciViews-internal.R
Modified:
pkg/SciViews/DESCRIPTION
pkg/SciViews/NEWS
pkg/SciViews/TODO
pkg/SciViews/inst/CITATION
Log:
Typo correction in CITATION
Modified: pkg/SciViews/DESCRIPTION
===================================================================
--- pkg/SciViews/DESCRIPTION 2010-09-06 16:30:07 UTC (rev 290)
+++ pkg/SciViews/DESCRIPTION 2010-09-06 16:30:44 UTC (rev 291)
@@ -3,6 +3,7 @@
Title: SciViews GUI API - Main package
Imports: ellipse
Depends: R (>= 2.6.0), stats, grDevices, graphics, MASS
+Enhances: base, stats
Description: Functions to install SciViews additions to R, and more (various) tools
Version: 0.9-1
Date: 2010-02-15
Modified: pkg/SciViews/NEWS
===================================================================
--- pkg/SciViews/NEWS 2010-09-06 16:30:07 UTC (rev 290)
+++ pkg/SciViews/NEWS 2010-09-06 16:30:44 UTC (rev 291)
@@ -1,11 +1,16 @@
= SciViews News
+== SciViews version 0.9-1
+
+* ...
+
+
== SciViews version 0.9-0
-This is the first version on R-forge. There used to ba a SciViews **bundle**
-that contained svMisc, svSocket, svIDE, svGUI, ..., but bundles are obsolete
-now. The new SciViews package plays a similar role as the bundle, i.e., it is
-a convenient way to install all SciViews-R packages with one instruction:
+This is the first version on R-forge. There used to be a SciViews **bundle**
+that contained svMisc, svSocket, svGUI, ..., but bundles are obsolete now. The
+new SciViews package plays a similar role as the bundle, i.e., it is a
+convenient way to install all SciViews-R packages with one instruction:
> install.packages("SciViews", dependencies = TRUE).
Added: pkg/SciViews/R/SciViews-internal.R
===================================================================
--- pkg/SciViews/R/SciViews-internal.R (rev 0)
+++ pkg/SciViews/R/SciViews-internal.R 2010-09-06 16:30:44 UTC (rev 291)
@@ -0,0 +1,22 @@
+".onLoad" <-
+function (lib, pkg)
+{
+ # TODO: check configuration and install everything that we need to use the
+ # SciViews extensions, including the HTTP or socket server
+ #serve <- getOption("ko.serve")
+ #if (!is.null(serve)) {
+ # startSocketServer(port = as.integer(serve)[1])
+ # guiInstall()
+ #}
+}
+
+".onUnload" <-
+function (libpath)
+{
+ #serve <- getOption("ko.serve")
+ #if (!is.null(serve) && "package:svSocket" %in% search())
+ # stopSocketServer(port = as.integer(serve)[1])
+ #guiUninstall()
+}
+
+".packageName" <- "SciViews"
Modified: pkg/SciViews/TODO
===================================================================
--- pkg/SciViews/TODO 2010-09-06 16:30:07 UTC (rev 290)
+++ pkg/SciViews/TODO 2010-09-06 16:30:44 UTC (rev 291)
@@ -32,4 +32,10 @@
server accordingly (do not start the socket server automatically in case there
is no config file).
+* Automatically load projects and snippets associated with a package. Use a context
+ string that ensures that we have require(XXXX) somewhere up the script for using
+ a command in a R package. Reload the tooltips definition each time we use them...
+ or better: use contextual arguments: svMisc::expr => can superseed expr tooltip
+ but uses it, if there is no svMisc::expr tooltip!
+
* Translation of this package (and what about the doc?).
Modified: pkg/SciViews/inst/CITATION
===================================================================
--- pkg/SciViews/inst/CITATION 2010-09-06 16:30:07 UTC (rev 290)
+++ pkg/SciViews/inst/CITATION 2010-09-06 16:30:44 UTC (rev 291)
@@ -3,7 +3,7 @@
citEntry(entry="Manual",
title = "SciViews-R: A GUI API for R",
author = "Philippe Grosjean",
- organization = "UMons",
+ organization = "UMONS",
address = "Mons, Belgium",
year = version$year,
url = "http://www.sciviews.org/SciViews-R",
@@ -11,7 +11,7 @@
textVersion =
paste("Grosjean, Ph. (", version$year, "). ",
"SciViews: A GUI API for R. ",
- "UMons, Mons, Belgium. ",
+ "UMONS, Mons, Belgium. ",
"URL http://www.sciviews.org/SciViews-R.",
sep="")
)
More information about the Sciviews-commits
mailing list