xsl-list
[Top] [All Lists]

Re: XSL & Entities

2005-03-01 17:08:36


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



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