Revision: 612
          http://rpy.svn.sourceforge.net/rpy/?rev=612&view=rev
Author:   lgautier
Date:     2008-08-03 14:30:53 +0000 (Sun, 03 Aug 2008)

Log Message:
-----------
website:

- added entry for rpy2-2.0.0a2
- minor work on the layout

Modified Paths:
--------------
    trunk/htdocs/graphics/rpy_logo.png
    trunk/htdocs/index.data
    trunk/htdocs/news.data
    trunk/htdocs/style.css
    trunk/htdocs/template.html

Added Paths:
-----------
    trunk/htdocs/graphics/rpy_button_16.png


Property changes on: trunk/htdocs/graphics/rpy_button_16.png
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Modified: trunk/htdocs/index.data
===================================================================
--- trunk/htdocs/index.data     2008-08-03 09:44:14 UTC (rev 611)
+++ trunk/htdocs/index.data     2008-08-03 14:30:53 UTC (rev 612)
@@ -54,13 +54,7 @@
     to express, or will to participate, the moment is 
     <a href="contacts.html">now</a>.
   </p>
-  <hr>
 
-  <a href="contacts.html"><h4>Contacts</h4></a>
-
   </div>
-  <div id="revision">
-    Last revision: $Date$
-  </div>
     
 </td>
\ No newline at end of file

Modified: trunk/htdocs/news.data
===================================================================
--- trunk/htdocs/news.data      2008-08-03 09:44:14 UTC (rev 611)
+++ trunk/htdocs/news.data      2008-08-03 14:30:53 UTC (rev 612)
@@ -2,14 +2,46 @@
 <!-- title: News -->
 
 <div class="news">
+  <a name="2008-08-03">
   <div class="news-header">
     <table width="100%" cellpadding="0" cellspacing="0">
       <tr>
+       <td><b>RPy 2.0.0alpha2</b></td>
+       <td><div class="news-date">2008-08-03</div></td>
+      </tr>
+    </table>
+  </div>
+  </a>
+
+  <div class="news-body">
+    <h3>
+       Rpy - 2.0.0a2
+    </h3>
+      <p>
+      The third alpha release for <i>rpy2</i> is out. The source
+      package, and pre-built binaries for win32 are available on
+      the sourceforge page.
+      </p>
+
+      <p>
+      The online documentation is <a href="rpy2/doc/html">here</a>.
+      </p>
+
+  </div> <!-- news body -->
+</div> <!-- news -->
+
+
+<div class="news">
+  <a name="2008-07-06">
+  <div class="news-header">
+    <table width="100%" cellpadding="0" cellspacing="0">
+      <tr>
        <td><b>RPy 2.0.0alpha1</b></td>
        <td><div class="news-date">2008-07-06</div></td>
       </tr>
     </table>
   </div>
+  </a>
   
   <div class="news-body">
     <h3>
@@ -28,6 +60,7 @@
 </div> <!-- news -->
 
 <div class="news">
+  <a name="2008-04-28">
   <div class="news-header">
     <table width="100%" cellpadding="0" cellspacing="0">
       <tr>
@@ -36,6 +69,7 @@
       </tr>
     </table>
   </div>
+  </a>
   
   <div class="news-body">
     
@@ -59,6 +93,7 @@
 
 
 <div class="news">
+  <a name="2008-04-10">
   <div class="news-header">
     <table width="100%" cellpadding="0" cellspacing="0">
       <tr>
@@ -67,6 +102,7 @@
       </tr>
     </table>
   </div>
+  </a>
   
   <div class="news-body">
     
@@ -125,6 +161,7 @@
 
 
 <div class="news">
+  <a name="2007-11-29">
   <div class="news-header">
     <table width="100%" cellpadding="0" cellspacing="0">
       <tr>
@@ -133,7 +170,8 @@
       </tr>
     </table>
   </div>
-  
+  </a>
+
   <div class="news-body">
     
     <h3>
@@ -168,6 +206,7 @@
 
 
 <div class="news">
+  <a name="2007-11-15">
   <div class="news-header">
     <table width="100%" cellpadding="0" cellspacing="0">
       <tr>
@@ -176,7 +215,8 @@
       </tr>
     </table>
   </div>
-  
+  </a>
+
   <div class="news-body">
     
     <h3>

Modified: trunk/htdocs/style.css
===================================================================
--- trunk/htdocs/style.css      2008-08-03 09:44:14 UTC (rev 611)
+++ trunk/htdocs/style.css      2008-08-03 14:30:53 UTC (rev 612)
@@ -1,7 +1,8 @@
 body
 {
     /*background="RPy%20home%20page_files/background.gif";*/
-    background-color: #ffffff;
+    /*background-color: #ffffff; */
+    background-color: #f7f9fb;
     margin-top: 0px;
     /* padding-top: 0px; */
 }
@@ -64,15 +65,23 @@
 
 .header
 {
-  border: solid 1px #1c3198;
+  border-bottom: solid 1px #1c3198;
   text-align: left;
-  background-color: #e1e5e9;
-  background-image: url(graphics/blend_blue.png);
-  background-repeat: repeat-y;
+  /*background-color: #e1e5e9;*/
+  background-image: url(graphics/rpy_button_16.png);
+  background-repeat: no-repeat;
   background-position: top left;
+  height: 35px;
   padding-left: 40px;
+  position: relative;
 }
 
+.header .title
+{
+  position: absolute;
+  bottom: 8px;
+}
+
 ul.menu
 {
   list-style-type: none;
@@ -136,4 +145,9 @@
   background-color: #ededf0;
   padding: 1em;
   border: solid 1px #909090;
+}
+
+td.page_head_center
+{
+
 }
\ No newline at end of file

Modified: trunk/htdocs/template.html
===================================================================
--- trunk/htdocs/template.html  2008-08-03 09:44:14 UTC (rev 611)
+++ trunk/htdocs/template.html  2008-08-03 14:30:53 UTC (rev 612)
@@ -11,13 +11,13 @@
     <tbody>
     <tr>
       <td align="center" valign="top" class="left"> <!-- bgcolor="White" -->
-        <img src="graphics/rpy_logo.png" alt="RPy">
+        <img src="graphics/rpy_logo.png" alt="RPy" />
       </td>
       <td>
       </td>
-      <td>
-  <p> A simple and efficient access to R from Python 
-  </p>
+      <td class="page_head_center">
+  <h3> A simple and efficient access to R from Python 
+  </h3>
       </td>
     </tr>
     </tbody>
@@ -35,11 +35,12 @@
   <tr>
   <td>
   <div class="header">
-    <strong>Sections</strong>
+    <strong class="title">Sections</strong>
   </div>
   <ul class="menu">
     <li><a href="index.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="download.html">Download</a></li>
     <li><a href="documentation.html">Documentation</a></li>
@@ -59,7 +60,7 @@
   <tr>
   <td>
   <div class="header">
-    <strong>Exits</strong>
+    <strong class="title">Exits</strong>
   </div>
   <ul class="menu">
     <li><a href="http://www.python.org/";>Python</a></li>
@@ -76,7 +77,7 @@
   <tr>
   <td>
   <div class="header">
-    <strong>Acknowledgement&nbsp;</strong>
+    <strong class="title">Acknowledgement&nbsp;</strong>
   </div>
   This site is hosted by<br/>
   <center>
@@ -116,32 +117,37 @@
   <tr>
   <td>
     <div class="header">
-    <strong>News</strong>
+    <strong class="title">News</strong>
     </div>
   <ul class="menu">
 
-  <li><a href="news.html">
+  <li><a href="news.html#2008-08-03">
+  Release 2.0.0alpha2 for rpy2</a><br>
+                 <i>(2008-08-03)</i><br> <br>
+  </li>
+
+  <li><a href="news.html#2008-07-06">
   Release 2.0.0alpha1 for rpy2</a><br>
                  <i>(2008-07-06)</i><br> <br>
   </li>
 
-  <li><a href="news.html">
+  <li><a href="news.html#2008-04-28">
   New RPy Documentation Wiki</a><br>
                  <i>(2008-04-28)</i><br> <br>
   </li>
 
 
-  <li><a href="news.html">
+  <li><a href="news.html#2008-04-10">
   RPy 1.0.2 now available</a><br>
                  <i>(2008-04-10)</i><br> <br>
   </li>
 
-  <li><a href="news.html">
+  <li><a href="news.html#2007-11-29">
   RPy 1.0.1 now available</a><br>
                  <i>(2007-11-29)</i><br> <br>
   </li>
 
-  <li><a href="news.html">
+  <li><a href="news.html#2007-11-15">
   RPy 1.0.0 now available</a><br>
                  <i>(2007-11-15)</i><br> <br>
   </li>
@@ -161,29 +167,9 @@
                  <i>(2006-03-15)</i><br> <br>
   </li>
   <li><a href="news.html">
-  RPy now using Subversion</a><br>
-                 <i>(2006-02-28)</i><br> <br>
+      <i>Older news</i>
+    </a>
   </li>
-  <li><a href="news.html">
-  RPy 0.4.6 now available</a><br>
-                 <i>(2005-07-28)</i><br> <br>
-  </li>
-  <li><a href="news.html">
-  RPy 0.4.5 now available</a><br>
-                 <i>(2005-07-25)</i><br> <br>
-  </li>
-  <li><a href="news.html">
-  RPy 0.4.4 now available</a><br>
-                 <i>(2005-07-23)</i><br> <br>
-  </li>
-  <li><a href="news.html">
-  RPy 0.4.3 now available</a><br>
-                 <i>(July 20, 2005)</i><br> <br>
-  </li>
-  <li><a href="news.html">
-  RPy 0.4.2 now available</a><br>
-                 <i>(May 23, 2004)</i><br> <br>
-  </li>
   </td>
   </tr>
   </tbody>


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 Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
rpy-list mailing list
rpy-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rpy-list

Reply via email to