[richfaces-svn-commits] JBoss Rich Faces SVN: r15870 - root/docs/trunk/Component_Reference/en-US.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Wed Nov 11 22:25:12 EST 2009


Author: SeanRogers
Date: 2009-11-11 22:25:11 -0500 (Wed, 11 Nov 2009)
New Revision: 15870

Added:
   root/docs/trunk/Component_Reference/en-US/Actions.xml
Removed:
   root/docs/trunk/Component_Reference/en-US/Action_components.xml
Modified:
   root/docs/trunk/Component_Reference/en-US/Book_Info.xml
   root/docs/trunk/Component_Reference/en-US/Common_features.xml
   root/docs/trunk/Component_Reference/en-US/Component_Reference.xml
   root/docs/trunk/Component_Reference/en-US/Containers.xml
   root/docs/trunk/Component_Reference/en-US/Functionality_extension.xml
   root/docs/trunk/Component_Reference/en-US/Layout_and_appearance.xml
   root/docs/trunk/Component_Reference/en-US/Menus_and_toolbars.xml
   root/docs/trunk/Component_Reference/en-US/Output_and_messages.xml
   root/docs/trunk/Component_Reference/en-US/Panels_and_containers.xml
   root/docs/trunk/Component_Reference/en-US/Preface.xml
   root/docs/trunk/Component_Reference/en-US/Resources.xml
   root/docs/trunk/Component_Reference/en-US/Trees.xml
   root/docs/trunk/Component_Reference/en-US/all-Component_Reference.xml
Log:
Completed initial reorganising, waiting for feedback on tables and lists

Deleted: root/docs/trunk/Component_Reference/en-US/Action_components.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Action_components.xml	2009-11-12 02:04:17 UTC (rev 15869)
+++ root/docs/trunk/Component_Reference/en-US/Action_components.xml	2009-11-12 03:25:11 UTC (rev 15870)
@@ -1,110 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-]>
-
-<chapter id="chap-Component_Reference-Ajax_basics">
-	<title>Ajax basics</title>
-	<para>
-		This chapter details the basic components that respond to a user action and submit an Ajax request.
-	</para>
-	<section id="sect-Component_Reference-Ajax_basics-a4jcommandButton">
-		<title>&lt;a4j:commandButton&gt;</title>
-		<itemizedlist>
-			<listitem>
-				<para>
-					component-type: <classname>org.ajax4jsf.CommandButton</classname>
-				</para>
-			</listitem>
-			<listitem>
-				<para>
-					component-family: <classname>javax.faces.Command</classname>
-				</para>
-			</listitem>
-			<listitem>
-				<para>
-					component-class: <classname>org.ajax4jsf.component.html.HtmlAjaxCommandButton</classname>
-				</para>
-			</listitem>
-			<listitem>
-				<para>
-					renderer-type: <classname>org.ajax4jsf.components.AjaxCommandButtonRenderer</classname>
-				</para>
-			</listitem>
-		</itemizedlist>
-		<para>
-			The <classname>&lt;a4j:commandButton&gt;</classname> is similar to the JavaServer Faces (<acronym>JSF</acronym>) component <classname>&lt;h:commandButton&gt;</classname>, but additionally includes Ajax support. When the command button is clicked it generates an Ajax form submit, and when a response is received the command button can be dynamically rendered.
-		</para>
-		<para>
-			The <classname>&lt;a4j:commandButton&gt;</classname> requires only the <code>value</code> and <code>render</code> attributes to function. The <code>value</code> attribute specifies the text of the button and the <code>render</code> attribute specifies which areas are to be updated. The <classname>&lt;a4j:commandButton&gt;</classname> uses the <code>onclick</code> event instead of the <code>onsubmit</code> event, but otherwise uses all common Ajax attributes as listed in <xref linkend="chap-Component_Reference-Common_Ajax_attributes" />.
-		</para>
-		<note>
-			<title>Note</title>
-			<para>
-				When attaching a JavaScript function to a <classname>&lt;a4j:commandButton&gt;</classname> with the help of a <classname>&lt;rich:componentControl&gt;</classname>, do not use the <code>attachTo</code> attribute of <classname>&lt;rich:componentControl&gt;</classname>. The attribute adds event handlers using <classname>Event.observe</classname> but <classname>&lt;a4j:commandButton&gt;</classname> does not include this event.
-			</para>
-		</note>
-	</section>
-	
-	<section id="sect-Component_Reference-Ajax_basics-a4jcommandLink">
-		<title>&lt;a4j:commandLink&gt;</title>
-		<itemizedlist>
-			<listitem>
-				<para>
-					component-type: <classname>org.ajax4jsf.CommandLink</classname>
-				</para>
-			</listitem>
-			<listitem>
-				<para>
-					component-family: <classname>javax.faces.Command</classname>
-				</para>
-			</listitem>
-			<listitem>
-				<para>
-					component-class: <classname>org.ajax4jsf.component.html.HtmlAjaxCommandLink</classname>
-				</para>
-			</listitem>
-			<listitem>
-				<para>
-					renderer-type: <classname>org.ajax4jsf.components.AjaxCommandLinkRenderer</classname>
-				</para>
-			</listitem>
-		</itemizedlist>
-		<para>
-			The <classname>&lt;a4j:commandLink&gt;</classname> is similar to the JavaServer Faces (<acronym>JSF</acronym>) component <classname>&lt;h:commandLink&gt;</classname>, but additionally includes Ajax support. When the command link is clicked it generates an Ajax form submit, and when a response is received the command link can be dynamically rendered.
-		</para>
-		<para>
-			The <classname>&lt;a4j:commandLink&gt;</classname> requires only the <code>value</code> and <code>render</code> attributes to function. The <code>value</code> attribute specifies the text of the link and the <code>render</code> attribute specifies which areas are to be updated. The <classname>&lt;a4j:commandLink&gt;</classname> uses the <code>onclick</code> event instead of the <code>onsubmit</code> event, but otherwise uses all common Ajax attributes as listed in <xref linkend="chap-Component_Reference-Common_Ajax_attributes" />.
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Ajax_basics-a4jhtmlCommandLink">
-		<title>&lt;a4j:htmlCommandLink&gt;</title>
-		<itemizedlist>
-			<listitem>
-				<para>
-					component-type: <classname>org.ajax4jsf.HtmlCommandLink</classname>
-				</para>
-			</listitem>
-			<listitem>
-				<para>
-					component-family: <classname>javax.faces.Command</classname>
-				</para>
-			</listitem>
-			<listitem>
-				<para>
-					component-class: <classname>org.ajax4jsf.component.html.HtmlCommandLink</classname>
-				</para>
-			</listitem>
-			<listitem>
-				<para>
-					renderer-type: <classname>org.ajax4jsf.HtmlCommandLinkRenderer</classname>
-				</para>
-			</listitem>
-		</itemizedlist>
-		<para>
-			Incomplete
-		</para>
-	</section>
-
-</chapter>
-

Copied: root/docs/trunk/Component_Reference/en-US/Actions.xml (from rev 15868, root/docs/trunk/Component_Reference/en-US/Action_components.xml)
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Actions.xml	                        (rev 0)
+++ root/docs/trunk/Component_Reference/en-US/Actions.xml	2009-11-12 03:25:11 UTC (rev 15870)
@@ -0,0 +1,152 @@
+<?xml version='1.0' encoding='utf-8' ?>
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
+
+<chapter id="chap-Component_Reference-Actions">
+	<title>Actions</title>
+	<para>
+		This chapter details the basic components that respond to a user action and submit an Ajax request.
+	</para>
+	<section id="sect-Component_Reference-Actions-a4jactionParam">
+		<title>a4j:actionParam</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Actions-a4jajax">
+		<title>a4j:ajax</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Actions-a4jajaxListener">
+		<title>a4j:ajaxListener</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Actions-a4jcommandButton">
+		<title>&lt;a4j:commandButton&gt;</title>
+		<itemizedlist>
+			<listitem>
+				<para>
+					component-type: <classname>org.ajax4jsf.CommandButton</classname>
+				</para>
+			</listitem>
+			<listitem>
+				<para>
+					component-family: <classname>javax.faces.Command</classname>
+				</para>
+			</listitem>
+			<listitem>
+				<para>
+					component-class: <classname>org.ajax4jsf.component.html.HtmlAjaxCommandButton</classname>
+				</para>
+			</listitem>
+			<listitem>
+				<para>
+					renderer-type: <classname>org.ajax4jsf.components.AjaxCommandButtonRenderer</classname>
+				</para>
+			</listitem>
+		</itemizedlist>
+		<para>
+			The <classname>&lt;a4j:commandButton&gt;</classname> is similar to the JavaServer Faces (<acronym>JSF</acronym>) component <classname>&lt;h:commandButton&gt;</classname>, but additionally includes Ajax support. When the command button is clicked it generates an Ajax form submit, and when a response is received the command button can be dynamically rendered.
+		</para>
+		<para>
+			The <classname>&lt;a4j:commandButton&gt;</classname> requires only the <code>value</code> and <code>render</code> attributes to function. The <code>value</code> attribute specifies the text of the button and the <code>render</code> attribute specifies which areas are to be updated. The <classname>&lt;a4j:commandButton&gt;</classname> uses the <code>onclick</code> event instead of the <code>onsubmit</code> event, but otherwise uses all common Ajax attributes as listed in <xref linkend="chap-Component_Reference-Common_Ajax_attributes" />.
+		</para>
+		<note>
+			<title>Note</title>
+			<para>
+				When attaching a JavaScript function to a <classname>&lt;a4j:commandButton&gt;</classname> with the help of a <classname>&lt;rich:componentControl&gt;</classname>, do not use the <code>attachTo</code> attribute of <classname>&lt;rich:componentControl&gt;</classname>. The attribute adds event handlers using <classname>Event.observe</classname> but <classname>&lt;a4j:commandButton&gt;</classname> does not include this event.
+			</para>
+		</note>
+	</section>
+	
+	<section id="sect-Component_Reference-Actions-a4jcommandLink">
+		<title>&lt;a4j:commandLink&gt;</title>
+		<itemizedlist>
+			<listitem>
+				<para>
+					component-type: <classname>org.ajax4jsf.CommandLink</classname>
+				</para>
+			</listitem>
+			<listitem>
+				<para>
+					component-family: <classname>javax.faces.Command</classname>
+				</para>
+			</listitem>
+			<listitem>
+				<para>
+					component-class: <classname>org.ajax4jsf.component.html.HtmlAjaxCommandLink</classname>
+				</para>
+			</listitem>
+			<listitem>
+				<para>
+					renderer-type: <classname>org.ajax4jsf.components.AjaxCommandLinkRenderer</classname>
+				</para>
+			</listitem>
+		</itemizedlist>
+		<para>
+			The <classname>&lt;a4j:commandLink&gt;</classname> is similar to the JavaServer Faces (<acronym>JSF</acronym>) component <classname>&lt;h:commandLink&gt;</classname>, but additionally includes Ajax support. When the command link is clicked it generates an Ajax form submit, and when a response is received the command link can be dynamically rendered.
+		</para>
+		<para>
+			The <classname>&lt;a4j:commandLink&gt;</classname> requires only the <code>value</code> and <code>render</code> attributes to function. The <code>value</code> attribute specifies the text of the link and the <code>render</code> attribute specifies which areas are to be updated. The <classname>&lt;a4j:commandLink&gt;</classname> uses the <code>onclick</code> event instead of the <code>onsubmit</code> event, but otherwise uses all common Ajax attributes as listed in <xref linkend="chap-Component_Reference-Common_Ajax_attributes" />.
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Actions-a4jhtmlCommandLink">
+		<title>&lt;a4j:htmlCommandLink&gt;</title>
+		<itemizedlist>
+			<listitem>
+				<para>
+					component-type: <classname>org.ajax4jsf.HtmlCommandLink</classname>
+				</para>
+			</listitem>
+			<listitem>
+				<para>
+					component-family: <classname>javax.faces.Command</classname>
+				</para>
+			</listitem>
+			<listitem>
+				<para>
+					component-class: <classname>org.ajax4jsf.component.html.HtmlCommandLink</classname>
+				</para>
+			</listitem>
+			<listitem>
+				<para>
+					renderer-type: <classname>org.ajax4jsf.HtmlCommandLinkRenderer</classname>
+				</para>
+			</listitem>
+		</itemizedlist>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Actions-a4jjsFunction">
+		<title>a4j:jsFunction</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Actions-a4jpoll">
+		<title>a4j:poll</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Actions-a4jpush">
+		<title>a4j:push</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+
+</chapter>
+

Modified: root/docs/trunk/Component_Reference/en-US/Book_Info.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Book_Info.xml	2009-11-12 02:04:17 UTC (rev 15869)
+++ root/docs/trunk/Component_Reference/en-US/Book_Info.xml	2009-11-12 03:25:11 UTC (rev 15870)
@@ -27,7 +27,7 @@
 				<year>&YEAR;</year>
 				<holder>&HOLDER;</holder>
 			</copyright>
-			<!--         FOR PUBLICAN          --><xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude"><!--         FOR JDOCBOOK:         --><xi:fallback xmlns:xi="http://www.w3.org/2001/XInclude"><xi:include href="fallback_content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+			<!--            FOR PUBLICAN             --><xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude"><!--            FOR JDOCBOOK:            --><xi:fallback xmlns:xi="http://www.w3.org/2001/XInclude"><xi:include href="fallback_content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
 			</xi:fallback>
 			</xi:include>
 			<xi:include href="Author_Group.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>

Modified: root/docs/trunk/Component_Reference/en-US/Common_features.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Common_features.xml	2009-11-12 02:04:17 UTC (rev 15869)
+++ root/docs/trunk/Component_Reference/en-US/Common_features.xml	2009-11-12 03:25:11 UTC (rev 15870)
@@ -2,52 +2,31 @@
 <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
 ]>
 
-<chapter id="chap-Component_Reference-Other_components">
-	<title>Other components</title>
+<chapter id="chap-Component_Reference-Common_features">
+	<title>Common features</title>
 	<para>
 		Incomplete
 	</para>
-	<section id="sect-Component_Reference-Other_components-a4jmediaOutput">
-		<title>a4j:mediaOutput</title>
+	<section id="sect-Component_Reference-Common_features-Positioning_in_popup_components">
+		<title>Positioning in popup components</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Other_components-richhotkey">
-		<title>rich:hotkey</title>
+	<section id="sect-Component_Reference-Common_features-Calling_available_JavaScript_methods">
+		<title>Calling available JavaScript methods</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Other_components-richinsert">
-		<title>rich:insert</title>
+	<section id="sect-Component_Reference-Common_features-Client_side_macro_substitution">
+		<title>Client-side macro-substitution</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
-	
-	<section id="sect-Component_Reference-Other_components-richpaint2D">
-		<title>rich:paint2D</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Other_components-richgmap">
-		<title>rich:gmap</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Other_components-richvirtualEarth">
-		<title>rich:virtualEarth</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
 
 </chapter>
 

Modified: root/docs/trunk/Component_Reference/en-US/Component_Reference.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Component_Reference.xml	2009-11-12 02:04:17 UTC (rev 15869)
+++ root/docs/trunk/Component_Reference/en-US/Component_Reference.xml	2009-11-12 03:25:11 UTC (rev 15870)
@@ -4,13 +4,14 @@
 
 <book status="draft">
 	<xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
-	<!--  
+	<!--     
 	<xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
-	  --><xi:include href="Introduction.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+	     --><xi:include href="Introduction.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
 	<xi:include href="Common_Ajax_attributes.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+	<xi:include href="Common_features.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
 	<part id="part-Component_Reference-a4j_tag_library">
 		<title>a4j tag library</title>
-		<xi:include href="Action_components.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+		<xi:include href="Actions.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
 		<xi:include href="Resources.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
 		<xi:include href="Containers.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
 		<xi:include href="Validation.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>

Modified: root/docs/trunk/Component_Reference/en-US/Containers.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Containers.xml	2009-11-12 02:04:17 UTC (rev 15869)
+++ root/docs/trunk/Component_Reference/en-US/Containers.xml	2009-11-12 03:25:11 UTC (rev 15870)
@@ -10,6 +10,31 @@
 	<section id="sect-Component_Reference-Containers-a4jform">
 		<title>&lt;a4j:form&gt;</title>
 		<para>
+			The <classname>&lt;a4j:form&gt;</classname> builds on the functionality of the JavaServer Faces (<acronym>JSF</acronym>) component <classname>&lt;h:form&gt;</classname>, adding Ajax capabilities to the form.
+		</para>
+		<note>
+			<title>Note</title>
+			<para>
+				The <acronym>JSF</acronym> component <classname>&lt;h:form&gt;</classname>, on which the <classname>&lt;a4j:form&gt;</classname> component is based, had an issue whereby the <classname>&lt;h:commandLink&gt;</classname> component could not be re-rendered without re-rendering the entire form. <classname>&lt;a4j:form&gt;</classname> and <classname>&lt;a4j:commandLink&gt;</classname> fix this issue.
+			</para>
+		</note>
+		<para>
+			The <classname>&lt;a4j:form&gt;</classname> component can add indirect Ajax support to non-Ajax components on the form by setting <code>ajaxSubmit="true"</code>. It then uses the standard Ajax component attributes and updates components specified with the <code>render</code> attribute.
+		</para>
+		<important>
+			<title>Important</title>
+			<para>
+				<classname>&lt;a4j:form&gt;</classname> should not use <code>ajaxSubmit="true"</code> if it contains other Ajax-capable components.
+			</para>
+			<para>
+				Additionally, due to security reasons the file upload form element cannot be indirectly made Ajax-capable with <classname>&lt;a4j:form&gt;</classname>.
+			</para>
+		</important>
+	</section>
+	
+	<section id="sect-Component_Reference-Containers-a4jinclude">
+		<title>a4j:include</title>
+		<para>
 			Incomplete
 		</para>
 	</section>
@@ -17,21 +42,40 @@
 	<section id="sect-Component_Reference-Containers-a4joutputPanel">
 		<title>&lt;a4j:outputPanel&gt;</title>
 		<para>
-			Incomplete
+			The <classname>&lt;a4j:outputPanel&gt;</classname> component is used to group together components in to update them as a whole, rather than having to specify the components individually.
 		</para>
+		<para>
+			The <code>layout</code> attribute can be used to determine how the component is rendered in <acronym>HTML</acronym>:
+		</para>
+		<itemizedlist>
+			<listitem>
+				<para>
+					<code>layout="inline"</code> is the default behavior, which will render the component as a pair of <code>&lt;span&gt;</code> tags containing the child components.
+				</para>
+			</listitem>
+			<listitem>
+				<para>
+					<code>layout="block"</code> will render the component as a pair of <code>&lt;div&gt;</code> tags containing the child components, which will use any defined <code>&lt;div&gt;</code> element styles.
+				</para>
+			</listitem>
+			<listitem>
+				<para>
+					<code>layout="none"</code> will render the component as a pair of <code>&lt;span&gt;</code> tags with an identifier equal to that of a child component. If the child component is rendered then the <code>&lt;span&gt;</code> are not included, leaving no markup representing the <classname>&lt;a4j:outputPanel&gt;</classname> in <acronym>HTML</acronym>.
+				</para>
+			</listitem>
+		</itemizedlist>
+		<para>
+			Setting <code>ajaxRendered="true"</code> will cause the <classname>&lt;a4j:outputPanel&gt;</classname> to be updated with each Ajax response for the page, even when not listed explicitly by the requesting component. This can in turn be overridden by specific attributes on any requesting components.
+		</para>
 	</section>
 	
 	<section id="sect-Component_Reference-Containers-a4jregion">
 		<title>&lt;a4j:region&gt;</title>
 		<para>
-			Incomplete
+			The <classname>&lt;a4j:region&gt;</classname> component specifies a part of the document object model (<acronym>DOM</acronym>) tree to be processed on the server. The processing includes data handling during decoding, conversion, validation, and model updating. When not using <classname>&lt;a4j:region&gt;</classname>, the entire view functions as a region.
 		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Containers-a4jinclude">
-		<title>&lt;a4j:include&gt;</title>
 		<para>
-			Incomplete
+			The whole form is still submitted to the server, but only the specified region is processed. Regions can be nested, in which case only the immediate region of the component initiating the request will be processed.
 		</para>
 	</section>
 

Modified: root/docs/trunk/Component_Reference/en-US/Functionality_extension.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Functionality_extension.xml	2009-11-12 02:04:17 UTC (rev 15869)
+++ root/docs/trunk/Component_Reference/en-US/Functionality_extension.xml	2009-11-12 03:25:11 UTC (rev 15870)
@@ -7,61 +7,33 @@
 	<para>
 		Incomplete
 	</para>
-	<section id="sect-Component_Reference-Functionality_extension-a4jactionParam">
-		<title>a4j:actionParam</title>
+	<section id="sect-Component_Reference-Functionality_extension-richcomponentControl">
+		<title>rich:componentControl</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Functionality_extension-a4jajax">
-		<title>a4j:ajax</title>
+	<section id="sect-Component_Reference-Functionality_extension-richgmap">
+		<title>rich:gmap</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Functionality_extension-a4jajaxListener">
-		<title>a4j:ajaxListener</title>
+	<section id="sect-Component_Reference-Functionality_extension-richhotkey">
+		<title>rich:hotkey</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Functionality_extension-a4jinclude">
-		<title>a4j:include</title>
+	<section id="sect-Component_Reference-Functionality_extension-richvirtualEarth">
+		<title>rich:virtualEarth</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
-	
-	<section id="sect-Component_Reference-Functionality_extension-a4jjsFunction">
-		<title>a4j:jsFunction</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Functionality_extension-a4jloadScript">
-		<title>a4j:loadScript</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Functionality_extension-a4jlog">
-		<title>a4j:log</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Functionality_extension-richcomponentControl">
-		<title>rich:componentControl</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
 
 </chapter>
 

Modified: root/docs/trunk/Component_Reference/en-US/Layout_and_appearance.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Layout_and_appearance.xml	2009-11-12 02:04:17 UTC (rev 15869)
+++ root/docs/trunk/Component_Reference/en-US/Layout_and_appearance.xml	2009-11-12 03:25:11 UTC (rev 15870)
@@ -7,13 +7,6 @@
 	<para>
 		Incomplete
 	</para>
-	<section id="sect-Component_Reference-Layout_and_appearance-a4jloadStyle">
-		<title>a4j:loadStyle</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
 	<section id="sect-Component_Reference-Layout_and_appearance-richeffect">
 		<title>rich:effect</title>
 		<para>

Modified: root/docs/trunk/Component_Reference/en-US/Menus_and_toolbars.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Menus_and_toolbars.xml	2009-11-12 02:04:17 UTC (rev 15869)
+++ root/docs/trunk/Component_Reference/en-US/Menus_and_toolbars.xml	2009-11-12 03:25:11 UTC (rev 15870)
@@ -42,6 +42,109 @@
 		</para>
 	</section>
 	
+	<section id="sect-Component_Reference-Menus_and_toolbars-richpanelMenu">
+		<title>&lt;rich:panelMenu&gt;</title>
+		<para>
+			The <classname>&lt;rich:panelMenu&gt;</classname> component can be used in conjunction with <classname>&lt;rich:panelMenuItem&gt;</classname> and <classname>&lt;rich:panelMenuGroup&gt;</classname> to create an expanding, hierarchical menu. The <classname>&lt;rich:panelMenu&gt;</classname> component&#39;s appearance can be highly customized, and the hierarchy can stretch to any number of sub-levels.
+		</para>
+		<para>
+			The <code>selectedChild</code> attribute is used to point to the name of the currently selected menu item.
+		</para>
+		<para>
+			By default, the event to expand the menu is a mouse click. This can be changed by setting <code>event</code> to specify the preferred event. Several sub-menus can be expanded a once unless the <code>expandSingle</code> is set to <literal>true</literal>, which only allows one sub-menu at a time to be expanded.
+		</para>
+		<para>
+			The <code>mode</code> attribute defines the submission mode for normal menu items that link to content, and the <code>expandMode</code> attribute defines the submission mode for menu items that expand and collapse. The settings for these attributes apply to the entire menu unless a menu item defines its own individual <code>mode</code> or <code>expandMode</code>. The values for <code>mode</code> and <code>expandMode</code> are:
+		</para>
+		<itemizedlist>
+			<listitem>
+				<para>
+					<literal>server</literal>, the default setting, which submits the form normally and completely refreshes the page;
+				</para>
+			</listitem>
+			<listitem>
+				<para>
+					<literal>ajax</literal>, which performs an Ajax form submission, and re-renders elements specified with the <code>render</code> attribute; and
+				</para>
+			</listitem>
+			<listitem>
+				<para>
+					<literal>none</literal>, which causes the <code>action</code> and <code>actionListener</code> items to be ignored, and the behavior is fully defined by the nested components instead of responses from submissions.
+				</para>
+			</listitem>
+		</itemizedlist>
+	</section>
+	
+	<section id="sect-Component_Reference-Menus_and_toolbars-richpanelMenuGroup">
+		<title>&lt;rich:panelMenuGroup&gt;</title>
+		<para>
+			The <classname>&lt;rich:panelMenuGroup&gt;</classname> component defines a group of <classname>&lt;rich:panelMenuItem&gt;</classname> components inside a <classname>&lt;rich:panelMenu&gt;</classname>.
+		</para>
+		<para>
+			If the <code>expandMode</code> is unspecified, the submission behavior for the group is inherited from the parent <classname>&lt;rich:panelMenu&gt;</classname>. Otherwise, the <code>expandMode</code> setting is used instead of the parent&#39;s behavior.
+		</para>
+		<para>
+			Icons for the menu group can be chosen from a set of standard icons. There are three attributes that relate to the different menu states that the icon represents: <code>iconExpanded</code>, <code>iconCollapsed</code>, and <code>iconDisabled</code>. The standard icons are shown in <xref linkend="figu-Component_Reference-richpanelMenuGroup-Standard_icons" />.
+		</para>
+		<figure id="figu-Component_Reference-richpanelMenuGroup-Standard_icons">
+			<title>Standard icons</title>
+			<mediaobject>
+				<imageobject>
+					<imagedata fileref="images/panelMenuIcons.png" format="PNG" />
+				</imageobject>
+			</mediaobject>
+		</figure>
+		<para>
+			Alternatively, a path can be defined that points to an image file to use as an icon.
+		</para>
+		<example id="exam-Component_Reference-richpanelMenuGroup-Using_custom_icons">
+			<title>Using custom icons</title>
+			
+<programlisting language="xml">
+&lt;rich:panelMenu&gt;
+  &lt;rich:PanelMenuGroup label="Group 1" iconExpanded="\images\img1.png" iconCollapsed="\images\img2.png"&gt;&gt;
+    &lt;!--Nested menu components--&gt;
+  &lt;/rich:panelMenuGroup&gt;
+&lt;/rich:panelMenu&gt;
+</programlisting>
+		</example>
+	</section>
+	
+	<section id="sect-Component_Reference-Menus_and_toolbars-richpanelMenuItem">
+		<title>&lt;rich:panelMenuItem&gt;</title>
+		<para>
+			The <classname>&lt;rich:panelMenuItem&gt;</classname> component represents a single item inside a <classname>&lt;rich:panelMenuGroup&gt;</classname> component, which is in turn part of a <classname>&lt;rich:panelMenu&gt;</classname> component.
+		</para>
+		<para>
+			If the <code>mode</code> is unspecified, the submission behavior for the item is inherited from the parent <classname>&lt;rich:panelMenu&gt;</classname>. Otherwise, the <code>mode</code> setting is used instead of the parent&#39;s behavior.
+		</para>
+		<para>
+			Icons for menu items can be chosen from a set of standard icons. There are two attributes that relate to the different menu states that the icon represents: <code>icon</code> and <code>iconDisabled</code>. The standard icons are shown in <xref linkend="figu-Component_Reference-richcolumn-Basic_column_example" />.
+		</para>
+		<figure id="figu-Component_Reference-richpanelMenuItem-Standard_icons">
+			<title>Standard icons</title>
+			<mediaobject>
+				<imageobject>
+					<imagedata fileref="images/panelMenuIcons.png" format="PNG" />
+				</imageobject>
+			</mediaobject>
+		</figure>
+		<para>
+			Alternatively, a path can be defined that points to an image file to use as an icon.
+		</para>
+		<example id="exam-Component_Reference-richpanelMenuItem-Using_custom_icons">
+			<title>Using custom icons</title>
+			
+<programlisting language="xml">
+&lt;rich:panelMenu&gt;
+  ...
+    &lt;rich:panelMenuItem value="Item 1.1" icon="\images\img1.png" iconDisabled="\images\img2.png" /&gt;
+  ...
+&lt;/rich:panelMenu&gt;
+</programlisting>
+		</example>
+	</section>
+	
 	<section id="sect-Component_Reference-Menus_and_toolbars-richtoolBar">
 		<title>rich:toolBar</title>
 		<para>

Modified: root/docs/trunk/Component_Reference/en-US/Output_and_messages.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Output_and_messages.xml	2009-11-12 02:04:17 UTC (rev 15869)
+++ root/docs/trunk/Component_Reference/en-US/Output_and_messages.xml	2009-11-12 03:25:11 UTC (rev 15870)
@@ -2,33 +2,40 @@
 <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
 ]>
 
-<chapter id="chap-Component_Reference-Messages">
-	<title>Messages</title>
+<chapter id="chap-Component_Reference-Output_and_messages">
+	<title>Output and messages</title>
 	<para>
 		Incomplete
 	</para>
-	<section id="sect-Component_Reference-Messages-richmessage">
+	<section id="sect-Component_Reference-Output_and_messages-richmessage">
 		<title>rich:message</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Messages-richmessages">
+	<section id="sect-Component_Reference-Output_and_messages-richmessages">
 		<title>rich:messages</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Messages-richprogressBar">
+	<section id="sect-Component_Reference-Output_and_messages-richpaint2D">
+		<title>rich:paint2D</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Output_and_messages-richprogressBar">
 		<title>rich:progressBar</title>
 		<para>
 			The <classname>&lt;rich:progressBar&gt;</classname> component displays a progress bar to indicate the status of a process to the user. It can update either through Ajax or on the client side, and the look and feel can be fully customized.
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Messages-richtoolTip">
+	<section id="sect-Component_Reference-Output_and_messages-richtoolTip">
 		<title>rich:toolTip</title>
 		<para>
 			Incomplete

Modified: root/docs/trunk/Component_Reference/en-US/Panels_and_containers.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Panels_and_containers.xml	2009-11-12 02:04:17 UTC (rev 15869)
+++ root/docs/trunk/Component_Reference/en-US/Panels_and_containers.xml	2009-11-12 03:25:11 UTC (rev 15870)
@@ -7,71 +7,6 @@
 	<para>
 		This chapter details those components which act as panels and containers to hold groups of other components.
 	</para>
-	<section id="sect-Component_Reference-Panels_and_containers-a4jform">
-		<title>&lt;a4j:form&gt;</title>
-		<para>
-			The <classname>&lt;a4j:form&gt;</classname> builds on the functionality of the JavaServer Faces (<acronym>JSF</acronym>) component <classname>&lt;h:form&gt;</classname>, adding Ajax capabilities to the form.
-		</para>
-		<note>
-			<title>Note</title>
-			<para>
-				The <acronym>JSF</acronym> component <classname>&lt;h:form&gt;</classname>, on which the <classname>&lt;a4j:form&gt;</classname> component is based, had an issue whereby the <classname>&lt;h:commandLink&gt;</classname> component could not be re-rendered without re-rendering the entire form. <classname>&lt;a4j:form&gt;</classname> and <classname>&lt;a4j:commandLink&gt;</classname> fix this issue.
-			</para>
-		</note>
-		<para>
-			The <classname>&lt;a4j:form&gt;</classname> component can add indirect Ajax support to non-Ajax components on the form by setting <code>ajaxSubmit="true"</code>. It then uses the standard Ajax component attributes and updates components specified with the <code>render</code> attribute.
-		</para>
-		<important>
-			<title>Important</title>
-			<para>
-				<classname>&lt;a4j:form&gt;</classname> should not use <code>ajaxSubmit="true"</code> if it contains other Ajax-capable components.
-			</para>
-			<para>
-				Additionally, due to security reasons the file upload form element cannot be indirectly made Ajax-capable with <classname>&lt;a4j:form&gt;</classname>.
-			</para>
-		</important>
-	</section>
-	
-	<section id="sect-Component_Reference-Panels_and_containers-a4joutputPanel">
-		<title>&lt;a4j:outputPanel&gt;</title>
-		<para>
-			The <classname>&lt;a4j:outputPanel&gt;</classname> component is used to group together components in to update them as a whole, rather than having to specify the components individually.
-		</para>
-		<para>
-			The <code>layout</code> attribute can be used to determine how the component is rendered in <acronym>HTML</acronym>:
-		</para>
-		<itemizedlist>
-			<listitem>
-				<para>
-					<code>layout="inline"</code> is the default behavior, which will render the component as a pair of <code>&lt;span&gt;</code> tags containing the child components.
-				</para>
-			</listitem>
-			<listitem>
-				<para>
-					<code>layout="block"</code> will render the component as a pair of <code>&lt;div&gt;</code> tags containing the child components, which will use any defined <code>&lt;div&gt;</code> element styles.
-				</para>
-			</listitem>
-			<listitem>
-				<para>
-					<code>layout="none"</code> will render the component as a pair of <code>&lt;span&gt;</code> tags with an identifier equal to that of a child component. If the child component is rendered then the <code>&lt;span&gt;</code> are not included, leaving no markup representing the <classname>&lt;a4j:outputPanel&gt;</classname> in <acronym>HTML</acronym>.
-				</para>
-			</listitem>
-		</itemizedlist>
-		<para>
-			Setting <code>ajaxRendered="true"</code> will cause the <classname>&lt;a4j:outputPanel&gt;</classname> to be updated with each Ajax response for the page, even when not listed explicitly by the requesting component. This can in turn be overridden by specific attributes on any requesting components.
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Panels_and_containers-a4jregion">
-		<title>&lt;a4j:region&gt;</title>
-		<para>
-			The <classname>&lt;a4j:region&gt;</classname> component specifies a part of the document object model (<acronym>DOM</acronym>) tree to be processed on the server. The processing includes data handling during decoding, conversion, validation, and model updating. When not using <classname>&lt;a4j:region&gt;</classname>, the entire view functions as a region.
-		</para>
-		<para>
-			The whole form is still submitted to the server, but only the specified region is processed. Regions can be nested, in which case only the immediate region of the component initiating the request will be processed.
-		</para>
-	</section>
-	
 	<section id="sect-Component_Reference-Panels_and_containers-richmodalPanel">
 		<title>&lt;rich:modalPanel&gt;</title>
 		<para>
@@ -127,109 +62,6 @@
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Panels_and_containers-richpanelMenu">
-		<title>&lt;rich:panelMenu&gt;</title>
-		<para>
-			The <classname>&lt;rich:panelMenu&gt;</classname> component can be used in conjunction with <classname>&lt;rich:panelMenuItem&gt;</classname> and <classname>&lt;rich:panelMenuGroup&gt;</classname> to create an expanding, hierarchical menu. The <classname>&lt;rich:panelMenu&gt;</classname> component&#39;s appearance can be highly customized, and the hierarchy can stretch to any number of sub-levels.
-		</para>
-		<para>
-			The <code>selectedChild</code> attribute is used to point to the name of the currently selected menu item.
-		</para>
-		<para>
-			By default, the event to expand the menu is a mouse click. This can be changed by setting <code>event</code> to specify the preferred event. Several sub-menus can be expanded a once unless the <code>expandSingle</code> is set to <literal>true</literal>, which only allows one sub-menu at a time to be expanded.
-		</para>
-		<para>
-			The <code>mode</code> attribute defines the submission mode for normal menu items that link to content, and the <code>expandMode</code> attribute defines the submission mode for menu items that expand and collapse. The settings for these attributes apply to the entire menu unless a menu item defines its own individual <code>mode</code> or <code>expandMode</code>. The values for <code>mode</code> and <code>expandMode</code> are:
-		</para>
-		<itemizedlist>
-			<listitem>
-				<para>
-					<literal>server</literal>, the default setting, which submits the form normally and completely refreshes the page;
-				</para>
-			</listitem>
-			<listitem>
-				<para>
-					<literal>ajax</literal>, which performs an Ajax form submission, and re-renders elements specified with the <code>render</code> attribute; and
-				</para>
-			</listitem>
-			<listitem>
-				<para>
-					<literal>none</literal>, which causes the <code>action</code> and <code>actionListener</code> items to be ignored, and the behavior is fully defined by the nested components instead of responses from submissions.
-				</para>
-			</listitem>
-		</itemizedlist>
-	</section>
-	
-	<section id="sect-Component_Reference-Panels_and_containers-richpanelMenuGroup">
-		<title>&lt;rich:panelMenuGroup&gt;</title>
-		<para>
-			The <classname>&lt;rich:panelMenuGroup&gt;</classname> component defines a group of <classname>&lt;rich:panelMenuItem&gt;</classname> components inside a <classname>&lt;rich:panelMenu&gt;</classname>.
-		</para>
-		<para>
-			If the <code>expandMode</code> is unspecified, the submission behavior for the group is inherited from the parent <classname>&lt;rich:panelMenu&gt;</classname>. Otherwise, the <code>expandMode</code> setting is used instead of the parent&#39;s behavior.
-		</para>
-		<para>
-			Icons for the menu group can be chosen from a set of standard icons. There are three attributes that relate to the different menu states that the icon represents: <code>iconExpanded</code>, <code>iconCollapsed</code>, and <code>iconDisabled</code>. The standard icons are shown in <xref linkend="figu-Component_Reference-richpanelMenuGroup-Standard_icons" />.
-		</para>
-		<figure id="figu-Component_Reference-richpanelMenuGroup-Standard_icons">
-			<title>Standard icons</title>
-			<mediaobject>
-				<imageobject>
-					<imagedata fileref="images/panelMenuIcons.png" format="PNG" />
-				</imageobject>
-			</mediaobject>
-		</figure>
-		<para>
-			Alternatively, a path can be defined that points to an image file to use as an icon.
-		</para>
-		<example id="exam-Component_Reference-richpanelMenuGroup-Using_custom_icons">
-			<title>Using custom icons</title>
-			
-<programlisting language="xml">
-&lt;rich:panelMenu&gt;
-  &lt;rich:PanelMenuGroup label="Group 1" iconExpanded="\images\img1.png" iconCollapsed="\images\img2.png"&gt;&gt;
-    &lt;!--Nested menu components--&gt;
-  &lt;/rich:panelMenuGroup&gt;
-&lt;/rich:panelMenu&gt;
-</programlisting>
-		</example>
-	</section>
-	
-	<section id="sect-Component_Reference-Panels_and_containers-richpanelMenuItem">
-		<title>&lt;rich:panelMenuItem&gt;</title>
-		<para>
-			The <classname>&lt;rich:panelMenuItem&gt;</classname> component represents a single item inside a <classname>&lt;rich:panelMenuGroup&gt;</classname> component, which is in turn part of a <classname>&lt;rich:panelMenu&gt;</classname> component.
-		</para>
-		<para>
-			If the <code>mode</code> is unspecified, the submission behavior for the item is inherited from the parent <classname>&lt;rich:panelMenu&gt;</classname>. Otherwise, the <code>mode</code> setting is used instead of the parent&#39;s behavior.
-		</para>
-		<para>
-			Icons for menu items can be chosen from a set of standard icons. There are two attributes that relate to the different menu states that the icon represents: <code>icon</code> and <code>iconDisabled</code>. The standard icons are shown in <xref linkend="figu-Component_Reference-richcolumn-Basic_column_example" />.
-		</para>
-		<figure id="figu-Component_Reference-richpanelMenuItem-Standard_icons">
-			<title>Standard icons</title>
-			<mediaobject>
-				<imageobject>
-					<imagedata fileref="images/panelMenuIcons.png" format="PNG" />
-				</imageobject>
-			</mediaobject>
-		</figure>
-		<para>
-			Alternatively, a path can be defined that points to an image file to use as an icon.
-		</para>
-		<example id="exam-Component_Reference-richpanelMenuItem-Using_custom_icons">
-			<title>Using custom icons</title>
-			
-<programlisting language="xml">
-&lt;rich:panelMenu&gt;
-  ...
-    &lt;rich:panelMenuItem value="Item 1.1" icon="\images\img1.png" iconDisabled="\images\img2.png" /&gt;
-  ...
-&lt;/rich:panelMenu&gt;
-</programlisting>
-		</example>
-	</section>
-	
 	<section id="sect-Component_Reference-Panels_and_containers-richsimpleTogglePanel">
 		<title>&lt;rich:simpleTogglePanel&gt;</title>
 		<para>

Modified: root/docs/trunk/Component_Reference/en-US/Preface.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Preface.xml	2009-11-12 02:04:17 UTC (rev 15869)
+++ root/docs/trunk/Component_Reference/en-US/Preface.xml	2009-11-12 03:25:11 UTC (rev 15870)
@@ -4,10 +4,10 @@
 
 <preface id="pref-Component_Reference-Preface">
 	<title>Preface</title>
-	<!--         FOR JDOCBOOK         --><xi:include href="Common_Content/Conventions.xml" xmlns:xi="http://www.w3.org/2001/XInclude"><!--         FOR PUBLICAN         --><xi:fallback xmlns:xi="http://www.w3.org/2001/XInclude"><xi:include href="fallback_content/Conventions.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+	<!--            FOR JDOCBOOK            --><xi:include href="Common_Content/Conventions.xml" xmlns:xi="http://www.w3.org/2001/XInclude"><!--            FOR PUBLICAN            --><xi:fallback xmlns:xi="http://www.w3.org/2001/XInclude"><xi:include href="fallback_content/Conventions.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
 	</xi:fallback>
 	</xi:include>
-	<!--         PUBLICAN'S ORIGINAL XINCLUDES         --><xi:include href="Feedback.xml" xmlns:xi="http://www.w3.org/2001/XInclude"><xi:fallback xmlns:xi="http://www.w3.org/2001/XInclude"><xi:include href="Common_Content/Feedback.xml" xmlns:xi="http://www.w3.org/2001/XInclude"><!--         FOR JDOCBOOK         --><xi:fallback xmlns:xi="http://www.w3.org/2001/XInclude"><xi:include href="fallback_content/Feedback.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+	<!--            PUBLICAN'S ORIGINAL XINCLUDES            --><xi:include href="Feedback.xml" xmlns:xi="http://www.w3.org/2001/XInclude"><xi:fallback xmlns:xi="http://www.w3.org/2001/XInclude"><xi:include href="Common_Content/Feedback.xml" xmlns:xi="http://www.w3.org/2001/XInclude"><!--            FOR JDOCBOOK            --><xi:fallback xmlns:xi="http://www.w3.org/2001/XInclude"><xi:include href="fallback_content/Feedback.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
 	</xi:fallback>
 	</xi:include>
 	</xi:fallback>

Modified: root/docs/trunk/Component_Reference/en-US/Resources.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Resources.xml	2009-11-12 02:04:17 UTC (rev 15869)
+++ root/docs/trunk/Component_Reference/en-US/Resources.xml	2009-11-12 03:25:11 UTC (rev 15870)
@@ -2,52 +2,45 @@
 <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
 ]>
 
-<chapter id="chap-Component_Reference-Resource_handling">
-	<title>Resource handling</title>
+<chapter id="chap-Component_Reference-Resources">
+	<title>Resources</title>
 	<para>
 		Incomplete
 	</para>
-	<section id="sect-Component_Reference-Resource_handling-a4jloadBundle">
+	<section id="sect-Component_Reference-Resources-a4jloadBundle">
 		<title>a4j:loadBundle</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Resource_handling-a4jkeepAlive">
-		<title>a4j:keepAlive</title>
+	<section id="sect-Component_Reference-Resources-a4jloadScript">
+		<title>a4j:loadScript</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Resource_handling-a4jpoll">
-		<title>a4j:poll</title>
+	<section id="sect-Component_Reference-Resources-a4jloadStyle">
+		<title>a4j:loadStyle</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Resource_handling-a4jpush">
-		<title>a4j:push</title>
+	<section id="sect-Component_Reference-Resources-a4jkeepAlive">
+		<title>a4j:keepAlive</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Resource_handling-a4jqueue">
-		<title>a4j:queue</title>
+	<section id="sect-Component_Reference-Resources-a4jmediaOutput">
+		<title>a4j:mediaOutput</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
-	
-	<section id="sect-Component_Reference-Resource_handling-a4jstatus">
-		<title>a4j:status</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
 
 </chapter>
 

Modified: root/docs/trunk/Component_Reference/en-US/Trees.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Trees.xml	2009-11-12 02:04:17 UTC (rev 15869)
+++ root/docs/trunk/Component_Reference/en-US/Trees.xml	2009-11-12 03:25:11 UTC (rev 15870)
@@ -2,89 +2,89 @@
 <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
 ]>
 
-<chapter id="chap-Component_Reference-Lists_and_trees">
-	<title>Lists and trees</title>
+<chapter id="chap-Component_Reference-Trees">
+	<title>Trees</title>
 	<para>
 		Incomplete
 	</para>
-	<section id="sect-Component_Reference-Lists_and_trees-richdataDefinitionList">
+	<section id="sect-Component_Reference-Trees-richdataDefinitionList">
 		<title>rich:dataDefinitionList</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Lists_and_trees-richdataList">
+	<section id="sect-Component_Reference-Trees-richdataList">
 		<title>rich:dataList</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Lists_and_trees-richdataOrderedList">
+	<section id="sect-Component_Reference-Trees-richdataOrderedList">
 		<title>rich:dataOrderedList</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Lists_and_trees-richlistShuttle">
+	<section id="sect-Component_Reference-Trees-richlistShuttle">
 		<title>rich:listShuttle</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Lists_and_trees-richorderingList">
+	<section id="sect-Component_Reference-Trees-richorderingList">
 		<title>rich:orderingList</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Lists_and_trees-richpickList">
+	<section id="sect-Component_Reference-Trees-richpickList">
 		<title>rich:pickList</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Lists_and_trees-richchangeExpandListener">
+	<section id="sect-Component_Reference-Trees-richchangeExpandListener">
 		<title>rich:changeExpandListener</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Lists_and_trees-richnodeSelectListener">
+	<section id="sect-Component_Reference-Trees-richnodeSelectListener">
 		<title>rich:nodeSelectListener</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Lists_and_trees-richrecursiveTreeNodesAdapter">
+	<section id="sect-Component_Reference-Trees-richrecursiveTreeNodesAdapter">
 		<title>rich:recursiveTreeNodesAdapter</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Lists_and_trees-richtree">
+	<section id="sect-Component_Reference-Trees-richtree">
 		<title>rich:tree</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Lists_and_trees-richtreeNode">
+	<section id="sect-Component_Reference-Trees-richtreeNode">
 		<title>rich:treeNode</title>
 		<para>
 			Incomplete
 		</para>
 	</section>
 	
-	<section id="sect-Component_Reference-Lists_and_trees-richtreeNodesAdapter">
+	<section id="sect-Component_Reference-Trees-richtreeNodesAdapter">
 		<title>rich:treeNodesAdapter</title>
 		<para>
 			Incomplete

Modified: root/docs/trunk/Component_Reference/en-US/all-Component_Reference.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/all-Component_Reference.xml	2009-11-12 02:04:17 UTC (rev 15869)
+++ root/docs/trunk/Component_Reference/en-US/all-Component_Reference.xml	2009-11-12 03:25:11 UTC (rev 15870)
@@ -28,7 +28,7 @@
 					<year>2009</year>
 					<holder>Red Hat</holder>
 				</copyright>
-				<!--          FOR PUBLICAN           -->
+				<!--             FOR PUBLICAN              -->
 				<legalnotice xml:base="Common_Content/Legal_Notice.xml">
 					<para>
 						Copyright <trademark class="copyright"></trademark> 2009 Red Hat This material may only be distributed subject to the terms and conditions set forth in the GNU Free Documentation License (GFDL), V1.2 or later (the latest version is presently available at <ulink url="http://www.gnu.org/licenses/fdl.txt">http://www.gnu.org/licenses/fdl.txt</ulink>).
@@ -46,7 +46,7 @@
 					</author>
 				</authorgroup>
 			</bookinfo>
-			<!--           <xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>           -->
+			<!--              <xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>              -->
 			<chapter id="chap-Component_Reference-Introduction" lang="en-US">
 				<title>Introduction</title>
 				<para>



More information about the richfaces-svn-commits mailing list