xsl-list
[Top] [All Lists]

RE: Extracting link information from xml document and displaying it in browser as hyperlink

2003-06-10 04:55:36


-----Original Message-----
From: bmcleere(_at_)eircom(_dot_)net [mailto:bmcleere(_at_)eircom(_dot_)net]
Hi,

I have an xml document with a <location> tag amongst others e.g.

 <location> http://someserver.ie</location>. 
 
 I want to retrieve the URL information and display it as a 
 hyperlink in the browser.
 
 Currently, I can view the URL information but it is not a hyperlink. 
 
 I thought of using the following:-
 <xsl:template match="technical/location">
 <a href="http://{(_at_)link}"><xsl:value-of select="."/></a>
 </xsl:template>

a few things,

- where is your @link attribute ? I only see a location element, also u have 
location already matched e.g. should work;
 
<a href="{.}"><xsl:value-of select="."/></a>

i have written it again, xplicitly calling the location element

<a href="{location}"><xsl:value-of select="location"/></a>


- btw prefixing an http:// to your location would result in 
http://http://someserver.ie , so unless thats a typo that would cause your 
problem with the double http prefix

gl, jim fuller

This e-mail and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are addressed. If 
you are not the intended recipient please contact the sender immediately. Any 
disclosure, copying, distribution or any other use of this communication is 
strictly prohibitedand may be unlawful. Stuart Lawrence Marketing 
Communications Limited reserves the right to monitor and intercept 
communications for unlawful business purposes.

This also confirms that this message has been swept for viruses, although 
Stuart Lawrence Marketing Communications Limited accepts no responsibility for 
any loss or damage resulting directly or indirectly from the use of this email 
or contents.

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