xsl-list
[Top] [All Lists]

RE: resolving entities

2004-07-23 07:30:29
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." Gonçalves 
[mailto:rui-l-goncalves(_at_)ptinovacao(_dot_)pt] 
Sent: Friday, July 23, 2004 8:56 AM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
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(_at_)sapo(_dot_)pt 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. Gonçalves" <rui-l-goncalves(_at_)ptinovacao(_dot_)pt>:

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. Gonçalves <rui-l-goncalves(_at_)ptinovacao(_dot_)pt> PT 
Inovação


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









O SAPO já está livre de vírus com a Panda Software, fique você também!
Clique em: http://antivirus.sapo.pt
-- 
Rui Alberto L. Gonçalves <rui-l-goncalves(_at_)ptinovacao(_dot_)pt>
PT Inovação


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