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 -->
|