[richfaces-svn-commits] JBoss Rich Faces SVN: r11745 - in trunk/docs/cdkguide/en/src/main/docbook: modules and 1 other directories.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Fri Dec 12 12:22:42 EST 2008


Author: artdaw
Date: 2008-12-12 12:22:41 -0500 (Fri, 12 Dec 2008)
New Revision: 11745

Added:
   trunk/docs/cdkguide/en/src/main/docbook/tags/
   trunk/docs/cdkguide/en/src/main/docbook/tags/cif.xml
   trunk/docs/cdkguide/en/src/main/docbook/tags/cset.xml
   trunk/docs/cdkguide/en/src/main/docbook/tags/fattribute.xml
   trunk/docs/cdkguide/en/src/main/docbook/tags/fclientId.xml
   trunk/docs/cdkguide/en/src/main/docbook/tags/finsert.xml
   trunk/docs/cdkguide/en/src/main/docbook/tags/forEach.xml
Removed:
   trunk/docs/cdkguide/en/src/main/docbook/modules/temptags.xml
Modified:
   trunk/docs/cdkguide/en/src/main/docbook/master.xml
Log:
https://jira.jboss.org/jira/browse/RF-3692 - Template Tags Refrence was added

Modified: trunk/docs/cdkguide/en/src/main/docbook/master.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/master.xml	2008-12-12 17:14:23 UTC (rev 11744)
+++ trunk/docs/cdkguide/en/src/main/docbook/master.xml	2008-12-12 17:22:41 UTC (rev 11745)
@@ -11,8 +11,8 @@
 <!ENTITY ide SYSTEM "modules/ide.xml">
 <!ENTITY ref SYSTEM "modules/ref.xml">
 <!ENTITY test SYSTEM "modules/test.xml">
-<!ENTITY temptags SYSTEM "modules/temptags.xml">
 
+
 <!ENTITY pcreate SYSTEM "includes/pcreate.xml">
 <!ENTITY ccreate SYSTEM "includes/ccreate.xml">
 <!ENTITY ui SYSTEM "includes/ui.xml">
@@ -24,7 +24,14 @@
 <!ENTITY taghandler SYSTEM "includes/taghandler.xml">
 <!ENTITY rendererbase SYSTEM "includes/rendererbase.xml">
 <!--Check the links page -->
-<!ENTITY links SYSTEM "modules/links.xml">
+<!ENTITY links SYSTEM "modules/links.xml">
+
+<!ENTITY forEach SYSTEM "tags/forEach.xml">
+<!ENTITY cif SYSTEM "tags/cif.xml">
+<!ENTITY cset SYSTEM "tags/cset.xml">
+<!ENTITY fattribute SYSTEM "tags/fattribute.xml">
+<!ENTITY finsert SYSTEM "tags/finsert.xml">
+<!ENTITY fclientId SYSTEM "tags/fclientId.xml">
 ]>
 
 <book>
@@ -175,4 +182,24 @@
         <title>Button component development</title>
         <para> Work in progress... </para>
 
-    </chapter> &ide; &namingconv; &ref; &temptags; </book>
+    </chapter> &ide; &namingconv; &ref; 
+    
+    <chapter id="temptags" xreflabel="temptags">
+    <?dbhtml filename="temptags.html"?>
+    <chapterinfo>
+        <keywordset>
+            <keyword>template</keyword>
+            <keyword>CDK</keyword>
+	    <keyword>Guide</keyword>
+        </keywordset>
+    </chapterinfo>
+<title>Template tags overview</title>
+
+&forEach;
+&cif;
+&cset;
+&fattribute;
+&finsert;
+&fclientId;
+</chapter>
+    </book>

Deleted: trunk/docs/cdkguide/en/src/main/docbook/modules/temptags.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/modules/temptags.xml	2008-12-12 17:14:23 UTC (rev 11744)
+++ trunk/docs/cdkguide/en/src/main/docbook/modules/temptags.xml	2008-12-12 17:22:41 UTC (rev 11745)
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<chapter id="temptags" xreflabel="temptags">
-    <?dbhtml filename="temptags.html"?>
-    <chapterinfo>
-        <keywordset>
-            <keyword>template</keyword>
-            <keyword>CDK</keyword>
-	    <keyword>Guide</keyword>
-        </keywordset>
-    </chapterinfo>
-
-<title>Template tags overview</title>
-		<para>
-		Work in progress...
-		</para>
-
-</chapter>
\ No newline at end of file

Added: trunk/docs/cdkguide/en/src/main/docbook/tags/cif.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/tags/cif.xml	                        (rev 0)
+++ trunk/docs/cdkguide/en/src/main/docbook/tags/cif.xml	2008-12-12 17:22:41 UTC (rev 11745)
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<section id="cif" xreflabel="cif">
+	<?dbhtml filename="cif.html"?>
+	<sectioninfo>
+		<keywordset>
+			<keyword>c:if</keyword>
+		</keywordset>
+	</sectioninfo>
+	<title>&lt;c:if /&gt;</title>
+	<para>
+	The <emphasis role="bold"><property>&lt;c:if /&gt;</property></emphasis> tag is a simple conditional tag, which evalutes its body if the supplied condition is true.
+	</para>
+	<table>
+		<title>The &lt;c:if /&gt; attributes</title>
+		<tgroup cols="3">
+			<thead>
+		            <row>
+		                <entry>Attribute Name</entry>
+		                <entry>Description</entry>
+			        <entry>Required</entry>
+		            </row>
+			</thead>
+			<tbody>
+				<row>
+					<entry>test</entry>
+					<entry>Defines the test condition that determines whether or not the body content should be processed. </entry>
+					<entry>True</entry>
+				</row>
+			</tbody>
+		</tgroup>
+	</table>
+</section>


Property changes on: trunk/docs/cdkguide/en/src/main/docbook/tags/cif.xml
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/docs/cdkguide/en/src/main/docbook/tags/cset.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/tags/cset.xml	                        (rev 0)
+++ trunk/docs/cdkguide/en/src/main/docbook/tags/cset.xml	2008-12-12 17:22:41 UTC (rev 11745)
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<section id="cset" xreflabel="cset">
+	<?dbhtml filename="cset.html"?>
+	<sectioninfo>
+		<keywordset>
+			<keyword>c:set</keyword>
+		</keywordset>
+	</sectioninfo>
+  <title>&lt;c:set /&gt;</title>
+  <para>
+  	The <emphasis role="bold"><property>&lt;c:set /&gt;</property></emphasis> tag declares a request scope variable with a value returned by an evaluated expression.
+  </para>
+
+  <table>
+  	<title>The &lt;c:set /&gt; attributes</title>
+  	<tgroup cols="3">
+  		<thead>
+			<row>
+		                <entry>Attribute Name</entry>
+		                <entry>Description</entry>
+			        <entry>Required</entry>
+	                </row>
+  		</thead>
+  		<tbody>
+  			<row>
+  				<entry>var</entry>
+  				<entry>Defines a name of the variable which holds the value</entry>
+  				<entry>True</entry>
+  			</row>
+ 			<row>
+  				<entry>value</entry>
+  				<entry>Defines an expression to be evaluated</entry>
+  				<entry>True</entry>
+  			</row>
+  		</tbody>
+  	</tgroup>
+  </table>
+</section>


Property changes on: trunk/docs/cdkguide/en/src/main/docbook/tags/cset.xml
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/docs/cdkguide/en/src/main/docbook/tags/fattribute.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/tags/fattribute.xml	                        (rev 0)
+++ trunk/docs/cdkguide/en/src/main/docbook/tags/fattribute.xml	2008-12-12 17:22:41 UTC (rev 11745)
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<section id="fattribute" xreflabel="fattribute">
+	<?dbhtml filename="fattribute.html"?>
+	<sectioninfo>
+		<keywordset>
+			<keyword>f:attribute</keyword>
+		</keywordset>
+	</sectioninfo>
+  <title>&lt;f:attribute /&gt;</title>
+  <para>
+The <emphasis role="bold"><property>&lt;f:attribute /&gt;</property></emphasis> tag assigns a value to a component attribute.
+  </para>
+  <table>
+  	<title>The &lt;f:attribute /&gt; attributes</title>
+  	<tgroup cols="3">
+  		<thead>
+  			<row>
+				<entry>Attribute Name</entry>
+		                <entry>Description</entry>
+			        <entry>Required</entry>
+  			</row>
+  		</thead>
+  		<tbody>
+  			<row>
+  				<entry>name</entry>
+  				<entry>Defines the name of a component attribute</entry>
+  				<entry>True</entry>
+  			</row>
+ 			<row>
+  				<entry>value</entry>
+  				<entry>Defines a value of the attribute</entry>
+  				<entry>True</entry>
+  			</row>
+  		</tbody>
+  	</tgroup>
+  </table>
+</section>


Property changes on: trunk/docs/cdkguide/en/src/main/docbook/tags/fattribute.xml
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/docs/cdkguide/en/src/main/docbook/tags/fclientId.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/tags/fclientId.xml	                        (rev 0)
+++ trunk/docs/cdkguide/en/src/main/docbook/tags/fclientId.xml	2008-12-12 17:22:41 UTC (rev 11745)
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<section id="fclientId" xreflabel="fclientId">
+	<?dbhtml filename="fclientId.html"?>
+	<sectioninfo>
+		<keywordset>
+			<keyword>f:clientId</keyword>
+		</keywordset>
+	</sectioninfo>
+  <title>&lt;f:clientId /&gt;</title>
+  <para>
+  	The <emphasis role="bold"><property>&lt;f:clientId /&gt;</property></emphasis> tag declares a variable with a ClientId of the component as the value.
+  </para>
+    <table>
+  	<title>The &lt;f:clientId /&gt; attributes</title>
+  	<tgroup cols="3">
+  		<thead>
+  			<row>
+				<entry>Attribute Name</entry>
+		                <entry>Description</entry>
+			        <entry>Required</entry>
+  			</row>
+  		</thead>
+  		<tbody>
+  			<row>
+  				<entry>var</entry>
+  				<entry>Defines a variable name</entry>
+  				<entry>True</entry>
+  			</row>
+  		</tbody>
+  	</tgroup>
+  </table>
+</section>


Property changes on: trunk/docs/cdkguide/en/src/main/docbook/tags/fclientId.xml
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/docs/cdkguide/en/src/main/docbook/tags/finsert.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/tags/finsert.xml	                        (rev 0)
+++ trunk/docs/cdkguide/en/src/main/docbook/tags/finsert.xml	2008-12-12 17:22:41 UTC (rev 11745)
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<section id="finsert" xreflabel="finsert">
+  <?dbhtml filename="finsert.html"?>
+<sectioninfo>
+	<keywordset>
+		<keyword>f:insert</keyword>
+	</keywordset>
+</sectioninfo>	
+  <title>&lt;f:insert /&gt;</title>
+  <para>
+	  The <emphasis role="bold"><property>&lt;f:insert /&gt;</property></emphasis> tag calls some subTemplate.
+  </para>
+  <table>
+  	<title>The &lt;f:insert /&gt; attributes</title>
+  	<tgroup cols="3">
+  		<thead>
+  			<row>
+				<entry>Attribute Name</entry>
+		                <entry>Description</entry>
+			        <entry>Required</entry>
+  			</row>
+  		</thead>
+  		<tbody>
+  			<row>
+  				<entry>name</entry>
+  				<entry>Defines a template name</entry>
+  				<entry>True</entry>
+  			</row>
+  		</tbody>
+  	</tgroup>
+  </table>
+</section>


Property changes on: trunk/docs/cdkguide/en/src/main/docbook/tags/finsert.xml
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/docs/cdkguide/en/src/main/docbook/tags/forEach.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/tags/forEach.xml	                        (rev 0)
+++ trunk/docs/cdkguide/en/src/main/docbook/tags/forEach.xml	2008-12-12 17:22:41 UTC (rev 11745)
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8"?>
+	<section id="forEach" xreflabel="forEach">
+	    <?dbhtml filename="forEach.html"?>
+	  <sectioninfo>
+	    <keywordset>
+	      <keyword>c:forEach</keyword>
+	    </keywordset>
+	  </sectioninfo>
+	  <title>&lt;c:forEach /&gt;</title>
+	    <para>
+		The <emphasis role="bold"><property>&lt;c:forEach /&gt;</property></emphasis> iterates over a collection, iterator or an array of objects. It uses the same syntax as the standard JSTL <emphasis role="bold"><property>&lt;c:forEach /&gt;</property></emphasis> tag.
+	    </para>
+	    <table>
+	            <title>The &lt;c:forEach /&gt; attributes</title>
+            <tgroup cols="3">
+                <thead>
+                    <row>
+                        <entry>Attribute Name</entry>
+                        <entry>Description</entry>
+	                <entry>Required</entry>
+                    </row>
+                </thead>
+                <tbody>
+                    <row>
+                        <entry>begin</entry>
+                        <entry>Defines the starting index</entry>
+                        <entry>False</entry>
+                    </row>
+	            <row>
+                        <entry>end</entry>
+                        <entry>Defines the ending index</entry>
+                        <entry>False</entry>
+                    </row>
+	            <row>
+                        <entry>items</entry>
+                        <entry>Defines the expression used to iterate over. This expression could resolve to an Iterator, Collection, Map, Array, Enumeration or comma separated String.</entry>
+                        <entry>False</entry>
+                    </row>     
+                    <row>
+                        <entry>step</entry>
+                        <entry>Defines the index increment step</entry>
+                        <entry>False</entry>
+                    </row>
+                    <row>
+                        <entry>var</entry>
+                        <entry>Defines the variable name to export for the item being iterated over</entry>
+                        <entry>True</entry>
+                    </row>               
+                </tbody>
+            </tgroup>
+        </table>
+
+	</section>


Property changes on: trunk/docs/cdkguide/en/src/main/docbook/tags/forEach.xml
___________________________________________________________________
Name: svn:executable
   + *




More information about the richfaces-svn-commits mailing list