Ignore:
Timestamp:
Feb 23, 2001, 7:50:07 AM (24 years ago)
Author:
umoeller
Message:

Misc. fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/xmldefs.c

    r38 r39  
    700700 *      --  A "list" is defined as an enumeration of content particles,
    701701 *          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":
    705705 *
    706706 *      --  Commas (",") indicate that the elements must appear
     
    710710 *          occur alternatively ("choice").
    711711 *
    712  *      The list separators cannot be mixed; the list must be
     712 *      The connectors cannot be mixed; the list must be
    713713 *      either completely "sequence" or "choice".
    714714 *
     
    743743 *
    744744 *      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:
    745758 *
    746759 +          <!ELEMENT WARPIN (REXX*, VARPROMPT*, MSG?, TITLE?, (GROUP | PCK)+), PAGE+) >
Note: See TracChangeset for help on using the changeset viewer.