Author: smukhina
Date: 2008-07-10 08:47:28 -0400 (Thu, 10 Jul 2008)
New Revision: 9507
Modified:
trunk/docs/userguide/en/src/main/docbook/included/dataDefinitionList.xml
trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.xml
trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml
trunk/docs/userguide/en/src/main/docbook/included/progressBar.xml
trunk/docs/userguide/en/src/main/docbook/included/region.xml
trunk/docs/userguide/en/src/main/docbook/included/support.xml
trunk/docs/userguide/en/src/main/docbook/included/toggleControl.xml
trunk/docs/userguide/en/src/main/docbook/included/tree.xml
Log:
http://jira.jboss.com/jira/browse/RF-3875
unnecessary spaces are deleted
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataDefinitionList.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataDefinitionList.xml 2008-07-10
12:45:18 UTC (rev 9506)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataDefinitionList.xml 2008-07-10
12:47:28 UTC (rev 9507)
@@ -90,9 +90,9 @@
<h:outputText value="#{car.make}
#{car.model}"></h:outputText>
</f:facet>
<h:outputText value="Price:"
styleClass="label"></h:outputText>
- <h:outputText value="#{car.price} " /><br/>
+ <h:outputText value="#{car.price}" /><br/>
<h:outputText value="Mileage:"
styleClass="label"></h:outputText>
- <h:outputText value="#{car.mileage} " /><br/>
+ <h:outputText value="#{car.mileage}" /><br/>
</rich:dataDefinitionList>
</h:form>
...
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.xml 2008-07-10
12:45:18 UTC (rev 9506)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.xml 2008-07-10
12:47:28 UTC (rev 9507)
@@ -111,9 +111,9 @@
<rich:dataOrderedList var="car"
value="#{dataTableScrollerBean.allCars}" rows="5" type="1"
title="Car Store">
<h:outputText value="#{car.make} #{car.model}"/><br/>
<h:outputText value="Price:"
styleClass="label"></h:outputText>
- <h:outputText value="#{car.price} " /><br/>
+ <h:outputText value="#{car.price}" /><br/>
<h:outputText value="Mileage:"
styleClass="label"></h:outputText>
- <h:outputText value="#{car.mileage} " /><br/>
+ <h:outputText value="#{car.mileage}" /><br/>
</rich:dataOrderedList>
</h:form>
...
Modified: trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml 2008-07-10 12:45:18
UTC (rev 9506)
+++ trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml 2008-07-10 12:47:28
UTC (rev 9507)
@@ -184,7 +184,7 @@
<rich:datascroller id="sc2" for="carList"
reRender="sc1" maxPages="7"
page="#{dataTableScrollerBean.scrollerPage}" />
<h:panelGrid>
<h:panelGroup>
- <h:outputText value="Set current page number: " />
+ <h:outputText value="Set current page number:" />
<h:inputText value="#{dataTableScrollerBean.scrollerPage}"
id="sc1" size="1"/>
<h:commandButton value="Set" />
</h:panelGroup>
Modified: trunk/docs/userguide/en/src/main/docbook/included/progressBar.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/progressBar.xml 2008-07-10 12:45:18
UTC (rev 9506)
+++ trunk/docs/userguide/en/src/main/docbook/included/progressBar.xml 2008-07-10 12:47:28
UTC (rev 9507)
@@ -361,8 +361,7 @@
<para>
The component can also employ <code> "initial"</code>
and <code> "complete"</code>
- facets to display the states of the process: <code>
"initial"</code> facet is displayed when the progress value is
less or equal to <emphasis><property>
"minValue"</property></emphasis>
- , and the <code> "complete"</code> facet is shown when
the value is greater or equal to <emphasis><property>
"maxValue"</property></emphasis>. Please see an example
below.
+ facets to display the states of the process: <code>
"initial"</code> facet is displayed when the progress value is
less or equal to <emphasis><property>
"minValue"</property></emphasis>, and the <code>
"complete"</code> facet is shown when the value is greater or
equal to <emphasis><property>
"maxValue"</property></emphasis>. Please see an example
below.
</para>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/region.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/region.xml 2008-07-10 12:45:18 UTC
(rev 9506)
+++ trunk/docs/userguide/en/src/main/docbook/included/region.xml 2008-07-10 12:47:28 UTC
(rev 9507)
@@ -100,7 +100,7 @@
<para><emphasis
role="bold">Example:</emphasis></para>
<programlisting role="XML"><![CDATA[<a4j:region selfRendered
="true">
<a4j:commandLink reRender="someID" value="Link"
id="link1"/>
- <!--..Some content with HTML used ("br" ,"h1" and other tags
used)-->
+ <!--..Some content with HTML used ("br","h1" and other tags
used)-->
</a4j:region >]]></programlisting>
<para>In this case, the processing is quicker and going on without referring to
a page code, but the HTML code that isn't saved in a component tree could be
lost. Thus, this optimization should be very carefully performed and a usage of the
additional components RichFaces (<emphasis
role="bold"><property><a4j:outputPanel></property></emphasis>)
is required. </para>
<para>The processing could be also accelerated if a region decoded for the
processing passes straight away into Encode. But to update some data out of the region or
on another region, use the <emphasis >
Modified: trunk/docs/userguide/en/src/main/docbook/included/support.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/support.xml 2008-07-10 12:45:18 UTC
(rev 9506)
+++ trunk/docs/userguide/en/src/main/docbook/included/support.xml 2008-07-10 12:47:28 UTC
(rev 9507)
@@ -101,9 +101,9 @@
<property>"oncomplete"</property></emphasis>
attributes the component allows using JavaScript before (for request sending conditions
checking) and after an Ajax response processing termination (for performance of
user-defined activities on the client) </para>
<para><emphasis
role="bold">Example:</emphasis></para>
<programlisting role="XML"><![CDATA[<h:selectOneMenu
value="#{bean.text}">
- <f:selectItem itemValue="First Item " itemLabel="First
Item"/>
- <f:selectItem itemValue=" Second Item " itemLabel="Second
Item"/>
- <f:selectItem itemValue=" Third Item " itemLabel="Third
Item"/>
+ <f:selectItem itemValue="First Item" itemLabel="First Item"/>
+ <f:selectItem itemValue=" Second Item" itemLabel="Second
Item"/>
+ <f:selectItem itemValue=" Third Item" itemLabel="Third
Item"/>
<a4j:support event="onblur" reRender="panel"
onsubmit="if(!confirm('Are you sure to change the option ?'))
{form.reset(); return false;}" oncomplete="alert('Value succesfully
stored')"/>
</h:selectOneMenu>]]></programlisting>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toggleControl.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toggleControl.xml 2008-07-10
12:45:18 UTC (rev 9506)
+++ trunk/docs/userguide/en/src/main/docbook/included/toggleControl.xml 2008-07-10
12:47:28 UTC (rev 9507)
@@ -88,21 +88,21 @@
<rich:togglePanel id="panel" initialState="empty"
switchType="client">
<f:facet name="first">
<h:panelGroup>
- <rich:toggleControl for="helloForm:panel" value="Empty
" switchToState="empty"/>
+ <rich:toggleControl for="helloForm:panel"
value="Empty" switchToState="empty"/>
<rich:toggleControl for="helloForm:panel" value="
Second" switchToState="second"/>
...//Some Content
</h:panelGroup>
</f:facet>
<f:facet name="second">
<h:panelGroup>
- <rich:toggleControl for="helloForm:panel" value="Empty
" switchToState="empty"/>
+ <rich:toggleControl for="helloForm:panel"
value="Empty" switchToState="empty"/>
<rich:toggleControl for="helloForm:panel" value="
first" switchToState="first"/>
...//Some Content
</h:panelGroup>
</f:facet>
<f:facet name="empty">
<h:panelGroup>
- <rich:toggleControl for="helloForm:panel" value="first
" switchToState="first"/>
+ <rich:toggleControl for="helloForm:panel"
value="first" switchToState="first"/>
<rich:toggleControl for="helloForm:panel" value="
second" switchToState="second"/>
</h:panelGroup>
</f:facet>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tree.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tree.xml 2008-07-10 12:45:18 UTC
(rev 9506)
+++ trunk/docs/userguide/en/src/main/docbook/included/tree.xml 2008-07-10 12:47:28 UTC
(rev 9507)
@@ -281,13 +281,13 @@
<h:graphicImage value="/images/tree/singer.png "/>
</f:facet>
<f:facet name="iconCollapsed">
- <h:graphicImage value="/images/tree/singer.png " />
+ <h:graphicImage value="/images/tree/singer.png" />
</f:facet>
<f:facet name="iconExpanded">
- <h:graphicImage value="/images/tree/singer.png " />
+ <h:graphicImage value="/images/tree/singer.png" />
</f:facet>
<f:facet name="iconLeaf">
- <h:graphicImage value="/images/tree/song.png " />
+ <h:graphicImage value="/images/tree/song.png" />
</f:facet>
...
</rich:tree>
@@ -572,13 +572,13 @@
<h:graphicImage value="/images/tree/singer.png "/>
</f:facet>
<f:facet name="iconCollapsed">
- <h:graphicImage value="/images/tree/singer.png " />
+ <h:graphicImage value="/images/tree/singer.png" />
</f:facet>
<f:facet name="iconExpanded">
- <h:graphicImage value="/images/tree/singer.png " />
+ <h:graphicImage value="/images/tree/singer.png" />
</f:facet>
<f:facet name="iconLeaf">
- <h:graphicImage value="/images/tree/song.png " />
+ <h:graphicImage value="/images/tree/song.png" />
</f:facet>
...
</rich:tree>