OSDN Git Service

Merge branch 'maint'
authorJunio C Hamano <junkio@cox.net>
Fri, 4 May 2007 06:26:54 +0000 (23:26 -0700)
committerJunio C Hamano <junkio@cox.net>
Fri, 4 May 2007 06:26:54 +0000 (23:26 -0700)
* maint:
  gitweb: use decode_utf8 directly
  posix compatibility for t4200
  Document 'opendiff' value in config.txt and git-mergetool.txt
  Allow PERL_PATH="/usr/bin/env perl"
  Make xstrndup common
  diff.c: fix "size cache" handling.
  http-fetch: Disable use of curl multi support for libcurl < 7.16.

1  2 
Documentation/config.txt
commit.c
diff.c
git-compat-util.h
gitweb/gitweb.perl

Simple merge
diff --cc commit.c
Simple merge
diff --cc diff.c
Simple merge
Simple merge
@@@ -1126,11 -1098,9 +1120,11 @@@ sub git_get_projects_list 
                        if (check_export_ok("$projectroot/$path")) {
                                my $pr = {
                                        path => $path,
-                                       owner => to_utf8($owner),
+                                       owner => decode_utf8($owner),
                                };
 -                              push @list, $pr
 +                              push @list, $pr;
 +                              (my $forks_path = $path) =~ s/\.git$//;
 +                              $paths{$forks_path}++;
                        }
                }
                close $fd;