Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: [xsl] Validation XSLT using XSLT 1.0

From: Michael Ludwig <mlu@------------->
To:
Date: 7/3/2008 9:41:00 AM
Michael Kay schrieb:
Does anyone know of a tool that parses an XML document and
outputs it as ASCII replacing characters with named entities
instead of numeric entites? Named entites you'd probably have
to supply yourself?

You can do that in XSLT 2.0 with an identity transformation,
serializing the result using character maps.

Thanks! This works great for me, and it'll also work for Ganesh to solve
the second problem in his original post to this thread if he upgrades to
XSLT 2.0.

<?xml version="1.0" encoding="UTF-8"?>
<xsl:transform version="2.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output use-character-maps="Zeichen"/>
  <xsl:character-map name="Zeichen" use-character-maps="Umlaute-und-_">
    <xsl:output-character character="&#160;" string="&amp;nbsp;"/>
  </xsl:character-map>
  <xsl:character-map name="Umlaute-und-_">
    <xsl:output-character character="&#196;" string="&amp;Auml;"/><!--D-->
    <xsl:output-character character="&#214;" string="&amp;Ouml;"/><!--V-->
    <xsl:output-character character="&#220;" string="&amp;Uuml;"/><!--\-->
    <xsl:output-character character="&#223;" string="&amp;szlig;"/><!--_-->
    <xsl:output-character character="&#228;" string="&amp;auml;"/><!--d-->
    <xsl:output-character character="&#246;" string="&amp;ouml;"/><!--v-->
    <xsl:output-character character="&#252;" string="&amp;uuml;"/><!--|-->
  </xsl:character-map>
  <xsl:template match="@*|node()">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
  </xsl:template>
</xsl:transform>

I had my employer buy a copy of the 4th edition of your XSLT 2.0 and
XPath 2.0 reference. I used it to read up on character references and
are very pleased with both the contents and the page-number-annotated
cross-references. I haven't read more yet, but I'm sure this is as
excellent a book as many people on this list have pointed out. Thanks!

Michael Ludwig


transparent
Print
Mail
Like It
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