Please enter a bug in Bugzilla:
http://nagoya.apache.org/bugzilla
Attach a _minimal_ set of files that will allow us to reproduce the bug.
Thanks,
Dave
Matthew James
Hanson To: [EMAIL PROTECTED]
<matthew.hanson cc: (bcc: David N Bertoni/CAM/Lotus)
@wcom.com> Subject: Xalan-C++ xsl:import bug
06/13/2001
02:35 PM
Please respond
to xalan-dev
The following lines of code in my stylesheet run flawlessly using Xalan-J:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:import href="formBase.xsl"/>
<xsl:import href="packageCoversheet.xsl"/>
<xsl:output indent="yes"/>
<xsl:template match="/">
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<xsl:call-template name
="getFOFormPageMaster"/>
</fo:layout-master-set>
</fo:root>
</xsl:template>
</xsl:stylesheet>
However, when using the testXSLT sample from Xalan-C++, the following error
output is encountered:
========= Parsing formMaster.xsl ==========
Parse of formMaster.xsl took 300 milliseconds
========= Parsing 50 ==========
Parse of 50 took 190 milliseconds
=============================
Transforming...
XSL Warning: Could not find xsl:template named: getFOFormPageMaster
transform took 0 milliseconds
Total time took 190 milliseconds
Please help
Matt Hanson