[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Moving an element along with data manipulation


Subject: Re: [xsl] Moving an element along with data manipulation
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 8 Apr 2008 10:20:51 +0100

You are processing auuthor elements after title, so just modify the
processing of meta not to process author children:


<xsl:template match="meta">
<meta>
<xsl:apply-templates select="*[not(self::author)]"/>
</meta>
</xsl:template>


that is all you need to do, but some other comments:

<xsl:when test="count(following-sibling::author)=0">
you don't need to count them all and then check if it is zero, just test
if teher are any.

<xsl:when test="following-sibling::author">



<xsl:when test="count(following-sibling::author)=1 and count(//author)!=1">

The current node is an author, so if there is a follwing sibling author
then  count(//author) 9which is an expensive test, searching teh entire
document) can not possibkly be 1.
so this can also be simplified to
<xsl:when test="following-sibling::author">


David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________


Current Thread