Joerg Heinicke dijo:
>> In that way we must to use:
>>
>> <script type="text/javascript" language="JavaScript">
>>   alert(&apos;&amp;Aacute;&apos;);
>> </script>
>
> No, this is wrong. You have all the characters now double escaped. Try
> to view this in your browser: you will definitely don't get back the
> expected �. The original "alert('&Aacute;');" was correct from an XML POV.

Yep. I was over escaping. I already did a test and and this works as
expected:

<html>
<body>
<script type="text/javascript" language="JavaScript">
  alert('&#193;');
</script>
</body></html>

also alert('�'); works too.

sitemap:

<map:match pattern="*.test">
  <map:generate type="file" src="{1}.xml"/>
  <map:serialize type="html"/>
</map:match>

Best Regards,

Antonio Gallardo.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to