xsl-list
[Top] [All Lists]

Re: [xsl] Tag movement in XML

2008-09-15 07:26:54


Title and abstract are appearing as per the XML order and not
appearing as per the required output.

you don't really say what chanegs you need. (In your posted input, and
the desired output, titke came before the abstract)

Possibly you want to force that the BB element (containing title amongst
other things) is always processed before AB (containing the abstract)
in which case

changing the

 <xsl:apply-templates/>

in the template for D to

 <xsl:apply-templates select="AB,BB"/>

might do what you want.

Your input seems to have been corrupted by over-agressive commenting

the subtitle was presumably supposed to be
It's Time for a Rethink

but your input is

It<!-- &rsquo; -->s Time for a Rethink

which results in

 Its Time for a Rethink

that is, a classic spelling error.

Similarly

"1 year"

is marked as  1<!-- &nbsp; -->year 

so results in  1year with no word space.

Please let me know how to move these two tags into desired locations.
Remember XSLT works with a tree of nodes, it has no access to the tags
in the original document.

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. 
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

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