Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: Entity references in xml output

From: Zsolt Czinkos <czinkos@----------->
To:
Date: 3/2/2000 7:23:00 PM
Kay Michael wrote:
> 
> > <xsl:text disable-output-escaping="yes"> &amp;eacute; </sxl:text>
> >
> > But I have not found yet any implementation supporting that!!!
> 
> Saxon supports disable-output-escaping. It is a hack; but it is also the
> only way of inserting entity references (or certain other things) in the
> output file. I don't really approve of doing that for individual characters,
> but for mroe substantial things it can be useful.
> 
> Mike Kay

Hello,

My letter wasn't clear enough, I think. I would like to do the
following:

1. From source:

<?xml version="1.0"?>
<!DOCTYPE articles [
	<!ENTITY % characters SYSTEM "entities/chars.ent">
	%characters;
]>
<articles date="2000-02-22">
<article>
	<title>Blah blah blah &eacute; bla &odblac; ...</title>
	<body>Blah again and again and &bdquo; &myentity;</body>
</article>
</articles>

2. With an XSLT transformation

3. get the following :

<?xml version="1.0"?>
<!DOCTYPE daily [
	<!ENTITY % characters SYSTEM "entities/chars.ent">
	%characters;
]>
<daily date="2000-02-22">
<article2>
	<title2>Blah blah blah &eacute; bla &odblac; ...</title2>
	<body2>Blah again and again and &bdquo; &myentity;</body2>
</article2>
</daily>


So, I'd like to have entities in output.
------------------------------

When I use the <xsl:output method="html"/> then some entities are good
some are not. But I want to use the xml output.

Is there a way to solve this without declaring entities like <!ENTITY
eacute "&eacute;">?

I think <xsl:text disable-output-escaping> isn't the solution, because
I'd need something like:
<xsl:text><xsl:apply-templates/></xsl:text>, which isn
't correct.

Regards,

zsolt


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


transparent
Print
Mail
Digg
delicious
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent