RE: [xsl] resolving entities

Subject: RE: [xsl] resolving entities
From: Pieter Reint Siegers Kort <pieter.siegers@xxxxxxxxxxx>
Date: Fri, 23 Jul 2004 09:30:29 -0500
Hi Rui,

You forgot to use

<xsl:output method="html" indent="yes" omit-xml-declaration="yes" />

The output method must be 'html' to let the '&amp;' appear as '&' in the
output.

Cheers,
<prs/>

-----Original Message-----
From: Rui Alberto L." Gongalves [mailto:rui-l-goncalves@xxxxxxxxxxxxx]
Sent: Friday, July 23, 2004 8:56 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] resolving entities

Here's a simple test case:
XML:
<root></root>

XSL:
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
 version="1.0">

 <xsl:template match="root">
 <script>
  <xsl:text>
HM_Array1=[[,sp,ep],["Chamadas","main-switch?folder=/mart/chamadas&amp;repor
t_id=chamadas",1,0,0]]
    </xsl:text>
  </script>
</xsl:template>
</xsl:stylesheet>

This will output:
<?xml version="1.0"?>
<script>
HM_A... folder=/mart/chamadas&amp;report_id=chamadas",1,0,0]]
</script>

and I need:
<?xml version="1.0"?>
<script>
HM_A... folder=/mart/chamadas&report_id=chamadas",1,0,0]]
</script>

Thanks again.

Rui

On Fri, 2004-07-23 at 14:21, xptm@xxxxxxx wrote:
> That is too litle information you give. Try to show us the xml and the
> xsl you're using...
>
> Cumprimentos.
>
>
> Quoting "Rui Alberto L. Gongalves" <rui-l-goncalves@xxxxxxxxxxxxx>:
>
> > Hi all,
> > I'm trying to produce some JavaScript using xsl, buit I'm having
> > problem with & entity.
> >
> > I need to produce something like:
> >
> HM_Array1=[[,sp,ep],["Chamadas","main-switch?folder=/mart/chamadas&rep
> ort_id=chamadas",1,0,0]]
> >
> > The problem is the request parameters passed are:
> >  folder=/mart/chamadas (and is Ok)
> >  amp;report_id=chamadas (not ok. I need to passe report_id=chamadas.
> >
> > Is that possible tell in the stylesheet to resolve entities?
> >
> > Thanks for any help.
> >
> > Rui
> > --
> > Rui Alberto L. Gongalves <rui-l-goncalves@xxxxxxxxxxxxx> PT Inovagco
> >
> >
>
>
>
>
>
>
>
> O SAPO ja esta livre de vmrus com a Panda Software, fique vocj tambim!
> Clique em: http://antivirus.sapo.pt
--
Rui Alberto L. Gongalves <rui-l-goncalves@xxxxxxxxxxxxx>
PT Inovagco

Current Thread