Author: artdaw
Date: 2009-09-29 09:43:20 -0400 (Tue, 29 Sep 2009)
New Revision: 15682
Modified:
branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
Log:
https://jira.jboss.org/jira/browse/RF-7275 - getting started is fixed
Modified:
branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
===================================================================
---
branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2009-09-29
13:42:45 UTC (rev 15681)
+++
branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2009-09-29
13:43:20 UTC (rev 15682)
@@ -252,11 +252,19 @@
and <emphasis
role="bold"><property><a4j:form></property></emphasis>
helps the button to perform the action.
</para>
<para>Note, that the RichFaces tag library should be
declared on each
- JSP page. For XHTML pages add following lines for
tag
+ JSP page.
+</para>
+<para>
+For Facelets you should add the following lines for tag
library declaration: </para>
- <programlisting
role="XML"><![CDATA[<xmlns:a4j="http://richfaces....
-<xmlns:rich="http://richfaces.org/rich">]]></programlisting>
- <para>That’s it. Run the application on server. Point
your browser to <code>index.jsp</code>
page in browser:
+ <programlisting
role="XML"><![CDATA[<ui:composition
xmlns="http://www.w3.org/1999/xhtml"
+
xmlns:ui="http://java.sun.com/jsf/facelets"
+
xmlns:a4j="http://richfaces.org/a4j"
+
xmlns:rich="http://richfaces.org/rich">
+ ...
+</ui:composition>
+]]></programlisting>
+ <para>That's it. Run the application on
server. Point your browser to
<code>index.jsp</code> page in browser:
<code>http://localhost:8080/Greeter/index.jsf</code>
</para>
<figure>