[
Lists Home |
Date Index |
Thread Index
]
- From: Chris Lovett <clovett@microsoft.com>
- To: 'Richard Tobin' <richard@cogsci.ed.ac.uk>, xml-dev@ic.ac.uk
- Date: Fri, 9 Apr 1999 12:13:48 -0700
You need to delcare the namespace
<!DOCTYPE test [
<!ELEMENT test (foo:bar)>
<!ELEMENT foo:bar ANY>
<!ATTLIST foo:bar xmlns:foo CDATA #FIXED "..." >
]>
<test><foo:bar xmlns:foo="...">123</foo:bar></test>
-----Original Message-----
From: Richard Tobin [mailto:richard@cogsci.ed.ac.uk]
Sent: Friday, April 09, 1999 6:59 AM
To: xml-dev@ic.ac.uk
Subject: problem with IE5
Betty Harvey sent me mail about a document which was accepted by RXP
but rejected by IE5. Here is a small example which shows the problem:
<?xml version="1.0"?>
<!DOCTYPE test [
<!ELEMENT test ANY>
<!ELEMENT foo:bar ANY>
]>
<test/>
It produces this error in IE5:
Reference to undeclared namespace prefix: 'foo'. Line 6, Position 1
It doesn't make any difference if I put a namespace declaration for
foo on the test element.
It looks as if IE5 somehow expects namespace prefixes in the DTD to be
declared. Can anyone explain this?
-- Richard
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN
981-02-3594-1
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following
message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
|