[CONF] Confluence Changes in the last 24 hours
- This is a daily summary of all recent changes in Confluence. - Updated Spaces: - Apache CXF 2.0 Documentation (CXF20DOC) http://cwiki.apache.org/confluence/display/CXF20DOC | |-Pages Added or Edited in This Space |-- Servlet Transport was last edited by [EMAIL PROTECTED] (11:56 PM). | http://cwiki.apache.org/confluence/display/CXF20DOC/Servlet+Transport |-- JMS Transport was last edited by davidwscott34 (04:00 AM). | http://cwiki.apache.org/confluence/display/CXF20DOC/JMS+Transport Apache Roller (ROLLER) http://cwiki.apache.org/confluence/display/ROLLER | |-Pages Added or Edited in This Space |-- Proposal Configurable Domain Resolution was last edited by msgilligan (11:25 PM). | http://cwiki.apache.org/confluence/display/ROLLER/Proposal+Configurable+Domain+Resolution |-- Proposal Simple Multidomain Support was last edited by msgilligan (08:14 PM). | http://cwiki.apache.org/confluence/display/ROLLER/Proposal+Simple+Multidomain+Support |-- February 2008 Board Report was created by snoopdave (12:14 PM). | http://cwiki.apache.org/confluence/display/ROLLER/February+2008+Board+Report |-- ASF Board Reports was last edited by snoopdave (12:10 PM). | http://cwiki.apache.org/confluence/display/ROLLER/ASF+Board+Reports Apache Sling Website (SLINGxSITE) http://cwiki.apache.org/confluence/display/SLINGxSITE | |-Pages Added or Edited in This Space |-- Discover Sling in 15 minutes was last edited by bdelacretaz (08:07 AM). | http://cwiki.apache.org/confluence/display/SLINGxSITE/Discover+Sling+in+15+minutes Apache Struts 2 Plugin Registry (S2PLUGINS) http://cwiki.apache.org/confluence/display/S2PLUGINS | |-Pages Added or Edited in This Space |-- JSON Plugin was last edited by musachy (06:50 AM). | http://cwiki.apache.org/confluence/display/S2PLUGINS/JSON+Plugin Apache Struts 2 Documentation (WW) http://cwiki.apache.org/confluence/display/WW | |-Pages Added or Edited in This Space |-- UI Tag Reference was last edited by jeromyevans (07:47 PM). | http://cwiki.apache.org/confluence/display/WW/UI+Tag+Reference |-- Interceptors was last edited by jeromyevans (05:59 PM). | http://cwiki.apache.org/confluence/display/WW/Interceptors |-- Result Annotation was last edited by jeromyevans (05:56 PM). | http://cwiki.apache.org/confluence/display/WW/Result+Annotation |-- Parameters in configuration results was last edited by jeromyevans (05:54 PM). | http://cwiki.apache.org/confluence/display/WW/Parameters+in+configuration+results |-- How do we configure an Interceptor to be used with every Action was last edited by jeromyevans (05:53 PM). | http://cwiki.apache.org/confluence/display/WW/How+do+we+configure+an+Interceptor+to+be+used+with+every+Action |-- Version Notes 2.1.1 was last edited by nilsga (03:25 PM). | http://cwiki.apache.org/confluence/display/WW/Version+Notes+2.1.1 |-- REST Plugin was last edited by jeromyevans (03:24 PM). | http://cwiki.apache.org/confluence/display/WW/REST+Plugin | |-New Comments in This Space |-- http://cwiki.apache.org/confluence/display/WW/Version+Notes+2.1.1 (1) Apache Struts 2 Wiki (S2WIKI) http://cwiki.apache.org/confluence/display/S2WIKI | |-Pages Added or Edited in This Space |-- Companies that provide Struts 2 support was last edited by [EMAIL PROTECTED] (02:03 AM). | http://cwiki.apache.org/confluence/display/S2WIKI/Companies+that+provide+Struts+2+support Apache Geronimo v2.1 (GMOxDOC21) http://cwiki.apache.org/confluence/display/GMOxDOC21 | |-Pages Added or Edited in This Space |-- SPECjAppServer2004 was created by vmz (12:35 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC21/SPECjAppServer2004 |-- Development environment was last edited by vamsic007 (01:21 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC21/Development+environment |-- Documentation was last edited by vmz (12:36 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC21/Documentation |-- Administering the Apache Geronimo Server was last edited by hcunico (12:28 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC21/Administering+the+Apache+Geronimo+Server |-- Installing and removing applications was last edited by hcunico (12:22 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC21/Installing+and+removing+applications |-- Administration was last edited by hcunico (12:18 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC21/Administration |-- Starting and stopping the server was created by beckerdo (11:04 AM). | http://cwiki.apache.org/confluence/display/GMOxDOC21/Starting+and+stopping+the+server |-- Geronimo Administration Console was last edited by beckerdo (10:40 AM). | http://cwiki.apache.org/confluence/display/GMOxDOC21/Geronimo+Administration+Console |-- Deve
svn commit: r629504 - /struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/validation/JSONValidationInterceptor.java
Author: musachy Date: Wed Feb 20 07:26:19 2008 New Revision: 629504 URL: http://svn.apache.org/viewvc?rev=629504&view=rev Log: WW-2500 JSONValidationInterceptor: IE chokes when evaling JSON string * Add a comma to separate the fields, only when there are action errors Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/validation/JSONValidationInterceptor.java Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/validation/JSONValidationInterceptor.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/validation/JSONValidationInterceptor.java?rev=629504&r1=629503&r2=629504&view=diff == --- struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/validation/JSONValidationInterceptor.java (original) +++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/validation/JSONValidationInterceptor.java Wed Feb 20 07:26:19 2008 @@ -127,12 +127,13 @@ //action errors if (validationAware.hasActionErrors()) { sb.append("\"errors\":"); -sb.append(buildArray(validationAware.getActionErrors())); -sb.append(","); +sb.append(buildArray(validationAware.getActionErrors())); } //field errors if (validationAware.hasFieldErrors()) { +if (validationAware.hasActionErrors()) +sb.append(","); sb.append("\"fieldErrors\": {"); Map> fieldErrors = validationAware .getFieldErrors();
[OSS Bamboo] Struts 2 SVN - Main Build build 740 has FAILED (0 tests failed). Change made by musachy
The project Struts 2 SVN - Main Build has the following 1 change by 1 author: *musachy* made the following changes at Comment: WW-2500 JSONValidationInterceptor: IE chokes when evaling JSON string * Add a comma to separate the fields, only when there are action errors > /struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/validation/JSONValidationInterceptor.java > (629504) --- No failed tests found, a possible compilation error. Click http://opensource.bamboo.atlassian.com/browse/STRUTS-MAIN-740 to find out more. Thanks, Bamboo