On Sun, 4 Oct 2008, Jakub Narebski wrote: > On Thu, 2 Oct 2008, Giuseppe Bilotta wrote: > > diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl > > index 3e5b2b7..89e360f 100755 > > --- a/gitweb/gitweb.perl > > +++ b/gitweb/gitweb.perl > > @@ -534,7 +534,9 @@ if ($path_info && !defined $action) { > > > > # we can now parse ref and pathnames in PATH_INFO > > if ($path_info) { > > - my ($refname, $pathname) = split(/:/, $path_info, 2); > > + $path_info =~ /^((.+?)(:(.+))?\.\.)?(.+?)(:(.+))?$/; > > + my ($parentrefname, $parentpathname, $refname, $pathname) = ( > > + $2, $4, $5, $7); > > Style: I would use (but that is perhaps matter of taste) > > + my ($parentrefname, $parentpathname, $refname, $pathname) = > + ($2, $4, $5, $7); > > Also it would be I think simpler to use instead non-catching grouping, > i.e. (?: xxx ) extended pattern (see perlre(1)), and use > ($1, $2, $3, $4), or even simpler 'list = (string =~ regexp)' form. Alternate solution would be to use split(..., ..., 2), but I think you got the regular expression right. Just mentioning... -- Jakub Narebski Poland -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html