[richfaces-svn-commits] JBoss Rich Faces SVN: r4631 - in branches/3.1.x: extensions/portletbridge and 5 other directories.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Fri Dec 7 18:30:51 EST 2007


Author: alexsmirnov
Date: 2007-12-07 18:30:51 -0500 (Fri, 07 Dec 2007)
New Revision: 4631

Modified:
   branches/3.1.x/extensions/pom.xml
   branches/3.1.x/extensions/portletbridge/pom.xml
   branches/3.1.x/extensions/portletbridge/portletbridge-api/pom.xml
   branches/3.1.x/extensions/portletbridge/portletbridge-impl/pom.xml
   branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/renderkit/AjaxContainerRenderer.java
   branches/3.1.x/samples/ajaxPortlet/pom.xml
   branches/3.1.x/samples/pom.xml
Log:
Prepare to build RF 3.1.3 release candidate 2

Modified: branches/3.1.x/extensions/pom.xml
===================================================================
--- branches/3.1.x/extensions/pom.xml	2007-12-07 22:51:31 UTC (rev 4630)
+++ branches/3.1.x/extensions/pom.xml	2007-12-07 23:30:51 UTC (rev 4631)
@@ -11,6 +11,6 @@
   <name>Richfaces extensions for a different environments</name>
   <packaging>pom</packaging>
   <modules>
-    <module>portlet</module>
+    <module>portletbridge</module>
   </modules>
 </project>
\ No newline at end of file

Modified: branches/3.1.x/extensions/portletbridge/pom.xml
===================================================================
--- branches/3.1.x/extensions/portletbridge/pom.xml	2007-12-07 22:51:31 UTC (rev 4630)
+++ branches/3.1.x/extensions/portletbridge/pom.xml	2007-12-07 23:30:51 UTC (rev 4631)
@@ -2,12 +2,12 @@
 	<parent>
 		<artifactId>extensions</artifactId>
 		<groupId>org.richfaces</groupId>
-		<version>3.2.0-SNAPSHOT</version>
+		<version>3.1.3-SNAPSHOT</version>
 	</parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.richfaces.extensions</groupId>
   <artifactId>portletbridge</artifactId>
-	<version>3.2.0-SNAPSHOT</version>
+	<version>3.1.3-SNAPSHOT</version>
   <name>Richfaces bridge for a portlet environment</name>
   <packaging>pom</packaging>
 	<build>
@@ -62,7 +62,7 @@
 		<dependency>
 			<groupId>org.richfaces.framework</groupId>
 			<artifactId>richfaces-test</artifactId>
-			<version>3.2.0-SNAPSHOT</version>
+			<version>3.1.3-SNAPSHOT</version>
 			<scope>test</scope>
 		</dependency>
 	</dependencies>

Modified: branches/3.1.x/extensions/portletbridge/portletbridge-api/pom.xml
===================================================================
--- branches/3.1.x/extensions/portletbridge/portletbridge-api/pom.xml	2007-12-07 22:51:31 UTC (rev 4630)
+++ branches/3.1.x/extensions/portletbridge/portletbridge-api/pom.xml	2007-12-07 23:30:51 UTC (rev 4631)
@@ -4,12 +4,12 @@
 	<parent>
 		<artifactId>portletbridge</artifactId>
 		<groupId>org.richfaces.extensions</groupId>
-		<version>3.2.0-SNAPSHOT</version>
+		<version>3.1.3-SNAPSHOT</version>
 	</parent>
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>org.richfaces.extensions.portletbridge</groupId>
 	<artifactId>portletbridge-api</artifactId>
-	<version>3.2.0-SNAPSHOT</version>
+	<version>3.1.3-SNAPSHOT</version>
 	<name>JSR-301 jsf-portlet brige api</name>
 	<url>http://labs.jboss.com/wiki/Ajax4jsf/a4j-portlet</url>
 	  <build>

Modified: branches/3.1.x/extensions/portletbridge/portletbridge-impl/pom.xml
===================================================================
--- branches/3.1.x/extensions/portletbridge/portletbridge-impl/pom.xml	2007-12-07 22:51:31 UTC (rev 4630)
+++ branches/3.1.x/extensions/portletbridge/portletbridge-impl/pom.xml	2007-12-07 23:30:51 UTC (rev 4631)
@@ -4,12 +4,12 @@
 	<parent>
 		<artifactId>portletbridge</artifactId>
 		<groupId>org.richfaces.extensions</groupId>
-		<version>3.2.0-SNAPSHOT</version>
+		<version>3.1.3-SNAPSHOT</version>
 	</parent>
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>org.richfaces.extensions.portletbridge</groupId>
 	<artifactId>portletbridge-impl</artifactId>
-	<version>3.2.0-SNAPSHOT</version>
+	<version>3.1.3-SNAPSHOT</version>
 	<name>ajax4jsf portlet brige implementation</name>
 	<url>http://labs.jboss.com/wiki/Ajax4jsf/a4j-portlet</url>
 	<dependencies>
@@ -22,18 +22,18 @@
 		<dependency>
 			<groupId>org.richfaces.framework</groupId>
 			<artifactId>richfaces-impl</artifactId>
-			<version>3.2.0-SNAPSHOT</version>
+			<version>3.1.3-SNAPSHOT</version>
 		</dependency>
 		<dependency>
 			<groupId>org.richfaces.extensions.portletbridge</groupId>
 			<artifactId>portletbridge-api</artifactId>
-			<version>3.2.0-SNAPSHOT</version>
+			<version>3.1.3-SNAPSHOT</version>
 			<optional>true</optional>
 		</dependency>
 		<dependency>
 			<groupId>org.richfaces.extensions.portletbridge</groupId>
 			<artifactId>portletbridge-api</artifactId>
-			<version>3.2.0-SNAPSHOT</version>
+			<version>3.1.3-SNAPSHOT</version>
 			<classifier>tests</classifier>
 			<scope>test</scope>
 		</dependency>

Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/renderkit/AjaxContainerRenderer.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/renderkit/AjaxContainerRenderer.java	2007-12-07 22:51:31 UTC (rev 4630)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/renderkit/AjaxContainerRenderer.java	2007-12-07 23:30:51 UTC (rev 4631)
@@ -148,8 +148,8 @@
 		if (log.isDebugEnabled()) {
 			log.debug(Messages.getMessage(
 					Messages.DECODE_AJAX_REQUEST_STATUS_INFO, clientId));
-			log.debug(Messages.getMessage(Messages.REQUEST_PARAMETERS_MAP,
-					paramMap.toString()));
+//			log.debug(Messages.getMessage(Messages.REQUEST_PARAMETERS_MAP,
+//					paramMap.toString()));
 		}
 		Object ajaxParameter = paramMap.get(AJAX_PARAMETER_NAME);
 		AjaxContainer ajaxContainer = (AjaxContainer) component;

Modified: branches/3.1.x/samples/ajaxPortlet/pom.xml
===================================================================
--- branches/3.1.x/samples/ajaxPortlet/pom.xml	2007-12-07 22:51:31 UTC (rev 4630)
+++ branches/3.1.x/samples/ajaxPortlet/pom.xml	2007-12-07 23:30:51 UTC (rev 4631)
@@ -5,12 +5,12 @@
 	<parent>
 		<artifactId>samples</artifactId>
 		<groupId>org.richfaces</groupId>
-		<version>3.2.0-SNAPSHOT</version>
+		<version>3.1.3-SNAPSHOT</version>
 	</parent>
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>org.richfaces.samples</groupId>
 	<artifactId>portalAjaxSample</artifactId>
-	<version>3.2.0-SNAPSHOT</version>
+	<version>3.1.3-SNAPSHOT</version>
 	<packaging>war</packaging>
 	<description>Ajax JSF sample portlet</description>
 	<build>
@@ -27,7 +27,7 @@
 		<dependency>
 			<groupId>org.richfaces.extensions.portletbridge</groupId>
 			<artifactId>portletbridge-api</artifactId>
-			<version>3.2.0-SNAPSHOT</version>
+			<version>3.1.3-SNAPSHOT</version>
 			<exclusions>
 				<exclusion>
 					<groupId>javax.faces</groupId>
@@ -42,7 +42,7 @@
 		<dependency>
 			<groupId>org.richfaces.extensions.portletbridge</groupId>
 			<artifactId>portletbridge-impl</artifactId>
-			<version>3.2.0-SNAPSHOT</version>
+			<version>3.1.3-SNAPSHOT</version>
 			<exclusions>
 				<exclusion>
 					<groupId>javax.faces</groupId>
@@ -57,7 +57,7 @@
 		<dependency>
 			<groupId>org.richfaces.ui</groupId>
 			<artifactId>richfaces-ui</artifactId>
-			<version>3.2.0-SNAPSHOT</version>
+			<version>3.1.3-SNAPSHOT</version>
 		</dependency>
 		<!--
 		<dependency>

Modified: branches/3.1.x/samples/pom.xml
===================================================================
--- branches/3.1.x/samples/pom.xml	2007-12-07 22:51:31 UTC (rev 4630)
+++ branches/3.1.x/samples/pom.xml	2007-12-07 23:30:51 UTC (rev 4631)
@@ -428,9 +428,7 @@
 		<module>orderingListDemo</module>
 		<module>listShuttleDemo</module>
 		<module>contextMenuDemo</module>
-		<!--
-			<module>ajaxPortlet</module>
-		-->
+		<module>ajaxPortlet</module>
 		<module>panelmenu-sample</module>
 		<module>rich-message-demo</module>
 		<!--




More information about the richfaces-svn-commits mailing list