You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@river.apache.org by ge...@apache.org on 2007/01/02 18:13:15 UTC

svn commit: r491855 [1/3] - in /incubator/river/site: ./ bin/ docs/ lib/ xdocs/ xdocs/images/ xdocs/stylesheets/

Author: geirm
Date: Tue Jan  2 09:13:12 2007
New Revision: 491855

URL: http://svn.apache.org/viewvc?view=rev&rev=491855
Log:
first cut at the project website

Added:
    incubator/river/site/README.txt
    incubator/river/site/bin/
    incubator/river/site/build.xml
    incubator/river/site/docs/
    incubator/river/site/docs/contribution_policy.html
    incubator/river/site/docs/contributors.html
    incubator/river/site/docs/documentation.html
    incubator/river/site/docs/downloads.html
    incubator/river/site/docs/get-involved.html
    incubator/river/site/docs/guidelines.html
    incubator/river/site/docs/index.html
    incubator/river/site/docs/license.html
    incubator/river/site/docs/mailing.html
    incubator/river/site/docs/roadmap.html
    incubator/river/site/docs/site.css
    incubator/river/site/docs/svn.html
    incubator/river/site/lib/
    incubator/river/site/lib/commons-collections.jar   (with props)
    incubator/river/site/lib/jdom-b10-rc1.jar   (with props)
    incubator/river/site/lib/logkit-1.0.1.jar   (with props)
    incubator/river/site/lib/oro.jar   (with props)
    incubator/river/site/lib/velocity-1.5-dev.jar   (with props)
    incubator/river/site/velocity.properties
    incubator/river/site/xdocs/
    incubator/river/site/xdocs/contribution_policy.xml
    incubator/river/site/xdocs/contributors.xml
    incubator/river/site/xdocs/documentation.xml
    incubator/river/site/xdocs/downloads.xml
    incubator/river/site/xdocs/get-involved.xml
    incubator/river/site/xdocs/guidelines.xml
    incubator/river/site/xdocs/images/
    incubator/river/site/xdocs/index.xml
    incubator/river/site/xdocs/license.xml
    incubator/river/site/xdocs/mailing.xml
    incubator/river/site/xdocs/roadmap.xml
    incubator/river/site/xdocs/site.css
    incubator/river/site/xdocs/stylesheets/
    incubator/river/site/xdocs/stylesheets/project.xml
    incubator/river/site/xdocs/stylesheets/site.vsl
    incubator/river/site/xdocs/stylesheets/site.xsl
    incubator/river/site/xdocs/stylesheets/site_printable.vsl
    incubator/river/site/xdocs/svn.xml

Added: incubator/river/site/README.txt
URL: http://svn.apache.org/viewvc/incubator/river/site/README.txt?view=auto&rev=491855
==============================================================================
--- incubator/river/site/README.txt (added)
+++ incubator/river/site/README.txt Tue Jan  2 09:13:12 2007
@@ -0,0 +1,38 @@
+Here's how to edit and publish the website.  Note 
+that this assumes you have a working implementation 
+of Java and Ant installed.
+
+
+1) Edit the docs in xdocs/
+
+2) Type "ant" in the root (site/)
+
+3) Look at the changes in the docs/ directory using
+   a web browser.
+
+4) Repeat steps 2-4 until happiness and joy achieved.
+
+5) Commit all changes, both docs/ and xdocs/
+   
+    svn commit
+
+6) ssh to minotaur
+
+7) cd /www/incubator.apache.org/river
+
+8) execute 
+    
+    svn update
+
+   to update the just-committed docs out of SVN
+
+9) Verify that all went as planned by browsing the live 
+    site 
+
+      http://incubator.apache.org/river
+
+    and look for the changes you made.  Note that it may take up
+    to an hour after step (8) is complete before the changes are
+    reflected on the live website.
+
+

Added: incubator/river/site/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/site/build.xml?view=auto&rev=491855
==============================================================================
--- incubator/river/site/build.xml (added)
+++ incubator/river/site/build.xml Tue Jan  2 09:13:12 2007
@@ -0,0 +1,93 @@
+<?xml version="1.0"?>
+
+<project name="Harmony" default="site" basedir=".">
+
+  <property file="${user.home}/.ant.properties" />
+  <property file="${user.home}/build.properties" />
+  <property file=".ant.properties" />
+
+  <property name="ant.home" value="."/>
+  <property name="debug" value="on"/>
+  <property name="optimize" value="on"/>
+  <property name="deprecation" value="off"/>
+
+  <property name="docs.dest" value="docs"/>
+  <property name="docs.src" value="xdocs"/>
+
+  <!-- Build classpath -->
+  <path id="classpath">
+    <fileset dir="./lib">
+      <include name="**/*.jar"/>
+    </fileset>
+  </path>
+
+  <!-- =================================================================== -->
+  <!-- prints the environment                                              -->
+  <!-- =================================================================== -->
+  <target name="env">
+    
+    <echo message="java.home = ${java.home}"/>
+    <echo message="user.home = ${user.home}"/>
+    <echo message="java.class.path = ${java.class.path}"/>
+    <echo message=""/>
+  
+  </target>
+
+  <!-- =================================================================== -->
+  <!-- Make HTML version of Harmony site                        -->
+  <!-- =================================================================== -->
+
+  <target name="site" 
+          description="generates the HTML documentation"
+          >
+      <taskdef name="anakia"
+          classname="org.apache.velocity.anakia.AnakiaTask">
+          
+          <classpath>
+             <path refid="classpath"/>
+          </classpath>
+
+      </taskdef>
+
+      <echo>
+       #######################################################
+       #
+       #  Now using Anakia to transform our XML documentation
+       #  to HTML.
+       #
+       #######################################################
+      </echo>
+
+      <anakia basedir="${docs.src}" destdir="${docs.dest}/"
+           extension=".html" style="./site.vsl"
+           projectFile="stylesheets/project.xml"
+           excludes="**/stylesheets/** empty.xml"
+           includes="**/*.xml"
+           lastModifiedCheck="true"
+           templatePath="xdocs/stylesheets">
+      </anakia>
+
+      <!-- top level images -->
+
+      <copy todir="${docs.dest}/images" filtering="no">
+          <fileset dir="${docs.src}/images">
+              <include name="**/*.gif"/>
+              <include name="**/*.jpeg"/>
+              <include name="**/*.jpg"/>
+              <include name="**/*.png"/>
+          </fileset>
+      </copy>
+
+      <copy todir="${docs.dest}/" filtering="no">
+           <fileset dir="${docs.src}">
+              <include name="**/*.txt"/>
+           </fileset>
+      </copy>
+
+      <copy file="${docs.src}/site.css" todir="${docs.dest}/"/>
+
+  </target>
+    
+</project>
+
+

Added: incubator/river/site/docs/contribution_policy.html
URL: http://svn.apache.org/viewvc/incubator/river/site/docs/contribution_policy.html?view=auto&rev=491855
==============================================================================
--- incubator/river/site/docs/contribution_policy.html (added)
+++ incubator/river/site/docs/contribution_policy.html Tue Jan  2 09:13:12 2007
@@ -0,0 +1,242 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+
+<!-- start the processing -->
+    <!-- ====================================================================== -->
+    <!-- GENERATED FILE, DO NOT EDIT, EDIT THE XML FILE IN xdocs INSTEAD! -->
+    <!-- Main Page Section -->
+    <!-- ====================================================================== -->
+    <html>
+        <head>
+            <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
+
+                                                    <meta name="author" value="Documentation Team">
+            <meta name="email" value="river-dev@incubator.apache.org">
+            
+           
+            
+            
+            
+            
+            
+            <title>Apache River - Apache River Contribution Policy</title>
+
+                        
+                
+        <link rel="stylesheet" type="text/css" href="site.css"/>
+        </head>
+
+        <body>        
+            <table  width="100%" cellspacing="0">
+                <!-- TOP IMAGE -->
+                <tr>
+                    <td align='LEFT'>
+                    <table><tr><td>
+                    <td>
+<a href="http://incubator.apache.org/river"><img  src="./images/harmony-logo-new.png" alt="Apache River (we need a logo)" /></a>
+</td>
+</td>
+                    </td></tr></table>
+                    </td>
+                    <td align='RIGHT'>
+                    <a href="http://incubator.apache.org/river">
+                    <img src="http://harmony.apache.org/images/apache-incubator-logo.png"
+                    	alt="Apache River (we need a logo)" /></a>                    
+                    </td>
+                </tr>
+            </table>
+            <table width="100%" cellspacing="4">
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+
+                <tr>
+                    <!-- LEFT SIDE NAVIGATION -->
+                    <td class="menuItem" width="20%" nowrap="true">
+
+                    <!-- special ACon Logo - leave here for next time
+                    <a href="http://www.us.apachecon.com/">
+                        <img src="http://www.apache.org/ads/ApacheCon/240x120-2006-us.gif"
+                             alt="ApacheCon US 2006" />
+                    </a> -->
+
+                   <!-- regular menu -->
+
+                    
+    <!-- ============================================================ -->
+
+                <p class="menuItem"><strong>General</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./index.html">Home</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./license.html">License</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./contribution_policy.html">Contribution Policy</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./guidelines.html">Project Guidelines</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://www.apache.org/">ASF</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./downloads.html">Downloads</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Community</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./get-involved.html">Get Involved</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./contributors.html">Committers</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./mailing.html">Mailing Lists</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./documentation.html">Documentation</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://wiki.apache.org/river">Wiki</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Development</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./roadmap.html">Road Map / TODO</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./svn.html">Source Code</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://issues.apache.org/jira/browse/RIVER">JIRA</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Subcomponents</strong></p>
+        <ul>
+        
+        </ul>
+                        </td>
+                    <td width="80%" valign="top"><a name="top"></a>
+                                                                    <h1>
+      <a name="Apache River Contribution Policy">Apache River Contribution Policy</a>
+    </h1>
+                        <p>
+Due to the oversight which we wish to provide for the River community, the following 
+process is used for committers, contributors and their contributions.
+</p>
+                                <p>
+In summary : 
+</p>
+                                <ul>
+<li>
+We encourage all <i>contributors</i> (not just committers) to have a Individual Contributor
+License Agreement on file with the ASF.
+</li>
+<li>
+All contributions that are of existing code - code that wasn't developed inside of the project 
+from scratch - should be first submitted as a JIRA, and then brought into the SVN repository.  This 
+applies even if the contributor is an existing committer, to help make it clear where the
+external, re-purposes contributions are coming from.
+</li>
+<li>
+Of course, we follow all existing Apache IP contribution processes.
+</li>
+</ul>
+                                    
+    <h2>
+        <a name="Policy for Committers">Policy for Committers</a>
+    </h2>
+      
+                        <p>
+Each committer is required to complete a standard 
+<a href="http://www.apache.org/licenses/">Apache Individual Contributor License Agreement</a>.
+This document asserts that the contributor is licensing their 
+material to the ASF under the Apache license and is their original work (there's some other details).
+This document is maintained and managed by the Secretary of the Apache Software Foundation.
+</p>
+                                <p>
+We encourage every committer, if appropriate, to have their employer execute a 
+<a href="http://www.apache.org/licenses/">Apache Corporate Contributor License Agreement</a>.
+Note that this is recommended, but not required.
+</p>
+                   
+                <p><a href="#top">Back to top</a></p>
+                    
+                                                            </td>
+                </tr>
+
+                <!-- FOOTER -->
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr><td colspan="2">
+                    <div class="special"><em>
+                    Copyright &#169; 2003-2006, The Apache Software Foundation
+                    </em></div>
+                </td></tr>
+            </table>
+        </body>
+    </html>
+<!-- end the processing -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Added: incubator/river/site/docs/contributors.html
URL: http://svn.apache.org/viewvc/incubator/river/site/docs/contributors.html?view=auto&rev=491855
==============================================================================
--- incubator/river/site/docs/contributors.html (added)
+++ incubator/river/site/docs/contributors.html Tue Jan  2 09:13:12 2007
@@ -0,0 +1,219 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+
+<!-- start the processing -->
+    <!-- ====================================================================== -->
+    <!-- GENERATED FILE, DO NOT EDIT, EDIT THE XML FILE IN xdocs INSTEAD! -->
+    <!-- Main Page Section -->
+    <!-- ====================================================================== -->
+    <html>
+        <head>
+            <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
+
+                                                    <meta name="author" value="Documentation Team">
+            <meta name="email" value="river-dev@incubator.apache.org">
+            
+           
+            
+            
+            
+            
+            
+            <title>Apache River - Apache River Committers</title>
+
+                        
+                
+        <link rel="stylesheet" type="text/css" href="site.css"/>
+        </head>
+
+        <body>        
+            <table  width="100%" cellspacing="0">
+                <!-- TOP IMAGE -->
+                <tr>
+                    <td align='LEFT'>
+                    <table><tr><td>
+                    <td>
+<a href="http://incubator.apache.org/river"><img  src="./images/harmony-logo-new.png" alt="Apache River (we need a logo)" /></a>
+</td>
+</td>
+                    </td></tr></table>
+                    </td>
+                    <td align='RIGHT'>
+                    <a href="http://incubator.apache.org/river">
+                    <img src="http://harmony.apache.org/images/apache-incubator-logo.png"
+                    	alt="Apache River (we need a logo)" /></a>                    
+                    </td>
+                </tr>
+            </table>
+            <table width="100%" cellspacing="4">
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+
+                <tr>
+                    <!-- LEFT SIDE NAVIGATION -->
+                    <td class="menuItem" width="20%" nowrap="true">
+
+                    <!-- special ACon Logo - leave here for next time
+                    <a href="http://www.us.apachecon.com/">
+                        <img src="http://www.apache.org/ads/ApacheCon/240x120-2006-us.gif"
+                             alt="ApacheCon US 2006" />
+                    </a> -->
+
+                   <!-- regular menu -->
+
+                    
+    <!-- ============================================================ -->
+
+                <p class="menuItem"><strong>General</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./index.html">Home</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./license.html">License</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./contribution_policy.html">Contribution Policy</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./guidelines.html">Project Guidelines</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://www.apache.org/">ASF</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./downloads.html">Downloads</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Community</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./get-involved.html">Get Involved</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./contributors.html">Committers</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./mailing.html">Mailing Lists</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./documentation.html">Documentation</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://wiki.apache.org/river">Wiki</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Development</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./roadmap.html">Road Map / TODO</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./svn.html">Source Code</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://issues.apache.org/jira/browse/RIVER">JIRA</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Subcomponents</strong></p>
+        <ul>
+        
+        </ul>
+                        </td>
+                    <td width="80%" valign="top"><a name="top"></a>
+                                                                    <h1>
+      <a name="Apache River Committers">Apache River Committers</a>
+    </h1>
+                        <p>
+    If you would like to contribute to River, please see the
+    <a href="roadmap.html">roadmap</a> list to find areas where you can contribute.
+    If there is nothing in there that suits your interest, but you still have
+    ideas, please feel free to suggest them on
+    <a href="mailing.html">the mailing list</a>.
+</p>
+                                <table>
+                        <tr>
+                        <th class="TableHeading" colspan="" rowspan="">
+                Name
+        </th>
+                                <th class="TableHeading" colspan="" rowspan="">
+                Organization
+        </th>
+            </tr>
+            </table>
+                <p><a href="#top">Back to top</a></p>
+                    
+                                                            </td>
+                </tr>
+
+                <!-- FOOTER -->
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr><td colspan="2">
+                    <div class="special"><em>
+                    Copyright &#169; 2003-2006, The Apache Software Foundation
+                    </em></div>
+                </td></tr>
+            </table>
+        </body>
+    </html>
+<!-- end the processing -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Added: incubator/river/site/docs/documentation.html
URL: http://svn.apache.org/viewvc/incubator/river/site/docs/documentation.html?view=auto&rev=491855
==============================================================================
--- incubator/river/site/docs/documentation.html (added)
+++ incubator/river/site/docs/documentation.html Tue Jan  2 09:13:12 2007
@@ -0,0 +1,205 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+
+<!-- start the processing -->
+    <!-- ====================================================================== -->
+    <!-- GENERATED FILE, DO NOT EDIT, EDIT THE XML FILE IN xdocs INSTEAD! -->
+    <!-- Main Page Section -->
+    <!-- ====================================================================== -->
+    <html>
+        <head>
+            <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
+
+                                                    <meta name="author" value="River Documentation Team">
+            <meta name="email" value="river-dev@incubator.apache.org">
+            
+           
+            
+            
+            
+            
+            
+            <title>Apache River - Apache River</title>
+
+                        
+                
+        <link rel="stylesheet" type="text/css" href="site.css"/>
+        </head>
+
+        <body>        
+            <table  width="100%" cellspacing="0">
+                <!-- TOP IMAGE -->
+                <tr>
+                    <td align='LEFT'>
+                    <table><tr><td>
+                    <td>
+<a href="http://incubator.apache.org/river"><img  src="./images/harmony-logo-new.png" alt="Apache River (we need a logo)" /></a>
+</td>
+</td>
+                    </td></tr></table>
+                    </td>
+                    <td align='RIGHT'>
+                    <a href="http://incubator.apache.org/river">
+                    <img src="http://harmony.apache.org/images/apache-incubator-logo.png"
+                    	alt="Apache River (we need a logo)" /></a>                    
+                    </td>
+                </tr>
+            </table>
+            <table width="100%" cellspacing="4">
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+
+                <tr>
+                    <!-- LEFT SIDE NAVIGATION -->
+                    <td class="menuItem" width="20%" nowrap="true">
+
+                    <!-- special ACon Logo - leave here for next time
+                    <a href="http://www.us.apachecon.com/">
+                        <img src="http://www.apache.org/ads/ApacheCon/240x120-2006-us.gif"
+                             alt="ApacheCon US 2006" />
+                    </a> -->
+
+                   <!-- regular menu -->
+
+                    
+    <!-- ============================================================ -->
+
+                <p class="menuItem"><strong>General</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./index.html">Home</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./license.html">License</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./contribution_policy.html">Contribution Policy</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./guidelines.html">Project Guidelines</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://www.apache.org/">ASF</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./downloads.html">Downloads</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Community</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./get-involved.html">Get Involved</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./contributors.html">Committers</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./mailing.html">Mailing Lists</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./documentation.html">Documentation</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://wiki.apache.org/river">Wiki</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Development</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./roadmap.html">Road Map / TODO</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./svn.html">Source Code</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://issues.apache.org/jira/browse/RIVER">JIRA</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Subcomponents</strong></p>
+        <ul>
+        
+        </ul>
+                        </td>
+                    <td width="80%" valign="top"><a name="top"></a>
+                                                                    <h1>
+      <a name="Welcome to Apache River - Jini Implementation Community">Welcome to Apache River - Jini Implementation Community</a>
+    </h1>
+                        <p>
+    No documentation yet :)
+    </p>
+                <p><a href="#top">Back to top</a></p>
+                    
+                                                            </td>
+                </tr>
+
+                <!-- FOOTER -->
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr><td colspan="2">
+                    <div class="special"><em>
+                    Copyright &#169; 2003-2006, The Apache Software Foundation
+                    </em></div>
+                </td></tr>
+            </table>
+        </body>
+    </html>
+<!-- end the processing -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Added: incubator/river/site/docs/downloads.html
URL: http://svn.apache.org/viewvc/incubator/river/site/docs/downloads.html?view=auto&rev=491855
==============================================================================
--- incubator/river/site/docs/downloads.html (added)
+++ incubator/river/site/docs/downloads.html Tue Jan  2 09:13:12 2007
@@ -0,0 +1,210 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+
+<!-- start the processing -->
+    <!-- ====================================================================== -->
+    <!-- GENERATED FILE, DO NOT EDIT, EDIT THE XML FILE IN xdocs INSTEAD! -->
+    <!-- Main Page Section -->
+    <!-- ====================================================================== -->
+    <html>
+        <head>
+            <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
+
+                                                    <meta name="author" value="Documentation Team">
+            <meta name="email" value="river-dev@incubator.apache.org">
+            
+           
+            
+            
+            
+            
+            
+            <title>Apache River - Apache River</title>
+
+                        
+                
+        <link rel="stylesheet" type="text/css" href="site.css"/>
+        </head>
+
+        <body>        
+            <table  width="100%" cellspacing="0">
+                <!-- TOP IMAGE -->
+                <tr>
+                    <td align='LEFT'>
+                    <table><tr><td>
+                    <td>
+<a href="http://incubator.apache.org/river"><img  src="./images/harmony-logo-new.png" alt="Apache River (we need a logo)" /></a>
+</td>
+</td>
+                    </td></tr></table>
+                    </td>
+                    <td align='RIGHT'>
+                    <a href="http://incubator.apache.org/river">
+                    <img src="http://harmony.apache.org/images/apache-incubator-logo.png"
+                    	alt="Apache River (we need a logo)" /></a>                    
+                    </td>
+                </tr>
+            </table>
+            <table width="100%" cellspacing="4">
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+
+                <tr>
+                    <!-- LEFT SIDE NAVIGATION -->
+                    <td class="menuItem" width="20%" nowrap="true">
+
+                    <!-- special ACon Logo - leave here for next time
+                    <a href="http://www.us.apachecon.com/">
+                        <img src="http://www.apache.org/ads/ApacheCon/240x120-2006-us.gif"
+                             alt="ApacheCon US 2006" />
+                    </a> -->
+
+                   <!-- regular menu -->
+
+                    
+    <!-- ============================================================ -->
+
+                <p class="menuItem"><strong>General</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./index.html">Home</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./license.html">License</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./contribution_policy.html">Contribution Policy</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./guidelines.html">Project Guidelines</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://www.apache.org/">ASF</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./downloads.html">Downloads</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Community</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./get-involved.html">Get Involved</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./contributors.html">Committers</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./mailing.html">Mailing Lists</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./documentation.html">Documentation</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://wiki.apache.org/river">Wiki</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Development</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./roadmap.html">Road Map / TODO</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./svn.html">Source Code</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://issues.apache.org/jira/browse/RIVER">JIRA</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Subcomponents</strong></p>
+        <ul>
+        
+        </ul>
+                        </td>
+                    <td width="80%" valign="top"><a name="top"></a>
+                                                                    <h1>
+      <a name="Project Downloads">Project Downloads</a>
+    </h1>
+                        <p>
+		The project currently has no downloads.
+	</p>
+                                <p>
+		Access to <a href="svn.html">the code repository</a> is available to all, and we have
+		<a href="documentation/documentation.html">instructions</a> for building the 
+		virtual machine code.
+  </p>
+                <p><a href="#top">Back to top</a></p>
+                    
+                                                            </td>
+                </tr>
+
+                <!-- FOOTER -->
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr><td colspan="2">
+                    <div class="special"><em>
+                    Copyright &#169; 2003-2006, The Apache Software Foundation
+                    </em></div>
+                </td></tr>
+            </table>
+        </body>
+    </html>
+<!-- end the processing -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Added: incubator/river/site/docs/get-involved.html
URL: http://svn.apache.org/viewvc/incubator/river/site/docs/get-involved.html?view=auto&rev=491855
==============================================================================
--- incubator/river/site/docs/get-involved.html (added)
+++ incubator/river/site/docs/get-involved.html Tue Jan  2 09:13:12 2007
@@ -0,0 +1,288 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+
+<!-- start the processing -->
+    <!-- ====================================================================== -->
+    <!-- GENERATED FILE, DO NOT EDIT, EDIT THE XML FILE IN xdocs INSTEAD! -->
+    <!-- Main Page Section -->
+    <!-- ====================================================================== -->
+    <html>
+        <head>
+            <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
+
+                                                    <meta name="author" value="Documentation Team">
+            <meta name="email" value="river-dev@incubator.apache.org">
+            
+           
+            
+            
+            
+            
+            
+            <title>Apache River - Get Involved</title>
+
+                        
+                
+        <link rel="stylesheet" type="text/css" href="site.css"/>
+        </head>
+
+        <body>        
+            <table  width="100%" cellspacing="0">
+                <!-- TOP IMAGE -->
+                <tr>
+                    <td align='LEFT'>
+                    <table><tr><td>
+                    <td>
+<a href="http://incubator.apache.org/river"><img  src="./images/harmony-logo-new.png" alt="Apache River (we need a logo)" /></a>
+</td>
+</td>
+                    </td></tr></table>
+                    </td>
+                    <td align='RIGHT'>
+                    <a href="http://incubator.apache.org/river">
+                    <img src="http://harmony.apache.org/images/apache-incubator-logo.png"
+                    	alt="Apache River (we need a logo)" /></a>                    
+                    </td>
+                </tr>
+            </table>
+            <table width="100%" cellspacing="4">
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+
+                <tr>
+                    <!-- LEFT SIDE NAVIGATION -->
+                    <td class="menuItem" width="20%" nowrap="true">
+
+                    <!-- special ACon Logo - leave here for next time
+                    <a href="http://www.us.apachecon.com/">
+                        <img src="http://www.apache.org/ads/ApacheCon/240x120-2006-us.gif"
+                             alt="ApacheCon US 2006" />
+                    </a> -->
+
+                   <!-- regular menu -->
+
+                    
+    <!-- ============================================================ -->
+
+                <p class="menuItem"><strong>General</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./index.html">Home</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./license.html">License</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./contribution_policy.html">Contribution Policy</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./guidelines.html">Project Guidelines</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://www.apache.org/">ASF</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./downloads.html">Downloads</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Community</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./get-involved.html">Get Involved</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./contributors.html">Committers</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./mailing.html">Mailing Lists</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./documentation.html">Documentation</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://wiki.apache.org/river">Wiki</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Development</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./roadmap.html">Road Map / TODO</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./svn.html">Source Code</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://issues.apache.org/jira/browse/RIVER">JIRA</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Subcomponents</strong></p>
+        <ul>
+        
+        </ul>
+                        </td>
+                    <td width="80%" valign="top"><a name="top"></a>
+                                                                    <h1>
+      <a name="How do I contribute, give feedback, fix bugs and so on?">How do I contribute, give feedback, fix bugs and so on?</a>
+    </h1>
+                        <p>
+    The Apache River project really needs and appreciates any contributions,
+    including documentation help, source code and feedback. Suggested
+    changes should come in the form of source code and/or very detailed
+    and constructive feedback.
+</p>
+                                <ul>
+    <li>
+        Discussion occurs on the <a href="mailing.html">river mailing lists</a>
+    </li>
+    <li>
+        Information on access to the project source code is
+        available <a href="svn.html">here</a>.
+    </li>
+    <li>
+       Bugs and other issues can be posted on the project
+       <a href="http://issues.apache.org/jira/browse/RIVER">JIRA</a>
+    </li>
+    <li>
+      Additional documentation and discussion can be found on the project
+     <a href="http://wiki.apache.org/river/">wiki</a>
+   </li>
+</ul>
+                <p><a href="#top">Back to top</a></p>
+                                                <h1>
+      <a name="How to Create and Submit A Patch or Enhancement">How to Create and Submit A Patch or Enhancement</a>
+    </h1>
+                        <a name="create_patch" />
+                                <p>
+  One of the best ways to get involved in the River project is to 
+  create patches or additions and contribute them.  All contributions
+  should be made via a new entry in our project 
+  <a href="http://issues.apache.org/jira/browse/RIVER">JIRA</a>.
+</p>
+                                <p>
+  Here are some basic guidelines and suggestions : 
+  <ul>
+  <li>
+    Once you have completed your changes, please be sure 
+    to test your changes very well. 
+  </li>
+  <li>
+    If you are offering a code addition or change, be sure that 
+    the codebase builds cleanly and the full test suite passes 
+    before submitting.  Patches that break the 
+    build or break the code will be rejected.
+  </li>
+  <li>
+   If you are offering a change to documentation or the website, 
+   please review the generated output and be sure that it is as you expect.
+  </li>
+  <li>
+    If you are offering a fix to a bug, please provide a testcase and 
+    instructions to help us duplicate the bug, and then test that the bug
+    is fixed.  We will add the testcase to our testsuite.
+  </li>
+  <li>
+     When offering something new, please include the entire file
+     that you are contributing.
+  </li>
+  <li>
+     When you are offering a change to something that already exists
+     in the project SVN repository, please submit a patch as outlined below.
+  </li>
+  </ul>
+</p>
+                                <p>
+  Once you are sure you have tested/reviewed your changes, open a 
+  new JIRA entry.  Clearly describe the patch or enhancement, and 
+  provide details, such as how to re-create if a bug, why the 
+  change or enhancement is useful, etc.  Then, attach all materials 
+  to the JIRA entry via "Attach File".  Please be sure to select 
+  "Grant license to ASF for inclusion in ASF works...".  Any patch
+  without this grant will be rejected.
+</p>
+                                <p>
+  Please use the subversion 'diff' utility to create a patch as follows : 
+  
+  <pre>
+    svn diff file.java &gt; file.patch
+  </pre>
+  
+  where 'file' is the filename that you have changed.  This will produce a 
+  nice patch file that can be added to the JIRA, which makes it easy for
+  the project committers to review and possibly accept your patch.
+</p>
+                <p><a href="#top">Back to top</a></p>
+                    
+                                                            </td>
+                </tr>
+
+                <!-- FOOTER -->
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr><td colspan="2">
+                    <div class="special"><em>
+                    Copyright &#169; 2003-2006, The Apache Software Foundation
+                    </em></div>
+                </td></tr>
+            </table>
+        </body>
+    </html>
+<!-- end the processing -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Added: incubator/river/site/docs/guidelines.html
URL: http://svn.apache.org/viewvc/incubator/river/site/docs/guidelines.html?view=auto&rev=491855
==============================================================================
--- incubator/river/site/docs/guidelines.html (added)
+++ incubator/river/site/docs/guidelines.html Tue Jan  2 09:13:12 2007
@@ -0,0 +1,506 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+
+<!-- start the processing -->
+    <!-- ====================================================================== -->
+    <!-- GENERATED FILE, DO NOT EDIT, EDIT THE XML FILE IN xdocs INSTEAD! -->
+    <!-- Main Page Section -->
+    <!-- ====================================================================== -->
+    <html>
+        <head>
+            <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
+
+                                                    <meta name="author" value="Documentation Team">
+            <meta name="email" value="river-dev@incubator.apache.org">
+            
+           
+            
+            
+            
+            
+            
+            <title>Apache River - Project Guidelines</title>
+
+                        
+                
+        <link rel="stylesheet" type="text/css" href="site.css"/>
+        </head>
+
+        <body>        
+            <table  width="100%" cellspacing="0">
+                <!-- TOP IMAGE -->
+                <tr>
+                    <td align='LEFT'>
+                    <table><tr><td>
+                    <td>
+<a href="http://incubator.apache.org/river"><img  src="./images/harmony-logo-new.png" alt="Apache River (we need a logo)" /></a>
+</td>
+</td>
+                    </td></tr></table>
+                    </td>
+                    <td align='RIGHT'>
+                    <a href="http://incubator.apache.org/river">
+                    <img src="http://harmony.apache.org/images/apache-incubator-logo.png"
+                    	alt="Apache River (we need a logo)" /></a>                    
+                    </td>
+                </tr>
+            </table>
+            <table width="100%" cellspacing="4">
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+
+                <tr>
+                    <!-- LEFT SIDE NAVIGATION -->
+                    <td class="menuItem" width="20%" nowrap="true">
+
+                    <!-- special ACon Logo - leave here for next time
+                    <a href="http://www.us.apachecon.com/">
+                        <img src="http://www.apache.org/ads/ApacheCon/240x120-2006-us.gif"
+                             alt="ApacheCon US 2006" />
+                    </a> -->
+
+                   <!-- regular menu -->
+
+                    
+    <!-- ============================================================ -->
+
+                <p class="menuItem"><strong>General</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./index.html">Home</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./license.html">License</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./contribution_policy.html">Contribution Policy</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./guidelines.html">Project Guidelines</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://www.apache.org/">ASF</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./downloads.html">Downloads</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Community</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./get-involved.html">Get Involved</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./contributors.html">Committers</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./mailing.html">Mailing Lists</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./documentation.html">Documentation</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://wiki.apache.org/river">Wiki</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Development</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./roadmap.html">Road Map / TODO</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./svn.html">Source Code</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://issues.apache.org/jira/browse/RIVER">JIRA</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Subcomponents</strong></p>
+        <ul>
+        
+        </ul>
+                        </td>
+                    <td width="80%" valign="top"><a name="top"></a>
+                                                                    <h1>
+      <a name="Project Guidelines">Project Guidelines</a>
+    </h1>
+                        <p>
+This document defines the guidelines for the
+<a href="http://incubator.apache.org/river">Apache River Project</a>.
+It includes definitions of how conflict is resolved by voting,
+who is able to vote, and the procedures to follow for proposing and 
+making changes to the Apache products.
+</p>
+                                <p>
+The objective here is to avoid unnecessary conflict over changes and
+continue to produce a quality system in a timely manner.  Not all conflict
+can be avoided, but at least we can agree on the procedures for conflict
+to be resolved.
+</p>
+                <p><a href="#top">Back to top</a></p>
+                                                <h1>
+      <a name="People, Places, and Things">People, Places, and Things</a>
+    </h1>
+                        <dl>
+  <dt><strong>Apache River Project Management Committee</strong></dt>
+  <dd>The group of volunteers who are responsible for managing the Apache
+      Harmony Project.  This includes deciding what is distributed 
+      as products of the Project, maintaining the 
+      Project's shared resources, speaking on behalf of the Project, 
+      resolving license disputes regarding Apache products, nominating
+      new PMC members or committers, and establishing these guidelines.
+
+      <p>Membership in the Apache PMC is by invitation only and must
+      be approved by consensus of the active Apache PMC members.
+      A PMC member is considered inactive by their own declaration or by 
+      not contributing in any form to the project for over six months.  
+      An inactive member can become active again by reversing whichever
+      condition made them inactive (<em>i.e.</em>, by reversing their 
+      earlier declaration or by once again contributing toward the 
+      project's work).  Membership can be revoked by a unanimous vote of 
+      all the active PMC members other than the member in question.</p>
+
+      <p>
+      Our goal is that every committer willing and interested in the day-to-day
+      oversight and management of the project will be invited at the right time
+      to join the PMC.  Our goal is 100% of the committers on the PMC.
+      </p>
+     
+     <p>
+     <b>Please Note : </b>  While in incubation, the PPMC of the incubating
+       River project will play the role of the official PMC.
+     </p>
+  </dd>
+
+  <dt><strong>Apache River Committers</strong></dt>
+  <dd>The group of volunteers who are responsible for the technical
+      aspects of the Apache River Project.  This group has
+      write access to the appropriate source repositories and these
+      volunteers may cast binding votes on any technical discussion.
+
+      <p>Membership as a Committer is by invitation only and must
+      be approved by consensus of the active Apache PMC members.
+      A Committer is considered inactive by their own declaration or by 
+      not contributing in any form to the project for over six months.  
+      An inactive member can become active again by reversing whichever
+      condition made them inactive (<em>i.e.</em>, by reversing their 
+      earlier declaration or by once again contributing toward the 
+      project's work).  Membership can be revoked by a unanimous vote of 
+      all the active PMC members (except the member in question if they
+      are a PMC member).</p>
+  </dd>
+
+  <dt><strong>Apache River Developers</strong></dt>
+  <dd>All of the volunteers who are contributing time, code, documentation,
+      or resources to the Apache River Project.  A developer that makes sustained,
+      welcome contributions to the project for over six months is usually
+      invited to become a Committer, though the exact timing of such
+      invitations depends on many factors.</dd>
+
+  <dt><strong>river-dev@incubator.apache.org</strong></dt>
+  <dd>The Apache developers' primary mailing list for discussion of issues
+      and changes related to the project (<em>river-dev@incubator.apache.org</em>).
+      Subscription to the list is open, but only subscribers
+      can post directly to the list.
+  </dd>
+
+  <dt><strong>river-rivate@incuabtor.apache.org</strong></dt>
+  <dd>The Apache River PMC's private mailing list for discussion of issues
+      that are inappropriate for public discussion, such as legal, personal,
+      or security issues prior to a published fix.  Subscription to the list
+      is only open to Apache River PMC  members.
+  </dd>
+
+  <dt><strong>river-commits@incubator.apache.org</strong></dt>
+  <dd>All of the Apache projects are maintained in shared information
+      repositories using SVN.
+      Only some of the Apache developers (the committers) have
+      write access to these repositories; everyone has read access via
+      <a href="anoncvs">anonymous SVN</a>. 
+  </dd>
+</dl>
+                <p><a href="#top">Back to top</a></p>
+                                                <h1>
+      <a name="Voting">Voting</a>
+    </h1>
+                        <p>Any of the Apache Developers may vote on any issue or action item.
+However, the only binding votes are those cast by active members of the
+Apache River PMC; if the vote is about a change to source code or 
+documentation, the primary author of what is being changed may also 
+cast a binding vote on that issue.  All other votes are non-binding.
+All developers are encouraged to participate in decisions, but the 
+decision itself is made by those who have been long-time contributors 
+to the project.  In other words, the Apache Harmony Project is a 
+minimum-threshold meritocracy.</p>
+                                <p>The act of voting carries certain obligations -- voting members are 
+not only stating their opinion, they are agreeing to help do the work of 
+the Apache Harmony Project.  Since we are all volunteers, members often become 
+inactive for periods of time in order to take care of their "real jobs" 
+or devote more time to other projects. It is therefore unlikely that the 
+entire group membership will vote on every issue.  To account for this, 
+all voting decisions are based on a minimum quorum.</p>
+                                <p>Each vote can be made in one of three flavors:</p>
+                                <dl>
+  <dt><strong>+1</strong></dt>
+  <dd>Yes, agree, or the action should be performed.  On some issues, this
+      vote is only binding if the voter has tested the action on
+      their own system(s).
+  </dd>
+  <dt><strong>0</strong></dt>
+  <dd>Abstain, no opinion, or I am happy to let the other group members
+      decide this issue.  An abstention may have detrimental effects if
+      too many people abstain.
+  </dd>
+  <dt><strong>-1</strong></dt>
+  <dd>No. On issues where consensus is required, this vote counts as a
+      <strong>veto</strong>.  All vetos must include an explanation of
+      why the veto is appropriate.  A veto with no explanation is void.
+      No veto can be overruled. If you disagree with the veto, you
+      should lobby the person who cast the veto. Voters intending to veto
+      an action item should make their opinions known to the group immediately,
+      so that the problem can be remedied as early as possible.
+  </dd>
+</dl>
+                                <p>An action item requiring <em>consensus approval</em> must receive
+at least <strong>3 binding +1</strong> votes and <strong>no vetos</strong>.
+An action item requiring <em>majority approval</em> must receive
+at least <strong>3 binding +1</strong> votes and more <strong>+1</strong>
+votes than <strong>-1</strong> votes (<em>i.e.</em>, a majority with a minimum
+quorum of three positive votes).  All other action items are considered
+to have <em>lazy approval</em> until someone votes <strong>-1</strong>,
+after which point they are decided by either consensus or a majority vote,
+depending upon the type of action item.</p>
+                                <p>Votes are tallied within the STATUS file, adjacent to the action
+item under vote. All votes must be sent to the mailing list.</p>
+                <p><a href="#top">Back to top</a></p>
+                                                <h1>
+      <a name="Types of Action Items">Types of Action Items</a>
+    </h1>
+                        <dl>
+  <dt><strong>Long Term Plans</strong></dt>
+  <dd>Long term plans are simply announcements that group members
+      are working on particular issues related to the Apache software.
+      These are not voted on,
+      but group members who do not agree with a particular plan,
+      or think an alternate plan would be better, are obligated to
+      inform the group of their feelings.  In general, it is always
+      better to hear about alternate plans <strong>prior</strong> to
+      spending time on less adequate solutions.
+  </dd>
+
+  <dt><strong>Short Term Plans</strong></dt>
+  <dd>Short term plans are announcements that a developer is working on
+      a particular set of documentation or code files, with the implication
+      that other developers should avoid them or try to coordinate their
+      changes.  This is a good way to proactively avoid conflict and 
+      possible duplication of work.
+  </dd>
+
+  <dt><strong>Release Plan</strong></dt>
+  <dd>A release plan is used to keep all the developers aware of when a
+      release is desired, who will be the release manager, when the
+      repository will be frozen in order to create the release, and 
+      assorted other trivia to keep us from tripping over ourselves
+      during the final moments.  Lazy majority decides each issue in
+      the release plan.
+  </dd>
+
+  <dt><strong>Release Testing</strong></dt>
+  <dd>After a new release is built, colloquially termed a tarball, it
+      must be tested before being released to the public.  Majority
+      approval is required before the tarball can be publically released.
+  </dd>
+
+  <dt><strong>Showstoppers</strong></dt>
+  <dd>Showstoppers are issues that require a fix be in place
+      before the next public release.  They are listed in the STATUS file
+      in order to focus special attention on the problem.  An issue becomes
+      a showstopper when it is listed as such in STATUS and remains
+      so by lazy consensus.
+  </dd>
+
+  <dt><strong>Product Changes</strong></dt>
+  <dd>Changes to the Apache products, including code and documentation,
+      will appear as action items under several categories corresponding
+      to the change status:
+      <dl>
+      <dt><strong>concept/plan</strong></dt>
+      <dd>An idea or plan for a change.  These are usually only listed in
+          STATUS when the change is substantial, significantly impacts the
+          API, or is likely to be controversial.  Votes are being requested
+          early so as to uncover conflicts before too much work is done.
+      </dd>
+      <dt><strong>proposed patch</strong></dt>
+      <dd>A specific set of changes to the current product in the form
+          of <a href="#patch">input to the patch command</a> (a diff output).
+      </dd>
+      <dt><strong>committed change</strong></dt>
+      <dd>A one-line summary of a change that has been committed to the
+          repository since the last public release.
+      </dd>
+      </dl>
+      <p>All product changes to the currently active repository are subject
+      to lazy consensus.  All product changes to a prior-branch (old version)
+      repository require consensus before the change is committed.</p>
+  </dd>
+</dl>
+                <p><a href="#top">Back to top</a></p>
+                                                <h1>
+      <a name="When to Commit a Change">When to Commit a Change</a>
+    </h1>
+                        <p>
+  Ideas must be review-then-commit; patches can be commit-then-review.
+  With a commit-then-review process, we trust that the developer doing the
+  commit has a high degree of confidence in the change. Doubtful changes,
+  new features, and large-scale overhauls need to be discussed before
+  being committed to a repository. Any major change
+  must receive consensus approval on the mailing list before being committed.
+  For detailed instructions on reporting, resolving and closing issues, refer to
+  <a href="issue_resolution_guideline.html">
+    Good Issue Resolution Guideline</a>. 
+</p>
+                                <p>Each developer is responsible for notifying the mailing list and 
+adding an action item to STATUS when they have an idea for a new feature 
+or major change to propose for the product.  The distributed nature of the
+Apache project requires an advance notice of 48 hours in order to properly
+review a major change -- consensus approval of either the concept or a
+specific patch is required before the change can be committed.  Note that
+a committer might veto the concept (with an adequate explanation), but later
+rescind that veto if a specific patch satisfies their objections.
+No advance notice is required to commit singular bug fixes.</p>
+                                <p>Related changes should be committed as a group, or very closely 
+together.  Half-completed projects should not be committed unless 
+doing so is necessary to pass the baton to another developer who has 
+agreed to complete the project in short order.  All code changes must 
+be successfully compiled on the developer's platform before being 
+committed.</p>
+                                <p>The current source code tree should be capable of complete compilation
+at all times.  However, it is sometimes impossible for a developer on
+one platform to avoid breaking some other platform when a change is
+committed, particularly when completing the change requires access to
+a special development tool on that other platform.  If it is anticipated
+that a given change will break some other platform, the committer must
+indicate that in the commit log.</p>
+                                <p>The committer is responsible to follow the Apache River procedure
+for any third-party code
+or documentation they commit to the repository.  All software committed
+to the repository must be covered by the Apache LICENSE or contain a
+copyright and license that allows redistribution under the same conditions
+as the Apache LICENSE.</p>
+                                <p>A committed change must be reversed if it is vetoed by one of the 
+voting committers and the veto conditions cannot be immediately satisfied by 
+the equivalent of a "bug fix" commit.  The veto must be rescinded before 
+the change can be included in any public release.</p>
+                <p><a href="#top">Back to top</a></p>
+                                                <h1>
+      <a name="Patch Format">Patch Format</a>
+    </h1>
+                        <p>When a specific change to the software is proposed for discussion or
+voting on the mailing list, it should be presented in the form of input 
+to the patch command.  When sent to the mailing list, the message 
+should contain a Subject beginning with <code>[PATCH]</code> and a 
+distinctive one-line summary corresponding to the action item for that 
+patch.  Afterwards, the patch summary in the STATUS file should be 
+updated to point to the Message-ID of that message.</p>
+                                <p>The patch should be created by using the <CODE>diff -u</CODE> 
+command from the original software file(s) to the modified software 
+file(s).  E.g.,</p>
+                                <pre>    diff -u http_main.c.orig http_main.c &gt;&gt; patchfile.txt</pre>
+                                <p>or</p>
+                                <pre>    cvs diff -u http_main.c &gt;&gt; patchfile.txt</pre>
+                                <p>All patches necessary to address an action item should be concatenated
+within a single patch message.  If later modification of the patch
+proves necessary, the entire new patch should be posted and not just
+the difference between two patches.  The STATUS file entry should then
+be updated to point to the new patch message.</p>
+                                <p>The completed patchfile should produce no errors or prompts when the
+command,</p>
+                                <pre>    patch -s &lt; patchfile</pre>
+                                <p>is issued in the target repository.</p>
+                <p><a href="#top">Back to top</a></p>
+                                                <h1>
+      <a name="Addendum">Addendum</a>
+    </h1>
+                        <p>Outstanding issues with this document</p>
+                                <ul>
+    <li>We may need a better definition for "lazy consensus".</li>
+    <li>We should clarify under what conditions a veto can be rescinded 
+        or overridden.</li>
+    <li>Should we set a time limit on vetos of patches?  Two weeks?</li>
+</ul>
+                <p><a href="#top">Back to top</a></p>
+                    
+                                                            </td>
+                </tr>
+
+                <!-- FOOTER -->
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr><td colspan="2">
+                    <div class="special"><em>
+                    Copyright &#169; 2003-2006, The Apache Software Foundation
+                    </em></div>
+                </td></tr>
+            </table>
+        </body>
+    </html>
+<!-- end the processing -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Added: incubator/river/site/docs/index.html
URL: http://svn.apache.org/viewvc/incubator/river/site/docs/index.html?view=auto&rev=491855
==============================================================================
--- incubator/river/site/docs/index.html (added)
+++ incubator/river/site/docs/index.html Tue Jan  2 09:13:12 2007
@@ -0,0 +1,226 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+
+<!-- start the processing -->
+    <!-- ====================================================================== -->
+    <!-- GENERATED FILE, DO NOT EDIT, EDIT THE XML FILE IN xdocs INSTEAD! -->
+    <!-- Main Page Section -->
+    <!-- ====================================================================== -->
+    <html>
+        <head>
+            <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
+
+                                                    <meta name="author" value="River Documentation Team">
+            <meta name="email" value="river-dev@incubator.apache.org">
+            
+           
+            
+            
+            
+            
+            
+            <title>Apache River - Apache River</title>
+
+                        
+                
+        <link rel="stylesheet" type="text/css" href="site.css"/>
+        </head>
+
+        <body>        
+            <table  width="100%" cellspacing="0">
+                <!-- TOP IMAGE -->
+                <tr>
+                    <td align='LEFT'>
+                    <table><tr><td>
+                    <td>
+<a href="http://incubator.apache.org/river"><img  src="./images/harmony-logo-new.png" alt="Apache River (we need a logo)" /></a>
+</td>
+</td>
+                    </td></tr></table>
+                    </td>
+                    <td align='RIGHT'>
+                    <a href="http://incubator.apache.org/river">
+                    <img src="http://harmony.apache.org/images/apache-incubator-logo.png"
+                    	alt="Apache River (we need a logo)" /></a>                    
+                    </td>
+                </tr>
+            </table>
+            <table width="100%" cellspacing="4">
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+
+                <tr>
+                    <!-- LEFT SIDE NAVIGATION -->
+                    <td class="menuItem" width="20%" nowrap="true">
+
+                    <!-- special ACon Logo - leave here for next time
+                    <a href="http://www.us.apachecon.com/">
+                        <img src="http://www.apache.org/ads/ApacheCon/240x120-2006-us.gif"
+                             alt="ApacheCon US 2006" />
+                    </a> -->
+
+                   <!-- regular menu -->
+
+                    
+    <!-- ============================================================ -->
+
+                <p class="menuItem"><strong>General</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./index.html">Home</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./license.html">License</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./contribution_policy.html">Contribution Policy</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./guidelines.html">Project Guidelines</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://www.apache.org/">ASF</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./downloads.html">Downloads</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Community</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./get-involved.html">Get Involved</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./contributors.html">Committers</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./mailing.html">Mailing Lists</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./documentation.html">Documentation</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://wiki.apache.org/river">Wiki</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Development</strong></p>
+        <ul>
+                    <li class="menuItem">    <a href="./roadmap.html">Road Map / TODO</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="./svn.html">Source Code</a>
+</li>
+           
+                        
+                    <li class="menuItem">    <a href="http://issues.apache.org/jira/browse/RIVER">JIRA</a>
+</li>
+           
+                        
+        
+        </ul>
+            <p class="menuItem"><strong>Subcomponents</strong></p>
+        <ul>
+        
+        </ul>
+                        </td>
+                    <td width="80%" valign="top"><a name="top"></a>
+                                                                    <h1>
+      <a name="Welcome to Apache River - Jini Implementation Community">Welcome to Apache River - Jini Implementation Community</a>
+    </h1>
+                        <p>
+      <big>Welcome to Apache River - Jini Implementation Community</big>
+    </p>
+                                <p>
+        Apache River is a new podling, just getting started.  More to come!
+    </p>
+                <p><a href="#top">Back to top</a></p>
+                                                <h1>
+      <a name="Project Status">Project Status</a>
+    </h1>
+                        <p>
+        How are we doing?  We're just getting started... 
+    </p>
+                <p><a href="#top">Back to top</a></p>
+                                                <h1>
+      <a name="River News">River News</a>
+    </h1>
+                        <p>
+            <strong>River Podling Status approved by Apache Incubator</strong>
+            <blockquote>
+                Apache River has been approved as an incubator podling.  Please join!
+                (<i>2006-12-26</i>)
+            </blockquote>
+        </p>
+                <p><a href="#top">Back to top</a></p>
+                    
+                                                            </td>
+                </tr>
+
+                <!-- FOOTER -->
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr><td colspan="2">
+                    <div class="special"><em>
+                    Copyright &#169; 2003-2006, The Apache Software Foundation
+                    </em></div>
+                </td></tr>
+            </table>
+        </body>
+    </html>
+<!-- end the processing -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+