You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by gr...@apache.org on 2007/08/15 00:09:05 UTC

svn commit: r565945 [2/2] - in /myfaces/site/trunk/src/site: ./ xdoc/ xdoc/community/ xdoc/docs/ xdoc/project_management/

Modified: myfaces/site/trunk/src/site/xdoc/gettingstarted.xml
URL: http://svn.apache.org/viewvc/myfaces/site/trunk/src/site/xdoc/gettingstarted.xml?view=diff&rev=565945&r1=565944&r2=565945
==============================================================================
--- myfaces/site/trunk/src/site/xdoc/gettingstarted.xml (original)
+++ myfaces/site/trunk/src/site/xdoc/gettingstarted.xml Tue Aug 14 15:09:03 2007
@@ -15,118 +15,98 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
 -->
-      
-        <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
-      
-    <document>
 
-<body>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
 
-<section name="Examples Application">
-    
-    <p>
-        Your first step with Apache MyFaces should be to have
-        a look at our examples application. You can do that
-        by going to our working distribution on <a href="http://www.irian.at/myfaces.jsf">
-          http://www.irian.at/myfaces.jsf</a>
-        or by deploying the examples application yourself. All
-        you need to do to get up and running is to follow the steps below!
-    </p>
-</section>
-
-
-<section name="What you need for the Examples Application">
-    
-    <ul>
-		<li>Tomcat 5.x. Download <a href="http://jakarta.apache.org/tomcat/index.html">here</a>.</li>
-		<li>MyFaces examples. Latest milestone webapp archive (myfaces-X.X.X-examples.zip or myfaces-X.X.X-examples.tgz) is <a href="http://myfaces.apache.org/download.html">here</a>.</li>
-    </ul>
-</section>
-
-
-<section name="Installing and Running the Examples">
-	
-	<ul>
-		<li>Unpack the MyFaces examples archive myfaces-X.X.X-examples.zip (or myfaces-X.X.X-examples.tgz) to a directory of your choice.</li>
-		<li>Remove any previous MyFaces webapps from your Tomcat installation and clean up your Tomcat work dir. Also make sure that there is no jsf-api.jar or jsf-impl.jar (i.e. Suns API and implementation) in the classpath or in one of Tomcat's lib directories (common/lib or shared/lib).</li>
-		<li>Copy the file simple.war (or any of the other example war-files) to the webapps dir of your Tomcat installation directory - and check once more that there is no old myfaces-examples directory there ;-)</li>
-		<li>Start Tomcat, if its not already running.</li>
-		<li> Start your browser and enjoy it at <a href="http://localhost:8080/myfaces-examples">http://localhost:8080/simple</a></li>
-	</ul>
-</section>
-
-<section name="Installing and Running Sun JSF-RI Samples with MyFaces">
-	
-	<ul>
-		<li><a href="risamples.html">see detailed description</a></li>
-	</ul>
-</section>
-
-<section name="Using MyFaces in your own web application">
-
-    <p>
-        Suggested step:
-        <ul>
-            <li>Look at the <a href="compatibility.html">compatibility list</a> to find out if your servlet container is supported.</li>
-        </ul>
-    </p>
-    <p>
-        There are two possible ways to start off with MyFaces, one is to start from the example-app:
-        <ul>
-            <li>If you want to have it simple, take the myfaces-X.X.X-examples.zip you downloaded before for looking at the examples, and extract the blank.war file (<a href="http://myfaces.apache.org/download.html">MyFaces binary</a>)</li>
-            <li>Rename the blank.war file to blank.zip, and extract this file - you have a working directory structure for a MyFaces application at hand after this step.</li>
-        </ul>
-    </p>
-    <p>
-        The second possibility is to download the core implementation and/or tomahawk (dependent on if you want to use the RI and the tomahawk components, or only MyFaces), and start from there:
-        <ul>
-            <li>Alternatively, download the latest <a href="http://myfaces.apache.org/download.html">MyFaces binary</a> release. You can download only the implementation (aka core) or the implementation and tomahawk.</li>
-            <li>Copy all *.jar files into your WEB-INF/lib directory. Some of the jar-files are optional, you can find more info on: <a
-            href="http://myfaces.apache.org/impl/dependencies.html">http://myfaces.apache.org/impl/dependencies.html</a> and <a
-            href="http://myfaces.apache.org/tomahawk/dependencies.html">http://myfaces.apache.org/tomahawk/dependencies.html</a></li>
-        </ul>
-    </p>
-
-    <p>
-        After you have downloaded the necessary packages and setup your project hierarchy, do this:
-
-        <ul>
-            <li>Make sure that there is no jsf-api.jar (i.e. Suns API implementation) in the classpath or in one of your container's shared lib directories (e.g. common/lib or shared/lib for Tomcat).</li>
-            <li>Configure your webapp's web.xml file (see conf/web.xml for example and documentation)</li>
-            <li>Add the following lines to your JSPs:</li>
+<document>
+    <body>
+        <section name="Examples Application">
+            <p>
+                Your first step with Apache MyFaces should be to have
+                a look at our examples application. You can do that
+                by going to our working distribution on <a href="http://www.irian.at/myfaces.jsf">
+                http://www.irian.at/myfaces.jsf</a>
+                or by deploying the examples application yourself. All
+                you need to do to get up and running is to follow the steps below!
+            </p>
+        </section>
+        <section name="What you need for the Examples Application">
             <ul>
-                <li><source xml:space="preserve">&lt;%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%&gt;</source></li>
-                <li><source xml:space="preserve">&lt;%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%&gt;</source></li>
+                <li>Tomcat 5.x. Download <a href="http://jakarta.apache.org/tomcat/index.html">here</a>.</li>
+                <li>MyFaces examples. Latest milestone webapp archive (myfaces-X.X.X-examples.zip or myfaces-X.X.X-examples.tgz) is <a href="http://myfaces.apache.org/download.html">here</a>.</li>
             </ul>
-        </ul>
-    </p>
-</section>
-
-<section name="Using the MyFaces extensions (aka Tomahawk) in your own web application">
-
-<ul>
-    <li>If you don't use the MyFaces implementation, you will need to add the file tomahawk.jar and its dependencies (see above) to your web-app directory.</li>
-    <li> To be able to use the MyFaces extensions (aka Tomahawk) add the following line to your JSPs:</li>
-    <ul>
-        <li><source xml:space="preserve">&lt;%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%&gt;</source></li>
-        <li><source xml:space="preserve">&lt;%@ taglib uri="http://myfaces.apache.org/wap" prefix="wap" %&gt;</source></li>
-    </ul>
-
-    For using the Tomahawk components, it's also very important to setup the MyFaces Extensions-Filter. You find the explanations
-    for doing this under: <a href="http://myfaces.apache.org/tomahawk/extensionsFilter.html">http://myfaces.apache.org/tomahawk/extensionsFilter.html</a>
-</ul>
-
-</section>
-
-<section name="Tutorials for getting started with JSF">
-    
-    <ul>
-		<li><a href="http://www.coreservlets.com/JSF-Tutorial/"> Core-Servlets JSF Tutorial by Marty Hall</a></li>
-    </ul>
-</section>
-
-     </body>
+        </section>
+        <section name="Installing and Running the Examples">
+            <ul>
+                <li>Unpack the MyFaces examples archive myfaces-X.X.X-examples.zip (or myfaces-X.X.X-examples.tgz) to a directory of your choice.</li>
+                <li>Remove any previous MyFaces webapps from your Tomcat installation and clean up your Tomcat work dir. Also make sure that there is no jsf-api.jar or jsf-impl.jar (i.e. Suns API and implementation) in the classpath or in one of Tomcat's lib directories (common/lib or shared/lib).</li>
+                <li>Copy the file simple.war (or any of the other example war-files) to the webapps dir of your Tomcat installation directory - and check once more that there is no old myfaces-examples directory there ;-)</li>
+                <li>Start Tomcat, if its not already running.</li>
+                <li> Start your browser and enjoy it at <a href="http://localhost:8080/myfaces-examples">http://localhost:8080/simple</a></li>
+            </ul>
+        </section>
+        <section name="Installing and Running Sun JSF-RI Samples with MyFaces">
+            <ul>
+                <li><a href="risamples.html">see detailed description</a></li>
+            </ul>
+        </section>
+        <section name="Using MyFaces in your own web application">
+            <p>
+                Suggested step:
+                <ul>
+                    <li>Look at the <a href="compatibility.html">compatibility list</a> to find out if your servlet container is supported.</li>
+                </ul>
+            </p>
+            <p>
+                There are two possible ways to start off with MyFaces, one is to start from the example-app:
+                <ul>
+                    <li>If you want to have it simple, take the myfaces-X.X.X-examples.zip you downloaded before for looking at the examples, and extract the blank.war file (<a href="http://myfaces.apache.org/download.html">MyFaces binary</a>)</li>
+                    <li>Rename the blank.war file to blank.zip, and extract this file - you have a working directory structure for a MyFaces application at hand after this step.</li>
+                </ul>
+            </p>
+            <p>
+                The second possibility is to download the core implementation and/or tomahawk (dependent on if you want to use the RI and the tomahawk components, or only MyFaces), and start from there:
+                <ul>
+                    <li>Alternatively, download the latest <a href="http://myfaces.apache.org/download.html">MyFaces binary</a> release. You can download only the implementation (aka core) or the implementation and tomahawk.</li>
+                    <li>Copy all *.jar files into your WEB-INF/lib directory. Some of the jar-files are optional, you can find more info on: <a
+                            href="http://myfaces.apache.org/impl/dependencies.html">http://myfaces.apache.org/impl/dependencies.html</a> and <a
+                            href="http://myfaces.apache.org/tomahawk/dependencies.html">http://myfaces.apache.org/tomahawk/dependencies.html</a></li>
+                </ul>
+            </p>
+
+            <p>
+                After you have downloaded the necessary packages and setup your project hierarchy, do this:
+
+                <ul>
+                    <li>Make sure that there is no jsf-api.jar (i.e. Suns API implementation) in the classpath or in one of your container's shared lib directories (e.g. common/lib or shared/lib for Tomcat).</li>
+                    <li>Configure your webapp's web.xml file (see conf/web.xml for example and documentation)</li>
+                    <li>Add the following lines to your JSPs:</li>
+                    <ul>
+                        <li><source xml:space="preserve">&lt;%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%&gt;</source></li>
+                        <li><source xml:space="preserve">&lt;%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%&gt;</source></li>
+                    </ul>
+                </ul>
+            </p>
+        </section>
+        <section name="Using the MyFaces extensions (aka Tomahawk) in your own web application">
+            <ul>
+                <li>If you don't use the MyFaces implementation, you will need to add the file tomahawk.jar and its dependencies (see above) to your web-app directory.</li>
+                <li> To be able to use the MyFaces extensions (aka Tomahawk) add the following line to your JSPs:</li>
+                <ul>
+                    <li><source xml:space="preserve">&lt;%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%&gt;</source></li>
+                    <li><source xml:space="preserve">&lt;%@ taglib uri="http://myfaces.apache.org/wap" prefix="wap" %&gt;</source></li>
+                </ul>
 
+                For using the Tomahawk components, it's also very important to setup the MyFaces Extensions-Filter. You find the explanations
+                for doing this under: <a href="http://myfaces.apache.org/tomahawk/extensionsFilter.html">http://myfaces.apache.org/tomahawk/extensionsFilter.html</a>
+            </ul>
+        </section>
+        <section name="Tutorials for getting started with JSF">
+            <ul>
+                <li><a href="http://www.coreservlets.com/JSF-Tutorial/"> Core-Servlets JSF Tutorial by Marty Hall</a></li>
+            </ul>
+        </section>
+    </body>
     <!--
     <footer>
     	<legal>Java, J2EE, and JCP are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries.<br />
@@ -134,5 +114,4 @@
 	</legal>
     </footer>
     -->
-
 </document>

Modified: myfaces/site/trunk/src/site/xdoc/issue.xml
URL: http://svn.apache.org/viewvc/myfaces/site/trunk/src/site/xdoc/issue.xml?view=diff&rev=565945&r1=565944&r2=565945
==============================================================================
--- myfaces/site/trunk/src/site/xdoc/issue.xml (original)
+++ myfaces/site/trunk/src/site/xdoc/issue.xml Tue Aug 14 15:09:03 2007
@@ -15,36 +15,24 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
 -->
-      
-        <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
-      
-    <document>
-
-<body>
-
-<section name="Bug Reporting">
-
-
-
-    <p>
-        MyFaces uses JIRA for reporting bugs, and for suggesting/requesting enhancements.  These issues 
-        are automatically forwarded to the MyFaces development team.  Please provide as much information 
-        as possible and include steps to reproduce the bug.  If you have a solution to the bug please include a patch file.  
-        <a href="http://www.apache.org/dev/contributors.html#patches">Here</a> is a link explaining some of the
-        details associated with patch files.                    
-    </p>  
-    
-    <ul>
-        <li>
-            <a href="http://issues.apache.org/jira/secure/BrowseProject.jspa?id=10600">Click here for JIRA.</a>
-        </li>
-    </ul>
-</section>
-
-
-
-</body>
-    
 
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
 
+<document>
+    <body>
+        <section name="Bug Reporting">
+            <p>
+                MyFaces uses JIRA for reporting bugs, and for suggesting/requesting enhancements.  These issues
+                are automatically forwarded to the MyFaces development team.  Please provide as much information
+                as possible and include steps to reproduce the bug.  If you have a solution to the bug please include a patch file.
+                <a href="http://www.apache.org/dev/contributors.html#patches">Here</a> is a link explaining some of the
+                details associated with patch files.
+            </p>
+            <ul>
+                <li>
+                    <a href="http://issues.apache.org/jira/secure/BrowseProject.jspa?id=10600">Click here for JIRA.</a>
+                </li>
+            </ul>
+        </section>
+    </body>
 </document>

Modified: myfaces/site/trunk/src/site/xdoc/javadoc.xml
URL: http://svn.apache.org/viewvc/myfaces/site/trunk/src/site/xdoc/javadoc.xml?view=diff&rev=565945&r1=565944&r2=565945
==============================================================================
--- myfaces/site/trunk/src/site/xdoc/javadoc.xml (original)
+++ myfaces/site/trunk/src/site/xdoc/javadoc.xml Tue Aug 14 15:09:03 2007
@@ -15,52 +15,34 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
 -->
-      
-        <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
-      
-    <document>
-
-<body>
-
-<section name="Javadoc Links">
-
-    
-    <ul>
-        <li><a href="api/apidocs/index.html">Javadoc (API)</a></li>
-        <li><a href="impl/apidocs/index.html">Javadoc (Impl)</a></li>
-        <li><a href="commons/apidocs/index.html">Javadoc (Commons)</a></li>
-        <li><a href="tomahawk/apidocs/index.html">Javadoc (Tomahawk)</a></li>
-        <li><a href="sandbox/apidocs/index.html">Javadoc (Sandbox)</a></li>
-    </ul>
-
-</section>
-
-<section name="TLD Links">
-
-    
-    <ul>
-        <li><a href="impl/tlddoc/index.html">Core: Impl</a></li>
-        <li><a href="tomahawk/tlddoc/index.html">TLD (Tomahawk)</a></li>    
-<!--            
-        <li><a href="sandbox/tlddoc/index.html">TLD (Sandbox)</a></li>                
--->        
-    </ul>
-
-</section>
-
-<section name="Links to Sun's RI docu">
-
-    
-    <ul>
-        <li><a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">Javadoc (API)</a></li>
-        <li><a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/tlddocs/index.html">TLD</a></li>
-    </ul>
-
-</section>
-
-
-</body>
-
 
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
 
+<document>
+    <body>
+        <section name="Javadoc Links">
+            <ul>
+                <li><a href="api/apidocs/index.html">Javadoc (API)</a></li>
+                <li><a href="impl/apidocs/index.html">Javadoc (Impl)</a></li>
+                <li><a href="commons/apidocs/index.html">Javadoc (Commons)</a></li>
+                <li><a href="tomahawk/apidocs/index.html">Javadoc (Tomahawk)</a></li>
+                <li><a href="sandbox/apidocs/index.html">Javadoc (Sandbox)</a></li>
+            </ul>
+        </section>
+        <section name="TLD Links">
+            <ul>
+                <li><a href="impl/tlddoc/index.html">Core: Impl</a></li>
+                <li><a href="tomahawk/tlddoc/index.html">TLD (Tomahawk)</a></li>
+                <!--
+                        <li><a href="sandbox/tlddoc/index.html">TLD (Sandbox)</a></li>
+                -->
+            </ul>
+        </section>
+        <section name="Links to Sun's RI docu">
+            <ul>
+                <li><a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">Javadoc (API)</a></li>
+                <li><a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/tlddocs/index.html">TLD</a></li>
+            </ul>
+        </section>
+    </body>
 </document>

Modified: myfaces/site/trunk/src/site/xdoc/livesites.xml
URL: http://svn.apache.org/viewvc/myfaces/site/trunk/src/site/xdoc/livesites.xml?view=diff&rev=565945&r1=565944&r2=565945
==============================================================================
--- myfaces/site/trunk/src/site/xdoc/livesites.xml (original)
+++ myfaces/site/trunk/src/site/xdoc/livesites.xml Tue Aug 14 15:09:03 2007
@@ -15,29 +15,24 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
 -->
-      
-        <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
-      
-    <document>
 
-<body>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
 
-<section name="The following web apps are build with Apache MyFaces:">
-    
-	<ul>
-		<li><a href="http://www.biblioteca.istitutodeglinnocenti.it/en/index.htm">Biblioteca Innocenti Library (English)</a></li>
-		<li><a href="http://www.istitutodeglinnocenti.it/">Istituto degli Innocenti (Italiano)</a></li>
-		<li><a href="http://www.emozionifotografiche.it">Emozioni fotografiche (Italiano)</a></li>
-		<li>and serveral intranet apps</li>
-	</ul>
-</section>
-
-<section name="The following Frameworks are using Apache MyFaces:">
-	
-	<ul>
-		<li>Equinox. See a demo <a href="http://demo.raibledesigns.com/equinox-jsf">here</a></li>
-		<li>Appfuse. See a demo <a href="http://demo.raibledesigns.com/appfuse-jsf">here</a></li>
-	</ul>
-</section>
-</body>
+<document>
+    <body>
+        <section name="The following web apps are build with Apache MyFaces:">
+            <ul>
+                <li><a href="http://www.biblioteca.istitutodeglinnocenti.it/en/index.htm">Biblioteca Innocenti Library (English)</a></li>
+                <li><a href="http://www.istitutodeglinnocenti.it/">Istituto degli Innocenti (Italiano)</a></li>
+                <li><a href="http://www.emozionifotografiche.it">Emozioni fotografiche (Italiano)</a></li>
+                <li>and serveral intranet apps</li>
+            </ul>
+        </section>
+        <section name="The following Frameworks are using Apache MyFaces:">
+            <ul>
+                <li>Equinox. See a demo <a href="http://demo.raibledesigns.com/equinox-jsf">here</a></li>
+                <li>Appfuse. See a demo <a href="http://demo.raibledesigns.com/appfuse-jsf">here</a></li>
+            </ul>
+        </section>
+    </body>
 </document>

Modified: myfaces/site/trunk/src/site/xdoc/mailinglists.xml
URL: http://svn.apache.org/viewvc/myfaces/site/trunk/src/site/xdoc/mailinglists.xml?view=diff&rev=565945&r1=565944&r2=565945
==============================================================================
--- myfaces/site/trunk/src/site/xdoc/mailinglists.xml (original)
+++ myfaces/site/trunk/src/site/xdoc/mailinglists.xml Tue Aug 14 15:09:03 2007
@@ -15,80 +15,73 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
 -->
-      
-        <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
-      
-    <document>
-
-<body>
-
-    <section name="Mailing Lists">
-      
-      <p>Use the links below to send mail to, subscribe, unsubscribe or check the archives of the MyFaces mailing lists.
-      Subcribing and unsubscribing is performed by simply sending a blank email to applicable address (as linked below).
-      <br/><br/></p>
-      <table>
-        <tr>
-            <th colspan="1" rowspan="1">Name</th>
-            <th colspan="1" rowspan="1">Archives</th>
-            <th colspan="1" rowspan="1">Purpose</th>
-            <th colspan="1" rowspan="1">Notes</th>
-            <th colspan="1" rowspan="1">Subscription</th>
-        </tr>
-          <tr>
-              <td colspan="1" rowspan="1">announce at myfaces.apache.org</td>
-              <td colspan="1" rowspan="1"/>
-              <td colspan="1" rowspan="1">Announcements, Important news</td>
-              <td colspan="1" rowspan="1">This is a subscriber-only list, so you must join before you can post.</td>
-              <td colspan="1" rowspan="1">
-                  <a href="mailto:announce-subscribe@myfaces.apache.org">subscribe</a> <br/>
-                  <a href="mailto:announce-unsubscribe@myfaces.apache.org">unsubscribe</a>
-              </td>
-          </tr>
-        <tr>
-          <td colspan="1" rowspan="1">users at myfaces.apache.org</td>
-          <td colspan="1" rowspan="1"><a href="http://www.mail-archive.com/users%40myfaces.apache.org/">mail-archive.com</a> <br/>
-              <a href="http://nagoya.apache.org/eyebrowse/SummarizeList?listName=myfaces-user@incubator.apache.org">nagoya eyebrowse (old Incubator mails)</a> </td>
-          <td colspan="1" rowspan="1">MyFaces developers and users help other users and discuss MyFaces best practices</td>
-          <td colspan="1" rowspan="1">This is a subscriber-only list, so you must join before you can post.</td>
-          <td colspan="1" rowspan="1"><a href="mailto:users-subscribe@myfaces.apache.org">subscribe</a> <br/>
-              <a href="mailto:users-unsubscribe@myfaces.apache.org">unsubscribe</a> </td>
-        </tr>
-        <tr>
-            <td colspan="1" rowspan="1">dev at myfaces.apache.org</td>
-            <td colspan="1" rowspan="1">
-                <a href="http://www.mail-archive.com/dev%40myfaces.apache.org/">mail-archive.com</a> <br/>
-                <a href="http://nagoya.apache.org/eyebrowse/SummarizeList?listName=myfaces-dev@incubator.apache.org">nagoya eyebrowse (old Incubator mails)</a>
-            </td>
-            <td colspan="1" rowspan="1">MyFaces developers and committers discuss issues related to the MyFaces codebase and project structure</td>
-            <td colspan="1" rowspan="1">This is a subscriber-only list, so you must join before you can post.</td>
-            <td colspan="1" rowspan="1">
-                <a href="mailto:dev-subscribe@myfaces.apache.org">subscribe</a> <br/>
-                <a href="mailto:dev-unsubscribe@myfaces.apache.org">unsubscribe</a>
-            </td>
-        </tr>
-        <tr>
-            <td colspan="1" rowspan="1">pmc at myfaces.apache.org</td>
-            <td colspan="1" rowspan="1"/>
-            <td colspan="1" rowspan="1">MyFaces Project Management Committee</td>
-            <td colspan="1" rowspan="1">This is a private list for MyFaces PMC members only.</td>
-            <td colspan="1" rowspan="1">N/A</td>
-        </tr>
-          <tr>
-              <td colspan="1" rowspan="1">commits at myfaces.apache.org</td>
-              <td colspan="1" rowspan="1"/>
-              <td colspan="1" rowspan="1">Repository changes</td>
-              <td colspan="1" rowspan="1">Please do not post to this list.</td>
-              <td colspan="1" rowspan="1">
-                  <a href="mailto:commits-subscribe@myfaces.apache.org">subscribe</a> <br/>
-                  <a href="mailto:commits-unsubscribe@myfaces.apache.org">unsubscribe</a>
-              </td>
-          </tr>
-      </table>
-    </section>
-    
-</body>
-    
 
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
 
+<document>
+    <body>
+        <section name="Mailing Lists">
+            <p>Use the links below to send mail to, subscribe, unsubscribe or check the archives of the MyFaces mailing lists.
+                Subcribing and unsubscribing is performed by simply sending a blank email to applicable address (as linked below).
+                <br/><br/></p>
+            <table>
+                <tr>
+                    <th colspan="1" rowspan="1">Name</th>
+                    <th colspan="1" rowspan="1">Archives</th>
+                    <th colspan="1" rowspan="1">Purpose</th>
+                    <th colspan="1" rowspan="1">Notes</th>
+                    <th colspan="1" rowspan="1">Subscription</th>
+                </tr>
+                <tr>
+                    <td colspan="1" rowspan="1">announce at myfaces.apache.org</td>
+                    <td colspan="1" rowspan="1"/>
+                    <td colspan="1" rowspan="1">Announcements, Important news</td>
+                    <td colspan="1" rowspan="1">This is a subscriber-only list, so you must join before you can post.</td>
+                    <td colspan="1" rowspan="1">
+                        <a href="mailto:announce-subscribe@myfaces.apache.org">subscribe</a> <br/>
+                        <a href="mailto:announce-unsubscribe@myfaces.apache.org">unsubscribe</a>
+                    </td>
+                </tr>
+                <tr>
+                    <td colspan="1" rowspan="1">users at myfaces.apache.org</td>
+                    <td colspan="1" rowspan="1"><a href="http://www.mail-archive.com/users%40myfaces.apache.org/">mail-archive.com</a> <br/>
+                        <a href="http://nagoya.apache.org/eyebrowse/SummarizeList?listName=myfaces-user@incubator.apache.org">nagoya eyebrowse (old Incubator mails)</a> </td>
+                    <td colspan="1" rowspan="1">MyFaces developers and users help other users and discuss MyFaces best practices</td>
+                    <td colspan="1" rowspan="1">This is a subscriber-only list, so you must join before you can post.</td>
+                    <td colspan="1" rowspan="1"><a href="mailto:users-subscribe@myfaces.apache.org">subscribe</a> <br/>
+                        <a href="mailto:users-unsubscribe@myfaces.apache.org">unsubscribe</a> </td>
+                </tr>
+                <tr>
+                    <td colspan="1" rowspan="1">dev at myfaces.apache.org</td>
+                    <td colspan="1" rowspan="1">
+                        <a href="http://www.mail-archive.com/dev%40myfaces.apache.org/">mail-archive.com</a> <br/>
+                        <a href="http://nagoya.apache.org/eyebrowse/SummarizeList?listName=myfaces-dev@incubator.apache.org">nagoya eyebrowse (old Incubator mails)</a>
+                    </td>
+                    <td colspan="1" rowspan="1">MyFaces developers and committers discuss issues related to the MyFaces codebase and project structure</td>
+                    <td colspan="1" rowspan="1">This is a subscriber-only list, so you must join before you can post.</td>
+                    <td colspan="1" rowspan="1">
+                        <a href="mailto:dev-subscribe@myfaces.apache.org">subscribe</a> <br/>
+                        <a href="mailto:dev-unsubscribe@myfaces.apache.org">unsubscribe</a>
+                    </td>
+                </tr>
+                <tr>
+                    <td colspan="1" rowspan="1">pmc at myfaces.apache.org</td>
+                    <td colspan="1" rowspan="1"/>
+                    <td colspan="1" rowspan="1">MyFaces Project Management Committee</td>
+                    <td colspan="1" rowspan="1">This is a private list for MyFaces PMC members only.</td>
+                    <td colspan="1" rowspan="1">N/A</td>
+                </tr>
+                <tr>
+                    <td colspan="1" rowspan="1">commits at myfaces.apache.org</td>
+                    <td colspan="1" rowspan="1"/>
+                    <td colspan="1" rowspan="1">Repository changes</td>
+                    <td colspan="1" rowspan="1">Please do not post to this list.</td>
+                    <td colspan="1" rowspan="1">
+                        <a href="mailto:commits-subscribe@myfaces.apache.org">subscribe</a> <br/>
+                        <a href="mailto:commits-unsubscribe@myfaces.apache.org">unsubscribe</a>
+                    </td>
+                </tr>
+            </table>
+        </section>
+    </body>
 </document>

Modified: myfaces/site/trunk/src/site/xdoc/project_management/bylaws.xml
URL: http://svn.apache.org/viewvc/myfaces/site/trunk/src/site/xdoc/project_management/bylaws.xml?view=diff&rev=565945&r1=565944&r2=565945
==============================================================================
--- myfaces/site/trunk/src/site/xdoc/project_management/bylaws.xml (original)
+++ myfaces/site/trunk/src/site/xdoc/project_management/bylaws.xml Tue Aug 14 15:09:03 2007
@@ -15,310 +15,235 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
 -->
-      
-        <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
-      
-<document>
-
-<body>
-
-    <section name="Roles &amp; Responsibilities">
-    
-
-    <p>
-    The roles and responsibilities that people can assume in the project
-    are based on merit. Everybody can help no matter what their role.
-    Those who have been longterm or valuable contributors to the project
-    can earn the right to commit directly to the source repository and to
-    cast binding votes during the decision-making process.
-    </p>
-
-    <p>
-    <strong>Users.</strong>
-    Users are the people who use the products of the Project. People in
-    this role aren't contributing code, but they are using the products,
-    reporting bugs, making feature requests, and such. This is by far
-    the most important category of people as, without users, there is no
-    reason for the Project. When a user starts to contribute code or
-    documentation patches, they become a Contributor.
-    </p>
-
-    <p>
-
-    <strong>Contributors.</strong>
-    Contributors are the people who write code or documentation patches or
-    contribute positively to the project in other ways. When a volunteer's
-    patch is applied, the contribution is recognized in the version control
-    log.
-    </p>
-
-    <p>
-    <strong>Committers.</strong>
-    Contributors who give frequent and valuable contributions to 
-    the Project can have their status promoted to that of
-    a "<em>Committer</em>". A Committer has write access to the 
-    source code repository. Committer status is granted by the Project 
-    Management Committee by majority vote.
-    </p>
-
-    <p>
-    <strong>Project Management Committee (PMC).</strong>
-    Committers and other volunteers who frequently participate with
-    valuable contributions may have their status promoted to that of a
-    "<em>Project Management Committee Member</em>". The PMC
-    is responsible for the day-to-day management of the Project.
-    </p>
-
-    </section>
-
-    <section name="Management">
-
-    
-    <p>
-    The Vice President is (or will be) appointed by the ASF Board. The Vice
-    President is assisted by the Project Management Committee (PMC)
-    and also serves as the PMC chair. The PMC may nominate new
-    members. Nominees may then be approved with a 3/4 majority vote
-    of the PMC. Membership can be revoked by a unanimous vote of all
-    the active PMC members other than the member in question. 
-    </p>
-
-    </section>
-
-    <section name="PMC Duties">
-    
-
-    <p>
-    The PMC is responsible for the day-to-day
-    management of the Project. The PMC oversees all changes
-    made to the codebase. The PMC must ensure that all code under a
-    Apache MyFaces repository is the lawful property of the Foundation and
-    may be distributed under the <a href="http://apache.org/licenses/">
-    Apache Software License</a>. All releases of an MyFaces subproject
-    must be sanctioned by the Project Management Committee.
-    </p>
-
-    </section>
-
-    <section name="Subprojects">
-    
-
-    <p>
-    Subprojects are the Project's unit of release. Each subproject should
-    represent an implementation of the MyFaces core or a related component.
-    Each subproject should focus on creating, maintaining, and releasing a
-    single software product or "deliverable".
-    </p>
-
-    <p>
-    All PMC Members have voting rights in all subprojects. Members not familiar
-    with a subproject codebase may abstain from any given vote. All Committers
-    have write access to all subprojects. Subprojects are units of release, not
-    units of work.
-    </p>
-
-    <p>
-    PMC members may propose the creation of new subprojects. Proposals are
-    to contain the scope of the project, identify the initial source from
-    which the project is to be populated, identify any mailing lists or
-    repositories, if any, which are to be created. Creation of a new
-    subproject requires approval by a 3/4 majority vote of the PMC.
-    </p>
-
-    </section>
-
-    <section name="Decision Making">
-    
-
-    <p>
-    All Volunteers are encouraged to participate in decisions, but the
-    decision itself is made by the Project Management Committee.
-    The Project is a "<em>Minimum Threshod Meritocracy</em>".
-    </p>
-
-    </section>
-
-    <section name="Voting">
-    
-
-    <p>
-    Any subscriber to the list may vote on any issue or action item.
-    Votes from Contributors and Committers are especially welcome.
-    However, the only binding votes are those cast by a PMC Member.
-    </p>
-
-    <p>
-
-    The act of voting carries certain obligations. Voters are not only
-    stating their opinion, they are also agreeing to help do the work.
-    </p>
-
-    <p>Each vote can be made in one of three flavors:</p>
-
-    <table>
-    <tr>
-    <td><strong>+1</strong></td>
-    <td>
-
-        "Yes," "Agree," or "the action should be
-        performed." On some issues this is only binding if the voter
-        has tested the action on their own system(s).
-    </td>
-    </tr>
-
-    <tr>
-    <td><strong>+/-0</strong></td>
 
-    <td>
-        "Abstain," "no opinion". An abstention may
-        have detrimental effects if too many people abstain.
-    </td>
-    </tr>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
 
-    <tr>
-    <td><strong>-1</strong></td>
-    <td>
-
-        <p>
-        "No." On issues where consensus is required, this vote
-        counts as a <strong>veto</strong>. All vetos must contain an
-        explanation of why the veto is appropriate. Vetos with no
-        explanation are void. A veto cannot be overruled. If you disagree
-        with the veto, you should lobby the person who cast the veto.
-        Voters intending to veto an action item should make their opinions
-        known to the group immediately so that the problem can be remedied
-        as early as possible.
-        </p>
-        <p>
-        If a Committer tries to "override" a veto by restoring a vetoed
-        change, the PMC may ask the infrastructure team to revoke that
-        Committer's write privileges.
-        </p>
-    </td>
-    </tr>
-
-    </table>
-
-    <p>
-    An action requiring consensus approval must receive at least
-    <strong>3 binding +1</strong> votes and <strong>no binding
-    vetos</strong>. An action requiring majority approval must receive
-    at least <strong>3 binding +1</strong> votes and more
-    <strong>+1</strong> votes than <strong>-1</strong> votes. All other
-    action items are considered to have lazy approval until somebody
-    votes <strong>-1</strong>, after which point they are decided by
-    either consensus or majority vote, depending on the type of action
-    item.
-    </p>
-
-    <p>
-    Voting represent consensus and votes are never final. Circumstances
-    change, and so may votes. A veto may be converted to a +1 after
-    discussion, and likewise a +1 may be converted to a -1.
-    By convention, Committers should allow a vote to circulate for 72
-    hours before taking action.
-    </p>
-     </section>
-
-    <section name="Action Items">
-    
-
-    <p>
-    All decisions revolve around "<em>Action
-    Items.</em>" Action Items consist of the following:
-    </p>
-
-        <ul>
-            <li>Long Term Plans</li>
-            <li>Short Term Plans</li>
-            <li>Product Changes</li>
-            <li>Showstoppers</li>
-            <li>Release Plan</li>
-
-            <li>Release Grade</li>
-        </ul>
-
-    </section>
-
-    <section name="Long Term Plans">
-    
-
-    <p>
-
-    Long term plans are simply announcements that group members are
-    working on particular issues related to the Project. These are not
-    voted on, but Committers and PMC Members who do not agree with a
-    particular plan, or think that an alternative plan would be better,
-    are obligated to inform the group of their feelings.
-    </p>
-
-    </section>
-
-    <section name="Short Term Plan">
-    
-
-    <p>
-    Short term plans are announcements that a volunteer is working on a
-    particular set of documentation or code files with the implication
-    that other volunteers should avoid them or try to coordinate their
-    changes.
-    </p>
-
-    </section>
-
-    <section name="Product Changes">
-    
-
-    <p>
-    All product changes to the repository are subject to
-    lazy consensus.
-    </p>
-
-    </section>
-
-    <section name="Showstoppers">
-    
-
-    <p>
-    Showstoppers are issues that require a fix be in place before the
-    next public release. They are listed in the status file in order to
-    focus special attention on these problems. An issue becomes a
-    showstopper when it is listed as such in the status file and remains
-    so by lazy consensus.
-    </p>
-
-    </section>
-
-    <section name="Release Plan">
-
-    
-
-      <p>
-      A release plan must be used to keep all volunteers aware of when a
-      release is desired, whether it will be a major, minor, or
-      milestone release, who will be the release manager, when the
-      repository will be tagged to create the distribution, and other assorted
-      information to keep volunteers from tripping over each other. A release
-      plan must be announced to the DEV list. Lazy majority decides each issue
-      in a release plan.
-      </p>
-
-    </section>
-
-    <section name="Release Grade">
-    
-
-    <p>
-    After a proposed release is built, it must be tested and classified before
-    being released to the general public. The proposed release may be assigned
-    "Alpha", "Beta" or "General Availability" classifications by majority vote.
-    Once a release is classified by the PMC Members, it may be distributed to
-    the general public on behalf of the Foundation. Distributions may be
-    reclassified or withdrawn by majority vote, but the release number may not
-    be reused by another distribution.
-    </p>
-
-    </section>
-
-</body>
+<document>
+    <body>
+        <section name="Roles &amp; Responsibilities">
+            <p>
+                The roles and responsibilities that people can assume in the project
+                are based on merit. Everybody can help no matter what their role.
+                Those who have been longterm or valuable contributors to the project
+                can earn the right to commit directly to the source repository and to
+                cast binding votes during the decision-making process.
+            </p>
+            <p>
+                <strong>Users.</strong>
+                Users are the people who use the products of the Project. People in
+                this role aren't contributing code, but they are using the products,
+                reporting bugs, making feature requests, and such. This is by far
+                the most important category of people as, without users, there is no
+                reason for the Project. When a user starts to contribute code or
+                documentation patches, they become a Contributor.
+            </p>
+            <p>
+                <strong>Contributors.</strong>
+                Contributors are the people who write code or documentation patches or
+                contribute positively to the project in other ways. When a volunteer's
+                patch is applied, the contribution is recognized in the version control
+                log.
+            </p>
+            <p>
+                <strong>Committers.</strong>
+                Contributors who give frequent and valuable contributions to
+                the Project can have their status promoted to that of
+                a "<em>Committer</em>". A Committer has write access to the
+                source code repository. Committer status is granted by the Project
+                Management Committee by majority vote.
+            </p>
+            <p>
+                <strong>Project Management Committee (PMC).</strong>
+                Committers and other volunteers who frequently participate with
+                valuable contributions may have their status promoted to that of a
+                "<em>Project Management Committee Member</em>". The PMC
+                is responsible for the day-to-day management of the Project.
+            </p>
+        </section>
+        <section name="Management">
+            <p>
+                The Vice President is (or will be) appointed by the ASF Board. The Vice
+                President is assisted by the Project Management Committee (PMC)
+                and also serves as the PMC chair. The PMC may nominate new
+                members. Nominees may then be approved with a 3/4 majority vote
+                of the PMC. Membership can be revoked by a unanimous vote of all
+                the active PMC members other than the member in question.
+            </p>
+        </section>
+        <section name="PMC Duties">
+            <p>
+                The PMC is responsible for the day-to-day
+                management of the Project. The PMC oversees all changes
+                made to the codebase. The PMC must ensure that all code under a
+                Apache MyFaces repository is the lawful property of the Foundation and
+                may be distributed under the <a href="http://apache.org/licenses/">
+                Apache Software License</a>. All releases of an MyFaces subproject
+                must be sanctioned by the Project Management Committee.
+            </p>
+        </section>
+        <section name="Subprojects">
+            <p>
+                Subprojects are the Project's unit of release. Each subproject should
+                represent an implementation of the MyFaces core or a related component.
+                Each subproject should focus on creating, maintaining, and releasing a
+                single software product or "deliverable".
+            </p>
+            <p>
+                All PMC Members have voting rights in all subprojects. Members not familiar
+                with a subproject codebase may abstain from any given vote. All Committers
+                have write access to all subprojects. Subprojects are units of release, not
+                units of work.
+            </p>
+            <p>
+                PMC members may propose the creation of new subprojects. Proposals are
+                to contain the scope of the project, identify the initial source from
+                which the project is to be populated, identify any mailing lists or
+                repositories, if any, which are to be created. Creation of a new
+                subproject requires approval by a 3/4 majority vote of the PMC.
+            </p>
+        </section>
+        <section name="Decision Making">
+            <p>
+                All Volunteers are encouraged to participate in decisions, but the
+                decision itself is made by the Project Management Committee.
+                The Project is a "<em>Minimum Threshod Meritocracy</em>".
+            </p>
+        </section>
+        <section name="Voting">
+            <p>
+                Any subscriber to the list may vote on any issue or action item.
+                Votes from Contributors and Committers are especially welcome.
+                However, the only binding votes are those cast by a PMC Member.
+            </p>
+            <p>
+
+                The act of voting carries certain obligations. Voters are not only
+                stating their opinion, they are also agreeing to help do the work.
+            </p>
+            <p>Each vote can be made in one of three flavors:</p>
+            <table>
+                <tr>
+                    <td><strong>+1</strong></td>
+                    <td>
+                        "Yes," "Agree," or "the action should be
+                        performed." On some issues this is only binding if the voter
+                        has tested the action on their own system(s).
+                    </td>
+                </tr>
+                <tr>
+                    <td><strong>+/-0</strong></td>
+                    <td>
+                        "Abstain," "no opinion". An abstention may
+                        have detrimental effects if too many people abstain.
+                    </td>
+                </tr>
+                <tr>
+                    <td><strong>-1</strong></td>
+                    <td>
+                        <p>
+                            "No." On issues where consensus is required, this vote
+                            counts as a <strong>veto</strong>. All vetos must contain an
+                            explanation of why the veto is appropriate. Vetos with no
+                            explanation are void. A veto cannot be overruled. If you disagree
+                            with the veto, you should lobby the person who cast the veto.
+                            Voters intending to veto an action item should make their opinions
+                            known to the group immediately so that the problem can be remedied
+                            as early as possible.
+                        </p>
+                        <p>
+                            If a Committer tries to "override" a veto by restoring a vetoed
+                            change, the PMC may ask the infrastructure team to revoke that
+                            Committer's write privileges.
+                        </p>
+                    </td>
+                </tr>
+            </table>
+            <p>
+                An action requiring consensus approval must receive at least
+                <strong>3 binding +1</strong> votes and <strong>no binding
+                vetos</strong>. An action requiring majority approval must receive
+                at least <strong>3 binding +1</strong> votes and more
+                <strong>+1</strong> votes than <strong>-1</strong> votes. All other
+                action items are considered to have lazy approval until somebody
+                votes <strong>-1</strong>, after which point they are decided by
+                either consensus or majority vote, depending on the type of action
+                item.
+            </p>
+            <p>
+                Voting represent consensus and votes are never final. Circumstances
+                change, and so may votes. A veto may be converted to a +1 after
+                discussion, and likewise a +1 may be converted to a -1.
+                By convention, Committers should allow a vote to circulate for 72
+                hours before taking action.
+            </p>
+        </section>
+        <section name="Action Items">
+            <p>
+                All decisions revolve around "<em>Action
+                Items.</em>" Action Items consist of the following:
+            </p>
+            <ul>
+                <li>Long Term Plans</li>
+                <li>Short Term Plans</li>
+                <li>Product Changes</li>
+                <li>Showstoppers</li>
+                <li>Release Plan</li>
+                <li>Release Grade</li>
+            </ul>
+        </section>
+        <section name="Long Term Plans">
+            <p>
+                Long term plans are simply announcements that group members are
+                working on particular issues related to the Project. These are not
+                voted on, but Committers and PMC Members who do not agree with a
+                particular plan, or think that an alternative plan would be better,
+                are obligated to inform the group of their feelings.
+            </p>
+        </section>
+        <section name="Short Term Plan">
+            <p>
+                Short term plans are announcements that a volunteer is working on a
+                particular set of documentation or code files with the implication
+                that other volunteers should avoid them or try to coordinate their
+                changes.
+            </p>
+        </section>
+        <section name="Product Changes">
+            <p>
+                All product changes to the repository are subject to
+                lazy consensus.
+            </p>
+        </section>
+        <section name="Showstoppers">
+            <p>
+                Showstoppers are issues that require a fix be in place before the
+                next public release. They are listed in the status file in order to
+                focus special attention on these problems. An issue becomes a
+                showstopper when it is listed as such in the status file and remains
+                so by lazy consensus.
+            </p>
+        </section>
+        <section name="Release Plan">
+            <p>
+                A release plan must be used to keep all volunteers aware of when a
+                release is desired, whether it will be a major, minor, or
+                milestone release, who will be the release manager, when the
+                repository will be tagged to create the distribution, and other assorted
+                information to keep volunteers from tripping over each other. A release
+                plan must be announced to the DEV list. Lazy majority decides each issue
+                in a release plan.
+            </p>
+        </section>
+        <section name="Release Grade">
+            <p>
+                After a proposed release is built, it must be tested and classified before
+                being released to the general public. The proposed release may be assigned
+                "Alpha", "Beta" or "General Availability" classifications by majority vote.
+                Once a release is classified by the PMC Members, it may be distributed to
+                the general public on behalf of the Foundation. Distributions may be
+                reclassified or withdrawn by majority vote, but the release number may not
+                be reused by another distribution.
+            </p>
+        </section>
+    </body>
 </document>

Modified: myfaces/site/trunk/src/site/xdoc/project_management/legal.xml
URL: http://svn.apache.org/viewvc/myfaces/site/trunk/src/site/xdoc/project_management/legal.xml?view=diff&rev=565945&r1=565944&r2=565945
==============================================================================
--- myfaces/site/trunk/src/site/xdoc/project_management/legal.xml (original)
+++ myfaces/site/trunk/src/site/xdoc/project_management/legal.xml Tue Aug 14 15:09:03 2007
@@ -15,30 +15,23 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
 -->
-      
-        <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
-      
 
-<document>
-
-  <body>
-
-      <section name="Legal Stuff They Make Us Say">
-          
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
 
-          <p>
-              All material on this website is Copyright © 1999-2005, The Apache Software Foundation.
-          </p>
-          <p>
-              Sun, Sun Microsystems, Solaris, Java, JavaServer Web Development Kit, and JavaServer Pages
-              are trademarks or registered trademarks of Sun Microsystems, Inc. UNIX is a registered trademark
-              in the United States and other countries, exclusively licensed through X/Open Company, Ltd.
-              Windows, WindowsNT, and Win32 are registered trademarks of Microsoft Corp. All other product
-              names mentioned herein and throughout the entire web site are trademarks of their respective
-              owners.
-          </p>
-
-      </section>
-
-  </body>
+<document>
+    <body>
+        <section name="Legal Stuff They Make Us Say">
+            <p>
+                All material on this website is Copyright © 1999-2005, The Apache Software Foundation.
+            </p>
+            <p>
+                Sun, Sun Microsystems, Solaris, Java, JavaServer Web Development Kit, and JavaServer Pages
+                are trademarks or registered trademarks of Sun Microsystems, Inc. UNIX is a registered trademark
+                in the United States and other countries, exclusively licensed through X/Open Company, Ltd.
+                Windows, WindowsNT, and Win32 are registered trademarks of Microsoft Corp. All other product
+                names mentioned herein and throughout the entire web site are trademarks of their respective
+                owners.
+            </p>
+        </section>
+    </body>
 </document>

Modified: myfaces/site/trunk/src/site/xdoc/risamples.xml
URL: http://svn.apache.org/viewvc/myfaces/site/trunk/src/site/xdoc/risamples.xml?view=diff&rev=565945&r1=565944&r2=565945
==============================================================================
--- myfaces/site/trunk/src/site/xdoc/risamples.xml (original)
+++ myfaces/site/trunk/src/site/xdoc/risamples.xml Tue Aug 14 15:09:03 2007
@@ -15,28 +15,21 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
 -->
-      
-        <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
-      
-    <document>
 
-<body>
-
-<section name="Steps to get Sun's cardemo sample running">
-    
-	<ol>
-		<li>Download the latest JSF Reference Implementation <a href="http://java.sun.com/j2ee/javaserverfaces/download.html">here</a></li>
-		<li>In samples dir you will find the cardemo web application archive named jsf-cardemo.war</li>
-		<li>Unpack jsf-cardemo.war to a directory of your choice. If you are not familiar with deploying web applications and you are using tomcat, unpack jsf-cardemo.war to CATALINA_HOME/webapps/cardemo directory (where CATALINA_HOME = Tomcat installation directory)</li>
-		<li>Remove all jar files from WEB-INF/lib directory but NOT! demo-components.jar</li>
-		<li>Copy all jar files from simple.war or blank.war (the MyFaces examples, see getting started) to WEB-INF/lib directory</li>
-		<li>Replace WEB-INF/web.xml with <a href="cardemoweb.html">web.xml</a></li>
-		<li>Deploy web application. If you unpacked cardemo.war into CATALINA_HOME/webapps/cardemo start tomcat and see cardemo running at http://localhost:8080/cardemo</li>
-	</ol>
-</section>
-
-</body>
-    
-    
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
 
+<document>
+    <body>
+        <section name="Steps to get Sun's cardemo sample running">
+            <ol>
+                <li>Download the latest JSF Reference Implementation <a href="http://java.sun.com/j2ee/javaserverfaces/download.html">here</a></li>
+                <li>In samples dir you will find the cardemo web application archive named jsf-cardemo.war</li>
+                <li>Unpack jsf-cardemo.war to a directory of your choice. If you are not familiar with deploying web applications and you are using tomcat, unpack jsf-cardemo.war to CATALINA_HOME/webapps/cardemo directory (where CATALINA_HOME = Tomcat installation directory)</li>
+                <li>Remove all jar files from WEB-INF/lib directory but NOT! demo-components.jar</li>
+                <li>Copy all jar files from simple.war or blank.war (the MyFaces examples, see getting started) to WEB-INF/lib directory</li>
+                <li>Replace WEB-INF/web.xml with <a href="cardemoweb.html">web.xml</a></li>
+                <li>Deploy web application. If you unpacked cardemo.war into CATALINA_HOME/webapps/cardemo start tomcat and see cardemo running at http://localhost:8080/cardemo</li>
+            </ol>
+        </section>
+    </body>
 </document>

Modified: myfaces/site/trunk/src/site/xdoc/source.xml
URL: http://svn.apache.org/viewvc/myfaces/site/trunk/src/site/xdoc/source.xml?view=diff&rev=565945&r1=565944&r2=565945
==============================================================================
--- myfaces/site/trunk/src/site/xdoc/source.xml (original)
+++ myfaces/site/trunk/src/site/xdoc/source.xml Tue Aug 14 15:09:03 2007
@@ -15,22 +15,19 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
 -->
-        <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
-      
-    <!-- Note: To understand how this template is used, see the documentation
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
+
+<!-- Note: To understand how this template is used, see the documentation
   at http://forrest.apache.org/howto/howto-asf-mirror.html
 -->
 <document>
-
     <body>
         <section name="How to download">
-            
             <p>
                 Use the links below to download a distribution of Apache MyFaces from
                 one of our mirrors. It is good practice to verify the integrity of the
                 distribution files.
             </p>
-
             <p>
                 Apache MyFaces is distributed as a <code>zip</code> archive (for Windows) and
                 as a <code>tar.gz</code> archive (for UNIX). The contents are the same. Please note
@@ -40,29 +37,26 @@
             </p>
         </section>
         <section name="Current release (closest mirror site selected automatically)">
-            
             <p>
                 You are currently using <b>[preferred]</b>. If you encounter a
                 problem with this mirror, then please select another.  If all
                 mirrors are failing, there are backup mirrors at the end of the list.
                 See <a href="http://www.apache.org/mirrors/">status</a> of mirrors.
             </p>
-
             <form action="[location]" method="get" id="SelectMirror">
                 Other mirrors: <select name="Preferred">
-                    <!--[if-any http] [for http]-->
-                    <option value="[http]">[http]</option>
-                    <!--[end] [end]-->
-                    <!--[if-any ftp] [for ftp]-->
-                    <option value="[ftp]">[ftp]</option>
-                    <!--[end] [end]-->
-                    <!--[if-any backup] [for backup]-->
-                    <option value="[backup]">[backup] (backup)</option>
-                    <!--[end] [end]-->
-                </select>
+                <!--[if-any http] [for http]-->
+                <option value="[http]">[http]</option>
+                <!--[end] [end]-->
+                <!--[if-any ftp] [for ftp]-->
+                <option value="[ftp]">[ftp]</option>
+                <!--[end] [end]-->
+                <!--[if-any backup] [for backup]-->
+                <option value="[backup]">[backup] (backup)</option>
+                <!--[end] [end]-->
+            </select>
                 <input type="submit" value="Change"/>
             </form>
-
             <p>The current release is Apache MyFaces 1.1.1 (see the
                 <a href="RELEASE-NOTES-1.1.1.txt">release notes</a>).
             </p>
@@ -80,11 +74,8 @@
                     <li>[<a href="http://www.apache.org/dist/myfaces/source/myfaces-1.1.1-src.zip.md5">MD5</a>]</li>
                 </ul>
             </ul>
-
         </section>
         <section name="Latest source code and nightly builds from CVS repository">
-            
-
             <p>
                 If you want to use the latest Apache MyFaces features, the source code is under
                 version control with CVS.  Click <a href="http://apache.org/dev/version-control.html">here</a>
@@ -102,14 +93,12 @@
             </p>
         </section>
         <section name="Verify releases">
-            
             <p>
                 It is essential that you verify the integrity of the downloaded
                 files using the PGP and MD5 signatures.  MD5 verification ensures the
                 file was not corrupted during the download process.  PGP verification
                 ensures that the file came from a certain person.
             </p>
-
             <p>
                 The PGP signatures can be verified using
                 <a href="http://www.pgpi.org/">PGP</a> or
@@ -121,28 +110,26 @@
                 trusted source - the main ASF distribution site, rather than from a mirror.
                 Then verify the signatures using ...
             </p>
-
             <source>
-            % pgpk -a KEYS
-            % pgpv myfaces-X.Y.Z-src.tgz.asc
+                % pgpk -a KEYS
+                % pgpv myfaces-X.Y.Z-src.tgz.asc
 
-            <em>or</em>
+                <em>or</em>
 
-            % pgp -ka KEYS
-            % pgp myfaces-X.Y.Z-src.tgz.asc
+                % pgp -ka KEYS
+                % pgp myfaces-X.Y.Z-src.tgz.asc
 
-            <em>or</em>
+                <em>or</em>
 
-            % gpg --import KEYS
-            % gpg --verify myfaces-X.Y.Z-src.tgz.asc
+                % gpg --import KEYS
+                % gpg --verify myfaces-X.Y.Z-src.tgz.asc
             </source>
-
             <p>
                 To verify the MD5 signature on the files, you need to use a program
                 called <code>md5</code> or <code>md5sum</code>, which is
                 included in many unix distributions.  It is also available as part of
                 <a href="http://www.gnu.org/software/textutils/textutils.html">GNU
-                Textutils</a>.  Windows users can get binary md5 programs from
+                    Textutils</a>.  Windows users can get binary md5 programs from
                 <a href="http://www.fourmilab.ch/md5/">here</a>,
                 <a href="http://www.pc-tools.net/win32/freeware/console/">here</a>, or
                 <a href="http://www.slavasoft.com/fsum/">here</a>.

Modified: myfaces/site/trunk/src/site/xdoc/svn.xml
URL: http://svn.apache.org/viewvc/myfaces/site/trunk/src/site/xdoc/svn.xml?view=diff&rev=565945&r1=565944&r2=565945
==============================================================================
--- myfaces/site/trunk/src/site/xdoc/svn.xml (original)
+++ myfaces/site/trunk/src/site/xdoc/svn.xml Tue Aug 14 15:09:03 2007
@@ -15,90 +15,80 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
 -->
-      
-        <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
-      
-    <document>
-
-<body>
-
-<section name="SVN Access for MyFaces">
-
-    <p>
-        MyFaces uses the Subversion (SVN) source code repository.  The SVN server is maintained by the Apache Software Foundation.
-        Click <a href="http://apache.org/dev/version-control.html">here</a> for more information on the ASF source code
-        repositories.
-    </p>
-    <p>
-        The MyFaces source code is broken up into several subprojects.  Do <strong>not</strong> checkout everything in the MyFaces directory
-        (you will get every copy of every file ever checked into the repository!)  The MyFaces developers rely on a SVN trick known
-        as "externals."  These allow you to checkout (and update) the latest code from multiple subprojects with a single SVN command.
-        Use one of the commands below depending on your source code needs.
-    </p>
-
-    <table>
-        <tr>
-            <th colspan="1" rowspan="1">If you need ...</th>
-            <th colspan="1" rowspan="1">Use ...</th>
-        </tr>
-        <tr>
-            <td colspan="1" rowspan="1">
-                <strong>The latest source code for all relevant subprojects.</strong>  This includes the MyFaces JSF implementation as well as
-                the Tomahawk components and other goodies.  Also includes the example web applications and sandbox components.
-            </td>
-            <td colspan="1" rowspan="1">
-                <code>svn co https://svn.apache.org/repos/asf/myfaces/current</code>
-            </td>
-        </tr>
-        <tr>
-            <td colspan="1" rowspan="1">
-                <strong>The source code for the MyFaces implementation only.</strong>  Does not include the tomahawk subproject or any of the
-                examples.
-            </td>
-            <td colspan="1" rowspan="1">
-                <code>svn co https://svn.apache.org/repos/asf/myfaces/core</code>
-            </td>
-        </tr>
-        <tr>
-            <td colspan="1" rowspan="1">
-                <strong>The source code for the Tomahawk subproject without any JSF implementation stuff.</strong>  Ideal for those who
-                use the RI and want to provide a quick patch to an existing tomahawk component.  This requires that you
-                provide your own JSF implementation.  If you are using MyFaces as your JSF implementation it does not make
-                much sense to use this option.
-            </td>
-            <td colspan="1" rowspan="1">
-                <code>svn co https://svn.apache.org/repos/asf/myfaces/tomahawk-only</code>
-            </td>
-        </tr>
-        <tr>
-            <td colspan="1" rowspan="1">
-                <strong>The xdocs used to build the MyFaces website.</strong>  This is intended for committers only.
-                Contains the forrest xdocs and build script used to build the website.
-            </td>
-            <td colspan="1" rowspan="1">
-                <code>svn co https://svn.apache.org/viewcvs.cgi/myfaces/forrest/trunk</code>
-            </td>
-        </tr>
-        <tr>
-            <td colspan="1" rowspan="1">
-                <strong>The source code in its original layout before the SVN reorg.</strong>  This is meant for troubleshooting purposes only.
-                Do not use this to submit patches or check in code.
-            </td>
-            <td colspan="1" rowspan="1">
-                <code>svn co https://svn.apache.org/viewcvs.cgi/myfaces/legacy/tags/before_svn_reorg/</code>
-            </td>
-        </tr>
-    </table>
-
-    <p>
-        <br/>
-        The source code can also be viewed online <a href="http://svn.apache.org/repos/asf/myfaces/">here</a>.
-    </p>
-
-</section>
-
-</body>
-
 
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
 
+<document>
+    <body>
+        <section name="SVN Access for MyFaces">
+            <p>
+                MyFaces uses the Subversion (SVN) source code repository.  The SVN server is maintained by the Apache Software Foundation.
+                Click <a href="http://apache.org/dev/version-control.html">here</a> for more information on the ASF source code
+                repositories.
+            </p>
+            <p>
+                The MyFaces source code is broken up into several subprojects.  Do <strong>not</strong> checkout everything in the MyFaces directory
+                (you will get every copy of every file ever checked into the repository!)  The MyFaces developers rely on a SVN trick known
+                as "externals."  These allow you to checkout (and update) the latest code from multiple subprojects with a single SVN command.
+                Use one of the commands below depending on your source code needs.
+            </p>
+            <table>
+                <tr>
+                    <th colspan="1" rowspan="1">If you need ...</th>
+                    <th colspan="1" rowspan="1">Use ...</th>
+                </tr>
+                <tr>
+                    <td colspan="1" rowspan="1">
+                        <strong>The latest source code for all relevant subprojects.</strong>  This includes the MyFaces JSF implementation as well as
+                        the Tomahawk components and other goodies.  Also includes the example web applications and sandbox components.
+                    </td>
+                    <td colspan="1" rowspan="1">
+                        <code>svn co https://svn.apache.org/repos/asf/myfaces/current</code>
+                    </td>
+                </tr>
+                <tr>
+                    <td colspan="1" rowspan="1">
+                        <strong>The source code for the MyFaces implementation only.</strong>  Does not include the tomahawk subproject or any of the
+                        examples.
+                    </td>
+                    <td colspan="1" rowspan="1">
+                        <code>svn co https://svn.apache.org/repos/asf/myfaces/core</code>
+                    </td>
+                </tr>
+                <tr>
+                    <td colspan="1" rowspan="1">
+                        <strong>The source code for the Tomahawk subproject without any JSF implementation stuff.</strong>  Ideal for those who
+                        use the RI and want to provide a quick patch to an existing tomahawk component.  This requires that you
+                        provide your own JSF implementation.  If you are using MyFaces as your JSF implementation it does not make
+                        much sense to use this option.
+                    </td>
+                    <td colspan="1" rowspan="1">
+                        <code>svn co https://svn.apache.org/repos/asf/myfaces/tomahawk-only</code>
+                    </td>
+                </tr>
+                <tr>
+                    <td colspan="1" rowspan="1">
+                        <strong>The xdocs used to build the MyFaces website.</strong>  This is intended for committers only.
+                        Contains the forrest xdocs and build script used to build the website.
+                    </td>
+                    <td colspan="1" rowspan="1">
+                        <code>svn co https://svn.apache.org/viewcvs.cgi/myfaces/forrest/trunk</code>
+                    </td>
+                </tr>
+                <tr>
+                    <td colspan="1" rowspan="1">
+                        <strong>The source code in its original layout before the SVN reorg.</strong>  This is meant for troubleshooting purposes only.
+                        Do not use this to submit patches or check in code.
+                    </td>
+                    <td colspan="1" rowspan="1">
+                        <code>svn co https://svn.apache.org/viewcvs.cgi/myfaces/legacy/tags/before_svn_reorg/</code>
+                    </td>
+                </tr>
+            </table>
+            <p>
+                <br/>
+                The source code can also be viewed online <a href="http://svn.apache.org/repos/asf/myfaces/">here</a>.
+            </p>
+        </section>
+    </body>
 </document>

Modified: myfaces/site/trunk/src/site/xdoc/tomcat.xml
URL: http://svn.apache.org/viewvc/myfaces/site/trunk/src/site/xdoc/tomcat.xml?view=diff&rev=565945&r1=565944&r2=565945
==============================================================================
--- myfaces/site/trunk/src/site/xdoc/tomcat.xml (original)
+++ myfaces/site/trunk/src/site/xdoc/tomcat.xml Tue Aug 14 15:09:03 2007
@@ -15,44 +15,31 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
 -->
-      
-        <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
-      
-    <document>
-
-<body>
-
-<section name="Tomcat 5.5.x">
-    
-    <p>Some users have reported problems when using MyFaces wtth Tomcat5.5.x. Here is a short guide that will hopefully help you not run into the same problems :-)</p>
-    <ul>
-        <li>If your are using the binary version of MyFaces: MyFaces is packaged so that it works with Tomcat5.0.x so the <code>WEB-INF/lib/jsp-2.0.jar</code> and <code>WEB-INF/lib/commons-el.jar</code> JAR files must be removed from your WAR files (including the examples).</li>
-        <li>If you are building from source: If you want to build MyFaces from scratch to work with Tomcat 5.5.x, you have to set the property <code>tomcat.pre.5.5.version</code> in the <code>$MYFACES_HOME/build/build.default.properties</code> file to the value <code>false</code>.</li>
-    </ul>
-    <p>We hope this helps, if not please contact the user list at <a href="mailto:users@myfaces.apache.org">MyFaces</a>!</p>
-</section>
-
-<section name="Tomcat 4.x">
-    
-
-    <p>MyFaces has a dependency on some of the classes in the JSP2.0 spec. As a result applications based on MyFaces will not run without the inclusion of the jsp-2.0.jar file in the <code>WEB-INF/lib</code> directory of your <code>.war</code> file.</p>
-    <p>We hope this helps, if not please contact the user list at <a href="mailto:users@myfaces.apache.org">MyFaces</a>.</p>
-
-</section>
-
-<section name="Configuring MyFaces/Tomahawk to be available for all applications in Tomcat ">
-    
-    <ul>
-        <li>Place the relevant myfaces jars in <code>$TOMCAT_HOME/shared/lib</code>.</li>
-        <li>Place the following supporting jars in <code>$TOMCAT_HOME/shared/lib</code>: commons-beanutils.jar, commons-codec.jar, 
-            commons-digester.jar and commons-fileupload.jar.
-        </li>
-    </ul>
-    <p>We hope this helps, if not please contact the user list at <a href="mailto:users@myfaces.apache.org">MyFaces</a>!</p>
-</section>
-
-</body>
-    
 
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
 
+<document>
+    <body>
+        <section name="Tomcat 5.5.x">
+            <p>Some users have reported problems when using MyFaces wtth Tomcat5.5.x. Here is a short guide that will hopefully help you not run into the same problems :-)</p>
+            <ul>
+                <li>If your are using the binary version of MyFaces: MyFaces is packaged so that it works with Tomcat5.0.x so the <code>WEB-INF/lib/jsp-2.0.jar</code> and <code>WEB-INF/lib/commons-el.jar</code> JAR files must be removed from your WAR files (including the examples).</li>
+                <li>If you are building from source: If you want to build MyFaces from scratch to work with Tomcat 5.5.x, you have to set the property <code>tomcat.pre.5.5.version</code> in the <code>$MYFACES_HOME/build/build.default.properties</code> file to the value <code>false</code>.</li>
+            </ul>
+            <p>We hope this helps, if not please contact the user list at <a href="mailto:users@myfaces.apache.org">MyFaces</a>!</p>
+        </section>
+        <section name="Tomcat 4.x">
+            <p>MyFaces has a dependency on some of the classes in the JSP2.0 spec. As a result applications based on MyFaces will not run without the inclusion of the jsp-2.0.jar file in the <code>WEB-INF/lib</code> directory of your <code>.war</code> file.</p>
+            <p>We hope this helps, if not please contact the user list at <a href="mailto:users@myfaces.apache.org">MyFaces</a>.</p>
+        </section>
+        <section name="Configuring MyFaces/Tomahawk to be available for all applications in Tomcat ">
+            <ul>
+                <li>Place the relevant myfaces jars in <code>$TOMCAT_HOME/shared/lib</code>.</li>
+                <li>Place the following supporting jars in <code>$TOMCAT_HOME/shared/lib</code>: commons-beanutils.jar, commons-codec.jar,
+                    commons-digester.jar and commons-fileupload.jar.
+                </li>
+            </ul>
+            <p>We hope this helps, if not please contact the user list at <a href="mailto:users@myfaces.apache.org">MyFaces</a>!</p>
+        </section>
+    </body>
 </document>

Modified: myfaces/site/trunk/src/site/xdoc/xdoc.xml
URL: http://svn.apache.org/viewvc/myfaces/site/trunk/src/site/xdoc/xdoc.xml?view=diff&rev=565945&r1=565944&r2=565945
==============================================================================
--- myfaces/site/trunk/src/site/xdoc/xdoc.xml (original)
+++ myfaces/site/trunk/src/site/xdoc/xdoc.xml Tue Aug 14 15:09:03 2007
@@ -17,68 +17,68 @@
 -->
 <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" "http://apache.org/forrest/dtd/document-v12.dtd">
 <document>
-  <header>
-    <title>Apache MyFaces</title>
-  </header>
-  <body>
-    <section>
-      <title>Welcome to The MyFaces Project</title>
-      <p>This is the official homepage of the first free open source
-          JavaServer(tm) Faces implementation called "Apache MyFaces".</p>
-    </section>
-    <section>
-      <title>What is JavaServer(tm) Faces?</title>
-      <p>
-          JavaServer(tm) Faces is a web application framework
-        that accomplishes the MVC paradigm. It is comparable to the well-known
-        <link href="http://struts.apache.org/">Struts Framework</link> but has features
-        and concepts that are beyond those of Struts; especially the component orientation.
-        Look at <link href="http://java.sun.com/j2ee/javaserverfaces/">Sun's JavaServer(tm)
-        Page</link> to learn more about the
-        <link href="http://www.jcp.org/en/jsr/detail?id=127">Java Specification Request 127
-        </link> and to download the specification. You can also find a useful tutorial there!
-      </p>
-    </section>
-    <section>
-      <title>Jumpstart into Apache MyFaces</title>
-      <p>
-          Make sure to have a look at our examples - you can find a working
-          distribution at <link href="http://www.irian.at/myfaces.jsf">
-          http://www.irian.at/open_source.jsf</link>.
-          Find instructions on installing them yourselves in our 'Getting Started' section.
-          If you can't find information you need on these pages, make sure you
-          also go to our WIKI at <link href="http://wiki.apache.org/myfaces">
-          http://wiki.apache.org/myfaces</link>
-      </p>
-    </section>
+    <header>
+        <title>Apache MyFaces</title>
+    </header>
+    <body>
+        <section>
+            <title>Welcome to The MyFaces Project</title>
+            <p>This is the official homepage of the first free open source
+                JavaServer(tm) Faces implementation called "Apache MyFaces".</p>
+        </section>
+        <section>
+            <title>What is JavaServer(tm) Faces?</title>
+            <p>
+                JavaServer(tm) Faces is a web application framework
+                that accomplishes the MVC paradigm. It is comparable to the well-known
+                <link href="http://struts.apache.org/">Struts Framework</link> but has features
+                and concepts that are beyond those of Struts; especially the component orientation.
+                Look at <link href="http://java.sun.com/j2ee/javaserverfaces/">Sun's JavaServer(tm)
+                Page</link> to learn more about the
+                <link href="http://www.jcp.org/en/jsr/detail?id=127">Java Specification Request 127
+                </link> and to download the specification. You can also find a useful tutorial there!
+            </p>
+        </section>
+        <section>
+            <title>Jumpstart into Apache MyFaces</title>
+            <p>
+                Make sure to have a look at our examples - you can find a working
+                distribution at <link href="http://www.irian.at/myfaces.jsf">
+                http://www.irian.at/open_source.jsf</link>.
+                Find instructions on installing them yourselves in our 'Getting Started' section.
+                If you can't find information you need on these pages, make sure you
+                also go to our WIKI at <link href="http://wiki.apache.org/myfaces">
+                http://wiki.apache.org/myfaces</link>
+            </p>
+        </section>
 
-    <section>
-      <title>October 27, 2005 - MyFaces 1.1.1 has been released.</title>
-      <p>
-            MyFaces 1.1.1 has been officially released.  This is a minor patch release that fixes a few of the 
-            major problems with the previous release.
-      </p>
-    </section>
-    
-    <section>
-      <title>October 18, 2005 - MyFaces 1.1.1 RC3 is now available.</title>
-      <p>
-            Please help us test the release candidate before the upcoming official release.  You can download the RC
-            <link href="http://people.apache.org/builds/myfaces/release/">here</link>.  Please file any isssues
-            you find in JIRA and be sure to report them against version 1.1.1.
-      </p>
-    </section>
+        <section>
+            <title>October 27, 2005 - MyFaces 1.1.1 has been released.</title>
+            <p>
+                MyFaces 1.1.1 has been officially released.  This is a minor patch release that fixes a few of the
+                major problems with the previous release.
+            </p>
+        </section>
 
-    <section>
-        <title>Resources</title>
-        <p>If you are new to JavaServer Faces Technology look at the following resources to become familar with JSF:</p>
-        <ul>
-            <li><link href="http://www.jsfcentral.com/">JSFCentral</link></li>
-            <li><link href="http://www.jamesholmes.com/JavaServerFaces/">James Holmes' JSF Resources</link></li>
-            <li><link href="http://wiki.apache.org/myfaces/UsefulLinks">Additional links in the WIKI</link></li>
-        </ul>
-    </section>
+        <section>
+            <title>October 18, 2005 - MyFaces 1.1.1 RC3 is now available.</title>
+            <p>
+                Please help us test the release candidate before the upcoming official release.  You can download the RC
+                <link href="http://people.apache.org/builds/myfaces/release/">here</link>.  Please file any isssues
+                you find in JIRA and be sure to report them against version 1.1.1.
+            </p>
+        </section>
 
-  </body>
+        <section>
+            <title>Resources</title>
+            <p>If you are new to JavaServer Faces Technology look at the following resources to become familar with JSF:</p>
+            <ul>
+                <li><link href="http://www.jsfcentral.com/">JSFCentral</link></li>
+                <li><link href="http://www.jamesholmes.com/JavaServerFaces/">James Holmes' JSF Resources</link></li>
+                <li><link href="http://wiki.apache.org/myfaces/UsefulLinks">Additional links in the WIKI</link></li>
+            </ul>
+        </section>
+
+    </body>
 </document>