X-Git-Url: https://git.ladys.computer/Gitweb/blobdiff_plain/acf48b7bb46c25e4183fc8f741ceeaac18ecf3333c4093a2a62519700cf83d6d..f8ca1c0b2e6de3a1518e54ccf9459c3f54098dd90861f3d016561a6fc6dc9a7b:/gitweb.cgi
diff --git a/gitweb.cgi b/gitweb.cgi
index 66e53dc..eeec2ef 100755
--- a/gitweb.cgi
+++ b/gitweb.cgi
@@ -10,11 +10,12 @@
use strict;
use warnings;
use CGI qw(:standard :escapeHTML);
+use CGI::Util qw(unescape);
use CGI::Carp qw(fatalsToBrowser);
use Fcntl ':mode';
my $cgi = new CGI;
-my $version = "136";
+my $version = "149";
my $my_url = $cgi->url();
my $my_uri = $cgi->url(-absolute => 1);
my $rss_link = "";
@@ -29,15 +30,14 @@ my $gitbin = "/usr/bin";
my $gittmp = "/tmp/gitweb";
# target of the home link on top of all pages
-#my $home_link = $my_uri;
-my $home_link = "/git";
+my $home_link = $my_uri;
# html text to include at home page
my $home_text = "indextext.html";
# source of projects list
#my $projects_list = $projectroot;
-my $projects_list = "index/index.txt";
+my $projects_list = "index/index.aux";
# input validation and dispatch
my $action = $cgi->param('a');
@@ -51,7 +51,7 @@ if (defined $action) {
exit;
}
} else {
- $action = "log";
+ $action = "summary";
}
my $project = $cgi->param('p');
@@ -73,9 +73,10 @@ if (defined $project) {
die_error(undef, "No such project.");
}
$rss_link = "";
+ $ENV{'GIT_OBJECT_DIRECTORY'} = "$projectroot/$project/objects";
$ENV{'SHA1_FILE_DIRECTORY'} = "$projectroot/$project/objects";
} else {
- git_project_list($projects_list);
+ git_project_list();
exit;
}
@@ -117,7 +118,13 @@ if (defined $time_back) {
}
}
-if ($action eq "blob") {
+if ($action eq "summary") {
+ git_summary();
+ exit;
+} elsif ($action eq "tags") {
+ git_tags();
+ exit;
+} elsif ($action eq "blob") {
git_blob();
exit;
} elsif ($action eq "tree") {
@@ -186,19 +193,19 @@ div.title, a.title {
a.title:hover { background-color: #d9d8d1; }
div.title_text { padding:6px 8px; border: solid #d9d8d1; border-width:0px 0px 1px; }
div.log_body { padding:8px 8px 8px 150px; }
-span.log_age { position:relative; float:left; width:142px; font-style:italic; }
+span.age { position:relative; float:left; width:142px; font-style:italic; }
div.log_link {
font-size:10px; font-family:sans-serif; font-style:normal;
position:relative; float:left; width:142px;
}
-div.list { display:block; padding:4px 8px 2px; font-weight:bold; }
+div.list { display:block; padding:4px 8px 2px; }
div.list_head {
display:block; padding:6px 6px 4px; border:solid #d9d8d1;
border-width:0px 0px 1px; font-style:italic;
}
div.list a { text-decoration:none; color:#000000; }
div.list a:hover { color:#880000; }
-div.link {
+div.list_link {
padding:4px 8px 6px; border:solid #d9d8d1; border-width:0px 0px 1px;
font-family:sans-serif; font-size:10px;
}
@@ -225,7 +232,7 @@ EOF
"
";
print $cgi->a({-href => $home_link}, "projects") . " / ";
if (defined $project) {
- print $cgi->a({-href => "$my_uri?p=$project;a=log"}, escapeHTML($project));
+ print $cgi->a({-href => "$my_uri?p=$project;a=summary"}, escapeHTML($project));
if (defined $action) {
print " / $action";
}
@@ -270,17 +277,15 @@ sub git_get_type {
return $type;
}
-sub git_read_head {
+sub git_read_hash {
my $path = shift;
- open my $fd, "$projectroot/$path/HEAD" || return undef;
+ open my $fd, "$projectroot/$path" || return undef;
my $head = <$fd>;
close $fd;
chomp $head;
if ($head =~ m/^[0-9a-fA-F]{40}$/) {
return $head;
- } else {
- return undef;
}
}
@@ -294,6 +299,28 @@ sub git_read_description {
return $descr;
}
+sub git_read_tag {
+ my $tag_id = shift;
+ my %tag;
+
+ open my $fd, "-|", "$gitbin/git-cat-file tag $tag_id" || return;
+ while (my $line = <$fd>) {
+ chomp $line;
+ if ($line =~ m/^object ([0-9a-fA-F]{40})$/) {
+ $tag{'object'} = $1;
+ } elsif ($line =~ m/^type (.*)$/) {
+ $tag{'type'} = $1;
+ } elsif ($line =~ m/^tag (.*)$/) {
+ $tag{'name'} = $1;
+ }
+ }
+ close $fd || return;
+ if (!defined $tag{'name'}) {
+ return
+ };
+ return %tag
+}
+
sub git_read_commit {
my $commit = shift;
my %co;
@@ -321,6 +348,10 @@ sub git_read_commit {
$co{'committer_name'} =~ s/ <.*//;
}
}
+ if (!defined $co{'tree'}) {
+ close $fd;
+ return undef
+ };
$co{'parents'} = \@parents;
$co{'parent'} = $parents[0];
my (@comment) = map { chomp; $_ } <$fd>;
@@ -328,20 +359,17 @@ sub git_read_commit {
$comment[0] =~ m/^(.{0,60}[^ ]*)/;
$co{'title'} = $1;
if ($comment[0] ne $co{'title'}) {
- $co{'title'} .= " [...]";
+ $co{'title'} .= " ...";
}
close $fd || return;
- if (!defined $co{'tree'}) {
- return undef
- };
my $age = time - $co{'committer_epoch'};
$co{'age'} = $age;
if ($age > 60*60*24*365*2) {
$co{'age_string'} = (int $age/60/60/24/365);
$co{'age_string'} .= " years ago";
- } elsif ($age > 60*60*24*365/12*2) {
- $co{'age_string'} = int $age/60/60/24/365/12;
+ } elsif ($age > 60*60*24*(365/12)*2) {
+ $co{'age_string'} = int $age/60/60/24/(365/12);
$co{'age_string'} .= " months ago";
} elsif ($age > 60*60*24*7*2) {
$co{'age_string'} = int $age/60/60/24/7;
@@ -514,12 +542,11 @@ sub get_file_owner {
}
sub git_project_list {
- my $project_list = shift;
my @list;
- if (-d $project_list) {
+ if (-d $projects_list) {
# search in directory
- my $dir = $project_list;
+ my $dir = $projects_list;
opendir my $dh, $dir || return undef;
while (my $dir = readdir($dh)) {
if (-e "$projectroot/$dir/HEAD") {
@@ -530,14 +557,16 @@ sub git_project_list {
}
}
closedir($dh);
- } elsif (-e $project_list) {
- # read from file
+ } elsif (-f $projects_list) {
+ # read from file:
# 'git/git.git:Linus Torvalds'
# 'linux/hotplug/udev.git'
- open my $fd , $project_list || return undef;
+ open my $fd , $projects_list || return undef;
while (my $line = <$fd>) {
chomp $line;
- my ($path, $owner) = split ':', $line;
+ my ($path, $owner) = split ' ', $line;
+ $path = unescape($path);
+ $owner = unescape($owner);
if (!defined $path) {
next;
}
@@ -560,7 +589,7 @@ sub git_project_list {
git_header_html();
if (-f $home_text) {
print "
| description | " . escapeHTML($descr) . " |
| owner | $owner |
| last change | $cd{'rfc2822'} |
| $co{'age_string'} | \n" . + "$co{'author_name'} | \n" . + "" . $cgi->a({-href => "$my_uri?p=$project;a=commit;h=$commit"}, escapeHTML($co{'title'})) . " | \n" . + "" . $cgi->a({-href => "$my_uri?p=$project;a=log"}, "...") . " | \n" . + ""; + last; + } + } + print "
| $tag{'age'} | \n" . + "" . $cgi->a({-href => "$my_uri?p=$project;a=$tag{'type'};h=$tag{'id'}"}, escapeHTML($tag{'name'})) . " | \n" . + "" . $cgi->a({-href => "$my_uri?p=$project;a=tags"}, "...") . " | \n" . + ""; + last; + } + } + print "
| author | " . escapeHTML($co{'author'}) . " |
| " . $ad{'rfc2822'}; + " | |
| $ad{'rfc2822'}"; if ($ad{'hour_local'} < 6) { printf(" (%02d:%02d %s)", $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'}); } else { @@ -897,10 +1096,10 @@ sub git_commit { } print " | |
| committer | " . escapeHTML($co{'committer'}) . " |
| " . $cd{'rfc2822'} . sprintf(" (%02d:%02d %s)", $cd{'hour_local'}, $cd{'minute_local'}, $cd{'tz_local'}) . " | |
| $cd{'rfc2822'}" . sprintf(" (%02d:%02d %s)", $cd{'hour_local'}, $cd{'minute_local'}, $cd{'tz_local'}) . " | |
| commit | $hash |
| tree | " . - $cgi->a({-href => "$my_uri?p=$project;a=tree;h=" . $co{'tree'} . ";hb=" . $hash}, $co{'tree'}) . " |
| parent | " .
@@ -922,7 +1121,7 @@ sub git_commit {
} else {
$empty = 0;
}
- if ($line =~ m/^(signed[ \-]off[\-]by[ :]|acked[\-]by[ \:]|cc[ :])/i) {
+ if ($line =~ m/^(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
$signed = 1;
print "" . escapeHTML($line) . " \n"; } else { @@ -955,9 +1154,9 @@ sub git_commit { } print " \n" .
$cgi->a({-href => "$my_uri?p=$project;a=blob;h=$id;hb=$hash;f=$file"},
- escapeHTML($file) . " [new " . file_type($mode) . $mode_chng . "]") . "\n" .
+ escapeHTML($file) . " [new " . file_type($mode) . "$mode_chng]") . "\n" .
" \n";
- print "\n" .
+ print " ";
- print "\n" .
$cgi->a({-href => "$my_uri?p=$project;a=blob;h=$id;hb=$hash;f=$file"}, "blob") . "\n" .
" \n";
} elsif ($op eq "-") {
@@ -965,7 +1164,7 @@ sub git_commit {
$cgi->a({-href => "$my_uri?p=$project;a=blob;h=$id;hb=$hash;f=$file"},
escapeHTML($file) . " [deleted " . file_type($mode) . "]") . "\n" .
"\n" .
+ print " \n";
}
- print "\n" .
$cgi->a({-href => "$my_uri?p=$project;a=blob;h=$id;hb=$hash;f=$file"}, "blob") . " | " .
$cgi->a({-href => "$my_uri?p=$project;a=history;h=$hash;f=$file"}, "history") . "\n" .
" \n";
@@ -978,7 +1177,7 @@ sub git_commit {
my $to_mode = $2;
my $mode_chnge = "";
if ($from_mode != $to_mode) {
- $mode_chnge = " [changed";
+ $mode_chnge = " [changed";
if (((oct $from_mode) & S_IFMT) != ((oct $to_mode) & S_IFMT)) {
$mode_chnge .= " from " . file_type($from_mode) . " to " . file_type($to_mode);
}
@@ -1001,7 +1200,7 @@ sub git_commit {
escapeHTML($file) . $mode_chnge) . "\n" .
"\n";
+ print " \n";
if ($to_id ne $from_id) {
print $cgi->a({-href => "$my_uri?p=$project;a=blobdiff;h=$to_id;hp=$from_id;hb=$hash;f=$file"}, "diff") . " | ";
}
@@ -1019,9 +1218,10 @@ sub git_blobdiff {
git_header_html();
if (defined $hash_base && (my %co = git_read_commit($hash_base))) {
print " \n" .
- $cgi->a({-href => "$my_uri?p=$project;a=commit;h=$hash_base"}, "commit") .
+ $cgi->a({-href => "$my_uri?p=$project;a=log"}, "log") .
+ " | " . $cgi->a({-href => "$my_uri?p=$project;a=commit;h=$hash_base"}, "commit") .
" | " . $cgi->a({-href => "$my_uri?p=$project;a=commitdiff;h=$hash_base"}, "commitdiff") .
- " | " . $cgi->a({-href => "$my_uri?p=$project;a=tree;h=" . $co{'tree'} . ";hb=$hash_base"}, "tree");
+ " | " . $cgi->a({-href => "$my_uri?p=$project;a=tree;h=$co{'tree'};hb=$hash_base"}, "tree");
if (defined $file_name) {
print " | " . $cgi->a({-href => "$my_uri?p=$project;a=history;h=$hash_base;f=$file_name"}, "history");
}
@@ -1057,15 +1257,16 @@ sub git_commitdiff {
if (!%co) {
die_error(undef, "Unknown commit object.");
}
- open my $fd, "-|", "$gitbin/git-diff-tree -r " . $co{'parent'} . " $hash" || die_error(undef, "Open failed.");
+ open my $fd, "-|", "$gitbin/git-diff-tree -r $co{'parent'} $hash" || die_error(undef, "Open failed.");
my (@difftree) = map { chomp; $_ } <$fd>;
close $fd || die_error(undef, "Reading diff-tree failed.");
git_header_html();
print " \n" .
- $cgi->a({-href => "$my_uri?p=$project;a=commit;h=$hash"}, "commit") . " | \n" .
- $cgi->a({-href => "$my_uri?p=$project;a=commitdiff;h=$hash"}, "commitdiff") . " | \n" .
- $cgi->a({-href => "$my_uri?p=$project;a=tree;h=" . $co{'tree'} . ";hb=$hash"}, "tree") . "\n" .
+ $cgi->a({-href => "$my_uri?p=$project;a=log"}, "log") .
+ " | " . $cgi->a({-href => "$my_uri?p=$project;a=commit;h=$hash"}, "commit") .
+ " | " . $cgi->a({-href => "$my_uri?p=$project;a=commitdiff;h=$hash"}, "commitdiff") .
+ " | " . $cgi->a({-href => "$my_uri?p=$project;a=tree;h=" . $co{'tree'} . ";hb=$hash"}, "tree") .
" \n";
print "\n" .
$cgi->a({-href => "$my_uri?p=$project;a=commit;h=$hash", -class => "title"}, escapeHTML($co{'title'})) . "\n" .
@@ -1115,7 +1316,7 @@ sub git_commitdiff {
sub git_history {
if (!defined $hash) {
- $hash = git_read_head($project);
+ $hash = git_read_hash("$project/HEAD");
}
my %co = git_read_commit($hash);
if (!%co) {
@@ -1125,7 +1326,7 @@ sub git_history {
print " \n" .
$cgi->a({-href => "$my_uri?p=$project;a=commit;h=$hash"}, "commit") . " | " .
$cgi->a({-href => "$my_uri?p=$project;a=commitdiff;h=$hash"}, "commitdiff") . " | " .
- $cgi->a({-href => "$my_uri?p=$project;a=tree;h=" . $co{'tree'} . ";hb=$hash"}, "tree") .
+ $cgi->a({-href => "$my_uri?p=$project;a=tree;h=$co{'tree'};hb=$hash"}, "tree") .
" \n";
print "\n" . " \n" .
@@ -1153,16 +1354,16 @@ sub git_history {
}
print " \n" .
$cgi->a({-href => "$my_uri?p=$project;a=commit;h=$commit"},
- "" . $co{'age_string'} . "" . escapeHTML($co{'title'})) . "\n" .
+ "$co{'age_string'}" . escapeHTML($co{'title'})) . "\n" .
" \n";
- print "\n" .
+ print " \n" .
$cgi->a({-href => "$my_uri?p=$project;a=commit;h=$commit"}, "commit") .
" | " . $cgi->a({-href => "$my_uri?p=$project;a=tree;h=" . $co{'tree'} . ";hb=$commit"}, "tree") .
- " | " . $cgi->a({-href => "$my_uri?p=$project;a=blob;hb=$commit;f=" . $file}, "blob");
+ " | " . $cgi->a({-href => "$my_uri?p=$project;a=blob;hb=$commit;f=$file"}, "blob");
my $blob = git_get_hash_by_path($hash, $file_name);
my $blob_parent = git_get_hash_by_path($commit, $file_name);
if (defined $blob && defined $blob_parent && $blob ne $blob_parent) {
- print " | " . $cgi->a({-href => "$my_uri?p=$project;a=blobdiff;h=$blob;hp=$blob_parent;hb=$commit;f=" . $file}, "diff");
+ print " | " . $cgi->a({-href => "$my_uri?p=$project;a=blobdiff;h=$blob;hp=$blob_parent;hb=$commit;f=$file"}, "diff");
}
print " \n";
\n" . " |