xsl-list
[Top] [All Lists]

Re: xsl for two type of document

2003-07-17 09:44:06
what is the most expression on time execution:
is <xsl:apply-templates select="/*/doccontent/docbody"/>
or <xsl:apply-templates select="/*[name()=$racine]/doccontent/docbody"/>



David Carlisle a écrit :

  o i use a variable like:
  <xsl:variable name="racine">
    <xsl:choose>

Using a variable with content makes a result tree fragment that you can
not query into with Xpath.

You could use your processor's node-set  extension to convert this result
tree fragment to a node set but in this case it would be pointless as
there are no element nodes in your fragment

 <xsl:value-of select="/genericdoc"/>

value-of returns a string, so this discards all teh element nodes and
just gives the character data.

Just use

<xsl:apply-templates select="/*/doccontent/docbody"/>

You don't need a variable here.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>