Author: smukhina
Date: 2007-09-26 10:09:16 -0400 (Wed, 26 Sep 2007)
New Revision: 3815
Modified:
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/AddBusinessProcess.xml
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GetStartSeamGen.xml
Log:
http://jira.jboss.com/jira/browse/RHDS-171
JSP -> XML
Modified:
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/AddBusinessProcess.xml
===================================================================
---
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/AddBusinessProcess.xml 2007-09-26
13:43:24 UTC (rev 3814)
+++
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/AddBusinessProcess.xml 2007-09-26
14:09:16 UTC (rev 3815)
@@ -363,7 +363,7 @@
Order button to the Orders.xhtml file.</para>
<para>You can add the new button right next to the existing "Add
orderdetails" button.
Copy/paste the following button code in the actionButtons region:</para>
- <programlisting role="JSP"><![CDATA[<s:button
id="buttonId" value="Process Order"
+ <programlisting role="XML"><![CDATA[<s:button
id="buttonId" value="Process Order"
action="#{orderProcessor.startProcess}"
view="/Orders.xhtml"/>
]]></programlisting>
Modified:
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GetStartSeamGen.xml
===================================================================
---
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GetStartSeamGen.xml 2007-09-26
13:43:24 UTC (rev 3814)
+++
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GetStartSeamGen.xml 2007-09-26
14:09:16 UTC (rev 3815)
@@ -201,7 +201,7 @@
<para>The wizard generate a web page with a single text input field and an
action button. Notice that the generated page uses layout/template.xhtml as a template.
The template page provides the page header, footer, side menu, and CSS styles (see the
template.xhtml for more details). The Simplepage.xhtml is assembled into the template when
the Simplepage.seam URL is loaded.</para>
- <programlisting role="JSP"><![CDATA[
+ <programlisting role="XML"><![CDATA[
<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
@@ -351,13 +351,13 @@
<para>Next, on the web page, add the following line to display the value
property on the simpleAction component. Notice that code completion is supported for the
JSF EL expression.</para>
- <programlisting role="JSP"><![CDATA[
+ <programlisting role="XML"><![CDATA[
<p><b>Hello, #{simpleAction.value}</b></p>
]]></programlisting>
<para>Finally, on the web page, we add a boolean selection box component. It is
bound to the XXXX property on the backend component.</para>
- <programlisting role="JSP"><![CDATA[
+ <programlisting role="XML"><![CDATA[
<h:selectBooleanCheckbox title="convertToCap"
value="#{simpleAction.convertToCap}" />
Capitalize the input?
@@ -402,7 +402,7 @@
<para>We can also secure web pages. You can edit the XXXX file to put an access
constraint on the XXXXX page.</para>
- <programlisting role="JSP"><![CDATA[
+ <programlisting role="XML"><![CDATA[
]]></programlisting>
<para>You can try to load the XXXX URL in the browser and it will redirect to
ask for login.</para>