[CONF] Confluence Changes in the last 24 hours
- This is a daily summary of all recent changes in Confluence. - Updated Spaces: - Apache Camel (CAMEL) http://cwiki.apache.org/confluence/display/CAMEL | |-Pages Added or Edited in This Space |-- Jetty was last edited by davsclaus (09:16 AM). | http://cwiki.apache.org/confluence/display/CAMEL/Jetty |-- HTTP was last edited by davsclaus (08:10 AM). | http://cwiki.apache.org/confluence/display/CAMEL/HTTP |-- File was last edited by davsclaus (08:05 AM). | http://cwiki.apache.org/confluence/display/CAMEL/File |-- HL7 DataFormat was created by davsclaus (04:02 AM). | http://cwiki.apache.org/confluence/display/CAMEL/HL7+DataFormat |-- HL7 was last edited by davsclaus (04:11 AM). | http://cwiki.apache.org/confluence/display/CAMEL/HL7 Apache Qpid (qpid) http://cwiki.apache.org/confluence/display/qpid | |-Pages Added or Edited in This Space |-- Download was last edited by aidan (02:04 PM). | http://cwiki.apache.org/confluence/display/qpid/Download Apache Cayenne (CAY) http://cwiki.apache.org/confluence/display/CAY | |-Pages Added or Edited in This Space |-- Mapping JTS Geometries was last edited by halset (10:19 PM). | http://cwiki.apache.org/confluence/display/CAY/Mapping+JTS+Geometries |-- Summer of Code 2008 was last edited by ari (01:44 AM). | http://cwiki.apache.org/confluence/display/CAY/Summer+of+Code+2008 Apache MINA AsyncWeb (AWEB) http://cwiki.apache.org/confluence/display/AWEB | |-Pages Added or Edited in This Space |-- Server streams proposals was created by jvermillard (05:47 AM). | http://cwiki.apache.org/confluence/display/AWEB/Server+streams+proposals Apache Archiva (ARCHIVA) http://cwiki.apache.org/confluence/display/ARCHIVA | |-Pages Added or Edited in This Space |-- Archiva Release Process was last edited by brettporter (05:57 PM). | http://cwiki.apache.org/confluence/display/ARCHIVA/Archiva+Release+Process - CONFLUENCE INFORMATION This message is automatically generated by Confluence Unsubscribe or edit your notifications preferences http://cwiki.apache.org/confluence/users/viewnotifications.action If you think it was sent incorrectly contact one of the administrators http://cwiki.apache.org/confluence/administrators.action If you want more information on Confluence, or have a bug to report see http://www.atlassian.com/software/confluence
Issues Opened: week of 2008-08-11
Struts2 - Monday, August 11, 2008 10 opened in last 7 days [WW-2753] Threads are blocked in LocalizedTextUtil.findResourceBundle leading to very bad response times - Type: Bug - Reporter: kirti teja - Components: [] - Affects Versions: [] - http://issues.apache.org/struts/browse/WW-2753 [WW-2756] struts-dojo-tags.tld is not compatible with Resin 3.1.x - Type: Bug - Reporter: Joost Altena - Components: [Plugin - Dojo Tags] - Affects Versions: [] - http://issues.apache.org/struts/browse/WW-2756 [WW-2747] Struts 2.0.11.2 : In doubleselect tag doubleonchange , doubleonclick not working. We can not call a javascript funtion through doubleonchange or doubleonclick - Type: Bug - Reporter: saqibshehzad - Components: [] - Affects Versions: [] - http://issues.apache.org/struts/browse/WW-2747 [WW-2751] SessionMap containsKey will not find an object put into the map - Type: Bug - Reporter: Ian Robinson - Components: [Core Actions, Core Interceptors] - Affects Versions: [] - http://issues.apache.org/struts/browse/WW-2751 [WW-2749] portlet plugin doesn't work with tiles - Type: Bug - Reporter: Nikita Koval - Components: [Plugin - Portlet, Plugin - Tiles] - Affects Versions: [] - http://issues.apache.org/struts/browse/WW-2749 [WW-2754] Source code for GXP result - Type: Temp - Reporter: Musachy Barroso - Components: [] - Affects Versions: [] - http://issues.apache.org/struts/browse/WW-2754 [WW-2752] Freemarker result for the s:action control tag does not search the classpath - Type: Bug - Reporter: Tamas Ruff - Components: [Core Actions] - Affects Versions: [] - http://issues.apache.org/struts/browse/WW-2752 [WW-2750] JavaScript errors due to hyphens in action names - Type: Bug - Reporter: Miguel Diaz - Components: [] - Affects Versions: [] - http://issues.apache.org/struts/browse/WW-2750 [WW-2755] Problem with bad documentation version for 2.0.11.x - Type: Bug - Reporter: Jérémie Quinet - Components: [Documentation] - Affects Versions: [] - http://issues.apache.org/struts/browse/WW-2755 [WW-2748] Preparable interceptor called prior to i8n - Type: Bug - Reporter: Dean Pullen - Components: [Core Interceptors] - Affects Versions: [] - http://issues.apache.org/struts/browse/WW-2748
svn commit: r684757 - /struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/DefaultResultMapBuilder.java
Author: musachy Date: Mon Aug 11 07:23:21 2008 New Revision: 684757 URL: http://svn.apache.org/viewvc?rev=684757&view=rev Log: Handle unknown extension in result Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/DefaultResultMapBuilder.java Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/DefaultResultMapBuilder.java URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/DefaultResultMapBuilder.java?rev=684757&r1=684756&r2=684757&view=diff == --- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/DefaultResultMapBuilder.java (original) +++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/DefaultResultMapBuilder.java Mon Aug 11 07:23:21 2008 @@ -448,7 +448,12 @@ int indexOfDot = location.lastIndexOf("."); if (indexOfDot > 0) { String extension = location.substring(indexOfDot + 1); -return resultsByExtension.get(extension).getName(); +ResultTypeConfig resultTypeConfig = resultsByExtension.get(extension); +if (resultTypeConfig != null) { +return resultTypeConfig.getName(); +} else +throw new ConfigurationException("Unable to find a result type for extension [" + extension + "] " + + "in location attribute [" + location + "]."); } else { return packageConfig.getFullDefaultResultType(); }