[
Lists Home |
Date Index |
Thread Index
]
- From: "Philippe Le Hégaret" <Philippe.Le_Hegaret@sophia.inria.fr>
- To: XML <xml-dev@ic.ac.uk>
- Date: Wed, 26 Aug 1998 22:41:44 +0200
Frank Blau wrote:
>
> If I have 3 attributes ("Format", "Usage", and "Loop") that I want every
> element in my DTD to have, is there a way to globally declare them? Do
> subelements inherit the attributes of the parent element?
No, there is no way to do this with XML.
One solution is to use entities :
<!ENTITY % globalAttributes
"id ID #IMPLIED">
<!ELEMENT A #PCDATA>
<!ATTLIST A
name CDATA #REQUIRED
%globalAttributes;
>
<!ELEMENT LIST (ITEM)+>
<!ATTLIST LIST
type (ol|ul) #FIXED "ul"
%globalAttributes;
>
Regards,
Philippe.
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/
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)
|