Git development
 help / color / mirror / Atom feed
* [PATCH 1/4] git-svn: let libsvn_ls_fullurl return properties too
@ 2006-12-04  9:33 Sam Vilain
  2006-12-05  0:12 ` Junio C Hamano
  0 siblings, 1 reply; 4+ messages in thread
From: Sam Vilain @ 2006-12-04  9:33 UTC (permalink / raw)
  To: git

Allow an extra parameter to be passed to the libsvn_ls_fullurl
function to collect and return the properties of the URL being listed.
---
 git-svn.perl |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/git-svn.perl b/git-svn.perl
index 3891122..93cfcc4 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -3321,18 +3321,19 @@ sub libsvn_commit_cb {
 
 sub libsvn_ls_fullurl {
 	my $fullurl = shift;
+	my $want_props = shift;
 	my $ra = libsvn_connect($fullurl);
-	my @ret;
+	my (@ret, @props);
 	my $pool = SVN::Pool->new;
 	my $r = defined $_revision ? $_revision : $ra->get_latest_revnum;
-	my ($dirent, undef, undef) = $ra->get_dir('', $r, $pool);
+	my ($dirent, undef, $props) = $ra->get_dir('', $r, $pool);
 	foreach my $d (keys %$dirent) {
 		if ($dirent->{$d}->kind == $SVN::Node::dir) {
 			push @ret, "$d/"; # add '/' for compat with cli svn
 		}
 	}
 	$pool->clear;
-	return @ret;
+	return ($want_props ? (\@ret, $props) : @ret);
 }
 
 
-- 
1.4.4.1.ge918e-dirty

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/4] git-svn: let libsvn_ls_fullurl return properties too
  2006-12-04  9:33 [PATCH 1/4] git-svn: let libsvn_ls_fullurl return properties too Sam Vilain
@ 2006-12-05  0:12 ` Junio C Hamano
  2006-12-05  1:04   ` Eric Wong
  0 siblings, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2006-12-05  0:12 UTC (permalink / raw)
  To: Sam Vilain; +Cc: git

Thanks.

Please CC people who are primarily working on the part of the
system you are improving.  In the case of git-svn that would be
Eric Wong.

As I almost never touch git-svn myself, I'll queue these four
changes in 'pu' while waiting Ack from Eric on them.




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/4] git-svn: let libsvn_ls_fullurl return properties too
  2006-12-05  0:12 ` Junio C Hamano
@ 2006-12-05  1:04   ` Eric Wong
  2006-12-05  1:10     ` Junio C Hamano
  0 siblings, 1 reply; 4+ messages in thread
From: Eric Wong @ 2006-12-05  1:04 UTC (permalink / raw)
  To: Sam Vilain; +Cc: Junio C Hamano, git

Junio C Hamano <junkio@cox.net> wrote:
> Thanks.
> 
> Please CC people who are primarily working on the part of the
> system you are improving.  In the case of git-svn that would be
> Eric Wong.

Yes, CCs regarding git-svn would be much appreciated, thanks.

> As I almost never touch git-svn myself, I'll queue these four
> changes in 'pu' while waiting Ack from Eric on them.

Ack on what the patches do, but not as-is.

Please fix the coding style so that it's consistent with the rest of
git-svn:

a) indentation is done with hard tabs
b) no spaces around parentheses: "if ($foo) {" vs "if ( $foo ) {"

Also, adding tests would be helpful in helping me maintain it (I'm not
a regular svk user, so I don't want to break anything you've done down
the line).

Thanks.

-- 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/4] git-svn: let libsvn_ls_fullurl return properties too
  2006-12-05  1:04   ` Eric Wong
@ 2006-12-05  1:10     ` Junio C Hamano
  0 siblings, 0 replies; 4+ messages in thread
From: Junio C Hamano @ 2006-12-05  1:10 UTC (permalink / raw)
  To: Sam Vilain; +Cc: git, Eric Wong

Eric Wong <normalperson@yhbt.net> writes:

> Junio C Hamano <junkio@cox.net> wrote:
>> 
>> Please CC people who are primarily working on the part of the
>> system you are improving.  In the case of git-svn that would be
>> Eric Wong.
>
> Yes, CCs regarding git-svn would be much appreciated, thanks.
> ...
> Please fix the coding style so that it's consistent with the rest of
> git-svn:

Thanks Eric for your quick response.

> a) indentation is done with hard tabs
> b) no spaces around parentheses: "if ($foo) {" vs "if ( $foo ) {"
>
> Also, adding tests would be helpful in helping me maintain it (I'm not
> a regular svk user, so I don't want to break anything you've done down
> the line).

Another request from the maintainer is to Sign-off the patches.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2006-12-05  1:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-04  9:33 [PATCH 1/4] git-svn: let libsvn_ls_fullurl return properties too Sam Vilain
2006-12-05  0:12 ` Junio C Hamano
2006-12-05  1:04   ` Eric Wong
2006-12-05  1:10     ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox