Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/gitweb
diff options
context:
space:
mode:
authorJakub Narebski <jnareb@gmail.com>2006-06-20 10:17:03 +0400
committerJunio C Hamano <junkio@cox.net>2006-06-21 00:46:30 +0400
commit7bedd9fc811df1fd865cebdae016f2f278501cc5 (patch)
tree306f71f9a13f1ee726ade732d4a7f78ebb2c3d59 /gitweb
parent57bd4d3523efecf60197040cad34154aff4ddf80 (diff)
gitweb: A couple of page title tweaking
[jc: the e-mailed patch did not apply, so I had to guess but I think I got the result right.]
Diffstat (limited to 'gitweb')
-rwxr-xr-xgitweb/gitweb.cgi6
1 files changed, 6 insertions, 0 deletions
diff --git a/gitweb/gitweb.cgi b/gitweb/gitweb.cgi
index 78e6dd0346..dd228bab4c 100755
--- a/gitweb/gitweb.cgi
+++ b/gitweb/gitweb.cgi
@@ -261,6 +261,12 @@ sub git_header_html {
$title .= " - $project";
if (defined $action) {
$title .= "/$action";
+ if (defined $file_name) {
+ $title .= " - $file_name";
+ if ($action eq "tree" && $file_name !~ m|/$|) {
+ $title .= "/";
+ }
+ }
}
}
print $cgi->header(-type=>'text/html', -charset => 'utf-8', -status=> $status, -expires => $expires);