You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2001/07/03 09:22:51 UTC

[Bug 2428] New: - Incorrect handeling of external file references

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2428

*** shadow/2428	Tue Jul  3 00:22:51 2001
--- shadow/2428.tmp.3590	Tue Jul  3 00:22:51 2001
***************
*** 0 ****
--- 1,31 ----
+ +============================================================================+
+ | Incorrect handeling of external file references                            |
+ +----------------------------------------------------------------------------+
+ |        Bug #: 2428                        Product: XalanJ2                 |
+ |       Status: NEW                         Version: 2.1.0                   |
+ |   Resolution:                            Platform: All                     |
+ |     Severity: Major                    OS/Version: Linux                   |
+ |     Priority: Other                     Component: org.apache.xalan.templa |
+ +----------------------------------------------------------------------------+
+ |  Assigned To: xalan-dev@xml.apache.org                                     |
+ |  Reported By: js@ddre.dk                                                   |
+ |      CC list: Cc:                                                          |
+ +----------------------------------------------------------------------------+
+ |          URL:                                                              |
+ +============================================================================+
+ |                              DESCRIPTION                                   |
+ Procecessing the DocBook element imageobject, with Xalan 2.1.0 and 2.0.0 (last 
+ one is included in FOP 0.19.0) using DocBook Stylesheets 1.4.0
+ 
+       <imageobject fileref="myfig.gif"/>
+ 
+ includes path before url, results in following fo code: 
+  
+      <fo:external-graphic src="/path/to/current/dir/url(file:mygif.gif)" .../>
+ 
+ instead of
+ 
+      <fo:external-graphic src="url(file:mygif.gif)" .../>
+ 
+ 
+ Other XSLT processors do this correctly !