Re: zone update json response escaping issues

2010-05-31 Thread Paul Stanton
sorry, thought i was in the right place. i now know. Ulrich Stärk wrote: Correct. I'm moving the issue report to its correct location. On 31.05.2010 09:29, Christian Riedel wrote: Though I'm not a committer I guess that https://issues.apache.org/jira/browse/TAP5 would be a better place to add

Re: zone update json response escaping issues

2010-05-31 Thread Ulrich Stärk
Correct. I'm moving the issue report to its correct location. On 31.05.2010 09:29, Christian Riedel wrote: Though I'm not a committer I guess that https://issues.apache.org/jira/browse/TAP5 would be a better place to add a jira :) Can anyone confirm that the TAPESTRY project is only for T4? A

Re: zone update json response escaping issues

2010-05-31 Thread Christian Riedel
Though I'm not a committer I guess that https://issues.apache.org/jira/browse/TAP5 would be a better place to add a jira :) Can anyone confirm that the TAPESTRY project is only for T4? Am 31.05.2010 um 08:00 schrieb Paul Stanton: > https://issues.apache.org/jira/browse/TAPESTRY-2764 > > Paul S

Re: zone update json response escaping issues

2010-05-30 Thread Paul Stanton
https://issues.apache.org/jira/browse/TAPESTRY-2764 Paul Stanton wrote: I've found that changing the implementation of tapestry resolves the issue: Tapestry 5.1.0.5, org.apache.tapestry5.dom.AbstractMarkupModel line 136 builder.append("'"); change to builder.append("'"); p. Paul Stanton wrot

Re: zone update json response escaping issues

2010-05-30 Thread Paul Stanton
I've found that changing the implementation of tapestry resolves the issue: Tapestry 5.1.0.5, org.apache.tapestry5.dom.AbstractMarkupModel line 136 builder.append("'"); change to builder.append("'"); p. Paul Stanton wrote: Hi All, I've found an issue with how tapestry escapes its zone HTML co

zone update json response escaping issues

2010-05-30 Thread Paul Stanton
Hi All, I've found an issue with how tapestry escapes its zone HTML content within the JSON of the zone update XHR response. Eg: hi The HTML is stored within a String initialised with double quotes inside the JSON, converting double quotes for attribute values with single quotes. it a