Followup to r29625: fix getopt tests.
[svn.git] / subversion / svn / schema / diff.rnc
blob3ca7e4d6040240d63ba4e543f8a7191468084003
1 # XML RELAX NG schema for Subversion command-line client output
2 # For "svn diff --summarize --xml"
4 include "common.rnc"
6 start = diff
8 diff = element diff { paths }
10 paths = element paths { path* }
12 ## A path entry
13 path = element path { attlist.path, text }
14 attlist.path &=
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" }