From: Jakub Narebski Date: Mon, 4 Sep 2006 18:32:13 +0000 (+0200) Subject: gitweb: Add GIT favicon, assuming image/png type X-Git-Tag: v1.4.3-rc1~141 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0b5deba13268a196a8b302255453a8c2194c876d;p=git.git gitweb: Add GIT favicon, assuming image/png type Signed-off-by: Jakub Narebski Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index a639cdfcf..7b3114f3a 100644 --- a/Makefile +++ b/Makefile @@ -131,6 +131,7 @@ GITWEB_LIST = GITWEB_HOMETEXT = indextext.html GITWEB_CSS = gitweb.css GITWEB_LOGO = git-logo.png +GITWEB_FAVICON = git-favicon.png export prefix bindir gitexecdir template_dir GIT_PYTHON_DIR @@ -635,6 +636,7 @@ gitweb/gitweb.cgi: gitweb/gitweb.perl -e 's|++GITWEB_HOMETEXT++|$(GITWEB_HOMETEXT)|g' \ -e 's|++GITWEB_CSS++|$(GITWEB_CSS)|g' \ -e 's|++GITWEB_LOGO++|$(GITWEB_LOGO)|g' \ + -e 's|++GITWEB_FAVICON++|$(GITWEB_FAVICON)|g' \ $< >$@+ chmod +x $@+ mv $@+ $@ diff --git a/gitweb/git-favicon.png b/gitweb/git-favicon.png new file mode 100644 index 000000000..de637c060 Binary files /dev/null and b/gitweb/git-favicon.png differ diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 2b40aa11e..313e84295 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/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" .