dbertoni 02/04/01 22:13:16
Modified: c/src/XSLT XSLTEngineImpl.cpp XSLTInputSource.cpp
Log:
Used new URISupport functions.
Revision Changes Path
1.137 +6 -6 xml-xalan/c/src/XSLT/XSLTEngineImpl.cpp
Index: XSLTEngineImpl.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTEngineImpl.cpp,v
retrieving revision 1.136
retrieving revision 1.137
diff -u -r1.136 -r1.137
--- XSLTEngineImpl.cpp 28 Mar 2002 07:07:56 -0000 1.136
+++ XSLTEngineImpl.cpp 2 Apr 2002 06:13:16 -0000 1.137
@@ -864,17 +864,17 @@
{
if (length(xmlBaseIdent) == 0)
{
- localXSLURLString =
-
URISupport::getURLStringFromString(
+ URISupport::getURLStringFromString(
localXSLURLString,
-
m_xpathEnvSupport.findURIFromDoc(theOwnerDocument));
+
m_xpathEnvSupport.findURIFromDoc(theOwnerDocument),
+ localXSLURLString);
}
else
{
- localXSLURLString =
-
URISupport::getURLStringFromString(
+ URISupport::getURLStringFromString(
localXSLURLString,
- xmlBaseIdent);
+ xmlBaseIdent,
+ localXSLURLString);
}
}
catch(const XMLException&)
1.14 +4 -2 xml-xalan/c/src/XSLT/XSLTInputSource.cpp
Index: XSLTInputSource.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTInputSource.cpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- XSLTInputSource.cpp 23 Feb 2002 04:23:17 -0000 1.13
+++ XSLTInputSource.cpp 2 Apr 2002 06:13:16 -0000 1.14
@@ -196,9 +196,11 @@
if (theSystemId != 0)
{
- const URISupport::URLAutoPtrType
theURL(URISupport::getURLFromString(theSystemId));
+ XMLURL theURL;
- theResult = theURL->makeNewStream();
+ URISupport::getURLFromString(theSystemId, theURL);
+
+ theResult = theURL.makeNewStream();
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]