473,387 Members | 1,476 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

xmlns in XHTML

Hello All,

I am using Norman Walsh's XSLTs to transform some DocBook XML content
to HTML.

However I noticed that Norman Walsh's DocBook XSLT includes the
following
tag in the transformed document:
<meta xmlns="http://www.w3.org/1999/xhtml" ......

I think the XML Namespace can only be declared in <html/> tag for
e.g.:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
is the correct way to declare the namespace.

<meta xmlns="http://www.w3.org/1999/xhtml" ...... is what Norman
Walsh's
XSLT produced, which I think is incorrect. I might be wrong.

Before I submit a bug-report to OASIS, I just to make sure that I m
not missing something. Let me know if I am wrong about xmlns
declaration.

Here are some sample documents transformed from DocBook XML to HTML
using Norman's XSLTs: http://www.xml-dev.com/blog/#88

Thanks.
Saqib Ali
-------------
http://validate.sf.net <---- (X)HTML / DocBook XML Validator and
Transformer
Jul 20 '05 #1
10 2125
On 5 May 2004 10:39:31 -0700, sa***@stonebeat.org (Saqib Ali) wrote:
Before I submit a bug-report to OASIS, I just to make sure that I m
not missing something.
Here's a clue - Norman Walsh _really_ knows what he's doing. Many,
many people have also used those stylesheets over and over. I'm not
saying there are no bugs left, but obvious ones get found quickly.
Let me know if I am wrong about xmlns
declaration.


Yes.

Jul 20 '05 #2
> >Let me know if I am wrong about xmlns
declaration.


Yes.


Can you please be more specific as to where in the XHTML DTD it allows
the xmlns attribute to be in the <META /> TAG ???

I was looking at the XHTML DTD @ http://www.w3.org/TR/xhtml1/#dtds it
seems like xmlns attribute is only allowed in the <html /> TAG.

Can you please point me to the exact location in the DTD, which allows
xmlns attribute to be in the <meta /> tag.

Thanks.
In Peace,
Saqib Ali
http://validate.sf.net
Jul 20 '05 #3
"Saqib Ali" <sa***@stonebeat.org> wrote in message news:d2**************************@posting.google.c om...
Can you please be more specific as to where in the XHTML DTD it allows
the xmlns attribute to be in the <META /> TAG ???
I was looking at the XHTML DTD @ http://www.w3.org/TR/xhtml1/#dtds it
seems like xmlns attribute is only allowed in the <html /> TAG.


Observe that the xmlns attribute on the html tag is FIXED. The inference
drawn from this is that all the child elements defined by the DTD must
belong to the same namespace URI, and no others.

The "XML with Namespaces" recommendation (on which XHTML
is based) was created to address this limitation. Inherent in this
recommendation is the freedom to declare namespaces anyplace.

The relationship between XHTML and other namespaces is described
in section 3.1.2 of the XHTML 1.0 recommendation,

http://www.w3.org/TR/2000/REC-xhtml1...6/#well-formed

If you must validate against a DTD, since DTDs are incapable of
supporting namespaces, then the XHTML produced by the Doc-
Book XSLT is not strictly conforming. This is due to a known
limitation of the DTD, rather than incongrueity with the XHTML
recommendation.

XHTML 1.1 includes informative XML Schemas, that accomodate
the broader use of XML namespace declarations.
Derek Harmon
Jul 20 '05 #4
sa***@stonebeat.org (Saqib Ali) wrote in message
Can you please point me to the exact location in the DTD, which allows
xmlns attribute to be in the <meta /> tag.


It's not in the DTD - xmlns is "magic" (it's part of XML, not XHTML),
so look at the XML TR instead
http://www.w3.org/TR/2004/REC-xml11-20040204/

or more specifically, at the TR for namespacing in XML
http://www.w3.org/TR/2004/REC-xml-na...40204/#ns-decl
Jul 20 '05 #5
In article <d2**************************@posting.google.com >,
Saqib Ali <sa***@stonebeat.org> wrote:
<meta xmlns="http://www.w3.org/1999/xhtml" ...... is what Norman
Walsh's XSLT produced, which I think is incorrect. I might be wrong.


DTDs and namespaces don't work very well together, so it may well be
invalid according to the DTD, and you may just want to ignore that
fact.

Furthermore there may be some variation between XSLT processors as to
what xmlns declarations they output, so it's very hard to guarantee
output that matches a DTD.

However, looking at one of your examples, I'm baffled. The top-level
<html> element doesn't have an xmlns attribute. The #FIXED
declaration in the DTD will give it one when it's read back in again,
but the XSLT processor that generated it didn't know that. In fact,
it looks as if none of the XSLT output except the meta element was in
the XHTML namespace, and that's why it put the xmlns attribute on
the meta element.

The first thing I'd do is try using a different XSLT processor.
Then ask Norm.

-- Richard

Jul 20 '05 #6
> The "XML with Namespaces" recommendation (on which XHTML
is based) was created to address this limitation. Inherent in this
recommendation is the freedom to declare namespaces anyplace.

The relationship between XHTML and other namespaces is described
in section 3.1.2 of the XHTML 1.0 recommendation,

http://www.w3.org/TR/2000/REC-xhtml1...6/#well-formed


Derek,
Thank you very much. This is exactly what I was looking for. :)

In Peace,
Saqib Ali
http://validate.sf.net
Jul 20 '05 #7
In article <c7************@id-185805.news.uni-berlin.de>,
"Derek Harmon" <lo*******@email.msn.com> writes:
"Saqib Ali" <sa***@stonebeat.org> wrote in message news:d2**************************@posting.google.c om...
Can you please be more specific as to where in the XHTML DTD it allows
the xmlns attribute to be in the <META /> TAG ???
I was looking at the XHTML DTD @ http://www.w3.org/TR/xhtml1/#dtds it
seems like xmlns attribute is only allowed in the <html /> TAG.

You may be talking at cross-purposes. XML namespace rules and DTD
validation rules are different beasts. XHTML, and particularly XHTML1.0,
applies the latter. So <meta xmlns... /> is fine by XML rules but
invalid by XHTML rules.

As for whether the stylesheets are in error - I'd have to spend more
time than I have now to determine whether the error lies there or in
the user. But in reply to Andy's point, Norman Walsh may know what
he's doing, but Saqib in no ignorant newbie either.
Observe that the xmlns attribute on the html tag is FIXED. The inference
drawn from this is that all the child elements defined by the DTD must
belong to the same namespace URI, and no others.
What FIXED means is that it's implied in the <html> element even when
an author omits it. It doesn't prevent use of other default namespaces
through an xmlns attribute on a child element.
The "XML with Namespaces" recommendation (on which XHTML
is based) was created to address this limitation. Inherent in this
recommendation is the freedom to declare namespaces anyplace.

The relationship between XHTML and other namespaces is described
in section 3.1.2 of the XHTML 1.0 recommendation,

http://www.w3.org/TR/2000/REC-xhtml1...6/#well-formed
This is a case of design by committee pulling in different and
mutually incompatible directions. The only way this actually works
is by defining new DTDs (such as XHTML+MATHML+SVG). Or by dropping
both validation and browser-compatibility.
If you must validate against a DTD, since DTDs are incapable of
supporting namespaces,
Not strictly true, but we'll skip over that.
then the XHTML produced by the Doc-
Book XSLT is not strictly conforming.
Neither is it valid if it generates xmlns declarations in the manner
described here.
XHTML 1.1 includes informative XML Schemas, that accomodate
the broader use of XML namespace declarations.


XHTML 1.1 is a true exercise in futility. It gratuitously breaks
browser-compatibility, but offers nothing in return, beyond what
ad-hoc-XML gives us for free in terms of availability of processing
tools.

Conclusion: XML and HTML each has advantages. But mixing them
requires attention to detail that is often missing.

--
Nick Kew

Nick's manifesto: http://www.htmlhelp.com/~nick/
Jul 20 '05 #8
In article <65************@webthing.com>,
Nick Kew <ni**@hugin.webthing.com> wrote:
What FIXED means is that it's implied in the <html> element even when
an author omits it.


*And* that the author may not supply any other value, unlike a plain default.

-- Richard
Jul 20 '05 #9
In article <28**************************@posting.google.com >,
Andy Dingley <di*****@codesmiths.com> wrote:
% sa***@stonebeat.org (Saqib Ali) wrote in message
%
% > Can you please point me to the exact location in the DTD, which allows
% > xmlns attribute to be in the <meta /> tag.
%
% It's not in the DTD - xmlns is "magic" (it's part of XML, not XHTML),
% so look at the XML TR instead

It's magic, but if you want to validate against a DTD, you've got to
include the xmlns* attributes, as well as having the prefix consistent
between the instance and the DTD.
--

Patrick TJ McPhee
East York Canada
pt**@interlog.com
Jul 20 '05 #10
pt**@interlog.com (Patrick TJ McPhee) wrote in message news:<c7**********@news.eusc.inter.net>...
It's magic, but if you want to validate against a DTD, you've got to
include the xmlns* attributes, as well as having the prefix consistent
between the instance and the DTD.


Are there any well-known validators that work correctly for XHTML with
embedded elements from other namesapces ?

Is there even as yet an agreed notion of what "correct" means in this
case ? I know there's a certain lack of clarity(sic) in how close
XHTML is to being "vanilla" XML (for reasons of HTML legacyness). It's
easy to treat XHTML + (X-foo) as an XML document and validate it as
such, but a lot harder to take a "post HTML, App C aware" tool and
persuade it that your document is valid.
Jul 20 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Peter Maas | last post by:
Hi, I have a problem parsing html text with xmldom. The following code runs well: -------------------------------------------- from xml.dom.ext.reader import HtmlLib from xml.dom.ext import...
10
by: Saqib Ali | last post by:
Hello All, I am using Norman Walsh's XSLTs to transform some DocBook XML content to HTML. However I noticed that Norman Walsh's DocBook XSLT includes the following tag in the transformed...
2
by: Jon Thackray | last post by:
I'm trying to use the MathML DTD and stylesheets, but get some problems with xmlns attributes. If I do something like <math xmlns="http://..."> .... </math> then xmllint and xalan in...
4
by: David S. Alexander | last post by:
I am trying to transform XML to XML using an XSLT in C#, but the root node of my XML is not being matched by the XSLT if it has an xmlns attribute. Am I handling my namespaces incorrectly? My C#...
3
by: Gary Stephenson | last post by:
I am endeavouring to use .NET v2.0 XML facilities to "roundtrip" reading and writing XML documents - i.e. to end up with _exactly_ what I started with, but I can't seem to figure out how to get an...
4
by: clover2411 | last post by:
Hi there, Apologies if I'm posting to the wrong group; this one looked to be the best match. I'm having trouble writing a bit of XSL/XPATH and wondered if someone would please shed some...
2
by: aglaforge | last post by:
I'm attempting to write a quick piece of Javascript code that will validate if the end user of the javascript has the necessary VML attributes set in their HTML. The problem in IE is that...
1
by: C.W.Holeman II | last post by:
I have an xmlns attribute that produces an XHTML validation error and I do not understand why it is considered an error.The file displays as expected on Firefox and IE7. ...
2
by: cakebread | last post by:
I'm having problems parsing a file: <body>Hello world</body> </html>""") None The above works fine with the first element being a simple <html>, but not when I have all the xmlns's.
6
Dormilich
by: Dormilich | last post by:
Hi, I have some problems removing the xmlns attributes from a transformed xml file. I can't completely remove them (so it would validate). the problematic elements are <div> or the elements...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.