File: attributes.dtd

package info (click to toggle)
php-xml-dtd 0.5.2%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 268 kB
  • sloc: xml: 684; php: 416; makefile: 5
file content (20 lines) | stat: -rw-r--r-- 650 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!ELEMENT foo (string|enum)+>
<!ELEMENT string EMPTY>
<!ELEMENT enum EMPTY>
<!ATTLIST string
        att1   CDATA    #IMPLIED
        att2   CDATA    #REQUIRED
        att3   CDATA    #FIXED "POST"
        att4   CDATA    "mydefault">
<!ATTLIST enum
        en1   (bullets|ordered|glossary)  "ordered"
        en2   (pkg|ext|php|prog|ldlib)    #REQUIRED
        en3   (has|eq|lt|le|gt|ge)        #IMPLIED>
<!ATTLIST unsupported
        att1   ID       #IMPLIED
        att2   IDREF    #IMPLIED
        att3   IDREFS   #IMPLIED
        att4   NMTOKEN  #IMPLIED
        att5   NMTOKENS #IMPLIED>
<!ATTLIST notdeclared
        not    CDATA    #IMPLIED>