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

RE: How to stream HTML tags included in XML using XSL

Subject: RE: How to stream HTML tags included in XML using XSL
From: "Medina, Edward" <emedina@xxxxxxx>
Date: Tue, 25 Apr 2000 14:11:55 -0400
how to stream video html
:<xsl:template match="ulink">
:  <a href="{@url}"><xsl:apply-templates/></a>
:</xsl:template>


Actually this last one, if you want to have
one style sheet an several different links 
it won't work.  

it would be 
<xsl:template match="ulink" >
<A>
<xsl:attribute name="href" >
	<xsl:value-of select="@your_attribute_here"/>
</xsl:attribute>
<xsl:apply-templates />
</A>
</xsl:template>

This way you can have several different links
in your XML and will be displayed by your
xsl.

XML

<ulink your_attribute_here="www.myhomepage.com">
HOME
</ulink>

Or

<ulink your_attribute_here="www.myhomepage.com"/>

but if you do this one don't forget to put
<xsl:apply-templates select="@your_attribute_here"/>
in your xsl.

Eddy


 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.