authors.dtd: Update

This commit is contained in:
Martin Nordholts 2011-01-28 07:55:55 +01:00
parent 6463d2a8c5
commit 9793ecc7fb
1 changed files with 5 additions and 1 deletions

View File

@ -1,12 +1,16 @@
<!-- simple DTD for GIMP authors --> <!-- simple DTD for GIMP authors -->
<!ELEMENT gimp-authors (creator+, contributor+)> <!ELEMENT gimp-authors (creator+, maintainer+, contributor+)>
<!ATTLIST gimp-authors xmlns CDATA #FIXED "http://purl.org/dc/elements/1.1/"> <!ATTLIST gimp-authors xmlns CDATA #FIXED "http://purl.org/dc/elements/1.1/">
<!ELEMENT creator (#PCDATA)> <!ELEMENT creator (#PCDATA)>
<!ATTLIST creator role CDATA #REQUIRED> <!ATTLIST creator role CDATA #REQUIRED>
<!ATTLIST creator last-active CDATA #REQUIRED> <!ATTLIST creator last-active CDATA #REQUIRED>
<!ELEMENT maintainer (#PCDATA)>
<!ATTLIST maintainer role CDATA #REQUIRED>
<!ATTLIST maintainer last-active CDATA #REQUIRED>
<!ELEMENT contributor (#PCDATA)> <!ELEMENT contributor (#PCDATA)>
<!ATTLIST contributor role CDATA #REQUIRED> <!ATTLIST contributor role CDATA #REQUIRED>
<!ATTLIST contributor last-active CDATA #REQUIRED> <!ATTLIST contributor last-active CDATA #REQUIRED>