svn commit: r415338 - in /struts/action2/trunk/apps/showcase/src/main/webapp/chat: roomSelection.ftl showRoom.ftl
Author: tmjee Date: Mon Jun 19 07:19:00 2006 New Revision: 415338 URL: http://svn.apache.org/viewvc?rev=415338&view=rev Log: WW-1351 - corrected chat example css Modified: struts/action2/trunk/apps/showcase/src/main/webapp/chat/roomSelection.ftl struts/action2/trunk/apps/showcase/src/main/webapp/chat/showRoom.ftl Modified: struts/action2/trunk/apps/showcase/src/main/webapp/chat/roomSelection.ftl URL: http://svn.apache.org/viewvc/struts/action2/trunk/apps/showcase/src/main/webapp/chat/roomSelection.ftl?rev=415338&r1=415337&r2=415338&view=diff == --- struts/action2/trunk/apps/showcase/src/main/webapp/chat/roomSelection.ftl (original) +++ struts/action2/trunk/apps/showcase/src/main/webapp/chat/roomSelection.ftl Mon Jun 19 07:19:00 2006 @@ -6,13 +6,13 @@ <@saf.head theme="ajax" /> div.box { - border: 1px solid red; + border: 1px solid darkblue; margin: 5px; } div.box h3 { color: white; - background: red; + background: darkblue; margin: 3px; padding: 2px; } @@ -22,14 +22,14 @@ } table.table { - border: 1px solid red; + border: 1px solid darkblue; width: 98%; margin: 5px; } table.table tr.tableHeader { color: white; - background: red; + background: darkblue; margin: 3px; padding: 2px; font-size: medium; @@ -85,24 +85,24 @@ } div.container { - padding-left: 200px; - float: left; + margin-left: auto; + margin-right: auto; + width: 100%; } div.left { - width: 200px; - margin-left: -200px; + width: 20%; float: left; } div.right { - width: 200px; - margin-right: -200px; + width: 20%; float: right; } div.center { - width: 100%; + width: 60%; + float: left; } Modified: struts/action2/trunk/apps/showcase/src/main/webapp/chat/showRoom.ftl URL: http://svn.apache.org/viewvc/struts/action2/trunk/apps/showcase/src/main/webapp/chat/showRoom.ftl?rev=415338&r1=415337&r2=415338&view=diff == --- struts/action2/trunk/apps/showcase/src/main/webapp/chat/showRoom.ftl (original) +++ struts/action2/trunk/apps/showcase/src/main/webapp/chat/showRoom.ftl Mon Jun 19 07:19:00 2006 @@ -5,13 +5,13 @@ <@saf.head theme="ajax" /> div.box { - border: 1px solid red; + border: 1px solid darkblue; margin: 5px; } div.box h3 { color: white; - background: red; + background: darkblue; margin: 3px; padding: 2px; } @@ -21,14 +21,14 @@ } table.table { - border: 1px solid red; + border: 1px solid darkblue; width: 98%; margin: 5px; } table.table tr.tableHeader { color: white; - background: red; +
svn commit: r415421 - /struts/site/src/site/xdoc/volunteers.xml
Author: schof Date: Mon Jun 19 14:05:59 2006 New Revision: 415421 URL: http://svn.apache.org/viewvc?rev=415421&view=rev Log: changed to reflect PMC status Modified: struts/site/src/site/xdoc/volunteers.xml Modified: struts/site/src/site/xdoc/volunteers.xml URL: http://svn.apache.org/viewvc/struts/site/src/site/xdoc/volunteers.xml?rev=415421&r1=415420&r2=415421&view=diff == --- struts/site/src/site/xdoc/volunteers.xml (original) +++ struts/site/src/site/xdoc/volunteers.xml Mon Jun 19 14:05:59 2006 @@ -115,6 +115,10 @@ Gary VanMatre (gvanmatre at apache.org) + +Sean Schofield +(schof at apache.org) + @@ -129,10 +133,6 @@ David Geary (dgeary at apache.org) - - -Sean Schofield -(schof at apache.org) Greg Reddin
[Struts Wiki] Update of "StrutsActionRelease200" by TedHusted
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification. The following page has been changed by TedHusted: http://wiki.apache.org/struts/StrutsActionRelease200 The comment on the change is: Interpret #23 as a request for type alias -- Configuration - * Reduce or eliminate need to use fully-qualified class names, over and over. (See #23.) + * Add support for type aliasing (a la Spring and iBATIS) to reduce or eliminate need to use fully-qualified class names, over and over. The fully-qualified type is declared once, and then a simple type "nickname" can be used instead. (See #23.) * Combine configuration DTDs so that Actions, Messages, and Validators can be defined in a single file. (See Ted, #1.) * Use values on the stack to override/define configuration options. (See Tim, NTH #3.)
svn commit: r415474 - in /struts/shale/trunk/shale-apps: shale-blank/src/main/assembly/ shale-clay-usecases/src/main/assembly/ shale-mailreader/src/main/assembly/ shale-sql-browser/src/main/assembly/
Author: craigmcc Date: Mon Jun 19 18:06:42 2006 New Revision: 415474 URL: http://svn.apache.org/viewvc?rev=415474&view=rev Log: As Wendy suggests, the embedded WAR file will be easier to find if it is in the top-level directory of the sample app distribution artifacts. Modified: struts/shale/trunk/shale-apps/shale-blank/src/main/assembly/dep.xml struts/shale/trunk/shale-apps/shale-clay-usecases/src/main/assembly/dep.xml struts/shale/trunk/shale-apps/shale-mailreader/src/main/assembly/dep.xml struts/shale/trunk/shale-apps/shale-sql-browser/src/main/assembly/dep.xml struts/shale/trunk/shale-apps/shale-usecases/src/main/assembly/dep.xml Modified: struts/shale/trunk/shale-apps/shale-blank/src/main/assembly/dep.xml URL: http://svn.apache.org/viewvc/struts/shale/trunk/shale-apps/shale-blank/src/main/assembly/dep.xml?rev=415474&r1=415473&r2=415474&view=diff == --- struts/shale/trunk/shale-apps/shale-blank/src/main/assembly/dep.xml (original) +++ struts/shale/trunk/shale-apps/shale-blank/src/main/assembly/dep.xml Mon Jun 19 18:06:42 2006 @@ -53,7 +53,7 @@ ./target -dist/ + *.war Modified: struts/shale/trunk/shale-apps/shale-clay-usecases/src/main/assembly/dep.xml URL: http://svn.apache.org/viewvc/struts/shale/trunk/shale-apps/shale-clay-usecases/src/main/assembly/dep.xml?rev=415474&r1=415473&r2=415474&view=diff == --- struts/shale/trunk/shale-apps/shale-clay-usecases/src/main/assembly/dep.xml (original) +++ struts/shale/trunk/shale-apps/shale-clay-usecases/src/main/assembly/dep.xml Mon Jun 19 18:06:42 2006 @@ -53,7 +53,7 @@ ./target -dist/ + *.war Modified: struts/shale/trunk/shale-apps/shale-mailreader/src/main/assembly/dep.xml URL: http://svn.apache.org/viewvc/struts/shale/trunk/shale-apps/shale-mailreader/src/main/assembly/dep.xml?rev=415474&r1=415473&r2=415474&view=diff == --- struts/shale/trunk/shale-apps/shale-mailreader/src/main/assembly/dep.xml (original) +++ struts/shale/trunk/shale-apps/shale-mailreader/src/main/assembly/dep.xml Mon Jun 19 18:06:42 2006 @@ -53,7 +53,7 @@ ./target -dist/ + *.war Modified: struts/shale/trunk/shale-apps/shale-sql-browser/src/main/assembly/dep.xml URL: http://svn.apache.org/viewvc/struts/shale/trunk/shale-apps/shale-sql-browser/src/main/assembly/dep.xml?rev=415474&r1=415473&r2=415474&view=diff == --- struts/shale/trunk/shale-apps/shale-sql-browser/src/main/assembly/dep.xml (original) +++ struts/shale/trunk/shale-apps/shale-sql-browser/src/main/assembly/dep.xml Mon Jun 19 18:06:42 2006 @@ -53,7 +53,7 @@ ./target -dist/ + *.war Modified: struts/shale/trunk/shale-apps/shale-usecases/src/main/assembly/dep.xml URL: http://svn.apache.org/viewvc/struts/shale/trunk/shale-apps/shale-usecases/src/main/assembly/dep.xml?rev=415474&r1=415473&r2=415474&view=diff == --- struts/shale/trunk/shale-apps/shale-usecases/src/main/assembly/dep.xml (original) +++ struts/shale/trunk/shale-apps/shale-usecases/src/main/assembly/dep.xml Mon Jun 19 18:06:42 2006 @@ -53,7 +53,7 @@ ./target -dist/ + *.war
svn commit: r415491 - in /struts/shale/trunk: pom.xml shale-apps/pom.xml
Author: wsmoak Date: Mon Jun 19 20:54:21 2006 New Revision: 415491 URL: http://svn.apache.org/viewvc?rev=415491&view=rev Log: Temporarily configure website deployment under people.apache.org/builds to avoid overwriting the existing site. Modified: struts/shale/trunk/pom.xml struts/shale/trunk/shale-apps/pom.xml Modified: struts/shale/trunk/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/trunk/pom.xml?rev=415491&r1=415490&r2=415491&view=diff == --- struts/shale/trunk/pom.xml (original) +++ struts/shale/trunk/pom.xml Mon Jun 19 20:54:21 2006 @@ -49,7 +49,8 @@ apache-site - scp://people.apache.org/www/struts.apache.org/struts-shale/ + + scp://people.apache.org/www/people.apache.org/builds/struts/maven2/shale/site Modified: struts/shale/trunk/shale-apps/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/trunk/shale-apps/pom.xml?rev=415491&r1=415490&r2=415491&view=diff == --- struts/shale/trunk/shale-apps/pom.xml (original) +++ struts/shale/trunk/shale-apps/pom.xml Mon Jun 19 20:54:21 2006 @@ -40,7 +40,8 @@ apache-site - scp://people.apache.org/www/struts.apache.org/struts-shale/shale-apps + + scp://people.apache.org/www/people.apache.org/builds/struts/maven2/shale/site/shale-apps
[Struts Wiki] Update of "Shale/BuildingWithMaven2" by WendySmoak
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification. The following page has been changed by WendySmoak: http://wiki.apache.org/struts/Shale/BuildingWithMaven2 The comment on the change is: Note how to deploy the site (to a temp location) -- __To build the Shale web site__ - || Command || Status || Requires || Artifacts || - || $mvn site -Pmyfaces || success || || target/site || + {{{ + mvn site + }}} + + __To deploy the Shale web site__ + + As of 2006-06-19, the site URL is: http://people.apache.org/builds/struts/maven2/shale/site + + {{{ + mvn site site:deploy + }}} + + (Repeat for the 'shale-apps' directory) __To build the Shale assembly (distribution)__
svn commit: r415497 - /struts/maven/trunk/build/pom.xml
Author: wsmoak Date: Mon Jun 19 21:32:26 2006 New Revision: 415497 URL: http://svn.apache.org/viewvc?rev=415497&view=rev Log: Increment version to the next snapshot. Modified: struts/maven/trunk/build/pom.xml Modified: struts/maven/trunk/build/pom.xml URL: http://svn.apache.org/viewvc/struts/maven/trunk/build/pom.xml?rev=415497&r1=415496&r2=415497&view=diff == --- struts/maven/trunk/build/pom.xml (original) +++ struts/maven/trunk/build/pom.xml Mon Jun 19 21:32:26 2006 @@ -32,7 +32,7 @@ 4.0.0 org.apache.struts struts-build - 1.0.1 + 1.0.2-SNAPSHOT jar Apache Struts - Build http://struts.apache.org
svn commit: r415500 - /struts/shale/trunk/shale-core/pom.xml
Author: gvanmatre Date: Mon Jun 19 21:44:37 2006 New Revision: 415500 URL: http://svn.apache.org/viewvc?rev=415500&view=rev Log: Added ORM commons validator dependency. Modified: struts/shale/trunk/shale-core/pom.xml Modified: struts/shale/trunk/shale-core/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/trunk/shale-core/pom.xml?rev=415500&r1=415499&r2=415500&view=diff == --- struts/shale/trunk/shale-core/pom.xml (original) +++ struts/shale/trunk/shale-core/pom.xml Mon Jun 19 21:44:37 2006 @@ -1,103 +1,110 @@ - -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";> -4.0.0 - - -org.apache.struts.shale -shale-parent -1.0.3-SNAPSHOT - - -shale-core -jar -Shale Core Library -http://struts.apache.org/struts-shale - - - - -commons-beanutils -commons-beanutils - - - -commons-chain -commons-chain - - - -commons-digester -commons-digester - - - -commons-logging -commons-logging - - - -commons-validator -commons-validator - - - -junit -junit -test - - - -org.apache.struts.shale -shale-test -${version} -test - - - - - - - -org.apache.maven.plugins -maven-surefire-plugin - - - -documentRoot -${basedir}/target/test-classes - - - - - - - - - - -net.sourceforge.maven-taglib -maven-taglib-plugin - - - - - + +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";> +4.0.0 + + +org.apache.struts.shale +shale-parent +1.0.3-SNAPSHOT + + +shale-core +jar +Shale Core Library +http://struts.apache.org/struts-shale + + + + +commons-beanutils +commons-beanutils + + + +commons-chain +commons-chain + + + +commons-digester +commons-digester + + + +commons-logging +commons-logging + + + +commons-validator +commons-validator + + + +oro +oro +2.0.8 + + + + +junit +junit +test + + + +org.apache.struts.shale +shale-test +${version} +test + + + + + + + +org.apache.maven.plugins +maven-surefire-plugin + + + +documentRoot +${basedir}/target/test-classes + + + + + + + + + + +net.sourceforge.maven-taglib +maven-taglib-plugin + + + + +
svn commit: r415501 - /struts/shale/trunk/shale-apps/shale-usecases/pom.xml
Author: gvanmatre Date: Mon Jun 19 21:45:19 2006 New Revision: 415501 URL: http://svn.apache.org/viewvc?rev=415501&view=rev Log: Removed clay dependency. Modified: struts/shale/trunk/shale-apps/shale-usecases/pom.xml Modified: struts/shale/trunk/shale-apps/shale-usecases/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/trunk/shale-apps/shale-usecases/pom.xml?rev=415501&r1=415500&r2=415501&view=diff == --- struts/shale/trunk/shale-apps/shale-usecases/pom.xml (original) +++ struts/shale/trunk/shale-apps/shale-usecases/pom.xml Mon Jun 19 21:45:19 2006 @@ -36,12 +36,6 @@ org.apache.struts.shale -shale-clay -${version} - - - -org.apache.struts.shale shale-core ${version}
svn commit: r415502 - /struts/shale/trunk/shale-apps/shale-clay-usecases/src/main/webapp/WEB-INF/clay-config.xml
Author: gvanmatre Date: Mon Jun 19 21:46:45 2006 New Revision: 415502 URL: http://svn.apache.org/viewvc?rev=415502&view=rev Log: Fixed malformed XML. Modified: struts/shale/trunk/shale-apps/shale-clay-usecases/src/main/webapp/WEB-INF/clay-config.xml Modified: struts/shale/trunk/shale-apps/shale-clay-usecases/src/main/webapp/WEB-INF/clay-config.xml URL: http://svn.apache.org/viewvc/struts/shale/trunk/shale-apps/shale-clay-usecases/src/main/webapp/WEB-INF/clay-config.xml?rev=415502&r1=415501&r2=415502&view=diff == --- struts/shale/trunk/shale-apps/shale-clay-usecases/src/main/webapp/WEB-INF/clay-config.xml (original) +++ struts/shale/trunk/shale-apps/shale-clay-usecases/src/main/webapp/WEB-INF/clay-config.xml Mon Jun 19 21:46:45 2006 @@ -35,7 +35,7 @@ - + @@ -50,7 +50,7 @@ value="caption" /> - + @@ -348,12 +348,12 @@ - - - - - - + + + + + + @@ -621,17 +621,17 @@ - - - - - - - - - - + + + + + + + + + + @@ -1004,10 +1004,10 @@ - - - - - + + + + +
svn commit: r415514 - in /struts/shale/trunk: pom.xml shale-apps/pom.xml
Author: wsmoak Date: Mon Jun 19 23:18:00 2006 New Revision: 415514 URL: http://svn.apache.org/viewvc?rev=415514&view=rev Log: New temporary location for the website, while we work out the remaining issues. Modified: struts/shale/trunk/pom.xml struts/shale/trunk/shale-apps/pom.xml Modified: struts/shale/trunk/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/trunk/pom.xml?rev=415514&r1=415513&r2=415514&view=diff == --- struts/shale/trunk/pom.xml (original) +++ struts/shale/trunk/pom.xml Mon Jun 19 23:18:00 2006 @@ -50,7 +50,7 @@ apache-site - scp://people.apache.org/www/people.apache.org/builds/struts/maven2/shale/site + scp://people.apache.org/www/people.apache.org/builds/struts/shale/site Modified: struts/shale/trunk/shale-apps/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/trunk/shale-apps/pom.xml?rev=415514&r1=415513&r2=415514&view=diff == --- struts/shale/trunk/shale-apps/pom.xml (original) +++ struts/shale/trunk/shale-apps/pom.xml Mon Jun 19 23:18:00 2006 @@ -41,7 +41,7 @@ apache-site - scp://people.apache.org/www/people.apache.org/builds/struts/maven2/shale/site/shale-apps + scp://people.apache.org/www/people.apache.org/builds/struts/shale/site/shale-apps
[Struts Wiki] Update of "Shale/BuildingWithMaven2" by WendySmoak
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification. The following page has been changed by WendySmoak: http://wiki.apache.org/struts/Shale/BuildingWithMaven2 The comment on the change is: fixed url -- __To deploy the Shale web site__ - As of 2006-06-19, the site URL is: http://people.apache.org/builds/struts/maven2/shale/site + As of 2006-06-19, the site URL is: http://people.apache.org/builds/struts/shale/site {{{ mvn site site:deploy
svn commit: r415519 - /struts/maven/trunk/build/struts_checks.xml
Author: jmitchell Date: Mon Jun 19 23:26:19 2006 New Revision: 415519 URL: http://svn.apache.org/viewvc?rev=415519&view=rev Log: STR-2889 (Updated Checkstyle rules) Thank you Frank Zammetti for the patch. Modified: struts/maven/trunk/build/struts_checks.xml Modified: struts/maven/trunk/build/struts_checks.xml URL: http://svn.apache.org/viewvc/struts/maven/trunk/build/struts_checks.xml?rev=415519&r1=415518&r2=415519&view=diff == --- struts/maven/trunk/build/struts_checks.xml (original) +++ struts/maven/trunk/build/struts_checks.xml Mon Jun 19 23:26:19 2006 @@ -96,7 +96,10 @@ - + + + + @@ -213,7 +216,9 @@ - + + + @@ -221,8 +226,8 @@ - - + +