-
Notifications
You must be signed in to change notification settings - Fork 0
/
metaadms.dtd
77 lines (70 loc) · 2.01 KB
/
metaadms.dtd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version="1.0" encoding="UTF-8"?>
<!--
This dtd describes the basic data structures used by adms classes
It is used to check the validy of file http://mot-adms/sourceforge.net/xml-files/adms.xml
You can try using xmllint: xmllint adms.xml -noout -postvalid -noblanks
-->
<!--
$Id: metaadms.dtd 997 2008-05-06 16:36:28Z r29173 $
-->
<!--
$Log$
Revision 1.10 2006/09/04 08:51:04 r29173
tons of simplifications
Revision 1.9 2005/11/25 14:15:25 r29173
changed admstpath parser mechanisms
Revision 1.8 2005/11/22 09:29:47 r29173
added element comment
Revision 1.7 2005/05/25 08:27:49 r29173
moving code from xmlParserNew.c to xml
Revision 1.6 2005/03/22 11:30:18 r29173
migration to adms-2.x.x: clean-up xml constructs
Revision 1.5 2005/03/17 08:26:28 r29173
migration to adms-2.x.x: move all href from absolute to relative values
Revision 1.4 2005/02/25 12:49:35 r29173
migration to adms-2.x.x: renamed admst transforms
-->
<!ELEMENT adms (element)+ >
<!ELEMENT element (uid,alias*,(scalar|warning)*,list*,(comment|element)*) >
<!ELEMENT uid (scalar)* >
<!ELEMENT scalar (evalue*) >
<!ELEMENT list EMPTY >
<!ELEMENT reference EMPTY >
<!ELEMENT alias EMPTY >
<!ELEMENT evalue EMPTY >
<!ELEMENT comment (#PCDATA) >
<!ELEMENT warning (#PCDATA) >
<!ATTLIST uid
format CDATA #REQUIRED
>
<!ATTLIST element
name CDATA #REQUIRED
info CDATA #REQUIRED
>
<!ATTLIST scalar
name CDATA #REQUIRED
datatypefamily (basicpointer|basictype|reference|adms) "reference"
datatypename CDATA #REQUIRED
default CDATA #IMPLIED
required (yes|no) "yes"
info CDATA #REQUIRED
format CDATA #IMPLIED
>
<!ATTLIST list
name CDATA #REQUIRED
datatypefamily (basicpointer|basictype|reference|adms) "reference"
datatypename CDATA #REQUIRED
default CDATA #IMPLIED
required (yes|no) "yes"
info CDATA #REQUIRED
format CDATA #IMPLIED
>
<!ATTLIST alias
name CDATA #REQUIRED
element CDATA #REQUIRED
attribute CDATA #REQUIRED
>
<!ATTLIST evalue
name CDATA #REQUIRED
info CDATA #REQUIRED
>