Bingo. Several of my imported stylesheets just had the xsl namespace and not the fo one. The earlier parser I was using must have handled this differently. Thanks again. -Lou
Jeremias Maerki <[EMAIL PROTECTED]> on 04/16/2003 07:54:22 Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: Re: xsl:import error with new jaxp and fop 0.20.5rc2 Looks like you forgot to declare the XSL-FO namespace. The top-level element in your XSLT must look approximately like this, if you use the often-used "fo" namespace prefix: <xsl:stylesheet version="1.1" xmlns:xsl=" http://www.w3.org/1999/XSL/Transform" xmlns:fo=" http://www.w3.org/1999/XSL/Format"> If that's not the problem there must be a problem with namespaces in the XML parser you're using. On 16.04.2003 13:55:09 Louis.Masters wrote: > > Thanks. You are correct - this should have been sent to the Xalan list - I > just thought I had misconfigured my jar files. > > Anyway, your suggestion did get me past the XSL error, but I am now seeing > the following: > > Dumping configuration: > [ERROR] Unknown formatting object ^layout-master-set > [ERROR] Unknown formatting object ^simple-page-master > [ERROR] Unknown formatting object ^region-before > [ERROR] Unknown formatting object ^region-after > [ERROR] Unknown formatting object ^region-body > [ERROR] Unknown formatting object ^page-sequence-master > [ERROR] Unknown formatting object ^repeatable-page-master-reference > [ERROR] Unknown formatting object ^page-sequence > [ERROR] Unknown formatting object ^static-content > [ERROR] Unknown formatting object ^block > [ERROR] Unknown formatting object ^external-graphic > [ERROR] Unknown formatting object ^table > [ERROR] Unknown formatting object ^table-column > [ERROR] Unknown formatting object ^table-body > [ERROR] Unknown formatting object ^table-row > [ERROR] Unknown formatting object ^table-cell > [ERROR] Unknown formatting object ^page-number > [ERROR] Unknown formatting object ^page-number-citation > [ERROR] Unknown formatting object ^basic-link > [ERROR] Unknown formatting object ^flow > [ERROR] Unknown formatting object ^table-header > [ERROR] Unknown formatting object ^inline > [ERROR] Unknown formatting object ^leader > > I'll look into why this is happening. Jeremias Maerki --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
