[richfaces-svn-commits] JBoss Rich Faces SVN: r9147 - 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 Jun 20 11:11:23 EDT 2008


Author: artdaw
Date: 2008-06-20 11:11:23 -0400 (Fri, 20 Jun 2008)
New Revision: 9147

Added:
   trunk/docs/cdkguide/en/src/main/docbook/modules/ide.xml
   trunk/docs/cdkguide/en/src/main/docbook/modules/ref.xml
   trunk/docs/cdkguide/en/src/main/docbook/modules/test.xml
Modified:
   trunk/docs/cdkguide/en/src/main/docbook/master.xml
   trunk/docs/cdkguide/en/src/main/docbook/modules/ccreate.xml
   trunk/docs/cdkguide/en/src/main/docbook/modules/compdev.xml
   trunk/docs/cdkguide/en/src/main/docbook/modules/namingconv.xml
   trunk/docs/cdkguide/en/src/main/docbook/modules/overview.xml
   trunk/docs/cdkguide/en/src/main/docbook/modules/roadmap.xml
   trunk/docs/cdkguide/en/src/main/resources/xslt/org/jboss/richfaces/xhtml-common.xsl
Log:
http://jira.jboss.com/jira/browse/RF-3692 - TOC was fixed

Modified: trunk/docs/cdkguide/en/src/main/docbook/master.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/master.xml	2008-06-20 15:08:44 UTC (rev 9146)
+++ trunk/docs/cdkguide/en/src/main/docbook/master.xml	2008-06-20 15:11:23 UTC (rev 9147)
@@ -10,10 +10,15 @@
 <!ENTITY ccreate SYSTEM "modules/ccreate.xml">
 <!ENTITY compdev SYSTEM "modules/compdev.xml">
 <!ENTITY overview SYSTEM "modules/overview.xml">
-<!ENTITY links SYSTEM "modules/links.xml">
+<!ENTITY ide SYSTEM "modules/ide.xml">
+<!ENTITY ref SYSTEM "modules/ref.xml">
+<!ENTITY test SYSTEM "modules/test.xml">
 
 <!ENTITY devinput SYSTEM "includes/devinput.xml">
 <!ENTITY devcommand SYSTEM "includes/devcommand.xml">
+
+<!--Check the links page -->
+<!ENTITY links SYSTEM "modules/links.xml">
 ]>
 
 <book>
@@ -34,6 +39,7 @@
 	&pcreate;
 	&ccreate;
 	&compdev;
+	&test;
 	&overview;
 
 	<chapter id="tutorial" xreflabel="tutorial">
@@ -53,5 +59,6 @@
 		&devinput;
 		&devcommand;
 	</chapter>
-	&links;
+	&ide;
+	&ref;
 </book>

Modified: trunk/docs/cdkguide/en/src/main/docbook/modules/ccreate.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/modules/ccreate.xml	2008-06-20 15:08:44 UTC (rev 9146)
+++ trunk/docs/cdkguide/en/src/main/docbook/modules/ccreate.xml	2008-06-20 15:11:23 UTC (rev 9147)
@@ -15,14 +15,14 @@
     </para>
 	<section id="skeleton" xreflabel="skeleton">
 		<?dbhtml filename="skeleton.html"?>
-		<title>Building the Component Skeleton</title>
+		<title>Building the component skeleton</title>
 		<para>
 		 TBD Skeleton
 		</para>
 	</section>
 	<section id="structure" xreflabel="structure">
 		<?dbhtml filename="structure.html"?>
-		<title>Component Project Structure</title>
+		<title>Component project structure</title>
 		<para>
 		 TBD structure
 		</para>

Modified: trunk/docs/cdkguide/en/src/main/docbook/modules/compdev.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/modules/compdev.xml	2008-06-20 15:08:44 UTC (rev 9146)
+++ trunk/docs/cdkguide/en/src/main/docbook/modules/compdev.xml	2008-06-20 15:11:23 UTC (rev 9147)
@@ -20,39 +20,46 @@
 		</para>
 	</section>
 	<section id="settings">
-		<title>Specifying component settings</title>
+		<title>Specifying component attributes</title>
 		<para>
 			settings
 		</para>
 	</section>
-	<section id="template">
-		<title>Templating</title>
+	
+	<section id="renderer">
+		<title>Creating component renderer</title>
 		<para>
-			Templating
+			Renderer explanation.
 		</para>
-		<section id="tempex">
-			<title>Template Example</title>
+		<section id="template">
+			<title>Templating</title>
 			<para>
-				Example
+				How to write your renderer with the help of template.
 			</para>
+			<section id="tempex">
+				<title>Template example</title>
+				<para>
+					Example
+				</para>
+			</section>
+			<section id="tempmech">
+				<title>Templating mechanism</title>
+				<para>
+					Mechanism
+				</para>
+			</section>
+			<section id="temptags">
+				<title>Template tags overview</title>
+				<para>
+					tags
+				</para>
+			</section>
 		</section>
-		<section id="tempmech">
-			<title>Templating Mechanism</title>
-			<para>
-				Mechanism
-			</para>
-		</section>
-		<section id="temptags">
-			<title>Templates Tags Overview</title>
-			<para>
-				tags
-			</para>
-		</section>
 	</section>
 	<section id="skin">
-		<title>Skinability</title>
+		<title>Skinnability</title>
 		<para>
-			Skinability
+			Plug-n-Skin creation
 		</para>
 	</section>
 	<section id="resource">
@@ -60,6 +67,18 @@
 		<para>
 			Resources Handling
 		</para>
+		<section id="regres">
+			<title>Component resources registration</title>
+			<para>
+				How to register component resources
+			</para>
+		</section>
+		<section id="resconf">
+			<title>resources-config.xml file format</title>
+			<para>
+				resources-config.xml file format
+			</para>
+		</section>
 	</section>
 </chapter>
 

Added: trunk/docs/cdkguide/en/src/main/docbook/modules/ide.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/modules/ide.xml	                        (rev 0)
+++ trunk/docs/cdkguide/en/src/main/docbook/modules/ide.xml	2008-06-20 15:11:23 UTC (rev 9147)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<chapter id="ide" xreflabel="ide">
+    <?dbhtml filename="ide.html"?>
+    <chapterinfo>
+        <keywordset>
+            <keyword>ide</keyword>
+            <keyword>CDK</keyword>
+	    <keyword>Guide</keyword>
+        </keywordset>
+    </chapterinfo>
+
+    <title>IDE Integration</title>
+    <para>
+      Integration with Eclipse, IDEA.
+    </para>
+
+</chapter>
\ No newline at end of file

Modified: trunk/docs/cdkguide/en/src/main/docbook/modules/namingconv.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/modules/namingconv.xml	2008-06-20 15:08:44 UTC (rev 9146)
+++ trunk/docs/cdkguide/en/src/main/docbook/modules/namingconv.xml	2008-06-20 15:11:23 UTC (rev 9147)
@@ -9,7 +9,7 @@
         </keywordset>
     </chapterinfo>
 
-    <title>Naming Convention</title>
+    <title>Naming conventions</title>
     <para>
        Naming
     </para>

Modified: trunk/docs/cdkguide/en/src/main/docbook/modules/overview.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/modules/overview.xml	2008-06-20 15:08:44 UTC (rev 9146)
+++ trunk/docs/cdkguide/en/src/main/docbook/modules/overview.xml	2008-06-20 15:11:23 UTC (rev 9147)
@@ -13,7 +13,12 @@
     <para>
      overview
     </para>
-
+		<section id="devsample">
+			<title>Developer sample creation</title>
+			<para>
+Sample creation
+			</para>
+		</section>
 </chapter>
 
 

Added: trunk/docs/cdkguide/en/src/main/docbook/modules/ref.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/modules/ref.xml	                        (rev 0)
+++ trunk/docs/cdkguide/en/src/main/docbook/modules/ref.xml	2008-06-20 15:11:23 UTC (rev 9147)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<chapter id="ref" xreflabel="ref">
+    <?dbhtml filename="ref.html"?>
+    <chapterinfo>
+        <keywordset>
+            <keyword>reference</keyword>
+            <keyword>CDK</keyword>
+		    <keyword>Guide</keyword>
+        </keywordset>
+    </chapterinfo>
+
+    <title>CDK Tag Reference</title>
+    <para>
+      Tag Reference
+    </para>
+
+</chapter>
\ No newline at end of file

Modified: trunk/docs/cdkguide/en/src/main/docbook/modules/roadmap.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/modules/roadmap.xml	2008-06-20 15:08:44 UTC (rev 9146)
+++ trunk/docs/cdkguide/en/src/main/docbook/modules/roadmap.xml	2008-06-20 15:11:23 UTC (rev 9147)
@@ -9,7 +9,7 @@
         </keywordset>
     </chapterinfo>
 
-    <title>Document Roadmap</title>
+    <title>Roadmap document</title>
     <para>
         This document is aimed to describe components development with Ajax4jsf Component Factory and factory features.
     </para>

Added: trunk/docs/cdkguide/en/src/main/docbook/modules/test.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/modules/test.xml	                        (rev 0)
+++ trunk/docs/cdkguide/en/src/main/docbook/modules/test.xml	2008-06-20 15:11:23 UTC (rev 9147)
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<chapter id="test" xreflabel="test">
+    <?dbhtml filename="test.html"?>
+    <chapterinfo>
+        <keywordset>
+            <keyword>test</keyword>
+            <keyword>unit</keyword>
+          <keyword>CDK</keyword>
+		<keyword>Guide</keyword>
+        </keywordset>
+    </chapterinfo>
+
+    <title>Generating unit tests</title>
+    <para>
+      Unit Tests
+    </para>
+
+</chapter>
\ No newline at end of file

Modified: trunk/docs/cdkguide/en/src/main/resources/xslt/org/jboss/richfaces/xhtml-common.xsl
===================================================================
--- trunk/docs/cdkguide/en/src/main/resources/xslt/org/jboss/richfaces/xhtml-common.xsl	2008-06-20 15:08:44 UTC (rev 9146)
+++ trunk/docs/cdkguide/en/src/main/resources/xslt/org/jboss/richfaces/xhtml-common.xsl	2008-06-20 15:11:23 UTC (rev 9147)
@@ -8,11 +8,11 @@
 
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
-   <xsl:import href="collapsing-navigation.xsl"/>
+   <!--xsl:import href="collapsing-navigation.xsl"/-->
    
    <xsl:param name="html.stylesheet" select="'css/html.css'"/>
    <xsl:param name="generate.toc" select="'book toc'"/>
-
+   <xsl:param name="toc.section.depth" select="5"/>
 	<!--
 From: xhtml/docbook.xsl
 Reason: Remove inline style for draft mode




More information about the richfaces-svn-commits mailing list