xsl-list
[Top] [All Lists]

[xsl] Saxon 8B returns profile and version attributes from XHTML 1.1

2006-10-23 02:40:39
Hi list

When I use Saxon 8B to return attributes and their values from XHTML
documents, something strange happens.

If the document is XHTML 1.0 Strict! the attributes returned are correct,
but when the document is XHTML 1.1, a strange empty "profile" attribute is
also returned. Such a "profile" attribute does not exist in XHTML. Also a
"version" attribute is returned ... there is no such thing in XHTML.

XSLT, input and output documents are shown below:
 
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
    xmlns="http://www.w3.org/1999/xhtml";
xmlns:xhtml="http://www.w3.org/1999/xhtml"; version="2.0"
    exclude-result-prefixes="xhtml">
    <xsl:output indent="yes"/>
    <xsl:template match="/">
        <html>
            <head>
                <title>Strange attributes</title>
            </head>
            <body>
                <xsl:for-each select="//@*">
                    <p>
                        <xsl:value-of select="name()"/>
                        <xsl:text>: "</xsl:text>
                        <xsl:value-of select="."/>
                        <xsl:text>"</xsl:text>
                    </p>
                </xsl:for-each>
            </body>
        </html>
    </xsl:template>
</xsl:stylesheet>


Input document:

<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
                      "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd";>
<html xmlns="http://www.w3.org/1999/xhtml";>
    <head>
        <title/>
    </head>
    <body class="yes">
        <p>asdf</p>
    </body>
</html>


Output document:

<p>version: "-//W3C//DTD XHTML 1.1//EN"</p>
<p>profile: ""</p>
<p>class: "yes"</p>


Best regards,

Jesper Tverskov
http://www.xmltraining.biz






--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>