You are viewing a plain text version of this content. The canonical link for it is here.
Posted to agila-commits@incubator.apache.org by cl...@apache.org on 2005/11/23 20:03:00 UTC

svn commit: r348536 [1/2] - in /incubator/agila/site: ./ lib/ xdocs/ xdocs/images/ xdocs/stylesheets/

Author: clim
Date: Wed Nov 23 12:02:20 2005
New Revision: 348536

URL: http://svn.apache.org/viewcvs?rev=348536&view=rev
Log:
Initial site upload.

Added:
    incubator/agila/site/
    incubator/agila/site/HOWTO.txt
    incubator/agila/site/build.xml
    incubator/agila/site/lib/
    incubator/agila/site/lib/commons-collections.jar   (with props)
    incubator/agila/site/lib/jdom-b10-rc1.jar   (with props)
    incubator/agila/site/lib/logkit-1.0.1.jar   (with props)
    incubator/agila/site/lib/oro.jar   (with props)
    incubator/agila/site/lib/velocity-1.5-dev.jar   (with props)
    incubator/agila/site/xdocs/
    incubator/agila/site/xdocs/dependencies.xml
    incubator/agila/site/xdocs/documentation.xml
    incubator/agila/site/xdocs/downloads.xml
    incubator/agila/site/xdocs/faq.xml
    incubator/agila/site/xdocs/get-involved.xml
    incubator/agila/site/xdocs/images/
    incubator/agila/site/xdocs/images/Agila.gif   (with props)
    incubator/agila/site/xdocs/images/apache-incubator-logo.png   (with props)
    incubator/agila/site/xdocs/index.xml
    incubator/agila/site/xdocs/javadoc.xml
    incubator/agila/site/xdocs/license.xml
    incubator/agila/site/xdocs/mail-lists.xml
    incubator/agila/site/xdocs/newshistory.xml
    incubator/agila/site/xdocs/roadmap.xml
    incubator/agila/site/xdocs/stylesheets/
    incubator/agila/site/xdocs/stylesheets/project.xml
    incubator/agila/site/xdocs/stylesheets/project.xml_jakarta
    incubator/agila/site/xdocs/stylesheets/site.vsl
    incubator/agila/site/xdocs/stylesheets/site.xsl
    incubator/agila/site/xdocs/stylesheets/site_printable.vsl
    incubator/agila/site/xdocs/svn.xml
    incubator/agila/site/xdocs/team-list.xml

Added: incubator/agila/site/HOWTO.txt
URL: http://svn.apache.org/viewcvs/incubator/agila/site/HOWTO.txt?rev=348536&view=auto
==============================================================================
--- incubator/agila/site/HOWTO.txt (added)
+++ incubator/agila/site/HOWTO.txt Wed Nov 23 12:02:20 2005
@@ -0,0 +1,31 @@
+HOWTO for Agila Site
+====================
+
+How to change the site content and generate ?
+---------------------------------------------
+
+1) Make your modifications to the source xml file in xdocs/
+2) Run the default ant target to generate new html
+
+    $ ant
+
+3) If errors, fix and repeat step 2
+
+4) If all ok - you can verify by looking at the site locally 
+   with your browser, do a svn commit to ensure that all changes
+   both .xml in the xdocs directory and the .html in the docs 
+   directory get committed.
+
+How do I deploy site to the internet?
+-------------------------------------
+
+1) Once all changes are committed to subversion, ssh into 
+   minotaur.apache.org
+
+2) cd /www/incubator.apache.org/agila
+
+3) `cat UPDATE`
+
+That should bring all the changed content from SVN.  You must then 
+wait for up to 4 hours for the sync to take place to the real website
+

Added: incubator/agila/site/build.xml
URL: http://svn.apache.org/viewcvs/incubator/agila/site/build.xml?rev=348536&view=auto
==============================================================================
--- incubator/agila/site/build.xml (added)
+++ incubator/agila/site/build.xml Wed Nov 23 12:02:20 2005
@@ -0,0 +1,94 @@
+<?xml version="1.0"?>
+
+<project name="Apache Agila" 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="docs.src = ${docs.src}"/>
+    <echo message="docs.dest = ${docs.dest}"/>
+    <echo message=""/>
+  
+  </target>
+
+  <!-- =================================================================== -->
+  <!-- Make HTML version of Apache Agila 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>
+    
+  <target name="clean">
+    <delete dir="docs" failonerror="false"/>
+  </target>
+</project>
+

Added: incubator/agila/site/lib/commons-collections.jar
URL: http://svn.apache.org/viewcvs/incubator/agila/site/lib/commons-collections.jar?rev=348536&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/agila/site/lib/commons-collections.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/agila/site/lib/jdom-b10-rc1.jar
URL: http://svn.apache.org/viewcvs/incubator/agila/site/lib/jdom-b10-rc1.jar?rev=348536&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/agila/site/lib/jdom-b10-rc1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/agila/site/lib/logkit-1.0.1.jar
URL: http://svn.apache.org/viewcvs/incubator/agila/site/lib/logkit-1.0.1.jar?rev=348536&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/agila/site/lib/logkit-1.0.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/agila/site/lib/oro.jar
URL: http://svn.apache.org/viewcvs/incubator/agila/site/lib/oro.jar?rev=348536&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/agila/site/lib/oro.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/agila/site/lib/velocity-1.5-dev.jar
URL: http://svn.apache.org/viewcvs/incubator/agila/site/lib/velocity-1.5-dev.jar?rev=348536&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/agila/site/lib/velocity-1.5-dev.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/agila/site/xdocs/dependencies.xml
URL: http://svn.apache.org/viewcvs/incubator/agila/site/xdocs/dependencies.xml?rev=348536&view=auto
==============================================================================
--- incubator/agila/site/xdocs/dependencies.xml (added)
+++ incubator/agila/site/xdocs/dependencies.xml Wed Nov 23 12:02:20 2005
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+
+    Copyright 2003-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.
+-->
+
+<document>
+
+  <properties>
+    <title>Project Dependencies</title>
+    <author
+      email="agila-dev@incubator.apache.org">Apache Agila Development Team</author>
+  </properties>
+
+  <body>
+    <section name="The Apache Agila Project">
+
+      <p>
+        Under construction for the moment. Please check again later.
+      </p>
+
+    </section>
+
+  </body>
+
+</document>
+   

Added: incubator/agila/site/xdocs/documentation.xml
URL: http://svn.apache.org/viewcvs/incubator/agila/site/xdocs/documentation.xml?rev=348536&view=auto
==============================================================================
--- incubator/agila/site/xdocs/documentation.xml (added)
+++ incubator/agila/site/xdocs/documentation.xml Wed Nov 23 12:02:20 2005
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+
+    Copyright 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.
+-->
+
+
+<document>
+
+  <properties>
+    <title>Documentation</title>
+    <author
+       email="agila-dev@incubator.apache.org">Apache Agila Development Team</author>
+  </properties>
+
+  <body>
+
+    <section name="Apache Agila Documentation">
+
+      <p>
+        Under construction for the moment. Please check back later.
+      </p>
+
+    </section>
+
+  </body>
+
+</document>
+

Added: incubator/agila/site/xdocs/downloads.xml
URL: http://svn.apache.org/viewcvs/incubator/agila/site/xdocs/downloads.xml?rev=348536&view=auto
==============================================================================
--- incubator/agila/site/xdocs/downloads.xml (added)
+++ incubator/agila/site/xdocs/downloads.xml Wed Nov 23 12:02:20 2005
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+
+    Copyright 2003-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.
+-->
+
+<document>
+
+ <properties>
+  <title>Downloads</title>
+  <author email="agila-dev@incubator.apache.org">Apache Agila Development Team</author>
+ </properties>
+
+ <body>
+
+<section name="Downloads">
+
+  <p>
+    No downloads available yet.
+  </p>
+
+</section>
+</body>
+</document>
+

Added: incubator/agila/site/xdocs/faq.xml
URL: http://svn.apache.org/viewcvs/incubator/agila/site/xdocs/faq.xml?rev=348536&view=auto
==============================================================================
--- incubator/agila/site/xdocs/faq.xml (added)
+++ incubator/agila/site/xdocs/faq.xml Wed Nov 23 12:02:20 2005
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Copyright 2003-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.
+-->
+  
+<document>
+
+ <properties>
+  <title>Frequently Asked Questions</title>
+  <author email="agila-dev@incubator.apache.org">Apache Agila Development Team</author>
+ </properties>
+
+ <body>
+  <section name="General">
+
+    <p>
+        No FAQs yet.
+    </p>
+
+  </section>
+
+</body>
+</document>
+   

Added: incubator/agila/site/xdocs/get-involved.xml
URL: http://svn.apache.org/viewcvs/incubator/agila/site/xdocs/get-involved.xml?rev=348536&view=auto
==============================================================================
--- incubator/agila/site/xdocs/get-involved.xml (added)
+++ incubator/agila/site/xdocs/get-involved.xml Wed Nov 23 12:02:20 2005
@@ -0,0 +1,82 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+
+    Copyright 2003-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.
+-->
+
+<document>
+
+ <properties>
+  <title>Get Involved</title>
+  <author email="agila-dev@incubator.apache.org">Apache Agila Development Team</author>
+ </properties>
+
+ <body>
+
+<section name="How do I contribute, give feedback, fix bugs and so on?">
+
+<p>
+    The Apache Agila 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="mail-lists.html">Agila 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/AGILA">JIRA</a>
+    </li>
+    <li>
+      Additional documentation and discussion can be found on the project
+     <a href="http://wiki.apache.org/agila/">wiki</a>
+   </li>
+</ul>
+
+</section>
+
+<section name="How do I become a committer?">
+<p>If you're interested in committing to the project: </p>
+<ul>
+<li><p> You'll need to fill out some legal paperwork and go through a process to get an apache committer account: See <a  class="external" rel="nofollow" href="http://apache.org/dev/new-committers-guide.html">New Committers Guide</a>, <a  class="external" rel="nofollow" href="http://apache.org/dev/contributors.html">Contributors</a>, and <a  class="external" rel="nofollow" href="http://apache.org/dev/committers.html">Committers</a> for more details. </p>
+
+</li>
+<li><p> After you've received an email from <a  href="mailto:root@apache.org">root@apache.org</a> with your committer account information, change your initial password: Login by 'ssh -l &lt;username&gt; cvs.apache.org' (soon 'people.apache.org', as by apache email announcement); run 'passwd'; run 'svnpasswd'. See <a  class="external" rel="nofollow" href="http://apache.org/dev/version-control.html">Committer Subversion Access</a>. </p>
+</li>
+<li>
+  <p>Check out the Agila sources and test your svn account: <a href="http://svn.apache.org/viewcvs.cgi/incubator/agila/">Subversion Repository</a>.
+  </p>
+
+</li>
+<li><p> Sign up for a <a  class="external" rel="nofollow" href="http://wiki.apache.org/agila/UserPreferences">WiKi</a> account. </p>
+</li>
+<li><p> Sign up for an <a  class="external" rel="nofollow" href="http://issues.apache.org/jira/">ASF JIRA</a> account. </p>
+</li>
+
+</ul>
+
+</section>
+
+</body>
+</document>

Added: incubator/agila/site/xdocs/images/Agila.gif
URL: http://svn.apache.org/viewcvs/incubator/agila/site/xdocs/images/Agila.gif?rev=348536&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/agila/site/xdocs/images/Agila.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/agila/site/xdocs/images/apache-incubator-logo.png
URL: http://svn.apache.org/viewcvs/incubator/agila/site/xdocs/images/apache-incubator-logo.png?rev=348536&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/agila/site/xdocs/images/apache-incubator-logo.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/agila/site/xdocs/index.xml
URL: http://svn.apache.org/viewcvs/incubator/agila/site/xdocs/index.xml?rev=348536&view=auto
==============================================================================
--- incubator/agila/site/xdocs/index.xml (added)
+++ incubator/agila/site/xdocs/index.xml Wed Nov 23 12:02:20 2005
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+
+    Copyright 2003-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.
+-->
+
+<document>
+
+ <properties>
+  <title>Home</title>
+  <author email="agila-dev@incubator.apache.org">Apache Agila Development Team</author>
+ </properties>
+
+ <body>
+
+<section name="Welcome to Apache Agila">
+
+<p>
+Welcome to Apache Agila, a project of the 
+<a href="http://incubator.apache.org/">Apache Incubator</a>.  Our goal is a 
+thriving community of users and developers of object persistence technology.
+</p>
+
+</section>
+
+<section name="Welcome to Apache Agila">
+
+  <p>
+    Agila is centered around Business Process Management, Workflow and Web Service Orchestration. It's composed of two specialized modules: Agila BPM and Agila BPEL.
+  </p>
+
+  <p>
+    <strong>Agila BPM</strong>
+    <blockquote>
+      Agila BPM is basically handling tasks and users who have to complete these tasks, It's a very flexible and lightweight workflow component.
+    </blockquote>
+  </p>
+
+  <p>
+    <strong>Agila BPEL</strong>
+    <blockquote>
+      Agila BPEL is a BPEL-complient Web Services Orchestration solution.
+    </blockquote>
+  </p>
+
+ </section>
+
+ </body>
+</document>
+

Added: incubator/agila/site/xdocs/javadoc.xml
URL: http://svn.apache.org/viewcvs/incubator/agila/site/xdocs/javadoc.xml?rev=348536&view=auto
==============================================================================
--- incubator/agila/site/xdocs/javadoc.xml (added)
+++ incubator/agila/site/xdocs/javadoc.xml Wed Nov 23 12:02:20 2005
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+
+    Copyright 2003-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.
+-->
+
+<document>
+
+ <properties>
+  <title>Agila Javadoc</title>
+  <author email="agila-dev@incubator.apache.org">Apache Agila Development Team</author>
+ </properties>
+
+ <body>
+
+<section name="Agila is incubating in Apache">
+
+<p>
+The Apache Agila project is an effort undergoing incubation at the 
+Apache Software Foundation (ASF), sponsored by the 
+<a href="http://jakarta.apache.org">Apache Jakarta Project</a>.
+Incubation is required of all newly accepted projects until 
+a further review indicates that the infrastructure, communications, 
+and decision making process have stabilized in a manner consistent with 
+other successful ASF projects. While incubation status is 
+not necessarily a reflection of the completeness or stability 
+of the code, it does indicate that the project has yet to be 
+fully endorsed by the ASF.
+</p>
+
+<ul>
+    <li>
+        Discussion occurs on the <a
+        href="mail-lists.html">Agila 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/AGILA">JIRA</a>
+    </li>
+    <li>
+      Additional documentation and discussion can be found on the project
+     <a href="http://wiki.apache.org/agila/">wiki</a>
+   </li>
+</ul>
+
+</section>
+
+</body>
+</document>

Added: incubator/agila/site/xdocs/license.xml
URL: http://svn.apache.org/viewcvs/incubator/agila/site/xdocs/license.xml?rev=348536&view=auto
==============================================================================
--- incubator/agila/site/xdocs/license.xml (added)
+++ incubator/agila/site/xdocs/license.xml Wed Nov 23 12:02:20 2005
@@ -0,0 +1,241 @@
+<?xml version="1.0"?>
+
+<!--
+
+    Copyright 2003-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.
+-->
+
+<document>
+ <properties>
+  <title>License</title>
+  <author email="agila-dev@incubator.apache.org">Apache Agila Development Team</author>
+ </properties>
+
+<body>
+<section name="Apache License v2.0">
+
+<source test=""><![CDATA[
+
+
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" 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,
+      "control" 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.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" 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.
+
+      "Work" 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).
+
+      "Derivative Works" 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.
+
+      "Contribution" 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, "submitted"
+      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 "Not a Contribution."
+
+      "Contributor" 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 "NOTICE" 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 "AS IS" 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 "[]"
+      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 "printed page" 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 "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.
+
+
+ ]]></source>
+
+</section>
+</body>
+</document>
+

Added: incubator/agila/site/xdocs/mail-lists.xml
URL: http://svn.apache.org/viewcvs/incubator/agila/site/xdocs/mail-lists.xml?rev=348536&view=auto
==============================================================================
--- incubator/agila/site/xdocs/mail-lists.xml (added)
+++ incubator/agila/site/xdocs/mail-lists.xml Wed Nov 23 12:02:20 2005
@@ -0,0 +1,100 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+
+    Copyright 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.
+-->
+
+<document>
+
+<properties>
+  <title>Mailing Lists</title>
+  <author email="agila-dev@incubator.apache.org">Apache Agila Documentation Team</author>
+</properties>
+
+<body>
+<section name="Apache Agila Mailing Lists">
+
+<p>
+There are currently two publicly available mailing lists for Agila. 
+The user list is for general discussion of the Agila project.
+It is low traffic, as the Agila project has not yet shipped.
+The dev list is for internal discussion among the Agila developers. It is
+open to the public if you are interested in seeing how the sausage is made.
+</p>
+
+<table>
+  <tr>
+    <td>
+      <p>
+          <strong>User List</strong> :
+          <a href="mailto:agila-user@incubator.apache.org">
+          agila-user@incubator.apache.org</a>
+      </p>
+    </td>
+    <td>
+      <p>
+        <a class="external"
+           rel="nofollow"
+           href="mailto:agila-user-subscribe@incubator.apache.org">
+           Subscribe</a>
+      </p>
+    </td>
+    <td>
+      <p>
+        <a class="external"
+           rel="nofollow"
+           href="mailto:agila-user-unsubscribe@incubator.apache.org">
+           Unsubscribe</a>
+      </p>
+    </td>
+    <td>
+      <p>
+        <a href="http://mail-archives.apache.org/mod_mbox/incubator-agila-user/">Archive</a>
+      </p>
+    </td>
+  </tr>
+  <tr>
+    <td>
+      <p>
+        <strong>Dev List</strong> : <a  href="mailto:agila-dev@incubator.apache.org">agila-dev@incubator.apache.org</a>
+      </p>
+    </td>
+    <td>
+      <p>
+        <a class="external"
+           rel="nofollow"
+           href="mailto:agila-dev-subscribe@incubator.apache.org">Subscribe</a> 
+      </p>
+    </td>
+    <td>
+      <p>
+        <a class="external"
+           rel="nofollow"
+           href="mailto:agila-dev-unsubscribe@incubator.apache.org">Unsubscribe</a>
+      </p>
+    </td>
+    <td>
+      <p>
+        <a href="http://mail-archives.apache.org/mod_mbox/incubator-agila-dev/">Archive</a>
+      </p>
+    </td>
+  </tr>
+</table>
+
+</section>
+</body>
+</document>
+

Added: incubator/agila/site/xdocs/newshistory.xml
URL: http://svn.apache.org/viewcvs/incubator/agila/site/xdocs/newshistory.xml?rev=348536&view=auto
==============================================================================
--- incubator/agila/site/xdocs/newshistory.xml (added)
+++ incubator/agila/site/xdocs/newshistory.xml Wed Nov 23 12:02:20 2005
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+
+    Copyright 2003-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.
+-->
+
+<document>
+
+ <properties>
+  <title>News</title>
+  <author email="agila-dev@incubator.apache.org">Apache Agila Development Team</author>
+ </properties>
+
+ <body>
+
+<section name="Older Agila News">
+
+  <p>
+    Nothing so far.
+  </p>
+</section>
+
+ </body>
+</document>
+

Added: incubator/agila/site/xdocs/roadmap.xml
URL: http://svn.apache.org/viewcvs/incubator/agila/site/xdocs/roadmap.xml?rev=348536&view=auto
==============================================================================
--- incubator/agila/site/xdocs/roadmap.xml (added)
+++ incubator/agila/site/xdocs/roadmap.xml Wed Nov 23 12:02:20 2005
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Copyright 2003-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.
+-->
+  
+<document>
+
+ <properties>
+  <title>Project Roadmap</title>
+  <author email="agila-dev@incubator.apache.org">Apache Agila Development Team</author>
+ </properties>
+
+ <body>
+  <section name="Roadmap">
+
+  <p>
+  Currently in progress on the <a href="mail-lists.html">developer's list.</a>
+  </p>
+
+  <p>
+    <a href="mailto:agila-dev@incubator.apache.org?subject=New Feature Idea">Submit an Idea</a>
+  </p>
+
+</section>
+
+</body>
+</document>
+   

Added: incubator/agila/site/xdocs/stylesheets/project.xml
URL: http://svn.apache.org/viewcvs/incubator/agila/site/xdocs/stylesheets/project.xml?rev=348536&view=auto
==============================================================================
--- incubator/agila/site/xdocs/stylesheets/project.xml (added)
+++ incubator/agila/site/xdocs/stylesheets/project.xml Wed Nov 23 12:02:20 2005
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<project name="Apache Agila Project"
+        href="http://incubator.apache.org/agila/">
+
+    <title>Apache Agila</title>
+    <logo href="/images/Agila.gif">Apache Agila</logo>
+
+    <body>
+
+    <menu name="General">
+        <item name="Home"                   href="/index.html"/>
+        <item name="License"                href="/license.html"/>
+        <item name="ASF"                    href="http://www.apache.org/"/>
+        <item name="Downloads"              href="/downloads.html"/>
+        <item name="javadoc"                href="/javadoc.html"/>
+    </menu>
+
+    <menu name="Community">
+        <item name="Get Involved"           href="/get-involved.html"/>
+        <item name="Committers"             href="/team-list.html"/>
+        <item name="Mailing Lists"          href="/mail-lists.html"/>
+        <item name="Documentation"          href="/documentation.html"/>
+        <item name="FAQ"                    href="/faq.html"/>
+        <item name="Wiki"                   href="http://wiki.apache.org/agila"/>
+    </menu>
+
+    <menu name="Development">
+        <item name="Road Map / TODO"        href="/roadmap.html"/>
+        <item name="Source Code"            href="/svn.html"/>
+        <item name="Coding Standards"       href="http://wiki.apache.org/geronimo/CodingStandards"/>
+        <item name="JIRA"                   href="http://issues.apache.org/jira/secure/BrowseProject.jspa?id=10630"/>
+        <item name="Dependencies"           href="/dependencies.html"/>
+    </menu>
+
+    </body>
+</project>

Added: incubator/agila/site/xdocs/stylesheets/project.xml_jakarta
URL: http://svn.apache.org/viewcvs/incubator/agila/site/xdocs/stylesheets/project.xml_jakarta?rev=348536&view=auto
==============================================================================
--- incubator/agila/site/xdocs/stylesheets/project.xml_jakarta (added)
+++ incubator/agila/site/xdocs/stylesheets/project.xml_jakarta Wed Nov 23 12:02:20 2005
@@ -0,0 +1,102 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<project name="Jakarta Site"
+        href="http://jakarta.apache.org/">
+
+    <title>The Jakarta Site</title>
+
+    <!-- If you want your project logo hyperlinked to the project home
+         page in the upper right corner of each generated page, set "href"
+         below to the URL of the image, and uncomment this element
+    <logo href="http://jakarta.apache.org/images/jakarta-logo.gif">
+      The Jakarta Project
+    </logo>
+    -->
+
+
+    <body>
+    <menu name='ApacheCon 2004 US'>
+        <item name='Join Us At ApacheCon!' href='http://ApacheCon.Com/2004/US/'/>
+    </menu>
+    <menu name="About Jakarta">
+        <item name="Welcome"               	href="/index.html"/>
+        <item name="News &amp; Status"     	href="/site/news/index.html"/>
+        <item name="Jakarta Wiki"        	href="http://wiki.apache.org/jakarta/"/>
+        <item name="Search Jakarta"         	href="http://www.google.com/advanced_search?q=+site:jakarta.apache.org&amp;hl=en&amp;as_qdr=all"/>
+    </menu>
+    <menu name="Downloads">
+        <item name="Binaries"              	href="/site/binindex.cgi"/>
+        <item name="Source Code"           	href="/site/sourceindex.cgi"/>
+        <item name="CVS Repositories"      	href="/site/cvsindex.html"/>
+    </menu>
+    <menu name="Support">
+        <item name="Mailing Lists"         	href="/site/mail2.html"/>
+        <item name="Bug Database"          	href="/site/bugs.html"/>
+    </menu>
+    <menu name="Reference">
+        <item name="Apache Website"         	href="http://www.apache.org/"/>
+        <item name="How The ASF Works"      	href="http://www.apache.org/foundation/how-it-works.html"/>
+        <item name="Developer Resources"	href="http://www.apache.org/dev/"/>
+        <item name="Contacting Us"         	href="/site/contact.html"/>
+        <item name="Our Mission"           	href="/site/mission.html"/>
+        <item name="Who We Are"            	href="/site/whoweare.html"/>
+        <item name="Our FAQs"              	href="/site/faqs.html"/>
+        <item name="Get Involved"          	href="/site/getinvolved.html"/>
+        <item name="Vendor Support"        	href="/site/vendors.html"/>
+        <item name="Project Guidelines"    	href="/site/guidelines.html"/>
+        <item name="Reference Library"     	href="/site/library.html"/>
+        <item name="Website Maintenance"   	href="/site/jakarta-site2.html"/>
+        <item name="Apache on the JSPA"    	href="/site/jspa-position.html"/>
+        <item name="Acknowledgements"      	href="/site/acknowledgements.html"/>
+        <item name="Legal"                 	href="/site/legal.html"/>
+    </menu>
+    <menu name="Products">
+        <item name="Alexandria"            	href="/alexandria/index.html"/>
+        <item name="BCEL"                  	href="/bcel/index.html"/>
+        <item name="BSF"                   	href="/bsf/index.html"/>
+        <item name="Cactus"                	href="/cactus/index.html"/>
+        <item name="Commons"               	href="/commons/index.html"/>
+        <item name="ECS"                   	href="/ecs/index.html"/>
+        <item name="HiveMind"			href="/hivemind/index.html"/>
+        <item name="JMeter"                	href="/jmeter/index.html"/>
+        <item name="Lucene"                	href="/lucene/index.html"/>
+        <item name="ORO"                   	href="/oro/index.html"/>
+        <item name="POI"                   	href="/poi/index.html"/>
+        <item name="Regexp"                	href="/regexp/index.html"/>
+        <item name="Slide"                 	href="/slide/index.html"/>
+        <item name="Taglibs"               	href="/taglibs/index.html"/>
+        <item name="Tapestry"              	href="/tapestry/index.html"/>
+        <item name="Tomcat"                	href="/tomcat/index.html"/>
+        <item name="Turbine"               	href="/turbine/index.html"/>
+        <item name="Velocity"              	href="/velocity/index.html"/>
+        <item name="Watchdog"              	href="/watchdog/index.html"/>
+    </menu>
+    <menu name="Related">
+        <item name="Ant"                   	href="http://ant.apache.org/"/>
+        <item name="Avalon"                	href="http://avalon.apache.org/"/>
+        <item name="Cocoon"                	href="http://cocoon.apache.org/"/>
+        <item name="DB"                   	href="http://db.apache.org"/>
+        <item name="Excalibur"                	href="http://excalibur.apache.org/"/>
+        <item name="Forrest"                	href="http://forrest.apache.org/"/>
+        <item name="Geronimo"                	href="http://geronimo.apache.org/"/>
+        <item name="Gump"                  	href="http://gump.apache.org/"/>
+        <item name="HTTP Server"         	href="http://httpd.apache.org"/>
+        <item name="Incubator"          	href="http://incubator.apache.org"/>
+        <item name="James"                 	href="http://james.apache.org/"/>
+        <item name="Logging"                	href="http://logging.apache.org/"/>
+        <item name="Maven"                	href="http://maven.apache.org/"/>
+        <item name="Portals"              	href="http://portals.apache.org/"/>
+        <item name="Struts"                	href="http://struts.apache.org/"/>
+        <item name="WebServices"            	href="http://ws.apache.org/"/>
+        <item name="XML"                   	href="http://xml.apache.org"/>
+    </menu>
+    <menu name="Resources (Unofficial)">
+        <item name="Apache News"                href="http://www.apachenews.org/"/>
+        <item name="Apache Wiki (Obsolete)"     href="http://nagoya.apache.org/wiki/apachewiki.cgi"/>
+        <item name="Japanese"                   href="http://jakarta.terra-intl.com/"/>
+        <item name="Korean"                     href="http://jakarta.apache-korea.org"/>
+        <item name="JPackage"                   href="http://www.jpackage.org/"/>
+        <item name="FreeBSD Java Ports"         href="http://www.freebsd.org/ports/java.html"/>
+        <item name="Planet Apache"              href="http://www.planetapache.org/"/>
+    </menu>
+    </body>
+</project>

Added: incubator/agila/site/xdocs/stylesheets/site.vsl
URL: http://svn.apache.org/viewcvs/incubator/agila/site/xdocs/stylesheets/site.vsl?rev=348536&view=auto
==============================================================================
--- incubator/agila/site/xdocs/stylesheets/site.vsl (added)
+++ incubator/agila/site/xdocs/stylesheets/site.vsl Wed Nov 23 12:02:20 2005
@@ -0,0 +1,328 @@
+<!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 -->
+
+    ## Defined variables
+    #set ($bodybg = "#ffffff")
+    #set ($bodyfg = "#000000")
+    #set ($bodylink = "#525D76")
+    #set ($bannerbg = "#525D76")
+    #set ($bannerfg = "#ffffff")
+    #set ($subbannerbg = "#828DA6")
+    #set ($subbannerfg = "#ffffff")
+    #set ($tablethbg = "#039acc")
+    #set ($tabletdbg = "#a0ddf0")
+    
+<!-- start the processing -->
+#document()
+<!-- end the processing -->
+
+## This is where the macro's live
+
+#macro ( table $table)
+<table>
+    #foreach ( $items in $table.getChildren() )
+        #if ($items.getName().equals("tr"))
+            #tr ($items)
+        #end
+    #end
+</table>
+#end
+
+#macro ( tr $tr)
+<tr>
+    #foreach ( $items in $tr.getChildren() )
+        #if ($items.getName().equals("td"))
+            #td ($items)
+        #elseif ($items.getName().equals("th"))
+            #th ($items)
+        #end
+    #end
+</tr>
+#end
+
+#macro ( td $value)
+#if ($value.getAttributeValue("colspan"))
+#set ($colspan = $value.getAttributeValue("colspan"))
+#end
+#if ($value.getAttributeValue("rowspan"))
+#set ($rowspan = $value.getAttributeValue("rowspan"))
+#end
+<td bgcolor="$tabletdbg" colspan="$!colspan" rowspan="$!rowspan" valign="top" align="left">
+    <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+        #if ($value.getText().length() != 0 || $value.hasChildren())
+        $value.getContent()
+        #else
+        &nbsp;
+        #end
+    </font>
+</td>
+#end
+
+#macro ( th $value)
+#if ($value.getAttributeValue("colspan"))
+#set ($colspan = $value.getAttributeValue("colspan"))
+#end
+#if ($value.getAttributeValue("rowspan"))
+#set ($rowspan = $value.getAttributeValue("rowspan"))
+#end
+<th bgcolor="$tablethbg" colspan="$!colspan" rowspan="$!rowspan" valign="top" align="left">
+    <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+        #if ($value.getText().length() != 0 || $value.hasChildren())
+        $value.getContent()
+        #else
+        &nbsp;
+        #end
+    </font>
+</th>
+#end
+
+#macro ( projectanchor $name $value )
+#if ($value.startsWith("http://"))
+    <a href="$value">$name</a>
+#elseif ($value.startsWith("/site"))
+    <a href="http://jakarta.apache.org$value">$name</a>
+#else
+    <a href="$relativePath$value">$name</a>
+#end
+#end
+
+#macro ( metaauthor $author $email )
+            <meta name="author" value="$author">
+            <meta name="email" value="$email">
+#end
+
+#macro ( image $value )
+#if ($value.getAttributeValue("width"))
+#set ($width=$value.getAttributeValue("width"))
+#end
+#if ($value.getAttributeValue("height"))
+#set ($height=$value.getAttributeValue("height"))
+#end
+#if ($value.getAttributeValue("align"))
+#set ($align=$value.getAttributeValue("align"))
+#end
+<img src="$relativePath$value.getAttributeValue("src")" width="$!width" height="$!height" align="$!align">
+#end
+
+#macro ( source $value)
+    <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>$escape.getText($value.getText())</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>
+#end
+
+#macro ( subsection $subsection)
+    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="$subbannerbg">
+        <font color="$subbannerfg" face="arial,helvetica,sanserif">
+          <a name="$subsection.getAttributeValue("name")"><strong>$subsection.getAttributeValue("name")</strong></a>
+        </font>
+      </td></tr>
+      <tr><td>
+        <blockquote>
+        #foreach ( $items in $subsection.getChildren() )
+            #if ($items.getName().equals("img"))
+                #image ($items)
+            #elseif ($items.getName().equals("source"))
+                #source ($items)
+            #elseif ($items.getName().equals("table"))
+                #table ($items)
+            #else
+                $items
+            #end
+        #end
+        </blockquote>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+#end
+
+#macro ( section $section)
+    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="$bannerbg">
+        <font color="$bannerfg" face="arial,helvetica,sanserif">
+          <a name="$section.getAttributeValue("name")"><strong>$section.getAttributeValue("name")</strong></a>
+        </font>
+      </td></tr>
+      <tr><td>
+        <blockquote>
+        #foreach ( $items in $section.getChildren() )
+            #if ($items.getName().equals("img"))
+                #image ($items)
+            #elseif ($items.getName().equals("source"))
+                #source ($items)
+            #elseif ($items.getName().equals("table"))
+                #table ($items)
+            #elseif ($items.getName().equals("subsection"))
+                #subsection ($items)
+            #else
+                $items
+            #end
+        #end
+        </blockquote>
+        </p>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+#end
+
+#macro ( makeProject )
+
+    <!-- ============================================================ -->
+
+    #set ($menus = $project.getChild("body").getChildren("menu"))
+    #foreach ( $menu in $menus )
+        <p><strong>$menu.getAttributeValue("name")</strong></p>
+        <ul>
+        #foreach ( $item in $menu.getChildren() )
+            #set ($name = $item.getAttributeValue("name"))
+            <li>#projectanchor($name $item.getAttributeValue("href"))</li>
+        #end
+        </ul>
+    #end
+#end
+
+#macro (getProjectImage)
+#if ($project.getChild("logo"))
+#set ( $logoString = $project.getChild("logo").getAttributeValue("href") )
+<td align="left">
+#if ( $logoString.startsWith("/") )
+<a href="$project.getAttributeValue("href")"><img src="$relativePath$logoString" alt="$project.getChild("logo").getText()" border="0"/></a>
+#else
+<a href="$project.getAttributeValue("href")"><img src="$relativePath/$logoString" alt="$project.getChild("logo").getText()" border="0"/></a>
+#end
+</td>
+#end
+#end
+
+#macro (printMeta $metaElement)
+<meta #set ($attribs = $metaElement.getAttributes())
+#foreach ($a in $attribs) $a.getName()="$a.getValue()" #end />
+#end
+
+#macro (document)
+    <!-- ====================================================================== -->
+    <!-- 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"/>
+
+            #set ($authors = $root.getChild("properties").getChildren("author"))
+            #foreach ( $au in $authors )
+                #metaauthor ( $au.getText() $au.getAttributeValue("email") )
+            #end
+
+           #set ($metas = $root.getChildren("meta"))
+
+            ##    Parse meta directives such as
+            ##    <meta name="keyword" content="jakarta, java"/>
+            #foreach ($meta in $metas) #printMeta($meta) #end
+
+            ##    Support for <base> tags.
+            #if ($root.getChild("properties").getChild("base"))
+              #set ($url = $root.getChild("properties").getChild("base").getAttributeValue("href"))
+              <base href="$url"/>
+            #end
+
+            <title>$project.getChild("title").getText() - $root.getChild("properties").getChild("title").getText()</title>
+        </head>
+
+        <body bgcolor="$bodybg" text="$bodyfg" link="$bodylink">        
+            <table border="0" width="100%" cellspacing="0">
+                <!-- TOP IMAGE -->
+                <tr>
+                    <td align='LEFT'>
+                      <table>
+                        <tr>
+                          <td>#getProjectImage()</td>
+                        </tr>
+                      </table>
+                    </td>
+                    <td align='RIGHT'>
+                      <a href="http://incubator.apache.org">
+                        <img src="images/apache-incubator-logo.png" alt="$project.getChild("logo").getText()" 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/2005/US/">
+                        <img src="http://apache.org/images/ac2005us_blue_125x125.jpg" height="125"
+                             width="125" border="0" alt="ApacheCon US 2005" />
+                    </a>
+-->
+
+                   <!-- regular menu -->
+
+                    #makeProject()
+                    </td>
+                    <td width="80%" align="left" valign="top">
+                    #set ($allSections = $root.getChild("body").getChildren("section"))
+                    #foreach ( $section in $allSections )
+                        #section ($section)
+                    #end
+                    </td>
+                </tr>
+
+                <!-- FOOTER -->
+                <tr><td colspan="2">
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr><td colspan="2">
+                    <div align="center"><font color="$bodylink" size="-1"><em>
+                    Copyright &#169; 2003-2005, The Apache Software Foundation
+                    </em></font></div>
+                </td></tr>
+            </table>
+        </body>
+    </html>
+#end
+
+
+
+
+

Added: incubator/agila/site/xdocs/stylesheets/site.xsl
URL: http://svn.apache.org/viewcvs/incubator/agila/site/xdocs/stylesheets/site.xsl?rev=348536&view=auto
==============================================================================
--- incubator/agila/site/xdocs/stylesheets/site.xsl (added)
+++ incubator/agila/site/xdocs/stylesheets/site.xsl Wed Nov 23 12:02:20 2005
@@ -0,0 +1,277 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!-- Content Stylesheet for "jakarta-site2" Documentation -->
+<!-- NOTE:  Changes here should also be reflected in "site.vsl" and vice
+     versa, so either Anakia or XSLT can be used for document generation.   -->
+
+
+<!-- Outstanding Compatibility Issues (with Anakia-based stylesheets):
+
+* Handling of the <image> element to insert relative path prefixes
+
+* Functional equivalent of "site_printable.vsl" not yet started.
+
+-->
+
+
+<!-- $Id: site.xsl,v 1.7 2003/12/31 14:42:28 tetsuya Exp $ -->
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+  version="1.0">
+
+
+  <!-- Output method -->
+  <xsl:output method="html"
+            encoding="iso-8859-1"
+              indent="no"/>
+
+
+  <!-- Defined parameters (overrideable) -->
+  <xsl:param    name="relative-path" select="'.'"/>
+
+  <!-- Defined variables (non-overrideable) -->
+  <xsl:variable name="body-bg"       select="'#ffffff'"/>
+  <xsl:variable name="body-fg"       select="'#000000'"/>
+  <xsl:variable name="body-link"     select="'#525D76'"/>
+  <xsl:variable name="banner-bg"     select="'#525D76'"/>
+  <xsl:variable name="banner-fg"     select="'#ffffff'"/>
+  <xsl:variable name="sub-banner-bg" select="'#828DA6'"/>
+  <xsl:variable name="sub-banner-fg" select="'#ffffff'"/>
+  <xsl:variable name="table-th-bg"   select="'#039acc'"/>
+  <xsl:variable name="table-td-bg"   select="'#a0ddf0'"/>
+  <xsl:variable name="source-color"  select="'#023264'"/>
+
+
+  <!-- Process an entire document into an HTML page -->
+  <xsl:template match="document">
+    <xsl:variable name="project"
+                select="document('project.xml')/project"/>
+
+    <html>
+    <head>
+    <xsl:apply-templates select="meta"/>
+    <title><xsl:value-of select="$project/title"/> - <xsl:value-of select="properties/title"/></title>
+    <xsl:for-each select="properties/author">
+      <xsl:variable name="name">
+        <xsl:value-of select="."/>
+      </xsl:variable>
+      <xsl:variable name="email">
+        <xsl:value-of select="@email"/>
+      </xsl:variable>
+      <meta name="author" value="{$name}"/>
+      <meta name="email" value="{$email}"/>
+    </xsl:for-each>
+    </head>
+
+    <body bgcolor="{$body-bg}" text="{$body-fg}" link="{$body-link}"
+          alink="{$body-link}" vlink="{$body-link}">
+
+    <table border="0" width="100%" cellspacing="4">
+
+      <xsl:comment>PAGE HEADER</xsl:comment>
+      <tr><td colspan="2">
+
+        <xsl:comment>JAKARTA LOGO</xsl:comment>
+        <a href="http://jakarta.apache.org/">
+          <img src="http://jakarta.apache.org/images/jakarta-logo.gif"
+             align="left" alt="The Jakarta Project" border="0"/>
+        </a>
+        <xsl:if test="$project/logo">
+          <xsl:variable name="alt">
+            <xsl:value-of select="$project/logo"/>
+          </xsl:variable>
+          <xsl:variable name="home">
+            <xsl:value-of select="$project/@href"/>
+          </xsl:variable>
+          <xsl:variable name="src">
+            <xsl:value-of select="$project/logo/@href"/>
+          </xsl:variable>
+
+          <xsl:comment>PROJECT LOGO</xsl:comment>
+          <a href="{$home}">
+            <img src="{$src}" align="right" alt="{$alt}" border="0"/>
+          </a>
+        </xsl:if>
+
+      </td></tr>
+
+      <xsl:comment>HEADER SEPARATOR</xsl:comment>
+      <tr>
+        <td colspan="2">
+          <hr noshade="" size="1"/>
+        </td>
+      </tr>
+
+      <tr>
+
+        <xsl:comment>LEFT SIDE NAVIGATION</xsl:comment>
+        <td width="20%" valign="top" nowrap="true">
+          <xsl:apply-templates select="$project/body/menu"/>
+        </td>
+
+        <xsl:comment>RIGHT SIDE MAIN BODY</xsl:comment>
+        <td width="80%" valign="top" align="left">
+          <xsl:apply-templates select="body/section"/>
+        </td>
+
+      </tr>
+
+      <xsl:comment>FOOTER SEPARATOR</xsl:comment>
+      <tr>
+        <td colspan="2">
+          <hr noshade="" size="1"/>
+        </td>
+      </tr>
+
+      <xsl:comment>PAGE FOOTER</xsl:comment>
+      <tr><td colspan="2">
+        <div align="center"><font color="{$body-link}" size="-1"><em>
+        Copyright &#169; 1999-2004, Apache Software Foundation
+        </em></font></div>
+      </td></tr>
+
+    </table>
+    </body>
+    </html>
+
+  </xsl:template>
+
+
+  <!-- Process a menu for the navigation bar -->
+  <xsl:template match="menu">
+    <p><strong><xsl:value-of select="@name"/></strong></p>
+    <ul>
+      <xsl:apply-templates select="item"/>
+    </ul>
+  </xsl:template>
+
+
+  <!-- Process a menu item for the navigation bar -->
+  <xsl:template match="item">
+    <xsl:variable name="href">
+      <xsl:choose>
+            <xsl:when test="starts-with(@href, 'http://')">
+                <xsl:value-of select="@href"/>
+            </xsl:when>
+            <xsl:when test="starts-with(@href, '/site')">
+                <xsl:text>http://jakarta.apache.org</xsl:text><xsl:value-of select="@href"/>
+            </xsl:when>
+            <xsl:otherwise>
+                <xsl:value-of select="$relative-path"/><xsl:value-of select="@href"/>
+            </xsl:otherwise>    
+      </xsl:choose>
+    </xsl:variable>
+    <li><a href="{$href}"><xsl:value-of select="@name"/></a></li>
+  </xsl:template>
+
+
+  <!-- Process a documentation section -->
+  <xsl:template match="section">
+    <xsl:variable name="name">
+      <xsl:value-of select="@name"/>
+    </xsl:variable>
+    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <!-- Section heading -->
+      <tr><td bgcolor="{$banner-bg}">
+          <font color="{$banner-fg}" face="arial,helvetica.sanserif">
+          <a name="{$name}">
+          <strong><xsl:value-of select="@name"/></strong></a></font>
+      </td></tr>
+      <!-- Section body -->
+      <tr><td><blockquote>
+        <xsl:apply-templates/>
+      </blockquote></td></tr>
+    </table>
+  </xsl:template>
+
+
+  <!-- Process a documentation subsection -->
+  <xsl:template match="subsection">
+    <xsl:variable name="name">
+      <xsl:value-of select="@name"/>
+    </xsl:variable>
+    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <!-- Subsection heading -->
+      <tr><td bgcolor="{$sub-banner-bg}">
+          <font color="{$sub-banner-fg}" face="arial,helvetica.sanserif">
+          <a name="{$name}">
+          <strong><xsl:value-of select="@name"/></strong></a></font>
+      </td></tr>
+      <!-- Subsection body -->
+      <tr><td><blockquote>
+        <xsl:apply-templates/>
+      </blockquote></td></tr>
+    </table>
+  </xsl:template>
+
+
+  <!-- Process a source code example -->
+  <xsl:template match="source">
+    <div align="left">
+      <table cellspacing="4" cellpadding="0" border="0">
+        <tr>
+          <td bgcolor="{$source-color}" width="1" height="1">
+            <img src="/images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/>
+          </td>
+          <td bgcolor="{$source-color}" height="1">
+            <img src="/images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/>
+          </td>
+          <td bgcolor="{$source-color}" width="1" height="1">
+            <img src="/images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/>
+          </td>
+        </tr>
+        <tr>
+          <td bgcolor="{$source-color}" width="1">
+            <img src="/images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/>
+          </td>
+          <td bgcolor="#ffffff" height="1"><pre>
+            <xsl:value-of select="."/>
+          </pre></td>
+          <td bgcolor="{$source-color}" width="1">
+            <img src="/images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/>
+          </td>
+        </tr>
+        <tr>
+          <td bgcolor="{$source-color}" width="1" height="1">
+            <img src="/images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/>
+          </td>
+          <td bgcolor="{$source-color}" height="1">
+            <img src="/images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/>
+          </td>
+          <td bgcolor="{$source-color}" width="1" height="1">
+            <img src="/images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/>
+          </td>
+        </tr>
+      </table>
+    </div>
+  </xsl:template>
+
+  <!-- specially process td tags ala site.vsl -->
+  <xsl:template match="td">
+    <td bgcolor="{$table-td-bg}" valign="top" align="left">
+        <xsl:if test="@colspan"><xsl:attribute name="colspan"><xsl:value-of select="@colspan"/></xsl:attribute></xsl:if>
+        <xsl:if test="@rowspan"><xsl:attribute name="rowspan"><xsl:value-of select="@rowspan"/></xsl:attribute></xsl:if>
+        <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+            <xsl:apply-templates/>
+        </font>
+    </td>
+  </xsl:template>
+  
+  <!-- handle th ala site.vsl -->
+  <xsl:template match="th">
+    <td bgcolor="{$table-th-bg}" valign="top">
+        <xsl:if test="@colspan"><xsl:attribute name="colspan"><xsl:value-of select="@colspan"/></xsl:attribute></xsl:if>
+        <xsl:if test="@rowspan"><xsl:attribute name="rowspan"><xsl:value-of select="@rowspan"/></xsl:attribute></xsl:if>
+        <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+            <xsl:apply-templates />
+        </font>
+    </td>
+  </xsl:template>
+  
+  <!-- Process everything else by just passing it through -->
+  <xsl:template match="*|@*">
+    <xsl:copy>
+      <xsl:apply-templates select="@*|*|text()"/>
+    </xsl:copy>
+  </xsl:template>
+
+</xsl:stylesheet>

Added: incubator/agila/site/xdocs/stylesheets/site_printable.vsl
URL: http://svn.apache.org/viewcvs/incubator/agila/site/xdocs/stylesheets/site_printable.vsl?rev=348536&view=auto
==============================================================================
--- incubator/agila/site/xdocs/stylesheets/site_printable.vsl (added)
+++ incubator/agila/site/xdocs/stylesheets/site_printable.vsl Wed Nov 23 12:02:20 2005
@@ -0,0 +1,260 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+<!-- Content Stylesheet for Site -->
+
+    ## Defined variables
+    #set ($bodybg = "#ffffff")
+    #set ($bodyfg = "#000000")
+    #set ($bodylink = "#525D76")
+    #set ($bannerbg = "#525D76")
+    #set ($bannerfg = "#ffffff")
+    #set ($subbannerbg = "#828DA6")
+    #set ($subbannerfg = "#ffffff")
+    #set ($tablethbg = "#039acc")
+    #set ($tabletdbg = "#a0ddf0")
+
+<!-- start the processing -->
+#document()
+<!-- end the processing -->
+
+## This is where the macro's live
+
+#macro ( table $table)
+<table>
+    #foreach ( $items in $table.getChildren() )
+        #if ($items.getName().equals("tr"))
+            #tr ($items)
+        #end
+    #end
+</table>
+#end
+
+#macro ( tr $tr)
+<tr>
+    #foreach ( $items in $tr.getChildren() )
+        #if ($items.getName().equals("td"))
+            #td ($items)
+        #elseif ($items.getName().equals("th"))
+            #th ($items)
+        #end
+    #end
+</tr>
+#end
+
+#macro ( td $value)
+#if ($value.getAttributeValue("colspan"))
+#set ($colspan = $value.getAttributeValue("colspan"))
+#end
+#if ($value.getAttributeValue("rowspan"))
+#set ($rowspan = $value.getAttributeValue("rowspan"))
+#end
+<td bgcolor="$tabletdbg" colspan="$!colspan" rowspan="$!rowspan" valign="top" align="left">
+    <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+        #if ($value.getText().length() != 0 || $value.hasChildren())
+        $value.getContent()
+        #else
+        &nbsp;
+        #end
+    </font>
+</td>
+#end
+
+#macro ( th $value)
+#if ($value.getAttributeValue("colspan"))
+#set ($colspan = $value.getAttributeValue("colspan"))
+#end
+#if ($value.getAttributeValue("rowspan"))
+#set ($rowspan = $value.getAttributeValue("rowspan"))
+#end
+<td bgcolor="$tablethbg" colspan="$!colspan" rowspan="$!rowspan" valign="top" align="left">
+    <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+        #if ($value.getText().length() != 0 || $value.hasChildren())
+        $value.getContent()
+        #else
+        &nbsp;
+        #end
+    </font>
+</td>
+#end
+
+#macro ( projectanchor $name $value )
+#if ($value.startsWith("http://"))
+    &#149;&nbsp;<a href="$value">$name</a>
+#elseif ($value.startsWith("/site"))
+    &#149;&nbsp;<a href="http://jakarta.apache.org$value">$name</a>
+#else
+    &#149;&nbsp;<a href="$relativePath$value">$name</a>
+#end
+#end
+
+#macro ( metaauthor $author $email )
+            <meta name="author" value="$author">
+            <meta name="email" value="$email">
+#end
+
+#macro ( image $value )
+#if ($value.getAttributeValue("width"))
+#set ($width=$value.getAttributeValue("width"))
+#end
+#if ($value.getAttributeValue("height"))
+#set ($height=$value.getAttributeValue("height"))
+#end
+#if ($value.getAttributeValue("align"))
+#set ($align=$value.getAttributeValue("align"))
+#end
+<img src="$relativePath$value.getAttributeValue("src")" width="$!width" height="$!height" align="$!align">
+#end
+
+#macro ( source $value)
+    <div align="left">
+      <font size="2"><pre>$escape.getText($value.getText())</pre></font>
+    </div>
+#end
+
+#macro ( subsection $subsection)
+    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="$subbannerbg">
+        <font color="$subbannerfg" face="arial,helvetica,sanserif">
+          <a name="$subsection.getAttributeValue("name")"><strong>$subsection.getAttributeValue("name")</strong></a>
+        </font>
+      </td></tr>
+      <tr><td><br/></td></tr>
+      <tr><td>
+        <blockquote>
+        #foreach ( $items in $subsection.getChildren() )
+            #if ($items.getName().equals("img"))
+                #image ($items)
+            #elseif ($items.getName().equals("source"))
+                #source ($items)
+            #elseif ($items.getName().equals("table"))
+                #table ($items)
+            #else
+                $items
+            #end
+        #end
+        </blockquote>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+#end
+
+#macro ( section $section)
+    <table border="0" cellspacing="0" cellpadding="2" width="100%">
+      <tr><td bgcolor="$bannerbg">
+        <font color="$bannerfg" face="arial,helvetica,sanserif">
+          <a name="$section.getAttributeValue("name")"><strong>$section.getAttributeValue("name")</strong></a>
+        </font>
+      </td></tr>
+      <tr><td><br/></td></tr>
+      <tr><td>
+        <!--<blockquote>-->
+        #foreach ( $items in $section.getChildren() )
+            #if ($items.getName().equals("img"))
+                #image ($items)
+            #elseif ($items.getName().equals("source"))
+                #source ($items)
+            #elseif ($items.getName().equals("table"))
+                #table ($items)
+            #elseif ($items.getName().equals("subsection"))
+                #subsection ($items)
+            #else
+                $items
+            #end
+        #end
+        <!--</blockquote>-->
+        </p>
+      </td></tr>
+      <tr><td><br/></td></tr>
+    </table>
+#end
+
+#macro (getProjectImage)
+#if ($project.getChild("logo"))
+<td align="left">
+<a href="http://jakarta.apache.org"><img src="http://jakarta.apache.org/images/jakarta-logo.gif" border="0"/></a>
+
+#set ( $logoString = $project.getChild("logo").getAttributeValue("href") )
+#if ( $logoString.startsWith("/") )
+<a href="$project.getAttributeValue("href")"><img src="$relativePath$logoString" alt="$project.getChild("logo").getText()" border="0"/></a>
+#else
+<a href="$project.getAttributeValue("href")"><img src="$relativePath/$logoString" alt="$project.getChild("logo").getText()" border="0"/></a>
+#end
+</td>
+#else
+<td>
+<a href="http://jakarta.apache.org"><img src="http://jakarta.apache.org/images/jakarta-logo.gif" align="left" border="0"/></a>
+</td>
+#end
+#end
+
+#macro ( makeHorizontalProject )
+    #set ($menus = $project.getChild("body").getChildren("menu"))
+    <table cellspacing="4">
+    #foreach ( $menu in $menus )
+        <tr><td>
+        <strong>$menu.getAttributeValue("name")</strong>
+        </td><td>
+        #foreach ( $item in $menu.getChildren() )
+            #set ($name = $item.getAttributeValue("name"))
+             #projectanchor($name $item.getAttributeValue("href"))&nbsp;
+        #end
+        </td>
+        </tr>
+    #end
+    </table>
+#end
+
+#macro (document)
+    <!-- ====================================================================== -->
+    <!-- Main Page Section -->
+    <!-- ====================================================================== -->
+    <html>
+        <head>
+            <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
+
+            #set ($authors = $root.getChild("properties").getChildren("author"))
+            #foreach ( $au in $authors )
+                #metaauthor ( $au.getText() $au.getAttributeValue("email") )
+            #end
+
+            <title>$project.getChild("title").getText() - $root.getChild("properties").getChild("title").getText()</title>
+        </head>
+
+        <body bgcolor="$bodybg" text="$bodyfg" link="$bodylink">        
+            <table border="0" width="100%" cellspacing="0">
+                <!-- TOP IMAGE -->
+                <tr>
+                    #getProjectImage()
+                </tr>
+            </table>
+            <table border="0" width="100%" cellspacing="4">
+                <tr><td>
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr>
+                    <td align="left" valign="top">
+                    #set ($allSections = $root.getChild("body").getChildren("section"))
+                    #foreach ( $section in $allSections )
+                        #section ($section)
+                    #end
+                    </td>
+                </tr>
+                <tr><td>
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr><td>
+                <!-- FOOT Navigation -->
+                #makeHorizontalProject ()
+                <!-- FOOTER -->
+                <tr><td>
+                    <hr noshade="" size="1"/>
+                </td></tr>
+                <tr><td>
+                    <div align="center"><font color="$bodylink" size="-1"><em>
+                    Copyright &#169; 1999-2004, Apache Software Foundation
+                    </em></font></div>
+                </td></tr>
+            </table>
+        </body>
+    </html>
+#end