Changes between Initial Version and Version 3 of Ticket #7193
- Timestamp:
- Jul 15, 2008, 2:37:55 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7193
- Property Owner changed from alex to Mike Wilcox
-
Property
Summary
changed from
DOH console needs to escape XML
toDOH log needs to escape XML
-
Ticket #7193 – Description
initial v3 1 1 see #7189. The output stripped out tags in the content of the test. 2 3 {{{ 4 var doc = dojox.data.dom.createDocument(["","One","Two","Three","Four",""].join("")); 5 }}} 6 7 should look like 8 9 {{{ 10 var doc = dojox.data.dom.createDocument([ 11 "<ResultSet>", 12 "<Result>One</Result>", 13 "<RESULT>Two</RESULT>", 14 "<result>Three</result>", 15 "<result>Four</result>", 16 "</ResultSet>" 17 ].join("") 18 ); 19 }}}