Followup to r29625: fix getopt tests.
[svn.git] / subversion / svn / schema / list.rnc
blobeecaa2261b93c6e5c242ed4080f5f88aba73d60d
1 # XML RELAX NG schema for Subversion command-line client output
2 # For "svn list"
4 include "common.rnc"
6 start = lists
8 lists = element lists { \list+ }
10 ## A target to the list command.
11 \list = element list { attlist.list, entry* }
12 attlist.list &=
13   ## Local path or repository URL.
14   attribute path { target.type }
16 ## A directory entry.
17 entry = element entry { attlist.entry, name, size?, commit, lock? }
18 attlist.entry &=
19   ## The kind of the entry.
20   attribute kind { "dir" | "file" }
22 ## Name of the file or directory.
23 name = element name { string }
25 ## File size in bytes.
26 size = element size { xsd:nonNegativeInteger }