Is it possible NOT to replace entity references?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Stephan Hoffmann

    Is it possible NOT to replace entity references?

    Hi,

    I use XML mainly as a source for HTML. HTML browsers 'know'
    certain entity references like é or ä.

    When I use XSL to transform XML to HTML or XML, these entities are replaced
    by what they refer to.

    Is there a way to avoid that?

    Two reasons to avoid that:
    - On my linux machine xsltproc replaced the entities in a way that
    my browser did not correctly display the resulting HTML
    (I updated my linux distribution and it now works).

    - &lt; is replaced by < and the output is no longer valid XML/HTML


    I worked with the Python xml.sax module today,
    which had the same 'issue'. I can of course perform the
    inverse substitution before I write to the result document,
    but that seems like a lot of unnecessary work.

    Any hints?

    Thanks, Stephan

  • Martin Honnen

    #2
    Re: Is it possible NOT to replace entity references?



    Stephan Hoffmann wrote:

    [color=blue]
    > I use XML mainly as a source for HTML. HTML browsers 'know'
    > certain entity references like &eacute; or &auml;.
    >
    > When I use XSL to transform XML to HTML or XML, these entities are replaced
    > by what they refer to.
    >
    > Is there a way to avoid that?[/color]

    XSLT/XPath 1.0 at least which is the current version and the one
    implemented by lots of processors and in wide-spread use does not
    provide anything in its data model or in its instructions to create
    entity references and to ensure that these are preserved and not
    replaced by the entity content when the result of a transformation is
    serialized.
    You would need to look at a specific XSLT processor and check whether it
    provides any mechanisms outside the standards to deal with entity and
    entity references.
    Saxon 6 has an extension function documented here:
    <http://saxon.sourcefor ge.net/saxon6.5.4/extensions.html #saxon:entity-ref>
    [color=blue]
    > Two reasons to avoid that:
    > - On my linux machine xsltproc replaced the entities in a way that
    > my browser did not correctly display the resulting HTML
    > (I updated my linux distribution and it now works).
    >
    > - &lt; is replaced by < and the output is no longer valid XML/HTML[/color]

    But &lt; and &gt; are references to entities predefined in XML and
    certainly if any application supposed to output XML or HTML outputs &lt;
    as a plain '<' character then the application is seriously broken.
    This is a different issue, those characters '<' and '>' are obviously
    special as they delimit tags in both XML and HTML and therefore need to
    be escaped as &lt; respectively &gt;.
    &auml; in HTML 4 stands for the character 'ä' and that has no special
    meaning in XML or HTML so if an XSLT processor or other application
    supposed to output XML or HTML simply inserts 'ä' instead of &auml; in a
    document properly encoded and with the proper encoding used and declared
    then there are no problems with well-formedness (or even validity).



    --

    Martin Honnen

    Comment

    • Malcolm Dew-Jones

      #3
      Re: Is it possible NOT to replace entity references?

      Stephan Hoffmann (shh@twmi.rr.co m) wrote:
      : Hi,

      : I use XML mainly as a source for HTML. HTML browsers 'know'
      : certain entity references like &eacute; or &auml;.

      : When I use XSL to transform XML to HTML or XML, these entities are replaced
      : by what they refer to.

      : Is there a way to avoid that?

      Perhaps judicious use of the "disable-output-escaping" attribute would
      help.

      That attribute can be specified in various template tags, including <text>
      and <value-of> (perhaps others).

      It takes the value of either "yes" or "no".

      --

      This programmer available for rent.

      Comment

      • Stephan Hoffmann

        #4
        Re: Is it possible NOT to replace entity references?

        Hi,

        thanks for the detailed explanation.

        You are right, these are two 'issues', I confused them because
        the Python SAX parser I use replaces both the predefined and the not
        predefined entity references, which is ok. I simply assumed an XSLT
        processor would also replace both, but that assumption is probably wrong.

        I don't know why I prefer &auml; over 'ä', maybe because 7-bit
        ASCI seems to be more portable, but I can't really find a use case
        where 'ä' would be less portable.

        Thanks, Stephan

        Martin Honnen wrote:[color=blue]
        >
        >
        > Stephan Hoffmann wrote:
        >
        >[color=green]
        >> I use XML mainly as a source for HTML. HTML browsers 'know'
        >> certain entity references like &eacute; or &auml;.
        >>
        >> When I use XSL to transform XML to HTML or XML, these entities are
        >> replaced by what they refer to.
        >>
        >> Is there a way to avoid that?[/color]
        >
        > XSLT/XPath 1.0 at least which is the current version and the one
        > implemented by lots of processors and in wide-spread use does not
        > provide anything in its data model or in its instructions to create
        > entity references and to ensure that these are preserved and not
        > replaced by the entity content when the result of a transformation is
        > serialized.
        > You would need to look at a specific XSLT processor and check whether it
        > provides any mechanisms outside the standards to deal with entity and
        > entity references.
        > Saxon 6 has an extension function documented here:
        > <http://saxon.sourcefor ge.net/saxon6.5.4/extensions.html #saxon:entity-ref>
        >[color=green]
        >> Two reasons to avoid that:
        >> - On my linux machine xsltproc replaced the entities in a way that
        >> my browser did not correctly display the resulting HTML
        >> (I updated my linux distribution and it now works).
        >>
        >> - &lt; is replaced by < and the output is no longer valid XML/HTML[/color]
        >
        > But &lt; and &gt; are references to entities predefined in XML and
        > certainly if any application supposed to output XML or HTML outputs &lt;
        > as a plain '<' character then the application is seriously broken.
        > This is a different issue, those characters '<' and '>' are obviously
        > special as they delimit tags in both XML and HTML and therefore need to
        > be escaped as &lt; respectively &gt;.
        > &auml; in HTML 4 stands for the character 'ä' and that has no special
        > meaning in XML or HTML so if an XSLT processor or other application
        > supposed to output XML or HTML simply inserts 'ä' instead of &auml; in a
        > document properly encoded and with the proper encoding used and declared
        > then there are no problems with well-formedness (or even validity).
        >
        >
        >[/color]

        Comment

        • Richard Tobin

          #5
          Re: Is it possible NOT to replace entity references?

          In article <kM5Te.71904$2Q 3.70620@tornado .ohiordc.rr.com >,
          Stephan Hoffmann <shh@twmi.rr.co m> wrote:
          [color=blue]
          >You are right, these are two 'issues', I confused them because
          >the Python SAX parser I use replaces both the predefined and the not
          >predefined entity references, which is ok. I simply assumed an XSLT
          >processor would also replace both, but that assumption is probably wrong.[/color]

          It doesn't really make sense to contrast a parser with an XSLT
          processor.

          An XSLT processor will use a parser to read the document and
          stylesheet, and that parser must replace entity references with the
          characters they represent as it reads the files. Your problem is with
          what happens on *output*: whether the program replaces characters with
          entity references.
          [color=blue]
          >I don't know why I prefer &auml; over 'ä', maybe because 7-bit
          >ASCI seems to be more portable, but I can't really find a use case
          >where 'ä' would be less portable.[/color]

          XML parsers have to be able to handle UTF-8, so it won't be a problem
          for any XML tools. It may be a problem for other tools (or humans)
          that only understand ASCII. You can use the encoding attribute on
          xsl:output to tell the XSLT processor what output encoding to use
          (though it isn't guaranteed to support them all). If you tell it
          to use ASCII and you output a non-ascii character, it should use
          a numeric characters reference. It can't use &auml; when outputting
          XML because in general that won't be defined, so it will output
          &#228; or &#xE4;.

          -- Richard

          Comment

          • Peter Flynn

            #6
            Re: Is it possible NOT to replace entity references?

            Stephan Hoffmann wrote:
            [color=blue]
            > Hi,
            >
            > I use XML mainly as a source for HTML. HTML browsers 'know'
            > certain entity references like &eacute; or &auml;.
            >
            > When I use XSL to transform XML to HTML or XML, these entities are
            > replaced by what they refer to.
            >
            > Is there a way to avoid that?[/color]

            Not really: this is what transformation is *supposed* to do.
            Martin suggested some processors might provide facilities for
            doing this, but I haven't seen them in operation.
            [color=blue]
            > Two reasons to avoid that:
            > - On my linux machine xsltproc replaced the entities in a way that
            > my browser did not correctly display the resulting HTML
            > (I updated my linux distribution and it now works).
            >
            > - &lt; is replaced by < and the output is no longer valid XML/HTML[/color]

            The topic is covered in the FAQ at http://xml.silmaril.ie/authors/cdata/

            ///Peter


            Comment

            Working...