File: log.dtd

package info (click to toggle)
statsvn 0.7.0.dfsg-12
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,324 kB
  • sloc: xml: 5,959; java: 4,082; sh: 23; makefile: 5
file content (16 lines) | stat: -rw-r--r-- 781 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!-- XML DTD for Subversion command-line client output. -->

<!-- Common attributes and elements -->
<!ELEMENT author (#PCDATA)>  <!-- user name -->
<!ELEMENT date (#PCDATA)>  <!-- date as "yyyy-mm-ddThh:mm:ss.ssssssZ" -->

<!-- For "svn log" -->
<!ELEMENT log (logentry*)>
<!ELEMENT logentry (author, date, paths?, msg?)>
<!ATTLIST logentry revision CDATA #REQUIRED>  <!-- revision number: integer -->
<!ELEMENT paths (path*)>
<!ELEMENT path (#PCDATA)>  <!-- path within repository -->
<!ATTLIST path action CDATA #REQUIRED  <!-- action code: one character -->
               copyfrom-path CDATA #IMPLIED  <!-- path within repository -->
               copyfrom-rev CDATA #IMPLIED>  <!-- revision number: integer -->
<!ELEMENT msg (#PCDATA)>  <!-- log message -->