diff options
author | Jakub Narebski <jnareb@gmail.com> | 2006-08-05 13:18:58 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-06 02:00:32 -0700 |
commit | 10161355ba3b121c823649ef1acca526d73363f6 (patch) | |
tree | 0381d787400e347a26a84a264b9ec2402ebe8b75 /gitweb | |
parent | 668e34d7cc1ab7d6135f0004ee7bea2ffdca0de0 (diff) | |
download | git-10161355ba3b121c823649ef1acca526d73363f6.tar.gz git-10161355ba3b121c823649ef1acca526d73363f6.tar.xz |
gitweb: Inline $rss_link
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb')
-rwxr-xr-x | gitweb/gitweb.perl | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index fdba15e2b..1b5fec924 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -21,7 +21,6 @@ our $cgi = new CGI; our $version = "++GIT_VERSION++"; our $my_url = $cgi->url(); our $my_uri = $cgi->url(-absolute => 1); -our $rss_link = ""; # core git executable to use # this can just be "git" if your webserver has a sensible PATH @@ -97,8 +96,6 @@ if (defined $project && $project) { if (!(-e "$projectroot/$project/HEAD")) { die_error(undef, "No such project"); } - $rss_link = "<link rel=\"alternate\" title=\"" . esc_param($project) . " log\" href=\"" . - "$my_uri?" . esc_param("p=$project;a=rss") . "\" type=\"application/rss+xml\"/>"; $ENV{'GIT_DIR'} = "$projectroot/$project"; } else { git_project_list(); @@ -862,11 +859,13 @@ sub git_header_html { <meta name="robots" content="index, nofollow"/> <title>$title</title> <link rel="stylesheet" type="text/css" href="$stylesheet"/> -$rss_link -</head> -<body> EOF - print "<div class=\"page_header\">\n" . + print "<link rel=\"alternate\" title=\"" . esc_param($project) . " log\" href=\"" . + "$my_uri?" . esc_param("p=$project;a=rss") . "\" type=\"application/rss+xml\"/>\n" . + "</head>\n"; + + print "<body>\n" . + "<div class=\"page_header\">\n" . "<a href=\"http://www.kernel.org/pub/software/scm/git/docs/\" title=\"git documentation\">" . "<img src=\"$logo\" width=\"72\" height=\"27\" alt=\"git\" style=\"float:right; border-width:0px;\"/>" . "</a>\n"; |