[Date Prev]
| [Thread Prev]
| [Thread Next]
| [Date Next]
--
[Date Index]
| [Thread Index]
RE: [xml-dev] Including unparsed xml (xhtml code) code in xslt output.
- From: "Michael Kay" <mike@saxonica.com>
- To: "'Mukul Gandhi'" <gandhi.mukul@gmail.com>
- Date: Sun, 25 Nov 2007 14:59:20 -0000
Yes, sorry, I was jumping a step. I should have said that instead of doing
<xsl:variable name="rtf">
<nodexhtml>
<html><h1>Hello</h1></html>
</nodexhtml>
</xsl:variable>
and then <xsl:copy-of select="node-set($rtf)/nodexhtml/*"/>, you could do
<xsl:variable name="rtf">
<html><h1>Hello</h1></html>
</xsl:variable>
and then <xsl:copy-of select="$rtf"/>
Michael Kay
http://www.saxonica.com/
> -----Original Message-----
> From: Mukul Gandhi [mailto:gandhi.mukul@gmail.com]
> Sent: 25 November 2007 14:00
> To: Michael Kay
> Cc: http://www.pas-world.com; xml-dev@lists.xml.org
> Subject: Re: [xml-dev] Including unparsed xml (xhtml code)
> code in xslt output.
>
> Hi Mike,
> I agreed to your point in hurry :) After that, I double
> checked by running the following stylesheet:
>
> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
> version="1.0">
>
> <xsl:output indent="yes" />
>
> <xsl:template match="/">
> <xsl:copy-of select="$rtf/nodexhtml/*" /> </xsl:template>
>
> <xsl:variable name="rtf">
> <nodexhtml>
> <html><h1>Hello</h1></html>
> </nodexhtml>
> </xsl:variable>
>
> </xsl:stylesheet>
>
> with two XSLT 1.0 processors (Xalan-J and MSXSL 4.0), and
> following are the results (the transformation fails):
>
> Xalan-J 2.7.0
> ------------------
> XSLT Error (javax.xml.transform.TransformerException):
> org.apache.xpath.objects.XRTreeFrag cannot be ca st to
> org.apache.xpath.objects.XNodeSet Exception in thread "main"
> java.lang.RuntimeException: org.apache.xpath.objects.
> XRTreeFrag cannot be cast to org.apache.xpath.objects.XNodeSet
>
> MSXSL 4.0
> ----------------
> Reference to variable or parameter 'rtf' must evaluate to a node list.
>
> It therefore seems that my original reply was right ...
>
> Would you agree?
>
> On 11/25/07, Mukul Gandhi <gandhi.mukul@gmail.com> wrote:
> > On 11/25/07, Michael Kay <mike@saxonica.com> wrote:
> > > Actually that works in 1.0 as well. XSLT 1.0 allows two
> operations
> > > on a result tree fragment: copying, and conversion to a string.
> >
> > Thanks Mike for clarifying this to me.
>
>
> --
> Regards,
> Mukul Gandhi
[Date Prev]
| [Thread Prev]
| [Thread Next]
| [Date Next]
--
[Date Index]
| [Thread Index]