[
Lists Home |
Date Index |
Thread Index
]
- From: "Rick Jelliffe" <ricko@allette.com.au>
- To: "XML Developers' List" <xml-dev@ic.ac.uk>
- Date: Wed, 22 Sep 1999 14:51:54 +0800
I forgot another option.
Make one generator-side DTD for data entry
<!ELEMENT affiliate ( a_operations, ...)>
<!ELEMENT mechant (m_operations, ...)>
<!ELEMENT a_operations (get, set)>
<!ELEMENT m_operations ( signup )>
Then transform this for data distribution:
<!ELEMENT affiliate ( operations, ...)>
<!ELEMENT mechant ( operations, ...)>
<!ELEMENT operations (signup | (get, set))>
The first gives you strong typing for describing the schema
and the second allows simpler generic operations for using
the data (which is presumably why you want to reuse
the name "operations".)
Rick Jelliffe
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)
|