PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT
ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW
AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE
DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL
BE LOST SOMEWHERE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3261
*** shadow/3261 Mon Aug 27 11:30:23 2001
--- shadow/3261.tmp.29063 Mon Aug 27 12:11:15 2001
***************
*** 303,306 ****
working. Proceeding with your advice #2 (line-by-line reporting).
localXSLTURLString shows correct result so far ("unicode.xsl").
! P.S. Sorry for flooding...
--- 303,330 ----
working. Proceeding with your advice #2 (line-by-line reporting).
localXSLTURLString shows correct result so far ("unicode.xsl").
! P.S. Sorry for flooding...
!
! ------- Additional Comments From [EMAIL PROTECTED] 2001-08-27 12:11 -------
! Looks like here is the bug (well, not the bug itself, but rather the place where
! I can't go further): in
! --------
! Stylesheet* XSLTEngineImpl::getStylesheetFromPIURL(
! const XalanDOMString& xslURLString,
! XalanNode& fragBase,
! const XalanDOMString& xmlBaseIdent,
! bool isRoot,
! StylesheetConstructionContext& constructionContext)
! --------
! function, there is the following line of code:
! --------
! localXSLURLString = URISupport::getURLStringFromString(localXSLURLString,
! m_xpathEnvSupport.findURIFromDoc(theOwnerDocument));
! --------
! So, as I understand localXSLURLString should contain something like
! "unicode.xsl" (it does!), and m_xpathEnvSupport.findURIFromDoc() should return
! the file location (/home/blah/blah/blah/here) - but it returns an empty string
! (or NULL, or something like that). Unfortunately I can't find where the source
! code of m_xpathEnvSupport (actually, it's not clear for me what's that at all :).
! Any ideas?
! --------