1 # XML RELAX NG schema for Subversion command-line client output
8 blame = element blame { target* }
10 ## Information for one blamed file.
11 target = element target { attlist.target, entry* }
12 attlist.target &= attribute path { target.type }
14 ## Information for one line of a blamed file.
15 ## NOTE: The order of entries in a target element is insignificant.
16 entry = element entry { attlist.entry, commit?, merged? }
19 attribute line-number { xsd:integer { minInclusive = "1" } }
22 merged = element merged { attlist.merged, commit }
23 attlist.merged &= attribute path { string }