diff options
author | Jakub Narebski <jnareb@gmail.com> | 2006-08-17 11:21:28 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-17 03:04:38 -0700 |
commit | d4baf9eaf47ea1ba204f1ab5ecd22326913dd081 (patch) | |
tree | aa00eadc64b76789e44201fab6e92dc1ef73a36f | |
parent | 409d1d2053657f73a3222651111740606122aa80 (diff) | |
download | git-d4baf9eaf47ea1ba204f1ab5ecd22326913dd081.tar.gz git-d4baf9eaf47ea1ba204f1ab5ecd22326913dd081.tar.xz |
gitweb: Uniquify version info output, add meta generator in page header
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-x | gitweb/gitweb.perl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 7c92ac30c..04282fa5e 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -996,10 +996,11 @@ sub git_header_html { <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US"> -<!-- git web interface v$version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke --> +<!-- git web interface version $version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke --> <!-- git core binaries version $git_version --> <head> <meta http-equiv="content-type" content="$content_type; charset=utf-8"/> +<meta name="generator" content="gitweb/$version git/$git_version"/> <meta name="robots" content="index, nofollow"/> <title>$title</title> <link rel="stylesheet" type="text/css" href="$stylesheet"/> |