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

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Wed Nov 11 20:40:04 EST 2009


Author: SeanRogers
Date: 2009-11-11 20:40:04 -0500 (Wed, 11 Nov 2009)
New Revision: 15868

Added:
   root/docs/trunk/Component_Reference/en-US/Action_components.xml
   root/docs/trunk/Component_Reference/en-US/Output_and_messages.xml
   root/docs/trunk/Component_Reference/en-US/Resources.xml
   root/docs/trunk/Component_Reference/en-US/Trees.xml
Removed:
   root/docs/trunk/Component_Reference/en-US/Ajax_basics.xml
   root/docs/trunk/Component_Reference/en-US/Lists_and_trees.xml
   root/docs/trunk/Component_Reference/en-US/Messages.xml
   root/docs/trunk/Component_Reference/en-US/Resource_handling.xml
Modified:
   root/docs/trunk/Component_Reference/en-US/Book_Info.xml
   root/docs/trunk/Component_Reference/en-US/Component_Reference.xml
   root/docs/trunk/Component_Reference/en-US/Preface.xml
   root/docs/trunk/Component_Reference/en-US/Tables_and_grids.xml
   root/docs/trunk/Component_Reference/en-US/all-Component_Reference.xml
Log:
Renamed some chapters

Copied: root/docs/trunk/Component_Reference/en-US/Action_components.xml (from rev 15845, root/docs/trunk/Component_Reference/en-US/Ajax_basics.xml)
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Action_components.xml	                        (rev 0)
+++ root/docs/trunk/Component_Reference/en-US/Action_components.xml	2009-11-12 01:40:04 UTC (rev 15868)
@@ -0,0 +1,110 @@
+<?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>
+

Deleted: root/docs/trunk/Component_Reference/en-US/Ajax_basics.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Ajax_basics.xml	2009-11-12 01:29:57 UTC (rev 15867)
+++ root/docs/trunk/Component_Reference/en-US/Ajax_basics.xml	2009-11-12 01:40:04 UTC (rev 15868)
@@ -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>
-

Modified: root/docs/trunk/Component_Reference/en-US/Book_Info.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Book_Info.xml	2009-11-12 01:29:57 UTC (rev 15867)
+++ root/docs/trunk/Component_Reference/en-US/Book_Info.xml	2009-11-12 01:40:04 UTC (rev 15868)
@@ -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/Component_Reference.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Component_Reference.xml	2009-11-12 01:29:57 UTC (rev 15867)
+++ root/docs/trunk/Component_Reference/en-US/Component_Reference.xml	2009-11-12 01:40:04 UTC (rev 15868)
@@ -4,25 +4,30 @@
 
 <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>
-	<xi:include href="Rich_inputs.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
-	<xi:include href="Panels_and_containers.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
-	<xi:include href="Tables_and_grids.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
-	<xi:include href="Lists_and_trees.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
-	<xi:include href="Menus_and_toolbars.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
-	<xi:include href="Messages.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
-	<xi:include href="Drag_and_drop.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
-	<xi:include href="Layout_and_appearance.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
-	<xi:include href="Resource_handling.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>
-	<xi:include href="Portals.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
-	<xi:include href="Functionality_extension.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
-	<xi:include href="Other_components.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="Ajax_basics.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+		<xi:include href="Resource_handling.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+	</part>
+	<part id="part-Component_Reference-rich_tag_library">
+		<title>rich tag library</title>
+		<xi:include href="Rich_inputs.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+		<xi:include href="Panels_and_containers.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+		<xi:include href="Tables_and_grids.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+		<xi:include href="Lists_and_trees.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+		<xi:include href="Menus_and_toolbars.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+		<xi:include href="Messages.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+		<xi:include href="Drag_and_drop.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+		<xi:include href="Layout_and_appearance.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>
+		<xi:include href="Portals.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+		<xi:include href="Functionality_extension.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+		<xi:include href="Other_components.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+	</part>
 	<xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
 	<index />
 </book>

Deleted: root/docs/trunk/Component_Reference/en-US/Lists_and_trees.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Lists_and_trees.xml	2009-11-12 01:29:57 UTC (rev 15867)
+++ root/docs/trunk/Component_Reference/en-US/Lists_and_trees.xml	2009-11-12 01:40:04 UTC (rev 15868)
@@ -1,95 +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-Lists_and_trees">
-	<title>Lists and trees</title>
-	<para>
-		Incomplete
-	</para>
-	<section id="sect-Component_Reference-Lists_and_trees-richdataDefinitionList">
-		<title>rich:dataDefinitionList</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Lists_and_trees-richdataList">
-		<title>rich:dataList</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Lists_and_trees-richdataOrderedList">
-		<title>rich:dataOrderedList</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Lists_and_trees-richlistShuttle">
-		<title>rich:listShuttle</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Lists_and_trees-richorderingList">
-		<title>rich:orderingList</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Lists_and_trees-richpickList">
-		<title>rich:pickList</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Lists_and_trees-richchangeExpandListener">
-		<title>rich:changeExpandListener</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Lists_and_trees-richnodeSelectListener">
-		<title>rich:nodeSelectListener</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Lists_and_trees-richrecursiveTreeNodesAdapter">
-		<title>rich:recursiveTreeNodesAdapter</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Lists_and_trees-richtree">
-		<title>rich:tree</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Lists_and_trees-richtreeNode">
-		<title>rich:treeNode</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Lists_and_trees-richtreeNodesAdapter">
-		<title>rich:treeNodesAdapter</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-
-</chapter>
-

Deleted: root/docs/trunk/Component_Reference/en-US/Messages.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Messages.xml	2009-11-12 01:29:57 UTC (rev 15867)
+++ root/docs/trunk/Component_Reference/en-US/Messages.xml	2009-11-12 01:40:04 UTC (rev 15868)
@@ -1,39 +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-Messages">
-	<title>Messages</title>
-	<para>
-		Incomplete
-	</para>
-	<section id="sect-Component_Reference-Messages-richmessage">
-		<title>rich:message</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Messages-richmessages">
-		<title>rich:messages</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-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">
-		<title>rich:toolTip</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-
-</chapter>
-

Copied: root/docs/trunk/Component_Reference/en-US/Output_and_messages.xml (from rev 15865, root/docs/trunk/Component_Reference/en-US/Messages.xml)
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Output_and_messages.xml	                        (rev 0)
+++ root/docs/trunk/Component_Reference/en-US/Output_and_messages.xml	2009-11-12 01:40:04 UTC (rev 15868)
@@ -0,0 +1,39 @@
+<?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-Messages">
+	<title>Messages</title>
+	<para>
+		Incomplete
+	</para>
+	<section id="sect-Component_Reference-Messages-richmessage">
+		<title>rich:message</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Messages-richmessages">
+		<title>rich:messages</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-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">
+		<title>rich:toolTip</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+
+</chapter>
+

Modified: root/docs/trunk/Component_Reference/en-US/Preface.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Preface.xml	2009-11-12 01:29:57 UTC (rev 15867)
+++ root/docs/trunk/Component_Reference/en-US/Preface.xml	2009-11-12 01:40:04 UTC (rev 15868)
@@ -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>

Deleted: root/docs/trunk/Component_Reference/en-US/Resource_handling.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Resource_handling.xml	2009-11-12 01:29:57 UTC (rev 15867)
+++ root/docs/trunk/Component_Reference/en-US/Resource_handling.xml	2009-11-12 01:40:04 UTC (rev 15868)
@@ -1,53 +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-Resource_handling">
-	<title>Resource handling</title>
-	<para>
-		Incomplete
-	</para>
-	<section id="sect-Component_Reference-Resource_handling-a4jloadBundle">
-		<title>a4j:loadBundle</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Resource_handling-a4jkeepAlive">
-		<title>a4j:keepAlive</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Resource_handling-a4jpoll">
-		<title>a4j:poll</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Resource_handling-a4jpush">
-		<title>a4j:push</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Resource_handling-a4jqueue">
-		<title>a4j:queue</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-	
-	<section id="sect-Component_Reference-Resource_handling-a4jstatus">
-		<title>a4j:status</title>
-		<para>
-			Incomplete
-		</para>
-	</section>
-
-</chapter>
-

Copied: root/docs/trunk/Component_Reference/en-US/Resources.xml (from rev 15845, root/docs/trunk/Component_Reference/en-US/Resource_handling.xml)
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Resources.xml	                        (rev 0)
+++ root/docs/trunk/Component_Reference/en-US/Resources.xml	2009-11-12 01:40:04 UTC (rev 15868)
@@ -0,0 +1,53 @@
+<?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-Resource_handling">
+	<title>Resource handling</title>
+	<para>
+		Incomplete
+	</para>
+	<section id="sect-Component_Reference-Resource_handling-a4jloadBundle">
+		<title>a4j:loadBundle</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Resource_handling-a4jkeepAlive">
+		<title>a4j:keepAlive</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Resource_handling-a4jpoll">
+		<title>a4j:poll</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Resource_handling-a4jpush">
+		<title>a4j:push</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Resource_handling-a4jqueue">
+		<title>a4j:queue</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/Tables_and_grids.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Tables_and_grids.xml	2009-11-12 01:29:57 UTC (rev 15867)
+++ root/docs/trunk/Component_Reference/en-US/Tables_and_grids.xml	2009-11-12 01:40:04 UTC (rev 15868)
@@ -179,10 +179,11 @@
 			The <classname>&lt;rich:columns&gt;</classname> component allows for dynamic sets of columns for tables. Columns and rows can be merged, and the look and feel can be highly customized. The component gets a list from a data model and creates a corresponding set of columns in a <classname>&lt;rich:dataTable&gt;</classname> component. The <classname>&lt;rich:columns&gt;</classname> component also supports header and footer facets.
 		</para>
 		<para>
-			Basic usage of the <classname>&lt;rich:columns&gt;</classname> component requires the <code>value</code> attribute, which points to the data model; the <code>var</code> attribute, which holds the current variable for the collection of data; and the <code>index</code> attribute, which holds the current counter. The <code>id</code> attribute is used for when the individuals rows require identifiers for Ajax events. 
+			Basic usage of the <classname>&lt;rich:columns&gt;</classname> component requires the <code>value</code> attribute, which points to the data model; the <code>var</code> attribute, which holds the current variable for the collection of data; and the <code>index</code> attribute, which holds the current counter. The <code>id</code> attribute is used for when the individuals rows require identifiers for Ajax events.
 		</para>
-		<example id="exam-Component_Reference-richcolumns-Complex_headers_using_column_groups">
+		<example id="exam-Component_Reference-richcolumns-Basic_columns_example">
 			<title>Basic columns example</title>
+			
 <programlisting language="xml">
 &lt;rich:dataTable value="#{dataTableScrollerBean.model}" var="model" width="750"&gt;
   &lt;rich:columns value="#{dataTableScrollerBean.columns}" var="columns" index="ind" id="column#{ind}"&gt; 
@@ -193,11 +194,11 @@
     &lt;h:outputText value="#{model[ind].mileage} miles " /&gt;
     &lt;h:outputText value="#{model[ind].price}$" /&gt;       
   &lt;/rich:columns&gt; 
-&lt;/rich:dataTable&gt;     
+&lt;/rich:dataTable&gt;
 </programlisting>
 		</example>
 		<para>
-			The <code>columns</code> attribute 
+			The <code>columns</code> attribute
 		</para>
 		<para>
 			For details on filtering and sorting columns, refer to <xref linkend="sect-Component_Reference-Tables_and_grids-Table_filtering" /> and <xref linkend="sect-Component_Reference-Tables_and_grids-Table_sorting" />.

Copied: root/docs/trunk/Component_Reference/en-US/Trees.xml (from rev 15845, root/docs/trunk/Component_Reference/en-US/Lists_and_trees.xml)
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Trees.xml	                        (rev 0)
+++ root/docs/trunk/Component_Reference/en-US/Trees.xml	2009-11-12 01:40:04 UTC (rev 15868)
@@ -0,0 +1,95 @@
+<?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-Lists_and_trees">
+	<title>Lists and trees</title>
+	<para>
+		Incomplete
+	</para>
+	<section id="sect-Component_Reference-Lists_and_trees-richdataDefinitionList">
+		<title>rich:dataDefinitionList</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Lists_and_trees-richdataList">
+		<title>rich:dataList</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Lists_and_trees-richdataOrderedList">
+		<title>rich:dataOrderedList</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Lists_and_trees-richlistShuttle">
+		<title>rich:listShuttle</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Lists_and_trees-richorderingList">
+		<title>rich:orderingList</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Lists_and_trees-richpickList">
+		<title>rich:pickList</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Lists_and_trees-richchangeExpandListener">
+		<title>rich:changeExpandListener</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Lists_and_trees-richnodeSelectListener">
+		<title>rich:nodeSelectListener</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Lists_and_trees-richrecursiveTreeNodesAdapter">
+		<title>rich:recursiveTreeNodesAdapter</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Lists_and_trees-richtree">
+		<title>rich:tree</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Lists_and_trees-richtreeNode">
+		<title>rich:treeNode</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+	
+	<section id="sect-Component_Reference-Lists_and_trees-richtreeNodesAdapter">
+		<title>rich:treeNodesAdapter</title>
+		<para>
+			Incomplete
+		</para>
+	</section>
+
+</chapter>
+

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 01:29:57 UTC (rev 15867)
+++ root/docs/trunk/Component_Reference/en-US/all-Component_Reference.xml	2009-11-12 01:40:04 UTC (rev 15868)
@@ -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