Return-Path: Delivered-To: apmail-tapestry-commits-archive@minotaur.apache.org Received: (qmail 75832 invoked from network); 31 May 2010 05:59:59 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 31 May 2010 05:59:59 -0000 Received: (qmail 62266 invoked by uid 500); 31 May 2010 05:59:59 -0000 Delivered-To: apmail-tapestry-commits-archive@tapestry.apache.org Received: (qmail 62221 invoked by uid 500); 31 May 2010 05:59:57 -0000 Mailing-List: contact commits-help@tapestry.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tapestry.apache.org Delivered-To: mailing list commits@tapestry.apache.org Received: (qmail 62214 invoked by uid 99); 31 May 2010 05:59:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 May 2010 05:59:57 +0000 X-ASF-Spam-Status: No, hits=-1196.5 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 May 2010 05:59:56 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o4V5xaID029869 for ; Mon, 31 May 2010 05:59:36 GMT Message-ID: <31737509.77601275285576659.JavaMail.jira@thor> Date: Mon, 31 May 2010 01:59:36 -0400 (EDT) From: "Paul Stanton (JIRA)" To: commits@tapestry.apache.org Subject: [jira] Created: (TAPESTRY-2764) single quote escapted to ' causes issues in ie8 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 single quote escapted to ' causes issues in ie8 ---------------------------------------------------- Key: TAPESTRY-2764 URL: https://issues.apache.org/jira/browse/TAPESTRY-2764 Project: Tapestry Issue Type: Bug Affects Versions: 5.1 Environment: ie8 browser Reporter: Paul Stanton Tapestry escapes single quotes in attribute values using ' which causes issues in ie8. the correct technique to avoid the ie8 issue is to use the hex number in the ascii reference. for example the content of the zone hi will be encoded into the following string within the JSON in the XHR response: "hi" This will cause a syntax error in ie8. PATCH: Tapestry 5.1.0.5, org.apache.tapestry5.dom.AbstractMarkupModel line 136 builder.append("'"); change to builder.append("'"); -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.