1
<!-- XML DTD for Subversion command-line client output. -->
3
<!-- Common attributes and elements -->
4
<!ELEMENT author (#PCDATA)> <!-- user name -->
5
<!ELEMENT date (#PCDATA)> <!-- date as "yyyy-mm-ddThh:mm:ss.ssssssZ" -->
7
<!-- For "svn info" -->
8
<!ELEMENT info (entry*)>
10
<!ELEMENT entry (url?, repository?, wc-info?, commit?, lock?)>
11
<!-- path: local path -->
12
<!-- kind: path type -->
13
<!-- revision number of wc or repos path/url-->
16
kind (file | dir) #REQUIRED
17
revision CDATA #REQUIRED
20
<!ELEMENT url (#PCDATA)> <!-- URL of this item in the repository -->
22
<!ELEMENT repository (root?, uuid?)>
23
<!ELEMENT root (#PCDATA)> <!-- root: URL of the repository -->
24
<!ELEMENT uuid (#PCDATA)> <!-- uuid: UUID of the repository -->
26
<!ELEMENT wc-info (schedule?, copy-from-url?, copy-from-rev?,
27
text-updated?, prop-updated?, checksum?, conflict?)>
28
<!ELEMENT schedule (#PCDATA)> <!-- normal | add | delete | replace | none -->
29
<!ELEMENT copy-from-url (#PCDATA)>
30
<!ELEMENT copy-from-rev (#PCDATA)>
31
<!ELEMENT text-updated (#PCDATA)> <!-- date text last updated -->
32
<!ELEMENT prop-updated (#PCDATA)> <!-- date properties last updated -->
33
<!ELEMENT checksum (#PCDATA)>
35
<!ELEMENT conflict (prev-base-file, prev-wc-file?, cur-base-file, prop-file?)>
36
<!ELEMENT prev-base-file (#PCDATA)> <!-- previous base file -->
37
<!ELEMENT prev-wc-file (#PCDATA)> <!-- previous wc file -->
38
<!ELEMENT cur-base-file (#PCDATA)> <!-- current base file -->
39
<!ELEMENT prop-file (#PCDATA)> <!-- current properties file -->
41
<!-- The last commit, or the "base" revision for a WC item -->
42
<!ELEMENT commit (author?, date?)>
43
<!ATTLIST commit revision CDATA #REQUIRED> <!-- revision number: integer -->
45
<!ELEMENT lock (token, owner, comment?, created, expires?)>
46
<!ELEMENT token (#PCDATA)> <!-- lock token URI -->
47
<!ELEMENT owner (#PCDATA)> <!-- lock owner -->
48
<!ELEMENT comment (#PCDATA)> <!-- lock comment -->
49
<!ELEMENT created (#PCDATA)> <!-- creation date in ISO format -->
50
<!ELEMENT expires (#PCDATA)> <!-- expiration date in ISO format -->