Attribute Question
Philippe Le Hégaret
Philippe.Le_Hegaret at sophia.inria.fr
Wed Aug 26 22:42:02 BST 1998
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 at ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo at ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)
More information about the Xml-dev
mailing list