On 8/13/06, Luuk Jansen <subscribe(_at_)angelosystems(_dot_)com> wrote:
All-right, I missed that one, sorry about that.
The namespace is urn:schemas-microsoft-com:office:office as I found on
the internet, but adding into the template as seen below doesn't seem to
work (still gives exactly the same error, so doesn't seen to pay any
attention to it).
<xsl:template match="Content"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:saxon="http://saxon.sf.net/">
<xsl:if test=". != ''">
<fo:block space-after="10mm">
<xsl:variable name="parseContent"
select="saxon:parse(.)"/>
<xsl:apply-templates
select="$parseContent"/>
</fo:block>
</xsl:if>
</xsl:template>
Am I doing something stupid wrong?
Yes - add it to your <xsl:stylesheet> or <xsl:transform> elements...
not at the template level...
Sorry for all these newbie questions!
You do seem to be in at the deep-end...
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--