[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: That didnt work either! RE: How to add a "less than" or

Subject: Re: That didnt work either! RE: How to add a "less than" or "grea ter than" sign?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 13 Apr 2000 21:45:06 +0100 (BST)
title attribute xml less than



<xsl:template match="/">
	&lt;<xsl:value-of select="@title"/>&gt;2000&lt;/<xsl:value-of
select="@title"/>&gt;  

This is valid, it's just a strange thing to do, unless you are trying to
describe XML elements in an HTML <pre> or something. That is
it is making some text that looks like an element markup, it 
isn't making an element. In this case however @title will be empty
I would assume it would produce the text &lt;&gt;2000&lt;/&gt;.

	<xsl:element name="{@title}">2000</xsl:element>
This would be valid if the current node had a title attribute that was
supplying the characters to make a valid XML element name.
But as this template is for the root node, there can't be any
attributes. so @title must be empty, and so this is the same as

	<xsl:element name="">2000</xsl:element>
which is an error as <>2000</> is not well formed XML.
So in this case you should get an error from the xsl system.

</xsl:template> 

David


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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.