JBoss Rich Faces SVN: r12200 - in trunk/docs/migrationguide/en/src/main/docbook: included and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: artdaw
Date: 2009-01-10 11:10:09 -0500 (Sat, 10 Jan 2009)
New Revision: 12200
Added:
trunk/docs/migrationguide/en/src/main/docbook/included/immediate.xml
Modified:
trunk/docs/migrationguide/en/src/main/docbook/master.xml
Log:
https://jira.jboss.org/jira/browse/RF-3048 - Info about "immediate" attribute behavior was added to the Migration Guide
Added: trunk/docs/migrationguide/en/src/main/docbook/included/immediate.xml
===================================================================
--- trunk/docs/migrationguide/en/src/main/docbook/included/immediate.xml (rev 0)
+++ trunk/docs/migrationguide/en/src/main/docbook/included/immediate.xml 2009-01-10 16:10:09 UTC (rev 12200)
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<section id="immediate" role="NotInToc">
+ <?dbhtml filename="immediate.html"?>
+ <sectioninfo>
+ <keywordset>
+ <keyword>a4j:support</keyword>
+ <keyword>immediate</keyword>
+ <keyword>JSP</keyword>
+ </keywordset>
+ </sectioninfo>
+ <title>Behavior of the "immediate" attribute is changed</title>
+ <section>
+ <title>Description</title>
+ <para>
+ Since we've migrated to the <property>JSF 1.2</property> standard in <property>RichFaces 3.2.0</property> the
+ <emphasis><property>"immediate"</property></emphasis> attribute works exactly like it should according to the JSF 1.2 specification:
+ the default ActionListener stops execution after the Apply Request Values phase, so there is no interaction with a model any more.
+ We could not use the standard JSF API before as soon as we had to support not only JSF 1.2, but JSF 1.1 as well.
+ We used our own hack that emulated the behavior of the attribute.
+ This approach had a side effect that allowed interacting with a model but now this side effect is gone.
+ </para>
+ </section>
+ <section>
+ <title>Links</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <ulink url="http://www.jboss.com/index.html?module=bb&op=viewtopic&t=133031">RichFaces Forum</ulink>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
+ <section>
+ <title>How to reproduce</title>
+ <programlisting role="XML"><![CDATA[...
+<h:form>
+ <h:inputText id="oneA" value="#{bean.name}" size="8">
+ <a4j:support event="onkeyup" reRender="three" immediate="true" focus="oneA" action="#{bean.actionOne}"/>
+ </h:inputText>
+ <h:selectBooleanCheckbox id="twoA" value="#{bean.option}">
+ <a4j:support event="onclick" reRender="three" immediate="true" focus="twoA" action="#{bean.actionOne}"/>
+ </h:selectBooleanCheckbox>
+ <h:commandButton id="go" value="Submit"/>
+</h:form>
+<h:outputText id="three" value="#{bean.name} #{bean.option}"/>
+...]]></programlisting>
+ </section>
+ <section>
+ <title>Causes</title>
+ <para>
+ Behavior of the <emphasis><property>"immediate"</property></emphasis> attribute is changed according to to JSF 1.2 specification.
+ </para>
+ </section>
+
+ <section>
+ <title>Workarounds</title>
+ <para>
+ The solution includes the following steps:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ replace <emphasis><property>"immediate"</property></emphasis> attribute with <code>ajaxSingle="true"</code>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ add <emphasis><property>"process"</property></emphasis> attribute.
+ This attribute points to the components that should be processed together with the command component.
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
+</section>
\ No newline at end of file
Modified: trunk/docs/migrationguide/en/src/main/docbook/master.xml
===================================================================
--- trunk/docs/migrationguide/en/src/main/docbook/master.xml 2009-01-10 15:02:16 UTC (rev 12199)
+++ trunk/docs/migrationguide/en/src/main/docbook/master.xml 2009-01-10 16:10:09 UTC (rev 12200)
@@ -16,18 +16,20 @@
<!ENTITY datascrollerFor SYSTEM "included/datascrollerFor.xml">
<!ENTITY ajaxSingleFacets SYSTEM "included/ajaxSingleFacets.xml">
<!ENTITY actionparam SYSTEM "included/actionparam.xml">
+ <!ENTITY immediate SYSTEM "included/immediate.xml">
+
<!ENTITY fileUploadListener SYSTEM "included/fileUploadListener.xml">
<!ENTITY myfaces SYSTEM "included/myfaces.xml">
- <!ENTITY seamMultipartFilter SYSTEM "included/seamMultipartFilter.xml">
-
-
- <!ENTITY dataTableAjax SYSTEM "included/dataTableAjax.xml">
+ <!ENTITY seamMultipartFilter SYSTEM "included/seamMultipartFilter.xml">
+
+ <!ENTITY dataTableAjax SYSTEM "included/dataTableAjax.xml">
+
]>
<book>
<bookinfo>
- <title>RichFaces Migration Guide</title>
+ <title>RichFaces Migration Guide</title>
<author>
<firstname>Gleb</firstname>
<surname>Galkin</surname>
@@ -106,6 +108,7 @@
&datascrollerFor;
&ajaxSingleFacets;
&actionparam;
+ &immediate;
</section>
<section id="ThirdPartyFrameworks31to32">
@@ -123,8 +126,8 @@
&myfaces;
&seamMultipartFilter;
</section>
- </chapter>
-
+ </chapter>
+
<chapter id="RichFacesMigrationIssues32to33" xreflabel="RichFacesMigrationIssues32to33">
<?dbhtml filename="RichFacesMigrationIssues32to33.html"?>
<chapterinfo>
@@ -133,15 +136,15 @@
<keyword>Migration Guide</keyword>
</keywordset>
</chapterinfo>
- <title>The RichFaces Migration Issues 3.2.x - 3.3.0</title>
- <para>
+ <title>The RichFaces Migration Issues 3.2.x - 3.3.0</title>
+ <para>
This chapter includes only those issues that concern migration from from 3.2.x versions to 3.3.0.
Issues, that are related to the new components and other problems are not covered here.
However, <ulink url="http://jira.jboss.com/jira/browse/RF">Jira</ulink> contains all issues
- and if you can not find your case there, please, feel free to report it.
- </para>
+ and if you can not find your case there, please, feel free to report it.
+ </para>
-
+
&dataTableAjax;
</chapter>
</book>
17 years
JBoss Rich Faces SVN: r12199 - trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2009-01-10 10:02:16 -0500 (Sat, 10 Jan 2009)
New Revision: 12199
Modified:
trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties
Log:
https://jira.jboss.org/jira/browse/RF-5622
Modified: trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties
===================================================================
--- trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties 2009-01-10 14:50:33 UTC (rev 12198)
+++ trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties 2009-01-10 15:02:16 UTC (rev 12199)
@@ -84,7 +84,7 @@
StandardSkinning =richMisc, \t Standard Skinning, \t\t/images/ico_StandardComponentsSkinning.gif, \t\t/images/cn_StandardComponentsSkinning.gif, ArchitectureOverview.html\#StControlsSkinning, jbossrichfaces/freezone/docs/tlddoc/rich/StandardSkinning.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIfileUpload.html, \t\t\t\t\t/richfaces/standardSkinning.jsf
plugnskin =richMisc, \t Plug'n'Skin, \t\t/images/ico_plugnskin.gif, \t\t/images/cn_plugnskin.gif, ArchitectureOverview.html\#PlugnSkin, jbossrichfaces/freezone/docs/tlddoc/rich/plugnskin.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIfileUpload.html, \t\t\t\t\t/richfaces/plugnskin.jsf
hotKey=richMisc, \t Hot Key, \t\t/images/ico_HotKey.gif, \t\t/images/cn_HotKey.gif, hotKey.html, jbossrichfaces/freezone/docs/tlddoc/rich/hotKey.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIhotkey.html, \t\t\t\t\t/richfaces/hotKey.jsf
-ajaxValidator=richValidators, \t Ajax Validator, \t\t/images/ico_AjaxValidator.gif, \t\t/images/cn_AjaxValidator.gif, ajaxValidator.html, jbossrichfaces/freezone/docs/tlddoc/rich/ajaxValidator.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/ajax/AjaxValidatorTag.html, \t\t\t\t\t/richfaces/ajaxValidator.jsf
+ajaxValidator=richValidators, \t Ajax Validator, \t\t/images/ico_AjaxValidator.gif, \t\t/images/cn_AjaxValidator.gif, ajaxValidator.html, jbossrichfaces/freezone/docs/tlddoc/rich/ajaxValidator.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIBeanValidator.html, \t\t\t\t\t/richfaces/ajaxValidator.jsf
beanValidator=richValidators, \t Bean Validator, \t\t/images/ico_BeanValidator.gif, \t\t/images/cn_BeanValidator.gif, beanValidator.html, jbossrichfaces/freezone/docs/tlddoc/rich/beanValidator.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIBeanValidator.html, \t\t\t\t\t/richfaces/beanValidator.jsf
graphValidator=richValidators, \t Graph Validator, \t\t/images/ico_GraphValidator.gif, \t\t/images/cn_GraphValidator.gif, graphValidator.html, jbossrichfaces/freezone/docs/tlddoc/rich/graphValidator.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIGraphValidator.html, \t\t\t\t\t/richfaces/graphValidator.jsf
stateAPI=richMisc, \t State Manager API, \t\t/images/ico_StateManagerAPI.gif, \t\t/images/cn_StateManagerAPI.gif, ArchitectureOverview.html\#statemanagerapi, jbossrichfaces/freezone/docs/tlddoc/rich/graphValidator.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIhotkey.html, \t\t\t\t\t/richfaces/stateAPI.jsf
17 years
JBoss Rich Faces SVN: r12198 - in trunk/test-applications/seleniumTest/richfaces/src: main/webapp/WEB-INF and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: alevkovsky
Date: 2009-01-10 09:50:33 -0500 (Sat, 10 Jan 2009)
New Revision: 12198
Added:
trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/ComponentControlBean.java
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/componentControl/
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/componentControl/componentControl.xhtml
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/componentControl/componentControlWithAttachTo.xhtml
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/componentControl/componentControlWithDisabledDefault.xhtml
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/componentControl/componentControlWithParameters.xhtml
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/ComponentControlTest.java
Modified:
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/WEB-INF/faces-config.xml
Log:
Add component control selenium tests
Added: trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/ComponentControlBean.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/ComponentControlBean.java (rev 0)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/ComponentControlBean.java 2009-01-10 14:50:33 UTC (rev 12198)
@@ -0,0 +1,28 @@
+/**
+ *
+ */
+package org.ajax4jsf.bean;
+
+/**
+ * @author Alexandr Levkovsky
+ *
+ */
+public class ComponentControlBean {
+
+ private Integer[] numbers = {1, 2, 3, 4, 5, 6, 7, 8, 9};
+
+ /**
+ * @return the numbers
+ */
+ public Integer[] getNumbers() {
+ return numbers;
+ }
+
+ /**
+ * @param numbers the numbers to set
+ */
+ public void setNumbers(Integer[] numbers) {
+ this.numbers = numbers;
+ }
+
+}
Property changes on: trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/ComponentControlBean.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Author Id Revision Date
Name: svn:eol-style
+ native
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/WEB-INF/faces-config.xml
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/webapp/WEB-INF/faces-config.xml 2009-01-10 14:45:25 UTC (rev 12197)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/webapp/WEB-INF/faces-config.xml 2009-01-10 14:50:33 UTC (rev 12198)
@@ -302,6 +302,11 @@
<managed-bean-name>editorBean</managed-bean-name>
<managed-bean-class>org.ajax4jsf.bean.EditorBean</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
+ </managed-bean>
+ <managed-bean>
+ <managed-bean-name>controlBean</managed-bean-name>
+ <managed-bean-class>org.ajax4jsf.bean.ComponentControlBean</managed-bean-class>
+ <managed-bean-scope>session</managed-bean-scope>
</managed-bean>
<navigation-rule>
<from-view-id>/pages/ajaxInclude/step1.xhtml</from-view-id>
Added: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/componentControl/componentControl.xhtml
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/componentControl/componentControl.xhtml
___________________________________________________________________
Name: svn:mime-type
+ application/xhtml+xml
Added: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/componentControl/componentControlWithAttachTo.xhtml
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/componentControl/componentControlWithAttachTo.xhtml
___________________________________________________________________
Name: svn:mime-type
+ application/xhtml+xml
Added: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/componentControl/componentControlWithDisabledDefault.xhtml
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/componentControl/componentControlWithDisabledDefault.xhtml
___________________________________________________________________
Name: svn:mime-type
+ application/xhtml+xml
Added: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/componentControl/componentControlWithParameters.xhtml
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/componentControl/componentControlWithParameters.xhtml
___________________________________________________________________
Name: svn:mime-type
+ application/xhtml+xml
Added: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/ComponentControlTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/ComponentControlTest.java (rev 0)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/ComponentControlTest.java 2009-01-10 14:50:33 UTC (rev 12198)
@@ -0,0 +1,192 @@
+/**
+ *
+ */
+package org.richfaces.testng;
+
+import junit.framework.Assert;
+
+import org.ajax4jsf.template.Template;
+import org.richfaces.SeleniumTestBase;
+import org.testng.annotations.Test;
+
+/**
+ * @author Alexandr Levkovsky
+ *
+ */
+public class ComponentControlTest extends SeleniumTestBase {
+
+ private final static String TEST_COMPONENT_CONTROL_WITH_ATTACH_TO = "pages/componentControl/componentControlWithAttachTo.xhtml";
+ private final static String TEST_COMPONENT_CONTROL_WITH_DISABLE_DEFAULT = "pages/componentControl/componentControlWithDisabledDefault.xhtml";
+ private final static String TEST_COMPONENT_CONTROL_WITH_PARAMETERS = "pages/componentControl/componentControlWithParameters.xhtml";
+
+ private String formId;
+ private String panelId;
+ private String panelShowLinkId;
+ private String panelHideLinkId;
+ private String tableId;
+ private String outputTextId;
+ private String panelSecondShowLinkId;
+ private String fparamsTestLinkId;
+ private String paramsTestLinkId;
+ private String clearLinkId;
+ private String testComponentId;
+
+
+ private void initIds(String parentId){
+ formId = parentId + "_form:";
+ panelId = formId + "panel";
+ panelHideLinkId = formId + "hidelink";
+ panelShowLinkId = formId + "showlink";
+ tableId = formId + "table";
+ outputTextId = "outputText";
+ panelSecondShowLinkId = formId + "showlink2";
+ fparamsTestLinkId = formId + "link1";
+ paramsTestLinkId = formId + "link2";
+ clearLinkId = formId + "link3";
+ testComponentId = formId + "comp";
+ }
+
+ /* (non-Javadoc)
+ * @see org.richfaces.SeleniumTestBase#getTestUrl()
+ */
+ @Override
+ public String getTestUrl() {
+ return "pages/componentControl/componentControl.xhtml";
+ }
+
+ @Test
+ public void testAttachingToEventHandlerOfParentComponent(Template template) {
+ renderPage(template);
+ initIds(getParentId());
+
+ //check attaching
+ AssertPresent(panelShowLinkId);
+ String onclick = selenium.getAttribute("//a[@id='" + panelShowLinkId + "']/@onclick");
+ Assert.assertNotNull("Component conytrol not attached to parent component event handler", onclick);
+ Assert.assertTrue(onclick.contains("Richfaces.componentControl.performOperation"));
+
+ AssertPresent(tableId);
+ for(int i=1; i < 8; i++){
+ onclick = selenium.getAttribute("//table[@id='" + tableId + "']/tbody/tr[" + i + "]/@onclick");
+ Assert.assertNotNull("Component conytrol not attached to parent component event handler", onclick);
+ Assert.assertTrue(onclick.contains("Richfaces.componentControl.performOperation"));
+ }
+
+
+ //check functional working
+ asserPanel(false);
+ clickById(panelShowLinkId);
+ asserPanel(true);
+ clickById(panelHideLinkId);
+
+ for(int i=0; i < 8; i++){
+ asserPanel(false);
+ clickById(tableId + ":" + i + ":" + outputTextId);
+ asserPanel(true);
+ clickById(panelHideLinkId);
+ }
+ }
+
+ @Test
+ public void testAttachingToEventHandlerWithAttachToAttribute(Template template) {
+ renderPage(TEST_COMPONENT_CONTROL_WITH_ATTACH_TO, template, null);
+ initIds(getParentId());
+
+ //check functional with attach to working
+
+ //attach to in same naming container
+ asserPanel(false);
+ clickById(panelShowLinkId);
+ asserPanel(true);
+ clickById(panelHideLinkId);
+
+ //attach to in another naming container
+ asserPanel(false);
+ clickById(panelSecondShowLinkId);
+ asserPanel(true);
+ clickById(panelHideLinkId);
+ }
+
+ @Test
+ public void testForAndOperationAttribute(Template template) {
+ //same as testAttachingToEventHandlerOfParentComponent
+
+ renderPage(template);
+ initIds(getParentId());
+
+
+ //check operations show and hide for modal panel working
+ asserPanel(false);
+ clickById(panelShowLinkId);
+ asserPanel(true);
+ clickById(panelHideLinkId);
+
+ for(int i=0; i < 8; i++){
+ asserPanel(false);
+ clickById(tableId + ":" + i + ":" + outputTextId);
+ asserPanel(true);
+ clickById(panelHideLinkId);
+ }
+ }
+
+ @Test
+ public void testDisableDefaultAttribute(Template template) {
+ //Not working: https://jira.jboss.org/jira/browse/RF-5607 - waiting for fix
+
+ renderPage(TEST_COMPONENT_CONTROL_WITH_DISABLE_DEFAULT, template, null);
+ initIds(getParentId());
+
+ // check attaching and firing event with disabledDefault="true"
+
+ //attach to in same naming container
+ asserPanel(false);
+ clickCommandAndWait(panelShowLinkId);
+ asserPanel(true);
+ clickById(panelHideLinkId);
+
+ //attach to in another naming container
+ asserPanel(false);
+ clickCommandAndWait(panelSecondShowLinkId);
+ asserPanel(true);
+ clickById(panelHideLinkId);
+ }
+
+ @Test
+ public void testParamsAttribute(Template template) {
+
+ renderPage(TEST_COMPONENT_CONTROL_WITH_PARAMETERS, template, null);
+ initIds(getParentId());
+
+ AssertPresent(testComponentId);
+ AssertTextEquals(testComponentId, "");
+ clickById(paramsTestLinkId);
+ AssertTextEquals(testComponentId, "2");
+ clickById(clearLinkId);
+ }
+
+ @Test
+ public void testpassingFParams(Template template) {
+
+ renderPage(TEST_COMPONENT_CONTROL_WITH_PARAMETERS, template, null);
+ initIds(getParentId());
+
+ AssertPresent(testComponentId);
+ AssertTextEquals(testComponentId, "");
+ clickById(fparamsTestLinkId);
+ AssertTextEquals(testComponentId, "1");
+ clickById(clearLinkId);
+ }
+
+
+ private void asserPanel(boolean visible){
+ AssertPresent(panelId);
+ AssertPresent(panelId + "CDiv");
+ if(visible){
+ AssertVisible(panelId + "CDiv");
+ }else{
+ AssertNotVisible(panelId + "CDiv");
+ }
+
+ }
+
+}
Property changes on: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/ComponentControlTest.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Author Id Revision Date
Name: svn:eol-style
+ native
17 years
JBoss Rich Faces SVN: r12197 - trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2009-01-10 09:45:25 -0500 (Sat, 10 Jan 2009)
New Revision: 12197
Modified:
trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties
Log:
https://jira.jboss.org/jira/browse/RF-5622
Modified: trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties
===================================================================
--- trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties 2009-01-10 14:44:37 UTC (rev 12196)
+++ trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties 2009-01-10 14:45:25 UTC (rev 12197)
@@ -85,8 +85,8 @@
plugnskin =richMisc, \t Plug'n'Skin, \t\t/images/ico_plugnskin.gif, \t\t/images/cn_plugnskin.gif, ArchitectureOverview.html\#PlugnSkin, jbossrichfaces/freezone/docs/tlddoc/rich/plugnskin.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIfileUpload.html, \t\t\t\t\t/richfaces/plugnskin.jsf
hotKey=richMisc, \t Hot Key, \t\t/images/ico_HotKey.gif, \t\t/images/cn_HotKey.gif, hotKey.html, jbossrichfaces/freezone/docs/tlddoc/rich/hotKey.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIhotkey.html, \t\t\t\t\t/richfaces/hotKey.jsf
ajaxValidator=richValidators, \t Ajax Validator, \t\t/images/ico_AjaxValidator.gif, \t\t/images/cn_AjaxValidator.gif, ajaxValidator.html, jbossrichfaces/freezone/docs/tlddoc/rich/ajaxValidator.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/ajax/AjaxValidatorTag.html, \t\t\t\t\t/richfaces/ajaxValidator.jsf
-beanValidator=richValidators, \t Bean Validator, \t\t/images/ico_BeanValidator.gif, \t\t/images/cn_BeanValidator.gif, beanValidator.html, jbossrichfaces/freezone/docs/tlddoc/rich/beanValidator.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/ajax/BeanValidatorTag.html, \t\t\t\t\t/richfaces/beanValidator.jsf
-graphValidator=richValidators, \t Graph Validator, \t\t/images/ico_GraphValidator.gif, \t\t/images/cn_GraphValidator.gif, graphValidator.html, jbossrichfaces/freezone/docs/tlddoc/rich/graphValidator.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/ajax/GraphValidatorTag.html, \t\t\t\t\t/richfaces/graphValidator.jsf
+beanValidator=richValidators, \t Bean Validator, \t\t/images/ico_BeanValidator.gif, \t\t/images/cn_BeanValidator.gif, beanValidator.html, jbossrichfaces/freezone/docs/tlddoc/rich/beanValidator.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIBeanValidator.html, \t\t\t\t\t/richfaces/beanValidator.jsf
+graphValidator=richValidators, \t Graph Validator, \t\t/images/ico_GraphValidator.gif, \t\t/images/cn_GraphValidator.gif, graphValidator.html, jbossrichfaces/freezone/docs/tlddoc/rich/graphValidator.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIGraphValidator.html, \t\t\t\t\t/richfaces/graphValidator.jsf
stateAPI=richMisc, \t State Manager API, \t\t/images/ico_StateManagerAPI.gif, \t\t/images/cn_StateManagerAPI.gif, ArchitectureOverview.html\#statemanagerapi, jbossrichfaces/freezone/docs/tlddoc/rich/graphValidator.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIhotkey.html, \t\t\t\t\t/richfaces/stateAPI.jsf
extendedDataTable= richDataIterators, Extended Data Table, /images/ico_ExtendedDataTable.gif, /images/cn_ExtendedDataTable.gif, extendedDataTable.html, jbossrichfaces/freezone/docs/tlddoc/rich/dataTable.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIDataTable.html, /richfaces/extendedDataTable.jsf
editor=richInputs, Editor, /images/ico_Editor.gif, /images/cn_Editor.gif, editor.html, jbossrichfaces/freezone/docs/tlddoc/rich/editor.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIEditor.html, /richfaces/editor.jsf, new
17 years
JBoss Rich Faces SVN: r12196 - trunk/sandbox/samples.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2009-01-10 09:44:37 -0500 (Sat, 10 Jan 2009)
New Revision: 12196
Modified:
trunk/sandbox/samples/pom.xml
Log:
add maven-rd-plugin-sample module
Modified: trunk/sandbox/samples/pom.xml
===================================================================
--- trunk/sandbox/samples/pom.xml 2009-01-10 14:40:16 UTC (rev 12195)
+++ trunk/sandbox/samples/pom.xml 2009-01-10 14:44:37 UTC (rev 12196)
@@ -17,5 +17,6 @@
<module>simpleTogglePanel2-sample</module>
<!--module>contextMenuDemo</module-->
<module>fileUploadPOC</module>
+ <module>maven-rd-plugin-sample</module>
</modules>
</project>
\ No newline at end of file
17 years
JBoss Rich Faces SVN: r12195 - in trunk/sandbox/samples: maven-rd-plugin-sample and 10 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2009-01-10 09:40:16 -0500 (Sat, 10 Jan 2009)
New Revision: 12195
Added:
trunk/sandbox/samples/maven-rd-plugin-sample/
trunk/sandbox/samples/maven-rd-plugin-sample/pom.xml
trunk/sandbox/samples/maven-rd-plugin-sample/src/
trunk/sandbox/samples/maven-rd-plugin-sample/src/main/
trunk/sandbox/samples/maven-rd-plugin-sample/src/main/java/
trunk/sandbox/samples/maven-rd-plugin-sample/src/main/java/org/
trunk/sandbox/samples/maven-rd-plugin-sample/src/main/java/org/richfaces/
trunk/sandbox/samples/maven-rd-plugin-sample/src/main/java/org/richfaces/cdk/
trunk/sandbox/samples/maven-rd-plugin-sample/src/main/java/org/richfaces/cdk/sandbox/
trunk/sandbox/samples/maven-rd-plugin-sample/src/main/java/org/richfaces/cdk/sandbox/Bean.java
trunk/sandbox/samples/maven-rd-plugin-sample/src/main/resources/
trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/
trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/WEB-INF/
trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/WEB-INF/faces-config.xml
trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/WEB-INF/web.xml
trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/index.jsp
trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/pages/
trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/pages/index.jsp
trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/pages/index.xhtml
Log:
initial commit
Added: trunk/sandbox/samples/maven-rd-plugin-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/maven-rd-plugin-sample/pom.xml (rev 0)
+++ trunk/sandbox/samples/maven-rd-plugin-sample/pom.xml 2009-01-10 14:40:16 UTC (rev 12195)
@@ -0,0 +1,43 @@
+<?xml version="1.0"?><project>
+ <parent>
+ <artifactId>samples</artifactId>
+ <groupId>org.richfaces.sandbox</groupId>
+ <version>3.3.0-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.cdk.sandbox</groupId>
+ <artifactId>maven-rd-plugin-sample</artifactId>
+ <packaging>war</packaging>
+ <name>maven-rd-plugin-sample Maven Webapp</name>
+ <version>3.3.0-SNAPSHOT</version>
+ <build>
+ <finalName>maven-rd-plugin-sample</finalName>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-resource-dependency-plugin</artifactId>
+ <groupId>org.richfaces.cdk.sandbox</groupId>
+
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-ui</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+</project>
\ No newline at end of file
Added: trunk/sandbox/samples/maven-rd-plugin-sample/src/main/java/org/richfaces/cdk/sandbox/Bean.java
===================================================================
--- trunk/sandbox/samples/maven-rd-plugin-sample/src/main/java/org/richfaces/cdk/sandbox/Bean.java (rev 0)
+++ trunk/sandbox/samples/maven-rd-plugin-sample/src/main/java/org/richfaces/cdk/sandbox/Bean.java 2009-01-10 14:40:16 UTC (rev 12195)
@@ -0,0 +1,29 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * 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.cdk.sandbox;
+/**
+ * @author $Autor$
+ *
+ */
+public class Bean {
+
+}
\ No newline at end of file
Added: trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/WEB-INF/faces-config.xml
===================================================================
--- trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/WEB-INF/faces-config.xml (rev 0)
+++ trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/WEB-INF/faces-config.xml 2009-01-10 14:40:16 UTC (rev 12195)
@@ -0,0 +1,10 @@
+<?xml version="1.0"?>
+<!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
+ "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
+<faces-config>
+ <managed-bean>
+ <managed-bean-name>bean</managed-bean-name>
+ <managed-bean-class>org.richfaces.cdk.sandbox.Bean</managed-bean-class>
+ <managed-bean-scope>request</managed-bean-scope>
+ </managed-bean>
+</faces-config>
Added: trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/WEB-INF/web.xml
===================================================================
--- trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/WEB-INF/web.xml (rev 0)
+++ trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/WEB-INF/web.xml 2009-01-10 14:40:16 UTC (rev 12195)
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
+ <display-name>Archetype Created Web Application</display-name>
+ <context-param>
+ <param-name>javax.faces.CONFIG_FILES</param-name>
+ <param-value>/WEB-INF/faces-config.xml</param-value>
+ </context-param>
+ <context-param>
+ <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
+ <param-value>server</param-value>
+ </context-param>
+ <!--
+ -->
+ <filter>
+ <display-name>Ajax4jsf Filter</display-name>
+ <filter-name>ajax4jsf</filter-name>
+ <filter-class>org.ajax4jsf.Filter</filter-class>
+ </filter>
+ <filter-mapping>
+ <filter-name>ajax4jsf</filter-name>
+ <servlet-name>Faces Servlet</servlet-name>
+ <dispatcher>REQUEST</dispatcher>
+ <dispatcher>FORWARD</dispatcher>
+ <dispatcher>INCLUDE</dispatcher>
+ <dispatcher>ERROR</dispatcher>
+ </filter-mapping>
+ <servlet>
+ <servlet-name>Faces Servlet</servlet-name>
+ <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
+ <load-on-startup>1</load-on-startup>
+ </servlet>
+ <servlet-mapping>
+ <servlet-name>Faces Servlet</servlet-name>
+ <url-pattern>/faces/*</url-pattern>
+ </servlet-mapping>
+ <servlet-mapping>
+ <servlet-name>Faces Servlet</servlet-name>
+ <url-pattern>*.jsf</url-pattern>
+ </servlet-mapping>
+ <login-config>
+ <auth-method>BASIC</auth-method>
+ </login-config>
+</web-app>
Added: trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/index.jsp
===================================================================
--- trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/index.jsp (rev 0)
+++ trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/index.jsp 2009-01-10 14:40:16 UTC (rev 12195)
@@ -0,0 +1,11 @@
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+
+<html>
+
+<head></head>
+
+ <body>
+ <jsp:forward page="/pages/index.jsf" />
+ </body>
+
+</html>
\ No newline at end of file
Added: trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/pages/index.jsp
===================================================================
--- trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/pages/index.jsp (rev 0)
+++ trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/pages/index.jsp 2009-01-10 14:40:16 UTC (rev 12195)
@@ -0,0 +1,12 @@
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<html>
+ <head>
+ <title></title>
+ </head>
+ <body>
+ <f:view>
+
+ </f:view>
+ </body>
+</html>
Added: trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/pages/index.xhtml
===================================================================
--- trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/pages/index.xhtml (rev 0)
+++ trunk/sandbox/samples/maven-rd-plugin-sample/src/main/webapp/pages/index.xhtml 2009-01-10 14:40:16 UTC (rev 12195)
@@ -0,0 +1,12 @@
+<!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:f="http://java.sun.com/jsf/core"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:a4j="https://ajax4jsf.dev.java.net/ajax"
+ xmlns:c="http://java.sun.com/jsp/jstl/core"
+ >
+ <f:view>
+
+ </f:view>
+</html>
\ No newline at end of file
17 years
JBoss Rich Faces SVN: r12194 - trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2009-01-10 09:33:27 -0500 (Sat, 10 Jan 2009)
New Revision: 12194
Modified:
trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties
Log:
https://jira.jboss.org/jira/browse/RF-5622
Modified: trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties
===================================================================
--- trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties 2009-01-10 14:25:32 UTC (rev 12193)
+++ trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties 2009-01-10 14:33:27 UTC (rev 12194)
@@ -84,9 +84,9 @@
StandardSkinning =richMisc, \t Standard Skinning, \t\t/images/ico_StandardComponentsSkinning.gif, \t\t/images/cn_StandardComponentsSkinning.gif, ArchitectureOverview.html\#StControlsSkinning, jbossrichfaces/freezone/docs/tlddoc/rich/StandardSkinning.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIfileUpload.html, \t\t\t\t\t/richfaces/standardSkinning.jsf
plugnskin =richMisc, \t Plug'n'Skin, \t\t/images/ico_plugnskin.gif, \t\t/images/cn_plugnskin.gif, ArchitectureOverview.html\#PlugnSkin, jbossrichfaces/freezone/docs/tlddoc/rich/plugnskin.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIfileUpload.html, \t\t\t\t\t/richfaces/plugnskin.jsf
hotKey=richMisc, \t Hot Key, \t\t/images/ico_HotKey.gif, \t\t/images/cn_HotKey.gif, hotKey.html, jbossrichfaces/freezone/docs/tlddoc/rich/hotKey.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIhotkey.html, \t\t\t\t\t/richfaces/hotKey.jsf
-ajaxValidator=richValidators, \t Ajax Validator, \t\t/images/ico_AjaxValidator.gif, \t\t/images/cn_AjaxValidator.gif, ajaxValidator.html, jbossrichfaces/freezone/docs/tlddoc/rich/ajaxValidator.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIhotkey.html, \t\t\t\t\t/richfaces/ajaxValidator.jsf
-beanValidator=richValidators, \t Bean Validator, \t\t/images/ico_BeanValidator.gif, \t\t/images/cn_BeanValidator.gif, beanValidator.html, jbossrichfaces/freezone/docs/tlddoc/rich/beanValidator.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIhotkey.html, \t\t\t\t\t/richfaces/beanValidator.jsf
-graphValidator=richValidators, \t Graph Validator, \t\t/images/ico_GraphValidator.gif, \t\t/images/cn_GraphValidator.gif, graphValidator.html, jbossrichfaces/freezone/docs/tlddoc/rich/graphValidator.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIhotkey.html, \t\t\t\t\t/richfaces/graphValidator.jsf
+ajaxValidator=richValidators, \t Ajax Validator, \t\t/images/ico_AjaxValidator.gif, \t\t/images/cn_AjaxValidator.gif, ajaxValidator.html, jbossrichfaces/freezone/docs/tlddoc/rich/ajaxValidator.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/ajax/AjaxValidatorTag.html, \t\t\t\t\t/richfaces/ajaxValidator.jsf
+beanValidator=richValidators, \t Bean Validator, \t\t/images/ico_BeanValidator.gif, \t\t/images/cn_BeanValidator.gif, beanValidator.html, jbossrichfaces/freezone/docs/tlddoc/rich/beanValidator.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/ajax/BeanValidatorTag.html, \t\t\t\t\t/richfaces/beanValidator.jsf
+graphValidator=richValidators, \t Graph Validator, \t\t/images/ico_GraphValidator.gif, \t\t/images/cn_GraphValidator.gif, graphValidator.html, jbossrichfaces/freezone/docs/tlddoc/rich/graphValidator.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/ajax/GraphValidatorTag.html, \t\t\t\t\t/richfaces/graphValidator.jsf
stateAPI=richMisc, \t State Manager API, \t\t/images/ico_StateManagerAPI.gif, \t\t/images/cn_StateManagerAPI.gif, ArchitectureOverview.html\#statemanagerapi, jbossrichfaces/freezone/docs/tlddoc/rich/graphValidator.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIhotkey.html, \t\t\t\t\t/richfaces/stateAPI.jsf
extendedDataTable= richDataIterators, Extended Data Table, /images/ico_ExtendedDataTable.gif, /images/cn_ExtendedDataTable.gif, extendedDataTable.html, jbossrichfaces/freezone/docs/tlddoc/rich/dataTable.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIDataTable.html, /richfaces/extendedDataTable.jsf
editor=richInputs, Editor, /images/ico_Editor.gif, /images/cn_Editor.gif, editor.html, jbossrichfaces/freezone/docs/tlddoc/rich/editor.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIEditor.html, /richfaces/editor.jsf, new
17 years
JBoss Rich Faces SVN: r12193 - in trunk/sandbox: cdk and 8 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2009-01-10 09:25:32 -0500 (Sat, 10 Jan 2009)
New Revision: 12193
Added:
trunk/sandbox/cdk/
trunk/sandbox/cdk/maven-resource-dependency-plugin/
trunk/sandbox/cdk/maven-resource-dependency-plugin/pom.xml
trunk/sandbox/cdk/maven-resource-dependency-plugin/src/
trunk/sandbox/cdk/maven-resource-dependency-plugin/src/main/
trunk/sandbox/cdk/maven-resource-dependency-plugin/src/main/java/
trunk/sandbox/cdk/maven-resource-dependency-plugin/src/main/java/org/
trunk/sandbox/cdk/maven-resource-dependency-plugin/src/main/java/org/richfaces/
trunk/sandbox/cdk/maven-resource-dependency-plugin/src/main/java/org/richfaces/cdk/
trunk/sandbox/cdk/maven-resource-dependency-plugin/src/main/java/org/richfaces/cdk/sandbox/
trunk/sandbox/cdk/maven-resource-dependency-plugin/src/main/java/org/richfaces/cdk/sandbox/CreateScriptMojo.java
trunk/sandbox/cdk/maven-resource-dependency-plugin/src/main/java/org/richfaces/cdk/sandbox/CreateStyleMojo.java
trunk/sandbox/cdk/pom.xml
Log:
initial commit
Added: trunk/sandbox/cdk/maven-resource-dependency-plugin/pom.xml
===================================================================
--- trunk/sandbox/cdk/maven-resource-dependency-plugin/pom.xml (rev 0)
+++ trunk/sandbox/cdk/maven-resource-dependency-plugin/pom.xml 2009-01-10 14:25:32 UTC (rev 12193)
@@ -0,0 +1,41 @@
+<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/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>cdk</artifactId>
+ <groupId>org.richfaces.sandbox</groupId>
+ <version>3.3.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.richfaces.cdk.sandbox</groupId>
+
+ <artifactId>maven-resource-dependency-plugin</artifactId>
+ <packaging>maven-plugin</packaging>
+ <version>3.3.0-SNAPSHOT</version>
+ <name>maven-resource-dependency-plugin</name>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-plugin-api</artifactId>
+ <version>2.0</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.maven.shared</groupId>
+ <artifactId>maven-plugin-testing-harness</artifactId>
+ <version>1.0-beta-1</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+
+ </dependencies>
+</project>
Added: trunk/sandbox/cdk/maven-resource-dependency-plugin/src/main/java/org/richfaces/cdk/sandbox/CreateScriptMojo.java
===================================================================
--- trunk/sandbox/cdk/maven-resource-dependency-plugin/src/main/java/org/richfaces/cdk/sandbox/CreateScriptMojo.java (rev 0)
+++ trunk/sandbox/cdk/maven-resource-dependency-plugin/src/main/java/org/richfaces/cdk/sandbox/CreateScriptMojo.java 2009-01-10 14:25:32 UTC (rev 12193)
@@ -0,0 +1,35 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * 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.cdk.sandbox;
+
+import org.apache.maven.plugin.AbstractMojo;
+import org.apache.maven.plugin.MojoExecutionException;
+
+/**
+ * @author Anton Belevich
+ *
+ */
+public class CreateScriptMojo extends AbstractMojo {
+ public void execute() throws MojoExecutionException {
+
+ }
+}
Added: trunk/sandbox/cdk/maven-resource-dependency-plugin/src/main/java/org/richfaces/cdk/sandbox/CreateStyleMojo.java
===================================================================
--- trunk/sandbox/cdk/maven-resource-dependency-plugin/src/main/java/org/richfaces/cdk/sandbox/CreateStyleMojo.java (rev 0)
+++ trunk/sandbox/cdk/maven-resource-dependency-plugin/src/main/java/org/richfaces/cdk/sandbox/CreateStyleMojo.java 2009-01-10 14:25:32 UTC (rev 12193)
@@ -0,0 +1,38 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * 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.cdk.sandbox;
+
+import org.apache.maven.plugin.AbstractMojo;
+import org.apache.maven.plugin.MojoExecutionException;
+
+/**
+ * @author Anton Belevich
+ *
+ */
+public class CreateStyleMojo extends AbstractMojo {
+
+ public void execute() throws MojoExecutionException{
+ // TODO Auto-generated method stub
+
+ }
+
+}
Added: trunk/sandbox/cdk/pom.xml
===================================================================
--- trunk/sandbox/cdk/pom.xml (rev 0)
+++ trunk/sandbox/cdk/pom.xml 2009-01-10 14:25:32 UTC (rev 12193)
@@ -0,0 +1,32 @@
+<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/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>root</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.0-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.sandbox</groupId>
+ <artifactId>cdk</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>JSF Components Development kit</name>
+ <dependencies />
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+ <modules>
+ <module>maven-resource-dependency-plugin</module>
+ </modules>
+</project>
\ No newline at end of file
17 years
JBoss Rich Faces SVN: r12192 - trunk/docs/userguide/en/src/main/docbook/modules.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2009-01-10 08:01:56 -0500 (Sat, 10 Jan 2009)
New Revision: 12192
Modified:
trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
Log:
more info is added to the Queue Principals chapter
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-01-10 13:01:03 UTC (rev 12191)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-01-10 13:01:56 UTC (rev 12192)
@@ -402,11 +402,36 @@
</section>
<section id="QueuePrinciples">
<title>Queue Principles</title>
- <para>Starting from 3.3.0 version RichFaces has a improved queue functionality. The new
- implementation provides a rich flexibility for making queues of Ajax requests. You
- can use the queue in a number of ways: </para>
+ <para>Starting from 3.3.0 version RichFaces has an improved queue.</para>
+
+ <para>There are some serious reasons why the queue has been improved. The improved queue allows to</para>
+
<itemizedlist>
+
+
+ <listitem>
+ <para>
+ Eliminate the possibility of collisions when several JSF requests pass the JSF lifecycle at the same time. The queue prevents sending such requests. Only one request is processed. The rest ones are waiting.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Reduce the traffic between browser and the server. The "similar" requests came within requestDelay are absorbed. Only the last one is actually sent. Reducing the number of request reduces the server load.
+ </para>
+ </listitem>
+
<listitem><para>
+
+ Significantly increase the amount of "unrelated" asynchronous requests to processed
+
+ </para></listitem>
+
+ </itemizedlist>
+
+ <para>There are 4 types of the queue:</para>
+ <itemizedlist>
+ <listitem><para>
Global default queue, defined in the web.xml file
</para>
</listitem>
17 years
JBoss Rich Faces SVN: r12191 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2009-01-10 08:01:03 -0500 (Sat, 10 Jan 2009)
New Revision: 12191
Modified:
trunk/docs/userguide/en/src/main/docbook/included/progressBar.xml
Log:
A mistake is corrected
Modified: trunk/docs/userguide/en/src/main/docbook/included/progressBar.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/progressBar.xml 2009-01-10 13:00:32 UTC (rev 12190)
+++ trunk/docs/userguide/en/src/main/docbook/included/progressBar.xml 2009-01-10 13:01:03 UTC (rev 12191)
@@ -710,8 +710,8 @@
<emphasis role="bold">Example:</emphasis>
</para>
<programlisting role="CSS"><![CDATA[...
-.rich-progress-bar-remained{
- background-color: #ebf3fd;
+.richfacesSkin .mceButton {
+ border: 1px #FF0000 solid;
}
...]]></programlisting>
17 years