Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
gitweb: Cleanup and uniquify die_error calls
author
Jakub Narebski
<jnareb@gmail.com>
Tue, 27 Mar 2007 00:07:11 +0000
(
02:07
+0200)
committer
Junio C Hamano
<junkio@cox.net>
Tue, 27 Mar 2007 19:58:23 +0000
(12:58 -0700)
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
gitweb/gitweb.perl
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
e82973c
)
diff --git
a/gitweb/gitweb.perl
b/gitweb/gitweb.perl
index 5214050a882650db098f152c5cc032fdcc823232..334858322785d165261ddb926fc990f0f91982dd 100755
(executable)
--- a/
gitweb/gitweb.perl
+++ b/
gitweb/gitweb.perl
@@
-3154,7
+3154,7
@@
sub git_blame2 {
}
$ftype = git_get_type($hash);
if ($ftype !~ "blob") {
}
$ftype = git_get_type($hash);
if ($ftype !~ "blob") {
- die_error(
"400 Bad Request"
, "Object is not a blob");
+ die_error(
'400 Bad Request'
, "Object is not a blob");
}
open ($fd, "-|", git_cmd(), "blame", '-p', '--',
$file_name, $hash_base)
}
open ($fd, "-|", git_cmd(), "blame", '-p', '--',
$file_name, $hash_base)
@@
-3220,7
+3220,7
@@
sub git_blame2 {
print "</td>\n";
}
open (my $dd, "-|", git_cmd(), "rev-parse", "$full_rev^")
print "</td>\n";
}
open (my $dd, "-|", git_cmd(), "rev-parse", "$full_rev^")
- or die_error(
"could not open git-rev-parse
");
+ or die_error(
undef, "Open git-rev-parse failed
");
my $parent_commit = <$dd>;
close $dd;
chomp($parent_commit);
my $parent_commit = <$dd>;
close $dd;
chomp($parent_commit);
@@
-3622,7
+3622,7
@@
sub git_snapshot {
$name =~ s/\047/\047\\\047\047/g;
open my $fd, "-|",
"$git archive --format=tar --prefix=\'$name\'/ $hash | $command"
$name =~ s/\047/\047\\\047\047/g;
open my $fd, "-|",
"$git archive --format=tar --prefix=\'$name\'/ $hash | $command"
- or die_error(undef, "Execute git-tar-tree failed
.
");
+ or die_error(undef, "Execute git-tar-tree failed");
binmode STDOUT, ':raw';
print <$fd>;
binmode STDOUT, ':utf8'; # as set at the beginning of gitweb.cgi
binmode STDOUT, ':raw';
print <$fd>;
binmode STDOUT, ':utf8'; # as set at the beginning of gitweb.cgi