Subject: Re: XSL & Entities
From: c p <bugs75il@xxxxxxxxx>
Date: Tue, 1 Mar 2005 16:22:05 -0800 (PST)
|
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@xxxxxxxxx> 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
>
________________________________________________________________________
>
>
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
|