Where can I get all the possible tags / values ​​for "svn status --xml"?

"svn status --xml" displays all the states of files, and this is much more useful than parsing the output of "svn status".

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

Thanks!

ADD: is it possible to find a blank map from the "svn status --xml" values ​​into the "svn status" status symbols?

+7
xml svn status
source share
2 answers

I found a schema file for the status command to get a quick response.

File hosted in the SVN source tree:

subversion/svn/schema/status.rnc 
+6
source share

It is available here:

http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/schema/status.rnc?view=markup

List of current SVN line:

  • added
  • contradicted
  • cross out
  • external
  • ignored
  • incomplete
  • merged
  • missing
  • modified
  • no one
  • fine
  • obstacles
  • replace
  • unversioned
+4
source share

All Articles