Followup to r29625: fix getopt tests.
[svn.git] / subversion / svn / schema / log.rnc
blob3dfc3f7167370a0c12ec0caddafe32af146b8ab9
1 # XML RELAX NG schema for Subversion command-line client output
2 # For "svn log"
4 include "common.rnc"
6 start = log
8 log = element log { logentry* }
10 logentry =
11   element logentry { attlist.logentry, author?, date?, paths?, msg?, revprops?, logentry* }
12 attlist.logentry &=
13   attribute revision { revnum.type }
15 ## Changed paths information.
16 paths = element paths { path+ }
18 ## Path within repository.
19 path = element path { attlist.path, text }
20 attlist.path &=
21   ## "action code": A)dd, D)elete, R)eplace or M)odify
22   attribute action { "A" | "D" | "R" | "M" },
23   (
24    ## The copyfrom path within repository.
25    attribute copyfrom-path { text },
26    ## Copyfrom revision number.
27    attribute copyfrom-rev { revnum.type })?
29 ## Log message.
30 msg = element msg { text }
32 ## Revision properties.
33 revprops = element revprops { property+ }