Revision: 506 http://rpy.svn.sourceforge.net/rpy/?rev=506&view=rev Author: warnes Date: 2008-04-28 12:53:52 -0700 (Mon, 28 Apr 2008)
Log Message: ----------- Update news items from late 2007 to present Modified Paths: -------------- trunk/htdocs/news.data trunk/htdocs/template.html Modified: trunk/htdocs/news.data =================================================================== --- trunk/htdocs/news.data 2008-04-28 10:09:16 UTC (rev 505) +++ trunk/htdocs/news.data 2008-04-28 19:53:52 UTC (rev 506) @@ -1,11 +1,213 @@ -<!-- page-title: RPy home page --> +<!-- page-title: RPy news page --> <!-- title: News --> +<div class="news"> + <div class="news-header"> + <table width="100%" cellpadding="0" cellspacing="0"> + <tr> + <td><b>New RPy Documentation Wiki</b></td> + <td><div class="news-date">2008-04-28</div></td> + </tr> + </table> + </div> + + <div class="news-body"> + + <h3> + New RPy Documentation Wiki + </h3> + <p> + Thanks to hard work by John Reidel, the RPy manual has been converted into a Wiki. + This should make it easer for everyone (especially end users) to contribute to + the documentation. + </p> + + <p> + Take a look at <a href="http://rpy.wiki.sf.net">http://rpy.wiki.sf.net</a>. + </p> + + </div> <!-- news body --> +</div> <!-- news --> + + + <div class="news"> <div class="news-header"> <table width="100%" cellpadding="0" cellspacing="0"> <tr> + <td><b>RPy 1.0.2 now available</b></td> + <td><div class="news-date">2008-04-10</div></td> + </tr> + </table> + </div> + + <div class="news-body"> + + <h3> + RPy 1.0.2 Released + </h3> + + <p> + Hello RPy'ers: + </p> + + <p> + I have just uploaded RPy version 1.0.2 + </p> + + <p> +<pre> +New features: + +- The 'Robj' type is now exported. + +- Add simple neural net example. + +Bug fixes: + +- Stack checking code was incorrectly disabled on all platforms, + corrected so that it is properly included for R 2.3.0 and later + everywhere except Win32. + +- Fixes for compatibility with Python 2.4 and later. + +- Updates to debian install files (Dirk Eddelbuettel) + +- Correct simple line plot example in the documentation + +- Minor internal changes to code and tests + +- Automatic build tool now uses 'tail -n 1' instead of 'tail -1' when + calling 'R RHOME' to make recent versions of tail happy + +- Add startup options to prevent initialization of console + read/write/showfiles which causes problems with R when run without a + controlling console. + +Other changes: + +- Deletion of R's temporary directory now uses R's own internal function + for this task for R versions after 2.4.0. + +</pre> + </p> + + </div> <!-- news body --> +</div> <!-- news --> + + + +<div class="news"> + <div class="news-header"> + <table width="100%" cellpadding="0" cellspacing="0"> + <tr> + <td><b>RPy 1.0.1 now available</b></td> + <td><div class="news-date">2007-11-29</div></td> + </tr> + </table> + </div> + + <div class="news-body"> + + <h3> + RPy 1.0.0 Released + </h3> + + <p> + Hello RPy'ers: + </p> + + <p> + I have just uploaded RPy version 1.0.1. + </p> + + <p> +<pre> +CHANGES IN RPY 1.0.1 - 2007-11-29 +--------------------------------- + +Bug Fixes: + + - Correct silent termination on load on MS-Windows (really this time!) + + - Improve detection of installed R versions during build process + on MS-Windows +</pre> + </p> + + </div> <!-- news body --> +</div> <!-- news --> + + + +<div class="news"> + <div class="news-header"> + <table width="100%" cellpadding="0" cellspacing="0"> + <tr> + <td><b>RPy 1.0.0 now available</b></td> + <td><div class="news-date">2007-11-15</div></td> + </tr> + </table> + </div> + + <div class="news-body"> + + <h3> + RPy 1.0.0 Released + </h3> + + <p> + Hello RPy'ers: + </p> + + <p> + I have just uploaded RPy version 1.0.0 + </p> + + <p> +<pre> +New Features: + + - Complete support for NumPy + + - Add new exception types to provide better information on the + source of the error: + + RPyException: Base exception class for all RPy Exceptions + + RPyTypeConversionException: Error in conversion between R + and Python + + RPyRException Error raised within R + + (RException is set equal to RPyException for backwards + compatibility) + +Bug Fixes: + + - All Numeric and NumPy data types are either properly handled, or + an appropriate exception is generated. + + - Properly handle unicode strings. + + - Fix silent failure to start up on Win32 + +Other: + + - Misc improvments to the test code. +</pre> + </p> + + </div> <!-- news body --> +</div> <!-- news --> + + + +<div class="news"> + <div class="news-header"> + <table width="100%" cellpadding="0" cellspacing="0"> + <tr> <td><b>RPy 1.0 RC 3 now available</b></td> <td><div class="news-date">2007-06-26</div></td> </tr> Modified: trunk/htdocs/template.html =================================================================== --- trunk/htdocs/template.html 2008-04-28 10:09:16 UTC (rev 505) +++ trunk/htdocs/template.html 2008-04-28 19:53:52 UTC (rev 506) @@ -39,7 +39,7 @@ </div> <ul class="menu"> <li><a href="index.html">About</a></li> - <li><a href="http://rpy.wiki.sourceforge.net/">Wiki</a></li> + <li><a href="http://rpy.wiki.sourceforge.net/">Wiki</a> <font color="RED">NEW!</font></li> <li><a href="bugs.html">Bugs</a></li> <li><a href="svn.html">SVN</a></li> <li><a href="download.html">Download</a></li> @@ -115,12 +115,39 @@ <strong>News</strong> </div> <ul class="menu"> + <li><a href="news.html"> + New RPy Documentation Wiki</a><br> + <i>(2008-04-28)</i><br> <br> + </li> + + + <li><a href="news.html"> + RPy 1.0.2 now available</a><br> + <i>(2008-04-10)</i><br> <br> + </li> + + <li><a href="news.html"> + RPy 1.0.1 now available</a><br> + <i>(2007-11-29)</i><br> <br> + </li> + + <li><a href="news.html"> + RPy 1.0.0 now available</a><br> + <i>(2007-11-15)</i><br> <br> + </li> + + <li><a href="news.html"> RPy 1.0 RC 3 now available</a><br> <i>(2007-06-26)</i><br> <br> </li> <li><a href="news.html"> + RPy 1.0 RC 3 now available</a><br> + <i>(2007-06-26)</i><br> <br> + </li> + + <li><a href="news.html"> RPy 0.99.0 now available</a><br> <i>(2006-03-15)</i><br> <br> </li> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ rpy-list mailing list rpy-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/rpy-list