JBoss Rich Faces SVN: r15612 - in branches/community/3.3.X/test-applications/seleniumTest/richfaces/src: test/java/org/richfaces/testng and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2009-09-17 12:35:38 -0400 (Thu, 17 Sep 2009)
New Revision: 15612
Modified:
branches/community/3.3.X/test-applications/seleniumTest/richfaces/src/main/webapp/pages/inputNumberSlider/styleAndClasseStandardHTMLAttributesTest.xhtml
branches/community/3.3.X/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/GmapTest.java
Log:
RFPL-143
Modified: branches/community/3.3.X/test-applications/seleniumTest/richfaces/src/main/webapp/pages/inputNumberSlider/styleAndClasseStandardHTMLAttributesTest.xhtml
===================================================================
(Binary files differ)
Modified: branches/community/3.3.X/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/GmapTest.java
===================================================================
--- branches/community/3.3.X/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/GmapTest.java 2009-09-17 14:35:02 UTC (rev 15611)
+++ branches/community/3.3.X/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/GmapTest.java 2009-09-17 16:35:38 UTC (rev 15612)
@@ -26,7 +26,7 @@
* component with rendered = false is not present on the page,
* style and classes, standard HTML attributes are output to client
*/
- @Test
+ @Test(groups=FAILURES_GROUP)
public void testStandardAttributes(Template template) {
AutoTester autoTester = getAutoTester(this);
autoTester.renderPage(template, null);
16 years, 1 month
JBoss Rich Faces SVN: r15611 - branches/community/3.3.X/ui/menu-components/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-09-17 10:35:02 -0400 (Thu, 17 Sep 2009)
New Revision: 15611
Modified:
branches/community/3.3.X/ui/menu-components/src/main/resources/org/richfaces/renderkit/html/scripts/menu.js
Log:
https://jira.jboss.org/jira/browse/RF-7908
Modified: branches/community/3.3.X/ui/menu-components/src/main/resources/org/richfaces/renderkit/html/scripts/menu.js
===================================================================
--- branches/community/3.3.X/ui/menu-components/src/main/resources/org/richfaces/renderkit/html/scripts/menu.js 2009-09-17 13:53:05 UTC (rev 15610)
+++ branches/community/3.3.X/ui/menu-components/src/main/resources/org/richfaces/renderkit/html/scripts/menu.js 2009-09-17 14:35:02 UTC (rev 15611)
@@ -1246,34 +1246,29 @@
var icon = item.getIcon();
var labl = item.getLabel();
- var hoverClass = item.getHoverClasses();
- var iconHoverClass = item.getIconHoverClasses();
- var labelHoverClass = item.getLabelHoverClasses();
-
var inlineStyle = item.getInlineStyle();
var hoverStyle = item.getHoverStyle();
element.style.cssText = inlineStyle.concat(hoverStyle);
+ var hoverClass = item.getHoverClasses();
this.replaceClasses(element, this.getClassNames(item), this.getHoverClassNames(item).concat(hoverClass));
- this.replaceClasses(icon, this.iconClassNames, this.hoverIconClassNames.concat(iconHoverClass));
- this.replaceClasses(labl, this.labelClassNames, this.hoverLabelClassNames.concat(labelHoverClass));
+
+ this.replaceClasses(icon, this.iconClassNames, this.hoverIconClassNames);
+ this.replaceClasses(labl, this.labelClassNames, this.hoverLabelClassNames);
},
onmouseout : function(item) {
var element = item.getElement();
var icon = item.getIcon();
var labl = item.getLabel();
- var hoverClass = item.getHoverClasses();
- var iconHoverClass = item.getIconHoverClasses();
- var labelHoverClass = item.getLabelHoverClasses();
-
var inlineStyle = item.getInlineStyle();
element.style.cssText = inlineStyle;
+ var hoverClass = item.getHoverClasses();
this.replaceClasses(element, this.getHoverClassNames(item).concat(hoverClass), this.getClassNames(item));
- this.replaceClasses(icon, this.hoverIconClassNames.concat(iconHoverClass), this.iconClassNames);
- this.replaceClasses(labl, this.hoverLabelClassNames.concat(labelHoverClass), this.labelClassNames);
- }
+ this.replaceClasses(icon, this.hoverIconClassNames, this.iconClassNames);
+ this.replaceClasses(labl, this.hoverLabelClassNames, this.labelClassNames);
+ }
};
RichFaces.Menu.isWithin = function (event, element) {
@@ -1369,14 +1364,12 @@
return this.options.selectStyle || "";
},
getHoverClasses: function() {
- return $A(this.options.selectClass).compact();
+ if (this.options.selectClass) {
+ return this.options.selectClass.split(/\s+/).compact();
+ } else {
+ return [];
+ }
},
- getIconHoverClasses : function() {
- return $A(this.options.iconHoverClass).compact();
- },
- getLabelHoverClasses : function() {
- return $A(this.options.labelHoverClass).compact();
- },
isDisabled : function() {
//console.log(this.id + (!!this.options.disabled));
@@ -1402,14 +1395,19 @@
this.mouseOver = true;
this.highLightGroup(true);
}
+
RichFaces.Menu.Items.onmouseover(this);
- var menuOptions = this.menu.options;
- element.className = 'rich-menu-item rich-menu-item-hover '
- + this.options.styleClass || "" + " " + this.options.selectClass || "" + " " + menuOptions.selectItemClass || "";
- element.style.cssText = this.options.style || "" + "; " + menuOptions.itemStyle || ""
- + this.options.selectStyle || "" + "; " + menuOptions.selectItemStyle || "";
- this.getIcon().className='rich-menu-item-icon rich-menu-item-icon-selected ' + (this.options.iconClass || '');
- Element.addClassName(this.getLabel(), 'rich-menu-item-label-selected');
+
+ if (this.options.flagGroup != 1) {
+ var menuOptions = this.menu.options;
+ element.className = 'rich-menu-item rich-menu-item-hover '
+ + (this.options.styleClass || "") + " " + (this.options.selectClass || "") + " "
+ + (menuOptions.selectItemClass || "");
+ element.style.cssText = (this.options.style || "") + "; " + (menuOptions.itemStyle || "")
+ + (this.options.selectStyle || "") + "; " + (menuOptions.selectItemStyle || "");
+ this.getIcon().className='rich-menu-item-icon rich-menu-item-icon-selected ' + (this.options.iconClass || '');
+ Element.addClassName(this.getLabel(), 'rich-menu-item-label-selected');
+ }
},
onmouseout : function(event) {
Event.extend(event);
@@ -1431,13 +1429,17 @@
this.mouseOver = false;
this.highLightGroup(false);
}
+
RichFaces.Menu.Items.onmouseout(this);
- var menuOptions = this.menu.options;
- element.className = 'rich-menu-item rich-menu-item-enabled '
- + this.options.styleClass || "" + " " + menuOptions.itemClass || "";
- element.style.cssText = this.options.style || "" + "; " + menuOptions.itemStyle || "";
- this.getIcon().className='rich-menu-item-icon ' + this.options.iconClass || "";
- Element.removeClassName(this.getLabel(), 'rich-menu-item-label-selected');
+
+ if (this.options.flagGroup != 1) {
+ var menuOptions = this.menu.options;
+ element.className = 'rich-menu-item rich-menu-item-enabled '
+ + (this.options.styleClass || "") + " " + (menuOptions.itemClass || "");
+ element.style.cssText = (this.options.style || "") + "; " + (menuOptions.itemStyle || "");
+ this.getIcon().className='rich-menu-item-icon ' + (this.options.iconClass || "");
+ Element.removeClassName(this.getLabel(), 'rich-menu-item-label-selected');
+ }
},
highLightGroup: function(light) {
if (light) {
16 years, 1 month
JBoss Rich Faces SVN: r15610 - in branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/profiles: windows and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: ppitonak(a)redhat.com
Date: 2009-09-17 09:53:05 -0400 (Thu, 17 Sep 2009)
New Revision: 15610
Modified:
branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/profiles/mac/testng.xml
branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/profiles/windows/testng.xml
Log:
* testng.xml for windows and mac synchronized with unix version
Modified: branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/profiles/mac/testng.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/profiles/mac/testng.xml 2009-09-17 13:52:57 UTC (rev 15609)
+++ branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/profiles/mac/testng.xml 2009-09-17 13:53:05 UTC (rev 15610)
@@ -167,22 +167,27 @@
name="org.jboss.richfaces.integrationTest.dataTable.DataTableTestCase" />
</classes>
</test>
-
- <test
- name="org.jboss.richfaces.integrationTest.dataTable.TableFilteringTestCase">
+
+ <test name="org.jboss.richfaces.integrationTest.dataTable.EditTableWithModalPanelTestCase">
<classes>
<class
- name="org.jboss.richfaces.integrationTest.dataTable.TableFilteringTestCase" />
+ name="org.jboss.richfaces.integrationTest.dataTable.EditTableWithModalPanelTestCase" />
</classes>
</test>
-
- <test
- name="org.jboss.richfaces.integrationTest.dataTable.TableSortingTestCase">
+
+ <test name="org.jboss.richfaces.integrationTest.dataTable.ExtendedDataModelTestCase">
<classes>
<class
- name="org.jboss.richfaces.integrationTest.dataTable.TableSortingTestCase" />
+ name="org.jboss.richfaces.integrationTest.dataTable.ExtendedDataModelTestCase" />
</classes>
</test>
+
+ <test name="org.jboss.richfaces.integrationTest.dataTable.ModifiableDataModelTestCase">
+ <classes>
+ <class
+ name="org.jboss.richfaces.integrationTest.dataTable.ModifiableDataModelTestCase" />
+ </classes>
+ </test>
<test
name="org.jboss.richfaces.integrationTest.dragSupport.DragSupportTestCase">
@@ -216,12 +221,44 @@
</test>
<test
- name="org.jboss.richfaces.integrationTest.extendedDataTable.ExtendedDataTableTestCase">
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.DraggingTestCase">
<classes>
<class
- name="org.jboss.richfaces.integrationTest.extendedDataTable.ExtendedDataTableTestCase" />
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.DraggingTestCase" />
</classes>
</test>
+
+ <test
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.FilteringTestCase">
+ <classes>
+ <class
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.FilteringTestCase" />
+ </classes>
+ </test>
+
+ <test
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.GroupingTestCase">
+ <classes>
+ <class
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.GroupingTestCase" />
+ </classes>
+ </test>
+
+ <test
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.SelectingTestCase">
+ <classes>
+ <class
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.SelectingTestCase" />
+ </classes>
+ </test>
+
+ <test
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.SortingTestCase">
+ <classes>
+ <class
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.SortingTestCase" />
+ </classes>
+ </test>
<test
name="org.jboss.richfaces.integrationTest.fileUpload.FileUploadTestCase">
@@ -470,7 +507,23 @@
name="org.jboss.richfaces.integrationTest.suggestionBox.SuggestionBoxTestCase" />
</classes>
</test>
+
+ <test
+ name="org.jboss.richfaces.integrationTest.tableFiltering.TableFilteringTestCase">
+ <classes>
+ <class
+ name="org.jboss.richfaces.integrationTest.tableFiltering.TableFilteringTestCase" />
+ </classes>
+ </test>
+ <test
+ name="org.jboss.richfaces.integrationTest.tableSorting.TableSortingTestCase">
+ <classes>
+ <class
+ name="org.jboss.richfaces.integrationTest.tableSorting.TableSortingTestCase" />
+ </classes>
+ </test>
+
<test name="org.jboss.richfaces.integrationTest.tabPanel.TabPanelTestCase">
<classes>
<class
Modified: branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/profiles/windows/testng.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/profiles/windows/testng.xml 2009-09-17 13:52:57 UTC (rev 15609)
+++ branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/profiles/windows/testng.xml 2009-09-17 13:53:05 UTC (rev 15610)
@@ -167,22 +167,27 @@
name="org.jboss.richfaces.integrationTest.dataTable.DataTableTestCase" />
</classes>
</test>
-
- <test
- name="org.jboss.richfaces.integrationTest.dataTable.TableFilteringTestCase">
+
+ <test name="org.jboss.richfaces.integrationTest.dataTable.EditTableWithModalPanelTestCase">
<classes>
<class
- name="org.jboss.richfaces.integrationTest.dataTable.TableFilteringTestCase" />
+ name="org.jboss.richfaces.integrationTest.dataTable.EditTableWithModalPanelTestCase" />
</classes>
</test>
-
- <test
- name="org.jboss.richfaces.integrationTest.dataTable.TableSortingTestCase">
+
+ <test name="org.jboss.richfaces.integrationTest.dataTable.ExtendedDataModelTestCase">
<classes>
<class
- name="org.jboss.richfaces.integrationTest.dataTable.TableSortingTestCase" />
+ name="org.jboss.richfaces.integrationTest.dataTable.ExtendedDataModelTestCase" />
</classes>
</test>
+
+ <test name="org.jboss.richfaces.integrationTest.dataTable.ModifiableDataModelTestCase">
+ <classes>
+ <class
+ name="org.jboss.richfaces.integrationTest.dataTable.ModifiableDataModelTestCase" />
+ </classes>
+ </test>
<test
name="org.jboss.richfaces.integrationTest.dragSupport.DragSupportTestCase">
@@ -216,12 +221,44 @@
</test>
<test
- name="org.jboss.richfaces.integrationTest.extendedDataTable.ExtendedDataTableTestCase">
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.DraggingTestCase">
<classes>
<class
- name="org.jboss.richfaces.integrationTest.extendedDataTable.ExtendedDataTableTestCase" />
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.DraggingTestCase" />
</classes>
</test>
+
+ <test
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.FilteringTestCase">
+ <classes>
+ <class
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.FilteringTestCase" />
+ </classes>
+ </test>
+
+ <test
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.GroupingTestCase">
+ <classes>
+ <class
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.GroupingTestCase" />
+ </classes>
+ </test>
+
+ <test
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.SelectingTestCase">
+ <classes>
+ <class
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.SelectingTestCase" />
+ </classes>
+ </test>
+
+ <test
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.SortingTestCase">
+ <classes>
+ <class
+ name="org.jboss.richfaces.integrationTest.extendedDataTable.SortingTestCase" />
+ </classes>
+ </test>
<test
name="org.jboss.richfaces.integrationTest.fileUpload.FileUploadTestCase">
@@ -470,7 +507,23 @@
name="org.jboss.richfaces.integrationTest.suggestionBox.SuggestionBoxTestCase" />
</classes>
</test>
+
+ <test
+ name="org.jboss.richfaces.integrationTest.tableFiltering.TableFilteringTestCase">
+ <classes>
+ <class
+ name="org.jboss.richfaces.integrationTest.tableFiltering.TableFilteringTestCase" />
+ </classes>
+ </test>
+ <test
+ name="org.jboss.richfaces.integrationTest.tableSorting.TableSortingTestCase">
+ <classes>
+ <class
+ name="org.jboss.richfaces.integrationTest.tableSorting.TableSortingTestCase" />
+ </classes>
+ </test>
+
<test name="org.jboss.richfaces.integrationTest.tabPanel.TabPanelTestCase">
<classes>
<class
16 years, 1 month
JBoss Rich Faces SVN: r15609 - branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2009-09-17 09:52:57 -0400 (Thu, 17 Sep 2009)
New Revision: 15609
Modified:
branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
Log:
https://jira.jboss.org/jira/browse/RF-7471
the table is added
Modified: branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-09-17 11:54:17 UTC (rev 15608)
+++ branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-09-17 13:52:57 UTC (rev 15609)
@@ -1142,7 +1142,418 @@
</entry>
</row>
+
+ <row>
+ <entry>limitToList</entry>
+ <entry>If "true", then of all AJAX-rendered on the page components only those will be updated,
+ which ID's are passed to the "reRender" attribute of the describable component.
+ "false"-the default value-means that all components with ajaxRendered="true" will be updated.
+ </entry>
+ <entry><para><a4j:form></para>
+ <para><a4j:support></para>
+ <para><a4j:commandButton></para>
+ <para><a4j:jsFunction></para>
+ <para><a4j:poll></para>
+ <para><a4j:push></para>
+ </entry>
+ <entry><para><rich:ajaxValidator></para>
+ <para><rich:dataFilterSlider></para>
+ <para><rich:datascroller></para>
+ <para><rich:dragSupport></para>
+ <para><rich:dropSupport></para>
+ <para><rich:menuItem></para>
+ <para><rich:tree></para>
+ <para><rich:treeNode></para>
+ <para><rich:panelMenuGroup></para>
+ <para><rich:panelMenuItem></para>
+ <para><rich:progressBar></para>
+ <para><rich:simpleTogglePanel></para>
+ <para><rich:tab></para>
+ <para><rich:toggleControl></para>
+ <para><rich:calendar></para>
+ <para><rich:suggestionbox></para>
+ </entry>
+ </row>
+ <row>
+ <entry>reRender</entry>
+ <entry>Id['s] (in format of call UIComponent.findComponent()) of components, rendered in case of AjaxRequest caused by this component. Can be single id, comma-separated list of Id's, or EL Expression with array or Collection</entry>
+ <entry><para><a4j:form></para>
+ <para><a4j:support></para>
+ <para><a4j:commandButton></para>
+ <para><a4j:commandLink></para>
+ <para><a4j:jsFunction></para>
+ <para><a4j:poll></para>
+ <para><a4j:push></para>
+ </entry>
+ <entry><para><rich:ajaxValidator></para>
+ <para><rich:dataFilterSlider></para>
+ <para><rich:datascroller></para>
+ <para><rich:dataTable></para>
+ <para><rich:extendedDataTable></para>
+ <para><rich:scrollableDataTable></para>
+ <para><rich:dragSupport></para>
+ <para><rich:dropSupport></para>
+ <para><rich:menuItem></para>
+ <para><rich:tree></para>
+ <para><rich:treeNode></para>
+ <para><rich:panelMenuGroup></para>
+ <para><rich:panelMenuItem></para>
+ <para><rich:progressBar></para>
+ <para><rich:simpleTogglePanel></para>
+ <para><rich:tab></para>
+ <para><rich:calendar></para>
+ <para><rich:suggestionbox></para>
+ </entry>
+ </row>
+ <row>
+ <entry>process</entry>
+ <entry>Id['s] (in format of call UIComponent.findComponent()) of components, processed at the phases 2-5 in case of AjaxRequest caused by this component. Can be single id, comma-separated list of Id's, or EL Expression with array or Collection</entry>
+ <entry><para><a4j:form></para>
+ <para><a4j:support></para>
+ <para><a4j:commandButton></para>
+ <para><a4j:commandLink></para>
+ <para><a4j:jsFunction></para>
+ <para><a4j:poll></para>
+ <para><a4j:push></para>
+ </entry>
+ <entry><para><rich:dataFilterSlider></para>
+ <para><rich:datascroller></para>
+ <para><rich:dropSupport></para>
+ <para><rich:menuItem></para>
+ <para><rich:tree></para>
+ <para><rich:treeNode></para>
+ <para><rich:panelMenuGroup></para>
+ <para><rich:panelMenuItem></para>
+ <para><rich:progressBar></para>
+ <para><rich:simpleTogglePanel></para>
+ <para><rich:tab></para>
+ <para><rich:toggleControl></para>
+ <para><rich:calendar></para>
+ <para><rich:suggestionbox></para>
+ </entry>
+
+ </row>
+ <row>
+ <entry>status</entry>
+ <entry>ID (in format of call UIComponent.findComponent()) of Request status component</entry>
+ <entry><para><a4j:form></para>
+ <para><a4j:support></para>
+ <para><a4j:commandButton></para>
+ <para><a4j:commandLink></para>
+ <para><a4j:jsFunction></para>
+ <para><a4j:poll></para>
+ <para><a4j:push></para>
+ <para><a4j:queue></para>
+ </entry>
+ <entry><para><rich:ajaxValidator></para>
+ <para><rich:dataFilterSlider></para>
+ <para><rich:datascroller></para>
+ <para><rich:scrollableDataTable></para>
+ <para><rich:dragSupport></para>
+ <para><rich:dropSupport></para>
+ <para><rich:tree></para>
+ <para><rich:treeNode></para>
+ <para><rich:panelMenuGroup></para>
+ <para><rich:panelMenuItem></para>
+ <para><rich:progressBar></para>
+ <para><rich:simpleTogglePanel></para>
+ <para><rich:tab></para>
+ <para><rich:toggleControl></para>
+ <para><rich:calendar></para>
+ <para><rich:fileUpload></para>
+ <para><rich:suggestionbox></para>
+
+ </entry>
+ </row>
+ <row>
+ <entry>eventsQueue</entry>
+ <entry>Name of requests queue to avoid send next request before complete other from same event. Can be used to reduce number of requests of frequently events (key press, mouse move etc.)</entry>
+ <entry><para><a4j:form></para>
+ <para><a4j:support></para>
+ <para><a4j:commandButton></para>
+ <para><a4j:commandLink></para>
+ <para><a4j:jsFunction></para>
+ <para><a4j:poll></para>
+ <para><a4j:push></para>
+
+ </entry>
+ <entry><para><rich:ajaxValidator></para>
+ <para><rich:dataFilterSlider></para>
+ <para><rich:datascroller></para>
+ <para><rich:scrollableDataTable></para>
+ <para><rich:dragSupport></para>
+ <para><rich:dropSupport></para>
+ <para><rich:menuItem></para>
+ <para><rich:tree></para>
+ <para><rich:panelMenuGroup></para>
+ <para><rich:panelMenuItem></para>
+ <para><rich:progressBar></para>
+ <para><rich:simpleTogglePanel></para>
+ <para><rich:tab></para>
+ <para><rich:toggleControl></para>
+ <para><rich:calendar></para>
+ <para><rich:suggestionbox></para>
+ </entry>
+ </row>
+ <row>
+ <entry>requestDelay</entry>
+ <entry>Attribute defines the time (in ms.) that the request will be wait in the queue before it is ready to send.
+ When the delay time is over, the request will be sent to the server or removed if the newest 'similar' request is in a queue already
+ </entry>
+ <entry><para><a4j:form></para>
+ <para><a4j:support></para>
+ <para><a4j:commandButton></para>
+ <para><a4j:commandLink></para>
+ <para><a4j:jsFunction></para>
+ <para><a4j:queue></para>
+ </entry>
+ <entry><para><rich:ajaxValidator></para>
+ <para><rich:dataFilterSlider></para>
+ <para><rich:datascroller></para>
+ <para><rich:scrollableDataTable></para>
+ <para><rich:dragSupport></para>
+ <para><rich:dropSupport></para>
+ <para><rich:menuItem></para>
+ <para><rich:tree></para>
+ <para><rich:panelMenuGroup></para>
+ <para><rich:panelMenuGroup></para>
+ <para><rich:panelMenuItem></para>
+ <para><rich:simpleTogglePanel></para>
+ <para><rich:tab></para>
+ <para><rich:calendar></para>
+ <para><rich:suggestionbox></para>
+ </entry>
+ </row>
+ <row>
+ <entry>data</entry>
+ <entry>Serialized (on default with JSON) data passed on the client by a developer on AJAX request. It's accessible via "data.foo" syntax</entry>
+ <entry><para><a4j:form></para>
+ <para><a4j:support></para>
+ <para><a4j:commandButton></para>
+ <para><a4j:commandLink></para>
+ <para><a4j:jsFunction></para>
+ <para><a4j:poll></para>
+ <para><a4j:push></para>
+ </entry>
+ <entry><para><rich:ajaxValidator></para>
+ <para><rich:dataFilterSlider></para>
+ <para><rich:datascroller></para>
+ <para><rich:scrollableDataTable></para>
+ <para><rich:dropSupport></para>
+ <para><rich:menuItem></para>
+ <para><rich:tree></para>
+ <para><rich:treeNode></para>
+ <para><rich:paint2D></para>
+ <para><rich:panelMenuGroup></para>
+ <para><rich:panelMenuItem></para>
+ <para><rich:progressBar></para>
+ <para><rich:simpleTogglePanel></para>
+ <para><rich:tab></para>
+ <para><rich:toggleControl></para>
+ <para><rich:calendar></para>
+ </entry>
+ </row>
+ <row>
+ <entry>ignoreDupResponses</entry>
+ <entry>Attribute allows to ignore an Ajax Response produced by a request if the newest 'similar' request is
+ in a queue already. ignoreDupResponses="true" does not cancel the request while it is processed on the server,
+ but just allows to avoid unnecessary updates on the client side if the response isn't actual now
+ </entry>
+ <entry><para><a4j:form></para>
+ <para><a4j:support></para>
+ <para><a4j:commandButton></para>
+ <para><a4j:jsFunction></para>
+ <para><a4j:poll></para>
+ <para><a4j:push></para>
+ <para><a4j:queue></para>
+ </entry>
+ <entry><para><rich:ajaxValidator></para>
+ <para><rich:dataFilterSlider></para> <para><rich:datascroller></para>
+ <para><rich:scrollableDataTable></para>
+ <para><rich:dragSupport></para>
+ <para><rich:dropSupport></para>
+ <para><rich:menuItem></para>
+ <para><rich:tree></para>
+ <para><rich:treeNode></para>
+ <para><rich:panelMenuGroup></para>
+ <para><rich:panelMenuItem></para>
+ <para><rich:progressBar></para>
+ <para><rich:simpleTogglePanel></para>
+ <para><rich:tab></para>
+ <para><rich:toggleControl></para>
+ <para><rich:calendar></para>
+ <para><rich:suggestionbox></para>
+ </entry>
+ </row>
+ <row>
+ <entry>timeout</entry>
+ <entry>Response waiting time on a particular request. If a response is not received during this time, the request is aborted</entry>
+ <entry><para><a4j:form></para>
+ <para><a4j:form></para>
+ <para><a4j:support></para>
+ <para><a4j:commandButton></para>
+ <para><a4j:commandLink></para>
+ <para><a4j:jsFunction></para>
+ <para><a4j:poll></para>
+ <para><a4j:push></para>
+ <para><a4j:queue></para>
+ </entry>
+ <entry><para><rich:ajaxValidator></para>
+ <para><rich:dataFilterSlider></para>
+ <para><rich:datascroller></para>
+ <para><rich:scrollableDataTable></para>
+ <para><rich:dragSupport></para>
+ <para><rich:dropSupport></para>
+ <para><rich:menuItem></para>
+ <para><rich:tree></para>
+ <para><rich:treeNode></para>
+ <para><rich:panelMenuGroup></para>
+ <para><rich:panelMenuItem></para>
+ <para><rich:progressBar></para>
+ <para><rich:simpleTogglePanel></para>
+ <para><rich:tab></para>
+ <para><rich:toggleControl></para>
+ <para><rich:suggestionbox></para>
+ </entry>
+ </row>
+ <row>
+ <entry>similarityGroupingId</entry>
+ <entry>If there are any component requests with identical IDs then these requests will be grouped.</entry>
+ <entry><para><a4j:form></para>
+ <para><a4j:support></para>
+ <para><a4j:commandButton></para>
+ <para><a4j:commandLink></para>
+ <para><a4j:jsFunction></para>
+ <para><a4j:poll></para>
+
+ </entry>
+ <entry><para><rich:ajaxValidator></para>
+ <para><rich:dataFilterSlider></para>
+ <para><rich:datascroller></para>
+ <para><rich:scrollableDataTable></para>
+ <para><rich:dragSupport></para>
+ <para><rich:dropSupport></para>
+ <para><rich:menuItem></para>
+ <para><rich:tree></para>
+ <para><rich:treeNode></para>
+ <para><rich:panelMenuGroup></para>
+ <para><rich:panelMenuItem></para>
+ <para><rich:progressBar></para>
+ <para><rich:simpleTogglePanel></para>
+ <para><rich:tab></para>
+ <para><rich:toggleControl></para>
+ <para><rich:calendar></para>
+ <para><rich:suggestionbox></para>
+
+ <para><rich:message></para>
+ <para><rich:messages></para>
+
+ </entry>
+ </row>
+ <row>
+ <entry>keepTransient</entry>
+ <entry>Flag for mark all child components to non-transient. If "true", all children components will be set to non-transient state and keep in saved components tree.
+ For output in self-renderer region all content (By default, all content in <f:verbatim> tags and non-jsf elements in facelets, marked as transient - since, self-rendered ajax regions don't plain output for ajax processing).
+ The default value is "false".
+ </entry>
+ <entry><para><a4j:include></para>
+ <para><a4j:outputPanel></para>
+ </entry>
+ <entry> </entry>
+ </row>
+
+ <row>
+ <entry>ajaxListener</entry>
+ <entry>MethodExpression representing an action listener method that will be notified when this component is activated by the ajax Request and handle it. The expression must evaluate to a public method that takes an AjaxEvent parameter, with a return type of void.</entry>
+ <entry><para><a4j:include></para>
+ <para><a4j:outputPanel></para>
+ </entry>
+ <entry> </entry>
+ </row>
+ <row>
+ <entry>selfRendered</entry>
+ <entry>if "true", self-render subtree at InvokeApplication ( or Decode, if immediate property set to true ) phase</entry>
+ <entry><para><a4j:page></para>
+ <para><a4j:region></para>
+
+ </entry>
+ <entry><para><rich:suggestionbox></para></entry>
+ </row>
+ <row>
+ <entry>immediate</entry>
+ <entry>Flag indicating that, if this component is activated by ajaxrequest, notifications should be delivered to interested listeners and actions immediately (that is, during Apply Request Values phase) rather than waiting until Invoke Application phase</entry>
+ <entry><para><a4j:region></para>
+ <para><a4j:region></para>
+ <para><a4j:support></para>
+ <para><a4j:commandButton></para>
+ <para><a4j:commandLink></para>
+ <para><a4j:jsFunction></para>
+ <para><a4j:poll></para>
+ <para><a4j:push></para>
+ <para><a4j:page></para>
+ <para><a4j:htmlCommandLink></para>
+ </entry>
+ <entry><para><rich:dataFilterSlider></para>
+ <para><rich:datascroller></para>
+ <para><rich:dragSupport></para>
+ <para><rich:dropSupport></para>
+ <para><rich:menuItem></para>
+ <para><rich:tree></para>
+ <para><rich:panelBar></para>
+ <para><rich:panelMenu></para>
+ <para><rich:panelMenuGroup></para>
+ <para><rich:panelMenuItem></para>
+ <para><rich:progressBar></para>
+ <para><rich:simpleTogglePanel></para>
+ <para><rich:tabPanel></para>
+ <para><rich:tab></para>
+ <para><rich:togglePanel></para>
+ <para><rich:toggleControl></para>
+ <para><rich:toolTip></para>
+ <para><rich:calendar></para>
+ <para><rich:colorPicker></para>
+ <para><rich:comboBox></para>
+ <para><rich:editor></para>
+ <para><rich:inplaceInput></para>
+ <para><rich:inplaceSelect></para>
+ <para><rich:inputNumberSlider></para>
+ <para><rich:inputNumberSpinner></para>
+ <para><rich:suggestionbox></para>
+ <para><rich:listShuttle></para>
+ <para><rich:orderingList></para>
+ <para><rich:pickList></para>
+
+ </entry>
+ </row>
+ <row>
+ <entry>mode</entry>
+ <entry>Defines the submission type: Ajax or Sever</entry>
+ <entry> </entry>
+ <entry><para><rich:panelMenu></para>
+ <para><rich:panelMenuItem></para>
+ <para><rich:progressBar></para>
+ <para><rich:toolTip></para>
+ <para><rich:calendar></para>
+
+ </entry>
+
+ </row>
+ <row>
+ <entry>switchType</entry>
+ <entry>Defines the re-rendering mode: Ajax, server, client.</entry>
+ <entry>
+
+ </entry>
+ <entry>
+ <para><rich:simpleTogglePanel></para>
+ <para><rich:tabPanel></para>
+ <para><rich:tab></para>
+ <para><rich:togglePanel></para>
+ <para><rich:tree></para>
+ <para><rich:simpleTogglePanel></para></entry>
+ </row>
+
</tbody>
</tgroup>
</table>
16 years, 1 month
JBoss Rich Faces SVN: r15608 - in root/ui-sandbox/trunk/components/tables: impl and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2009-09-17 07:54:17 -0400 (Thu, 17 Sep 2009)
New Revision: 15608
Modified:
root/ui-sandbox/trunk/components/tables/impl/pom.xml
root/ui-sandbox/trunk/components/tables/pom.xml
Log:
fix pom's
Modified: root/ui-sandbox/trunk/components/tables/impl/pom.xml
===================================================================
--- root/ui-sandbox/trunk/components/tables/impl/pom.xml 2009-09-17 11:53:03 UTC (rev 15607)
+++ root/ui-sandbox/trunk/components/tables/impl/pom.xml 2009-09-17 11:54:17 UTC (rev 15608)
@@ -20,6 +20,10 @@
<version>${project.version}</version>
<artifactId>${parent.artifactId}-api</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ </dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: root/ui-sandbox/trunk/components/tables/pom.xml
===================================================================
--- root/ui-sandbox/trunk/components/tables/pom.xml 2009-09-17 11:53:03 UTC (rev 15607)
+++ root/ui-sandbox/trunk/components/tables/pom.xml 2009-09-17 11:54:17 UTC (rev 15608)
@@ -5,17 +5,37 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.sandbox</groupId>
<artifactId>components</artifactId>
<version>4.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui.components.sandbox</groupId>
+ <groupId>org.richfaces.ui.components</groupId>
<artifactId>tables</artifactId>
<packaging>pom</packaging>
<name>richfaces tables</name>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <configuration>
+ <library>
+ <prefix>org.richfaces</prefix>
+ <taglib>
+ <uri>http://richfaces.org/sandbox-tables</uri>
+ <shortName>tables</shortName>
+ <displayName>tables</displayName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
<modules>
<module>api</module>
<module>impl</module>
16 years, 1 month
JBoss Rich Faces SVN: r15607 - in root/ui-sandbox/trunk: components and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2009-09-17 07:53:03 -0400 (Thu, 17 Sep 2009)
New Revision: 15607
Added:
root/ui-sandbox/trunk/components/pom.xml
root/ui-sandbox/trunk/pom.xml
Log:
add pom.xml's
Added: root/ui-sandbox/trunk/components/pom.xml
===================================================================
--- root/ui-sandbox/trunk/components/pom.xml (rev 0)
+++ root/ui-sandbox/trunk/components/pom.xml 2009-09-17 11:53:03 UTC (rev 15607)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
+ http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <parent>
+ <groupId>org.richfaces.sandbox</groupId>
+ <artifactId>ui</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui.sandbox</groupId>
+ <artifactId>components</artifactId>
+ <packaging>pom</packaging>
+ <name>richfaces components sandbox</name>
+
+ <modules>
+ <module>tables</module>
+ </modules>
+</project>
\ No newline at end of file
Added: root/ui-sandbox/trunk/pom.xml
===================================================================
--- root/ui-sandbox/trunk/pom.xml (rev 0)
+++ root/ui-sandbox/trunk/pom.xml 2009-09-17 11:53:03 UTC (rev 15607)
@@ -0,0 +1,89 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
+ http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <parent>
+ <groupId>org.richfaces</groupId>
+ <artifactId>ui-version-matrix</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.sandbox</groupId>
+ <artifactId>ui</artifactId>
+ <name>richfaces ui sandbox</name>
+ <packaging>pom</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>compile-templates</goal>
+ </goals>
+ </execution>
+ <!--execution>
+ <id>generate-test-sources</id>
+ <phase>generate-test-sources</phase>
+ <goals>
+ <goal>generate-tests</goal>
+ </goals>
+ </execution-->
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>jstl</groupId>
+ <artifactId>jstl</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-test-base</artifactId>
+ <scope> test </scope>
+ </dependency>
+ </dependencies>
+
+ <modules>
+ <module>components</module>
+ </modules>
+
+</project>
\ No newline at end of file
16 years, 1 month
JBoss Rich Faces SVN: r15606 - in branches/community/3.3.X/docs: cdkguide/en/src/main/docbook/modules and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2009-09-17 07:33:08 -0400 (Thu, 17 Sep 2009)
New Revision: 15606
Modified:
branches/community/3.3.X/docs/cdkguide/en/src/main/docbook/includes/protoui.xml
branches/community/3.3.X/docs/cdkguide/en/src/main/docbook/includes/skin.xml
branches/community/3.3.X/docs/cdkguide/en/src/main/docbook/includes/template.xml
branches/community/3.3.X/docs/cdkguide/en/src/main/docbook/modules/setup.xml
branches/community/3.3.X/docs/faq/en/src/main/docbook/module/RFCfaq.xml
Log:
https://jira.jboss.org/jira/browse/RF-4643 Automatic spellchecking - spelling is checked in cdk guide and faq guides
Modified: branches/community/3.3.X/docs/cdkguide/en/src/main/docbook/includes/protoui.xml
===================================================================
--- branches/community/3.3.X/docs/cdkguide/en/src/main/docbook/includes/protoui.xml 2009-09-17 10:51:58 UTC (rev 15605)
+++ branches/community/3.3.X/docs/cdkguide/en/src/main/docbook/includes/protoui.xml 2009-09-17 11:33:08 UTC (rev 15606)
@@ -3,7 +3,7 @@
<?dbhtml filename="protoui.html"?>
<sectioninfo>
<keywordset>
- <keyword>proptotype</keyword>
+ <keyword>prototype</keyword>
<keyword>UI</keyword>
<keyword>CDK</keyword>
<keyword>Guide</keyword>
Modified: branches/community/3.3.X/docs/cdkguide/en/src/main/docbook/includes/skin.xml
===================================================================
--- branches/community/3.3.X/docs/cdkguide/en/src/main/docbook/includes/skin.xml 2009-09-17 10:51:58 UTC (rev 15605)
+++ branches/community/3.3.X/docs/cdkguide/en/src/main/docbook/includes/skin.xml 2009-09-17 11:33:08 UTC (rev 15606)
@@ -12,10 +12,10 @@
<title>Skinnability</title>
<para>
One of the significant features of the Component Development Kit (CDK) is a skins-based technology which helps you to create a modern rich user interface look-and-feel.
- RichFaces has a number of predefined skins you could use wtih the <emphasis role="bold"><property><inputDate></property></emphasis> component.
+ RichFaces has a number of predefined skins you could use with the <emphasis role="bold"><property><inputDate></property></emphasis> component.
But if you want to create your own skin, please, read carefully
the <property>"Skinnability"</property> section of the
- <ulink url="&devguide;/#Skinnability">RichFaces Developer Guide</ulink>. You could find all neccesary information about
+ <ulink url="&devguide;/#Skinnability">RichFaces Developer Guide</ulink>. You could find all necessary information about
<property>Built-in skinnability in RichFaces</property>, <property>XCSS file format</property>, <property>Plug-n-Skin feature</property>, etc. there.
</para>
<para>
Modified: branches/community/3.3.X/docs/cdkguide/en/src/main/docbook/includes/template.xml
===================================================================
--- branches/community/3.3.X/docs/cdkguide/en/src/main/docbook/includes/template.xml 2009-09-17 10:51:58 UTC (rev 15605)
+++ branches/community/3.3.X/docs/cdkguide/en/src/main/docbook/includes/template.xml 2009-09-17 11:33:08 UTC (rev 15606)
@@ -50,7 +50,7 @@
<emphasis role="bold"><property><div></property></emphasis>-wrapper element with
<emphasis><property>"title"</property></emphasis>,
<emphasis><property>"id"</property></emphasis> attributes and with
-the<emphasis><property>"caption"</property></emphasis> facet
+the <emphasis><property>"caption"</property></emphasis> facet
</para>
<programlisting role="XML"><![CDATA[...
<div id="#{clientId}" title="#{value}" x:passThruWithExclusions="value,name,type,id">
Modified: branches/community/3.3.X/docs/cdkguide/en/src/main/docbook/modules/setup.xml
===================================================================
--- branches/community/3.3.X/docs/cdkguide/en/src/main/docbook/modules/setup.xml 2009-09-17 10:51:58 UTC (rev 15605)
+++ branches/community/3.3.X/docs/cdkguide/en/src/main/docbook/modules/setup.xml 2009-09-17 11:33:08 UTC (rev 15606)
@@ -216,7 +216,7 @@
<row>
<entry>scope</entry>
<entry>
- Dependency scope is used to limit the transitivity of a depedency, and also to affect the classpath used for various build tasks.
+ Dependency scope is used to limit the transitivity of a dependency, and also to affect the classpath used for various build tasks.
"Provided" scope indicates you expect the JDK or a container to provide the dependency at runtime.
For example, when you build a web application with RichFaces,
you would set the dependency on the Servlet API and related libraries to scope
Modified: branches/community/3.3.X/docs/faq/en/src/main/docbook/module/RFCfaq.xml
===================================================================
--- branches/community/3.3.X/docs/faq/en/src/main/docbook/module/RFCfaq.xml 2009-09-17 10:51:58 UTC (rev 15605)
+++ branches/community/3.3.X/docs/faq/en/src/main/docbook/module/RFCfaq.xml 2009-09-17 11:33:08 UTC (rev 15606)
@@ -463,7 +463,7 @@
<?dbhtml filename="Isitpossibletoplacetabsvertically.html"?>
<title>Is it possible to place tabs upright in the tabPanel?</title>
<para>It's not possible to place tabs upright in the tabPanel. For this
- purporse use togglePanel. Toggle controls can be placed anywhere in
+ purpose use togglePanel. Toggle controls can be placed anywhere in
the layout.</para>
</section>
@@ -611,7 +611,7 @@
<programlisting role="CSS"><![CDATA[.rich-datascr-button {
border: 0px;
}
-.rich-dtascroller-table {
+.rich-datascroller-table {
border: 0px;
}
.rich-datascr-button {
@@ -995,7 +995,7 @@
<programlisting role="XML"><![CDATA[<a4j:outputPanel ajaxRendered="true">
<h:messages/>
</a4j:outpurPanel>]]></programlisting>
- <para><emphasis role="bold"><property><rich:message></property></emphasis> component has build in Ajax support and could be realy helpfull
+ <para><emphasis role="bold"><property><rich:message></property></emphasis> component has build in Ajax support and could be really helpful
together with <ulink url="http://www.jsfone.com/blog/max_katz/2008/07/creating_jsf_phase_listener.html">JSF Phase Tracker</ulink> in such cases.
</para>
@@ -1138,7 +1138,7 @@
<title>How to disable skinability?</title>
<para>There is possibility to use special skin with name "plain". It doesn't
have any parameters. It's necessary for embedding RichFaces components
- into existing projecst which have its own styles.</para>
+ into existing project which have its own styles.</para>
<para>For information you can see discussion about this problem on the <ulink
url="http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066340#..."
>Ajax4Jsf Users Forum. </ulink>
@@ -1656,7 +1656,7 @@
<section id="SimpleTogglePanelPanelMenuState">
<?dbhtml filename="SimpleTogglePanelPanelMenuState.html"?>
<title>How to save the state of <rich:simpleTogglePanel>?</title>
- <para> In order to save the state (exapnd/collapse) of the <emphasis role="bold">
+ <para> In order to save the state (expand/collapse) of the <emphasis role="bold">
<property><rich:simpleTogglePanel></property>
</emphasis> component you could use <emphasis>
<property>"opened"</property>
@@ -2455,7 +2455,7 @@
<emphasis role="bold">Example in web.xml::</emphasis>
</para>
<programlisting role="XML"><![CDATA[...
-<context-param>
+<context-param>int
<param-name>org.richfaces.ExcludeScripts</param-name>
<param-value>Prototype,Scriptaculous</param-value>
</context-param>
16 years, 1 month
JBoss Rich Faces SVN: r15605 - in root/ui-sandbox/trunk/components/tables: api and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2009-09-17 06:51:58 -0400 (Thu, 17 Sep 2009)
New Revision: 15605
Added:
root/ui-sandbox/trunk/components/tables/api/pom.xml
root/ui-sandbox/trunk/components/tables/impl/pom.xml
root/ui-sandbox/trunk/components/tables/pom.xml
Log:
add maven poms
Added: root/ui-sandbox/trunk/components/tables/api/pom.xml
===================================================================
--- root/ui-sandbox/trunk/components/tables/api/pom.xml (rev 0)
+++ root/ui-sandbox/trunk/components/tables/api/pom.xml 2009-09-17 10:51:58 UTC (rev 15605)
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
+ http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <parent>
+ <groupId>org.richfaces.ui.components.sandbox</groupId>
+ <artifactId>tables</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>${parent.artifactId}-api</artifactId>
+ <name>richfaces table api</name>
+
+ <dependencies>
+ </dependencies>
+
+</project>
\ No newline at end of file
Added: root/ui-sandbox/trunk/components/tables/impl/pom.xml
===================================================================
--- root/ui-sandbox/trunk/components/tables/impl/pom.xml (rev 0)
+++ root/ui-sandbox/trunk/components/tables/impl/pom.xml 2009-09-17 10:51:58 UTC (rev 15605)
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
+ http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <parent>
+ <groupId>org.richfaces.ui.components.sandbox</groupId>
+ <artifactId>tables</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>${parent.artifactId}-impl</artifactId>
+ <name>richfaces tables impl</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <version>${project.version}</version>
+ <artifactId>${parent.artifactId}-api</artifactId>
+ </dependency>
+ </dependencies>
+
+</project>
\ No newline at end of file
Added: root/ui-sandbox/trunk/components/tables/pom.xml
===================================================================
--- root/ui-sandbox/trunk/components/tables/pom.xml (rev 0)
+++ root/ui-sandbox/trunk/components/tables/pom.xml 2009-09-17 10:51:58 UTC (rev 15605)
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <parent>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>components</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui.components.sandbox</groupId>
+ <artifactId>tables</artifactId>
+ <packaging>pom</packaging>
+
+ <name>richfaces tables</name>
+ <modules>
+ <module>api</module>
+ <module>impl</module>
+ </modules>
+
+</project>
\ No newline at end of file
16 years, 1 month
JBoss Rich Faces SVN: r15604 - branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest.
by richfaces-svn-commits@lists.jboss.org
Author: ppitonak(a)redhat.com
Date: 2009-09-17 06:42:04 -0400 (Thu, 17 Sep 2009)
New Revision: 15604
Modified:
branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/AbstractSeleniumRichfacesTestCase.java
Log:
* deprecated method abstractTestSource removed
* timeout value increased so that tests should run also on windows machines
Modified: branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/AbstractSeleniumRichfacesTestCase.java
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/AbstractSeleniumRichfacesTestCase.java 2009-09-17 10:37:42 UTC (rev 15603)
+++ branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/AbstractSeleniumRichfacesTestCase.java 2009-09-17 10:42:04 UTC (rev 15604)
@@ -71,9 +71,8 @@
/**
* predefined waitings to use in inheritors
*/
- protected Waiting waitModelUpdate = Wait.interval(100).timeout(10000);
+ protected Waiting waitModelUpdate = Wait.interval(100).timeout(60000);
protected Waiting waitGuiInteraction = Wait.interval(100).timeout(500);
-
/**
* Initializes context before each class run.
@@ -186,57 +185,6 @@
};
/**
- * Abstract test for testing source code of examples. Deprecated -- use
- * abstractTestSource(int, String, String) instead of this method.
- *
- * @param fieldset
- * @param index
- * @param first
- * @param second
- */
- @Deprecated
- protected void abstractTestSource(int fieldset, int index, String first, String second) {
- String xpathPrefix = String.format("//fieldset[%d]/div/div[%d]", fieldset, index);
- String text = null;
-
- scrollIntoView(xpathPrefix, true);
-
- text = selenium.getAttribute(xpathPrefix + "/div@style");
- assertTrue(text.contains("display: none;"),
- "Source should not be visible -- it has to contain 'display: none;'.");
-
- // click on 'View xxx Source'
- waitForElement(xpathPrefix + "/span[2]");
- selenium.click(xpathPrefix + "/span[2]");
-
- waitForElement(xpathPrefix + "/div/div[2]");
-
- text = selenium.getAttribute(xpathPrefix + "/div@id");
- assertFalse(text.contains("display: none;"),
- "Source should be visible -- it should not contain 'display: none;'");
-
- text = selenium.getText(xpathPrefix + "/div/div[2]/div/div/span[1]");
- assertEquals(text, first, "The code should start with '" + first + "'.");
-
- text = selenium.getText(xpathPrefix + "/div/div[2]/div/div/span[2]");
- assertEquals(text, second);
-
- // click on 'Hide'
- selenium.click(xpathPrefix + "/span[1]");
-
- // wait while 'style' attribute changes
- for (int i = 0; i * 100 <= 10000; i++) {
- text = selenium.getAttribute(xpathPrefix + "/div@style");
- if (text.contains("display: none;")) {
- break;
- }
- waitFor(100);
- }
-
- assertTrue(text.contains("display: none;"), "Source should be hidden.");
- }
-
- /**
* An abstract implementation of test for testing source code of examples.
*
* @param fieldset
@@ -289,76 +237,6 @@
/**
* <p>
- * <b>Deprecated.</b> <i>This method is replaced by method
- * {@link #openComponent(String)} and {{@link #openTab(String)}</i>
- * </p>
- *
- * Loads the page defined in contextPath. There is a 5-second timeout.
- *
- * @param group
- * ID of div element that represents a group of menu items in
- * main menu, e.g. ajaxSupport,richInputs, richValidators, etc.
- * @param index
- * which menu item from the group should be clicked, numbered
- * from 1
- * @param text
- * wait while the specified text appears on the page; it does not
- * wait if the text is null
- */
- // TODO: remove this @deprecated method
- @Deprecated
- protected void loadPage(String group, int index, String text) {
- loadPage(group, index, 1, text);
- }
-
- /**
- * <p>
- * <b>Deprecated.</b> <i>This method is replaced by method
- * {@link #openComponent(String)} and {{@link #openTab(String)}</i>
- * </p>
- *
- * Loads the page defined in contextPath. There is a 5-second timeout.
- *
- * @param group
- * ID of div element that represents a group of menu items in
- * main menu, e.g. ajaxSupport,richInputs, richValidators, etc.
- * @param index
- * which menu item from the group should be clicked, numbered
- * from 1
- * @param tab
- * the number of the tab
- * @param text
- * wait while the specified text appears on the page; it does not
- * wait if the text is null
- */
- // TODO: remove this @deprecated method
- @Deprecated
- protected void loadPage(String group, int index, int tab, String text) {
-
- selenium.open(contextPath);
- selenium.waitForPageToLoad("5000");
-
- String menuItem = String.format("//div[@id='%s']/div[3]/table/tbody/tr/td/table/tbody/tr[%d]/td[2]/a", group,
- index);
-
- // click the group
- selenium.click(group);
- // click the menu item
- selenium.click(menuItem);
-
- waitForElement("//table[@class='content_container']/tbody/tr/td[2]/table/tbody/tr[1]/td/form/table/tbody/tr/td["
- + (tab * 2) + "]/table");
- selenium
- .click("//table[@class='content_container']/tbody/tr/td[2]/table/tbody/tr[1]/td/form/table/tbody/tr/td["
- + (tab * 2) + "]/table");
-
- if (text != null) {
- waitForText(text);
- }
- }
-
- /**
- * <p>
* Opens new page on contextPath's location and then selects in menu the
* item specified by componentName and waits for Component's page is opened.
* </p>
16 years, 1 month
JBoss Rich Faces SVN: r15603 - branches/community/3.3.X/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: ochikvina
Date: 2009-09-17 06:37:42 -0400 (Thu, 17 Sep 2009)
New Revision: 15603
Modified:
branches/community/3.3.X/docs/userguide/en/src/main/docbook/included/rich_inplaceInput.xml
Log:
https://jira.jboss.org/jira/browse/RF-7803 - minor updates;
Modified: branches/community/3.3.X/docs/userguide/en/src/main/docbook/included/rich_inplaceInput.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/src/main/docbook/included/rich_inplaceInput.xml 2009-09-17 10:00:27 UTC (rev 15602)
+++ branches/community/3.3.X/docs/userguide/en/src/main/docbook/included/rich_inplaceInput.xml 2009-09-17 10:37:42 UTC (rev 15603)
@@ -640,52 +640,52 @@
</thead>
<tbody>
<row>
- <entry>rich-inplace</entry>
+ <entry>.rich-inplace</entry>
<entry>Defines styles for a wrapper <span> (or <div>) element of a component</entry>
</row>
<row>
- <entry>rich-inplace-input</entry>
+ <entry>.rich-inplace-input</entry>
<entry>Defines styles for the component input field</entry>
</row>
<row>
- <entry>rich-inplace-input-view-hover</entry>
+ <entry>.rich-inplace-input-view-hover</entry>
<entry>Defines styles for hovered text in the view state </entry>
</row>
<row>
- <entry>rich-inplace-field</entry>
+ <entry>.rich-inplace-field</entry>
<entry>Defines styles for the input field look and feel in edit state</entry>
</row>
<row>
- <entry> rich-inplace-input-changed-hover </entry>
+ <entry>.rich-inplace-input-changed-hover </entry>
<entry>Defines styles for the hovered text in the "Changed" state</entry>
</row>
<row>
- <entry>rich-inplace-shadow-size</entry>
+ <entry>.rich-inplace-shadow-size</entry>
<entry>Defines size of the shadow</entry>
</row>
<row>
- <entry>rich-inplace-shadow-tl</entry>
+ <entry>.rich-inplace-shadow-tl</entry>
<entry>Defines styles for the shadow in the top left corner </entry>
</row>
<row>
- <entry>rich-inplace-shadow-tr</entry>
+ <entry>.rich-inplace-shadow-tr</entry>
<entry>Defines styles for the shadow in the top right corner</entry>
</row>
<row>
- <entry>rich-inplace-shadow-bl</entry>
+ <entry>.rich-inplace-shadow-bl</entry>
<entry>Defines styles for the shadow in the bottom left corner</entry>
</row>
<row>
- <entry>rich-inplace-shadow-br</entry>
+ <entry>.rich-inplace-shadow-br</entry>
<entry>Defines styles for the shadow in the bottom right corner</entry>
</row>
</tbody>
16 years, 1 month