1 # XML RELAX NG schema for Subversion command-line client output
2 # For "svn diff --summarize --xml"
8 diff = element diff { paths }
10 paths = element paths { path* }
13 path = element path { attlist.path, text }
15 ## The props of the entry.
16 attribute props { "none" | "modified" },
17 ## The kind of the entry.
18 attribute kind { "dir" | "file" },
19 ## The action performed against this path. This terminology
20 ## was chosen for consistencey from 'svn list'.
21 attribute item { "none" | "added" | "modified" | "deleted" }