[richfaces-svn-commits] JBoss Rich Faces SVN: r4626 - in trunk/framework/impl: src/main/java/org/ajax4jsf/renderkit and 1 other directory.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Fri Dec 7 17:10:39 EST 2007


Author: alexsmirnov
Date: 2007-12-07 17:10:39 -0500 (Fri, 07 Dec 2007)
New Revision: 4626

Modified:
   trunk/framework/impl/pom.xml
   trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit/AjaxContainerRenderer.java
Log:
Fix for a http://jira.jboss.com/jira/browse/RF-1564

Modified: trunk/framework/impl/pom.xml
===================================================================
--- trunk/framework/impl/pom.xml	2007-12-07 21:08:40 UTC (rev 4625)
+++ trunk/framework/impl/pom.xml	2007-12-07 22:10:39 UTC (rev 4626)
@@ -66,6 +66,49 @@
 					</execution>
 				</executions>
 			</plugin>
+			      <plugin>
+        <groupId>net.sf.alchim</groupId>
+        <artifactId>yuicompressor-maven-plugin</artifactId>
+        <executions><!-- 
+          <execution>
+            <goals>
+              <goal>compress</goal>
+            </goals>
+          </execution>-->
+        </executions>        
+        <configuration>
+          <nosuffix>false</nosuffix>
+          <outputDirectory>${project.build.directory}/compressed/</outputDirectory>
+          <blaBla>foo</blaBla>
+          <aggregations>
+            <aggregation>
+              <!-- remove files after aggregation (default: false)
+              <removeIncluded>true</removeIncluded>
+              -->
+              <!-- insert new line after each concatenation (default: false) -->
+              <insertNewLine>false</insertNewLine>
+              <output>${project.build.directory}/compressed/framework.pack.js</output>
+              <!-- files to include, path relative to output's directory or absolute path-->
+              <includes>
+                <include>**/*.js</include>
+              </includes>
+              <!-- files to exclude, path relative to output's directory -->
+              <excludes>
+                <exclude>**/*.pack.js</exclude>
+                <exclude>**/compressed.css</exclude>
+              </excludes>
+            </aggregation>
+          </aggregations>
+		<resources>
+			<resource>
+				<directory>target/javascript</directory>
+			</resource>
+			<resource>
+				<directory>src/main/resources</directory>
+			</resource>
+		</resources>
+        </configuration>
+      </plugin>
 		</plugins>
 	</build>
 	<profiles>

Modified: trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit/AjaxContainerRenderer.java
===================================================================
--- trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit/AjaxContainerRenderer.java	2007-12-07 21:08:40 UTC (rev 4625)
+++ trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit/AjaxContainerRenderer.java	2007-12-07 22:10:39 UTC (rev 4626)
@@ -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;




More information about the richfaces-svn-commits mailing list