blob: 7b77177bb90bf0a0a1a7405bfeec4549d67b97b6 (
plain) (
blame)
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
|
<?xml version='1.0' encoding='UTF-8'?>
<!--
TODO define vocabulary identification
PUBLIC ID: -//vendor//vocabulary//EN
SYSTEM ID: http://server/path/project.dtd
--><!--
An example how to use this DTD from your XML document:
<?xml version="1.0"?>
<!DOCTYPE project SYSTEM "project.dtd">
<project>
...
</project>
-->
<!--- Put your DTDDoc comment here. -->
<!ELEMENT project (configuration|type)*>
<!ATTLIST project
xmlns CDATA #IMPLIED
>
<!--- Put your DTDDoc comment here. -->
<!ELEMENT type (#PCDATA)>
<!--- Put your DTDDoc comment here. -->
<!ELEMENT configuration (data)*>
<!--- Put your DTDDoc comment here. -->
<!ELEMENT data (test-roots|source-roots|minimum-ant-version|name)*>
<!ATTLIST data
xmlns CDATA #IMPLIED
>
<!--- Put your DTDDoc comment here. -->
<!ELEMENT name (#PCDATA)>
<!--- Put your DTDDoc comment here. -->
<!ELEMENT minimum-ant-version (#PCDATA)>
<!--- Put your DTDDoc comment here. -->
<!ELEMENT source-roots (root)*>
<!--- Put your DTDDoc comment here. -->
<!ELEMENT root EMPTY>
<!ATTLIST root
id CDATA #IMPLIED
>
<!--- Put your DTDDoc comment here. -->
<!ELEMENT test-roots (root)*>
|