This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Generating a list of items NOT present in source XML



It depends a bit what your missing nodes are, if it's numbers then the
stylesheet has a chance, if the thing is a list of family birthdays and
I've forgotten one (not uncommon:-) then the stylesheet probably won't
have much of a chance of filling in the gaps. (Hmm now there's a
challenge for Jeni, can she provide a stylesheet that will fill in my
Mum's birthday...)

Anyway for your example,

<xsl:for-each select="//*[position()&lt;/root/obj]">
<xsl:if test="not(position() = /root/obj)">
 <obj><childnode><xsl:value-of select="position()"/></childnode></obj>
</xsl:for-each>

probably works, but not if node 10 was missing.

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]