JBoss Rich Faces SVN: r7950 - in trunk/test-applications/seleniumTest/src: main/webapp/pages/togglePanel and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: sergeyhalipov
Date: 2008-04-18 15:14:08 -0400 (Fri, 18 Apr 2008)
New Revision: 7950
Added:
trunk/test-applications/seleniumTest/src/main/webapp/pages/togglePanel/
trunk/test-applications/seleniumTest/src/main/webapp/pages/togglePanel/togglePanelDescription.xhtml
trunk/test-applications/seleniumTest/src/main/webapp/pages/togglePanel/togglePanelTest.xhtml
trunk/test-applications/seleniumTest/src/test/java/org/richfaces/TogglePanelTest.java
Modified:
trunk/test-applications/seleniumTest/src/test/java/org/ajax4jsf/test/base/SeleniumTestBase.java
trunk/test-applications/seleniumTest/src/test/java/org/richfaces/SimpleTogglePanelTest.java
Log:
Selenium tests for toggle panel.
Added: trunk/test-applications/seleniumTest/src/main/webapp/pages/togglePanel/togglePanelDescription.xhtml
===================================================================
--- trunk/test-applications/seleniumTest/src/main/webapp/pages/togglePanel/togglePanelDescription.xhtml (rev 0)
+++ trunk/test-applications/seleniumTest/src/main/webapp/pages/togglePanel/togglePanelDescription.xhtml 2008-04-18 19:14:08 UTC (rev 7950)
@@ -0,0 +1,5 @@
+<html>
+<table border="1" style="border-color: #F1EEE9" cellpadding="5" cellspacing="0">
+
+</table>
+</html>
\ No newline at end of file
Added: trunk/test-applications/seleniumTest/src/main/webapp/pages/togglePanel/togglePanelTest.xhtml
===================================================================
--- trunk/test-applications/seleniumTest/src/main/webapp/pages/togglePanel/togglePanelTest.xhtml (rev 0)
+++ trunk/test-applications/seleniumTest/src/main/webapp/pages/togglePanel/togglePanelTest.xhtml 2008-04-18 19:14:08 UTC (rev 7950)
@@ -0,0 +1,88 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:rich="http://richfaces.org/rich"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets">
+
+<ui:composition template="../../layout/template.xhtml">
+ <ui:define name="style">
+ .link {margin: 0px 5px}
+ </ui:define>
+ <ui:define name="component">
+ <rich:togglePanel id="panel_ajax" switchType="ajax" initialState="one"
+ stateOrder="one,two">
+ <f:facet name="one">
+ <h:outputText id="ajax_state_one" value="State One" />
+ </f:facet>
+ <f:facet name="two">
+ <h:outputText id="ajax_state_two" value="State Two" />
+ </f:facet>
+ </rich:togglePanel>
+ <rich:toggleControl id="ajax_next" for="panel_ajax"
+ action="#{panelBean.increment}" actionListener="#{panelBean.actionListener}" >
+ <h:outputText value="Next" />
+ </rich:toggleControl>
+ <rich:toggleControl id="ajax_one" for="panel_ajax" switchToState="one"
+ action="#{panelBean.increment}" actionListener="#{panelBean.actionListener}" >
+ <h:outputText value="One" />
+ </rich:toggleControl>
+ <rich:toggleControl id="ajax_two" for="panel_ajax" switchToState="two"
+ action="#{panelBean.action1}" actionListener="#{panelBean.actionListener}" >
+ <h:outputText value="Two" />
+ </rich:toggleControl>
+
+ <rich:togglePanel id="panel_server" switchType="server" initialState="one"
+ stateOrder="one,two">
+ <f:facet name="one">
+ <h:outputText id="server_state_one" value="State One" />
+ </f:facet>
+ <f:facet name="two">
+ <h:outputText id="server_state_two" value="State Two" />
+ </f:facet>
+ </rich:togglePanel>
+ <rich:toggleControl id="server_next" for="panel_server"
+ action="#{panelBean.increment}" actionListener="#{panelBean.actionListener}" >
+ <h:outputText value="Next" />
+ </rich:toggleControl>
+ <rich:toggleControl id="server_one" for="panel_server" switchToState="one"
+ action="#{panelBean.increment}" actionListener="#{panelBean.actionListener}" >
+ <h:outputText value="One" />
+ </rich:toggleControl>
+ <rich:toggleControl id="server_two" for="panel_server" switchToState="two"
+ action="#{panelBean.increment}" actionListener="#{panelBean.actionListener}" >
+ <h:outputText value="Two" />
+ </rich:toggleControl>
+
+ <rich:togglePanel id="panel_client" switchType="client" initialState="one"
+ stateOrder="one,two">
+ <f:facet name="one">
+ <h:outputText id="client_state_one" value="State One" />
+ </f:facet>
+ <f:facet name="two">
+ <h:outputText id="client_state_two" value="State Two" />
+ </f:facet>
+ </rich:togglePanel>
+ <rich:toggleControl id="client_next" for="panel_client" >
+ <h:outputText value="Next" />
+ </rich:toggleControl>
+ <rich:toggleControl id="client_one" for="panel_client" switchToState="one" >
+ <h:outputText value="One" />
+ </rich:toggleControl>
+ <rich:toggleControl id="client_two" for="panel_client" switchToState="two" >
+ <h:outputText value="Two" />
+ </rich:toggleControl>
+
+ <br/>
+ <a4j:outputPanel ajaxRendered="true" >
+ <h:inputText value="#{panelBean.value}" id="_value"></h:inputText>
+ <h:outputText value="#{panelBean.value2}" id="_value2"></h:outputText>
+ </a4j:outputPanel>
+ <br/>
+ </ui:define>
+ <ui:define name="description">
+ <ui:include src="togglePanelDescription.xhtml" />
+ </ui:define>
+</ui:composition>
+</html>
\ No newline at end of file
Modified: trunk/test-applications/seleniumTest/src/test/java/org/ajax4jsf/test/base/SeleniumTestBase.java
===================================================================
--- trunk/test-applications/seleniumTest/src/test/java/org/ajax4jsf/test/base/SeleniumTestBase.java 2008-04-18 17:37:39 UTC (rev 7949)
+++ trunk/test-applications/seleniumTest/src/test/java/org/ajax4jsf/test/base/SeleniumTestBase.java 2008-04-18 19:14:08 UTC (rev 7950)
@@ -152,7 +152,7 @@
Assert.fail("The page has been not rendered properlly");
}
}catch (Exception e) {
- Assert.fail("The page has been not rendered properlly by the following error: " + e);
+ Assert.fail("The page has not been rendered properly due the following error: " + e);
}
}
/**
Modified: trunk/test-applications/seleniumTest/src/test/java/org/richfaces/SimpleTogglePanelTest.java
===================================================================
--- trunk/test-applications/seleniumTest/src/test/java/org/richfaces/SimpleTogglePanelTest.java 2008-04-18 17:37:39 UTC (rev 7949)
+++ trunk/test-applications/seleniumTest/src/test/java/org/richfaces/SimpleTogglePanelTest.java 2008-04-18 19:14:08 UTC (rev 7950)
@@ -53,7 +53,7 @@
}
@Test
- public void testTabPanelComponent() throws Exception {
+ public void testSimpleTogglePanelComponent() throws Exception {
renderPage("/faces/pages/simpleTogglePanel/simpleTogglePanel.xhtml");
_testSimpleTogglePanelComponent(COMPONENT_PREFIX_INSIDE_PANEL);
Added: trunk/test-applications/seleniumTest/src/test/java/org/richfaces/TogglePanelTest.java
===================================================================
--- trunk/test-applications/seleniumTest/src/test/java/org/richfaces/TogglePanelTest.java (rev 0)
+++ trunk/test-applications/seleniumTest/src/test/java/org/richfaces/TogglePanelTest.java 2008-04-18 19:14:08 UTC (rev 7950)
@@ -0,0 +1,172 @@
+/**
+ * License Agreement.
+ *
+ * JBoss RichFaces - Ajax4jsf Component Library
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+package org.richfaces;
+
+import org.ajax4jsf.test.base.RichSeleniumTest;
+import org.ajax4jsf.test.base.SeleniumTestBase;
+import org.testng.Assert;
+import org.testng.annotations.AfterTest;
+import org.testng.annotations.BeforeTest;
+import org.testng.annotations.Parameters;
+import org.testng.annotations.Test;
+
+import com.thoughtworks.selenium.SeleniumException;
+
+public class TogglePanelTest extends SeleniumTestBase implements RichSeleniumTest {
+
+ public TogglePanelTest() {
+ super("http", "localhost", "8080");
+ }
+
+ /**
+ * This method are invoking before selenium tests started
+ */
+ @BeforeTest
+ @Parameters( { "browser" })
+ public void startSelenium(String browser) {
+ super.startSelenium(browser);
+ }
+
+ /**
+ * This method are invoking after selenium tests completed
+ */
+ @AfterTest
+ public void stopSelenium() {
+ super.stopSelenium();
+ }
+
+ @Test
+ public void testTogglePanelComponent() throws Exception {
+ renderPage("/faces/pages/togglePanel/togglePanelTest.xhtml");
+
+ _testTogglePanelComponent(COMPONENT_PREFIX_INSIDE_PANEL);
+ _testTogglePanelComponent(COMPONENT_PREFIX_INSIDE_TABLE);
+ }
+
+ private void _testTogglePanelComponent(String parentId) {
+ String inputId = parentId + "_value";
+ String outputId = parentId + "_value2";
+
+ String controlNext = parentId + "ajax_next";
+ String controlOne = parentId + "ajax_one";
+ String controlTwo = parentId + "ajax_two";
+
+ String oneFacet = parentId + "ajax_state_one";
+ String twoFacet = parentId + "ajax_state_two";
+
+ clickById(controlNext);
+ waitForAjaxCompletion(5000);
+ AssertValueEquals(inputId, "ajax_next");
+ AssertTextEquals(outputId, "1");
+ Assert.assertTrue(isVisibleById(twoFacet));
+ try {
+ getTextById(oneFacet);
+ Assert.fail("Both of 'one' and 'two' states were rendered for ajax toggle panel.");
+ } catch (SeleniumException se) {
+
+ }
+
+ clickById(controlOne);
+ waitForAjaxCompletion(5000);
+ AssertValueEquals(inputId, "ajax_one");
+ AssertTextEquals(outputId, "2");
+ Assert.assertTrue(isVisibleById(oneFacet));
+ try {
+ getTextById(twoFacet);
+ Assert.fail("Both of 'one' and 'two' states were rendered for ajax toggle panel.");
+ } catch (SeleniumException se) {
+
+ }
+
+ clickById(controlTwo);
+ waitForAjaxCompletion(5000);
+ AssertValueEquals(inputId, "ajax_two");
+ AssertTextEquals(outputId, "1");
+ Assert.assertTrue(isVisibleById(twoFacet));
+ try {
+ getTextById(oneFacet);
+ Assert.fail("Both of 'one' and 'two' states were rendered for ajax toggle panel.");
+ } catch (SeleniumException se) {
+
+ }
+
+ controlNext = parentId + "server_next";
+ controlOne = parentId + "server_one";
+ controlTwo = parentId + "server_two";
+ oneFacet = parentId + "server_state_one";
+ twoFacet = parentId + "server_state_two";
+
+ clickById(controlNext);
+ waitForPageToLoad();
+ AssertValueEquals(inputId, "server_next");
+ AssertTextEquals(outputId, "2");
+ Assert.assertTrue(isVisibleById(twoFacet));
+ try {
+ getTextById(oneFacet);
+ Assert.fail("Both of 'one' and 'two' states were rendered for server toggle panel.");
+ } catch (SeleniumException se) {
+
+ }
+
+ clickById(controlOne);
+ waitForPageToLoad();
+ AssertValueEquals(inputId, "server_one");
+ AssertTextEquals(outputId, "3");
+ Assert.assertTrue(isVisibleById(oneFacet));
+ try {
+ getTextById(twoFacet);
+ Assert.fail("Both of 'one' and 'two' states were rendered for server toggle panel.");
+ } catch (SeleniumException se) {
+
+ }
+
+ clickById(controlTwo);
+ waitForPageToLoad();
+ AssertValueEquals(inputId, "server_two");
+ AssertTextEquals(outputId, "4");
+ Assert.assertTrue(isVisibleById(twoFacet));
+ try {
+ getTextById(oneFacet);
+ Assert.fail("Both of 'one' and 'two' states were rendered for server toggle panel.");
+ } catch (SeleniumException se) {
+
+ }
+
+ controlNext = parentId + "client_next";
+ controlOne = parentId + "client_one";
+ controlTwo = parentId + "client_two";
+ oneFacet = parentId + "client_state_one";
+ twoFacet = parentId + "client_state_two";
+
+ clickById(controlNext);
+ Assert.assertTrue(isVisibleById(twoFacet));
+ Assert.assertFalse(isVisibleById(oneFacet));
+
+ clickById(controlOne);
+ Assert.assertTrue(isVisibleById(oneFacet));
+ Assert.assertFalse(isVisibleById(twoFacet));
+
+ clickById(controlTwo);
+ Assert.assertTrue(isVisibleById(twoFacet));
+ Assert.assertFalse(isVisibleById(oneFacet));
+ }
+}
16 years, 9 months
JBoss Rich Faces SVN: r7949 - branches/3.1.x/ui/dataTable/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-04-18 13:37:39 -0400 (Fri, 18 Apr 2008)
New Revision: 7949
Modified:
branches/3.1.x/ui/dataTable/src/main/config/component/dataList.xml
Log:
http://jira.jboss.com/jira/browse/RF-3146
http://jira.jboss.com/jira/browse/RF-3139
Modified: branches/3.1.x/ui/dataTable/src/main/config/component/dataList.xml
===================================================================
--- branches/3.1.x/ui/dataTable/src/main/config/component/dataList.xml 2008-04-18 17:27:34 UTC (rev 7948)
+++ branches/3.1.x/ui/dataTable/src/main/config/component/dataList.xml 2008-04-18 17:37:39 UTC (rev 7949)
@@ -41,7 +41,7 @@
<classname>java.util.Set</classname>
<description>This attribute defines rows that are updated after an AJAX request</description>
</property>
- <property>
+ <property hidden="true">
<name>rowKey</name>
<classname>java.lang.Object</classname>
<description>RowKey is a representation of an identifier for a specific data row</description>
@@ -52,7 +52,7 @@
<classname>java.lang.Object</classname>
<description>The current value for this component</description>
</property>
- <property>
+ <property hidden="true">
<name>stateVar</name>
<classname>java.lang.String</classname>
<description>
@@ -64,7 +64,7 @@
<classname>java.lang.String</classname>
<description>The attribute provides access to a row key in a Request scope</description>
</property>
- <property>
+ <property hidden="true">
<name>componentState</name>
<classname>org.ajax4jsf.model.DataComponentState</classname>
<description>It defines EL-binding for a component state for saving or redefinition</description>
@@ -114,20 +114,30 @@
&ui_component_attributes;
&ui_data_attributes;
&html_universal_attributes;
+ <property hidden="true">
+ <name>rowKey</name>
+ <classname>java.lang.Object</classname>
+ <description>RowKey is a representation of an identifier for a specific data row</description>
+ </property>
<property>
<name>type</name>
<classname>java.lang.String</classname>
<description>Corresponds to the HTML OL type attribute
</description>
</property>
- <property>
+ <property hidden="true">
<name>stateVar</name>
<classname>java.lang.String</classname>
<description>
The attribute provides access to a component state on the client side
</description>
</property>
-
+ <property hidden="true">
+ <name>componentState</name>
+ <classname>org.ajax4jsf.model.DataComponentState</classname>
+ <description>It defines EL-binding for a component state for saving or redefinition</description>
+ </property>
+
<property>
<name>rowClasses</name>
<classname>java.lang.String</classname>
16 years, 9 months
JBoss Rich Faces SVN: r7948 - in trunk/docs/userguide/en/src/main/docbook: modules and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: vsukhov
Date: 2008-04-18 13:27:34 -0400 (Fri, 18 Apr 2008)
New Revision: 7948
Modified:
trunk/docs/userguide/en/src/main/docbook/included/actionparam.xml
trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.xml
trunk/docs/userguide/en/src/main/docbook/included/calendar.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/calendar.xml
trunk/docs/userguide/en/src/main/docbook/included/changeExpandListener.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/column.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/column.xml
trunk/docs/userguide/en/src/main/docbook/included/columnGroup.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/columns.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/comboBox.xml
trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml
trunk/docs/userguide/en/src/main/docbook/included/componentControl.xml
trunk/docs/userguide/en/src/main/docbook/included/contextMenu.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/contextMenu.xml
trunk/docs/userguide/en/src/main/docbook/included/dataDefinitionList.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.xml
trunk/docs/userguide/en/src/main/docbook/included/dataGrid.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dataGrid.xml
trunk/docs/userguide/en/src/main/docbook/included/dataList.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dataTable.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml
trunk/docs/userguide/en/src/main/docbook/included/dndParam.xml
trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.xml
trunk/docs/userguide/en/src/main/docbook/included/dragIndicator1.xml
trunk/docs/userguide/en/src/main/docbook/included/dragListener.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dragSupport.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dragSupport.xml
trunk/docs/userguide/en/src/main/docbook/included/draggable.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dropListener.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dropSupport.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dropSupport.xml
trunk/docs/userguide/en/src/main/docbook/included/dropZone.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dropZone.xml
trunk/docs/userguide/en/src/main/docbook/included/effect.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/effect.xml
trunk/docs/userguide/en/src/main/docbook/included/fileUpload.xml
trunk/docs/userguide/en/src/main/docbook/included/gmap.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/gmap.xml
trunk/docs/userguide/en/src/main/docbook/included/inplaceInput.xml
trunk/docs/userguide/en/src/main/docbook/included/inplaceSelect.xml
trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.xml
trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml
trunk/docs/userguide/en/src/main/docbook/included/insert.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/insert.xml
trunk/docs/userguide/en/src/main/docbook/included/jQuery.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/jQuery.xml
trunk/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/listShuttle.xml
trunk/docs/userguide/en/src/main/docbook/included/mediaOutput.xml
trunk/docs/userguide/en/src/main/docbook/included/message.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/message.xml
trunk/docs/userguide/en/src/main/docbook/included/messages.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/messages.xml
trunk/docs/userguide/en/src/main/docbook/included/modalPanel.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/modalPanel.xml
trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/orderingList.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/orderingList.xml
trunk/docs/userguide/en/src/main/docbook/included/outputPanel.xml
trunk/docs/userguide/en/src/main/docbook/included/paint2D.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panel.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panel.xml
trunk/docs/userguide/en/src/main/docbook/included/panelBar.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenu.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/pickList.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/scrollableDataTable.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml
trunk/docs/userguide/en/src/main/docbook/included/separator.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/separator.xml
trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml
trunk/docs/userguide/en/src/main/docbook/included/spacer.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/spacer.xml
trunk/docs/userguide/en/src/main/docbook/included/status.xml
trunk/docs/userguide/en/src/main/docbook/included/subTable.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml
trunk/docs/userguide/en/src/main/docbook/included/support.xml
trunk/docs/userguide/en/src/main/docbook/included/tab.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/tab.xml
trunk/docs/userguide/en/src/main/docbook/included/tabPanel.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml
trunk/docs/userguide/en/src/main/docbook/included/toggleControl.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/togglePanel.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/togglePanel.xml
trunk/docs/userguide/en/src/main/docbook/included/toolBar.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml
trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.xml
trunk/docs/userguide/en/src/main/docbook/included/toolTip.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml
trunk/docs/userguide/en/src/main/docbook/included/tree.xml
trunk/docs/userguide/en/src/main/docbook/included/treeNode.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.xml
trunk/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
trunk/docs/userguide/en/src/main/docbook/modules/RFCSettings.xml
trunk/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml
trunk/docs/userguide/en/src/main/docbook/modules/RFCtechreqs.xml
Log:
http://jira.jboss.com/jira/browse/RF-2917 I've corrected Validity of xml files
Modified: trunk/docs/userguide/en/src/main/docbook/included/actionparam.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/actionparam.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/actionparam.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -63,8 +63,10 @@
<property><a4j:actionparam></property>
</emphasis>has a <emphasis><property>"noEscape"</property></emphasis> attribute. If it is set to
<property>"true"</property>, the <emphasis><property>"value"</property></emphasis> is evaluated as a JavaScript code. </para>
+ <para>
<emphasis role="bold">Example:</emphasis>
- <programlisting role="XML"><![CDATA[...
+ </para>
+ <programlisting role="XML"><![CDATA[...
<script>
...
var foo = "bar";
Modified: trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?>
<chapter>
<section>
- <sectioninfo>
+ <sectioninfo>
<keywordset>
<keyword>a4j:ajaxListener</keyword>
</keywordset>
Modified: trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -78,9 +78,7 @@
Attribute <emphasis><property>"type"</property></emphasis> described in the following <link linkend="ajaxListener"> chapter</link>. It defines the fully qualified Java class name for listener.This class implements org.ajax4jsf.framework.ajax.ajaxListener
<ulink url="http://labs.jboss.com/file-access/default/members/jbossrichfaces/freezone...">interface</ulink>. You can access to the source of the event (Ajax component) using event.getSource() call.
</para>
-
- </section>
- <section>
+
<para>
<emphasis role="bold">Example:</emphasis>
</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/calendar.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/calendar.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/calendar.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -22,12 +22,12 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Highly customizable look and feel</listitem>
- <listitem>Popup representation</listitem>
- <listitem>Disablement support</listitem>
- <listitem>Smart and user-defined positioning</listitem>
- <listitem>Cells customization</listitem>
- <listitem>Macro substitution based on tool bars customization</listitem>
+ <listitem><para>Highly customizable look and feel</para></listitem>
+ <listitem><para>Popup representation</para></listitem>
+ <listitem><para>Disablement support</para></listitem>
+ <listitem><para>Smart and user-defined positioning</para></listitem>
+ <listitem><para>Cells customization</para></listitem>
+ <listitem><para>Macro substitution based on tool bars customization</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/calendar.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/calendar.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/calendar.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -212,11 +212,11 @@
<property>"direction"</property>
</emphasis> are: </para>
<itemizedlist>
- <listitem>top-left - a calendar drops to the top and left</listitem>
- <listitem>top-right - a calendar drops to the top and right</listitem>
- <listitem>bottom-left - a calendar drops to the bottom and left</listitem>
- <listitem>bottom-right - a calendar drops to the bottom and right</listitem>
- <listitem>auto - smart positioning activation</listitem>
+ <listitem><para>top-left - a calendar drops to the top and left</para></listitem>
+ <listitem><para>top-right - a calendar drops to the top and right</para></listitem>
+ <listitem><para>bottom-left - a calendar drops to the bottom and left</para></listitem>
+ <listitem><para>bottom-right - a calendar drops to the bottom and right</para></listitem>
+ <listitem><para>auto - smart positioning activation</para></listitem>
</itemizedlist>
<para> By default, the <emphasis>
<property>"direction"</property>
@@ -225,11 +225,11 @@
<property>"jointPoint"</property>
</emphasis> are: </para>
<itemizedlist>
- <listitem>top-left - a calendar docked to the top-left point of the button element</listitem>
- <listitem>top-right - a calendar docked to the top-right point of the button element</listitem>
- <listitem>bottom-left - a calendar docked to the bottom-left point of the button element</listitem>
- <listitem>bottom-right - a calendar docked to the bottom-right point of the button element</listitem>
- <listitem>auto - smart positioning activation</listitem>
+ <listitem><para>top-left - a calendar docked to the top-left point of the button element</para></listitem>
+ <listitem><para>top-right - a calendar docked to the top-right point of the button element</para></listitem>
+ <listitem><para>bottom-left - a calendar docked to the bottom-left point of the button element</para></listitem>
+ <listitem><para>bottom-right - a calendar docked to the bottom-right point of the button element</para></listitem>
+ <listitem><para>auto - smart positioning activation</para></listitem>
</itemizedlist>
<para> By default, the <emphasis>
<property>"jointPoint"</property>
@@ -403,12 +403,12 @@
</emphasis> component provides the possibility to use a special Data Model to define data for
element rendering. Data Model includes two major interfaces: </para>
<itemizedlist>
- <listitem>CalendarDataModel</listitem>
- <listitem>CalendarDataModelItem</listitem>
+ <listitem><para>CalendarDataModel</para></listitem>
+ <listitem><para>CalendarDataModelItem</para></listitem>
</itemizedlist>
<para><property>CalendarDataModel</property> provides the following function:</para>
<itemizedlist>
- <listitem>CalendarDataModelItem[] getData(Date[]);</listitem>
+ <listitem><para>CalendarDataModelItem[] getData(Date[]);</para></listitem>
</itemizedlist>
<para>This method is called when it's necessary to represent the next block of
CalendarDataItems. It happens during navigation to the next (previous) month or in any other
@@ -417,19 +417,19 @@
</emphasis> mode when the calendar renders a new page. </para>
<para><property>CalendarDataModelItem</property> provides the following function:</para>
<itemizedlist>
- <listitem>Date getDate() - returns date from the item. Default implementation returns date.</listitem>
- <listitem>Boolean isEnabled() - returns <emphasis>
+ <listitem><para>Date getDate() - returns date from the item. Default implementation returns date.</para></listitem>
+ <listitem><para>Boolean isEnabled() - returns <emphasis>
<property>"true"</property>
</emphasis> if date is <emphasis>
<property>"selectable"</property>
- </emphasis> on the calendar. Default implementation returns "true".</listitem>
- <listitem>String getStyleClass() - returns string appended to the style class for the date
+ </emphasis> on the calendar. Default implementation returns "true".</para></listitem>
+ <listitem><para>String getStyleClass() - returns string appended to the style class for the date
span. For example it could be "relevant holyday". It means that the class
could be defined like the "rich-cal-day-relevant-holyday" one. Default
- implementation returns empty string.</listitem>
- <listitem>Object getData() - returns any additional payload that must be JSON-serializable
+ implementation returns empty string.</para></listitem>
+ <listitem><para>Object getData() - returns any additional payload that must be JSON-serializable
object. It could be used in the custom date representation on the calendar (inside the
- custom facet).</listitem>
+ custom facet).</para></listitem>
</itemizedlist>
<para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/changeExpandListener.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/changeExpandListener.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/changeExpandListener.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -16,7 +16,7 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Allows to define some "changeExpand" listeners for the component</listitem>
+ <listitem><para>Allows to define some "changeExpand" listeners for the component</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/column.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/column.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/column.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -20,11 +20,11 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Completely skinned table rows and child elements</listitem>
- <listitem>Possibility to combine columns with the help of <emphasis ><property>"colspan"</property></emphasis></listitem>
- <listitem>Possibility to combine rows with the help of <emphasis ><property>"rowspan"</property></emphasis> and <emphasis ><property>"breakBefore"</property></emphasis></listitem>
- <listitem><link linkend="sortAndFilter">Sorting column values</link></listitem>
- <listitem><link linkend="sortAndFilter">Filtering column values</link></listitem>
+ <listitem><para>Completely skinned table rows and child elements</para></listitem>
+ <listitem><para>Possibility to combine columns with the help of <emphasis ><property>"colspan"</property></emphasis></para></listitem>
+ <listitem><para>Possibility to combine rows with the help of <emphasis ><property>"rowspan"</property></emphasis> and <emphasis ><property>"breakBefore"</property></emphasis></para></listitem>
+ <listitem><para><link linkend="sortAndFilter">Sorting column values</link></para></listitem>
+ <listitem><para><link linkend="sortAndFilter">Filtering column values</link></para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/column.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/column.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/column.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -257,15 +257,15 @@
</para>
<para>Possible values are:</para>
<itemizedlist>
- <listitem>
+ <listitem><para>
"ASCENDING" - column is sorted in ascending
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
"DESCENDING" - column is sorted in descending
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
"UNSORTED" - column isn't sorted
- </listitem>
+ </para></listitem>
</itemizedlist>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/columnGroup.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/columnGroup.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/columnGroup.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -20,9 +20,9 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Completely skinned table columns and child elements</listitem>
- <listitem>Possibility to combine columns and rows inside</listitem>
- <listitem>Possibility to update a limited set of strings with Ajax </listitem>
+ <listitem><para>Completely skinned table columns and child elements</para></listitem>
+ <listitem><para>Possibility to combine columns and rows inside</para></listitem>
+ <listitem><para>Possibility to update a limited set of strings with Ajax </para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/columns.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/columns.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/columns.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -24,12 +24,12 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Highly customizable look and feel</listitem>
- <listitem>Dynamic tables creation</listitem>
- <listitem>Possibility to combine columns with the help of <emphasis ><property>"colspan"</property></emphasis> and <emphasis ><property>"breakBefore"</property></emphasis></listitem>
- <listitem>Possibility to combine rows with the help of <emphasis ><property>"rowspan"</property></emphasis> </listitem>
- <listitem><link linkend="sortAndFilter">Sorting column values</link></listitem>
- <listitem><link linkend="sortAndFilter">Filtering column values</link></listitem>
+ <listitem><para>Highly customizable look and feel</para></listitem>
+ <listitem><para>Dynamic tables creation</para></listitem>
+ <listitem><para>Possibility to combine columns with the help of <emphasis ><property>"colspan"</property></emphasis> and <emphasis ><property>"breakBefore"</property></emphasis></para></listitem>
+ <listitem><para>Possibility to combine rows with the help of <emphasis ><property>"rowspan"</property></emphasis> </para></listitem>
+ <listitem><para><link linkend="sortAndFilter">Sorting column values</link></para></listitem>
+ <listitem><para><link linkend="sortAndFilter">Filtering column values</link></para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/comboBox.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/comboBox.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/comboBox.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -76,8 +76,8 @@
<!-- NEED DESCRIPTION "HOW TO MANAGE THIS"-->
<itemizedlist>
- <listitem>Default - only input and button is shown</listitem>
- <listitem>Input, button and a popup list of suggestions attached to input is shown</listitem>
+ <listitem><para>Default - only input and button is shown</para></listitem>
+ <listitem><para>Input, button and a popup list of suggestions attached to input is shown</para></listitem>
</itemizedlist>
</para>
<para>
@@ -219,25 +219,25 @@
The <emphasis role="bold"><property><rich:comboBox></property></emphasis> component provides to use
specific event attributes:
<itemizedlist>
- <listitem>
+ <listitem><para>
<emphasis><property> "onlistcall"</property></emphasis>which is fired before the list opening and gives you a possibility to cancel list popup/update
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
<emphasis><property> "onselect"</property></emphasis>which gives you a possibility to send AJAX request when item is selected
- </listitem>
+ </para></listitem>
</itemizedlist>
</para>
<para>
The <emphasis role="bold"><property><rich:comboBox></property></emphasis> component allows to use sizes attributes:
<itemizedlist>
- <listitem>
+ <listitem><para>
<emphasis><property> "listWidth"</property></emphasis> and <emphasis><property> "listHeight"</property></emphasis> attributes
specify popup list sizes with values in pixels
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
<emphasis><property> "width"</property></emphasis> attribute customizes the size of input element with values in pixels.
- </listitem>
+ </para></listitem>
</itemizedlist>
</para>
<!-- <para>It's possible to handle events for comboBox from JavaScript code. A simplest example of usage JavaScript API is placed below:</para>
@@ -280,7 +280,7 @@
<row>
<entry>disable()</entry>
<entry>Disables the control for input</entry>
- </row>`
+ </row>
</tbody>
</tgroup>
</table>
@@ -296,10 +296,10 @@
<para>There are two ways to redefine the appearance of all <emphasis role="bold">
<property><rich:comboBox></property>
</emphasis> components at once: <itemizedlist>
- <listitem>Redefine the corresponding skin parameters</listitem>
- <listitem> Add to your style sheets style classes used by a <emphasis role="bold">
+ <listitem><para>Redefine the corresponding skin parameters</para></listitem>
+ <listitem><para> Add to your style sheets style classes used by a <emphasis role="bold">
<property><rich:comboBox></property>
- </emphasis> component</listitem>
+ </emphasis> component</para></listitem>
</itemizedlist>
</para>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?>
<chapter>
- <para><table frame="all">
+ <table frame="all">
<title>Component identification parameters</title>
<tgroup cols="2">
<thead>
@@ -29,7 +29,7 @@
</row>
</tbody>
</tgroup>
- </table></para>
+ </table>
<section>
<title>Creating on a page</title>
Modified: trunk/docs/userguide/en/src/main/docbook/included/componentControl.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/componentControl.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/componentControl.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -92,10 +92,10 @@
-->
</para>
<itemizedlist>
- <listitem>Define a name of a function that is generated (definition is similar to a
+ <listitem><para>Define a name of a function that is generated (definition is similar to a
definition of <emphasis role="bold">
<property><a4j:jsFunction></property>
- </emphasis>). An "event" argument is passed to this function.</listitem>
+ </emphasis>). An "event" argument is passed to this function.</para></listitem>
</itemizedlist>
<para>An example is placed below:</para>
<programlisting role="XML"><![CDATA[...
@@ -110,9 +110,9 @@
}
]]></programlisting>
<itemizedlist>
- <listitem>Attach to a parent component (usage is similar to <emphasis role="bold">
+ <listitem><para>Attach to a parent component (usage is similar to <emphasis role="bold">
<property><a4j:support></property>
- </emphasis> component).</listitem>
+ </emphasis> component).</para></listitem>
</itemizedlist>
<para>An example is placed below:</para>
@@ -150,9 +150,9 @@
<property><h:commandButton></property>
</emphasis> to avoid a problem with form submit and <property>modalPanel</property> showing.</para>
<itemizedlist>
- <listitem>Attach with <emphasis>
+ <listitem><para>Attach with <emphasis>
<property>"attachTo"</property>
- </emphasis> attribute.</listitem>
+ </emphasis> attribute.</para></listitem>
</itemizedlist>
<para>An example is placed below:</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/contextMenu.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/contextMenu.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/contextMenu.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -26,11 +26,11 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Highly customizable look and feel</listitem>
- <listitem>"oncontextmenu" event support</listitem>
- <listitem>Disablement support</listitem>
- <listitem>Pop-up appearance event customization</listitem>
- <listitem>Usage of shared instance of a menu on a page</listitem>
+ <listitem><para>Highly customizable look and feel</para></listitem>
+ <listitem><para>"oncontextmenu" event support</para></listitem>
+ <listitem><para>Disablement support</para></listitem>
+ <listitem><para>Pop-up appearance event customization</para></listitem>
+ <listitem><para>Usage of shared instance of a menu on a page</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/contextMenu.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/contextMenu.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/contextMenu.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -458,10 +458,10 @@
<para>There are two ways to redefine the appearance of all <emphasis role="bold">
<property><rich:contextMenu></property>
</emphasis> components at once: <itemizedlist>
- <listitem>Redefine the corresponding skin parameters</listitem>
- <listitem> Add to your style sheets style classes used by a <emphasis role="bold">
+ <listitem><para>Redefine the corresponding skin parameters</para></listitem>
+ <listitem><para> Add to your style sheets style classes used by a <emphasis role="bold">
<property><rich:contextMenu></property>
- </emphasis> component</listitem>
+ </emphasis> component</para></listitem>
</itemizedlist>
</para>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataDefinitionList.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataDefinitionList.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataDefinitionList.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -21,9 +21,9 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Completely skinned table rows and child elements</listitem>
- <listitem>Possibility to update a limited set of rows with AJAX</listitem>
- <listitem>Possibility to receive values dynamically from a model</listitem>
+ <listitem><para>Completely skinned table rows and child elements</para></listitem>
+ <listitem><para>Possibility to update a limited set of rows with AJAX</para></listitem>
+ <listitem><para>Possibility to receive values dynamically from a model</para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -20,14 +20,14 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Filter any UIData based component in dependency on its child's values</listitem>
- <listitem>Fully skinnable control and input elements</listitem>
- <listitem>Optional value text field with an attribute-managed position</listitem>
- <listitem>Optional disablement of the component on a page</listitem>
- <listitem>Optional toolTip to display the current value while a handle is dragged</listitem>
- <listitem>Dragged state is stable after the mouse moves</listitem>
- <listitem>Optional manual input possible if a text input field is present</listitem>
- <listitem>Validation of manual input</listitem>
+ <listitem><para>Filter any UIData based component in dependency on its child's values</para></listitem>
+ <listitem><para>Fully skinnable control and input elements</para></listitem>
+ <listitem><para>Optional value text field with an attribute-managed position</para></listitem>
+ <listitem><para>Optional disablement of the component on a page</para></listitem>
+ <listitem><para>Optional toolTip to display the current value while a handle is dragged</para></listitem>
+ <listitem><para>Dragged state is stable after the mouse moves</para></listitem>
+ <listitem><para>Optional manual input possible if a text input field is present</para></listitem>
+ <listitem><para>Validation of manual input</para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -93,17 +93,17 @@
]]></programlisting>
<para>In this example other two attributes are used for filtering:</para>
<itemizedlist>
- <listitem>
+ <listitem><para>
<emphasis>
<property>"forValRef"</property>
</emphasis> is a string which is used in a value attribute of the target UIData component.
It's designed for resetting the UIData component back to the original list provided
- by a backing bean. </listitem>
- <listitem>
+ by a backing bean. </para></listitem>
+ <listitem><para>
<emphasis>
<property>"filterBy"</property>
</emphasis> is a getter of an object member that is to be compared to a slider value.
- It's a value that is used in results filtering. </listitem>
+ It's a value that is used in results filtering. </para></listitem>
</itemizedlist>
<para><emphasis>
<property>"handleValue"</property>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataGrid.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataGrid.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataGrid.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -21,9 +21,9 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>A completely skinned table and child elements</listitem>
- <listitem>Possibility to update a limited set of rows with AJAX</listitem>
- <listitem>Possibility to receive values dynamically from a model</listitem>
+ <listitem><para>A completely skinned table and child elements</para></listitem>
+ <listitem><para>Possibility to update a limited set of rows with AJAX</para></listitem>
+ <listitem><para>Possibility to receive values dynamically from a model</para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataGrid.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataGrid.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataGrid.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -78,19 +78,19 @@
for <emphasis role="bold"><property><h:panelGrid></property>.</emphasis></para>
<para>The component allows to:</para>
<itemizedlist>
- <listitem>Use <emphasis>
+ <listitem><para>Use <emphasis>
<property>"header"</property>
</emphasis> and <emphasis>
<property>"footer"</property>
- </emphasis> facets for output</listitem>
- <listitem>Limit number of output elements (<emphasis>
+ </emphasis> facets for output</para></listitem>
+ <listitem><para>Limit number of output elements (<emphasis>
<property>"elements"</property>
</emphasis> attribute) and define first element for output (<emphasis>
<property>"first"</property>
- </emphasis> attribute)</listitem>
- <listitem>Bind pages with <emphasis role="bold">
+ </emphasis> attribute)</para></listitem>
+ <listitem><para>Bind pages with <emphasis role="bold">
<property><rich:datascroller></property>
- </emphasis> component</listitem>
+ </emphasis> component</para></listitem>
</itemizedlist>
<para>Here is an example:</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataList.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataList.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataList.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -21,9 +21,9 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>A completely skinned list and child elements</listitem>
- <listitem>Possibility to update a limited set of rows with AJAX</listitem>
- <listitem>Possibility to receive values dynamically from a model</listitem>
+ <listitem><para>A completely skinned list and child elements</para></listitem>
+ <listitem><para>Possibility to update a limited set of rows with AJAX</para></listitem>
+ <listitem><para>Possibility to receive values dynamically from a model</para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -21,9 +21,9 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>A completely skinned list and child elements</listitem>
- <listitem>Possibility to update a limited set of rows with AJAX</listitem>
- <listitem>Possibility to receive values dynamically from a model</listitem>
+ <listitem><para>A completely skinned list and child elements</para></listitem>
+ <listitem><para>Possibility to update a limited set of rows with AJAX</para></listitem>
+ <listitem><para>Possibility to receive values dynamically from a model</para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataTable.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataTable.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataTable.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -21,14 +21,14 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>A completely skinned table and child elements</listitem>
- <listitem>Possibility to insert the complex subcomponents
+ <listitem><para>A completely skinned table and child elements</para></listitem>
+ <listitem><para>Possibility to insert the complex subcomponents
<property>"colGroup"</property> and
- <property>"subTable"</property></listitem>
- <listitem>Possibility to update a limited set of strings with AJAX</listitem>
- <listitem>Possibility to sort and to filter of columns</listitem>
- <listitem><link linkend="sortAndFilter">Sorting column values</link></listitem>
- <listitem><link linkend="sortAndFilter">Filtering column values</link></listitem>
+ <property>"subTable"</property></para></listitem>
+ <listitem><para>Possibility to update a limited set of strings with AJAX</para></listitem>
+ <listitem><para>Possibility to sort and to filter of columns</para></listitem>
+ <listitem><para><link linkend="sortAndFilter">Sorting column values</link></para></listitem>
+ <listitem><para><link linkend="sortAndFilter">Filtering column values</link></para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -89,8 +89,8 @@
</emphasis> attribute.</para>
<para>Component provides two controllers groups for switching:</para>
<itemizedlist>
- <listitem>Page numbers for switching onto a particular page</listitem>
- <listitem>The controls of fast switching: <emphasis>
+ <listitem><para>Page numbers for switching onto a particular page</para></listitem>
+ <listitem><para>The controls of fast switching: <emphasis>
<property>"first",</property>
</emphasis>
<emphasis>
@@ -107,7 +107,7 @@
</emphasis>
<emphasis>
<property>"fastrewind"</property>
- </emphasis></listitem>
+ </emphasis></para></listitem>
</itemizedlist>
<para>The controls of fast switching are created adding the facets component with the
corresponding name:</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dndParam.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dndParam.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dndParam.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -94,8 +94,8 @@
<para>Variants of usage:</para>
<itemizedlist>
- <listitem>Parameters passing for a drag icon when an indicator is in
- drag.</listitem>
+ <listitem><para>Parameters passing for a drag icon when an indicator is in
+ drag.</para></listitem>
</itemizedlist>
<para>In this case, <property>dndParam</property> is of a drag type
@@ -120,8 +120,8 @@
minimized image of a draggable element)</para>
<itemizedlist>
- <listitem>Parameters passing for an indicator informational part during
- a drag.</listitem>
+ <listitem><para>Parameters passing for an indicator informational part during
+ a drag.</para></listitem>
</itemizedlist>
<para>In this case <property>dndParam</property> is of a drag type
@@ -144,8 +144,8 @@
call to {label} happens)</para>
<itemizedlist>
- <listitem>Parameters passing happens when dragged content is brought
- onto some zone with <property>dropSupport</property></listitem>
+ <listitem><para>Parameters passing happens when dragged content is brought
+ onto some zone with <property>dropSupport</property></para></listitem>
</itemizedlist>
<para>In this case <property>dndParam</property> is of a drop type and is
Modified: trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -24,8 +24,8 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Customizable look and feel</listitem>
- <listitem>Customizable marker according to the type of dragable elements</listitem>
+ <listitem><para>Customizable look and feel</para></listitem>
+ <listitem><para>Customizable marker according to the type of dragable elements</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -90,11 +90,11 @@
</figure>
<para>For indicator customization you need to define one of the following facets:</para>
<itemizedlist>
- <listitem>single</listitem>
+ <listitem><para>single</para></listitem>
</itemizedlist>
<para>Indicator shown when dragging a single element.</para>
<itemizedlist>
- <listitem>multiple</listitem>
+ <listitem><para>multiple</para></listitem>
</itemizedlist>
<para>Indicator shown when dragging several components (for future components that will support
multiple selection).</para>
@@ -105,15 +105,15 @@
<para>To place some data from drag or drop zones into component you can use macro definitions.
They are being defining in the following way:</para>
<itemizedlist>
- <listitem>
+ <listitem><para>
<emphasis role="bold">
<property><rich:dndParam></property>
</emphasis> component with a specific name and value is being included into a drag/drop
support component (an image can be defined as placed inside <emphasis role="bold">
<property><rich:dndParam></property>
- </emphasis> without defining a value). </listitem>
- <listitem> in needed place a parameter value is included into the marking of indicator using
- syntax (name of parameter)</listitem>
+ </emphasis> without defining a value). </para></listitem>
+ <listitem><para> in needed place a parameter value is included into the marking of indicator using
+ syntax (name of parameter)</para></listitem>
</itemizedlist>
<para> For instance, this:</para>
<programlisting role="XML"><![CDATA[...
@@ -136,8 +136,8 @@
<title>Predefined macro definitions</title>
<para> Indicator can accept two default macro definitions:</para>
<itemizedlist>
- <listitem>marker</listitem>
- <listitem>label</listitem>
+ <listitem><para>marker</para></listitem>
+ <listitem><para>label</para></listitem>
</itemizedlist>
<para>Thus including one of these elements in the marking of indicator, in other words after
setting up appropriate parameters in DnD components and defining only default indicator -
@@ -153,25 +153,28 @@
that you should define one of these three parameters (specify a parameter with one of three
names):</para>
<itemizedlist>
- <listitem>accept </listitem>
+ <listitem><para>accept </para></listitem>
</itemizedlist>
<para>Parameter will be set instead of {marker} into indicator when a draggable element is
positioned over drop zone that accept this type of elements</para>
<itemizedlist>
- <listitem>reject</listitem>
+ <listitem><para>reject</para></listitem>
</itemizedlist>
<para>Parameter is set instead of {marker} into indicator when a draggable element is
positioned over drop zone that doesn't accept this type of elements </para>
<itemizedlist>
- <listitem>default</listitem>
+ <listitem><para>default</para></listitem>
</itemizedlist>
<para>Parameter is set instead of {marker} into indicator when a draggable element is
positioned over all the rest of page elements</para>
</section>
<note>
+ <title>
+ Note:
+ </title>
<para>
If you use <emphasis role="bold"><property><rich:dragIndicator></property></emphasis> inside a form
do not forget to use id like <property>"formId:indicatorID"</property>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dragIndicator1.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dragIndicator1.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dragIndicator1.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -103,17 +103,17 @@
<emphasis ><property>"default"</property></emphasis> names that specify icons on the left side according to states when an
<property>indicator</property> is above:</para>
<itemizedlist>
- <listitem>
+ <listitem><para>
a drop zone that processes the facets written in the
<emphasis ><property>"acceptedTypes"</property></emphasis> attribute
of this drop zone
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
a drop zone that doesn't process the facets
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
not above any drop zone
- </listitem>
+ </para></listitem>
</itemizedlist>
<para>Here is an example for an accept facet:</para>
<programlisting role="XML"><![CDATA[
Modified: trunk/docs/userguide/en/src/main/docbook/included/dragListener.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dragListener.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dragListener.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -16,7 +16,7 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Allows to define some drag listeners for the components with "Drag and Drop" support</listitem>
+ <listitem><para>Allows to define some drag listeners for the components with "Drag and Drop" support</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dragSupport.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dragSupport.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dragSupport.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -27,19 +27,19 @@
<title>Key Features</title>
<itemizedlist>
- <listitem>
+ <listitem><para>
Encodes all necessary JavaScript to perform drag
actions
- </listitem>
+ </para></listitem>
- <listitem>
+ <listitem><para>
Can be used within any component type that provides the
required properties for drag operations
- </listitem>
+ </para></listitem>
- <listitem>
+ <listitem><para>
Supports drag-and-drop between different forms
- </listitem>
+ </para></listitem>
</itemizedlist>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dragSupport.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dragSupport.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dragSupport.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -182,9 +182,9 @@
client:</para>
<itemizedlist>
- <listitem>ondragenter</listitem>
+ <listitem><para>ondragenter</para></listitem>
- <listitem>ondragexit</listitem>
+ <listitem><para>ondragexit</para></listitem>
</itemizedlist>
<para>You can use your own custom JavaScript functions to handle these events.</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/draggable.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/draggable.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/draggable.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -22,11 +22,11 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Encodes all necessary JavaScript code for supporting drag operations in drag and drop</listitem>
- <listitem>Drag zone supports all content inside that can be needed for Drag and Drop</listitem>
- <listitem>Managing zones to drop components dragged from this zone with an attribute</listitem>
- <listitem>Simple management Indicator for zones</listitem>
- <listitem>Easy management of parameters to send to a target drop zone</listitem>
+ <listitem><para>Encodes all necessary JavaScript code for supporting drag operations in drag and drop</para></listitem>
+ <listitem><para>Drag zone supports all content inside that can be needed for Drag and Drop</para></listitem>
+ <listitem><para>Managing zones to drop components dragged from this zone with an attribute</para></listitem>
+ <listitem><para>Simple management Indicator for zones</para></listitem>
+ <listitem><para>Easy management of parameters to send to a target drop zone</para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropListener.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropListener.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropListener.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -16,7 +16,7 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Allows to define some drop listeners for the components with "Drag and Drop" support</listitem>
+ <listitem><para>Allows to define some drop listeners for the components with "Drag and Drop" support</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropSupport.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropSupport.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropSupport.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -25,21 +25,21 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>
+ <listitem><para>
Encodes all necessary JavaScript to perform drop actions
- </listitem>
+ </para></listitem>
- <listitem>
+ <listitem><para>
Can be used within any component type that provides the required properties for drop operations
- </listitem>
+ </para></listitem>
- <listitem>
+ <listitem><para>
Built-in Ajax processing
- </listitem>
+ </para></listitem>
- <listitem>
+ <listitem><para>
Supports drag-and-drop between different forms
- </listitem>
+ </para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropSupport.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropSupport.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropSupport.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -8,7 +8,7 @@
</keywordset>
</sectioninfo>
- <section>
+
<table>
<title>Component identification parameters</title>
@@ -54,7 +54,7 @@
</tbody>
</tgroup>
</table>
- </section>
+
<section>
<title>Creating the Component with a Page Tag</title>
@@ -225,13 +225,13 @@
client:</para>
<itemizedlist>
- <listitem>ondragenter</listitem>
+ <listitem><para>ondragenter</para></listitem>
- <listitem>ondragexit</listitem>
+ <listitem><para>ondragexit</para></listitem>
- <listitem>ondrop</listitem>
+ <listitem><para>ondrop</para></listitem>
- <listitem>ondropend</listitem>
+ <listitem><para>ondropend</para></listitem>
</itemizedlist>
<para>Developers can use their own custom JavaScript functions to handle these events.</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropZone.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropZone.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropZone.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -22,9 +22,9 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem></listitem>
- <listitem></listitem>
- <listitem></listitem>
+ <listitem><para></para></listitem>
+ <listitem><para></para></listitem>
+ <listitem><para></para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropZone.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropZone.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropZone.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -116,15 +116,15 @@
<emphasis ><property>"dropListener"</property></emphasis> attribute as
well as a definition of attributes for all required events processing on the client:</para>
<itemizedlist>
- <listitem>
+ <listitem><para>
ondragenter
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
ondragexit
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
oncomplete
- </listitem>
+ </para></listitem>
</itemizedlist>
</section>
<section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/effect.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/effect.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/effect.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -15,8 +15,8 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>No developers JavaScript writing needed to use it on pages</listitem>
- <listitem>Presents scriptaculous JavaScript library functionality</listitem>
+ <listitem><para>No developers JavaScript writing needed to use it on pages</para></listitem>
+ <listitem><para>Presents scriptaculous JavaScript library functionality</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/effect.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/effect.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/effect.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -72,12 +72,12 @@
<section>
<title>Details of Usage</title>
<para> It is possible to use <emphasis role="bold"><property><rich:effect></property></emphasis> in two modes: <itemizedlist>
- <listitem>attached to the JSF components or html tags and triggered by a particular event.
+ <listitem><para>attached to the JSF components or html tags and triggered by a particular event.
Wiring effect with JSF components might occur on the server or client. Wiring with html
- tag is possible only on the client side </listitem>
- <listitem>invoking from the JavaScript code by an effect name. During the rendering,
+ tag is possible only on the client side </para></listitem>
+ <listitem><para>invoking from the JavaScript code by an effect name. During the rendering,
<emphasis role="bold"><property><rich:effect></property></emphasis> generates the JavaScript function with defined name.
- When the function is called, the effect is applied </listitem>
+ When the function is called, the effect is applied </para></listitem>
</itemizedlist>
</para>
<para>
@@ -163,16 +163,16 @@
example, 'duration', 'delay', 'from', 'to'. Additionally to the options used by the effect
itself, there are two option that might override the <property>rich:effect</property>
attribute. Those are: <itemizedlist>
- <listitem><emphasis>
+ <listitem><para><emphasis>
<property>"targetId"</property>
</emphasis> allows to re-define the target of effect. The option is override the value of <emphasis>
<property>"for"</property>
- </emphasis> attribute.</listitem>
- <listitem><emphasis>
+ </emphasis> attribute.</para></listitem>
+ <listitem><para><emphasis>
<property>"type"</property>
</emphasis> defines the effect type. The option is override the value of <emphasis>
<property>"type"</property>
- </emphasis> attribute.</listitem>
+ </emphasis> attribute.</para></listitem>
</itemizedlist>
</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/fileUpload.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/fileUpload.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/fileUpload.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -433,10 +433,10 @@
<para>There are two ways to redefine the appearance of all <emphasis role="bold">
<property><rich:fileUpload></property>
</emphasis> components at once: <itemizedlist>
- <listitem>Redefine the corresponding skin parameters</listitem>
- <listitem> Add to your style sheets style classes used by a <emphasis role="bold">
+ <listitem><para>Redefine the corresponding skin parameters</para></listitem>
+ <listitem><para> Add to your style sheets style classes used by a <emphasis role="bold">
<property><rich:fileUpload></property>
- </emphasis> component</listitem>
+ </emphasis> component</para></listitem>
</itemizedlist>
</para>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/gmap.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/gmap.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/gmap.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -20,9 +20,9 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Presents all the Google <property>map</property> functionality</listitem>
- <listitem>Highly customizable via attributes</listitem>
- <listitem>No developers JavaScript writing needed to use on a pages</listitem>
+ <listitem><para>Presents all the Google <property>map</property> functionality</para></listitem>
+ <listitem><para>Highly customizable via attributes</para></listitem>
+ <listitem><para>No developers JavaScript writing needed to use on a pages</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/gmap.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/gmap.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/gmap.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -76,25 +76,25 @@
<para>Here are the main settings of initial rendering performed with a component
<property>map</property> that are accessible with the following attributes:</para>
<itemizedlist>
- <listitem>
+ <listitem><para>
<emphasis>
<property>"zoom"</property>
- </emphasis> defines an approximation size (boundary values 1-18) </listitem>
- <listitem>
+ </emphasis> defines an approximation size (boundary values 1-18) </para></listitem>
+ <listitem><para>
<emphasis>
<property>"lat"</property>
</emphasis> specifies an initial latitude coordinate in degrees, as a number between -90 and
- +90 </listitem>
- <listitem>
+ +90 </para></listitem>
+ <listitem><para>
<emphasis>
<property>"lng"</property>
</emphasis> specifies an initial longitude coordinate in degrees, as a number between -180
- and +180 </listitem>
- <listitem>
+ and +180 </para></listitem>
+ <listitem><para>
<emphasis>
<property>"mapType"</property>
</emphasis> specifies a type of a rendered map (G_NORMAL_MAP, G_SATELLITE_MAP (DEFAULT),
- G_HYBRID_MAP) </listitem>
+ G_HYBRID_MAP) </para></listitem>
</itemizedlist>
<para>For example, the city of Paris is shown after rendering with the following initial
settings: <emphasis>
@@ -115,19 +115,19 @@
<para> It's also possible to set accessible controls on the <property>map</property>
with the help of the attributes:</para>
<itemizedlist>
- <listitem>
+ <listitem><para>
<emphasis>
<property>"showGMapTypeControl"</property>
- </emphasis> determines whether the controls for a map type definition are switched on </listitem>
- <listitem>
+ </emphasis> determines whether the controls for a map type definition are switched on </para></listitem>
+ <listitem><para>
<emphasis>
<property>"showGScaleControl"</property>
- </emphasis> determines whether the controls for scaling are switched on </listitem>
- <listitem>
+ </emphasis> determines whether the controls for scaling are switched on </para></listitem>
+ <listitem><para>
<emphasis>
<property>"showGLargeMapControl"</property>
</emphasis> determines whether the control for <property>map</property> scale rendering is
- rendered </listitem>
+ rendered </para></listitem>
</itemizedlist>
<figure>
<title><emphasis role="bold"><property><rich:gmap></property></emphasis> accessible controls</title>
@@ -148,10 +148,10 @@
map.zoomIn() on an event.</para>
<para>Moreover, to add e.g. some JavaScript effects, events defined on it are used.</para>
<itemizedlist>
- <listitem> onmouseover </listitem>
- <listitem> onclick </listitem>
- <listitem> onmouseout </listitem>
- <listitem> etc. </listitem>
+ <listitem><para> onmouseover </para></listitem>
+ <listitem><para> onclick </para></listitem>
+ <listitem><para> onmouseout </para></listitem>
+ <listitem><para> etc. </para></listitem>
</itemizedlist>
<note>
Modified: trunk/docs/userguide/en/src/main/docbook/included/inplaceInput.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inplaceInput.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/inplaceInput.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -463,10 +463,10 @@
<para>There are two ways to redefine the appearance of all <emphasis role="bold">
<property><rich:inplaceInput></property>
</emphasis> components at once: <itemizedlist>
- <listitem>Redefine the corresponding skin parameters</listitem>
- <listitem> Add to your style sheets style classes used by a <emphasis role="bold">
+ <listitem><para>Redefine the corresponding skin parameters</para></listitem>
+ <listitem><para> Add to your style sheets style classes used by a <emphasis role="bold">
<property><rich:inplaceInput></property>
- </emphasis> component</listitem>
+ </emphasis> component</para></listitem>
</itemizedlist>
</para>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/inplaceSelect.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inplaceSelect.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/inplaceSelect.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -482,10 +482,10 @@
<property><rich:inplaceSelect></property>
</emphasis> components at once:
<itemizedlist>
- <listitem>Redefine the corresponding skin parameters</listitem>
- <listitem> Add to your style sheets style classes used by a <emphasis role="bold">
+ <listitem><para>Redefine the corresponding skin parameters</para></listitem>
+ <listitem><para> Add to your style sheets style classes used by a <emphasis role="bold">
<property><rich:inplaceSelect></property>
- </emphasis> component</listitem>
+ </emphasis> component</para></listitem>
</itemizedlist>
</para>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -23,13 +23,13 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Fully skinnable control and input elements</listitem>
- <listitem>Optional value text field with an attribute-managed position</listitem>
- <listitem>Optional disablement of the component on a page</listitem>
- <listitem>Optional toolTip to display the current value while a handle is dragged</listitem>
- <listitem>Dragged state is stable after the mouse moves</listitem>
- <listitem>Optional manual input possible if a text input field is present</listitem>
- <listitem>Validation of manual input</listitem>
+ <listitem><para>Fully skinnable control and input elements</para></listitem>
+ <listitem><para>Optional value text field with an attribute-managed position</para></listitem>
+ <listitem><para>Optional disablement of the component on a page</para></listitem>
+ <listitem><para>Optional toolTip to display the current value while a handle is dragged</para></listitem>
+ <listitem><para>Dragged state is stable after the mouse moves</para></listitem>
+ <listitem><para>Optional manual input possible if a text input field is present</para></listitem>
+ <listitem><para>Validation of manual input</para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -128,12 +128,12 @@
<para>Moreover, to add e.g. some JavaScript effects, events defined on it are used.</para>
<itemizedlist>
- <listitem> onchange </listitem>
- <listitem> onmouseover </listitem>
- <listitem> onclick </listitem>
- <listitem> onfocus </listitem>
- <listitem> onmouseout </listitem>
- <listitem> etc. </listitem>
+ <listitem><para> onchange </para></listitem>
+ <listitem><para> onmouseover </para></listitem>
+ <listitem><para> onclick </para></listitem>
+ <listitem><para> onfocus </para></listitem>
+ <listitem><para> onmouseout </para></listitem>
+ <listitem><para> etc. </para></listitem>
</itemizedlist>
<para>
The <emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -25,14 +25,14 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Fully skinnable control and input elements</listitem>
- <listitem>3D look and feel with an easily customizable appearance</listitem>
- <listitem>Attribute-managed positions of the controls (inside/outside of the input field)</listitem>
- <listitem>Keyboard controls support</listitem>
- <listitem>Optional disablement of the component on a page</listitem>
- <listitem>Optional <emphasis><property>"cycled"</property></emphasis> mode of scrolling values</listitem>
- <listitem>Optional manual/controls-only input into a value text field</listitem>
- <listitem>Validation of manual input</listitem>
+ <listitem><para>Fully skinnable control and input elements</para></listitem>
+ <listitem><para>3D look and feel with an easily customizable appearance</para></listitem>
+ <listitem><para>Attribute-managed positions of the controls (inside/outside of the input field)</para></listitem>
+ <listitem><para>Keyboard controls support</para></listitem>
+ <listitem><para>Optional disablement of the component on a page</para></listitem>
+ <listitem><para>Optional <emphasis><property>"cycled"</property></emphasis> mode of scrolling values</para></listitem>
+ <listitem><para>Optional manual/controls-only input into a value text field</para></listitem>
+ <listitem><para>Validation of manual input</para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -97,30 +97,30 @@
</figure>
<para>There are also several attributes to define functionality peculiarities:</para>
<itemizedlist>
- <listitem>
+ <listitem><para>
<emphasis>
<property>"cycled"</property>
</emphasis> if the attribute is <emphasis><property>"true"</property></emphasis> after the current value reaches the
border value it's be reversed to another border value after next increasing/decreasing. In
- other case possibilities of next increasing/decreasing are locked </listitem>
- <listitem>
+ other case possibilities of next increasing/decreasing are locked </para></listitem>
+ <listitem><para>
<emphasis>
<property>"disabled"</property>
- </emphasis> is an attribute that defines whether a component is active on a page </listitem>
- <listitem>
+ </emphasis> is an attribute that defines whether a component is active on a page </para></listitem>
+ <listitem><para>
<emphasis>
<property>"manualInput"</property>
</emphasis> is an attribute that defines whether a keyboard input is possible or only UI
- controls could be used</listitem>
+ controls could be used</para></listitem>
</itemizedlist>
<para>Moreover, to add e.g. some JavaScript effects, events defined on it are used</para>
<itemizedlist>
- <listitem> onchange </listitem>
- <listitem> onmouseover </listitem>
- <listitem> onclick </listitem>
- <listitem> onfocus </listitem>
- <listitem> onmouseout </listitem>
- <listitem> etc. </listitem>
+ <listitem><para> onchange </para></listitem>
+ <listitem><para> onmouseover </para></listitem>
+ <listitem><para> onclick </para></listitem>
+ <listitem><para> onfocus </para></listitem>
+ <listitem><para> onmouseout </para></listitem>
+ <listitem><para> etc. </para></listitem>
</itemizedlist>
<para>
The <emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/insert.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/insert.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/insert.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -14,8 +14,8 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Source code highlighting</listitem>
- <listitem>Variety of formats for source code highlighting</listitem>
+ <listitem><para>Source code highlighting</para></listitem>
+ <listitem><para>Variety of formats for source code highlighting</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/insert.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/insert.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/insert.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -98,10 +98,11 @@
<programlisting role="XML"><![CDATA[...
<rich:insert src="/pages/sourcePage.xhtml" highlight="xhtml"/>
...]]></programlisting>
- <figure>
+
<para>The result of using <emphasis role="bold">
<property><rich:insert></property>
- </emphasis> component is shown on the picture:</para>
+ </emphasis> component is shown on the picture:</para>
+ <figure>
<title>Source code highlighting</title>
<mediaobject>
<imageobject>
Modified: trunk/docs/userguide/en/src/main/docbook/included/jQuery.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/jQuery.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/jQuery.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -20,9 +20,9 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Presents jQuery JavaScript framework functionality</listitem>
- <listitem>Able to apply onto JSF components and other DOM objects.</listitem>
- <listitem>Works without conflicts with prototype.js library</listitem>
+ <listitem><para>Presents jQuery JavaScript framework functionality</para></listitem>
+ <listitem><para>Able to apply onto JSF components and other DOM objects.</para></listitem>
+ <listitem><para>Works without conflicts with prototype.js library</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/jQuery.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/jQuery.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/jQuery.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -84,18 +84,18 @@
<property><rich:jQuery></property>
</emphasis> can be used in two main modes:</para>
<itemizedlist>
- <listitem>as a one-time query applied immediately or on a document ready event</listitem>
- <listitem>as a JavaScript function that can be invoked from the JavaScript code</listitem>
+ <listitem><para>as a one-time query applied immediately or on a document ready event</para></listitem>
+ <listitem><para>as a JavaScript function that can be invoked from the JavaScript code</para></listitem>
</itemizedlist>
<para>The mode is chosen with <emphasis>
<property>"timing"</property>
</emphasis> attribute that has the following options:</para>
<itemizedlist>
- <listitem>immediate - applying a query immediately</listitem>
- <listitem>onload - applying a query when a document is loaded</listitem>
- <listitem>onJScall - applying a query by invoked JavaScript function defined with the <emphasis>
+ <listitem><para>immediate - applying a query immediately</para></listitem>
+ <listitem><para>onload - applying a query when a document is loaded</para></listitem>
+ <listitem><para>onJScall - applying a query by invoked JavaScript function defined with the <emphasis>
<property>"name"</property>
- </emphasis> attribute</listitem>
+ </emphasis> attribute</para></listitem>
</itemizedlist>
<para>Definition of the <emphasis>
<property>"name"</property>
@@ -136,7 +136,7 @@
<property>"selector"</property>
</emphasis> attribute uses defined by w3c consortium syntax for CSS rule <ulink
url="http://www.w3.org/TR/REC-CSS2/selector.html">selector</ulink> with some jQuery
- extensions </para>.
+ extensions </para>
<para>Those are typical examples of using selector in the <emphasis role="bold">
<property><rich:jQuery></property>
</emphasis> component.</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -24,10 +24,10 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Highly customizable look and feel</listitem>
- <listitem>Reordering possibility for lists items</listitem>
- <listitem>Multiple selection of lists items</listitem>
- <listitem>Keyboard support</listitem>
+ <listitem><para>Highly customizable look and feel</para></listitem>
+ <listitem><para>Reordering possibility for lists items</para></listitem>
+ <listitem><para>Multiple selection of lists items</para></listitem>
+ <listitem><para>Keyboard support</para></listitem>
<!--listitem> Built-In Drag-and-Drop support</listitem-->
</itemizedlist>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/listShuttle.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/listShuttle.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/listShuttle.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -38,13 +38,13 @@
<para>The <emphasis role="bold">
<property><rich:listShuttle></property>
</emphasis> component consists of the following parts: <itemizedlist>
- <listitem>two <property>item lists</property> (source and target). List consists of
- items. Each item has three different representations: common, selected, active</listitem>
- <listitem>optional <property>caption</property> element</listitem>
- <listitem><property>optional ordering controls set</property> is a set of controls
- that performs reordering</listitem>
- <listitem><property>move controls set</property> is a set of controls, which
- performs moving items between lists</listitem>
+ <listitem><para>two <property>item lists</property> (source and target). List consists of
+ items. Each item has three different representations: common, selected, active</para></listitem>
+ <listitem><para>optional <property>caption</property> element</para></listitem>
+ <listitem><para><property>optional ordering controls set</property> is a set of controls
+ that performs reordering</para></listitem>
+ <listitem><para><property>move controls set</property> is a set of controls, which
+ performs moving items between lists</para></listitem>
</itemizedlist>
</para>
<para> The <emphasis>
@@ -440,10 +440,10 @@
<para>There are two ways to redefine the appearance of all <emphasis role="bold">
<property><rich:listShuttle></property>
</emphasis> components at once: <itemizedlist>
- <listitem>Redefine the corresponding skin parameters</listitem>
- <listitem> Add to your style sheets style classes used by a <emphasis role="bold">
+ <listitem><para>Redefine the corresponding skin parameters</para></listitem>
+ <listitem><para> Add to your style sheets style classes used by a <emphasis role="bold">
<property><rich:listShuttle></property>
- </emphasis> component</listitem>
+ </emphasis> component</para></listitem>
</itemizedlist>
</para>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/mediaOutput.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/mediaOutput.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/mediaOutput.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -83,14 +83,14 @@
]]></programlisting>
<para>As it was shown in the example above there are two main components:</para>
<itemizedlist>
- <listitem>
+ <listitem><para>
<emphasis><property> "createContent" </property></emphasis>specifies a method accepting 2 parameters. The first (of java.io.OutputStream type) defines a stream, where any binary data is output. The second (of java.lang.Object type) contains deserialized object with data specified in the <emphasis >
<property>"value"</property>
</emphasis> attribute.
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
Value specifies a bean class keeping data for transmitting into a method that transmits it into a stream.
- </listitem>
+ </para></listitem>
</itemizedlist>
<note><title>Note:</title><para>A bean class transmitted into value should implement Serializable interface.
</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/message.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/message.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/message.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -20,12 +20,12 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Highly customizable look and feel </listitem>
- <listitem>Tracking both traditional and Ajax based requests</listitem>
- <listitem>Optional toolTip to display the detail portion of the message</listitem>
- <listitem>Additionally customizable with attributes and facets</listitem>
- <listitem>Additionally provides two parts to be optionally defined: marker and
- label</listitem>
+ <listitem><para>Highly customizable look and feel </para></listitem>
+ <listitem><para>Tracking both traditional and Ajax based requests</para></listitem>
+ <listitem><para>Optional toolTip to display the detail portion of the message</para></listitem>
+ <listitem><para>Additionally customizable with attributes and facets</para></listitem>
+ <listitem><para>Additionally provides two parts to be optionally defined: marker and
+ label</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/message.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/message.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/message.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -74,24 +74,24 @@
<para> The component has the same behavior as standard <emphasis role="bold">
<property><h:message></property>
</emphasis>component except next two features: <itemizedlist>
- <listitem>It's ajaxRendered. It means that the component is reRendered after Ajax request
- automatically without outputPanel usage</listitem>
- <listitem>The component optionally provides "passed" state which will be shown if no message is displayed</listitem>
- <listitem>Provides possibility to add some marker to message. By default a marker element
- isn't shown</listitem>
+ <listitem><para>It's ajaxRendered. It means that the component is reRendered after Ajax request
+ automatically without outputPanel usage</para></listitem>
+ <listitem><para>The component optionally provides "passed" state which will be shown if no message is displayed</para></listitem>
+ <listitem><para>Provides possibility to add some marker to message. By default a marker element
+ isn't shown</para></listitem>
</itemizedlist>
</para>
<para> A set of facets which can be used for marker defining: <itemizedlist>
- <listitem>passedMarker. This facet is provided to allow setting a marker to display if
- there is no message</listitem>
- <listitem>errorMarker. This facet is provided to allow setting a marker to display if there
- is a message with a severity class of "ERROR"</listitem>
- <listitem>fatalMarker. This facet is provided to allow setting a marker to display if there
- is a message with a severity class of "FATAL"</listitem>
- <listitem>infoMarker. This facet is provided to allow setting a marker to display if there
- is a message with a severity class of "INFO"</listitem>
- <listitem>warnMarker. This facet is provided to allow setting a marker to display if there
- is a message with a severity class of "WARN"</listitem>
+ <listitem><para>passedMarker. This facet is provided to allow setting a marker to display if
+ there is no message</para></listitem>
+ <listitem><para>errorMarker. This facet is provided to allow setting a marker to display if there
+ is a message with a severity class of "ERROR"</para></listitem>
+ <listitem><para>fatalMarker. This facet is provided to allow setting a marker to display if there
+ is a message with a severity class of "FATAL"</para></listitem>
+ <listitem><para>infoMarker. This facet is provided to allow setting a marker to display if there
+ is a message with a severity class of "INFO"</para></listitem>
+ <listitem><para>warnMarker. This facet is provided to allow setting a marker to display if there
+ is a message with a severity class of "WARN"</para></listitem>
</itemizedlist>
</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/messages.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/messages.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/messages.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -24,11 +24,11 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Highly customizable look and feel</listitem>
- <listitem>Track both traditional and Ajax based requests</listitem>
- <listitem>Optional ToolTip to display a detailed part of the messages</listitem>
- <listitem>Additionally customizable via attributes and facets</listitem>
- <listitem>Additionally provides of three parts to be optionally defined: marker, label and header</listitem>
+ <listitem><para>Highly customizable look and feel</para></listitem>
+ <listitem><para>Track both traditional and Ajax based requests</para></listitem>
+ <listitem><para>Optional ToolTip to display a detailed part of the messages</para></listitem>
+ <listitem><para>Additionally customizable via attributes and facets</para></listitem>
+ <listitem><para>Additionally provides of three parts to be optionally defined: marker, label and header</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/messages.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/messages.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/messages.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -74,22 +74,22 @@
<para> The component has the same behavior as standard <emphasis role="bold">
<property><h:message></property>
</emphasis>component except next features: <itemizedlist>
- <listitem>It's ajaxRendered. It means that the component is reRendered after Ajax
- request automatically without outputPanel usage.</listitem>
- <listitem>The component optionally provides "passed" state which will be
- shown if no message to be displayed.</listitem>
- <listitem>Provides possibility to add some marker to message. By default, a marker element
- isn't shown.</listitem>
+ <listitem><para>It's ajaxRendered. It means that the component is reRendered after Ajax
+ request automatically without outputPanel usage.</para></listitem>
+ <listitem><para>The component optionally provides "passed" state which will be
+ shown if no message to be displayed.</para></listitem>
+ <listitem><para>Provides possibility to add some marker to message. By default, a marker element
+ isn't shown.</para></listitem>
</itemizedlist>
</para>
<para>The component provides two parts to be optionally defined: marker and informational label
before the marker for every message.</para>
<para> Set of facet which can be used for a marker defining: <itemizedlist>
- <listitem>passedMarker. This facet is provided to allow setting a marker to be displayed if there is no message.</listitem>
- <listitem>errorMarker. This facet is provided to allow setting a marker to be displayed if there is a message with a severity class of "ERROR".</listitem>
- <listitem>fatalMarker. This facet is provided to allow setting a marker to be displayed if there is a message with a severity class of "FATAL".</listitem>
- <listitem>infoMarker. This facet is provided to allow setting a marker to be displayed if there is a message with a severity class of "INFO".</listitem>
- <listitem>warnMarker. This facet is provided to allow setting a marker to be displayed if there is an message with a severity class of "WARN".</listitem>
+ <listitem><para>passedMarker. This facet is provided to allow setting a marker to be displayed if there is no message.</para></listitem>
+ <listitem><para>errorMarker. This facet is provided to allow setting a marker to be displayed if there is a message with a severity class of "ERROR".</para></listitem>
+ <listitem><para>fatalMarker. This facet is provided to allow setting a marker to be displayed if there is a message with a severity class of "FATAL".</para></listitem>
+ <listitem><para>infoMarker. This facet is provided to allow setting a marker to be displayed if there is a message with a severity class of "INFO".</para></listitem>
+ <listitem><para>warnMarker. This facet is provided to allow setting a marker to be displayed if there is an message with a severity class of "WARN".</para></listitem>
</itemizedlist>
</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/modalPanel.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/modalPanel.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/modalPanel.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -28,10 +28,10 @@
<title>Key Features</title>
<itemizedlist>
- <listitem>Highly customizable look and feel</listitem>
- <listitem>Support of draggable operations and size changes by you</listitem>
- <listitem>Easy positioning for the modal dialog window</listitem>
- <listitem>Possibility to restore of the previous component state on a page (including position on the screen) after submitting and reloading</listitem>
+ <listitem><para>Highly customizable look and feel</para></listitem>
+ <listitem><para>Support of draggable operations and size changes by you</para></listitem>
+ <listitem><para>Easy positioning for the modal dialog window</para></listitem>
+ <listitem><para>Possibility to restore of the previous component state on a page (including position on the screen) after submitting and reloading</para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/modalPanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/modalPanel.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/modalPanel.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -252,7 +252,7 @@
attributes like <emphasis><property>"showWhenRendered"</property></emphasis> and <emphasis><property>"keepVisualState"</property></emphasis>. </para>
<para> <emphasis><property>"showWhenRendered"</property></emphasis> - This boolean attribute is used if modalPanel should be rendered after
first page loading. </para>
- <para><emphasis><property><emphasis><property> "keepVisualState"</property></emphasis> </property></emphasis>- Used if modalPanel should save state after submission. If
+ <para><emphasis><property> "keepVisualState"</property></emphasis> - Used if modalPanel should save state after submission. If
<emphasis><property> "keepVisualState"</property></emphasis>=true then parameters which modalPanel has during opening should be submitted
and passed to new page. </para>
@@ -268,10 +268,10 @@
modalPanel destination and height on new loaded page is restored. </para>
<para>if you need the content of the modalPanel to be submitted - you need to remember two important rules: </para>
<itemizedlist>
- <listitem>modalPanel must have its own form if it has form elements (input or/and command
- components) inside (as it was shown in the example above) </listitem>
- <listitem>modalPanel must not be included into the form (on any level up) if it has the
- form inside.</listitem>
+ <listitem><para>modalPanel must have its own form if it has form elements (input or/and command
+ components) inside (as it was shown in the example above) </para></listitem>
+ <listitem><para>modalPanel must not be included into the form (on any level up) if it has the
+ form inside.</para></listitem>
</itemizedlist>
<para>Simple example of using commandButton within modalPanel is placed below.</para>
<para><emphasis role="bold">Example:</emphasis></para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -16,7 +16,7 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Allows to define some "nodeSelect" listeners for the component</listitem>
+ <listitem><para>Allows to define some "nodeSelect" listeners for the component</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/orderingList.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/orderingList.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/orderingList.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -25,16 +25,16 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Highly customizable look and feel</listitem>
- <listitem>Reordering possibility for list items</listitem>
+ <listitem><para>Highly customizable look and feel</para></listitem>
+ <listitem><para>Reordering possibility for list items</para></listitem>
<!--listitem>Customizable component layout (captions, headers, list items and ordering control set)</listitem-->
<!--listitem>Disabled/enabled ordering controls</listitem-->
- <listitem>Multiple selection of list items</listitem>
- <listitem>Keyboard support</listitem>
+ <listitem><para>Multiple selection of list items</para></listitem>
+ <listitem><para>Keyboard support</para></listitem>
<!--listitem>Possibility to manage selection from
<itemizedlist>
- <listitem>Keyboard</listitem>
- <listitem>Server side</listitem>
+ <listitem><para>Keyboard</para></listitem>
+ <listitem><para>Server side</para></listitem>
</itemizedlist>
</listitem-->
</itemizedlist>
Modified: trunk/docs/userguide/en/src/main/docbook/included/orderingList.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/orderingList.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/orderingList.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -78,12 +78,12 @@
<para>The <emphasis role="bold">
<property><rich:orderingList></property>
</emphasis> component consists of <itemizedlist>
- <listitem><property>Item list</property> element that displays a list of items. It
+ <listitem><para><property>Item list</property> element that displays a list of items. It
has three different representations for a single element: common, selected,
- active. Combination of these states is possible.</listitem>
- <listitem>
+ active. Combination of these states is possible.</para></listitem>
+ <listitem><para>
<property>Ordering controls set</property>
- </listitem>
+ </para></listitem>
</itemizedlist>
</para>
@@ -228,35 +228,35 @@
<emphasis>
<property>"controlsPosition"</property>
</emphasis> attribute. Possible values: <itemizedlist>
- <listitem>left - controls could be rendered to the left side of a list</listitem>
- <listitem>right(default) - controls could be rendered to the right side of a
- list </listitem>
- <listitem>top - controls could be rendered above the list </listitem>
- <listitem>bottom - controls could be rendered below the list </listitem>
+ <listitem><para>left - controls could be rendered to the left side of a list</para></listitem>
+ <listitem><para>right(default) - controls could be rendered to the right side of a
+ list </para></listitem>
+ <listitem><para>top - controls could be rendered above the list </para></listitem>
+ <listitem><para>bottom - controls could be rendered below the list </para></listitem>
</itemizedlist>
</listitem-->
- <listitem><emphasis>
+ <listitem><para><emphasis>
<property> "controlsHorizontalAlign"</property>
</emphasis> attribute. Possible values: <itemizedlist>
- <listitem>left - controls render to the left side of a list</listitem>
- <listitem>right(default) - controls render to the right side of a list</listitem>
- <listitem>center - controls is centered</listitem>
+ <listitem><para>left - controls render to the left side of a list</para></listitem>
+ <listitem><para>right(default) - controls render to the right side of a list</para></listitem>
+ <listitem><para>center - controls is centered</para></listitem>
</itemizedlist>
- </listitem>
- <listitem><emphasis>
+ </para></listitem>
+ <listitem><para><emphasis>
<property> "controlsVerticalAlign"</property>
</emphasis> attribute. Possible values: <itemizedlist>
- <listitem>top - controls render aligned to the top side of a list </listitem>
- <listitem>bottom - controls render aligned to the bottom side of a list </listitem>
- <listitem>center(default) - controls is centered relatively to a list
- </listitem>
+ <listitem><para>top - controls render aligned to the top side of a list </para></listitem>
+ <listitem><para>bottom - controls render aligned to the bottom side of a list </para></listitem>
+ <listitem><para>center(default) - controls is centered relatively to a list
+ </para></listitem>
</itemizedlist>
- </listitem>
+ </para></listitem>
<!--listitem><emphasis>
<property>"controlsLayout"</property>
</emphasis> attribute. Possible values: <itemizedlist>
- <listitem>inline - controls defined one by one in line </listitem>
- <listitem>block - controls defined in column </listitem>
+ <listitem><para>inline - controls defined one by one in line </para></listitem>
+ <listitem><para>block - controls defined in column </para></listitem>
</itemizedlist>
</listitem-->
</itemizedlist>
@@ -266,18 +266,18 @@
<property><rich:orderingList></property>
</emphasis> component has a possibility to hide any of the controls by pairs using
following attributes: <itemizedlist>
- <listitem>
+ <listitem><para>
<emphasis>
<property>"orderControlsVisible"</property>
</emphasis> attribute has two values: true or false. If false
<property>Up</property> and <property>Down</property> controls are not
- displayed.</listitem>
- <listitem>
+ displayed.</para></listitem>
+ <listitem><para>
<emphasis>
<property>"fastOrderControlsVisible"</property>
</emphasis> attribute has two values: true or false. If false
<property>Top</property> and <property>Bottom</property> controls are not
- displayed.</listitem>
+ displayed.</para></listitem>
</itemizedlist>
</para>
<para>
@@ -472,10 +472,10 @@
<para>There are two ways to redefine the appearance of all <emphasis role="bold">
<property><rich:orderingList></property>
</emphasis> components at once: <itemizedlist>
- <listitem>Redefine the corresponding skin parameters</listitem>
- <listitem> Add to your style sheets style classes used by a <emphasis role="bold">
+ <listitem><para>Redefine the corresponding skin parameters</para></listitem>
+ <listitem><para> Add to your style sheets style classes used by a <emphasis role="bold">
<property><rich:orderingList></property>
- </emphasis> component</listitem>
+ </emphasis> component</para></listitem>
</itemizedlist>
</para>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/outputPanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/outputPanel.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/outputPanel.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -93,15 +93,15 @@
<property><a4j:outputPanel></property>
</emphasis> is output as a pair of opening and closing html <emphasis role="bold"><property><span></property></emphasis> tag, but with the help of the layout attribute this output way could be changed. There are three variants for this component value:</para>
<itemizedlist>
- <listitem>
+ <listitem><para>
inline (default)
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
block
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
none
- </listitem>
+ </para></listitem>
</itemizedlist>
<para>If <emphasis><property> "layout" </property></emphasis>=<property>"block"</property> is chosen, the component is rendered as a pair of opening and closing <emphasis role="bold"><property><div></property></emphasis> tag, to which it's possible to apply any available style attributes available for block tags. </para>
<para><emphasis><property> "layout" </property></emphasis>=<property>"none"</property> helps to avoid an unnecessary tag round a context that could or couldn't be rendered according to the defined <emphasis><property>"rendered"</property></emphasis> attribute conditions. If an inner context isn’t rendered, <emphasis role="bold">
Modified: trunk/docs/userguide/en/src/main/docbook/included/paint2D.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/paint2D.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/paint2D.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -21,13 +21,13 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Simple Graphics2D - painting style directly on the Web page</listitem>
- <listitem>Supports client/server caching for generated images</listitem>
- <listitem>Fully supports <emphasis><property>"JPEG"</property></emphasis> (24-bit, default), <emphasis><property>"GIF"</property></emphasis> (8-bit with
+ <listitem><para>Simple Graphics2D - painting style directly on the Web page</para></listitem>
+ <listitem><para>Supports client/server caching for generated images</para></listitem>
+ <listitem><para>Fully supports <emphasis><property>"JPEG"</property></emphasis> (24-bit, default), <emphasis><property>"GIF"</property></emphasis> (8-bit with
transparency), and <emphasis><property>"PNG"</property></emphasis> (32-bit with transparency)
- formats for sending generated images</listitem>
- <listitem>Easily customizable borders and white space to wrap the image</listitem>
- <listitem>Dynamically settable paint parameters using tag attributes</listitem>
+ formats for sending generated images</para></listitem>
+ <listitem><para>Easily customizable borders and white space to wrap the image</para></listitem>
+ <listitem><para>Dynamically settable paint parameters using tag attributes</para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/panel.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panel.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/panel.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -21,9 +21,9 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Highly customizable look and feel </listitem>
- <listitem>Support for any content inside</listitem>
- <listitem>Header adding feature</listitem>
+ <listitem><para>Highly customizable look and feel </para></listitem>
+ <listitem><para>Support for any content inside</para></listitem>
+ <listitem><para>Header adding feature</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panel.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/panel.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -74,8 +74,10 @@
<title>Details of Usage</title>
<para>The <emphasis ><property>"header"</property></emphasis > attribute defines text to be represented. If you can use the
<emphasis ><property>"header"</property></emphasis > facet, you can even not use the <emphasis ><property>"header"</property></emphasis > attribute.</para>
+ <para>
<emphasis role="bold">Example:</emphasis>
- <programlisting role="XML"><![CDATA[...
+ </para>
+ <programlisting role="XML"><![CDATA[...
<rich:panel>
<f:facet name="header">
<h:graphicImage value="/images/img1.png"/>
@@ -111,8 +113,7 @@
</imageobject>
</mediaobject>
</figure>
- </section>
- <section>
+
<para>The example shows that similar rectangular areas are formed with a particular style.</para>
<para>When creating a <property>panel</property> with a header element, one more <emphasis
role="bold">
@@ -144,16 +145,16 @@
<para>As it has been mentioned <link linkend="panel">above</link>, the component is mostly used for a page style definition,
hence the main attributes are style ones.</para>
<itemizedlist>
- <listitem><emphasis><property> "styleClass" </property></emphasis>and "style" </listitem>
- <listitem><emphasis><property> "headerClass" </property></emphasis>and<emphasis><property> "headerStyle" </property></emphasis></listitem>
- <listitem><emphasis><property> "bodyClass" </property></emphasis>and<emphasis><property> "bodyStyle" </property></emphasis></listitem>
+ <listitem><para><emphasis><property> "styleClass" </property></emphasis>and "style" </para></listitem>
+ <listitem><para><emphasis><property> "headerClass" </property></emphasis>and<emphasis><property> "headerStyle" </property></emphasis></para></listitem>
+ <listitem><para><emphasis><property> "bodyClass" </property></emphasis>and<emphasis><property> "bodyStyle" </property></emphasis></para></listitem>
</itemizedlist>
<para>Moreover, to add e.g. some JavaScript effects, events defined on it are used.</para>
<itemizedlist>
- <listitem> "onmouseover" </listitem>
- <listitem> "onclick" </listitem>
- <listitem> "onmouseout" </listitem>
- <listitem> etc. </listitem>
+ <listitem><para> "onmouseover" </para></listitem>
+ <listitem><para> "onclick" </para></listitem>
+ <listitem><para> "onmouseout" </para></listitem>
+ <listitem><para> etc. </para></listitem>
</itemizedlist>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelBar.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelBar.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelBar.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -21,8 +21,8 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Skinnable slide panel and child items</listitem>
- <listitem>Groups any content inside each panel</listitem>
+ <listitem><para>Skinnable slide panel and child items</para></listitem>
+ <listitem><para>Groups any content inside each panel</para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -22,8 +22,8 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Highly customizable look and feel </listitem>
- <listitem>Groups any content inside each Panels</listitem>
+ <listitem><para>Highly customizable look and feel </para></listitem>
+ <listitem><para>Groups any content inside each Panels</para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -82,7 +82,9 @@
</emphasis> facet, you can even not use the <emphasis>
<property>"label"</property>
</emphasis> attribute.</para>
+ <para>
<emphasis role="bold">Example:</emphasis>
+ </para>
<programlisting role="XML"><![CDATA[...
<rich:panelBarItem...>
<f:facet name="label">
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenu.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenu.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenu.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -24,11 +24,11 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Highly customizable look and feel</listitem>
- <listitem>Different submission modes</listitem>
- <listitem>Collapsing/expanding sublevels with optional request sending</listitem>
- <listitem>Custom and predefined icons support</listitem>
- <listitem>Disablement support</listitem>
+ <listitem><para>Highly customizable look and feel</para></listitem>
+ <listitem><para>Different submission modes</para></listitem>
+ <listitem><para>Collapsing/expanding sublevels with optional request sending</para></listitem>
+ <listitem><para>Custom and predefined icons support</para></listitem>
+ <listitem><para>Disablement support</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -22,11 +22,11 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Highly customizable look-and-feel</listitem>
- <listitem>Different submission modes inside every group</listitem>
- <listitem>Optional submissions on expand collapse groups</listitem>
- <listitem>Custom and predefined icons supported</listitem>
- <listitem>Support for disabling</listitem>
+ <listitem><para>Highly customizable look-and-feel</para></listitem>
+ <listitem><para>Different submission modes inside every group</para></listitem>
+ <listitem><para>Optional submissions on expand collapse groups</para></listitem>
+ <listitem><para>Custom and predefined icons supported</para></listitem>
+ <listitem><para>Support for disabling</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -24,11 +24,11 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Highly customizable look-and-feel</listitem>
- <listitem>Different submission modes</listitem>
- <listitem>Optionally supports any content inside</listitem>
- <listitem>Custom and predefined icons supported</listitem>
- <listitem>Support for disabling</listitem>
+ <listitem><para>Highly customizable look-and-feel</para></listitem>
+ <listitem><para>Different submission modes</para></listitem>
+ <listitem><para>Optionally supports any content inside</para></listitem>
+ <listitem><para>Custom and predefined icons supported</para></listitem>
+ <listitem><para>Support for disabling</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/pickList.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/pickList.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/pickList.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -71,11 +71,11 @@
<para>The <emphasis role="bold">
<property><rich:pickList></property>
</emphasis> component consists of <itemizedlist>
- <listitem>2 <property>item lists</property>. Every item has three different representations: common, selected, active.
- Combination of these states is possible.</listitem>
- <listitem>
+ <listitem><para>2 <property>item lists</property>. Every item has three different representations: common, selected, active.
+ Combination of these states is possible.</para></listitem>
+ <listitem><para>
<property>Move controls set</property> is a set of controls, which performs moving items between lists.
- </listitem>
+ </para></listitem>
</itemizedlist>
</para>
@@ -142,21 +142,21 @@
<property><rich:pickList></property></emphasis>
component provides resizing of lists by using such attributes as:
<itemizedlist>
- <listitem>
+ <listitem><para>
<emphasis>
<property> "listsHeight"</property></emphasis> defines height of the lists.
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
<emphasis>
<property> "sourceListWidth"</property></emphasis> defines width of a source list.
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
<emphasis>
<property> "targetListWidth"</property></emphasis> defines width of a target list.
- </listitem>
+ </para></listitem>
</itemizedlist>
</para>
<para>
@@ -305,10 +305,10 @@
<para>There are two ways to redefine the appearance of all <emphasis role="bold">
<property><rich:pickList></property>
</emphasis> components at once: <itemizedlist>
- <listitem>Redefine the corresponding skin parameters</listitem>
- <listitem> Add to your style sheets style classes used by a <emphasis role="bold">
+ <listitem><para>Redefine the corresponding skin parameters</para></listitem>
+ <listitem><para> Add to your style sheets style classes used by a <emphasis role="bold">
<property><rich:pickList></property>
- </emphasis> component</listitem>
+ </emphasis> component</para></listitem>
</itemizedlist>
</para>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/progressBar.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/progressBar.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/progressBar.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -280,13 +280,13 @@
<itemizedlist>
<listitem>
- <para><property><emphasis><property>{value}</property></emphasis></property> contains the current value</para>
+ <para><emphasis><property>{value}</property></emphasis> contains the current value</para>
</listitem>
<listitem>
- <para><property><emphasis><property>{minValue}</property></emphasis></property> contains min value</para>
+ <para><emphasis><property>{minValue}</property></emphasis> contains min value</para>
</listitem>
<listitem>
- <para><property><emphasis><property>{maxValue}</property></emphasis></property> contains max value</para>
+ <para><emphasis><property>{maxValue}</property></emphasis> contains max value</para>
</listitem>
</itemizedlist>
@@ -442,10 +442,10 @@
<para>There are two ways to redefine the appearance of all <emphasis role="bold">
<property><rich:progressBar></property>
</emphasis> components at once: <itemizedlist>
- <listitem>Redefine the corresponding skin parameters</listitem>
- <listitem> Add to your style sheets style classes used by a <emphasis role="bold">
+ <listitem><para>Redefine the corresponding skin parameters</para></listitem>
+ <listitem><para> Add to your style sheets style classes used by a <emphasis role="bold">
<property><rich:progressBar></property>
- </emphasis> component</listitem>
+ </emphasis> component</para></listitem>
</itemizedlist>
</para>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/region.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/region.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/region.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -57,14 +57,14 @@
<para>The region is a component used for manipulation with components sent to the server. It sets particular processing parameters for an area on the server, i.e. the region deals with data input on the server and has no direct impact on output. To read more on the components responsible for out, see "reference" <ulink url="http://java.sun.com/javaee/javaserverfaces/reference/index.html">here</ulink>.
</para>
<para>The region marks an area page that is decoded on the server. In most cases it is not necessary to use the region, as ViewRoot is a default region. This component helps to reduce data quantity processed by the server, but the region doesn't influence on the standard submission rules. It means that:<itemizedlist>
- <listitem>
+ <listitem><para>
The area that is to be submitted onto the server should be embedded in <emphasis role="bold">
<property><h:form></property>/<property><a4j:form></property>
</emphasis> component.
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
The whole form is submitted on Ajax response and not a region that request is performed from.
- </listitem>
+ </para></listitem>
</itemizedlist></para>
<para><emphasis role="bold">Example:</emphasis></para>
<programlisting role="XML"><![CDATA[<h:form id="form1">
Modified: trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -25,15 +25,15 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Highly customizable look and feel</listitem>
- <listitem>Variable content of the table cells</listitem>
- <listitem>Dynamically fetching the rows from the server when the table is scrolled up and down</listitem>
- <listitem>Resizing columns by mouse dragging the column bar</listitem>
- <listitem>Sorting column by clicking the header</listitem>
- <listitem>Fixed one or more left columns when table is scrolled horizontally</listitem>
- <listitem>One and multi-selection rows mode</listitem>
- <listitem>Built-it drag-n-drop support</listitem>
- <listitem><link linkend="sortAndFilter">Sorting column values</link></listitem>
+ <listitem><para>Highly customizable look and feel</para></listitem>
+ <listitem><para>Variable content of the table cells</para></listitem>
+ <listitem><para>Dynamically fetching the rows from the server when the table is scrolled up and down</para></listitem>
+ <listitem><para>Resizing columns by mouse dragging the column bar</para></listitem>
+ <listitem><para>Sorting column by clicking the header</para></listitem>
+ <listitem><para>Fixed one or more left columns when table is scrolled horizontally</para></listitem>
+ <listitem><para>One and multi-selection rows mode</para></listitem>
+ <listitem><para>Built-it drag-n-drop support</para></listitem>
+ <listitem><para><link linkend="sortAndFilter">Sorting column values</link></para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -84,16 +84,16 @@
<para> It's possible to select the whole row with onclick on the row or some set of rows.
Selection is optional and availability of such feature is defined on the component. There are
two ways to select a few rows: <itemizedlist>
- <listitem>Just clicking the columns one by one.</listitem>
- <listitem>Clicking some row with the SHIFT button hold. In this case all the rows starting
- from last selected up to clicked should be selected.</listitem>
+ <listitem><para>Just clicking the columns one by one.</para></listitem>
+ <listitem><para>Clicking some row with the SHIFT button hold. In this case all the rows starting
+ from last selected up to clicked should be selected.</para></listitem>
</itemizedlist>
</para>
<para> The columns provides the possibility of expanding/collapsing on the client side through
the next JS API: <itemizedlist>
- <listitem>Collapse(columnId) - Performs the collapse action for the column with the
- corresponding id</listitem>
+ <listitem><para>Collapse(columnId) - Performs the collapse action for the column with the
+ corresponding id</para></listitem>
</itemizedlist> It's possible to sort the table content after clicks on the header. The
feature is optional. Every column should be pointed to the comparator method that is used
for sorting the table. In case the
@@ -199,12 +199,12 @@
<para> The <emphasis role="bold">
<property><rich:scrollableDataTable></property>
</emphasis> component has the following extra attributes for event processing on the client: <itemizedlist>
- <listitem>onselectionchange</listitem>
- <listitem>oncomplete</listitem>
- <listitem>onRowClick</listitem>
- <listitem>onRowDblClick</listitem>
- <listitem>onRowMouseUp</listitem>
- <listitem>onRowMouseDown</listitem>
+ <listitem><para>onselectionchange</para></listitem>
+ <listitem><para>oncomplete</para></listitem>
+ <listitem><para>onRowClick</para></listitem>
+ <listitem><para>onRowDblClick</para></listitem>
+ <listitem><para>onRowMouseUp</para></listitem>
+ <listitem><para>onRowMouseDown</para></listitem>
</itemizedlist>
</para>
<para>Information about sorting and filtering you can find <link linkend="sortAndFilter">here</link>.</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/separator.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/separator.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/separator.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -21,8 +21,8 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Highly customizable look and feel </listitem>
- <listitem>Leveraging layout elements creation</listitem>
+ <listitem><para>Highly customizable look and feel </para></listitem>
+ <listitem><para>Leveraging layout elements creation</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/separator.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/separator.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/separator.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -100,10 +100,10 @@
<para>Except style attributes, there are also event definition attributes.</para>
<itemizedlist>
- <listitem> onmouseover </listitem>
- <listitem> onclick </listitem>
- <listitem> onmouseout </listitem>
- <listitem> etc. </listitem>
+ <listitem><para> onmouseover </para></listitem>
+ <listitem><para> onclick </para></listitem>
+ <listitem><para> onmouseout </para></listitem>
+ <listitem><para> etc. </para></listitem>
</itemizedlist>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -20,14 +20,14 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Highly customizable look and feel </listitem>
- <listitem>Support for any content inside</listitem>
- <listitem>Collapsing expanding content</listitem>
- <listitem>Three modes of collapsing/expanding
+ <listitem><para>Highly customizable look and feel </para></listitem>
+ <listitem><para>Support for any content inside</para></listitem>
+ <listitem><para>Collapsing expanding content</para></listitem>
+ <listitem><para>Three modes of collapsing/expanding</para>
<itemizedlist>
- <listitem>Server</listitem>
- <listitem>Client</listitem>
- <listitem>Ajax</listitem>
+ <listitem><para>Server</para></listitem>
+ <listitem><para>Client</para></listitem>
+ <listitem><para>Ajax</para></listitem>
</itemizedlist>
</listitem>
</itemizedlist>
Modified: trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -79,17 +79,17 @@
<property>"switchType"</property>
</emphasis> attribute with three possible parameters.</para>
<itemizedlist>
- <listitem> Server (DEFAULT)<para>The common submission is performed around
+ <listitem><para> Server (DEFAULT)</para><para>The common submission is performed around
<property>simpleTogglePanel</property> and a page is completely rendered on a called
panel. Only one at a time panel is uploaded onto the client side.</para>
</listitem>
- <listitem> Ajax<para>AJAX form submission is performed around the panel, content of the called
+ <listitem><para> Ajax</para><para>AJAX form submission is performed around the panel, content of the called
panel is uploaded on Ajax request and additionally specified elements in the <emphasis>
<property>"reRender"</property>
</emphasis> attribute are rendered. Only one at a time panel is uploaded on the client
side.</para>
</listitem>
- <listitem> Client<para> All panels are uploaded on the client side. Switching from the active
+ <listitem><para>Client</para> <para> All panels are uploaded on the client side. Switching from the active
to the hidden panel is performed with client JavaScript.</para>
</listitem>
</itemizedlist>
@@ -104,10 +104,10 @@
<!--SIMPLE EXAMPLE NEEDED -->
<itemizedlist>
- <listitem> onmouseover </listitem>
- <listitem> onclick </listitem>
- <listitem> onmouseout </listitem>
- <listitem> etc. </listitem>
+ <listitem><para> onmouseover </para></listitem>
+ <listitem><para> onclick </para></listitem>
+ <listitem><para> onmouseout </para></listitem>
+ <listitem><para> etc. </para></listitem>
</itemizedlist>
<figure>
<title><emphasis role="bold"><property><rich:simpleTogglePanel></property></emphasis> states</title>
Modified: trunk/docs/userguide/en/src/main/docbook/included/spacer.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/spacer.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/spacer.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -20,9 +20,9 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Easily used as a transparent layout <property>spacer</property></listitem>
- <listitem>Horizontal or vertical spacing is managed by an attribute</listitem>
- <listitem>Easily customizable sizes parameters</listitem>
+ <listitem><para>Easily used as a transparent layout <property>spacer</property></para></listitem>
+ <listitem><para>Horizontal or vertical spacing is managed by an attribute</para></listitem>
+ <listitem><para>Easily customizable sizes parameters</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/spacer.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/spacer.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/spacer.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -78,10 +78,10 @@
</emphasis> and <emphasis><property>"height"</property>.</emphasis></para>
<para>Moreover, to add e.g. some JavaScript effects, events defined on it are used.</para>
<itemizedlist>
- <listitem> onmouseover </listitem>
- <listitem> onclick </listitem>
- <listitem> onmouseout </listitem>
- <listitem> etc. </listitem>
+ <listitem><para> onmouseover </para></listitem>
+ <listitem><para> onclick </para></listitem>
+ <listitem><para> onmouseout </para></listitem>
+ <listitem><para> etc. </para></listitem>
</itemizedlist>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/status.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/status.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/status.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -35,17 +35,17 @@
<title>Creating on a page</title>
<para>There are two ways to define elements indicating a request status :</para>
<itemizedlist>
- <listitem>
+ <listitem><para>
With <emphasis >
<property>"StartText"/"StopText"</property>
- </emphasis> atributes:
+ </emphasis> atributes:</para>
<programlisting role="XML"><![CDATA[<a4j:status startText="Progress" stopText="Done" for="stat1">]]></programlisting>
<para>In this case, text elements for the corresponding status are generated.</para>
</listitem>
</itemizedlist>
<itemizedlist>
- <listitem>
- With <emphasis ><property>"Start"/"Stop"</property></emphasis > facets definition:
+ <listitem><para>
+ With <emphasis ><property>"Start"/"Stop"</property></emphasis > facets definition:</para>
<programlisting role="XML"><![CDATA[<a4j:status for="stat2">
<f:facet name="start">
<h:graphicImage value="ajax_process.png" />
@@ -72,7 +72,7 @@
<section>
<title>Key attributes and ways of usage</title>
<para>There are two ways for the components or containers definition, which Ajax requests status is tracked by a component.<itemizedlist>
- <listitem>
+ <listitem><para>
Definition with the <emphasis >
<property>"for"</property>
</emphasis>
@@ -82,9 +82,9 @@
<property>"for"</property>
</emphasis>
attribute should point at an Ajax container (<emphasis role="bold"><property><a4j:region></property></emphasis>) <property>id</property>, which requests are tracked by a component.
- </listitem>
+ </para></listitem>
</itemizedlist><itemizedlist>
- <listitem>
+ <listitem><para>
Definition with the <emphasis >
<property>"status"</property>
</emphasis>
@@ -93,7 +93,7 @@
</emphasis> component <property>id</property>. Then this <emphasis role="bold">
<property><a4j:status></property>
</emphasis> component shows the status for the request fired from this action component.
- </listitem>
+ </para></listitem>
</itemizedlist></para>
<para>The component creates two <emphasis role="bold"><property><span></property></emphasis> or <emphasis role="bold"><property><div></property></emphasis>
elements depending on attribute <emphasis><property>"layout"</property></emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/subTable.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/subTable.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/subTable.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -26,10 +26,10 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Completely skinned table rows and child elements</listitem>
- <listitem>Possibility to insert complex columnGroup subcomponents</listitem>
- <listitem>Possibility to combine rows and columns inside</listitem>
- <listitem>Possibility to update a limited set of rows with AJAX</listitem>
+ <listitem><para>Completely skinned table rows and child elements</para></listitem>
+ <listitem><para>Possibility to insert complex columnGroup subcomponents</para></listitem>
+ <listitem><para>Possibility to combine rows and columns inside</para></listitem>
+ <listitem><para>Possibility to update a limited set of rows with AJAX</para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -24,25 +24,25 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Fully skinnable component</listitem>
- <listitem>Adds <emphasis><property>"onkeypress"</property></emphasis> suggestions capabilities to any input text component</listitem>
- <listitem>Performs suggestion via Ajax requests without any line of JavaScript code written
- by you</listitem>
- <listitem>Possible to render table as a popup suggestion</listitem>
- <listitem>Can be pointed to any Ajax request status indicator of the page</listitem>
- <listitem>Easily customizable size of suggestion popup</listitem>
- <listitem>Setting rules that appear between cells within a table of popup values</listitem>
- <listitem><emphasis
+ <listitem><para>Fully skinnable component</para></listitem>
+ <listitem><para>Adds <emphasis><property>"onkeypress"</property></emphasis> suggestions capabilities to any input text component</para></listitem>
+ <listitem><para>Performs suggestion via Ajax requests without any line of JavaScript code written
+ by you</para></listitem>
+ <listitem><para>Possible to render table as a popup suggestion</para></listitem>
+ <listitem><para>Can be pointed to any Ajax request status indicator of the page</para></listitem>
+ <listitem><para>Easily customizable size of suggestion popup</para></listitem>
+ <listitem><para>Setting rules that appear between cells within a table of popup values</para></listitem>
+ <listitem><para><emphasis
><property>"Event queue"</property></emphasis> and <emphasis
><property>"request delay"</property></emphasis> attributes present to divide
- frequently requests</listitem>
- <listitem>Managing area of components submitted on Ajax request</listitem>
- <listitem>Flexible list of components to update after Ajax request managed by attributes</listitem>
- <listitem>Setting restriction to Ajax request generation</listitem>
- <listitem>Easily setting action to collect suggestion data</listitem>
- <listitem>Keyboard navigation support</listitem>
+ frequently requests</para></listitem>
+ <listitem><para>Managing area of components submitted on Ajax request</para></listitem>
+ <listitem><para>Flexible list of components to update after Ajax request managed by attributes</para></listitem>
+ <listitem><para>Setting restriction to Ajax request generation</para></listitem>
+ <listitem><para>Easily setting action to collect suggestion data</para></listitem>
+ <listitem><para>Keyboard navigation support</para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -89,24 +89,24 @@
<title>Details of Usage</title>
<para>As it is shown in the example above, the main component attribute are:</para>
<itemizedlist>
- <listitem>
+ <listitem><para>
<emphasis>
<property>"for"</property>
- </emphasis>
+ </emphasis></para>
<para>The attribute where there is an input component which activation causes a
suggestion activation</para>
</listitem>
- <listitem>
+ <listitem><para>
<emphasis>
<property>"suggestionAction"</property>
- </emphasis>
+ </emphasis></para>
<para> is an accepting parameter of a suggestionEvent type that returns as a result
a collection for rendering in a tool tip window.</para>
</listitem>
- <listitem>
+ <listitem><para>
<emphasis>
<property>"var"</property>
- </emphasis>
+ </emphasis></para>
<para> a collection name that provides access for inputting into a table in a
popup</para>
</listitem>
@@ -185,9 +185,7 @@
</emphasis> attribute). The attribute defines characters quantity inputted into a field
after which Ajax requests are called to perform suggestion.</para>
- </section>
-
- <section>
+
<para>
There is possibility to define what be shown if the autocomplete returns empty list.
Attribute<emphasis><property> "nothingLabel" </property></emphasis>or facet with the same name could be used for it.
Modified: trunk/docs/userguide/en/src/main/docbook/included/support.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/support.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/support.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -106,8 +106,8 @@
<para>In example there is the condition checking (confirm) is used before request sending and message printing after the request processing is over. </para>
<para>The components allows different Ajax request managing ways for its various optimization in particular conditions such as:
<itemizedlist>
- <listitem>
- <emphasis role="bold">Limitation of the submit area and updating area for the request.</emphasis>
+ <listitem><para>
+ <emphasis role="bold">Limitation of the submit area and updating area for the request.</emphasis></para>
<para><emphasis ><property>"ajaxSingle"</property></emphasis> is an attribute that allows submission on the server only component sending a request, as if the component presented on a separate form.
</para>
@@ -134,8 +134,8 @@
</form>]]></programlisting>
<para>In this example the component <emphasis role="bold"><property><h:messages></property></emphasis> is always updated (as it capturing all Ajax requests, located in ajaxRendered <emphasis role="bold"><property><a4j:outputPanel></property></emphasis>), except the case when a response is sent from the input component from the example. On sending this component marks that updating area is limited to the defined in it components, it means that on its usage with<emphasis><property> "limitToList"</property></emphasis>=<property>"true"</property> the only component updated is the one with <emphasis><property>"id"</property></emphasis>=<property>"test"</property>.</para>
<itemizedlist>
- <listitem>
- <emphasis role="bold">Limitation of requests frequency and updates quantity after the responses. </emphasis>
+ <listitem><para>
+ <emphasis role="bold">Limitation of requests frequency and updates quantity after the responses. </emphasis></para>
<para><emphasis ><property>"requestDelay"</property></emphasis> is an attribute that defines a time interval in seconds minimally permissible between responses.
</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tab.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tab.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/tab.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -20,17 +20,17 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Fully skinnable <property>tabs</property> content</listitem>
- <listitem>Disabled/enabled <property>tab</property> options</listitem>
- <listitem>Groups any content inside a <property>tab</property></listitem>
- <listitem>Each <property>tab</property> has a unique name for a direct access (e.g. for
- switching between tabs)</listitem>
- <listitem>Switch methods can be easily customized for every <property>tab</property>
- separately with attribute to:
+ <listitem><para>Fully skinnable <property>tabs</property> content</para></listitem>
+ <listitem><para>Disabled/enabled <property>tab</property> options</para></listitem>
+ <listitem><para>Groups any content inside a <property>tab</property></para></listitem>
+ <listitem><para>Each <property>tab</property> has a unique name for a direct access (e.g. for
+ switching between tabs)</para></listitem>
+ <listitem><para>Switch methods can be easily customized for every <property>tab</property>
+ separately with attribute to:</para>
<itemizedlist>
- <listitem>Server</listitem>
- <listitem>Client</listitem>
- <listitem>AJAX</listitem>
+ <listitem><para>Server</para></listitem>
+ <listitem><para>Client</para></listitem>
+ <listitem><para>AJAX</para></listitem>
</itemizedlist>
</listitem>
</itemizedlist>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tab.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tab.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/tab.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -75,8 +75,10 @@
<para>The main component function is to define a content group that is rendered and processed when the <property>tab</property> is active, i.e. click on a <property>tab</property> causes switching onto a <property>tab</property> containing content corresponded to this <property>tab</property>.</para>
<para>The <emphasis ><property>"label"</property></emphasis > attribute defines text to be represented. If you can use the
<emphasis ><property>"label"</property></emphasis > facet, you can even not use the <emphasis ><property>"label"</property></emphasis > attribute.</para>
+ <para>
<emphasis role="bold">Example:</emphasis>
- <programlisting role="XML"><![CDATA[...
+ </para>
+ <programlisting role="XML"><![CDATA[...
<rich:tab>
<f:facet name="label">
<h:graphicImage value="/images/img1.png"/>
@@ -124,15 +126,15 @@
<para>Each <property>tab</property> also has an attribute name (alias for <emphasis ><property>"id"</property></emphasis> attribute). Using this attribute value it's possible e.g. to set an active <property>tab</property> on a model level specifying this name in the corresponding attribute of the whole <property>tab</property>.</para>
<para>Except the specific component attributes it has all necessary attributes for JavaScript event definition.</para>
<itemizedlist>
- <listitem>
+ <listitem><para>
onmouseover
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
onmouseout
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
etc.
- </listitem>
+ </para></listitem>
</itemizedlist>
<para>
Some event could be performed on the tab which has been entered/left using <emphasis><property>"ontabenter"</property></emphasis>/<emphasis><property>"ontableave"</property></emphasis> attributes. See the example below.</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tabPanel.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tabPanel.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/tabPanel.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -20,27 +20,27 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Skinnable <property>tab panel</property> and child items</listitem>
- <listitem>Disabled/enabled tab options</listitem>
- <listitem>Customizable headers</listitem>
- <listitem>Group any content inside a tab</listitem>
- <listitem>Each tab has a unique name for direct access (e.g. for switching between tabs)</listitem>
- <listitem>Switch methods can be easily customized with attribute to:
+ <listitem><para>Skinnable <property>tab panel</property> and child items</para></listitem>
+ <listitem><para>Disabled/enabled tab options</para></listitem>
+ <listitem><para>Customizable headers</para></listitem>
+ <listitem><para>Group any content inside a tab</para></listitem>
+ <listitem><para>Each tab has a unique name for direct access (e.g. for switching between tabs)</para></listitem>
+ <listitem><para>Switch methods can be easily customized with attribute to:</para>
<itemizedlist>
- <listitem>
+ <listitem><para>
Server
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
Client
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
AJAX
- </listitem>
+ </para></listitem>
</itemizedlist>
</listitem>
- <listitem>Switch methods can be selected for the whole <property>tab panel</property> and for the
- each tab separately</listitem>
+ <listitem><para>Switch methods can be selected for the whole <property>tab panel</property> and for the
+ each tab separately</para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -84,18 +84,18 @@
<property>"mode"</property>
</emphasis> with three possible parameters.</para>
<itemizedlist>
- <listitem> Server (DEFAULT)<para>The common submission is performed around
+ <listitem><para>Server (DEFAULT)</para><para>The common submission is performed around
<property>tabPanel</property> and a page is completely rendered on a called panel. Only
one at a time <property>tabPanel</property> is uploaded onto the client side.</para>
</listitem>
- <listitem> Ajax<para>AJAX form submission is performed around the
+ <listitem><para> Ajax</para><para>AJAX form submission is performed around the
<property>tabPanel</property>, content of the called <property>tabPanel</property> is
uploaded on Ajax request and additionally specified elements in the <emphasis>
<property>"reRender"</property>
</emphasis> attribute are rendered. Only one at a time <property>tabPanel</property> is
uploaded on the client.</para>
</listitem>
- <listitem> Client<para> All <property>tabPanels</property> are uploaded on the client side.
+ <listitem><para> Client</para><para> All <property>tabPanels</property> are uploaded on the client side.
The switching from the active to the hidden <property>panel</property> is performed with
client JavaScript.</para>
</listitem>
@@ -157,9 +157,9 @@
<para>Except the specific attributes, the component has all necessary attributes for JavaScript
events definition.</para>
<itemizedlist>
- <listitem> onmouseover </listitem>
- <listitem> onmouseout </listitem>
- <listitem> etc. </listitem>
+ <listitem><para> onmouseover </para></listitem>
+ <listitem><para> onmouseout </para></listitem>
+ <listitem><para> etc. </para></listitem>
</itemizedlist>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toggleControl.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toggleControl.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/toggleControl.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -27,13 +27,13 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Highly customizable look and feel</listitem>
- <listitem>Can be located anywhere in a page layout</listitem>
- <listitem>Switching is provided in the three modes
+ <listitem><para>Highly customizable look and feel</para></listitem>
+ <listitem><para>Can be located anywhere in a page layout</para></listitem>
+ <listitem><para>Switching is provided in the three modes</para>
<itemizedlist>
- <listitem>Server</listitem>
- <listitem>Client</listitem>
- <listitem>Ajax</listitem>
+ <listitem><para>Server</para></listitem>
+ <listitem><para>Client</para></listitem>
+ <listitem><para>Ajax</para></listitem>
</itemizedlist>
</listitem>
</itemizedlist>
Modified: trunk/docs/userguide/en/src/main/docbook/included/togglePanel.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/togglePanel.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/togglePanel.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -22,15 +22,15 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Support for any content inside</listitem>
- <listitem>Three modes of facets switching
+ <listitem><para>Support for any content inside</para></listitem>
+ <listitem><para>Three modes of facets switching</para>
<itemizedlist>
- <listitem>Server</listitem>
- <listitem>Client</listitem>
- <listitem>Ajax</listitem>
+ <listitem><para>Server</para></listitem>
+ <listitem><para>Client</para></listitem>
+ <listitem><para>Ajax</para></listitem>
</itemizedlist>
</listitem>
- <listitem>Controls for <property>togglePanel</property> can be everywhere in layout</listitem>
+ <listitem><para>Controls for <property>togglePanel</property> can be everywhere in layout</para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/togglePanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/togglePanel.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/togglePanel.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -92,17 +92,17 @@
<property>"switchType"</property>
</emphasis> attribute with three possible parameters:</para>
<itemizedlist>
- <listitem> Server (DEFAULT)<para>The common submission is performed around
+ <listitem><para> Server (DEFAULT)</para><para>The common submission is performed around
<property>togglePanel</property> and a page is completely rendered on a called panel.
Only one at a time the panel is uploaded onto the client side.</para>
</listitem>
- <listitem> Ajax<para>AJAX form submission is performed around the panel, content of the called
+ <listitem><para> Ajax</para><para>AJAX form submission is performed around the panel, content of the called
panel is uploaded on an Ajax request and additionally specified elements in the <emphasis>
<property>"reRender"</property>
</emphasis> attribute are rendered. Only one at a time the panel is uploaded on the client
side.</para>
</listitem>
- <listitem> Client<para> All panels are uploaded on the client side. The switching from the
+ <listitem><para> Client</para><para> All panels are uploaded on the client side. The switching from the
active to the hidden panel is performed with client JavaScript.</para>
</listitem>
</itemizedlist>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolBar.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolBar.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolBar.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -21,12 +21,12 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Skinnable menu panel and child items</listitem>
- <listitem>Standard top menu bar that can be used in accordance with a menu component</listitem>
- <listitem>Grouping bar content</listitem>
- <listitem>Easily place content on any side of a menu bar using predefined group layout</listitem>
- <listitem>Predefined separators for menu items and groups</listitem>
- <listitem>Any content inside</listitem>
+ <listitem><para>Skinnable menu panel and child items</para></listitem>
+ <listitem><para>Standard top menu bar that can be used in accordance with a menu component</para></listitem>
+ <listitem><para>Grouping bar content</para></listitem>
+ <listitem><para>Easily place content on any side of a menu bar using predefined group layout</para></listitem>
+ <listitem><para>Predefined separators for menu items and groups</para></listitem>
+ <listitem><para>Any content inside</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -80,10 +80,10 @@
<property>"itemSeparator"</property>
</emphasis> attribute with four predefined values:</para>
<itemizedlist>
- <listitem> none </listitem>
- <listitem> line </listitem>
- <listitem> square </listitem>
- <listitem> disc </listitem>
+ <listitem><para> none </para></listitem>
+ <listitem><para> line </para></listitem>
+ <listitem><para> square </para></listitem>
+ <listitem><para> disc </para></listitem>
</itemizedlist>
<para>For example, when setting a separator of a disc type, the following result is produced:</para>
<figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -20,11 +20,11 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Fully skinnable with its child items</listitem>
- <listitem>Grouping bar content</listitem>
- <listitem>Easily place content on either side of tool bar using a predefined group layout</listitem>
- <listitem>Predefined separators for menu items and groups</listitem>
- <listitem>Any content inside</listitem>
+ <listitem><para>Fully skinnable with its child items</para></listitem>
+ <listitem><para>Grouping bar content</para></listitem>
+ <listitem><para>Easily place content on either side of tool bar using a predefined group layout</para></listitem>
+ <listitem><para>Predefined separators for menu items and groups</para></listitem>
+ <listitem><para>Any content inside</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -85,18 +85,18 @@
><property>"itemSeparator"</property></emphasis> attribute with four
predefined values:</para>
<itemizedlist>
- <listitem>
+ <listitem><para>
none
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
line
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
square
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
disc
- </listitem>
+ </para></listitem>
</itemizedlist>
<para>To control the group location inside, use the <emphasis
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolTip.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolTip.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolTip.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -21,9 +21,9 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Highly customizable look and feel </listitem>
- <listitem>Different ways of data loading to toolTip</listitem>
- <listitem>Disablement support</listitem>
+ <listitem><para>Highly customizable look and feel </para></listitem>
+ <listitem><para>Different ways of data loading to toolTip</para></listitem>
+ <listitem><para>Disablement support</para></listitem>
</itemizedlist>
</section>
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -172,8 +172,8 @@
<para>
The <emphasis><property>"mode"</property></emphasis> attribute is provided you to control the way of data loading to <property>toolTip</property>. It has following values:
<itemizedlist>
- <listitem>Client</listitem>
- <listitem>Ajax</listitem>
+ <listitem><para>Client</para></listitem>
+ <listitem><para>Ajax</para></listitem>
</itemizedlist>
</para>
<para>
@@ -190,22 +190,22 @@
<para>
Standart:
<itemizedlist>
- <listitem>onclick</listitem>
- <listitem>ondblclick</listitem>
- <listitem>onmouseout</listitem>
- <listitem>onmousemove</listitem>
- <listitem>onmouseover</listitem>
+ <listitem><para>onclick</para></listitem>
+ <listitem><para>ondblclick</para></listitem>
+ <listitem><para>onmouseout</para></listitem>
+ <listitem><para>onmousemove</para></listitem>
+ <listitem><para>onmouseover</para></listitem>
</itemizedlist>
</para>
<para>
Special:
<itemizedlist>
- <listitem>onshow - Called after the toolTip is called (some element hovered) but before its request
- </listitem>
- <listitem>oncomplete - Called just after the toolTip is shown
- </listitem>
- <listitem>onhide - Called after the toolTip is hidden
- </listitem>
+ <listitem><para>onshow - Called after the toolTip is called (some element hovered) but before its request
+ </para></listitem>
+ <listitem><para>oncomplete - Called just after the toolTip is shown
+ </para></listitem>
+ <listitem><para>onhide - Called after the toolTip is hidden
+ </para></listitem>
</itemizedlist>
</para>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tree.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tree.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/tree.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -460,19 +460,19 @@
</emphasis> attribute. </para>
<para><property>Default node</property> is used in the following cases:</para>
<itemizedlist>
- <listitem><emphasis>
+ <listitem><para><emphasis>
<property>"nodeFace"</property>
</emphasis> attribute is defined, but its value isn't equal to any <emphasis>
<property>"type"</property>
- </emphasis> attribute value from all children nodes;</listitem>
- <listitem><emphasis>
+ </emphasis> attribute value from all children nodes;</para></listitem>
+ <listitem><para><emphasis>
<property>"nodeFace"</property>
</emphasis> attribute is defined and its value is equal to a value of some <emphasis>
<property>"type"</property>
</emphasis> attribute from all children nodes , but the value of <emphasis>
<property>"rendered"</property>
</emphasis> attribute for this node is
- <property>"false"</property>.</listitem>
+ <property>"false"</property>.</para></listitem>
</itemizedlist>
<para>There is also one thing that has to be remembered using <emphasis>
<property>"type"</property>
@@ -544,10 +544,10 @@
<property><rich:tree></property>
</emphasis> component.</para>
<itemizedlist>
- <listitem>Ajax (default value) - Ajax submission is used performing the functionality.
-Note, that for collapse/expand operations an Ajax request is sent to the server and it can cause a short delay.</listitem>
- <listitem>Server - regular form of submission request is used.</listitem>
- <listitem>Client – all operations are performed totally on the client; no interaction with a server is involved. Full page content is reloaded after every action.</listitem>
+ <listitem><para>Ajax (default value) - Ajax submission is used performing the functionality.
+Note, that for collapse/expand operations an Ajax request is sent to the server and it can cause a short delay.</para></listitem>
+ <listitem><para>Server - regular form of submission request is used.</para></listitem>
+ <listitem><para>Client – all operations are performed totally on the client; no interaction with a server is involved. Full page content is reloaded after every action.</para></listitem>
</itemizedlist>
<para> The <emphasis>
<property>"icon"</property>
@@ -730,22 +730,22 @@
<title>Events handling</title>
<para>Listeners classes that process events on the server side are defined with the help of:</para>
<itemizedlist>
- <listitem>changeExpandListener processes expand/collapse event of a <property>treeNode</property></listitem>
- <listitem>dropListener processes a Drop event</listitem>
- <listitem>dragListener processes a Drag event</listitem>
- <listitem>nodeSelectListener is called during request sending on a node selecting event (if request sending on this event is defined)</listitem>
+ <listitem><para>changeExpandListener processes expand/collapse event of a <property>treeNode</property></para></listitem>
+ <listitem><para>dropListener processes a Drop event</para></listitem>
+ <listitem><para>dragListener processes a Drag event</para></listitem>
+ <listitem><para>nodeSelectListener is called during request sending on a node selecting event (if request sending on this event is defined)</para></listitem>
</itemizedlist>
<para>Listener methods can be defined using the <link linkend="treeNodeKF">following
attributes</link> or using nested tags.</para>
<para>Client event attributes are:</para>
<itemizedlist>
- <listitem>onexpand is a script expression to invoke when a node is expanded</listitem>
- <listitem>oncollapse is a script expression to invoke when a node is collapsed</listitem>
- <listitem>ondragexit is a script expression to invoke when an element passing out from a tree zone</listitem>
- <listitem>ondragstart is a script expression to invoke when dragging starts</listitem>
- <listitem>ondragend is a script expression to invoke when dragging ends (a drop event)</listitem>
- <listitem>ondragenter is a script expression to invoke when a dragged element appears on a tree</listitem>
+ <listitem><para>onexpand is a script expression to invoke when a node is expanded</para></listitem>
+ <listitem><para>oncollapse is a script expression to invoke when a node is collapsed</para></listitem>
+ <listitem><para>ondragexit is a script expression to invoke when an element passing out from a tree zone</para></listitem>
+ <listitem><para>ondragstart is a script expression to invoke when dragging starts</para></listitem>
+ <listitem><para>ondragend is a script expression to invoke when dragging ends (a drop event)</para></listitem>
+ <listitem><para>ondragenter is a script expression to invoke when a dragged element appears on a tree</para></listitem>
</itemizedlist>
<para>They can be used to add some JavaScript effects.</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/treeNode.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/treeNode.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/treeNode.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -24,9 +24,9 @@
<title>Key Features</title>
<itemizedlist>
- <listitem>Possibility to assign different icon images for each node within a tree</listitem>
- <listitem>Drag and Drop support</listitem>
- <listitem>Look-and-Feel customization</listitem>
+ <listitem><para>Possibility to assign different icon images for each node within a tree</para></listitem>
+ <listitem><para>Drag and Drop support</para></listitem>
+ <listitem><para>Look-and-Feel customization</para></listitem>
</itemizedlist>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.desc.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.desc.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -20,9 +20,9 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Presents the Microsoft <property>Virtual Earth map</property> functionality</listitem>
- <listitem>Highly customizable via attributes</listitem>
- <listitem>No developers JavaScript writing is needed to use it on a pages</listitem>
+ <listitem><para>Presents the Microsoft <property>Virtual Earth map</property> functionality</para></listitem>
+ <listitem><para>Highly customizable via attributes</para></listitem>
+ <listitem><para>No developers JavaScript writing is needed to use it on a pages</para></listitem>
</itemizedlist>
</section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -71,24 +71,24 @@
<para>Here are the main settings of initial rendering performed with a component
<property>map</property> that are accessible with the following attributes:</para>
<itemizedlist>
- <listitem>
+ <listitem><para>
<emphasis>
<property>"zoom"</property>
- </emphasis> defines an approximation size (boundary values 1-18) </listitem>
- <listitem>
+ </emphasis> defines an approximation size (boundary values 1-18) </para></listitem>
+ <listitem><para>
<emphasis>
<property>"lat"</property>
</emphasis> specifies an initial latitude coordinate in degrees, as a number between -90 and
- +90 </listitem>
- <listitem>
+ +90 </para></listitem>
+ <listitem><para>
<emphasis>
<property>"lng"</property>
</emphasis> specifies an initial longitude coordinate in degrees, as a number between -180
- and +180 </listitem>
- <listitem>
+ and +180 </para></listitem>
+ <listitem><para>
<emphasis>
<property>"dashboardSize"</property>
- </emphasis>specifies a type of a rendered map (Normal, Small, Tiny)</listitem>
+ </emphasis>specifies a type of a rendered map (Normal, Small, Tiny)</para></listitem>
</itemizedlist>
<para>For example, the city of Paris is shown after rendering with the following initial
settings: <emphasis>
@@ -107,8 +107,10 @@
</mediaobject>
</figure>
<para>Code for this example is placed below:</para>
+ <para>
<emphasis role="bold">Example:</emphasis>
- <programlisting role="XML"><![CDATA[...
+ </para>
+ <programlisting role="XML"><![CDATA[...
<rich:virtualEarth style="width:800px;" id="vm" lat="48.833" lng="2.40"
dashboardSize="Normal" zoom="11" mapStyle="Hybrid" var="map" />
...
@@ -125,10 +127,10 @@
map.ZoomIn() on an event.</para>
<para>Moreover, to add e.g. some JavaScript effects, events defined on it are used.</para>
<itemizedlist>
- <listitem> onmouseover </listitem>
- <listitem> onclick </listitem>
- <listitem> onmouseout </listitem>
- <listitem> etc. </listitem>
+ <listitem><para> onmouseover </para></listitem>
+ <listitem><para> onclick </para></listitem>
+ <listitem><para> onmouseout </para></listitem>
+ <listitem><para> etc. </para></listitem>
</itemizedlist>
<note>
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -26,10 +26,10 @@
<?dbhtml filename="Installation.html" ?>
<title>Installation</title>
<itemizedlist>
- <listitem> Unzip <emphasis>
+ <listitem><para> Unzip <emphasis>
<property>"richfaces-ui-3.2.0-bin.zip"</property>
- </emphasis> file to the chosen folder. </listitem>
- <listitem> Copy <emphasis>
+ </emphasis> file to the chosen folder. </para></listitem>
+ <listitem><para> Copy <emphasis>
<property>"richfaces-api-3.2.0.jar"</property>
</emphasis>, <emphasis>
<property>"richfaces-impl-3.2.0.jar"</property>
@@ -37,15 +37,15 @@
<property>"richfaces-ui-3.2.0.jar"</property>
</emphasis>files into the <emphasis>
<property>"WEB-INF/lib"</property>
- </emphasis> folder of your application. </listitem>
+ </emphasis> folder of your application. </para></listitem>
<!--note>
<title>Note:</title>
<para>Starting from Ajax4jsf 1.1.1, the oscache library is not required to be in the
classpath anymore. </para>
</note-->
- <listitem> Add the following content into the <emphasis>
+ <listitem><para> Add the following content into the <emphasis>
<property>"WEB-INF/web.xml"</property>
- </emphasis> file of your application: <programlisting role="XML"><![CDATA[...
+ </emphasis> file of your application: </para><programlisting role="XML"><![CDATA[...
<context-param>
<param-name>org.richfaces.SKIN</param-name>
<param-value>blueSky</param-value>
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCSettings.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCSettings.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCSettings.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -238,13 +238,13 @@
<para>Only one issue still persists while using <property>Seam</property> with MyFaces. Look at
myFaces part of this section.</para>
</section>
- <section id="Portlet Support">
+ <section id="PortletSupport">
<title>Portlet Support</title>
<para><property>JBoss Portlets</property> have support since version Ajax4jsf 1.1.1. This support is
improved in Richfaces 3.2.0. Provide your feedback on compatible with RichFaces if you face
some problems.</para>
</section>
- <section id="Sybase EAServer">
+ <section id="SybaseEAServer">
<title>Sybase EAServer</title>
<para>The load-on-startup for the Faces Servlet had to be set to 0 in web.xml.</para>
@@ -262,7 +262,7 @@
<para> This is because, EAServer calls servlet init() before the ServletContextInitializer. Not
an EAServer bug, this is in Servlet 2.3 spec.</para>
</section>
- <section id="Oracle AS/OC4J">
+ <section id="OracleAS_OC4J">
<title>Oracle AS/OC4J</title>
<para>In order to deploy your project with RichFaces components to an <property>Oracle AS</property> you just have to
prevent the application's class loader from importing the Oracle XML parser.
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -208,11 +208,11 @@
<para>The answer is yes. </para>
<para>Component provides two controllers groups for switching:</para>
<itemizedlist>
- <listitem>Page numbers for switching onto a particular page</listitem>
- <listitem>The controls of fast switching: "first",
+ <listitem><para>Page numbers for switching onto a particular page</para></listitem>
+ <listitem><para>The controls of fast switching: "first",
"last", "next",
"previous", "fastforward",
- "fastrewind"</listitem>
+ "fastrewind"</para></listitem>
</itemizedlist>
<para>The controls of fast switching are created adding the facets component with
the corresponding name:</para>
@@ -483,16 +483,16 @@
<title>How to make html scrollbars in modalPanel?</title>
<para>The answer could be found on the RichFaces Users Forum:</para>
<itemizedlist>
- <listitem>
+ <listitem><para>
<ulink
url="http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062877#..."
>http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062877#...</ulink>
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
<ulink
url="http://www.jboss.com/index.html?module=bb&op=viewtopic&t=105412"
>http://www.jboss.com/index.html?module=bb&op=viewtopic&t=105412</ulink>
- </listitem>
+ </para></listitem>
</itemizedlist>
</section>
@@ -758,9 +758,9 @@
<para> RichFaces currently does not use <emphasis>invokeOnComponent</emphasis>
because of the 2 reasons: </para>
<itemizedlist>
- <listitem> Compatibility with JSF 1.1 and MyFaces applications is kept, due
- to a big amount of code used in corporate applications. </listitem>
- <listitem>
+ <listitem><para> Compatibility with JSF 1.1 and MyFaces applications is kept, due
+ to a big amount of code used in corporate applications. </para></listitem>
+ <listitem><para>
<emphasis> InvokeOnComponent</emphasis> works with already known
clientId, and works fine for communication between widget and backed
component, or updates content of already rendered component. But
@@ -768,7 +768,7 @@
use-cases implemented in RichFaces, as there is a choice for
updatable components in application logic, where it's
necessary to navigate in a components tree by the native id, with
- <property>findComponent()</property> methods. </listitem>
+ <property>findComponent()</property> methods. </para></listitem>
</itemizedlist>
<para> Thus, for example, only entire dataTable can be updated in response (but all
Ajax core action components inside table work properly). </para>
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCtechreqs.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCtechreqs.xml 2008-04-18 16:55:29 UTC (rev 7947)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCtechreqs.xml 2008-04-18 17:27:34 UTC (rev 7948)
@@ -2,9 +2,7 @@
<chapter id="TechnicalRequirements" xreflabel="TechnicalRequirements">
<?dbhtml filename="TechnicalRequirements.html"?>
- <title>Technical Requirements</title>
-
- <chapterinfo>
+ <chapterinfo>
<keywordset>
<keyword>Java</keyword>
@@ -48,21 +46,23 @@
</keywordset>
</chapterinfo>
+ <title>Technical Requirements</title>
+
<para><property>RichFaces</property> was developed with an open architecture to be compatible with
the widest possible variety of environments.</para>
<para>This is what you need to start working with <property>RichFaces 3.2.0</property>:</para>
<itemizedlist>
- <listitem>Java</listitem>
+ <listitem><para>Java</para></listitem>
- <listitem>JavaServer Faces</listitem>
+ <listitem><para>JavaServer Faces</para></listitem>
- <listitem>Java application server or servlet container</listitem>
+ <listitem><para>Java application server or servlet container</para></listitem>
- <listitem>Browser (on client side)</listitem>
+ <listitem><para>Browser (on client side)</para></listitem>
- <listitem>Richfaces framework</listitem>
+ <listitem><para>Richfaces framework</para></listitem>
</itemizedlist>
<section id="SupportedJavaVersions">
@@ -71,7 +71,7 @@
<title>Supported Java Versions</title>
<itemizedlist>
- <listitem>JDK 1.5 and higher</listitem>
+ <listitem><para>JDK 1.5 and higher</para></listitem>
</itemizedlist>
</section>
@@ -81,13 +81,13 @@
<title>Supported JavaServer Faces Implementations and Frameworks</title>
<itemizedlist>
- <listitem>Sun JSF-RI - 1.2</listitem>
+ <listitem><para>Sun JSF-RI - 1.2</para></listitem>
- <listitem>MyFaces 1.2</listitem>
+ <listitem><para>MyFaces 1.2</para></listitem>
- <listitem>Facelets 1.1.1 - 1.2</listitem>
+ <listitem><para>Facelets 1.1.1 - 1.2</para></listitem>
- <listitem>Seam 1.2. - 2.0</listitem>
+ <listitem><para>Seam 1.2. - 2.0</para></listitem>
</itemizedlist>
</section>
@@ -97,25 +97,25 @@
<title>Supported Servers</title>
<itemizedlist>
- <listitem>Apache Tomcat 5.5 - 6.0</listitem>
+ <listitem><para>Apache Tomcat 5.5 - 6.0</para></listitem>
- <listitem>IBM WebSphere 6.1</listitem>
+ <listitem><para>IBM WebSphere 6.1</para></listitem>
- <listitem>BEA WebLogic 9.0 - 10.0</listitem>
+ <listitem><para>BEA WebLogic 9.0 - 10.0</para></listitem>
- <listitem>Oracle AS/OC4J 10.1.3</listitem>
+ <listitem><para>Oracle AS/OC4J 10.1.3</para></listitem>
- <listitem>Resin 3.1</listitem>
+ <listitem><para>Resin 3.1</para></listitem>
- <listitem>Jetty 6.1.x</listitem>
+ <listitem><para>Jetty 6.1.x</para></listitem>
- <listitem>Sun Application Server 9 (J2EE 1.5)</listitem>
+ <listitem><para>Sun Application Server 9 (J2EE 1.5)</para></listitem>
- <listitem>Glassfish (J2EE 5)</listitem>
+ <listitem><para>Glassfish (J2EE 5)</para></listitem>
- <listitem>JBoss 4.2.x - 5</listitem>
+ <listitem><para>JBoss 4.2.x - 5</para></listitem>
- <listitem>Sybase EAServer 6.0.2 - 6.1</listitem>
+ <listitem><para>Sybase EAServer 6.0.2 - 6.1</para></listitem>
</itemizedlist>
</section>
@@ -125,13 +125,13 @@
<title>Supported Browsers</title>
<itemizedlist>
- <listitem>Internet Explorer 6.0 - 7.0</listitem>
+ <listitem><para>Internet Explorer 6.0 - 7.0</para></listitem>
- <listitem>Firefox 1.5 - 2.0</listitem>
+ <listitem><para>Firefox 1.5 - 2.0</para></listitem>
- <listitem>Opera 8.5 - 9.2</listitem>
+ <listitem><para>Opera 8.5 - 9.2</para></listitem>
- <listitem>Safari 2.0-3.1</listitem>
+ <listitem><para>Safari 2.0-3.1</para></listitem>
</itemizedlist>
16 years, 9 months
JBoss Rich Faces SVN: r7947 - branches/3.1.x/ui/dataTable/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-04-18 12:55:29 -0400 (Fri, 18 Apr 2008)
New Revision: 7947
Modified:
branches/3.1.x/ui/dataTable/src/main/config/component/dataList.xml
Log:
http://jira.jboss.com/jira/browse/RF-3138
http://jira.jboss.com/jira/browse/RF-3141
http://jira.jboss.com/jira/browse/RF-3143
Modified: branches/3.1.x/ui/dataTable/src/main/config/component/dataList.xml
===================================================================
--- branches/3.1.x/ui/dataTable/src/main/config/component/dataList.xml 2008-04-18 16:42:01 UTC (rev 7946)
+++ branches/3.1.x/ui/dataTable/src/main/config/component/dataList.xml 2008-04-18 16:55:29 UTC (rev 7947)
@@ -30,7 +30,6 @@
&ui_component_attributes;
&ui_data_attributes;
&html_universal_attributes;
- &spec_table_attributes;
<property>
<name>type</name>
<classname>java.lang.String</classname>
@@ -69,7 +68,14 @@
<name>componentState</name>
<classname>org.ajax4jsf.model.DataComponentState</classname>
<description>It defines EL-binding for a component state for saving or redefinition</description>
- </property>
+ </property>
+
+ <property>
+ <name>rowClasses</name>
+ <classname>java.lang.String</classname>
+ <description> A comma-delimited list of CSS style classes that is applied to popup table rows. A space separated list of classes may also be specified for any individual row. The styles are applied, in turn, to each row in the table. For example, if the list has two elements, the first style class in the list is applied to the first row, the second to the second row, the first to the third row, the second to the fourth row, etc. In other words, we keep iterating through the list until we reach the end, and then we start at the beginning again</description>
+ </property>
+
<!--
<property>
<name>param</name>
@@ -108,7 +114,6 @@
&ui_component_attributes;
&ui_data_attributes;
&html_universal_attributes;
- &spec_table_attributes;
<property>
<name>type</name>
<classname>java.lang.String</classname>
@@ -122,6 +127,12 @@
The attribute provides access to a component state on the client side
</description>
</property>
+
+ <property>
+ <name>rowClasses</name>
+ <classname>java.lang.String</classname>
+ <description> A comma-delimited list of CSS style classes that is applied to popup table rows. A space separated list of classes may also be specified for any individual row. The styles are applied, in turn, to each row in the table. For example, if the list has two elements, the first style class in the list is applied to the first row, the second to the second row, the first to the third row, the second to the fourth row, etc. In other words, we keep iterating through the list until we reach the end, and then we start at the beginning again</description>
+ </property>
<!--
<property>
<name>param</name>
16 years, 9 months
JBoss Rich Faces SVN: r7946 - trunk/docs/userguide/en/src/main/docbook/modules.
by richfaces-svn-commits@lists.jboss.org
Author: vsukhov
Date: 2008-04-18 12:42:01 -0400 (Fri, 18 Apr 2008)
New Revision: 7946
Modified:
trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
Log:
http://jira.jboss.com/jira/browse/RF-2908 I've replaced "reRender" attribute by: "rendered" attribute in section 5.4.1 of the Reference Manual
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2008-04-18 15:57:36 UTC (rev 7945)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2008-04-18 16:42:01 UTC (rev 7946)
@@ -25,12 +25,13 @@
<para>Next Figure shows how it works:</para>
<figure>
<title>Request Processing flow</title>
- </figure>
+
<mediaobject>
<imageobject>
<imagedata fileref="images/newpic1.png" scalefit="1"/>
</imageobject>
</mediaobject>
+ </figure>
<para><property>RichFaces</property> allows to define (by means of JSF tags) different parts of
a JSF page you wish to update with an Ajax request and provide a few options to send Ajax
requests to the server. Also JSF page doesn't change from a
@@ -44,12 +45,13 @@
framework</para>
<figure>
<title>Core Ajax component structure</title>
- </figure>
+
<mediaobject>
<imageobject>
<imagedata fileref="images/newpic2.png"/>
</imageobject>
</mediaobject>
+ </figure>
<formalpara>
<title>Ajax Filter.</title>
<para>To get all benefits of <property>RichFaces</property>, you should register a Filter in
@@ -65,12 +67,13 @@
<para>Have a look at the next picture to understand these two ways:</para>
<figure>
<title>Request Processing sequence diagram</title>
- </figure>
+
<mediaobject>
<imageobject>
<imagedata fileref="images/newpic3.png" scalefit="1"/>
</imageobject>
</mediaobject>
+ </figure>
<para>In both cases, the information about required static or dynamic resources that your
application requests is registered in the ResourseBuilder class.</para>
<para>When a request for a resource comes (Figure 4), the RichFaces filter checks the Resource
@@ -81,12 +84,13 @@
<para>Next Figure shows the ways of resource request processing.</para>
<figure>
<title>Resource request sequence diagram</title>
- </figure>
+
<mediaobject>
<imageobject>
<imagedata fileref="images/newpic4.png" scalefit="1"/>
</imageobject>
</mediaobject>
+ </figure>
<formalpara>
<title>AJAX Action Components</title>
<para> There are Ajax Action Components: AjaxCommandButton, AjaxCommandLink, AjaxPoll and
@@ -110,22 +114,22 @@
<title>Limitations and Rules</title>
<para>In order to create RichFaces applications properly, keep the following points in mind:</para>
<itemizedlist>
- <listitem> Any Ajax framework should not append or delete, but only replace elements on the
+ <listitem><para> Any Ajax framework should not append or delete, but only replace elements on the
page. For successful updates, an element with the same ID as in the response must exist on
the page. If you'd like to append any code to a page, put in a placeholder for it
(any empty element). For the same reason, it's recommended to place messages in the<emphasis>
<property>"AjaxOutput"</property>
- </emphasis> component (as no messages is also a message). </listitem>
- <listitem> Don't use <emphasis role="bold">
+ </emphasis> component (as no messages is also a message). </para></listitem>
+ <listitem><para> Don't use <emphasis role="bold">
<property><f:verbatim></property>
</emphasis> for self-rendered containers, since this component is transient and not saved in
- the tree. </listitem>
- <listitem> Ajax requests are made by XMLHttpRequest functions in XML format, but this XML
+ the tree. </para></listitem>
+ <listitem><para> Ajax requests are made by XMLHttpRequest functions in XML format, but this XML
bypasses most validations and the corrections that might be made in a browser. Thus, create
only a strict standards-compliant code for HTML and XHTML, without skipping any required
elements or attributes. Any necessary XML corrections are automatically made by the XML
filter on the server, but lot's of unexpected effects can be produced by an
- incorrect HTML code. </listitem>
+ incorrect HTML code. </para></listitem>
</itemizedlist>
</section>
@@ -218,7 +222,7 @@
what should be re-rendered on any previous phase during the Ajax request processing.</para>
<para>Most common problem with using reRender is pointing it to the component that has a <emphasis>
- <property>"reRender"</property>
+ <property>"rendered"</property>
</emphasis> attribute. Note, that JSF does not mark the place in the browser DOM where the
outcome of the component should be placed in case the <emphasis>
<property>"rendered"</property>
@@ -424,7 +428,7 @@
RichFaces starts to work in "Ajax request generates Non-Ajax Response" mode. This mode might
be helpful in two major cases:</para>
<itemizedlist>
- <listitem>RichFaces allows to organize a page flow inside the <emphasis role="bold">
+ <listitem><para>RichFaces allows to organize a page flow inside the <emphasis role="bold">
<property><a4j:include></property>
</emphasis> component. This is a typical scenario for Wizard like behavior. The new
content is rendered inside the <emphasis role="bold">
@@ -438,8 +442,8 @@
inside the <emphasis role="bold">
<property><a4j:include></property>
</emphasis> to navigate between the wizard pages. Otherwize, the whole page update will be
- performed.</listitem>
- <listitem>If you want to involve the server side validators and navigate to the next page
+ performed.</para></listitem>
+ <listitem><para>If you want to involve the server side validators and navigate to the next page
only if the Validation phase is passed successfully, you can replace <emphasis role="bold">
<property><h:commandButton></property>
</emphasis> with <emphasis role="bold">
@@ -447,7 +451,7 @@
</emphasis> and point to the action method that navigates to the next page. If Validation
process fails, the partial page update will occur and you will see an error message.
Otherwize, the application proceeds to the next page. Make sure, you define
- <redirect/> option for the navigation rule to avoid memory leaks.</listitem>
+ <redirect/> option for the navigation rule to avoid memory leaks.</para></listitem>
</itemizedlist>
<para> </para>
</section>
@@ -520,9 +524,9 @@
</emphasis>.</para>
<para>There is a number of useful functions which can be used in JavaScript:</para>
<itemizedlist>
- <listitem>rich:clientId('id') - returns client id by short id or null if the component with the id specified hasn't been found </listitem>
- <listitem>rich:element('id') - is a shortcut for document.getElementById(#{rich:clientId('id')}) </listitem>
- <listitem>rich:component('id') - is a shortcut for #{rich:clientId('id')}.component</listitem>
+ <listitem><para>rich:clientId('id') - returns client id by short id or null if the component with the id specified hasn't been found </para></listitem>
+ <listitem><para>rich:element('id') - is a shortcut for document.getElementById(#{rich:clientId('id')}) </para></listitem>
+ <listitem><para>rich:component('id') - is a shortcut for #{rich:clientId('id')}.component</para></listitem>
</itemizedlist>
</section>
@@ -760,10 +764,10 @@
<property><f:verbatim/></property>
</emphasis> tag and content of other panel's child tags could be updated on Ajax
response. There are two ways to control this: <itemizedlist>
- <listitem> By setting the "ajaxRendered" attribute value to
- "true". </listitem>
- <listitem> By setting the "reRender" attribute value of an Action
- Component to the output panel ID. </listitem>
+ <listitem><para> By setting the "ajaxRendered" attribute value to
+ "true". </para></listitem>
+ <listitem><para> By setting the "reRender" attribute value of an Action
+ Component to the output panel ID. </para></listitem>
</itemizedlist>
</para>
<section id="process">
@@ -778,12 +782,12 @@
</para>
<para>The <emphasis><property>"process"</property></emphasis> attribute has two limitations:</para>
<itemizedlist>
- <listitem>
+ <listitem><para>
it works only if <emphasis><property>"ajaxSingle"</property></emphasis> equals to "true" for given command component
- </listitem>
- <listitem>
+ </para></listitem>
+ <listitem><para>
you do not have to point this attribute to one of the own parent components to avoid processing of command component twice
- </listitem>
+ </para></listitem>
</itemizedlist>
<para><emphasis role="bold">Example:</emphasis></para>
<programlisting role="XML"><![CDATA[...
@@ -1016,9 +1020,9 @@
};]]></programlisting>
<para>The function defined this way accepts as parameters:</para>
<itemizedlist>
- <listitem>req - a params string of a request that calls an error</listitem>
- <listitem>status - the number of an error returned by the server</listitem>
- <listitem>message - a default message for the given error</listitem>
+ <listitem><para>req - a params string of a request that calls an error</para></listitem>
+ <listitem><para>status - the number of an error returned by the server</para></listitem>
+ <listitem><para>message - a default message for the given error</para></listitem>
</itemizedlist>
<para>Thus, it's possible to create your own handler that is called on timeouts,
inner server errors, and etc.</para>
@@ -1043,10 +1047,10 @@
<para>Here the function receives in params:</para>
<itemizedlist>
- <listitem>loc - URL of the current page (on demand can be updated) </listitem>
- <listitem>expiredMsg - a default message on <emphasis>
+ <listitem><para>loc - URL of the current page (on demand can be updated) </para></listitem>
+ <listitem><para>expiredMsg - a default message on <emphasis>
<property>"Session Expiration"</property>
- </emphasis>event.</listitem>
+ </emphasis>event.</para></listitem>
</itemizedlist>
<!--note>
<title>Note:</title>
@@ -1234,23 +1238,23 @@
common customization:</para>
<itemizedlist>
- <listitem> DEFAULT </listitem>
+ <listitem><para> DEFAULT </para></listitem>
- <listitem> plain </listitem>
+ <listitem><para> plain </para></listitem>
- <listitem> emeraldTown </listitem>
+ <listitem><para> emeraldTown </para></listitem>
- <listitem> blueSky </listitem>
+ <listitem><para> blueSky </para></listitem>
- <listitem> wine </listitem>
+ <listitem><para> wine </para></listitem>
- <listitem> japanCherry </listitem>
+ <listitem><para> japanCherry </para></listitem>
- <listitem> ruby </listitem>
+ <listitem><para> ruby </para></listitem>
- <listitem> classic </listitem>
+ <listitem><para> classic </para></listitem>
- <listitem> deepMarine </listitem>
+ <listitem><para> deepMarine </para></listitem>
</itemizedlist>
<para>To plug one in, it's necessary to specify a skin name in the <emphasis>
@@ -1562,15 +1566,15 @@
JSF components built with the help of RichFaces. </para>
<para>To find out more on <property>skinnability</property> possibilities, follow these steps:</para>
<itemizedlist>
- <listitem> Create a custom render kit and register it in the faces-config.xml like this: <programlisting role="XML"><![CDATA[<render-kit>
+ <listitem><para> Create a custom render kit and register it in the faces-config.xml like this: </para><programlisting role="XML"><![CDATA[<render-kit>
<render-kit-id>NEW_SKIN</render-kit-id>
<render-kit-class>
org.ajax4jsf.framework.renderer.ChameleonRenderKitImpl
</render-kit-class>
</render-kit>]]></programlisting>
</listitem>
- <listitem> Then you need to create and register custom renderers for the component based on
- the look-and-feel predefined variables: <programlisting role="XML"><![CDATA[<renderer>
+ <listitem><para> Then you need to create and register custom renderers for the component based on
+ the look-and-feel predefined variables: </para><programlisting role="XML"><![CDATA[<renderer>
<component-family>javax.faces.Command</component-family>
<renderer-type>javax.faces.Link</renderer-type>
<renderer-class>
@@ -1578,15 +1582,15 @@
</renderer-class>
</renderer>]]></programlisting>
</listitem>
- <listitem> Finally, you need to place a properties file with skin parameters into the class
- path root. There are two requirements for the properties file: <itemizedlist>
- <listitem> The file must be named <emphasis role="bold">
+ <listitem><para> Finally, you need to place a properties file with skin parameters into the class
+ path root. There are two requirements for the properties file: </para><itemizedlist>
+ <listitem><para> The file must be named <emphasis role="bold">
<property><skinName></property>
</emphasis>.skin.properties, in this case, it would be called
- <filename>newskin.skin.properties</filename>. </listitem>
- <listitem> The first line in this file should be render.kit= <emphasis role="bold"
+ <filename>newskin.skin.properties</filename>. </para></listitem>
+ <listitem><para> The first line in this file should be render.kit= <emphasis role="bold"
><property><render-kit-id></property>,</emphasis> in this case, it
- would be called render.kit=NEW_SKIN. </listitem>
+ would be called render.kit=NEW_SKIN. </para></listitem>
</itemizedlist>
</listitem>
</itemizedlist>
@@ -1615,31 +1619,31 @@
<itemizedlist>
<listitem>
<para>
- <property><emphasis><property>Basic</property></emphasis></property> provides customization only basic style properties.
+ <emphasis><property>Basic</property></emphasis> provides customization only basic style properties.
</para>
<para>
To the following browsers Basic level of skinning is applied:
</para>
<itemizedlist>
- <listitem>Internet Explorer 6 </listitem>
- <listitem>Internet Explorer 7 in BackCompat mode (see <ulink url="http://msdn2.microsoft.com/en-us/library/ms533687(VS.85).aspx">document.compatMode property in MSDN</ulink>) </listitem>
- <listitem>Opera </listitem>
- <listitem>Safari</listitem>
+ <listitem><para>Internet Explorer 6 </para></listitem>
+ <listitem><para>Internet Explorer 7 in BackCompat mode (see <ulink url="http://msdn2.microsoft.com/en-us/library/ms533687(VS.85).aspx">document.compatMode property in MSDN</ulink>) </para></listitem>
+ <listitem><para>Opera </para></listitem>
+ <listitem><para>Safari</para></listitem>
</itemizedlist>
</listitem>
<listitem>
<para>
- <property>
- <emphasis><property>Advanced</property></emphasis></property> extends basic level introducing broader
+
+ <emphasis><property>Advanced</property></emphasis> extends basic level introducing broader
number of style properties and is applied to browsers with rich visual styling capability of controls
</para>
<para>
The following browsers support Advanced level of skinning:
</para>
<itemizedlist>
- <listitem>Mozilla Firefox</listitem>
- <listitem>Internet Explorer 7 in Standards-compliant mode (CSS1Compat mode)</listitem>
+ <listitem><para>Mozilla Firefox</para></listitem>
+ <listitem><para>Internet Explorer 7 in Standards-compliant mode (CSS1Compat mode)</para></listitem>
</itemizedlist>
</listitem>
@@ -1651,15 +1655,15 @@
These are the elements that affected by skinning:
</para>
<itemizedlist>
- <listitem><property>input</property></listitem>
- <listitem><property>select</property></listitem>
- <listitem><property>textarea</property></listitem>
- <listitem><property>keygen</property></listitem>
- <listitem><property>isindex</property></listitem>
- <listitem><property>legend</property></listitem>
- <listitem><property>fieldset</property></listitem>
- <listitem><property>hr</property></listitem>
- <listitem><property>a (together with a:hover, a:visited "pseudo"-elements)</property></listitem>
+ <listitem><para><property>input</property></para></listitem>
+ <listitem><para><property>select</property></para></listitem>
+ <listitem><para><property>textarea</property></para></listitem>
+ <listitem><para><property>keygen</property></para></listitem>
+ <listitem><para><property>isindex</property></para></listitem>
+ <listitem><para><property>legend</property></para></listitem>
+ <listitem><para><property>fieldset</property></para></listitem>
+ <listitem><para><property>hr</property></para></listitem>
+ <listitem><para><property>a (together with a:hover, a:visited "pseudo"-elements)</property></para></listitem>
</itemizedlist>
16 years, 9 months
JBoss Rich Faces SVN: r7945 - branches/3.1.x/ui/calendar/src/main/java/org/richfaces/component.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-04-18 11:57:36 -0400 (Fri, 18 Apr 2008)
New Revision: 7945
Modified:
branches/3.1.x/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java
Log:
http://jira.jboss.com/jira/browse/RF-3142
Modified: branches/3.1.x/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java
===================================================================
--- branches/3.1.x/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java 2008-04-18 15:54:06 UTC (rev 7944)
+++ branches/3.1.x/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java 2008-04-18 15:57:36 UTC (rev 7945)
@@ -55,9 +55,7 @@
import org.richfaces.model.CalendarDataModelItem;
import org.richfaces.renderkit.CalendarRendererBase;
-import java.text.DateFormat;
-
// import org.richfaces.renderkit.html.BaseGradient.Data;
/**
@@ -66,6 +64,29 @@
*/
public abstract class UICalendar extends UIInput implements AjaxComponent {
+ /**
+ * firstWeekDay
+ * Gets what the first day of the week is; e.g., SUNDAY in the U.S., MONDAY in France.
+ */
+ private int _firstWeekDay = getDefaultFirstWeekDay();
+ /**
+ * Flag indicated what firstWeekDay is set.
+ */
+ private boolean _firstWeekDaySet = false;
+
+ /**
+ * minDaysInFirstWeek
+ * Gets what the minimal days required in the first week of the year
+ are; e.g., if the first week is defined as one that contains the first
+ day of the first month of a year, this method returns 1. If the
+ minimal days required must be a full week, this method returns 7.
+ */
+ private int _minDaysInFirstWeek = getDefaultMinDaysInFirstWeek();
+ /**
+ * Flag indicated what minDaysInFirstWeek is set.
+ */
+ private boolean _minDaysInFirstWeekSet = false;
+
public static final String COMPONENT_TYPE = "org.richfaces.Calendar";
private static final String COMPONENT_FAMILY = "org.richfaces.Calendar";
@@ -205,12 +226,6 @@
public abstract void setShowApplyButton(boolean showApplyButton);
- public abstract int getFirstWeekDay();
- public abstract void setFirstWeekDay(int firstWeekDay);
-
- public abstract int getMinDaysInFirstWeek();
- public abstract void setMinDaysInFirstWeek(int minDaysInFirstWeek);
-
// TODO onclick add users onclick
// currentDate processing -------------------------------------------------
@@ -621,4 +636,95 @@
return getCalendar().getMinimalDaysInFirstWeek();
}
+ /**
+ * Gets what the minimal days required in the first week of the year
+ are; e.g., if the first week is defined as one that contains the first
+ day of the first month of a year, this method returns 1. If the
+ minimal days required must be a full week, this method returns 7.
+ * Setter for minDaysInFirstWeek
+ * @param minDaysInFirstWeek - new value
+ */
+ public void setMinDaysInFirstWeek( int __minDaysInFirstWeek ){
+ this._minDaysInFirstWeek = __minDaysInFirstWeek;
+ this._minDaysInFirstWeekSet = true;
+ }
+
+
+ /**
+ * Gets what the minimal days required in the first week of the year
+ are; e.g., if the first week is defined as one that contains the first
+ day of the first month of a year, this method returns 1. If the
+ minimal days required must be a full week, this method returns 7.
+ * Getter for minDaysInFirstWeek
+ * @return minDaysInFirstWeek value from local variable or value bindings
+ */
+ public int getMinDaysInFirstWeek( ){
+ if(this._minDaysInFirstWeekSet){
+ return this._minDaysInFirstWeek;
+ }
+ ValueBinding vb = getValueBinding("minDaysInFirstWeek");
+ if (vb != null) {
+ Integer value = (Integer) vb.getValue(getFacesContext());
+ if (null == value) {
+ return getDefaultMinDaysInFirstWeek();
+ }
+ return (value.intValue());
+ } else {
+ return getDefaultMinDaysInFirstWeek();
+ }
+ }
+ /**
+ * Gets what the first day of the week is; e.g., SUNDAY in the U.S., MONDAY in France.
+ * Setter for firstWeekDay
+ * @param firstWeekDay - new value
+ */
+ public void setFirstWeekDay( int __firstWeekDay ){
+ this._firstWeekDay = __firstWeekDay;
+ this._firstWeekDaySet = true;
+ }
+
+
+ /**
+ * Gets what the first day of the week is; e.g., SUNDAY in the U.S., MONDAY in France.
+ * Getter for firstWeekDay
+ * @return firstWeekDay value from local variable or value bindings
+ */
+ public int getFirstWeekDay( ){
+ if(this._firstWeekDaySet){
+ return this._firstWeekDay;
+ }
+ ValueBinding vb = getValueBinding("firstWeekDay");
+ if (vb != null) {
+ Integer value = (Integer) vb.getValue(getFacesContext());
+ if (null == value) {
+ return getDefaultFirstWeekDay();
+ }
+ return (value.intValue());
+ } else {
+ return getDefaultFirstWeekDay();
+ }
+ }
+
+ public Object saveState(FacesContext context) {
+ return new Object [] {
+ super.saveState(context),
+
+ new Integer(_firstWeekDay),
+ new Boolean(_firstWeekDaySet),
+
+ new Integer(_minDaysInFirstWeek),
+ new Boolean(_minDaysInFirstWeekSet)
+ };
+ }
+
+ public void restoreState(FacesContext context, Object state) {
+ Object[] states = (Object[]) state;
+ super.restoreState(context, states[0]);
+
+ _firstWeekDay = ((Integer)states[1]).intValue();
+ _firstWeekDaySet = ((Boolean)states[2]).booleanValue();
+
+ _minDaysInFirstWeek = ((Integer)states[3]).intValue();
+ _minDaysInFirstWeekSet = ((Boolean)states[4]).booleanValue();
+ }
}
16 years, 9 months
JBoss Rich Faces SVN: r7944 - trunk/ui/tree/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2008-04-18 11:54:06 -0400 (Fri, 18 Apr 2008)
New Revision: 7944
Modified:
trunk/ui/tree/src/main/config/component/tree.xml
Log:
http://jira.jboss.com/jira/browse/RF-2220
Adding default values
Modified: trunk/ui/tree/src/main/config/component/tree.xml
===================================================================
--- trunk/ui/tree/src/main/config/component/tree.xml 2008-04-18 15:53:54 UTC (rev 7943)
+++ trunk/ui/tree/src/main/config/component/tree.xml 2008-04-18 15:54:06 UTC (rev 7944)
@@ -140,20 +140,20 @@
<property>
<name>preserveDataInRequest</name>
<classname>boolean</classname>
- <description>If "true", data is preserved in a request</description>
+ <description>If "true", data is preserved in a request. Default value is "true".</description>
<defaultvalue>true</defaultvalue>
</property>
<property>
<name>ajaxSubmitSelection</name>
<classname>boolean</classname>
- <description>If "true", an Ajax request to be submit when selecting node</description>
+ <description>If "true", an Ajax request to be submit when selecting node. Default value is "false".</description>
<defaultvalue>false</defaultvalue>
</property>
<property>
<name>preserveModel</name>
<classname>java.lang.String</classname>
- <description>It can be "state", "request", "none". The default is "request"</description>
+ <description>Possible values are "state", "request", "none". Default value is "request"</description>
<defaultvalue>"request"</defaultvalue>
</property>
<property>
@@ -200,7 +200,7 @@
<name>dragValue</name>
<classname>java.lang.Object</classname>
<description>
- Data to be sent to the drop zone after a drop event
+ Data to be sent to the drop zone after a drop event. Default value is "getRowKey()".
</description>
<defaultvalue>getRowKey()</defaultvalue>
</property>
@@ -209,7 +209,7 @@
<name>dropValue</name>
<classname>java.lang.Object</classname>
<description>
- Data to be processed after a drop event
+ Data to be processed after a drop event. Default value is "getRowKey()".
</description>
<defaultvalue>getRowKey()</defaultvalue>
</property>
@@ -221,7 +221,7 @@
If "false" do not toggle node state on click.
If "true", than node will be toggles on click on ether node content,
or node icon.
- Default value is false.
+ Default value is "false".
</description>
<defaultvalue>false</defaultvalue>
</property>
16 years, 9 months
JBoss Rich Faces SVN: r7943 - trunk/ui/progressBAR/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2008-04-18 11:53:54 -0400 (Fri, 18 Apr 2008)
New Revision: 7943
Modified:
trunk/ui/progressBAR/src/main/config/component/progressBar.xml
Log:
http://jira.jboss.com/jira/browse/RF-2220
Adding default values
Modified: trunk/ui/progressBAR/src/main/config/component/progressBar.xml
===================================================================
--- trunk/ui/progressBAR/src/main/config/component/progressBar.xml 2008-04-18 15:53:43 UTC (rev 7942)
+++ trunk/ui/progressBAR/src/main/config/component/progressBar.xml 2008-04-18 15:53:54 UTC (rev 7943)
@@ -32,7 +32,7 @@
</taghandler>
&ui_component_attributes;
&ui_command_attributes;
- &html_style_attributes;
+ &html_style_attributes;
&ajax_component_attributes;
&html_events;
<property>
@@ -43,7 +43,7 @@
<property>
<name>mode</name>
<classname>java.lang.String</classname>
- <description>Attributes defines AJAX or CLIENT modes for component</description>
+ <description>Attributes defines AJAX or CLIENT modes for component. Possible values are "ajax", "client". Default value is "client".</description>
<defaultvalue><![CDATA["ajax"]]></defaultvalue>
</property>
<property>
@@ -59,19 +59,19 @@
<property hidden="true">
<name>dualColoredLabel</name>
<classname>java.lang.Boolean</classname>
- <description>Defines if component renderes as simple markup</description>
+ <description>Defines if component renderes as simple markup. Default value is "false".</description>
<defaultvalue>false</defaultvalue>
</property>
<property>
<name>minValue</name>
<classname>java.lang.Object</classname>
- <description>Min value when initial state should be rendered</description>
+ <description>Min value when initial state should be rendered. Default value is "0".</description>
<defaultvalue>0</defaultvalue>
</property>
<property>
<name>maxValue</name>
<classname>java.lang.Object</classname>
- <description>Max value, after which complete state should be rendered</description>
+ <description>Max value, after which complete state should be rendered. Default value is "100".</description>
<defaultvalue>100</defaultvalue>
</property>
<property>
@@ -130,7 +130,7 @@
<classname>int</classname>
<description>
Interval (in ms) for call poll requests. Default value
- 1000 (1 sec)
+ 1000 ms (1 sec)
</description>
<defaultvalue>1000</defaultvalue>
</property>
@@ -138,7 +138,7 @@
<name>enabled</name>
<classname>boolean</classname>
<description>
- <![CDATA[Enables/disables polling]]>
+ <![CDATA[Enables/disables polling. Default value is "true".]]>
</description>
<defaultvalue>true</defaultvalue>
</property>
16 years, 9 months
JBoss Rich Faces SVN: r7942 - trunk/ui/pickList/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2008-04-18 11:53:43 -0400 (Fri, 18 Apr 2008)
New Revision: 7942
Modified:
trunk/ui/pickList/src/main/config/component/picklist.xml
Log:
http://jira.jboss.com/jira/browse/RF-2220
Adding default values
Modified: trunk/ui/pickList/src/main/config/component/picklist.xml
===================================================================
--- trunk/ui/pickList/src/main/config/component/picklist.xml 2008-04-18 15:53:20 UTC (rev 7941)
+++ trunk/ui/pickList/src/main/config/component/picklist.xml 2008-04-18 15:53:43 UTC (rev 7942)
@@ -110,11 +110,7 @@
<description>A ValueExpression enabled attribute that, if present, will be used as the text of the converter message, replacing any message that comes from the converter</description>
</property>
- <property>
- <name>disabled</name>
- <classname>boolean</classname>
- <description>If "true", controls is disabled. "false" is default</description>
- </property>
+
<property>
<name>disabledStyle</name>
16 years, 9 months
JBoss Rich Faces SVN: r7941 - trunk/ui/inplaceSelect/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2008-04-18 11:53:20 -0400 (Fri, 18 Apr 2008)
New Revision: 7941
Modified:
trunk/ui/inplaceSelect/src/main/config/component/inplaceselect.xml
Log:
http://jira.jboss.com/jira/browse/RF-2220
Adding default values
Modified: trunk/ui/inplaceSelect/src/main/config/component/inplaceselect.xml
===================================================================
--- trunk/ui/inplaceSelect/src/main/config/component/inplaceselect.xml 2008-04-18 15:17:08 UTC (rev 7940)
+++ trunk/ui/inplaceSelect/src/main/config/component/inplaceselect.xml 2008-04-18 15:53:20 UTC (rev 7941)
@@ -34,26 +34,26 @@
<property>
<name>layout</name>
<classname>java.lang.String</classname>
- <description>Defines how the component is displayed in the layout, can be block or inline</description>
+ <description>Defines how the component is displayed in the layout. Possible values are "block", "inline". Default value is "inline".</description>
<defaultvalue><![CDATA["inline"]]></defaultvalue>
</property>
<property>
<name>editEvent</name>
<classname>java.lang.String</classname>
- <description>The attribute provides an option to assign an JavaScript action that initiates the change of the state</description>
+ <description>The attribute provides an option to assign an JavaScript action that initiates the change of the state. Default value is "onclick".</description>
<defaultvalue><![CDATA["onclick"]]></defaultvalue>
</property>
<property>
<name>maxSelectWidth</name>
<classname>java.lang.String</classname>
- <description>Sets the maximum width of the select element</description>
+ <description>Sets the maximum width of the select element. Default value is "200px".</description>
<defaultvalue><![CDATA["200px"]]></defaultvalue>
</property>
<property>
<name>minSelectWidth</name>
<classname>java.lang.String</classname>
- <description>Sets the minimum width of the select element</description>
+ <description>Sets the minimum width of the select element. Default value is "100px".</description>
<defaultvalue><![CDATA["100px"]]></defaultvalue>
</property>
<property>
@@ -71,7 +71,7 @@
<property>
<name>showControls</name>
<classname>boolean</classname>
- <description>The attribute serves to display "save" and "cancel" controls</description>
+ <description>The attribute serves to display "save" and "cancel" controls. Default value is "false". </description>
<defaultvalue>false</defaultvalue>
</property>
<property>
@@ -87,13 +87,13 @@
<property>
<name>controlsVerticalPosition</name>
<classname>java.lang.String</classname>
- <description>The attribute postions the controls vertically</description>
+ <description>The attribute positions the controls vertically. Possible values are "bottom","center","top". Default value is "center". </description>
<defaultvalue><![CDATA["center"]]></defaultvalue>
</property>
<property>
<name>controlsHorizontalPosition</name>
<classname>java.lang.String</classname>
- <description>The attribute postions the controls horizontally</description>
+ <description>The attribute positions the controls horizontally. Possible values are "right","center","left". Default value is "right". </description>
<defaultvalue><![CDATA["right"]]></defaultvalue>
</property>
<property>
@@ -199,7 +199,7 @@
<property>
<name>selectOnEdit</name>
<classname>boolean</classname>
- <description>The attribute make the input field select when switched to edit state</description>
+ <description>The attribute make the input field select when switched to edit state. Default value is "false".</description>
<defaultvalue>false</defaultvalue>
</property>
<property>
@@ -216,26 +216,26 @@
<property>
<name>listWidth</name>
<classname>java.lang.String</classname>
- <description>The attribute defines the width of option list</description>
+ <description>The attribute defines the width of option list. Default value is "200px".</description>
<defaultvalue>"200px"</defaultvalue>
</property>
<property>
<name>listHeight</name>
<classname>java.lang.String</classname>
- <description>The attribute defines the height of option list</description>
+ <description>The attribute defines the height of option list. Default value is "200px".</description>
<defaultvalue>"200px"</defaultvalue>
</property>
<property>
<name>editOnTab</name>
<classname>boolean</classname>
- <description>The attribute activates edit state once Tab key pressed</description>
+ <description>The attribute activates edit state once Tab key pressed. Default value is "true".</description>
<defaultvalue>true</defaultvalue>
</property>
<property>
<name>openOnEdit</name>
<classname>boolean</classname>
- <description>The attribure opens the list once edit activated</description>
+ <description>The attribute opens the list once edit activated. Default value is "true".</description>
<defaultvalue>true</defaultvalue>
</property>
<property>
16 years, 9 months