[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Saxon 8B returns profile and version attributes from

Subject: Saxon 8B returns profile and version attributes from XHTML 1.1
From: "Jesper Tverskov" <jesper@xxxxxxxxxxx>
Date: Mon, 23 Oct 2006 11:40:19 +0200
 Saxon 8B returns profile and version attributes from
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

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.