JBoss Rich Faces SVN: r10408 - in trunk/samples/richfaces-demo: src/main/webapp/richfaces/stateAPI/examples and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-09-10 15:59:42 -0400 (Wed, 10 Sep 2008)
New Revision: 10408
Modified:
trunk/samples/richfaces-demo/pom.xml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/examples/simple.xhtml
Log:
stateAPI made working on tomcat 5.5
Modified: trunk/samples/richfaces-demo/pom.xml
===================================================================
--- trunk/samples/richfaces-demo/pom.xml 2008-09-10 19:56:11 UTC (rev 10407)
+++ trunk/samples/richfaces-demo/pom.xml 2008-09-10 19:59:42 UTC (rev 10408)
@@ -141,7 +141,7 @@
<configuration>
<webappDirectory>${project.build.directory}/${project.build.finalName}-tomcat6</webappDirectory>
<classifier>tomcat6</classifier>
- <packagingExcludes>WEB-INF/lib/el-*</packagingExcludes>
+ <packagingExcludes>WEB-INF/lib/el-*</packagingExcludes>
</configuration>
</execution>
</executions>
@@ -160,12 +160,12 @@
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
- <version>1.2</version>
+ <version>1.0</version>
</dependency>
<dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-ri</artifactId>
- <version>1.2</version>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/examples/simple.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/examples/simple.xhtml 2008-09-10 19:56:11 UTC (rev 10407)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/examples/simple.xhtml 2008-09-10 19:59:42 UTC (rev 10408)
@@ -35,6 +35,6 @@
</h:inputSecret>
<rich:message for="confirm"/>
</h:panelGrid>
- <a4j:commandButton actionListener="#{state.action.listener}" action="#{state.ok}" value="#{state.okBtn}" id="action"/>
+ <a4j:commandButton actionListener="#{state.action.listener}" action="#{state.action.ok}" value="#{state.okBtn}" id="action"/>
</rich:panel>
</ui:composition>
\ No newline at end of file
16 years, 3 months
JBoss Rich Faces SVN: r10407 - in branches/3.2.x/samples/richfaces-demo: src/main/webapp/richfaces/stateAPI/examples and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-09-10 15:56:11 -0400 (Wed, 10 Sep 2008)
New Revision: 10407
Modified:
branches/3.2.x/samples/richfaces-demo/pom.xml
branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/examples/simple.xhtml
Log:
stateAPI made working on tomcat 5.5
Modified: branches/3.2.x/samples/richfaces-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-demo/pom.xml 2008-09-10 19:49:49 UTC (rev 10406)
+++ branches/3.2.x/samples/richfaces-demo/pom.xml 2008-09-10 19:56:11 UTC (rev 10407)
@@ -141,7 +141,7 @@
<configuration>
<webappDirectory>${project.build.directory}/${project.build.finalName}-tomcat6</webappDirectory>
<classifier>tomcat6</classifier>
- <packagingExcludes>WEB-INF/lib/el-*</packagingExcludes>
+ <packagingExcludes>WEB-INF/lib/el-*</packagingExcludes>
</configuration>
</execution>
</executions>
@@ -160,13 +160,12 @@
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
- <version>1.2</version>
+ <version>1.0</version>
</dependency>
<dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-ri</artifactId>
- <version>1.2</version>
- <!--scope>provided</scope-->
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
Modified: branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/examples/simple.xhtml
===================================================================
--- branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/examples/simple.xhtml 2008-09-10 19:49:49 UTC (rev 10406)
+++ branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/examples/simple.xhtml 2008-09-10 19:56:11 UTC (rev 10407)
@@ -35,6 +35,6 @@
</h:inputSecret>
<rich:message for="confirm"/>
</h:panelGrid>
- <a4j:commandButton actionListener="#{state.action.listener}" action="#{state.ok}" value="#{state.okBtn}" id="action"/>
+ <a4j:commandButton actionListener="#{state.action.listener}" action="#{state.action.ok}" value="#{state.okBtn}" id="action"/>
</rich:panel>
</ui:composition>
\ No newline at end of file
16 years, 3 months
JBoss Rich Faces SVN: r10406 - in tags/3.2.2.GA/samples/richfaces-demo: src/main/webapp/richfaces/stateAPI/examples and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-09-10 15:49:49 -0400 (Wed, 10 Sep 2008)
New Revision: 10406
Modified:
tags/3.2.2.GA/samples/richfaces-demo/pom.xml
tags/3.2.2.GA/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/examples/simple.xhtml
Log:
StateAPI demo made working in Tomcat 5.5
Invalid packaging fixed
Modified: tags/3.2.2.GA/samples/richfaces-demo/pom.xml
===================================================================
--- tags/3.2.2.GA/samples/richfaces-demo/pom.xml 2008-09-10 18:08:36 UTC (rev 10405)
+++ tags/3.2.2.GA/samples/richfaces-demo/pom.xml 2008-09-10 19:49:49 UTC (rev 10406)
@@ -129,7 +129,7 @@
<configuration>
<webappDirectory>${project.build.directory}/${project.build.finalName}-jee5</webappDirectory>
<classifier>jee5</classifier>
- <warSourceExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/el-*</warSourceExcludes>
+ <packagingExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/el-*</packagingExcludes>
</configuration>
</execution>
<execution>
@@ -141,7 +141,7 @@
<configuration>
<webappDirectory>${project.build.directory}/${project.build.finalName}-tomcat6</webappDirectory>
<classifier>tomcat6</classifier>
- <warSourceExcludes>WEB-INF/lib/el-*</warSourceExcludes>
+ <packagingExcludes>WEB-INF/lib/el-*</packagingExcludes>
</configuration>
</execution>
</executions>
Modified: tags/3.2.2.GA/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/examples/simple.xhtml
===================================================================
--- tags/3.2.2.GA/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/examples/simple.xhtml 2008-09-10 18:08:36 UTC (rev 10405)
+++ tags/3.2.2.GA/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/examples/simple.xhtml 2008-09-10 19:49:49 UTC (rev 10406)
@@ -35,6 +35,6 @@
</h:inputSecret>
<rich:message for="confirm"/>
</h:panelGrid>
- <a4j:commandButton actionListener="#{state.action.listener}" action="#{state.ok}" value="#{state.okBtn}" id="action"/>
+ <a4j:commandButton actionListener="#{state.action.listener}" action="#{state.action.ok}" value="#{state.okBtn}" id="action"/>
</rich:panel>
</ui:composition>
\ No newline at end of file
16 years, 3 months
JBoss Rich Faces SVN: r10405 - trunk/samples/richfaces-demo.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-09-10 14:08:36 -0400 (Wed, 10 Sep 2008)
New Revision: 10405
Modified:
trunk/samples/richfaces-demo/pom.xml
Log:
https://jira.jboss.org/jira/browse/RF-4423
El-API version changed to 1.2
Modified: trunk/samples/richfaces-demo/pom.xml
===================================================================
--- trunk/samples/richfaces-demo/pom.xml 2008-09-10 18:06:00 UTC (rev 10404)
+++ trunk/samples/richfaces-demo/pom.xml 2008-09-10 18:08:36 UTC (rev 10405)
@@ -129,7 +129,7 @@
<configuration>
<webappDirectory>${project.build.directory}/${project.build.finalName}-jee5</webappDirectory>
<classifier>jee5</classifier>
- <warSourceExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/el-*</warSourceExcludes>
+ <packagingExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/el-*</packagingExcludes>
</configuration>
</execution>
<execution>
@@ -141,7 +141,7 @@
<configuration>
<webappDirectory>${project.build.directory}/${project.build.finalName}-tomcat6</webappDirectory>
<classifier>tomcat6</classifier>
- <warSourceExcludes>WEB-INF/lib/el-*</warSourceExcludes>
+ <packagingExcludes>WEB-INF/lib/el-*</packagingExcludes>
</configuration>
</execution>
</executions>
@@ -160,7 +160,7 @@
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
- <version>1.0</version>
+ <version>1.2</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
16 years, 3 months
JBoss Rich Faces SVN: r10404 - branches/3.2.x/samples/richfaces-demo.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-09-10 14:06:00 -0400 (Wed, 10 Sep 2008)
New Revision: 10404
Modified:
branches/3.2.x/samples/richfaces-demo/pom.xml
Log:
El-API version changed to 1.2
Modified: branches/3.2.x/samples/richfaces-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-demo/pom.xml 2008-09-10 18:04:54 UTC (rev 10403)
+++ branches/3.2.x/samples/richfaces-demo/pom.xml 2008-09-10 18:06:00 UTC (rev 10404)
@@ -160,7 +160,7 @@
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
- <version>1.0</version>
+ <version>1.2</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
16 years, 3 months
JBoss Rich Faces SVN: r10403 - branches/3.2.x/samples/richfaces-demo.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-09-10 14:04:54 -0400 (Wed, 10 Sep 2008)
New Revision: 10403
Modified:
branches/3.2.x/samples/richfaces-demo/pom.xml
Log:
https://jira.jboss.org/jira/browse/RF-4423
Modified: branches/3.2.x/samples/richfaces-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-demo/pom.xml 2008-09-10 16:09:04 UTC (rev 10402)
+++ branches/3.2.x/samples/richfaces-demo/pom.xml 2008-09-10 18:04:54 UTC (rev 10403)
@@ -129,7 +129,7 @@
<configuration>
<webappDirectory>${project.build.directory}/${project.build.finalName}-jee5</webappDirectory>
<classifier>jee5</classifier>
- <warSourceExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/el-*</warSourceExcludes>
+ <packagingExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/el-*</packagingExcludes>
</configuration>
</execution>
<execution>
@@ -141,7 +141,7 @@
<configuration>
<webappDirectory>${project.build.directory}/${project.build.finalName}-tomcat6</webappDirectory>
<classifier>tomcat6</classifier>
- <warSourceExcludes>WEB-INF/lib/el-*</warSourceExcludes>
+ <packagingExcludes>WEB-INF/lib/el-*</packagingExcludes>
</configuration>
</execution>
</executions>
16 years, 3 months
JBoss Rich Faces SVN: r10402 - trunk/samples/richfaces-demo.
by richfaces-svn-commits@lists.jboss.org
Author: dmorozov
Date: 2008-09-10 12:09:04 -0400 (Wed, 10 Sep 2008)
New Revision: 10402
Modified:
trunk/samples/richfaces-demo/pom.xml
Log:
Replace unknown el-impl with reference implementation jar el-ri
Modified: trunk/samples/richfaces-demo/pom.xml
===================================================================
--- trunk/samples/richfaces-demo/pom.xml 2008-09-10 16:08:17 UTC (rev 10401)
+++ trunk/samples/richfaces-demo/pom.xml 2008-09-10 16:09:04 UTC (rev 10402)
@@ -163,9 +163,9 @@
<version>1.0</version>
</dependency>
<dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
+ <groupId>javax.el</groupId>
+ <artifactId>el-ri</artifactId>
+ <version>1.2</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
16 years, 3 months
JBoss Rich Faces SVN: r10401 - branches/3.2.x/samples/richfaces-demo.
by richfaces-svn-commits@lists.jboss.org
Author: dmorozov
Date: 2008-09-10 12:08:17 -0400 (Wed, 10 Sep 2008)
New Revision: 10401
Modified:
branches/3.2.x/samples/richfaces-demo/pom.xml
Log:
Replace unknown el-impl with reference implementation jar el-ri
Modified: branches/3.2.x/samples/richfaces-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-demo/pom.xml 2008-09-10 16:03:00 UTC (rev 10400)
+++ branches/3.2.x/samples/richfaces-demo/pom.xml 2008-09-10 16:08:17 UTC (rev 10401)
@@ -163,9 +163,10 @@
<version>1.0</version>
</dependency>
<dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
+ <groupId>javax.el</groupId>
+ <artifactId>el-ri</artifactId>
+ <version>1.2</version>
+ <!--scope>provided</scope-->
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
16 years, 3 months
JBoss Rich Faces SVN: r10400 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: artdaw
Date: 2008-09-10 12:03:00 -0400 (Wed, 10 Sep 2008)
New Revision: 10400
Modified:
trunk/docs/userguide/en/src/main/docbook/included/graphValidator.desc.xml
Log:
Modified: trunk/docs/userguide/en/src/main/docbook/included/graphValidator.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/graphValidator.desc.xml 2008-09-10 14:05:08 UTC (rev 10399)
+++ trunk/docs/userguide/en/src/main/docbook/included/graphValidator.desc.xml 2008-09-10 16:03:00 UTC (rev 10400)
@@ -1,14 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
-<section>
+<section id="graphValidator" role="new">
<sectioninfo>
<keywordset>
- <keyword>rich:ajaxValidator</keyword>
+ <keyword>rich:graphValidator</keyword>
</keywordset>
</sectioninfo>
<section>
<title>Description</title>
<para>The<emphasis role="bold">
- <property><rich:ajaxGraph></property>
+ <property><rich:graphValidator></property>
</emphasis>component allows to register Hibernate Validators for multiple input components.</para>
</section>
16 years, 3 months
JBoss Rich Faces SVN: r10399 - trunk/samples/richfaces-demo/src/main/webapp/css.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-09-10 10:05:08 -0400 (Wed, 10 Sep 2008)
New Revision: 10399
Modified:
trunk/samples/richfaces-demo/src/main/webapp/css/common.css
Log:
dr-* panelbar class renamed to rich-*
Modified: trunk/samples/richfaces-demo/src/main/webapp/css/common.css
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/css/common.css 2008-09-10 13:09:10 UTC (rev 10398)
+++ trunk/samples/richfaces-demo/src/main/webapp/css/common.css 2008-09-10 14:05:08 UTC (rev 10399)
@@ -177,7 +177,7 @@
padding : 0;
}
- .dr-pnlbar-int {
+ .rich-panelbar-interior {
zoom: 1;
}
16 years, 3 months