1 |
853
|
jones
|
<!--
|
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$'
|
8 |
|
|
'$Date$'
|
9 |
|
|
'$Revision$'
|
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 |
|
|
|
27 |
|
|
<!ELEMENT individualName (salutation*, givenName*, surName)>
|
28 |
|
|
<!ELEMENT salutation (#PCDATA)>
|
29 |
|
|
<!ELEMENT givenName (#PCDATA)>
|
30 |
|
|
<!ELEMENT surName (#PCDATA)>
|
31 |
|
|
|
32 |
|
|
<!ELEMENT organizationName (#PCDATA)>
|
33 |
|
|
<!ELEMENT positionName (#PCDATA)>
|
34 |
|
|
|
35 |
|
|
<!ELEMENT address (deliveryPoint*, city?, administrativeArea?,
|
36 |
|
|
postalCode?, country?)>
|
37 |
|
|
<!ELEMENT deliveryPoint (#PCDATA)>
|
38 |
|
|
<!ELEMENT city (#PCDATA)>
|
39 |
|
|
<!ELEMENT administrativeArea (#PCDATA)>
|
40 |
|
|
<!ELEMENT postalCode (#PCDATA)>
|
41 |
|
|
<!ELEMENT country (#PCDATA)>
|
42 |
|
|
|
43 |
|
|
<!ELEMENT phone (#PCDATA)>
|
44 |
|
|
<!ATTLIST phone phonetype CDATA "voice">
|
45 |
|
|
<!ELEMENT electronicMailAddress (#PCDATA)>
|
46 |
|
|
<!ELEMENT onlineLink (#PCDATA)>
|
47 |
|
|
|
48 |
|
|
<!-- Note that the domain for role is not expressed in the DTD -->
|
49 |
|
|
<!ELEMENT role (#PCDATA)>
|
50 |
|
|
|
51 |
|
|
|
52 |
|
|
<!-- entity to conglomerate these fields into one name -->
|
53 |
|
|
<!ELEMENT role (#PCDATA)>
|
54 |
|
|
|
55 |
|
|
<!-- common fields -->
|
56 |
|
|
<!ELEMENT identifier (#PCDATA)>
|
57 |
|
|
<!ATTLIST identifier system CDATA "">
|
58 |
|
|
<!ELEMENT shortName (#PCDATA)>
|
59 |
|
|
<!ELEMENT title (#PCDATA)>
|
60 |
|
|
<!ELEMENT originator ((individualName|organizationName|positionName)+,
|
61 |
|
|
address*, phone*, electronicMailAddress*,
|
62 |
|
|
onlineLink*, role+)>
|
63 |
|
|
<!ELEMENT pubdate (#PCDATA)>
|
64 |
|
|
<!ELEMENT pubplace (#PCDATA)>
|
65 |
|
|
<!ELEMENT series (#PCDATA)>
|
66 |
|
|
<!ELEMENT abstract (paragraph+)>
|
67 |
|
|
<!ELEMENT keywordSet (keyword+, keywordThesaurus*)>
|
68 |
|
|
<!ELEMENT keyword (#PCDATA)>
|
69 |
|
|
<!ATTLIST keyword keywordType CDATA "">
|
70 |
|
|
<!ELEMENT keywordThesaurus (#PCDATA)>
|
71 |
|
|
<!ELEMENT additionalInfo (paragraph+)>
|
72 |
|
|
<!ELEMENT paragraph (#PCDATA)>
|
73 |
|
|
<!ELEMENT rights (paragraph+)>
|
74 |
|
|
<!ELEMENT triple (subject, relationship, object)>
|
75 |
|
|
<!ELEMENT subject (#PCDATA)>
|
76 |
|
|
<!ELEMENT relationship (#PCDATA)>
|
77 |
|
|
<!ELEMENT object (#PCDATA)>
|
78 |
|
|
|
79 |
|
|
<!-- The software branch -->
|
80 |
|
|
<!ELEMENT software (identifier+, shortName?, title+,
|
81 |
|
|
originator+, pubdate?, pubplace?, series?, abstract?,
|
82 |
|
|
keywordSet*, additionalInfo?, rights*, triple*,
|
83 |
|
|
versionNumber?, sourceModule?, binaryFile?, location?,
|
84 |
|
|
programmingLanguage?)>
|
85 |
|
|
|
86 |
|
|
<!ELEMENT versionNumber (#PCDATA)>
|
87 |
|
|
<!ELEMENT sourceModule (#PCDATA)>
|
88 |
|
|
<!ELEMENT binaryFile (#PCDATA)>
|
89 |
|
|
<!ELEMENT location (#PCDATA)>
|
90 |
|
|
<!ELEMENT programmingLanguage (#PCDATA)>
|
91 |
|
|
<!-- EOF -->
|