Attribute Question

James Tauber jtauber at jtauber.com
Wed Aug 26 23:55:20 BST 1998


-----Original Message-----
From: Frank Blau <fblau at nina.snohomish.wa.gov>


>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?

No.

>Do subelements inherit the attributes of the parent element?

Not as far as the processor is concerned, although an application might
behave this way.

Common practice is to declare a parameter entity representing that part of
an ATTLIST declaration you want to use globally and then reference that
parameter entity in a separate ATTLIST declaration for each element.

For example:

<!ENTITY % global.atts 'format CDATA #REQUIRED usage CDATA #REQUIRED loop
CDATA #implied'>

<!ATTLIST element1 %global.atts; >
...
<!ATTLIST element2 %global.atts; >
...
<!ATTLIST element3
    <!-- element3 specific atts here -->
    %global.atts; >

James
--
James Tauber / jtauber at jtauber.com      http://www.jtauber.com/
Lecturer and Associate Researcher
Electronic Commerce Network             ( http://www.xmlinfo.com/
Curtin Business School                  ( http://www.xmlsoftware.com/
Perth, Western Australia                ( http://www.schema.net/



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