Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old May 12th, 2009, 12:26 AM
Authorized User
 
Join Date: Apr 2009
Posts: 31
Thanks: 0
Thanked 0 Times in 0 Posts
Default Move element

Hi guys,

I have a doubt to move the element into perticular position, mentioned the example as below,

<date> element should be move after the element <host>, Is it possible to do in xslt 2.0??

Input Sample:

Code:
<reference id="ref011">
<host>
<book>
<title>
<maintitle>College bound seniors</maintitle>
</title>
<date>1980</date>
<publisher>
<location>Princeton (NJ)</location>: <name>College Board Publications</name>; </publisher>
</book>
</host>
</reference>
Output Sample:

Code:
<reference id="ref011">
<host>
<book>
<title>
<maintitle>College bound seniors</maintitle>
</title>
<publisher>
<location>Princeton (NJ)</location>: <name>College Board Publications</name>; </publisher>
</book>
</host><date>1980</date>
</reference>
Attempt XSLT 2.0:

Code:
<xsl:template match="//host/book/date">
<xsl:if test="./following-sibling::publisher">
<xsl:copy-of select="//host/date"/>
</xsl:if>
</xsl:template>
Please help me anybodies....
 
Old May 12th, 2009, 01:27 AM
Friend of Wrox
 
Join Date: Jun 2008
Posts: 291
Thanks: 9
Thanked 29 Times in 29 Posts
Thumbs up

Try this:
Code:
<xsl:template match="*">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:apply-templates></xsl:apply-templates>
</xsl:copy>
</xsl:template>

<xsl:template match="host">
<xsl:copy>
<xsl:apply-templates select="book"></xsl:apply-templates>
<xsl:copy-of select="//date"></xsl:copy-of>
</xsl:copy>
</xsl:template>

<xsl:template match="date"></xsl:template>

__________________
Rummy
 
Old May 12th, 2009, 03:29 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

Rummy's code works only if the data doesn't repeat: the "//date" should be ".//date" or "host/book/date".

The key thing is that you're doing two separate operations: (a) dropping date from the content of book, (b) adding date to the content of reference. So you can use an identity template modified for those two elements:

Code:
<xsl:template match="book">
  <xsl:copy>
     <xsl:copy-of select="* except date"/>
  </xsl:copy>
</xsl:template>

<xsl:template match="reference">
  <xsl:copy>
    <xsl:apply-templates/>
    <xsl:copy-of select="host/book/date"/>
  </xsl:copy>
</xsl:template>
__________________
Michael Kay
http://www.saxonica.com/
Author, XSLT 2.0 and XPath 2.0 Programmer\'s Reference





Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem adding element to the previous element dani1 XSLT 5 September 10th, 2008 01:38 AM
translate element name to element name lexzeus XSLT 3 September 4th, 2006 09:04 AM
adding of element and assigning to one element sushovandatta XSLT 2 November 16th, 2004 07:04 PM
Move the form ?? simsimlhr C# 1 April 1st, 2004 02:06 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.