tags:

views:

15

answers:

2

"svn status --xml" prints all files status and it's more much useful than parsing "svn status" output.

Is there a list of all possible tags/sections in XML file and their values? I can read SVN sources but its time consuming and a dirty method :).

Thank you!

ADD: is it possible to find clean map from "svn status --xml" values to "svn status" status characters also?

A: 

http://svnbook.red-bean.com/nightly/en/svn.ref.svn.c.status.html

Did you mean this?

zerkms
No: there are a one-letter statuses but I want xml tags/values.
Denis Barmenkov
+1  A: 

I've found Schema file for status command so its a fast answer.

File placed in SVN source tree there:

subversion/svn/schema/status.rnc 
Denis Barmenkov