[Pomp-commits] r364 - pkg/R

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Oct 5 20:12:11 CEST 2010


Author: kingaa
Date: 2010-10-05 20:12:11 +0200 (Tue, 05 Oct 2010)
New Revision: 364

Modified:
   pkg/R/aaa.R
Log:

- fiddle with the banner


Modified: pkg/R/aaa.R
===================================================================
--- pkg/R/aaa.R	2010-10-05 16:28:22 UTC (rev 363)
+++ pkg/R/aaa.R	2010-10-05 18:12:11 UTC (rev 364)
@@ -3,24 +3,22 @@
   version <- strsplit(version[pmatch("Version",version)]," ")[[1]]
   version <- version[nchar(version)>0][2]
   cat("This is pomp version ",version,"\n\n",sep="")
-  cat(
-      paste(
-            "IMPORTANT NOTICE:\n",
-            "The default behaviors of ",sQuote("simulate")," and ",sQuote("trajectory"),
-            " have changed as of release 0.34-1. ",
-            "You can ensure that your code will continue to function as you intend by specifying the values ",
-            "of the ",sQuote("times")," and ",sQuote("t0")," arguments to these functions, thus removing ",
-            "dependence of your code on the defaults. ",
-            "In the meantime, using ",sQuote("simulate")," or ",sQuote("trajectory"),
-            " in such a way as to rely on the default will produce a warning. ",
-            "These warnings will be removed in a future release.\n\n",
-            "See the documentation (",dQuote("pomp?simulate"),", ",dQuote("pomp?trajectory"),
-            ") for a description of the new default behaviors.\n\n",
-            "Subscribe to the pomp-announce list to receive email notification about new releases of pomp ",
-            "including descriptions of feature additions, changes, and fixes.\n\n",
-            sep=""
-            ),
-      fill=TRUE,
-      sep=""
-      )
+  paste(
+        "IMPORTANT NOTICE:\n",
+        "The default behaviors of ",sQuote("simulate")," and ",sQuote("trajectory"),
+        " have changed as of release 0.34-1. ",
+        "You can ensure that your code will continue to function as you intend by specifying the values of the ",
+        sQuote("times")," and ",sQuote("t0"),
+        " arguments to these functions, thus removing dependence of your code on the defaults. ",
+        "In the meantime, using ",sQuote("simulate")," or ",sQuote("trajectory"),
+        " in such a way as to rely on the default will produce a warning. ",
+        "These warnings will be removed in a future release.\n\n",
+        "See the documentation (",dQuote("pomp?simulate"),", ",dQuote("pomp?trajectory"),
+        ") for a description of the new default behaviors.\n\n",
+        "Subscribe to the pomp-announce list (go to pomp.r-forge.r-project.org) ",
+        "to receive email notification about new releases of pomp including ",
+        "descriptions of feature additions, changes, and fixes.\n\n",
+        sep=""
+        ) -> msg
+  cat(msg,fill=TRUE)
 }



More information about the pomp-commits mailing list