From: Jakub Narebski Date: Mon, 4 Sep 2006 18:32:13 +0000 (+0200) Subject: gitweb: Add GIT favicon, assuming image/png type X-Git-Url: https://git.ladys.computer/Gitweb/commitdiff_plain/663716643f44824af2a0a04eff9776603a617d2ae0ec802d95a93f1693404441 gitweb: Add GIT favicon, assuming image/png type Signed-off-by: Jakub Narebski Signed-off-by: Junio C Hamano --- diff --git a/git-favicon.png b/git-favicon.png new file mode 100644 index 0000000..f2029cb Binary files /dev/null and b/git-favicon.png differ diff --git a/gitweb.perl b/gitweb.perl index b603d59..8e98e3b 100755 --- a/gitweb.perl +++ b/gitweb.perl @@ -48,6 +48,8 @@ our $home_text = "++GITWEB_HOMETEXT++"; our $stylesheet = "++GITWEB_CSS++"; # URI of GIT logo our $logo = "++GITWEB_LOGO++"; +# URI of GIT favicon, assumed to be image/png type +our $favicon = "++GITWEB_FAVICON++"; # source of projects list our $projects_list = "++GITWEB_LIST++"; @@ -1222,6 +1224,9 @@ EOF 'href="%s" type="application/rss+xml"/>'."\n", esc_param($project), href(action=>"rss")); } + if (defined $favicon) { + print qq(\n); + } print "\n" . "\n" .