JamieEchlin wrote on Tue, Dec 07, 2010 at 10:39:28 -0800: > > Hi, > > Firstly I hope this is the right forum, it doesn't seem appropriate for the > dev forum. >
Yes, users@ is the right forum. > Has anyone got an example of using svn_wc_diff (or 2/3/4 etc), preferably > from python? I can find zero examples on the interwebs. I can't work out > what I need to pass from the minimal doxygen docs... > The C API svn_wc_diff6() has a 41-line doc string. (but it's not released yet, so refer to svn_wc_diff5()'s documentation) Although you might prefer to use svn_client_diffN() instead. (currently N=5 in trunk) > Basically I'm trying to do a working copy diff... I know I can call svn but > I need this to work in an env where svn(.exe) might not be present, and also > it doesn't give me enough control for what I'm trying to do, which is > basically property diffs. > svn diff --depth=empty **/ ? (where the shell expands **/ to "all directories under the current directory"; find(1) could be used instead of this syntax) > cheers, jamie > > -- > View this message in context: > http://old.nabble.com/usage-of-svn_wc_diff-tp30399137p30399137.html > Sent from the Subversion Users mailing list archive at Nabble.com. >