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