xsl-list
[Top] [All Lists]

Re: XSL & Entities

2005-03-01 17:22:05
My bad the entity is described with NDATA.  So it
looks like: 
<!ENTITY CorporateLogo SYSTEM
"images/corporateLogo.gif" NDATA saetiff>

And I just tried using the xsl tag that you mentioned
but its returning a null string.

Please help.

Thanks,
Chris


--- David Carlisle <davidc(_at_)nag(_dot_)co(_dot_)uk> wrote:



<?xml version='1.0' encoding='UTF-8' ?>
<!ENTITY CorporateLogo SYSTEM
"images\corporateLogo.gif">


That's declared the entity to be a general parsed
entity (is that really
how it was in the sgml?

If you can edit your ent file to declare these as
unparsed entities (as
they are not xml this would be more correct anyway) 

<?xml version='1.0' encoding='UTF-8' ?>
<!ENTITY CorporateLogo SYSTEM
"images/corporateLogo.gif"
NDATA gif>
^^^^^^^^^^

then you could use

<xsl:value-of
select="unparsed-entity-uri(@imagename)"/>

David


________________________________________________________________________
This e-mail has been scanned for all viruses by
Star. The
service is powered by MessageLabs. For more
information on a proactive
anti-virus service working around the clock, around
the globe, visit:
http://www.star.net.uk

________________________________________________________________________


--~------------------------------------------------------------------
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>
--~--




__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--~------------------------------------------------------------------
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>