Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.tools -> Problem with Oracle XLS processor

Problem with Oracle XLS processor

From: Stefano Bertini <stefano.bertini_at_plangroup.it>
Date: 2000/07/14
Message-ID: <005b01bfed63$e9931920$363014c2@plan.it>#1/1

Hi...

I have a problem using Oracle XLS processor (version 2.0.2.8)...

Wherever I use the &amp; and &lt; escapes, the processor always transforms them in &#38; or in &#60;

I can write something like:

<xsl:template match="/">
  <html>
    <body>

<P>1) I want a normal amp &amp;</P>
<P><xsl:text disable-output-escaping="yes">2) I want a normal amp
&amp;</xsl:text></P>

<P>3) I want a less than &lt;</P>
<P><xsl:text disable-output-escaping="yes">4) I want a less than
&lt;</xsl:text></P>

    </body>
  </html>
</xsl:template>

but I always get this...

<html>

   <body>
      <P>1) I want a normal amp &#38;</P>
      <P>2) I want a normal amp &#38;</P>
      <P>3) I want a less than &#60;</P>
      <P>4) I want a less than &#60;</P>
   </body>
</html>

can anyone help me ???

Thanks...

--
Posted from [195.36.13.149] 
via Mailgate.ORG Server - http://www.Mailgate.ORG
Received on Fri Jul 14 2000 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US