[Rsiena-commits] r187 - in pkg: RSiena RSiena/man RSiena/src RSienaTest RSienaTest/doc RSienaTest/man RSienaTest/src

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Wed Dec 7 00:34:05 CET 2011


Author: ripleyrm
Date: 2011-12-07 00:34:05 +0100 (Wed, 07 Dec 2011)
New Revision: 187

Modified:
   pkg/RSiena/DESCRIPTION
   pkg/RSiena/changeLog
   pkg/RSiena/man/RSiena-package.Rd
   pkg/RSiena/src/siena07setup.cpp
   pkg/RSienaTest/DESCRIPTION
   pkg/RSienaTest/changeLog
   pkg/RSienaTest/doc/RSienaDeveloper.tex
   pkg/RSienaTest/man/RSiena-package.Rd
   pkg/RSienaTest/src/siena07setup.cpp
Log:
Fixing typos. 

Modified: pkg/RSiena/DESCRIPTION
===================================================================
--- pkg/RSiena/DESCRIPTION	2011-12-04 17:51:35 UTC (rev 186)
+++ pkg/RSiena/DESCRIPTION	2011-12-06 23:34:05 UTC (rev 187)
@@ -1,8 +1,8 @@
 Package: RSiena
 Type: Package
 Title: Siena - Simulation Investigation for Empirical Network Analysis
-Version: 1.0.12.186
-Date: 2011-12-04
+Version: 1.0.12.187
+Date: 2011-12-06
 Author: Various
 Depends: R (>= 2.10.0)
 Imports: Matrix

Modified: pkg/RSiena/changeLog
===================================================================
--- pkg/RSiena/changeLog	2011-12-04 17:51:35 UTC (rev 186)
+++ pkg/RSiena/changeLog	2011-12-06 23:34:05 UTC (rev 187)
@@ -1,3 +1,9 @@
+2011-12-06 R-forge revision 187.
+
+	* src/siena07setup.cpp: correct change to name of included file in
+	previous version: did not compile on case-sensitive systems.
+	* doc/RSienaDeveloper.tex: fixed a latex error. (RSienaTest only)
+
 2011-12-04 R-forge revision 186.
 
 	* R/bayes.r, R/initializeFRAN.r, R/maxlikec.r, R/phase1.r,

Modified: pkg/RSiena/man/RSiena-package.Rd
===================================================================
--- pkg/RSiena/man/RSiena-package.Rd	2011-12-04 17:51:35 UTC (rev 186)
+++ pkg/RSiena/man/RSiena-package.Rd	2011-12-06 23:34:05 UTC (rev 187)
@@ -30,8 +30,8 @@
 \tabular{ll}{
 Package: \tab RSiena\cr
 Type: \tab Package\cr
-Version: \tab 1.0.12.186\cr
-Date: \tab 2011-12-04\cr
+Version: \tab 1.0.12.187\cr
+Date: \tab 2011-12-06\cr
 License: \tab GPL-2 \cr
 LazyLoad: \tab yes\cr
 }

Modified: pkg/RSiena/src/siena07setup.cpp
===================================================================
--- pkg/RSiena/src/siena07setup.cpp	2011-12-04 17:51:35 UTC (rev 186)
+++ pkg/RSiena/src/siena07setup.cpp	2011-12-06 23:34:05 UTC (rev 187)
@@ -28,7 +28,7 @@
 #include "model/StatisticCalculator.h"
 #include "data/ActorSet.h"
 #include "model/ml/MLSimulation.h"
-#include "model/variables/Dependentvariable.h"
+#include "model/variables/DependentVariable.h"
 
 using namespace std;
 using namespace siena;

Modified: pkg/RSienaTest/DESCRIPTION
===================================================================
--- pkg/RSienaTest/DESCRIPTION	2011-12-04 17:51:35 UTC (rev 186)
+++ pkg/RSienaTest/DESCRIPTION	2011-12-06 23:34:05 UTC (rev 187)
@@ -1,8 +1,8 @@
 Package: RSienaTest
 Type: Package
 Title: Siena - Simulation Investigation for Empirical Network Analysis
-Version: 1.0.12.186
-Date: 2011-12-04
+Version: 1.0.12.187
+Date: 2011-12-06
 Author: Various
 Depends: R (>= 2.10.0)
 Imports: Matrix

Modified: pkg/RSienaTest/changeLog
===================================================================
--- pkg/RSienaTest/changeLog	2011-12-04 17:51:35 UTC (rev 186)
+++ pkg/RSienaTest/changeLog	2011-12-06 23:34:05 UTC (rev 187)
@@ -1,3 +1,9 @@
+2011-12-06 R-forge revision 187.
+
+	* src/siena07setup.cpp: correct change to name of included file in
+	previous version: did not compile on case-sensitive systems.
+	* doc/RSienaDeveloper.tex: fixed a latex error. (RSienaTest only)
+
 2011-12-04 R-forge revision 186.
 
 	* R/bayes.r, R/initializeFRAN.r, R/maxlikec.r, R/phase1.r,

Modified: pkg/RSienaTest/doc/RSienaDeveloper.tex
===================================================================
--- pkg/RSienaTest/doc/RSienaDeveloper.tex	2011-12-04 17:51:35 UTC (rev 186)
+++ pkg/RSienaTest/doc/RSienaDeveloper.tex	2011-12-06 23:34:05 UTC (rev 187)
@@ -108,7 +108,8 @@
 \item Use the configuration file \sfn{RSienaTest/doc/config.dox} to run the
   Doxywizard. On Windows you need the File/Open \texttt{config.dox} (in
   \texttt{RSienaTest/doc}).  On a Mac, you need to use the expert/dot tab in the
-  Wizard, and enter \texttt{/usr/local/bin} in the box marked DOT\_PATH. On
+  Wizard, and enter \texttt{/usr/local/graphviz-n.nn/bin} in the box marked
+  DOT\_PATH where n.nn indicates the version. On
   Linux I do not know!
 \item The documentation is a set of html files. Open one and then you can
   navigate round the set.
@@ -221,7 +222,7 @@
 documents and settings\textbackslash user name\textbackslash Application Data''
 (Windows XP). On Mac or Linux, the initialization file should be called
 \sfn{.emacs}, located in your home directory, and it might need minor amendment
-from \sfn{_emacs}.
+from \sfn{\_emacs}.
 
 Note that emacs has a nice habit of copying text as soon as you highlight it and
 then you can paste it with a right (Windows with my initialization file) or

Modified: pkg/RSienaTest/man/RSiena-package.Rd
===================================================================
--- pkg/RSienaTest/man/RSiena-package.Rd	2011-12-04 17:51:35 UTC (rev 186)
+++ pkg/RSienaTest/man/RSiena-package.Rd	2011-12-06 23:34:05 UTC (rev 187)
@@ -30,8 +30,8 @@
 \tabular{ll}{
 Package: \tab RSiena\cr
 Type: \tab Package\cr
-Version: \tab 1.0.12.186\cr
-Date: \tab 2011-12-04\cr
+Version: \tab 1.0.12.187\cr
+Date: \tab 2011-12-06\cr
 License: \tab GPL-2 \cr
 LazyLoad: \tab yes\cr
 }

Modified: pkg/RSienaTest/src/siena07setup.cpp
===================================================================
--- pkg/RSienaTest/src/siena07setup.cpp	2011-12-04 17:51:35 UTC (rev 186)
+++ pkg/RSienaTest/src/siena07setup.cpp	2011-12-06 23:34:05 UTC (rev 187)
@@ -28,7 +28,7 @@
 #include "model/StatisticCalculator.h"
 #include "data/ActorSet.h"
 #include "model/ml/MLSimulation.h"
-#include "model/variables/Dependentvariable.h"
+#include "model/variables/DependentVariable.h"
 
 using namespace std;
 using namespace siena;



More information about the Rsiena-commits mailing list