1
|
<!--
|
2
|
'$RCSfile$'
|
3
|
Copyright: 2000 Regents of the University of California and the
|
4
|
National Center for Ecological Analysis and Synthesis
|
5
|
For Details: http://knb.ecoinformatics.org/
|
6
|
|
7
|
'$Author: berkley $'
|
8
|
'$Date: 2001-07-25 08:57:31 -0700 (Wed, 25 Jul 2001) $'
|
9
|
'$Revision: 808 $'
|
10
|
|
11
|
This program is free software; you can redistribute it and/or modify
|
12
|
it under the terms of the GNU General Public License as published by
|
13
|
the Free Software Foundation; either version 2 of the License, or
|
14
|
(at your option) any later version.
|
15
|
|
16
|
This program is distributed in the hope that it will be useful,
|
17
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
18
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
19
|
GNU General Public License for more details.
|
20
|
|
21
|
You should have received a copy of the GNU General Public License
|
22
|
along with this program; if not, write to the Free Software
|
23
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
24
|
-->
|
25
|
|
26
|
<!ELEMENT individualName (salutation*, givenName*, surName)>
|
27
|
<!ELEMENT salutation (#PCDATA)>
|
28
|
<!ELEMENT givenName (#PCDATA)>
|
29
|
<!ELEMENT surName (#PCDATA)>
|
30
|
|
31
|
<!ELEMENT organizationName (#PCDATA)>
|
32
|
<!ELEMENT positionName (#PCDATA)>
|
33
|
|
34
|
<!ELEMENT address (deliveryPoint*, city?, administrativeArea?,
|
35
|
postalCode?, country?)>
|
36
|
<!ELEMENT deliveryPoint (#PCDATA)>
|
37
|
<!ELEMENT city (#PCDATA)>
|
38
|
<!ELEMENT administrativeArea (#PCDATA)>
|
39
|
<!ELEMENT postalCode (#PCDATA)>
|
40
|
<!ELEMENT country (#PCDATA)>
|
41
|
|
42
|
<!ELEMENT phone (#PCDATA)>
|
43
|
<!ATTLIST phone phonetype CDATA "voice">
|
44
|
<!ELEMENT electronicMailAddress (#PCDATA)>
|
45
|
<!ELEMENT onlineLink (#PCDATA)>
|
46
|
|
47
|
<!-- Note that the domain for role is not expressed in the DTD -->
|
48
|
<!ELEMENT role (#PCDATA)>
|
49
|
|
50
|
<!-- common fields -->
|
51
|
<!ELEMENT identifier (#PCDATA)>
|
52
|
<!ATTLIST identifier system CDATA "">
|
53
|
<!ELEMENT shortName (#PCDATA)>
|
54
|
<!ELEMENT title (#PCDATA)>
|
55
|
<!ELEMENT originator ((individualName|organizationName|positionName)+,
|
56
|
address*, phone*, electronicMailAddress*,
|
57
|
onlineLink*, role+)>
|
58
|
<!ELEMENT pubdate (#PCDATA)>
|
59
|
<!ELEMENT pubplace (#PCDATA)>
|
60
|
<!ELEMENT series (#PCDATA)>
|
61
|
<!ELEMENT abstract (paragraph+)>
|
62
|
<!ELEMENT keywordSet (keyword+, keywordThesaurus*)>
|
63
|
<!ELEMENT keyword (#PCDATA)>
|
64
|
<!ATTLIST keyword keywordType CDATA "">
|
65
|
<!ELEMENT keywordThesaurus (#PCDATA)>
|
66
|
<!ELEMENT additionalInfo (paragraph+)>
|
67
|
<!ELEMENT paragraph (#PCDATA)>
|
68
|
<!ELEMENT triple (subject, relationship, object)>
|
69
|
<!ELEMENT subject (#PCDATA)>
|
70
|
<!ELEMENT relationship (#PCDATA)>
|
71
|
<!ELEMENT object (#PCDATA)>
|
72
|
|
73
|
<!-- The software branch -->
|
74
|
<!ELEMENT software (identifier+, shortName?, title+, originator+, pubdate?, series?,
|
75
|
abstract?, keywordSet*, additionalInfo?, versionNumber?,
|
76
|
sourceModule?, binaryFile?,
|
77
|
location?, programmingLanguage?)>
|
78
|
<!ELEMENT versionNumber (#PCDATA)>
|
79
|
<!ELEMENT sourceModule (#PCDATA)>
|
80
|
<!ELEMENT binaryFile (#PCDATA)>
|
81
|
<!ELEMENT location (#PCDATA)>
|
82
|
<!ELEMENT programmingLanguage (#PCDATA)>
|
83
|
|
84
|
<!-- EOF -->
|