Return-Path: Delivered-To: apmail-click-commits-archive@www.apache.org Received: (qmail 95354 invoked from network); 29 May 2010 16:06:07 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 29 May 2010 16:06:07 -0000 Received: (qmail 10586 invoked by uid 500); 29 May 2010 16:06:07 -0000 Delivered-To: apmail-click-commits-archive@click.apache.org Received: (qmail 10571 invoked by uid 500); 29 May 2010 16:06:07 -0000 Mailing-List: contact commits-help@click.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: click-dev@click.apache.org Delivered-To: mailing list commits@click.apache.org Received: (qmail 10563 invoked by uid 99); 29 May 2010 16:06:07 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 May 2010 16:06:07 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 May 2010 16:06:05 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C857C23889E5; Sat, 29 May 2010 16:05:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r949408 - /click/trunk/click/framework/src/org/apache/click/util/ErrorReport.java Date: Sat, 29 May 2010 16:05:43 -0000 To: commits@click.apache.org From: sabob@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100529160543.C857C23889E5@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sabob Date: Sat May 29 16:05:43 2010 New Revision: 949408 URL: http://svn.apache.org/viewvc?rev=949408&view=rev Log: convert HTML escape to XML escape Modified: click/trunk/click/framework/src/org/apache/click/util/ErrorReport.java Modified: click/trunk/click/framework/src/org/apache/click/util/ErrorReport.java URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/util/ErrorReport.java?rev=949408&r1=949407&r2=949408&view=diff ============================================================================== --- click/trunk/click/framework/src/org/apache/click/util/ErrorReport.java (original) +++ click/trunk/click/framework/src/org/apache/click/util/ErrorReport.java Sat May 29 16:05:43 2010 @@ -421,7 +421,7 @@ public class ErrorReport { parseMsg = ClickUtils.escapeHtml(parseMsg); - parseMsg = StringUtils.replace(parseMsg, "...", ",  "); + parseMsg = StringUtils.replace(parseMsg, "...", ",  "); return parseMsg; @@ -655,7 +655,7 @@ public class ErrorReport { buffer.append("
"); } if (map.isEmpty()) { - buffer.append(" "); + buffer.append(" "); } }