dbertoni 2004/11/10 17:22:30
Modified: c/src/xalanc/XSLT StylesheetHandler.cpp
Log:
Fixed hideous bug that broke xsl:import.
Revision Changes Path
1.18 +6 -2 xml-xalan/c/src/xalanc/XSLT/StylesheetHandler.cpp
Index: StylesheetHandler.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/xalanc/XSLT/StylesheetHandler.cpp,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- StylesheetHandler.cpp 8 Nov 2004 18:18:56 -0000 1.17
+++ StylesheetHandler.cpp 11 Nov 2004 01:22:30 -0000 1.18
@@ -1233,10 +1233,14 @@
href = atts.getValue(i);
- Stylesheet::URLStackType& includeStack =
m_stylesheet.getIncludeStack();
+ const Stylesheet::URLStackType& includeStack =
+ m_stylesheet.getIncludeStack();
assert(includeStack.empty() == false);
- hrefUrl =
m_constructionContext.getURLStringFromString(href, includeStack.back());
+ hrefUrl = m_constructionContext.getURLStringFromString(
+ href,
+ includeStack.back(),
+ hrefUrl);
assert(length(hrefUrl) != 0);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]