Changeset 39 for trunk/src/helpers/xmldefs.c
- Timestamp:
- Feb 23, 2001, 7:50:07 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/xmldefs.c
r38 r39 700 700 * -- A "list" is defined as an enumeration of content particles, 701 701 * enclosed in parentheses, where the content particles are 702 * separated by list separators.703 * 704 * There are two types of list separators:702 * separated by "connectors". 703 * 704 * There are two types of "connectors": 705 705 * 706 706 * -- Commas (",") indicate that the elements must appear … … 710 710 * occur alternatively ("choice"). 711 711 * 712 * The list separators cannot be mixed; the list must be712 * The connectors cannot be mixed; the list must be 713 713 * either completely "sequence" or "choice". 714 714 * … … 743 743 * 744 744 * Now, a nested example: 745 * 746 + <!ELEMENT poem (title?, (stanza+ | couplet+ | line+) ) > 747 * 748 * That is, a poem consists of an optional title, followed by one or 749 * several stanzas, or one or several couplets, or one or several lines. 750 * This is different from: 751 * 752 + <!ELEMENT poem (title?, (stanza | couplet | line)+ ) > 753 * 754 * The latter allows for a single poem to contain a mixture of stanzas, 755 * couplets or lines. 756 * 757 * And for WarpIN: 745 758 * 746 759 + <!ELEMENT WARPIN (REXX*, VARPROMPT*, MSG?, TITLE?, (GROUP | PCK)+), PAGE+) >
Note:
See TracChangeset
for help on using the changeset viewer.