DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11604>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11604 EXSLT implementations of set:leading and set:trailing are off by one element ------- Additional Comments From [EMAIL PROTECTED] 2002-08-12 18:53 ------- Further investigation showed the following: 1. The output from EnvironmentCheck looks ok, both from the command-line as from within Eclipse: #---- BEGIN writeEnvironmentReport($Revision: 1.12 $): Useful stuff found: ---- version.DOM.draftlevel=2.0fd java.class.path=.;D:\Development\java\lib\xalan.jar version.JAXP=1.1 java.ext.dirs=C:\Program Files\JavaSoft\JRE\1.3.1_04\lib\ext version.xerces2=Xerces-J 2.0.1 version.xerces1=not-present version.xalan2_2=Xalan Java 2.4.D1 version.xalan1=not-present version.ant=not-present java.version=1.3.1_04 version.DOM=2.0 version.crimson=not-present sun.boot.class.path=C:\Program Files\JavaSoft\JRE\1.3.1_04\lib\rt.jar;C:\Program Files\JavaSoft\JRE\1.3.1_04\lib\i18n.jar;C:\Program Files\JavaSoft\JRE\1.3.1_04\lib\sunrsasign.jar;C:\Program Files\JavaSoft\JRE\1.3.1_04\classes #---- BEGIN Listing XML-related jars in: foundclasses.java.class.path ---- xalan.jar-apparent.version=xalan.jar WARNING.present-unknown-version xalan.jar-path=D:\Development\java\lib\xalan.jar xml-apis.jar-apparent.version=xml-apis.jar from xalan-j_2_3_0,2_4_D1 from xml-commons-1.0.b2 xml-apis.jar-path=D:\Development\java\lib\xml-apis.jar #----- END Listing XML-related jars in: foundclasses.java.class.path ----- version.SAX=2.0 version.xalan2x=Xalan Java 2.4.D1 #----- END writeEnvironmentReport: Useful properties found: ----- # YAHOO! Your environment seems to be OK. 2. Using "org.apache.xalan.xslt.Process -IN Bug11604.xml -XSL Bug11604.xsl" *does* give the expected result (again, both from command-line and from within Eclipse). 3. Using the attached source and sample XML source/stylesheet the failure is reproducable independent of environment used. D:\Development\java\Bug11604>java -cp .;..\lib\xalan.jar Bug11604.xml Bug11604.xsl Using: Xalan Java 2.4.D1 <?xml version="1.0" encoding="UTF-8"?> <out xmlns:set="http://exslt.org/sets"> <lead> <a/> <b/> <c/> <d/> </lead> <trail> <d/> <e/> <f/> <g/> <h/> </trail> </out>
