Hi all,

I noticed that as of r3048 the demos using XSL stylesheets break on line 
44 in Util.js:
if(inlineXSL) {
    xmlString = inlineXSL[_1];
    xmlString = xmlString.replace(/DOUBLE_QUOTE/g,"\"");
    this.xslDom = (new DOMParser()).parseFromString(xmlString, "text/xml");
  }
inlineXSL is not defined and as such firefox (at least) fails on it. A 
simple check on inlineXSL solves it:
  if(!inlineXSL) var inlineXSL=false;
However I take it the inlineXSL routine is implemented for a reason and 
I guess inlineXSL should be defined somewhere else. Can someone (matt?) 
who is knowledgeable in these things have a look at it?

thanks
Steven



-------------------------------------------------------------------------
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