Hi,

just as a hint to everyone who's custom widgets are broken by this
change in Util.js: for widgets based on WidgetBaseXSL.js, you can
always define a postPaint method to unescape the output:

this.postPaint = function(objRef) {
  objRef.node.firstChild.innerHTML =
         
objRef.node.firstChild.innerHTML.replace(/&amp;/,'&').replace(/&lt;/,'<').replace(/&gt;/,'>');
}

But, of course, it is better to use xsl stylesheets that do need such
a hack for processing the widget.

Regards,
Andreas.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
mapbuilder-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mapbuilder-devel

Reply via email to