You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ge...@apache.org on 2005/06/13 20:53:49 UTC

svn commit: r190482 [1/4] - in /incubator/harmony: enhanced/ standard/ standard/site/ standard/site/docs/ standard/site/docs/images/ standard/site/lib/ standard/site/xdocs/ standard/site/xdocs/images/ standard/site/xdocs/stylesheets/

Author: geirm
Date: Mon Jun 13 11:53:48 2005
New Revision: 190482

URL: http://svn.apache.org/viewcvs?rev=190482&view=rev
Log:
standard branch of the harmony cvs - normal ICLA w/ no other 
requirements can commit here.  Nothing here can be assumed
to be "untainted", but we don't care for the site
and mini test projects

Added:
    incubator/harmony/enhanced/
    incubator/harmony/standard/
    incubator/harmony/standard/README.std
    incubator/harmony/standard/site/
    incubator/harmony/standard/site/build.xml
    incubator/harmony/standard/site/docs/
    incubator/harmony/standard/site/docs/contributors.html
    incubator/harmony/standard/site/docs/dependencies.html
    incubator/harmony/standard/site/docs/documentation.html
    incubator/harmony/standard/site/docs/downloads.html
    incubator/harmony/standard/site/docs/faq.html
    incubator/harmony/standard/site/docs/get-involved.html
    incubator/harmony/standard/site/docs/images/
    incubator/harmony/standard/site/docs/images/apache-incubator-logo.png   (with props)
    incubator/harmony/standard/site/docs/images/asf_logo.jpg   (with props)
    incubator/harmony/standard/site/docs/images/geronimo-logo.png   (with props)
    incubator/harmony/standard/site/docs/index.html
    incubator/harmony/standard/site/docs/license.html
    incubator/harmony/standard/site/docs/mailing.html
    incubator/harmony/standard/site/docs/newshistory.html
    incubator/harmony/standard/site/docs/related.html
    incubator/harmony/standard/site/docs/roadmap.html
    incubator/harmony/standard/site/docs/svn.html
    incubator/harmony/standard/site/harmony-site.iml
    incubator/harmony/standard/site/harmony-site.ipr
    incubator/harmony/standard/site/harmony-site.iws
    incubator/harmony/standard/site/lib/
    incubator/harmony/standard/site/lib/commons-collections.jar   (with props)
    incubator/harmony/standard/site/lib/jdom-b10-rc1.jar   (with props)
    incubator/harmony/standard/site/lib/logkit-1.0.1.jar   (with props)
    incubator/harmony/standard/site/lib/oro.jar   (with props)
    incubator/harmony/standard/site/lib/velocity-1.5-dev.jar   (with props)
    incubator/harmony/standard/site/velocity.log
    incubator/harmony/standard/site/xdocs/
    incubator/harmony/standard/site/xdocs/contributors.xml
    incubator/harmony/standard/site/xdocs/documentation.xml
    incubator/harmony/standard/site/xdocs/downloads.xml
    incubator/harmony/standard/site/xdocs/faq.xml
    incubator/harmony/standard/site/xdocs/get-involved.xml
    incubator/harmony/standard/site/xdocs/images/
    incubator/harmony/standard/site/xdocs/images/apache-incubator-logo.png   (with props)
    incubator/harmony/standard/site/xdocs/images/asf_logo.jpg   (with props)
    incubator/harmony/standard/site/xdocs/images/geronimo-logo.png   (with props)
    incubator/harmony/standard/site/xdocs/index.xml
    incubator/harmony/standard/site/xdocs/license.xml
    incubator/harmony/standard/site/xdocs/mailing.xml
    incubator/harmony/standard/site/xdocs/newshistory.xml
    incubator/harmony/standard/site/xdocs/related.xml
    incubator/harmony/standard/site/xdocs/roadmap.xml
    incubator/harmony/standard/site/xdocs/stylesheets/
    incubator/harmony/standard/site/xdocs/stylesheets/project.xml
    incubator/harmony/standard/site/xdocs/stylesheets/site.vsl
    incubator/harmony/standard/site/xdocs/stylesheets/site.xsl
    incubator/harmony/standard/site/xdocs/stylesheets/site_printable.vsl
    incubator/harmony/standard/site/xdocs/svn.xml

Added: incubator/harmony/standard/README.std
URL: http://svn.apache.org/viewcvs/incubator/harmony/standard/README.std?rev=190482&view=auto
==============================================================================
--- incubator/harmony/standard/README.std (added)
+++ incubator/harmony/standard/README.std Mon Jun 13 11:53:48 2005
@@ -0,0 +1,7 @@
+This is the portion of the Apache Harmony repository 
+that has "standard" ASF committer rules, namely 
+signing an ICLA is all that is required for committers,
+and any 'significant' code contribution has entered
+through the standard incubator process.
+
+No futher control, tracking or vetting has been performed.

Added: incubator/harmony/standard/site/build.xml
URL: http://svn.apache.org/viewcvs/incubator/harmony/standard/site/build.xml?rev=190482&view=auto
==============================================================================
--- incubator/harmony/standard/site/build.xml (added)
+++ incubator/harmony/standard/site/build.xml Mon Jun 13 11:53:48 2005
@@ -0,0 +1,89 @@
+<?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>
+
+      <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>
+  
+      <!-- In case we have CSS someday
+      <copy todir="${docs.dest}" filtering="no">
+          <fileset dir="${docs.src}">
+              <include name="**/*.css"/>
+          </fileset>
+      </copy>
+      -->
+  </target>
+    
+</project>
+

Added: incubator/harmony/standard/site/docs/contributors.html
URL: http://svn.apache.org/viewcvs/incubator/harmony/standard/site/docs/contributors.html?rev=190482&view=auto
==============================================================================
--- incubator/harmony/standard/site/docs/contributors.html (added)
+++ incubator/harmony/standard/site/docs/contributors.html Mon Jun 13 11:53:48 2005
@@ -0,0 +1,234 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+<!--
+Copyright 1999-2004 The Apache Software Foundation
+Licensed 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.
+-->
+
+
+<!-- Content Stylesheet for Site -->
+
+        
+<!-- 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="Harmony Documentation Team">
+            <meta name="email" value="dev@harmony.apache.org">
+            
+           
+            
+            
+            
+            
+            
+            <title>Apache Harmony - Apache Harmony Committers</title>
+        </head>
+
+        <body bgcolor="#ffffff" text="#000000" link="#525D76">        
+            <table border="0" width="100%" cellspacing="0">
+                <!-- TOP IMAGE -->
+                <tr>
+                    <td align='LEFT'>
+                    <table><tr><td>
+                    <td align="left">
+<a href="http://incubator.apache.org/harmony/"><img width="70%" src="./images/asf_logo.jpg" alt="Apache Harmony" border="0"/></a>
+</td>
+</td><td><h1>Apache Harmony</h1>
+                    </td></tr></table>
+                    </td>
+                    <td align='RIGHT'>
+                    <a href="http://incubator.apache.org/harmony/">
+                    <img src="images/apache-incubator-logo.png" alt="Apache Harmony" border="0"/></a>                    
+                    </td>
+                </tr>
+            </table>
+            <table border="0" width="100%" cellspacing="4">
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+
+                <tr>
+                    <!-- LEFT SIDE NAVIGATION -->
+                    <td width="20%" valign="top" nowrap="true">
+
+                <!-- special ACon Logo - leave here for next time  -->
+
+                   <a href="http://apachecon.com"><img src="http://apache.org/images/ac2005eu_135x50.gif"
+                        alt="ApacheCon Logo" border="0"/></a>
+
+                   <!-- regular menu -->
+
+                    
+    <!-- ============================================================ -->
+
+                <p><strong>General</strong></p>
+        <ul>
+                    <li>    <a href="./index.html">Home</a>
+</li>
+                    <li>    <a href="./license.html">License</a>
+</li>
+                    <li>    <a href="http://www.apache.org/">ASF</a>
+</li>
+                    <li>    <a href="./downloads.html">Downloads</a>
+</li>
+                </ul>
+            <p><strong>Community</strong></p>
+        <ul>
+                    <li>    <a href="./get-involved.html">Get Involved</a>
+</li>
+                    <li>    <a href="./contributors.html">Committers</a>
+</li>
+                    <li>    <a href="./mailing.html">Mailing Lists</a>
+</li>
+                    <li>    <a href="./documentation.html">Documentation</a>
+</li>
+                    <li>    <a href="./faq.html">FAQ</a>
+</li>
+                    <li>    <a href="http://wiki.apache.org/harmony">Wiki</a>
+</li>
+                </ul>
+            <p><strong>Development</strong></p>
+        <ul>
+                    <li>    <a href="./roadmap.html">Road Map / TODO</a>
+</li>
+                    <li>    <a href="./svn.html">Source Code</a>
+</li>
+                    <li>    <a href="http://issues.apache.org/jira/browse/HARMONY">JIRA</a>
+</li>
+                    <li>    <a href="./related.html">Other Projects</a>
+</li>
+                </ul>
+                        </td>
+                    <td width="80%" align="left" valign="top">
+                                                                    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="#525D76">
+        <font color="#ffffff" face="arial,helvetica,sanserif">
+          <a name="Apache Harmony Committers"><strong>Apache Harmony Committers</strong></a>
+        </font>
+      </td></tr>
+      <tr><td>
+        <blockquote>
+                                    <p>
+    If you would like to contribute to Harmony, 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 the mailing list.
+</p>
+                                                <table>
+                        <tr>
+                        <th bgcolor="#039acc" colspan="" rowspan="" valign="top" align="left">
+    <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+                Name
+            </font>
+</th>
+                                <th bgcolor="#039acc" colspan="" rowspan="" valign="top" align="left">
+    <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+                Organization
+            </font>
+</th>
+                                <th bgcolor="#039acc" colspan="" rowspan="" valign="top" align="left">
+    <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+                Status
+            </font>
+</th>
+            </tr>
+                                <tr>
+                        <td bgcolor="#a0ddf0" colspan="" rowspan="" valign="top" align="left">
+    <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+                Geir Magnusson Jr.
+            </font>
+</td>
+                                <td bgcolor="#a0ddf0" colspan="" rowspan="" valign="top" align="left">
+    <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+                IBM
+            </font>
+</td>
+                                <td bgcolor="#a0ddf0" colspan="" rowspan="" valign="top" align="left">
+    <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+                R
+            </font>
+</td>
+            </tr>
+                                <tr>
+                        <td bgcolor="#a0ddf0" colspan="" rowspan="" valign="top" align="left">
+    <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+                Your name here
+            </font>
+</td>
+                                <td bgcolor="#a0ddf0" colspan="" rowspan="" valign="top" align="left">
+    <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+                &nbsp;
+            </font>
+</td>
+                                <td bgcolor="#a0ddf0" colspan="" rowspan="" valign="top" align="left">
+    <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+                R
+            </font>
+</td>
+            </tr>
+            </table>
+                                                <p>
+        Status :
+    </p>
+                                                <ul>
+        <li> R = regular ASF committer status </li>
+        <li> A = Authorized Contributor
+            for listed enhanced IP rules modules</li>
+    </ul>
+                            </blockquote>
+        </p>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+                                        </td>
+                </tr>
+
+                <!-- FOOTER -->
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr><td colspan="2">
+                    <div align="center"><font color="#525D76" size="-1"><em>
+                    Copyright &#169; 2003-2005, The Apache Software Foundation
+                    </em></font></div>
+                </td></tr>
+            </table>
+        </body>
+    </html>
+<!-- end the processing -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Added: incubator/harmony/standard/site/docs/dependencies.html
URL: http://svn.apache.org/viewcvs/incubator/harmony/standard/site/docs/dependencies.html?rev=190482&view=auto
==============================================================================
--- incubator/harmony/standard/site/docs/dependencies.html (added)
+++ incubator/harmony/standard/site/docs/dependencies.html Mon Jun 13 11:53:48 2005
@@ -0,0 +1,190 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+<!--
+Copyright 1999-2004 The Apache Software Foundation
+Licensed 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.
+-->
+
+
+<!-- Content Stylesheet for Site -->
+
+        
+<!-- 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="Geronimo Documentation Team">
+            <meta name="email" value="dev@geronimo.apache.org">
+            
+           
+            
+            
+            
+            
+            
+            <title>Apache Geronimo - Apache Geronimo - Project Dependencies</title>
+        </head>
+
+        <body bgcolor="#ffffff" text="#000000" link="#525D76">        
+            <table border="0" width="100%" cellspacing="0">
+                <!-- TOP IMAGE -->
+                <tr>
+                    <td align='LEFT'>
+                    <td align="left">
+<a href="http://geronimo.apache.org/"><img src="./images/geronimo-logo.png" alt="Apache Geronimo" border="0"/></a>
+</td>
+                    </td>
+                </tr>
+            </table>
+            <table border="0" width="100%" cellspacing="4">
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+
+                <tr>
+                    <!-- LEFT SIDE NAVIGATION -->
+                    <td width="20%" valign="top" nowrap="true">
+
+                <!-- special ACon Logo - leave here for next time  -->
+
+                   <a href="http://apachecon.com"><img src="http://apache.org/images/ac2005eu_135x50.gif"
+                        alt="ApacheCon Logo" border="0"/></a>
+
+                   <!-- regular menu -->
+
+                    
+    <!-- ============================================================ -->
+
+                <p><strong>General</strong></p>
+        <ul>
+                    <li>    <a href="./index.html">Home</a>
+</li>
+                    <li>    <a href="./license.html">License</a>
+</li>
+                    <li>    <a href="http://www.apache.org/">ASF</a>
+</li>
+                    <li>    <a href="./downloads.html">Downloads</a>
+</li>
+                </ul>
+            <p><strong>Community</strong></p>
+        <ul>
+                    <li>    <a href="./get-involved.html">Get Involved</a>
+</li>
+                    <li>    <a href="./contributors.html">Committers</a>
+</li>
+                    <li>    <a href="./mailing.html">Mailing Lists</a>
+</li>
+                    <li>    <a href="./documentation.html">Documentation</a>
+</li>
+                    <li>    <a href="./faq.html">FAQ</a>
+</li>
+                    <li>    <a href="http://wiki.apache.org/geronimo">Wiki</a>
+</li>
+                </ul>
+            <p><strong>Development</strong></p>
+        <ul>
+                    <li>    <a href="./roadmap.html">Road Map / TODO</a>
+</li>
+                    <li>    <a href="./svn.html">Source Code</a>
+</li>
+                    <li>    <a href="http://wiki.apache.org/geronimo/CodingStandards">Coding Standards</a>
+</li>
+                    <li>    <a href="http://nagoya.apache.org/jira/secure/BrowseProject.jspa?id=10220">JIRA</a>
+</li>
+                    <li>    <a href="./dependencies.html">Related Projects</a>
+</li>
+                </ul>
+                        </td>
+                    <td width="80%" align="left" valign="top">
+                                                                    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="#525D76">
+        <font color="#ffffff" face="arial,helvetica,sanserif">
+          <a name="The 'Mosaic'"><strong>The 'Mosaic'</strong></a>
+        </font>
+      </td></tr>
+      <tr><td>
+        <blockquote>
+                                    <p>
+  Apache Geronimo derives the majority of it's functionality from external projects.
+  These projects, which we somtimes refer to as part of the "Geronimo Mosiac", 
+  are independent, healthy open source communities with separate identity.
+  We try to collaborate with this as much as we can, working in those projects 
+  as much as we work here in Apache Geronimo.  
+  </p>
+                                                <p>
+  We believe that open source is valuable because of the communities behind the code - 
+  and in the case of Apache Geronimo, the 'mosaic' of projects brings additional
+  health and diversity that go beyond a single project.
+ </p>
+                                                <p> 
+  The external dependencies of Geronimo are :
+  </p>
+                                                <ul>
+    <li><a href="http://www.openejb.org/">OpenEJB</a></li>
+    <li><a href="http://ws.apache.org/axis/">Apache Axis</a></li>
+    <li><a href="http://mx4j.sourceforge.net/">MX4J</a></li>
+    <li><a href="http://jetty.mortbay.org/">Jetty</a></li>
+    <li><a href="http://tomcat.apache.org/">Apache Tomcat</a></li>
+    <li><a href="http://activemq.codehaus.org/">ActiveMQ</a></li>
+    <li><a href="http://activeio.codehaus.org/">ActiveIO</a></li>
+    <li><a href="http://activecluster.codehaus.org/">ActiveCluster</a></li>
+    <li><a href="http://tranql.codehaus.org/">TranQL</a></li>
+    <li><a href="">Antlr</a></li>
+    <li><a href="http://asm.objectweb.org">ASM</a></li>
+  </ul>
+                            </blockquote>
+        </p>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+                                        </td>
+                </tr>
+
+                <!-- FOOTER -->
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr><td colspan="2">
+                    <div align="center"><font color="#525D76" size="-1"><em>
+                    Copyright &#169; 2003-2005, The Apache Software Foundation
+                    </em></font></div>
+                </td></tr>
+            </table>
+        </body>
+    </html>
+<!-- end the processing -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Added: incubator/harmony/standard/site/docs/documentation.html
URL: http://svn.apache.org/viewcvs/incubator/harmony/standard/site/docs/documentation.html?rev=190482&view=auto
==============================================================================
--- incubator/harmony/standard/site/docs/documentation.html (added)
+++ incubator/harmony/standard/site/docs/documentation.html Mon Jun 13 11:53:48 2005
@@ -0,0 +1,223 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+<!--
+Copyright 1999-2004 The Apache Software Foundation
+Licensed 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.
+-->
+
+
+<!-- Content Stylesheet for Site -->
+
+        
+<!-- 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="Harmony Documentation Team">
+            <meta name="email" value="harmony-dev@harmony.apache.org">
+            
+           
+            
+            
+            
+            
+            
+            <title>Apache Harmony - Apache Harmony</title>
+        </head>
+
+        <body bgcolor="#ffffff" text="#000000" link="#525D76">        
+            <table border="0" width="100%" cellspacing="0">
+                <!-- TOP IMAGE -->
+                <tr>
+                    <td align='LEFT'>
+                    <table><tr><td>
+                    <td align="left">
+<a href="http://incubator.apache.org/harmony/"><img width="70%" src="./images/asf_logo.jpg" alt="Apache Harmony" border="0"/></a>
+</td>
+</td><td><h1>Apache Harmony</h1>
+                    </td></tr></table>
+                    </td>
+                    <td align='RIGHT'>
+                    <a href="http://incubator.apache.org/harmony/">
+                    <img src="images/apache-incubator-logo.png" alt="Apache Harmony" border="0"/></a>                    
+                    </td>
+                </tr>
+            </table>
+            <table border="0" width="100%" cellspacing="4">
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+
+                <tr>
+                    <!-- LEFT SIDE NAVIGATION -->
+                    <td width="20%" valign="top" nowrap="true">
+
+                <!-- special ACon Logo - leave here for next time  -->
+
+                   <a href="http://apachecon.com"><img src="http://apache.org/images/ac2005eu_135x50.gif"
+                        alt="ApacheCon Logo" border="0"/></a>
+
+                   <!-- regular menu -->
+
+                    
+    <!-- ============================================================ -->
+
+                <p><strong>General</strong></p>
+        <ul>
+                    <li>    <a href="./index.html">Home</a>
+</li>
+                    <li>    <a href="./license.html">License</a>
+</li>
+                    <li>    <a href="http://www.apache.org/">ASF</a>
+</li>
+                    <li>    <a href="./downloads.html">Downloads</a>
+</li>
+                </ul>
+            <p><strong>Community</strong></p>
+        <ul>
+                    <li>    <a href="./get-involved.html">Get Involved</a>
+</li>
+                    <li>    <a href="./contributors.html">Committers</a>
+</li>
+                    <li>    <a href="./mailing.html">Mailing Lists</a>
+</li>
+                    <li>    <a href="./documentation.html">Documentation</a>
+</li>
+                    <li>    <a href="./faq.html">FAQ</a>
+</li>
+                    <li>    <a href="http://wiki.apache.org/harmony">Wiki</a>
+</li>
+                </ul>
+            <p><strong>Development</strong></p>
+        <ul>
+                    <li>    <a href="./roadmap.html">Road Map / TODO</a>
+</li>
+                    <li>    <a href="./svn.html">Source Code</a>
+</li>
+                    <li>    <a href="http://issues.apache.org/jira/browse/HARMONY">JIRA</a>
+</li>
+                    <li>    <a href="./related.html">Other Projects</a>
+</li>
+                </ul>
+                        </td>
+                    <td width="80%" align="left" valign="top">
+                                                                    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="#525D76">
+        <font color="#ffffff" face="arial,helvetica,sanserif">
+          <a name="Apache Harmony Documentation"><strong>Apache Harmony Documentation</strong></a>
+        </font>
+      </td></tr>
+      <tr><td>
+        <blockquote>
+                                    <p>
+There is not yet a full manual or similar official documentation.  However,
+the resources below will help new users and developers get up to speed with
+the technology.
+</p>
+                                                    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="#828DA6">
+        <font color="#ffffff" face="arial,helvetica,sanserif">
+          <a name="Project Resource"><strong>Project Resource</strong></a>
+        </font>
+      </td></tr>
+      <tr><td>
+        <blockquote>
+                                    <ul>
+  <li>The <a href="http://wiki.apache.org/harmony">Harmony Wiki</a></li>
+</ul>
+                            </blockquote>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+                                                    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="#828DA6">
+        <font color="#ffffff" face="arial,helvetica,sanserif">
+          <a name="Books"><strong>Books</strong></a>
+        </font>
+      </td></tr>
+      <tr><td>
+        <blockquote>
+                </blockquote>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+                                                    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="#828DA6">
+        <font color="#ffffff" face="arial,helvetica,sanserif">
+          <a name="Research Papers and Talks"><strong>Research Papers and Talks</strong></a>
+        </font>
+      </td></tr>
+      <tr><td>
+        <blockquote>
+                </blockquote>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+                                                    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="#828DA6">
+        <font color="#ffffff" face="arial,helvetica,sanserif">
+          <a name="Articles and Interviews"><strong>Articles and Interviews</strong></a>
+        </font>
+      </td></tr>
+      <tr><td>
+        <blockquote>
+                </blockquote>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+                            </blockquote>
+        </p>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+                                        </td>
+                </tr>
+
+                <!-- FOOTER -->
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr><td colspan="2">
+                    <div align="center"><font color="#525D76" size="-1"><em>
+                    Copyright &#169; 2003-2005, The Apache Software Foundation
+                    </em></font></div>
+                </td></tr>
+            </table>
+        </body>
+    </html>
+<!-- end the processing -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Added: incubator/harmony/standard/site/docs/downloads.html
URL: http://svn.apache.org/viewcvs/incubator/harmony/standard/site/docs/downloads.html?rev=190482&view=auto
==============================================================================
--- incubator/harmony/standard/site/docs/downloads.html (added)
+++ incubator/harmony/standard/site/docs/downloads.html Mon Jun 13 11:53:48 2005
@@ -0,0 +1,194 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+<!--
+Copyright 1999-2004 The Apache Software Foundation
+Licensed 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.
+-->
+
+
+<!-- Content Stylesheet for Site -->
+
+        
+<!-- 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="Harmony Documentation Team">
+            <meta name="email" value="harmony-dev@incubator.apache.org">
+            
+           
+            
+            
+            
+            
+            
+            <title>Apache Harmony - Apache Harmony</title>
+        </head>
+
+        <body bgcolor="#ffffff" text="#000000" link="#525D76">        
+            <table border="0" width="100%" cellspacing="0">
+                <!-- TOP IMAGE -->
+                <tr>
+                    <td align='LEFT'>
+                    <table><tr><td>
+                    <td align="left">
+<a href="http://incubator.apache.org/harmony/"><img width="70%" src="./images/asf_logo.jpg" alt="Apache Harmony" border="0"/></a>
+</td>
+</td><td><h1>Apache Harmony</h1>
+                    </td></tr></table>
+                    </td>
+                    <td align='RIGHT'>
+                    <a href="http://incubator.apache.org/harmony/">
+                    <img src="images/apache-incubator-logo.png" alt="Apache Harmony" border="0"/></a>                    
+                    </td>
+                </tr>
+            </table>
+            <table border="0" width="100%" cellspacing="4">
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+
+                <tr>
+                    <!-- LEFT SIDE NAVIGATION -->
+                    <td width="20%" valign="top" nowrap="true">
+
+                <!-- special ACon Logo - leave here for next time  -->
+
+                   <a href="http://apachecon.com"><img src="http://apache.org/images/ac2005eu_135x50.gif"
+                        alt="ApacheCon Logo" border="0"/></a>
+
+                   <!-- regular menu -->
+
+                    
+    <!-- ============================================================ -->
+
+                <p><strong>General</strong></p>
+        <ul>
+                    <li>    <a href="./index.html">Home</a>
+</li>
+                    <li>    <a href="./license.html">License</a>
+</li>
+                    <li>    <a href="http://www.apache.org/">ASF</a>
+</li>
+                    <li>    <a href="./downloads.html">Downloads</a>
+</li>
+                </ul>
+            <p><strong>Community</strong></p>
+        <ul>
+                    <li>    <a href="./get-involved.html">Get Involved</a>
+</li>
+                    <li>    <a href="./contributors.html">Committers</a>
+</li>
+                    <li>    <a href="./mailing.html">Mailing Lists</a>
+</li>
+                    <li>    <a href="./documentation.html">Documentation</a>
+</li>
+                    <li>    <a href="./faq.html">FAQ</a>
+</li>
+                    <li>    <a href="http://wiki.apache.org/harmony">Wiki</a>
+</li>
+                </ul>
+            <p><strong>Development</strong></p>
+        <ul>
+                    <li>    <a href="./roadmap.html">Road Map / TODO</a>
+</li>
+                    <li>    <a href="./svn.html">Source Code</a>
+</li>
+                    <li>    <a href="http://issues.apache.org/jira/browse/HARMONY">JIRA</a>
+</li>
+                    <li>    <a href="./related.html">Other Projects</a>
+</li>
+                </ul>
+                        </td>
+                    <td width="80%" align="left" valign="top">
+                                                                    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="#525D76">
+        <font color="#ffffff" face="arial,helvetica,sanserif">
+          <a name="Downloads"><strong>Downloads</strong></a>
+        </font>
+      </td></tr>
+      <tr><td>
+        <blockquote>
+                                    <p>
+Currently, Apache Harmony has no downloads
+</p>
+                                                    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="#828DA6">
+        <font color="#ffffff" face="arial,helvetica,sanserif">
+          <a name="Binaries"><strong>Binaries</strong></a>
+        </font>
+      </td></tr>
+      <tr><td>
+        <blockquote>
+                </blockquote>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+                                                    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="#828DA6">
+        <font color="#ffffff" face="arial,helvetica,sanserif">
+          <a name="Source_Code"><strong>Source_Code</strong></a>
+        </font>
+      </td></tr>
+      <tr><td>
+        <blockquote>
+                </blockquote>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+                            </blockquote>
+        </p>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+                                        </td>
+                </tr>
+
+                <!-- FOOTER -->
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr><td colspan="2">
+                    <div align="center"><font color="#525D76" size="-1"><em>
+                    Copyright &#169; 2003-2005, The Apache Software Foundation
+                    </em></font></div>
+                </td></tr>
+            </table>
+        </body>
+    </html>
+<!-- end the processing -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Added: incubator/harmony/standard/site/docs/faq.html
URL: http://svn.apache.org/viewcvs/incubator/harmony/standard/site/docs/faq.html?rev=190482&view=auto
==============================================================================
--- incubator/harmony/standard/site/docs/faq.html (added)
+++ incubator/harmony/standard/site/docs/faq.html Mon Jun 13 11:53:48 2005
@@ -0,0 +1,286 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+<!--
+Copyright 1999-2004 The Apache Software Foundation
+Licensed 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.
+-->
+
+
+<!-- Content Stylesheet for Site -->
+
+        
+<!-- 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="Harmony Documentation Team">
+            <meta name="email" value="harmony-dev@incubator.apache.org">
+            
+           
+            
+            
+            
+            
+            
+            <title>Apache Harmony - Apache Harmony - Frequently Asked Questions</title>
+        </head>
+
+        <body bgcolor="#ffffff" text="#000000" link="#525D76">        
+            <table border="0" width="100%" cellspacing="0">
+                <!-- TOP IMAGE -->
+                <tr>
+                    <td align='LEFT'>
+                    <table><tr><td>
+                    <td align="left">
+<a href="http://incubator.apache.org/harmony/"><img width="70%" src="./images/asf_logo.jpg" alt="Apache Harmony" border="0"/></a>
+</td>
+</td><td><h1>Apache Harmony</h1>
+                    </td></tr></table>
+                    </td>
+                    <td align='RIGHT'>
+                    <a href="http://incubator.apache.org/harmony/">
+                    <img src="images/apache-incubator-logo.png" alt="Apache Harmony" border="0"/></a>                    
+                    </td>
+                </tr>
+            </table>
+            <table border="0" width="100%" cellspacing="4">
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+
+                <tr>
+                    <!-- LEFT SIDE NAVIGATION -->
+                    <td width="20%" valign="top" nowrap="true">
+
+                <!-- special ACon Logo - leave here for next time  -->
+
+                   <a href="http://apachecon.com"><img src="http://apache.org/images/ac2005eu_135x50.gif"
+                        alt="ApacheCon Logo" border="0"/></a>
+
+                   <!-- regular menu -->
+
+                    
+    <!-- ============================================================ -->
+
+                <p><strong>General</strong></p>
+        <ul>
+                    <li>    <a href="./index.html">Home</a>
+</li>
+                    <li>    <a href="./license.html">License</a>
+</li>
+                    <li>    <a href="http://www.apache.org/">ASF</a>
+</li>
+                    <li>    <a href="./downloads.html">Downloads</a>
+</li>
+                </ul>
+            <p><strong>Community</strong></p>
+        <ul>
+                    <li>    <a href="./get-involved.html">Get Involved</a>
+</li>
+                    <li>    <a href="./contributors.html">Committers</a>
+</li>
+                    <li>    <a href="./mailing.html">Mailing Lists</a>
+</li>
+                    <li>    <a href="./documentation.html">Documentation</a>
+</li>
+                    <li>    <a href="./faq.html">FAQ</a>
+</li>
+                    <li>    <a href="http://wiki.apache.org/harmony">Wiki</a>
+</li>
+                </ul>
+            <p><strong>Development</strong></p>
+        <ul>
+                    <li>    <a href="./roadmap.html">Road Map / TODO</a>
+</li>
+                    <li>    <a href="./svn.html">Source Code</a>
+</li>
+                    <li>    <a href="http://issues.apache.org/jira/browse/HARMONY">JIRA</a>
+</li>
+                    <li>    <a href="./related.html">Other Projects</a>
+</li>
+                </ul>
+                        </td>
+                    <td width="80%" align="left" valign="top">
+                                                                    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="#525D76">
+        <font color="#ffffff" face="arial,helvetica,sanserif">
+          <a name="General"><strong>General</strong></a>
+        </font>
+      </td></tr>
+      <tr><td>
+        <blockquote>
+                                    <p>
+     <strong />
+      <blockquote>
+      </blockquote>
+  </p>
+                                                <p>
+         <strong>0) How do I subscribe to the mail list?</strong>
+          <blockquote>
+You can subscribe by sending an email to
+
+    harmony-dev-subscribe@incubator.apache.org
+
+you will receive a confirmation request that you must respond to.
+
+After that, you can post to the dev list
+
+   harmony-dev@incubator.apache.org
+          </blockquote>
+      </p>
+                                                <pre>
+1) Why are you doing this?
+--------------------------
+
+We believe that there is broad community interest in coming together to create and use an open source, compatible implementation of J2SE 5, the latest version of the Java 2 Standard Edition specification.
+
+2) What version of Java will you be implementing?
+-------------------------------------------------
+
+J2SE 5 aka Java 5 aka Tiger
+
+3) Why haven't you done this before?
+--------------------------------------
+
+While the Java Community Process has allowed open source implementations of JSRs for a few years now, Java 5 is the first of the J2SE specs that we are able to do due to licensing reasons.
+
+4) Are you doing this to attack Sun?
+---------------------------------------
+
+No, of course we aren't. Apache doesn't support projects that attack any entity, corporate or otherwise.
+
+Sun has been a long-time supporter of Apache and Apache projects, and Apache has a wide variety of projects that are implementations of Java specifications, such as Apache Geronimo, Apache Tomcat, Pluto, taglibs, etc.
+
+This project is open to every interested member of the Java community, and every interested member is welcome to participate in whatever manner they choose.
+
+5) Are you doing this because Sun refuses to release their source for J2SE under an open source license?
+----------------------------------------
+
+Not really.  We would welcome Sun doing that (as well as anyone else w/ a J2SE implementation!) as it would save us a lot of time, and we wholeheartedly encourage them to do so ;)  but Sun has the right to do what it chooses with it's intellectual property.
+
+6) Will your implementation be compatible with the specification?
+------------------------------------------------------------------
+
+Yes
+
+7) How will you know?
+---------------------
+
+We are going to test it with the TCK from Sun.
+
+8) How will you license the TCK from Sun.  Isn't it expensive?
+--------------------------------------------------------------
+
+Sun offers scholarships to qualified non-profits, academics and individuals.  Apache is a qualified non-profit, and has benefitted from this scholarship before, with the J2EE 1.4 TCK license and support for the Apache Geronimo project, among others.
+
+We will apply for the scholarship, and hope that Sun will grant us the license and support needed for us to do a good job.
+
+9) How long will it take?
+-------------------------
+
+It will be done when it's done :)  This will take a long time, but we hope that contributions from around the community will help us along the way.
+
+10) Do you have any code to start?
+-----------------------------------
+
+No, we don't.  We didn't want to "bless" any given implementation that might be donated (if such a thing could happen) but would rather let the community decide how it will create and develop the platform.
+
+11) Will you accept SWT if IBM offers it?
+----------------------------------------
+
+Apache is always grateful for contributions from wherever they come, and IBM has a record of contributions to open source,  but it would up to the project community to decide whether any particular contribution was used in the project.
+
+12) Why are you going to have an architecture thread?
+-----------------------------------------------------
+
+We wanted a way that we could bring together people from all over the Java community, even other open-source projects that are related.  We welcome everyone to the discussion, no matter what license they choose to implement under, be it a free software license, an open source license or a proprietary license.  We are here to open discussion and learning, and to design a great architecture for J2SE platforms.
+
+At Apache, we think that a strong, diverse, meritocratic community is what makes a good open source project, and we want to be sure that everyone can participate in some way.
+
+13) Does this compete with Kaffe and Classpath?
+-----------------------------------------------
+
+People from Kaffe and Classpath are helping start this project!  Their experience in the open source VM and class library is invaluable, and they bring problems that the larger architecture community discussion can help solve.
+
+We will have an implementation under the Apache License, but we think of this as complementary rather than competitive.  And when we solve a few small license interoperability issues, we expect we'll be able to complement each other even more.
+
+14) How will you ensure that the intellectual property of Sun and others is respected?
+---------------------------------------------------------------------------------------
+
+Good question - this is a very important issue for us.  There are several ways, but this will be a topic for the community to work on at the beginning.  So far we've thought of :
+
+a) We shall ask any person that would be a committer to declare what kind of non-open-source class library or VM source code they have been exposed to, and allow us to keep them from participating in the related parts of the codebase where they may inadvertently violate the IP rights of someone else.
+
+b) We shall require that any code contribution that isn't a new, original work of authorship created expressly for the Apache Harmony project be subject to the standard Apache process for provenance and licensing to ensure that we have an accurate record of every contribution that wasn't created expressly inside the Apache Harmony project.
+
+c) We would like to perform continuous "surveillance" on the codebase we are building, and compare to class library and VMs from elsewhere, like Sun, IBM, BEA, Kaffe, etc to ensure that no code from those efforts become part of Apache Harmony without our knowledge.  We do this to protect ourselves, our users, and of course those other efforts.  We don't know yet how to do this, but are exploring ideas such as having a third party such as Black Duck or an existing licensee (or Sun!) do this for us.  This, like all the topics herein, are open for discussion an change by the community.
+
+d) Anything anyone can think of!
+
+15) Won't this lead to fragmentation in the Java community?
+-----------------------------------------------------------
+
+We don't think so.  Our intent is to bring people together, let us share what we know, solve common problems, and collaborate on things where we can.  A diverse Java community is a healthy Java community.  Multiple implementations of the Java specifications show the value of Java - that we do have a specification, that anyone is free to make a compatible implementation, and that users of Java have the opportunity to run their Java code in more places, on more platforms.  This is the central promise of Java, and we think that our efforts support this.
+
+16) How can I get involved and help influence and shape this proposal? Or is it too late?
+-----------------------------------------------------------------------------------------
+
+Join the community and participate!  It's never too late!   We're just getting started, and everything is open to discussion - the community will change what the community wants to change.   What we do in this project is decided by those participating in the project.  This is the Apache Software Foundation - collaborative, meritocratic, and community-based.
+
+  </pre>
+                            </blockquote>
+        </p>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+                                        </td>
+                </tr>
+
+                <!-- FOOTER -->
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr><td colspan="2">
+                    <div align="center"><font color="#525D76" size="-1"><em>
+                    Copyright &#169; 2003-2005, The Apache Software Foundation
+                    </em></font></div>
+                </td></tr>
+            </table>
+        </body>
+    </html>
+<!-- end the processing -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Added: incubator/harmony/standard/site/docs/get-involved.html
URL: http://svn.apache.org/viewcvs/incubator/harmony/standard/site/docs/get-involved.html?rev=190482&view=auto
==============================================================================
--- incubator/harmony/standard/site/docs/get-involved.html (added)
+++ incubator/harmony/standard/site/docs/get-involved.html Mon Jun 13 11:53:48 2005
@@ -0,0 +1,197 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+<!--
+Copyright 1999-2004 The Apache Software Foundation
+Licensed 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.
+-->
+
+
+<!-- Content Stylesheet for Site -->
+
+        
+<!-- 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="Harmony Documentation Team">
+            <meta name="email" value="harmony-dev@harmony.apache.org">
+            
+           
+            
+            
+            
+            
+            
+            <title>Apache Harmony - Apache Harmony</title>
+        </head>
+
+        <body bgcolor="#ffffff" text="#000000" link="#525D76">        
+            <table border="0" width="100%" cellspacing="0">
+                <!-- TOP IMAGE -->
+                <tr>
+                    <td align='LEFT'>
+                    <table><tr><td>
+                    <td align="left">
+<a href="http://incubator.apache.org/harmony/"><img width="70%" src="./images/asf_logo.jpg" alt="Apache Harmony" border="0"/></a>
+</td>
+</td><td><h1>Apache Harmony</h1>
+                    </td></tr></table>
+                    </td>
+                    <td align='RIGHT'>
+                    <a href="http://incubator.apache.org/harmony/">
+                    <img src="images/apache-incubator-logo.png" alt="Apache Harmony" border="0"/></a>                    
+                    </td>
+                </tr>
+            </table>
+            <table border="0" width="100%" cellspacing="4">
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+
+                <tr>
+                    <!-- LEFT SIDE NAVIGATION -->
+                    <td width="20%" valign="top" nowrap="true">
+
+                <!-- special ACon Logo - leave here for next time  -->
+
+                   <a href="http://apachecon.com"><img src="http://apache.org/images/ac2005eu_135x50.gif"
+                        alt="ApacheCon Logo" border="0"/></a>
+
+                   <!-- regular menu -->
+
+                    
+    <!-- ============================================================ -->
+
+                <p><strong>General</strong></p>
+        <ul>
+                    <li>    <a href="./index.html">Home</a>
+</li>
+                    <li>    <a href="./license.html">License</a>
+</li>
+                    <li>    <a href="http://www.apache.org/">ASF</a>
+</li>
+                    <li>    <a href="./downloads.html">Downloads</a>
+</li>
+                </ul>
+            <p><strong>Community</strong></p>
+        <ul>
+                    <li>    <a href="./get-involved.html">Get Involved</a>
+</li>
+                    <li>    <a href="./contributors.html">Committers</a>
+</li>
+                    <li>    <a href="./mailing.html">Mailing Lists</a>
+</li>
+                    <li>    <a href="./documentation.html">Documentation</a>
+</li>
+                    <li>    <a href="./faq.html">FAQ</a>
+</li>
+                    <li>    <a href="http://wiki.apache.org/harmony">Wiki</a>
+</li>
+                </ul>
+            <p><strong>Development</strong></p>
+        <ul>
+                    <li>    <a href="./roadmap.html">Road Map / TODO</a>
+</li>
+                    <li>    <a href="./svn.html">Source Code</a>
+</li>
+                    <li>    <a href="http://issues.apache.org/jira/browse/HARMONY">JIRA</a>
+</li>
+                    <li>    <a href="./related.html">Other Projects</a>
+</li>
+                </ul>
+                        </td>
+                    <td width="80%" align="left" valign="top">
+                                                                    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="#525D76">
+        <font color="#ffffff" face="arial,helvetica,sanserif">
+          <a name="How do I contribute, give feedback, fix bugs and so on?"><strong>How do I contribute, give feedback, fix bugs and so on?</strong></a>
+        </font>
+      </td></tr>
+      <tr><td>
+        <blockquote>
+                                    <p>
+    The Apache Harmony 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">Harmony mailling lists</a>
+    </li>
+    <li id="irc-channel">
+        Informal discussion also occurs on the
+        <a href="irc://irc.freenode.net/harmony">#harmony IRC channel</a>
+        on
+        <a href="http://freenode.net/">freenode.net</a>.
+        (<a href="http://www.irchelp.org/">Help with IRC</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/HARMONY">JIRA</a>
+    </li>
+    <li>
+      Additional documentation and discussion can be found on the project
+     <a href="http://wiki.apache.org/harmony/">wiki</a>
+   </li>
+</ul>
+                            </blockquote>
+        </p>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+                                        </td>
+                </tr>
+
+                <!-- FOOTER -->
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr><td colspan="2">
+                    <div align="center"><font color="#525D76" size="-1"><em>
+                    Copyright &#169; 2003-2005, The Apache Software Foundation
+                    </em></font></div>
+                </td></tr>
+            </table>
+        </body>
+    </html>
+<!-- end the processing -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Added: incubator/harmony/standard/site/docs/images/apache-incubator-logo.png
URL: http://svn.apache.org/viewcvs/incubator/harmony/standard/site/docs/images/apache-incubator-logo.png?rev=190482&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/harmony/standard/site/docs/images/apache-incubator-logo.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/harmony/standard/site/docs/images/asf_logo.jpg
URL: http://svn.apache.org/viewcvs/incubator/harmony/standard/site/docs/images/asf_logo.jpg?rev=190482&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/harmony/standard/site/docs/images/asf_logo.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/harmony/standard/site/docs/images/geronimo-logo.png
URL: http://svn.apache.org/viewcvs/incubator/harmony/standard/site/docs/images/geronimo-logo.png?rev=190482&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/harmony/standard/site/docs/images/geronimo-logo.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/harmony/standard/site/docs/index.html
URL: http://svn.apache.org/viewcvs/incubator/harmony/standard/site/docs/index.html?rev=190482&view=auto
==============================================================================
--- incubator/harmony/standard/site/docs/index.html (added)
+++ incubator/harmony/standard/site/docs/index.html Mon Jun 13 11:53:48 2005
@@ -0,0 +1,212 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+<!--
+Copyright 1999-2004 The Apache Software Foundation
+Licensed 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.
+-->
+
+
+<!-- Content Stylesheet for Site -->
+
+        
+<!-- 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="Harmony Documentation Team">
+            <meta name="email" value="harmony-dev@incubator.apache.org">
+            
+           
+            
+            
+            
+            
+            
+            <title>Apache Harmony - Apache Harmony</title>
+        </head>
+
+        <body bgcolor="#ffffff" text="#000000" link="#525D76">        
+            <table border="0" width="100%" cellspacing="0">
+                <!-- TOP IMAGE -->
+                <tr>
+                    <td align='LEFT'>
+                    <table><tr><td>
+                    <td align="left">
+<a href="http://incubator.apache.org/harmony/"><img width="70%" src="./images/asf_logo.jpg" alt="Apache Harmony" border="0"/></a>
+</td>
+</td><td><h1>Apache Harmony</h1>
+                    </td></tr></table>
+                    </td>
+                    <td align='RIGHT'>
+                    <a href="http://incubator.apache.org/harmony/">
+                    <img src="images/apache-incubator-logo.png" alt="Apache Harmony" border="0"/></a>                    
+                    </td>
+                </tr>
+            </table>
+            <table border="0" width="100%" cellspacing="4">
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+
+                <tr>
+                    <!-- LEFT SIDE NAVIGATION -->
+                    <td width="20%" valign="top" nowrap="true">
+
+                <!-- special ACon Logo - leave here for next time  -->
+
+                   <a href="http://apachecon.com"><img src="http://apache.org/images/ac2005eu_135x50.gif"
+                        alt="ApacheCon Logo" border="0"/></a>
+
+                   <!-- regular menu -->
+
+                    
+    <!-- ============================================================ -->
+
+                <p><strong>General</strong></p>
+        <ul>
+                    <li>    <a href="./index.html">Home</a>
+</li>
+                    <li>    <a href="./license.html">License</a>
+</li>
+                    <li>    <a href="http://www.apache.org/">ASF</a>
+</li>
+                    <li>    <a href="./downloads.html">Downloads</a>
+</li>
+                </ul>
+            <p><strong>Community</strong></p>
+        <ul>
+                    <li>    <a href="./get-involved.html">Get Involved</a>
+</li>
+                    <li>    <a href="./contributors.html">Committers</a>
+</li>
+                    <li>    <a href="./mailing.html">Mailing Lists</a>
+</li>
+                    <li>    <a href="./documentation.html">Documentation</a>
+</li>
+                    <li>    <a href="./faq.html">FAQ</a>
+</li>
+                    <li>    <a href="http://wiki.apache.org/harmony">Wiki</a>
+</li>
+                </ul>
+            <p><strong>Development</strong></p>
+        <ul>
+                    <li>    <a href="./roadmap.html">Road Map / TODO</a>
+</li>
+                    <li>    <a href="./svn.html">Source Code</a>
+</li>
+                    <li>    <a href="http://issues.apache.org/jira/browse/HARMONY">JIRA</a>
+</li>
+                    <li>    <a href="./related.html">Other Projects</a>
+</li>
+                </ul>
+                        </td>
+                    <td width="80%" align="left" valign="top">
+                                                                    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="#525D76">
+        <font color="#ffffff" face="arial,helvetica,sanserif">
+          <a name="Welcome to Apache Harmony"><strong>Welcome to Apache Harmony</strong></a>
+        </font>
+      </td></tr>
+      <tr><td>
+        <blockquote>
+                                    <p>
+    Welcome to Apache Harmony, the J2SE  project of the
+    <a href="http://www.apache.org/">Apache Software Foundation</a>.
+    Please help us make this a world class, certified J2SE implementation!
+    </p>
+                                                <p>
+    The aim of the project is to produce a large and healthy community
+    of those interested in runtime platforms tasked with :
+    </p>
+                                                <ul>
+    <li>
+        Create a compatible, independent implementation of J2SE 5
+        under the Apache License v2
+    </li>
+    <li>
+        Create a community-developed modular runtime (VM and class library)
+        architecture to allow independent implementations to share runtime
+         components, and allow independent innovation in runtime components
+
+    </li>
+</ul>
+                            </blockquote>
+        </p>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+                                                <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="#525D76">
+        <font color="#ffffff" face="arial,helvetica,sanserif">
+          <a name="Harmony News"><strong>Harmony News</strong></a>
+        </font>
+      </td></tr>
+      <tr><td>
+        <blockquote>
+                                    <p>
+  <strong>Project accepted by Apache Incubator</strong>
+  <blockquote>
+      The Apache Harmony project was accepted formally accepted for
+      inubation by the Apache Incubator PMC.
+    (<i>2005-05-18</i>)
+  </blockquote>
+</p>
+                                                <p>
+<i>Archived articles are <a href="newshistory.html">here</a></i>.
+</p>
+                            </blockquote>
+        </p>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+                                        </td>
+                </tr>
+
+                <!-- FOOTER -->
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr><td colspan="2">
+                    <div align="center"><font color="#525D76" size="-1"><em>
+                    Copyright &#169; 2003-2005, The Apache Software Foundation
+                    </em></font></div>
+                </td></tr>
+            </table>
+        </body>
+    </html>
+<!-- end the processing -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Added: incubator/harmony/standard/site/docs/license.html
URL: http://svn.apache.org/viewcvs/incubator/harmony/standard/site/docs/license.html?rev=190482&view=auto
==============================================================================
--- incubator/harmony/standard/site/docs/license.html (added)
+++ incubator/harmony/standard/site/docs/license.html Mon Jun 13 11:53:48 2005
@@ -0,0 +1,394 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+<!--
+Copyright 1999-2004 The Apache Software Foundation
+Licensed 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.
+-->
+
+
+<!-- Content Stylesheet for Site -->
+
+        
+<!-- 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="
+     Harmony Documentation Team">
+            <meta name="email" value="harmony-dev@incubator.apache.org">
+            
+           
+            
+            
+            
+            
+            
+            <title>Apache Harmony - Apache License</title>
+        </head>
+
+        <body bgcolor="#ffffff" text="#000000" link="#525D76">        
+            <table border="0" width="100%" cellspacing="0">
+                <!-- TOP IMAGE -->
+                <tr>
+                    <td align='LEFT'>
+                    <table><tr><td>
+                    <td align="left">
+<a href="http://incubator.apache.org/harmony/"><img width="70%" src="./images/asf_logo.jpg" alt="Apache Harmony" border="0"/></a>
+</td>
+</td><td><h1>Apache Harmony</h1>
+                    </td></tr></table>
+                    </td>
+                    <td align='RIGHT'>
+                    <a href="http://incubator.apache.org/harmony/">
+                    <img src="images/apache-incubator-logo.png" alt="Apache Harmony" border="0"/></a>                    
+                    </td>
+                </tr>
+            </table>
+            <table border="0" width="100%" cellspacing="4">
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+
+                <tr>
+                    <!-- LEFT SIDE NAVIGATION -->
+                    <td width="20%" valign="top" nowrap="true">
+
+                <!-- special ACon Logo - leave here for next time  -->
+
+                   <a href="http://apachecon.com"><img src="http://apache.org/images/ac2005eu_135x50.gif"
+                        alt="ApacheCon Logo" border="0"/></a>
+
+                   <!-- regular menu -->
+
+                    
+    <!-- ============================================================ -->
+
+                <p><strong>General</strong></p>
+        <ul>
+                    <li>    <a href="./index.html">Home</a>
+</li>
+                    <li>    <a href="./license.html">License</a>
+</li>
+                    <li>    <a href="http://www.apache.org/">ASF</a>
+</li>
+                    <li>    <a href="./downloads.html">Downloads</a>
+</li>
+                </ul>
+            <p><strong>Community</strong></p>
+        <ul>
+                    <li>    <a href="./get-involved.html">Get Involved</a>
+</li>
+                    <li>    <a href="./contributors.html">Committers</a>
+</li>
+                    <li>    <a href="./mailing.html">Mailing Lists</a>
+</li>
+                    <li>    <a href="./documentation.html">Documentation</a>
+</li>
+                    <li>    <a href="./faq.html">FAQ</a>
+</li>
+                    <li>    <a href="http://wiki.apache.org/harmony">Wiki</a>
+</li>
+                </ul>
+            <p><strong>Development</strong></p>
+        <ul>
+                    <li>    <a href="./roadmap.html">Road Map / TODO</a>
+</li>
+                    <li>    <a href="./svn.html">Source Code</a>
+</li>
+                    <li>    <a href="http://issues.apache.org/jira/browse/HARMONY">JIRA</a>
+</li>
+                    <li>    <a href="./related.html">Other Projects</a>
+</li>
+                </ul>
+                        </td>
+                    <td width="80%" align="left" valign="top">
+                                                                    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="#525D76">
+        <font color="#ffffff" face="arial,helvetica,sanserif">
+          <a name="Apache License v2.0"><strong>Apache License v2.0</strong></a>
+        </font>
+      </td></tr>
+      <tr><td>
+        <blockquote>
+                                        <div align="left">
+    <table cellspacing="4" cellpadding="0" border="0">
+    <tr>
+      <td bgcolor="#023264" width="1" height="1"><img src="/images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
+      <td bgcolor="#023264" height="1"><img src="/images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
+      <td bgcolor="#023264" width="1" height="1"><img src="/images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
+    </tr>
+    <tr>
+      <td bgcolor="#023264" width="1"><img src="/images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
+      <td bgcolor="#ffffff"><pre>
+
+
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      &quot;License&quot; shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      &quot;Legal Entity&quot; shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      &quot;control&quot; means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      &quot;Source&quot; form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      &quot;Object&quot; form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      &quot;Work&quot; shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      &quot;Contribution&quot; shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, &quot;submitted&quot;
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
+
+      &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same &quot;printed page&quot; as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
+   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 &quot;AS IS&quot; 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.
+
+
+ </pre></td>
+      <td bgcolor="#023264" width="1"><img src="/images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
+    </tr>
+    <tr>
+      <td bgcolor="#023264" width="1" height="1"><img src="/images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
+      <td bgcolor="#023264" height="1"><img src="/images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
+      <td bgcolor="#023264" width="1" height="1"><img src="/images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
+    </tr>
+    </table>
+    </div>
+                            </blockquote>
+        </p>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+                                        </td>
+                </tr>
+
+                <!-- FOOTER -->
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr><td colspan="2">
+                    <div align="center"><font color="#525D76" size="-1"><em>
+                    Copyright &#169; 2003-2005, The Apache Software Foundation
+                    </em></font></div>
+                </td></tr>
+            </table>
+        </body>
+    </html>
+<!-- end the processing -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+