Revision: 747
http://rpy.svn.sourceforge.net/rpy/?rev=747&view=rev
Author: lgautier
Date: 2009-08-08 06:57:32 +0000 (Sat, 08 Aug 2009)
Log Message:
-----------
- changed the menus
- minor edits on the pages
Modified Paths:
--------------
trunk/htdocs/Makefile
trunk/htdocs/rpy2.data
trunk/htdocs/template.html
Added Paths:
-----------
trunk/htdocs/index.data
trunk/htdocs/rpy.data
trunk/htdocs/rpy2_bugs.data
trunk/htdocs/rpy2_download.data
Removed Paths:
-------------
trunk/htdocs/index.data
Modified: trunk/htdocs/Makefile
===================================================================
--- trunk/htdocs/Makefile 2009-07-05 11:06:04 UTC (rev 746)
+++ trunk/htdocs/Makefile 2009-08-08 06:57:32 UTC (rev 747)
@@ -3,7 +3,7 @@
SRC = news.data documentation.data download.data \
faq.data index.data todo.data bugs.data maillist.data \
svn.data plotting-with-RPy.data rpy_demo.data contacts.data \
- rpy2.data
+ rpy.data rpy2.data rpy2_download.data rpy2_bugs.data
TARGETS = $(addsuffix .html,$(basename $(SRC)))
Deleted: trunk/htdocs/index.data
===================================================================
--- trunk/htdocs/index.data 2009-07-05 11:06:04 UTC (rev 746)
+++ trunk/htdocs/index.data 2009-08-08 06:57:32 UTC (rev 747)
@@ -1,60 +0,0 @@
-<!-- page-title: RPy home page -->
-<!-- title: About -->
-
-
- <p>
- <strong>RPy</strong> is a very simple, yet robust, <a
href="http://www.python.org/">Python</a> interface to
- the <a href="http://www.r-project.org/">R Programming Language</a>.
It can
- manage all kinds of R objects and can execute arbitrary R functions
- (including the graphic functions). All errors from the R language
- are converted to Python exceptions. Any module installed for the
- R system can be used from within Python.
- </p>
-
- <p>
- This code is inspired by <a
href="http://www.omegahat.org/RSPython">RSPython</a> from
- the <a href="http://www.omegahat.org/">Omegahat project</a>. The main
goals of
- RPy are:
- </p>
-
- <ul>
- <li> to have a <strong>very robust</strong> interface for using
- R <strong>from</strong> Python
- </li>
-
- <li> the interface should be as transparent and easy to use as
- possible
- </li>
-
- <li> it should be usable for real scientific and statistical
- computations
- </li>
- </ul>
-
- <p>
- Tim Churches wrote a <a
href="http://rpy.sourceforge.net/rpy_demo.html">demo</a>,
- which illustrates the use of RPy.
- </p>
-
- <h4>Call for contributions</h4>
-
- <p>
- I appreciate all your feedback. If you have use RPy on a real
- world project or if you have an interesting example or demo,
- please, drop me a line. I'd like to collect some info, in this
- pages, about real examples, to show the Python and R joint
- capabilities. I hope that it will motivate many people in the
- scientific and statistics world to use Python.
- </p>
-
-
- <p>
- A tentative rewrite of RPy is being done, building on some of what
- is existing but also redesigning a significant part. If you have wishes
- to express, or will to participate, the moment is
- <a href="contacts.html">now</a>.
- </p>
-
- </div>
-
-</td>
\ No newline at end of file
Added: trunk/htdocs/index.data
===================================================================
--- trunk/htdocs/index.data (rev 0)
+++ trunk/htdocs/index.data 2009-08-08 06:57:32 UTC (rev 747)
@@ -0,0 +1,20 @@
+<!-- page-title: RPy home page -->
+<!-- title: About -->
+
+
+ <p>
+ <strong>RPy</strong> is a very simple, yet robust, <a
href="http://www.python.org/">Python</a> interface to
+ the <a href="http://www.r-project.org/">R Programming Language</a>.
It can
+ manage all kinds of R objects and can execute arbitrary R functions
+ (including the graphic functions). All errors from the R language
+ are converted to Python exceptions. Any module installed for the
+ R system can be used from within Python.
+ </p>
+
+ <p>Two flavours are available: <a href="rpy.html">rpy</a> and
+<a href="rpy2.html">rpy2</a>.
+ </p>
+
+ </div>
+
+</td>
\ No newline at end of file
Copied: trunk/htdocs/rpy.data (from rev 738, trunk/htdocs/index.data)
===================================================================
--- trunk/htdocs/rpy.data (rev 0)
+++ trunk/htdocs/rpy.data 2009-08-08 06:57:32 UTC (rev 747)
@@ -0,0 +1,60 @@
+<!-- page-title: RPy home page -->
+<!-- title: About -->
+
+
+ <p>
+ <strong>RPy</strong> is a very simple, yet robust, <a
href="http://www.python.org/">Python</a> interface to
+ the <a href="http://www.r-project.org/">R Programming Language</a>.
It can
+ manage all kinds of R objects and can execute arbitrary R functions
+ (including the graphic functions). All errors from the R language
+ are converted to Python exceptions. Any module installed for the
+ R system can be used from within Python.
+ </p>
+
+ <p>
+ This code is inspired by <a
href="http://www.omegahat.org/RSPython">RSPython</a> from
+ the <a href="http://www.omegahat.org/">Omegahat project</a>. The main
goals of
+ RPy are:
+ </p>
+
+ <ul>
+ <li> to have a <strong>very robust</strong> interface for using
+ R <strong>from</strong> Python
+ </li>
+
+ <li> the interface should be as transparent and easy to use as
+ possible
+ </li>
+
+ <li> it should be usable for real scientific and statistical
+ computations
+ </li>
+ </ul>
+
+ <p>
+ Tim Churches wrote a <a
href="http://rpy.sourceforge.net/rpy_demo.html">demo</a>,
+ which illustrates the use of RPy.
+ </p>
+
+ <h4>Call for contributions</h4>
+
+ <p>
+ I appreciate all your feedback. If you have use RPy on a real
+ world project or if you have an interesting example or demo,
+ please, drop me a line. I'd like to collect some info, in this
+ pages, about real examples, to show the Python and R joint
+ capabilities. I hope that it will motivate many people in the
+ scientific and statistics world to use Python.
+ </p>
+
+
+ <p>
+ A tentative rewrite of RPy is being done, building on some of what
+ is existing but also redesigning a significant part. If you have wishes
+ to express, or will to participate, the moment is
+ <a href="contacts.html">now</a>.
+ </p>
+
+ </div>
+
+</td>
\ No newline at end of file
Property changes on: trunk/htdocs/rpy.data
___________________________________________________________________
Added: svn:keywords
+ Author Date Id Revision
Added: svn:mergeinfo
+
Added: svn:eol-style
+ native
Modified: trunk/htdocs/rpy2.data
===================================================================
--- trunk/htdocs/rpy2.data 2009-07-05 11:06:04 UTC (rev 746)
+++ trunk/htdocs/rpy2.data 2009-08-08 06:57:32 UTC (rev 747)
@@ -40,45 +40,7 @@
</div>
-<div class="news-body">
- <h3>
- Download
- </h3>
-<p>
-Source packages (and eventually binary packages) are available at:
-</p>
-<ul>
-<li><a href="http://pypi.python.org/pypi/rpy2/">Pypi</a></li>
-<li>
-<a
href="http://sourceforge.net/project/showfiles.php?group_id=48422&package_id=277454">Sourceforge</a>.
-</li>
-</ul>
-<p>
-<i>rpy2</i> is also packaged for a number of systems (debian/ubuntu, redhat,
mandrake), as well
-as available through <i>easy_install</i>.
-</p>
-
-<p>
-The primary repository the rpy2 source is now on Mercurial, and at bitbucket:
-<a href="http://www.bitbucket.org/lgautier/rpy2/">
-http://www.bitbucket.org/lgautier/rpy2/
-</a>.
-</p>
-
-<p>
-Bug reports can either be made as bug entries on the
-<a
href="http://sourceforge.net/tracker/?group_id=48422&atid=453021">SourceForge
page</a>
-or as issues on the <a
href="http://bitbucket.org/lgautier/rpy2/issues/">bitbucket page</a>.
-</p>
-
-<p>
-For the time being, the source in SVN is <u>no longer up-to-date</u>.
-</p>
-
-<p>
-</div>
-
<div class="news-body">
<h3>
Contact
Added: trunk/htdocs/rpy2_bugs.data
===================================================================
--- trunk/htdocs/rpy2_bugs.data (rev 0)
+++ trunk/htdocs/rpy2_bugs.data 2009-08-08 06:57:32 UTC (rev 747)
@@ -0,0 +1,21 @@
+<!-- page-title: rpy2 -->
+<!-- title: rpy2 -->
+
+<div class="news-body">
+
+<p>
+Bug reports should preferaly be entered as issues
+on the <a href="http://bitbucket.org/lgautier/rpy2/issues/">bitbucket
page</a>.
+</p>
+
+<p>
+Although stable and functional, rpy2 could benefit from improvements
+on the design (particularly for the high-level interface). Wishes
+for changes/improvement can be added to the issues page, with the
+recommendation to also notify the new entry on the mailing-list
+(more people read the list than the issues page).
+</p>
+
+
+
+</div>
Added: trunk/htdocs/rpy2_download.data
===================================================================
--- trunk/htdocs/rpy2_download.data (rev 0)
+++ trunk/htdocs/rpy2_download.data 2009-08-08 06:57:32 UTC (rev 747)
@@ -0,0 +1,69 @@
+<!-- page-title: rpy2 -->
+<!-- title: rpy2 -->
+
+<div class="news-body">
+
+<div class="news-body">
+ <h3>
+ Download
+ </h3>
+
+<h4>Released versions</h4>
+
+<h5>Manual installs</h5>
+
+<p>
+Source and binary packages are available at:
+</p>
+<ul>
+<li><a href="http://pypi.python.org/pypi/rpy2/">Pypi</a></li>
+<li>
+<a
href="http://sourceforge.net/project/showfiles.php?group_id=48422&package_id=277454">Sourceforge</a>.
+</li>
+</ul>
+
+<p>
+The <a href="rpy2/doc/html/overview.html#installation">documentation</a>
+for the released version has further instructions regarding the installation
+process.
+</p>
+
+</ul>
+
+<h5>Less-manual installs</h5>
+
+Fetching and installing the latest release from Pypi
+can be done by running
+<a href="http://peak.telecommunity.com/DevCenter/EasyInstall">easy_install</a>
+<pre>
+easy_install install rpy2
+</pre>
+
+<p>
+<i>rpy2</i> is also packaged for a number of systems
+(Debian/Ubuntu, RedHat/Fedora, openSUSE, Gentoo, Fink).
+</p>
+
+
+<h4>Development versions</h4>
+
+<p>
+The primary repository the rpy2 source is now on Mercurial, and at bitbucket:
+<a href="http://www.bitbucket.org/lgautier/rpy2/">
+http://www.bitbucket.org/lgautier/rpy2/
+</a>.
+</p>
+
+<p>
+The <a href="rpy2/doc-dev/html/overview.html#installation">documentation
+for the development version</a> has further instructions
+regarding the installation process.
+</p>
+
+<p>
+For the time being, the source in Sourceforge's SVN is
+<u>no longer up-to-date</u>.
+</p>
+
+
+</div>
Modified: trunk/htdocs/template.html
===================================================================
--- trunk/htdocs/template.html 2009-07-05 11:06:04 UTC (rev 746)
+++ trunk/htdocs/template.html 2009-08-08 06:57:32 UTC (rev 747)
@@ -12,7 +12,7 @@
<tbody>
<tr>
<td align="center" valign="top" class="left"> <!-- bgcolor="White" -->
- <img src="graphics/rpy_logo.png" alt="RPy" />
+ <a href="index.html"><img src="graphics/rpy_logo.png" alt="RPy" /></a>
</td>
<td>
</td>
@@ -39,21 +39,29 @@
<strong class="title">Sections</strong>
</div>
<ul class="menu">
- <li><a href="index.html">About</a></li>
+ <li><a href="maillist.html">Mail List</a></li>
+ <li><a href="news.html">News</a></li>
+ <li><a href="http://sourceforge.net/projects/rpy">SourceForge</a></li>
+ <li><a href="contacts.html">Contacts</a></li>
+ </ul>
+ <b>rpy</b>
+ <ul class="menu">
+ <li><a href="rpy.html">About</a></li>
<li><a href="bugs.html">Bugs</a></li>
- <li><a href="contacts.html">Contacts</a></li>
- <li><a href="svn.html">SVN</a></li>
+ <li><a href="svn.html">Code repository</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="documentation.html">Documentation</a></li>
<li><a href="rpy_demo.html">Demo</a></li>
<li><a href="faq.html">FAQ</a></li>
- <li><a href="maillist.html">Mail List</a></li>
- <li><a href="news.html">News</a></li>
- <li><a href="rpy2.html">rpy2</a> <font color="RED">NEW!</font></li>
<li><a href="todo.html">To do</a></li>
- <li><a href="http://sourceforge.net/projects/rpy">SourceForge</a></li>
- <li><a href="http://rpy.wiki.sourceforge.net/">Wiki</a> <font
color="RED">NEW!</font></li>
+ <li><a href="http://rpy.wiki.sourceforge.net/">Wiki</a></li>
</ul>
+ <b>rpy2</b>
+ <ul class="menu">
+ <li><a href="rpy2.html">About</a></li>
+ <li><a href="rpy2_bugs.html">Bugs</a></li>
+ <li><a href="rpy2_download.html">Download</a></li>
+ </ul>
</td>
</tr>
<!-- Exits table -->
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus on
what you do best, core application coding. Discover what's new with
Crystal Reports now. http://p.sf.net/sfu/bobj-july
_______________________________________________
rpy-list mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/rpy-list