[CONF] Confluence Changes in the last 24 hours
- This is a daily summary of all recent changes in Confluence. - Updated Spaces: - Apache Roller (ROLLER) http://cwiki.apache.org/confluence/display/ROLLER | |-Pages Added or Edited in This Space |-- Roller Install Guides was last edited by snoopdave (07:38 AM). | http://cwiki.apache.org/confluence/display/ROLLER/Roller+Install+Guides | |-New Comments in This Space |-- http://cwiki.apache.org/confluence/display/ROLLER/Roller+Downloads (1) |-- http://cwiki.apache.org/confluence/display/ROLLER/Roller+Install+Guides (1) Apache XBean (XB) http://cwiki.apache.org/confluence/display/XB | |-Pages Added or Edited in This Space |-- Contributor was last edited by dims (02:26 AM). | http://cwiki.apache.org/confluence/display/XB/Contributor Apache Struts 2 Documentation (WW) http://cwiki.apache.org/confluence/display/WW | |-Pages Added or Edited in This Space |-- The Struts 2 Request Flow was created by musachy (12:20 PM). | http://cwiki.apache.org/confluence/display/WW/The+Struts+2+Request+Flow |-- User Guide was last edited by musachy (12:17 PM). | http://cwiki.apache.org/confluence/display/WW/User+Guide |-- Chain Result was last edited by phil (05:42 AM). | http://cwiki.apache.org/confluence/display/WW/Chain+Result |-- regex validator was last edited by phil (05:41 AM). | http://cwiki.apache.org/confluence/display/WW/regex+validator |-- stringlength validator was last edited by phil (05:40 AM). | http://cwiki.apache.org/confluence/display/WW/stringlength+validator |-- conversion validator was last edited by phil (05:40 AM). | http://cwiki.apache.org/confluence/display/WW/conversion+validator |-- visitor validator was last edited by phil (05:40 AM). | http://cwiki.apache.org/confluence/display/WW/visitor+validator |-- url validator was last edited by phil (05:40 AM). | http://cwiki.apache.org/confluence/display/WW/url+validator |-- email validator was last edited by phil (05:39 AM). | http://cwiki.apache.org/confluence/display/WW/email+validator |-- fieldexpression validator was last edited by phil (05:39 AM). | http://cwiki.apache.org/confluence/display/WW/fieldexpression+validator |-- expression validator was last edited by phil (05:39 AM). | http://cwiki.apache.org/confluence/display/WW/expression+validator |-- date validator was last edited by phil (05:39 AM). | http://cwiki.apache.org/confluence/display/WW/date+validator |-- int validator was last edited by phil (05:39 AM). | http://cwiki.apache.org/confluence/display/WW/int+validator |-- requiredstring validator was last edited by phil (05:38 AM). | http://cwiki.apache.org/confluence/display/WW/requiredstring+validator |-- required validator was last edited by phil (05:38 AM). | http://cwiki.apache.org/confluence/display/WW/required+validator |-- Parameter Filter Interceptor was last edited by phil (05:37 AM). | http://cwiki.apache.org/confluence/display/WW/Parameter+Filter+Interceptor |-- Workflow Interceptor was last edited by phil (05:36 AM). | http://cwiki.apache.org/confluence/display/WW/Workflow+Interceptor |-- Validation Interceptor was last edited by phil (05:36 AM). | http://cwiki.apache.org/confluence/display/WW/Validation+Interceptor |-- Timer Interceptor was last edited by phil (05:34 AM). | http://cwiki.apache.org/confluence/display/WW/Timer+Interceptor |-- Static Parameters Interceptor was last edited by phil (05:34 AM). | http://cwiki.apache.org/confluence/display/WW/Static+Parameters+Interceptor |-- Servlet Config Interceptor was last edited by phil (05:33 AM). | http://cwiki.apache.org/confluence/display/WW/Servlet+Config+Interceptor |-- Scope Interceptor was last edited by phil (05:33 AM). | http://cwiki.apache.org/confluence/display/WW/Scope+Interceptor |-- Prepare Interceptor was last edited by phil (05:32 AM). | http://cwiki.apache.org/confluence/display/WW/Prepare+Interceptor |-- Parameters Interceptor was last edited by phil (05:32 AM). | http://cwiki.apache.org/confluence/display/WW/Parameters+Interceptor |-- Logger Interceptor was last edited by phil (05:31 AM). | http://cwiki.apache.org/confluence/display/WW/Logger+Interceptor |-- Exception Interceptor was last edited by phil (05:31 AM). | http://cwiki.apache.org/confluence/display/WW/Exception+Interceptor |-- Create Session Interceptor was last edited by phil (05:30 AM). | http://cwiki.apache.org/confluence/display/WW/Create+Session+Interceptor |-- Conversion Error Interceptor was last edited by phil (05:30 AM). | http://cwiki.apache.org/confluence/display/WW/Conversion+Error+Interceptor |-- Chaining Interceptor was last edited by phil (05:24 AM). | http://cwiki.apache.org/confluence/display/WW/Chaining+Interceptor |-- Alias Interceptor was last edited
svn commit: r506121 - in /struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/java: DateConverter.java IndexAction.java
Author: roughley Date: Sun Feb 11 12:31:09 2007 New Revision: 506121 URL: http://svn.apache.org/viewvc?view=rev&rev=506121 Log: Changed converter so that it extended the StrutsTypeConverter (and is used in the example application). Modified the Index action so that it uses the converter to provide a date compatible with the HelloWorldAction Modified: struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/java/DateConverter.java struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/java/IndexAction.java Modified: struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/java/DateConverter.java URL: http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/java/DateConverter.java?view=diff&rev=506121&r1=506120&r2=506121 == --- struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/java/DateConverter.java (original) +++ struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/java/DateConverter.java Sun Feb 11 12:31:09 2007 @@ -23,27 +23,27 @@ import java.text.ParseException; import java.util.Map; import java.util.Date; +import com.opensymphony.xwork2.util.TypeConversionException; /** * */ -public class DateConverter { +public class DateConverter extends StrutsTypeConverter { public Object convertFromString(Map context, String[] values, Class toClass) { if (values != null && values.length > 0 && values[0] != null && values[0].length() > 0) { -SimpleDateFormat sdf = new SimpleDateFormat("/MM/dd hh:mm:ss"); +SimpleDateFormat sdf = new SimpleDateFormat("/MM/dd"); try { return sdf.parse(values[0]); } catch(ParseException e) { -e.printStackTrace(); -return ""; +throw new TypeConversionException(e); } } return null; } public String convertToString(Map context, Object o) { if (o instanceof Date) { -SimpleDateFormat sdf = new SimpleDateFormat("/MM/dd hh:mm:ss"); +SimpleDateFormat sdf = new SimpleDateFormat("/MM/dd"); return sdf.format((Date)o); } return ""; Modified: struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/java/IndexAction.java URL: http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/java/IndexAction.java?view=diff&rev=506121&r1=506120&r2=506121 == --- struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/java/IndexAction.java (original) +++ struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/java/IndexAction.java Sun Feb 11 12:31:09 2007 @@ -19,14 +19,18 @@ import com.opensymphony.xwork2.ActionSupport; import java.util.Date; +import com.opensymphony.xwork2.conversion.annotations.Conversion; +import com.opensymphony.xwork2.conversion.annotations.TypeConversion; /** * */ [EMAIL PROTECTED]() public class IndexAction extends ActionSupport { private Date now = new Date(System.currentTimeMillis()); +@TypeConversion(converter = "com.fdar.apress.s2.DateConverter") public Date getDateNow() { return now; } public String execute() throws Exception {
svn commit: r506169 - /struts/struts2/branches/STRUTS_2_0_x/
Author: husted Date: Sun Feb 11 15:25:34 2007 New Revision: 506169 URL: http://svn.apache.org/viewvc?view=rev&rev=506169 Log: WW-1705 Removing first try at 2.0.x branch Removed: struts/struts2/branches/STRUTS_2_0_x/
svn commit: r506170 - /struts/struts2/tags/STRUTS_2_0_X/
Author: husted Date: Sun Feb 11 15:25:53 2007 New Revision: 506170 URL: http://svn.apache.org/viewvc?view=rev&rev=506170 Log: WW-1705 Branching at 2_0_5 tag Added: struts/struts2/tags/STRUTS_2_0_X/ - copied from r506169, struts/struts2/tags/STRUTS_2_0_5/
svn commit: r506172 - /struts/struts2/tags/STRUTS_2_0_X/
Author: husted Date: Sun Feb 11 15:33:35 2007 New Revision: 506172 URL: http://svn.apache.org/viewvc?view=rev&rev=506172 Log: WW-1705 E -- copied the branch to the wrong folder. Removed: struts/struts2/tags/STRUTS_2_0_X/
svn commit: r506174 - /struts/struts2/branches/STRUTS_2_0_X/
Author: husted Date: Sun Feb 11 15:34:04 2007 New Revision: 506174 URL: http://svn.apache.org/viewvc?view=rev&rev=506174 Log: WW-1705 Branching at 2_0_5 tag (again) Added: struts/struts2/branches/STRUTS_2_0_X/ - copied from r506173, struts/struts2/tags/STRUTS_2_0_5/
svn commit: r506198 - in /struts/struts2/branches/STRUTS_2_0_X: ./ api/ assembly/ core/ core/src/main/java/org/apache/struts2/impl/ core/src/main/resources/META-INF/ core/src/test/java/org/apache/stru
Author: husted Date: Sun Feb 11 16:57:44 2007 New Revision: 506198 URL: http://svn.apache.org/viewvc?view=rev&rev=506198 Log: [WW-1731] Fix assembly/pom to include codebehind and spring plugins (Good catch Tom!). [WW-1548] Remove continuations from the 2.0.x branch. [WW-1700] Remove "new API" from 2.0.x branch (see also r505490 as to the HEAD/2.1.x). [WW-1731] Remove TLD as it is generated. Removed: struts/struts2/branches/STRUTS_2_0_X/api/ struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/impl/ActionContextImpl.java struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/impl/InterceptorAdapter.java struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/impl/MessagesImpl.java struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/impl/RequestContextImpl.java struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/impl/ResultAdapter.java struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/impl/ValueStackAdapter.java struts/struts2/branches/STRUTS_2_0_X/core/src/main/resources/META-INF/struts-tags.tld struts/struts2/branches/STRUTS_2_0_X/core/src/test/java/org/apache/struts2/impl/MessagesTest.java struts/struts2/branches/STRUTS_2_0_X/core/src/test/java/org/apache/struts2/impl/RequestContextTest.java struts/struts2/branches/STRUTS_2_0_X/plugins/continuations/ Modified: struts/struts2/branches/STRUTS_2_0_X/assembly/pom.xml struts/struts2/branches/STRUTS_2_0_X/core/pom.xml struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/impl/StrutsActionProxy.java struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/impl/StrutsObjectFactory.java struts/struts2/branches/STRUTS_2_0_X/plugins/pom.xml struts/struts2/branches/STRUTS_2_0_X/pom.xml Modified: struts/struts2/branches/STRUTS_2_0_X/assembly/pom.xml URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/assembly/pom.xml?view=diff&rev=506198&r1=506197&r2=506198 == --- struts/struts2/branches/STRUTS_2_0_X/assembly/pom.xml (original) +++ struts/struts2/branches/STRUTS_2_0_X/assembly/pom.xml Sun Feb 11 16:57:44 2007 @@ -155,12 +155,13 @@ org.apache.struts -struts2-api +struts2-core ${version} + org.apache.struts -struts2-core +struts2-codebehind-plugin ${version} @@ -197,6 +198,12 @@ org.apache.struts struts2-plexus-plugin +${version} + + + +org.apache.struts +struts2-spring-plugin ${version} Modified: struts/struts2/branches/STRUTS_2_0_X/core/pom.xml URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/core/pom.xml?view=diff&rev=506198&r1=506197&r2=506198 == --- struts/struts2/branches/STRUTS_2_0_X/core/pom.xml (original) +++ struts/struts2/branches/STRUTS_2_0_X/core/pom.xml Sun Feb 11 16:57:44 2007 @@ -5,7 +5,7 @@ org.apache.struts struts2-parent -2.0.5 +2.0.6-SNAPSHOT org.apache.struts struts2-core @@ -20,7 +20,7 @@ - + maven-dependency-plugin 2.0-alpha-1-SNAPSHOT @@ -31,18 +31,18 @@ unpack - - - opensymphony - xwork - 2.0.0 - sources - - - ${project.build.directory}/xwork-sources - + + +opensymphony +xwork +2.0.0 +sources + + + ${project.build.directory}/xwork-sources + - + org.apache.myfaces.tobago @@ -75,14 +75,14 @@ execute - + - + maven-j
svn commit: r506206 - in /struts/struts2/branches/STRUTS_2_0_X: apps/ apps/blank/ apps/mailreader/ apps/portlet/ apps/showcase/ assembly/ core/src/site/resources/tags/ plugins/ plugins/codebehind/ plu
Author: husted Date: Sun Feb 11 17:19:09 2007 New Revision: 506206 URL: http://svn.apache.org/viewvc?view=rev&rev=506206 Log: [WW-1731] Update POMs. Checkin updated tag HTML docs. Modified: struts/struts2/branches/STRUTS_2_0_X/apps/blank/pom.xml struts/struts2/branches/STRUTS_2_0_X/apps/mailreader/pom.xml struts/struts2/branches/STRUTS_2_0_X/apps/pom.xml struts/struts2/branches/STRUTS_2_0_X/apps/portlet/pom.xml struts/struts2/branches/STRUTS_2_0_X/apps/showcase/pom.xml struts/struts2/branches/STRUTS_2_0_X/assembly/pom.xml struts/struts2/branches/STRUTS_2_0_X/core/src/site/resources/tags/doubleselect.html struts/struts2/branches/STRUTS_2_0_X/core/src/site/resources/tags/optiontransferselect.html struts/struts2/branches/STRUTS_2_0_X/plugins/codebehind/pom.xml struts/struts2/branches/STRUTS_2_0_X/plugins/config-browser/pom.xml struts/struts2/branches/STRUTS_2_0_X/plugins/jasperreports/pom.xml struts/struts2/branches/STRUTS_2_0_X/plugins/jfreechart/pom.xml struts/struts2/branches/STRUTS_2_0_X/plugins/jsf/pom.xml struts/struts2/branches/STRUTS_2_0_X/plugins/pell-multipart/pom.xml struts/struts2/branches/STRUTS_2_0_X/plugins/plexus/pom.xml struts/struts2/branches/STRUTS_2_0_X/plugins/pom.xml struts/struts2/branches/STRUTS_2_0_X/plugins/sitegraph/pom.xml struts/struts2/branches/STRUTS_2_0_X/plugins/sitemesh/pom.xml struts/struts2/branches/STRUTS_2_0_X/plugins/spring/pom.xml struts/struts2/branches/STRUTS_2_0_X/plugins/struts1/pom.xml struts/struts2/branches/STRUTS_2_0_X/plugins/tiles/pom.xml Modified: struts/struts2/branches/STRUTS_2_0_X/apps/blank/pom.xml URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/apps/blank/pom.xml?view=diff&rev=506206&r1=506205&r2=506206 == --- struts/struts2/branches/STRUTS_2_0_X/apps/blank/pom.xml (original) +++ struts/struts2/branches/STRUTS_2_0_X/apps/blank/pom.xml Sun Feb 11 17:19:09 2007 @@ -5,7 +5,7 @@ org.apache.struts struts2-apps -2.0.5 +2.0.6-SNAPSHOT org.apache.struts struts2-blank Modified: struts/struts2/branches/STRUTS_2_0_X/apps/mailreader/pom.xml URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/apps/mailreader/pom.xml?view=diff&rev=506206&r1=506205&r2=506206 == --- struts/struts2/branches/STRUTS_2_0_X/apps/mailreader/pom.xml (original) +++ struts/struts2/branches/STRUTS_2_0_X/apps/mailreader/pom.xml Sun Feb 11 17:19:09 2007 @@ -5,7 +5,7 @@ org.apache.struts struts2-apps - 2.0.5 + 2.0.6-SNAPSHOT org.apache.struts struts2-mailreader Modified: struts/struts2/branches/STRUTS_2_0_X/apps/pom.xml URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/apps/pom.xml?view=diff&rev=506206&r1=506205&r2=506206 == --- struts/struts2/branches/STRUTS_2_0_X/apps/pom.xml (original) +++ struts/struts2/branches/STRUTS_2_0_X/apps/pom.xml Sun Feb 11 17:19:09 2007 @@ -25,7 +25,7 @@ org.apache.struts struts2-parent -2.0.5 +2.0.6-SNAPSHOT org.apache.struts struts2-apps Modified: struts/struts2/branches/STRUTS_2_0_X/apps/portlet/pom.xml URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/apps/portlet/pom.xml?view=diff&rev=506206&r1=506205&r2=506206 == --- struts/struts2/branches/STRUTS_2_0_X/apps/portlet/pom.xml (original) +++ struts/struts2/branches/STRUTS_2_0_X/apps/portlet/pom.xml Sun Feb 11 17:19:09 2007 @@ -5,7 +5,7 @@ org.apache.struts struts2-apps - 2.0.5 + 2.0.6-SNAPSHOT org.apache.struts struts2-portlet Modified: struts/struts2/branches/STRUTS_2_0_X/apps/showcase/pom.xml URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/apps/showcase/pom.xml?view=diff&rev=506206&r1=506205&r2=506206 == --- struts/struts2/branches/STRUTS_2_0_X/apps/showcase/pom.xml (original) +++ struts/struts2/branches/STRUTS_2_0_X/apps/showcase/pom.xml Sun Feb 11 17:19:09 2007 @@ -5,7 +5,7 @@ org.apache.struts struts2-apps -2.0.5 +2.0.6-SNAPSHOT org.apache.struts struts2-showcase Modified: struts/struts2/branches/STRUTS_2_0_X/assembly/pom.xml URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/assembly/pom.xml?view=diff&rev=506206&r1=506205&r2=506206 == --- struts/struts2/branches/STRUTS_2_0_X/assembly/pom.xml (original) +++ struts/struts2/branches/STRUTS_2_0_X/assembly/pom.xml Sun Feb 11 17:19:09 2
svn commit: r506210 - in /struts/struts2/branches/STRUTS_2_0_X/core/src/site/resources/tags: doubleselect.html optiontransferselect.html
Author: husted Date: Sun Feb 11 17:33:59 2007 New Revision: 506210 URL: http://svn.apache.org/viewvc?view=rev&rev=506210 Log: [WW-1731] Checkin updated tag HTML docs. Modified: struts/struts2/branches/STRUTS_2_0_X/core/src/site/resources/tags/doubleselect.html struts/struts2/branches/STRUTS_2_0_X/core/src/site/resources/tags/optiontransferselect.html Modified: struts/struts2/branches/STRUTS_2_0_X/core/src/site/resources/tags/doubleselect.html URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/core/src/site/resources/tags/doubleselect.html?view=diff&rev=506210&r1=506209&r2=506210 == --- struts/struts2/branches/STRUTS_2_0_X/core/src/site/resources/tags/doubleselect.html (original) +++ struts/struts2/branches/STRUTS_2_0_X/core/src/site/resources/tags/doubleselect.html Sun Feb 11 17:33:59 2007 @@ -137,7 +137,7 @@ true String - The key expression to use for second list + Set the list key of the second attribute doubleListValue Modified: struts/struts2/branches/STRUTS_2_0_X/core/src/site/resources/tags/optiontransferselect.html URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/core/src/site/resources/tags/optiontransferselect.html?view=diff&rev=506210&r1=506209&r2=506210 == --- struts/struts2/branches/STRUTS_2_0_X/core/src/site/resources/tags/optiontransferselect.html (original) +++ struts/struts2/branches/STRUTS_2_0_X/core/src/site/resources/tags/optiontransferselect.html Sun Feb 11 17:33:59 2007 @@ -241,7 +241,7 @@ true String - The key expression to use for second list + Set the list key of the second attribute doubleListValue