Re: Using info2 in perl

2012-04-23 Thread Jim Searle
 A quick glance at subversion/bindings/swig/svn_wc.i tells me that > perhaps svn_wc_status_func2_t aren't supported by the Perl bindings? > (notice the pattern of #ifndef's around svn_wc_status_func_t and > svn_wc_status_func2_t) > > Jim Searle wrote on Fri, Apr 20, 2012 at

Re: Using info2 in perl

2012-04-20 Thread Jim Searle
ot;\n\nUsing status3:\n"; $s->status3( "", undef, sub{($path, $status) = @_; print "$path,$status\n" }, $SVN::Core::depth_immediates, 1, 1, 0, 1, undef ); Thanks, Jim On Wed, Mar 21, 2012 at 5:14 PM, Daniel Shahaf wrote: > J

Using info2 in perl

2012-03-21 Thread Jim Searle
I am currently using the perl api info and diff_summarize methods, but I need to switch to info2 and diff_summarize2 since they support the 'depth' option. But I can't figure out the correct syntax, does anyone have an example? Thanks, Jim