[richfaces-svn-commits] JBoss Rich Faces SVN: r461 - in trunk: richfaces and 5 other directories.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Thu Apr 19 20:31:19 EDT 2007


Author: alexsmirnov
Date: 2007-04-19 20:31:19 -0400 (Thu, 19 Apr 2007)
New Revision: 461

Modified:
   trunk/pom.xml
   trunk/richfaces-samples/dataTableDemo/src/main/java/org/richfaces/Bean.java
   trunk/richfaces-samples/dataTableDemo/src/main/webapp/pages/ajax.jsp
   trunk/richfaces-samples/pom.xml
   trunk/richfaces/dataTable/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java
   trunk/richfaces/dataTable/src/main/templates/org/richfaces/htmlColgroup.jspx
   trunk/richfaces/dataTable/src/main/templates/org/richfaces/htmlColumn.jspx
   trunk/richfaces/pom.xml
Log:
fix site reports generation

Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml	2007-04-19 18:10:50 UTC (rev 460)
+++ trunk/pom.xml	2007-04-20 00:31:19 UTC (rev 461)
@@ -31,7 +31,7 @@
 			<uniqueVersion>true</uniqueVersion>
 			<url>${snapshotRepository}</url>
 		</snapshotRepository>
-	</distributionManagement>
+    	</distributionManagement>
 	<scm>
 		<connection>
 			scm:svn:http://anonsvn.jboss.org/repos/richfaces/

Modified: trunk/richfaces/dataTable/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java
===================================================================
--- trunk/richfaces/dataTable/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java	2007-04-19 18:10:50 UTC (rev 460)
+++ trunk/richfaces/dataTable/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java	2007-04-20 00:31:19 UTC (rev 461)
@@ -166,6 +166,8 @@
 		UIComponent column = null;
 		while (iter.hasNext()) {
 			column = (UIComponent) iter.next();
+			// Clear clientId cache, for current row.
+			column.setId(column.getId());
 			// Start new row for first column - expect a case of the detail
 			// table, wich will be insert own row.
 			if (first && !(column instanceof Row)) {
@@ -204,7 +206,7 @@
 			} else if (column.isRendered()) {
 				// UIColumn don't have own renderer
 				writer.startElement(HTML.td_ELEM, table);
-				getUtils().encodeId(context, column);
+//				getUtils().encodeId(context, column);
 				String columnClass = holder.getColumnClass(currentColumn);
 				encodeStyleClass(writer, null, getCellSkinClass(), null,
 						columnClass);

Modified: trunk/richfaces/dataTable/src/main/templates/org/richfaces/htmlColgroup.jspx
===================================================================
--- trunk/richfaces/dataTable/src/main/templates/org/richfaces/htmlColgroup.jspx	2007-04-19 18:10:50 UTC (rev 460)
+++ trunk/richfaces/dataTable/src/main/templates/org/richfaces/htmlColgroup.jspx	2007-04-20 00:31:19 UTC (rev 461)
@@ -11,8 +11,7 @@
 	component="org.richfaces.component.UIColumnGroup" 
 	>
 	<f:clientid var="clientId"/>
-	<tr id="#{clientId}"
-		x:passThruWithExclusions="id"
+	<tr x:passThruWithExclusions="id"
 		>
 	<vcp:body />
 	</tr>

Modified: trunk/richfaces/dataTable/src/main/templates/org/richfaces/htmlColumn.jspx
===================================================================
--- trunk/richfaces/dataTable/src/main/templates/org/richfaces/htmlColumn.jspx	2007-04-19 18:10:50 UTC (rev 460)
+++ trunk/richfaces/dataTable/src/main/templates/org/richfaces/htmlColumn.jspx	2007-04-20 00:31:19 UTC (rev 461)
@@ -13,8 +13,7 @@
 	component="org.richfaces.component.UIColumn" 
 	>
 	<f:clientid var="clientId"/>
-	<td id="#{clientId}"
-	    class="#{this:styleClass(context,component)}"
+	<td class="#{this:styleClass(context,component)}"
 		x:passThruWithExclusions="value,name,type,id,class"
 		>
 				<vcp:body/>

Modified: trunk/richfaces/pom.xml
===================================================================
--- trunk/richfaces/pom.xml	2007-04-19 18:10:50 UTC (rev 460)
+++ trunk/richfaces/pom.xml	2007-04-20 00:31:19 UTC (rev 461)
@@ -1,317 +1,340 @@
 <?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/maven-v4_0_0.xsd">
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.richfaces</groupId>
-  <artifactId>richfaces-parent</artifactId>
-  <packaging>pom</packaging>
-  <name>RichFaces Components</name>
-  <version>3.0.1-SNAPSHOT</version>
-  <url>http://richfaces.ajax4jsf.org</url>
-  <properties>
-	<maven.test.failure.ignore>true</maven.test.failure.ignore>
-  </properties>
-  <issueManagement>
-    <system>JIRA</system>
-    <url>http://jira.jboss.org/jira/browse/RF</url>
-  </issueManagement>
-  <ciManagement>
-    <system>cruisecontrol</system>
-  </ciManagement>
-  <developers>
-    <developer>
-      <id>alexsmirnov</id>
-      <name>Alexander Smirnov</name>
-      <email>alexsmirnov at exadel.com</email>
-      <organization>Exadel Inc.</organization>
-      <organizationUrl>http://www.exadel.com</organizationUrl>
-      <roles>
-        <role>architect</role>
-        <role>developer</role>
-      </roles>
-      <timezone>-3</timezone>
-    </developer>
-    <developer>
-      <id>ishabalov</id>
-      <name>Igor Shabalov</name>
-      <email>ishabalov at exadel.com</email>
-      <organization>Exadel Inc.</organization>
-      <organizationUrl>http://www.exadel.com</organizationUrl>
-      <roles>
-        <role>architect</role>
-        <role>developer</role>
-      </roles>
-      <timezone>+8</timezone>
-    </developer>
-    <developer>
-      <id>sergeysmirnov</id>
-      <name>Sergey Smirnov</name>
-      <email>sergeysmirnov at exadel.com</email>
-      <organization>Exadel Inc.</organization>
-      <organizationUrl>http://www.exadel.com</organizationUrl>
-      <roles>
-        <role>architect</role>
-        <role>developer</role>
-      </roles>
-      <timezone>+8</timezone>
-    </developer>
-    <developer>
-      <id>nbelayevsky</id>
-      <name>Nik Belyaevsky</name>
-      <email>nbelayevsky at exadel.com</email>
-      <organization>Exadel Inc.</organization>
-      <organizationUrl>http://www.exadel.com</organizationUrl>
-      <roles>
-        <role>architect</role>
-        <role>developer</role>
-      </roles>
-      <timezone>-2</timezone>
-    </developer>
-  </developers>
-  <licenses>
-    <license>
-      <name>LGPL 2.1</name>
-      <url>http://www.gnu.org/licenses/lgpl.html</url>
-      <distribution>repo</distribution>
-      <comments>GNU LESSER GENERAL PUBLIC LICENSE Version 2.1</comments>
-    </license>
-  </licenses>
-  <scm>
-    <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/richfaces/</connection>
-    <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/richfaces/</developerConnection>
-    <url>http://anonsvn.jboss.org/repos/richfaces/trunk/richfaces/</url>
-  </scm>
-  <build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-source-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>attach-source</id>
-            <goals>
-              <goal>jar</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
-  <modules>
-    <module>common</module>
-    <module>drag-drop</module>
-    <module>panel</module>
-    <module>panelbar</module>
-    <module>dataFilterSlider</module>
-    <module>gmap</module>
-    <module>separator</module>
-    <module>spacer</module>
-    <module>paint2D</module>
-    <module>togglePanel</module>
-    <module>tabPanel</module>
-    <module>simpleTogglePanel</module>
-    <module>toolBar</module>
-    <module>inputnumber-slider</module>
-    <module>inputnumber-spinner</module>
-    <module>tree</module>
-    <module>suggestionbox</module>
-    <module>dataTable</module>
-    <module>modal-panel</module>
-    <module>datascroller</module>
-    <module>menu-components</module>
-    <module>dropdown-menu</module>
-    <module>panelmenu</module>
-  </modules>
-  <repositories>
-    <repository>
-      <releases />
-      <snapshots>
-        <enabled>false</enabled>
-        <updatePolicy>never</updatePolicy>
-      </snapshots>
-      <id>maven-repository.dev.java.net</id>
-      <name>Java.net Repository for Maven</name>
-      <url>https://maven-repository.dev.java.net/nonav/repository</url>
-      <layout>legacy</layout>
-    </repository>
-    <repository>
-      <releases>
-        <enabled>false</enabled>
-      </releases>
-      <snapshots>
-        <updatePolicy>always</updatePolicy>
-      </snapshots>
-      <id>maven2-snapshots.jboss.org</id>
-      <name>Jboss Repository for Maven Snapshots</name>
-      <url>http://snapshots.jboss.com/</url>
-    </repository>
-  </repositories>
-  <pluginRepositories>
-    <pluginRepository>
-      <releases>
-        <enabled>false</enabled>
-      </releases>
-      <snapshots>
-        <updatePolicy>always</updatePolicy>
-      </snapshots>
-      <id>maven2-snapshots.jboss.org</id>
-      <name>Jboss Repository for Maven Snapshots</name>
-      <url>http://snapshots.jboss.com/</url>
-    </pluginRepository>
-  </pluginRepositories>
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>javax.faces</groupId>
-      <artifactId>jsf-api</artifactId>
-      <version>1.1_02</version>
-      <exclusions>
-        <exclusion>
-          <artifactId>jsp-api</artifactId>
-          <groupId>javax.servlet.jsp</groupId>
-        </exclusion>
-        <exclusion>
-          <artifactId>jstl</artifactId>
-          <groupId>javax.servlet.jsp.jstl</groupId>
-        </exclusion>
-      </exclusions>
-    </dependency>
-    <dependency>
-      <groupId>javax.faces</groupId>
-      <artifactId>jsf-impl</artifactId>
-      <version>1.1_02</version>
-      <scope>runtime</scope>
-      <exclusions>
-        <exclusion>
-          <artifactId>jsp-api</artifactId>
-          <groupId>javax.servlet.jsp</groupId>
-        </exclusion>
-        <exclusion>
-          <artifactId>jstl</artifactId>
-          <groupId>javax.servlet.jsp.jstl</groupId>
-        </exclusion>
-      </exclusions>
-    </dependency>
-    <dependency>
-      <groupId>org.ajax4jsf</groupId>
-      <artifactId>ajax4jsf</artifactId>
-      <version>1.1.1-SNAPSHOT</version>
-    </dependency>
-    <dependency>
-      <groupId>org.ajax4jsf</groupId>
-      <artifactId>test</artifactId>
-      <version>1.1.1-SNAPSHOT</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>htmlunit</groupId>
-      <artifactId>htmlunit</artifactId>
-      <version>1.10</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>commons-collections</groupId>
-      <artifactId>commons-collections</artifactId>
-      <version>3.0</version>
-    </dependency>
-    <dependency>
-      <groupId>com.sun.facelets</groupId>
-      <artifactId>jsf-facelets</artifactId>
-      <version>1.1.11</version>
-      <optional>true</optional>
-    </dependency>
-    <dependency>
-      <groupId>javax.el</groupId>
-      <artifactId>el-api</artifactId>
-      <version>1.0</version>
-      <scope>provided</scope>
-      <optional>true</optional>
-    </dependency>
-    <dependency>
-      <groupId>el-impl</groupId>
-      <artifactId>el-impl</artifactId>
-      <version>1.0</version>
-      <scope>provided</scope>
-      <optional>true</optional>
-    </dependency>
-    <dependency>
-      <groupId>javax.servlet</groupId>
-      <artifactId>servlet-api</artifactId>
-      <version>2.4</version>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <groupId>javax.servlet</groupId>
-      <artifactId>jsp-api</artifactId>
-      <version>2.0</version>
-      <scope>provided</scope>
-    </dependency>
-  </dependencies>
-  <reporting>
-    <plugins>
-      <plugin>
-        <artifactId>maven-project-info-reports-plugin</artifactId>
-      </plugin>
-      <plugin>
-        <artifactId>maven-javadoc-plugin</artifactId>
-        <configuration>
-          <quiet>true</quiet>
-        </configuration>
-      </plugin>
-      <plugin>
-        <artifactId>maven-checkstyle-plugin</artifactId>
-      </plugin>
-      <plugin>
-        <artifactId>maven-pmd-plugin</artifactId>
-      </plugin>
-      <plugin>
-        <artifactId>maven-jxr-plugin</artifactId>
-        <configuration>
-          <aggregate>true</aggregate>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>jdepend-maven-plugin</artifactId>
-      </plugin>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>changelog-maven-plugin</artifactId>
-      </plugin>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>findbugs-maven-plugin</artifactId>
-        <configuration>
-          <xmlOutput>false</xmlOutput>
-          <threshold>Normal</threshold>
-          <effort>Max</effort>
-        </configuration>
-      </plugin>
-      <plugin>
-        <artifactId>maven-surefire-report-plugin</artifactId>
-      </plugin>
-    </plugins>
-  </reporting>
-  <distributionManagement>
-    <repository>
-      <uniqueVersion>false</uniqueVersion>
-      <id>release-repository</id>
-      <url>${releaseRepository}</url>
-    </repository>
-    <snapshotRepository>
-      <id>snap-repository</id>
-      <url>${snapshotRepository}</url>
-    </snapshotRepository>
-    <site>
-      <id>richfaces-site</id>
-      <url>richfaces/</url>
-    </site>
-    <downloadUrl>http://labs.jboss.com/portal/jbossrichfaces/downloads</downloadUrl>
-  </distributionManagement>
-  <profiles>
+<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">
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.richfaces</groupId>
+	<artifactId>richfaces-parent</artifactId>
+	<packaging>pom</packaging>
+	<name>RichFaces Components</name>
+	<version>3.0.1-SNAPSHOT</version>
+	<url>http://richfaces.ajax4jsf.org</url>
+	<properties>
+		<maven.test.failure.ignore>true</maven.test.failure.ignore>
+	</properties>
+	<issueManagement>
+		<system>JIRA</system>
+		<url>http://jira.jboss.org/jira/browse/RF</url>
+	</issueManagement>
+	<ciManagement>
+		<system>cruisecontrol</system>
+	</ciManagement>
+	<developers>
+		<developer>
+			<id>alexsmirnov</id>
+			<name>Alexander Smirnov</name>
+			<email>alexsmirnov at exadel.com</email>
+			<organization>Exadel Inc.</organization>
+			<organizationUrl>http://www.exadel.com</organizationUrl>
+			<roles>
+				<role>architect</role>
+				<role>developer</role>
+			</roles>
+			<timezone>-3</timezone>
+		</developer>
+		<developer>
+			<id>ishabalov</id>
+			<name>Igor Shabalov</name>
+			<email>ishabalov at exadel.com</email>
+			<organization>Exadel Inc.</organization>
+			<organizationUrl>http://www.exadel.com</organizationUrl>
+			<roles>
+				<role>architect</role>
+				<role>developer</role>
+			</roles>
+			<timezone>+8</timezone>
+		</developer>
+		<developer>
+			<id>sergeysmirnov</id>
+			<name>Sergey Smirnov</name>
+			<email>sergeysmirnov at exadel.com</email>
+			<organization>Exadel Inc.</organization>
+			<organizationUrl>http://www.exadel.com</organizationUrl>
+			<roles>
+				<role>architect</role>
+				<role>developer</role>
+			</roles>
+			<timezone>+8</timezone>
+		</developer>
+		<developer>
+			<id>nbelayevsky</id>
+			<name>Nik Belyaevsky</name>
+			<email>nbelayevsky at exadel.com</email>
+			<organization>Exadel Inc.</organization>
+			<organizationUrl>http://www.exadel.com</organizationUrl>
+			<roles>
+				<role>architect</role>
+				<role>developer</role>
+			</roles>
+			<timezone>-2</timezone>
+		</developer>
+	</developers>
+	<licenses>
+		<license>
+			<name>LGPL 2.1</name>
+			<url>http://www.gnu.org/licenses/lgpl.html</url>
+			<distribution>repo</distribution>
+			<comments>
+				GNU LESSER GENERAL PUBLIC LICENSE Version 2.1
+			</comments>
+		</license>
+	</licenses>
+	<scm>
+		<connection>
+			scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/richfaces/
+		</connection>
+		<developerConnection>
+			scm:svn:https://svn.jboss.org/repos/richfaces/trunk/richfaces/
+		</developerConnection>
+		<url>
+			http://anonsvn.jboss.org/repos/richfaces/trunk/richfaces/
+		</url>
+	</scm>
+	<build>
+		<plugins>
+			<plugin>
+				<artifactId>maven-source-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-source</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+	</build>
+	<modules>
+		<module>common</module>
+		<module>drag-drop</module>
+		<module>panel</module>
+		<module>panelbar</module>
+		<module>dataFilterSlider</module>
+		<module>gmap</module>
+		<module>separator</module>
+		<module>spacer</module>
+		<module>paint2D</module>
+		<module>togglePanel</module>
+		<module>tabPanel</module>
+		<module>simpleTogglePanel</module>
+		<module>toolBar</module>
+		<module>inputnumber-slider</module>
+		<module>inputnumber-spinner</module>
+		<module>tree</module>
+		<module>suggestionbox</module>
+		<module>dataTable</module>
+		<module>modal-panel</module>
+		<module>datascroller</module>
+		<module>menu-components</module>
+		<module>dropdown-menu</module>
+		<module>panelmenu</module>
+	</modules>
+	<repositories>
+		<repository>
+			<releases />
+			<snapshots>
+				<enabled>false</enabled>
+				<updatePolicy>never</updatePolicy>
+			</snapshots>
+			<id>maven-repository.dev.java.net</id>
+			<name>Java.net Repository for Maven</name>
+			<url>
+				https://maven-repository.dev.java.net/nonav/repository
+			</url>
+			<layout>legacy</layout>
+		</repository>
+		<repository>
+			<releases>
+				<enabled>false</enabled>
+			</releases>
+			<snapshots>
+				<updatePolicy>always</updatePolicy>
+			</snapshots>
+			<id>maven2-snapshots.jboss.org</id>
+			<name>Jboss Repository for Maven Snapshots</name>
+			<url>http://snapshots.jboss.com/</url>
+		</repository>
+	</repositories>
+	<pluginRepositories>
+		<pluginRepository>
+			<releases>
+				<enabled>false</enabled>
+			</releases>
+			<snapshots>
+				<updatePolicy>always</updatePolicy>
+			</snapshots>
+			<id>maven2-snapshots.jboss.org</id>
+			<name>Jboss Repository for Maven Snapshots</name>
+			<url>http://snapshots.jboss.com/</url>
+		</pluginRepository>
+	</pluginRepositories>
+	<dependencies>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>3.8.1</version>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>javax.faces</groupId>
+			<artifactId>jsf-api</artifactId>
+			<version>1.1_02</version>
+			<exclusions>
+				<exclusion>
+					<artifactId>jsp-api</artifactId>
+					<groupId>javax.servlet.jsp</groupId>
+				</exclusion>
+				<exclusion>
+					<artifactId>jstl</artifactId>
+					<groupId>javax.servlet.jsp.jstl</groupId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+		<dependency>
+			<groupId>javax.faces</groupId>
+			<artifactId>jsf-impl</artifactId>
+			<version>1.1_02</version>
+			<scope>runtime</scope>
+			<exclusions>
+				<exclusion>
+					<artifactId>jsp-api</artifactId>
+					<groupId>javax.servlet.jsp</groupId>
+				</exclusion>
+				<exclusion>
+					<artifactId>jstl</artifactId>
+					<groupId>javax.servlet.jsp.jstl</groupId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+		<dependency>
+			<groupId>org.ajax4jsf</groupId>
+			<artifactId>ajax4jsf</artifactId>
+			<version>1.1.1-SNAPSHOT</version>
+		</dependency>
+		<dependency>
+			<groupId>org.ajax4jsf</groupId>
+			<artifactId>test</artifactId>
+			<version>1.1.1-SNAPSHOT</version>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>htmlunit</groupId>
+			<artifactId>htmlunit</artifactId>
+			<version>1.10</version>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>commons-collections</groupId>
+			<artifactId>commons-collections</artifactId>
+			<version>3.0</version>
+		</dependency>
+		<dependency>
+			<groupId>com.sun.facelets</groupId>
+			<artifactId>jsf-facelets</artifactId>
+			<version>1.1.11</version>
+			<optional>true</optional>
+		</dependency>
+		<dependency>
+			<groupId>javax.el</groupId>
+			<artifactId>el-api</artifactId>
+			<version>1.0</version>
+			<scope>provided</scope>
+			<optional>true</optional>
+		</dependency>
+		<dependency>
+			<groupId>el-impl</groupId>
+			<artifactId>el-impl</artifactId>
+			<version>1.0</version>
+			<scope>provided</scope>
+			<optional>true</optional>
+		</dependency>
+		<dependency>
+			<groupId>javax.servlet</groupId>
+			<artifactId>servlet-api</artifactId>
+			<version>2.4</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>javax.servlet</groupId>
+			<artifactId>jsp-api</artifactId>
+			<version>2.0</version>
+			<scope>provided</scope>
+		</dependency>
+	</dependencies>
+	<reporting>
+		<plugins>
+			<plugin>
+				<artifactId>
+					maven-project-info-reports-plugin
+				</artifactId>
+			</plugin>
+			<plugin>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<configuration>
+					<quiet>true</quiet>
+				</configuration>
+			</plugin>
+			<!--
+				<plugin>
+				<artifactId>maven-checkstyle-plugin</artifactId>
+				</plugin>
+			--><!--
+				<plugin>
+				<artifactId>maven-pmd-plugin</artifactId>
+				</plugin>
+			-->
+			<plugin>
+				<artifactId>maven-jxr-plugin</artifactId>
+				<configuration>
+					<aggregate>true</aggregate>
+				</configuration>
+			</plugin>
+			<!--
+				<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>jdepend-maven-plugin</artifactId>
+				</plugin>
+			-->
+			<!--
+				<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>changelog-maven-plugin</artifactId>
+				</plugin>
+			-->
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>findbugs-maven-plugin</artifactId>
+				<configuration>
+					<xmlOutput>false</xmlOutput>
+					<threshold>Normal</threshold>
+					<effort>Max</effort>
+				</configuration>
+			</plugin>
+			<plugin>
+				<artifactId>maven-surefire-report-plugin</artifactId>
+			</plugin>
+		</plugins>
+	</reporting>
+	<distributionManagement>
+		<repository>
+			<uniqueVersion>false</uniqueVersion>
+			<id>release-repository</id>
+			<url>${releaseRepository}</url>
+		</repository>
+		<snapshotRepository>
+			<id>snap-repository</id>
+			<url>${snapshotRepository}</url>
+		</snapshotRepository>
+		<site>
+			<id>richfaces-site</id>
+			<url>richfaces/</url>
+		</site>
+		<downloadUrl>
+			http://labs.jboss.com/portal/jbossrichfaces/downloads
+		</downloadUrl>
+	</distributionManagement>
+	<profiles>
 		<profile>
 			<id>clover</id>
 			<build>
@@ -346,16 +369,16 @@
 					<plugin>
 						<groupId>org.apache.maven.plugins</groupId>
 						<artifactId>maven-clover-plugin</artifactId>
-						<!--
-							<configuration>
-							<licenseLocation>${clover.license.path}</licenseLocation>
-							<jdk>1.5</jdk>
-							</configuration>
+						<!--
+							<configuration>
+							<licenseLocation>${clover.license.path}</licenseLocation>
+							<jdk>1.5</jdk>
+							</configuration>
 						-->
 					</plugin>
 				</plugins>
 			</reporting>
 		</profile>
-  </profiles>
+	</profiles>
 </project>
 

Modified: trunk/richfaces-samples/dataTableDemo/src/main/java/org/richfaces/Bean.java
===================================================================
--- trunk/richfaces-samples/dataTableDemo/src/main/java/org/richfaces/Bean.java	2007-04-19 18:10:50 UTC (rev 460)
+++ trunk/richfaces-samples/dataTableDemo/src/main/java/org/richfaces/Bean.java	2007-04-20 00:31:19 UTC (rev 461)
@@ -36,6 +36,8 @@
 	private String mounth;
 	
 	private int total;
+	
+	private int price;
 
 	private boolean checked=true;
 	/**
@@ -112,4 +114,18 @@
 	public void checkChanged(ValueChangeEvent event) {
 		System.out.println("Checked changed for mounth "+getMounth());		
 	}
+
+	/**
+	 * @return the price
+	 */
+	public int getPrice() {
+	    return price;
+	}
+
+	/**
+	 * @param price the price to set
+	 */
+	public void setPrice(int price) {
+	    this.price = price;
+	}
 }
\ No newline at end of file

Modified: trunk/richfaces-samples/dataTableDemo/src/main/webapp/pages/ajax.jsp
===================================================================
--- trunk/richfaces-samples/dataTableDemo/src/main/webapp/pages/ajax.jsp	2007-04-19 18:10:50 UTC (rev 460)
+++ trunk/richfaces-samples/dataTableDemo/src/main/webapp/pages/ajax.jsp	2007-04-20 00:31:19 UTC (rev 461)
@@ -25,7 +25,6 @@
 			styleClass="table" captionClass="caption" rowClasses="rowa,rowb,rowc rowcc"
 			headerClass="header" footerClass="footer">
 			    <a4j:support event="onRowClick" action="#{master.check}" reRender="checked">
-      			<a4j:ajaxListener type="org.ajax4jsf.ajax.ForceRender" />
 			    </a4j:support>
 			    <f:facet name="caption"><h:outputText value="caption" /></f:facet>
 			    <f:facet name="header">

Modified: trunk/richfaces-samples/pom.xml
===================================================================
--- trunk/richfaces-samples/pom.xml	2007-04-19 18:10:50 UTC (rev 460)
+++ trunk/richfaces-samples/pom.xml	2007-04-20 00:31:19 UTC (rev 461)
@@ -106,6 +106,10 @@
                         <uniqueVersion>true</uniqueVersion>
                         <url>${snapshotRepository}</url>
                 </snapshotRepository>
+    <site>
+          <id>richfaces-samples-site</id>
+            <url>richfaces-samples/</url>
+    </site>
 	</distributionManagement>
 	<pluginRepositories>
 		<pluginRepository>




More information about the richfaces-svn-commits mailing list