RE:
"Seamus" <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.layout.xslt |
|---|---|
| Organization | Another Netscape Collabra Server User |
| Message-ID | <[email protected]> |
Thank for the info. In other news, I can't seem to be able to load the XSL
doc with the usual:
xslDoc = getDomDoc();
xslDoc.async = false;
xslDoc.addEventListener("load",
function(evt) {_Document_onload_XSLT(xslDoc);}, false);
xslDoc.load(xslSourceURI);
where _Document_onload_XSLT is simply :
objDOMDocument.readyState = 4;
//if there is an onreadystatechange event handler, run it
if (objDOMDocument.onreadystatechange != null &&
typeof objDOMDocument.onreadystatechange == "function") {
objDOMDocument.onreadystatechange();
}
Any special Netscape way of loading docs from URIs?
"Emmanouil Batsis" <[email protected]> wrote in message
news:[email protected]...
> Seamus wrote:
>> Netscape 6.2, however, seems to have have a different API for using
>> processors/stylesheets.
>
> True. In the "XSLT in JS" page [1] of the Mozilla XSLT project
> documentation [2] you can see the documentation for the current [3] and
> old [4] API. It's all there if you look for it ;-)
>
> [1] http://www.mozilla.org/projects/xslt/js-interface.html
> [2] http://www.mozilla.org/projects/xslt/
> [3]
> http://lxr.mozilla.org/seamonkey/source/content/xsl/public/nsIXSLTProcessor.idl
> [4]
> http://lxr.mozilla.org/seamonkey/source/content/xsl/public/nsIXSLTProcessorObsolete.idl