maint
Kay Sievers 2005-08-07 20:26:12 +02:00
parent 2bf7a52c61
commit 1f22c26777
1 changed files with 8 additions and 7 deletions

View File

@ -15,7 +15,7 @@ use CGI::Carp qw(fatalsToBrowser);
use Fcntl ':mode'; use Fcntl ':mode';


my $cgi = new CGI; my $cgi = new CGI;
my $version = "164"; my $version = "165";
my $my_url = $cgi->url(); my $my_url = $cgi->url();
my $my_uri = $cgi->url(-absolute => 1); my $my_uri = $cgi->url(-absolute => 1);
my $rss_link = ""; my $rss_link = "";
@ -1103,12 +1103,13 @@ sub git_log {


git_header_html(); git_header_html();
print "<div class=\"page_nav\">\n"; print "<div class=\"page_nav\">\n";
print $cgi->a({-href => "$my_uri?p=$project;a=log"}, "last 10") . " | " . print $cgi->a({-href => "$my_uri?p=$project;a=log;h=$hash"}, "last 10") .
$cgi->a({-href => "$my_uri?p=$project;a=log;t=1"}, "day") . " | " . " &sdot; " . $cgi->a({-href => "$my_uri?p=$project;a=log;t=1;h=$hash"}, "day") .
$cgi->a({-href => "$my_uri?p=$project;a=log;t=7"}, "week") . " | " . " &sdot; " .$cgi->a({-href => "$my_uri?p=$project;a=log;t=7;h=$hash"}, "week") .
$cgi->a({-href => "$my_uri?p=$project;a=log;t=31"}, "month") . " | " . " &sdot; " . $cgi->a({-href => "$my_uri?p=$project;a=log;t=31;h=$hash"}, "month") .
$cgi->a({-href => "$my_uri?p=$project;a=log;t=365"}, "year") . " | " . " &sdot; " . $cgi->a({-href => "$my_uri?p=$project;a=log;t=365;h=$hash"}, "year") .
$cgi->a({-href => "$my_uri?p=$project;a=log;t=0"}, "all") . "<br/>\n"; " &sdot; " . $cgi->a({-href => "$my_uri?p=$project;a=log;t=0;h=$hash"}, "all") .
" | " . $cgi->a({-href => "$my_uri?p=$project;a=tree;hb=$hash"}, "tree") . "<br/>\n";
print "<br/>\n" . print "<br/>\n" .
"</div>\n"; "</div>\n";