Hello, I have an "include" in xsltforms.xsl to another xsl, and with this change in r540 instead loading included xsls as relative, they are loading it as an absolute url. ¿Is necesary this change?
@@ -974,16 +995,18 @@
xsltDoc = parser.parseFromString(xslt,
"text/xml");
} else {
xsltDoc =
document.implementation.createDocument("","",null);
+ /*
if (xsltDoc.load) {
xsltDoc.async = false;
xsltDoc.load(xslt);
} else {
- var xhttp = new XMLHttpRequest();
- xhttp.open("GET", xslt, false);
- xhttp.send("");
- xslt = xhttp.responseText;
- xsltDoc =
parser.parseFromString(xslt, "text/xml");
}
+ */
+ var xhttp = new XMLHttpRequest();
+ xhttp.open("GET", xslt, false);
+ xhttp.send("");
+ xslt = xhttp.responseText;
+ xsltDoc = parser.parseFromString(xslt,
"text/xml");
}
I will explain it better:
I have xsltforms.xsl in "/xsltforms/xsltforms.xsl" with an include to
"myxsltforms.xsl". Instead loading it in "/xsltforms/myxsltforms.xsl" is
trating to load it in "/myxsltforms.xsl". I think it is incorrect...
Best Regards,
Javier
************************************************************************************************************************************************
*La información contenida en este mensaje de correo electrónico es confidencial
y puede revestir el carácter de reservada. *
*Está dirigida exclusivamente a la persona destinataria.
*
*El acceso o cualquier uso por parte de cualquier otra persona de este mensaje
no están autorizados y pueden ser ilegales.*
*Si no es Ud. la persona destinataria, le rogamos que proceda a borrarlo.
*
*The information in this e-mail is confidential and may be legally privileged.
*
*It is intended solely for the addressee.
*
*Access or any use by any other person to this Internet e-mail is not
authorised and may be unlawful. *
*If you are not the intended recipient, please delete this e-mail.
*
************************************************************************************************************************************************
<<attachment: jdiaz.vcf>>
------------------------------------------------------------------------------ For Developers, A Lot Can Happen In A Second. Boundary is the first to Know...and Tell You. Monitor Your Applications in Ultra-Fine Resolution. Try it FREE! http://p.sf.net/sfu/Boundary-d2dvs2
_______________________________________________ Xsltforms-support mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/xsltforms-support
