summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2009-01-31 01:31:50 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-01-31 05:08:24 (GMT)
commitc3254aeecf89a620db262480a7c424e7607f1e2a (patch)
treea3b39f2c80534328d9b0d2e93cdeeba435f80300
parent499cc56a60b5c90415c74857035579713a07fa1b (diff)
downloadgit-c3254aeecf89a620db262480a7c424e7607f1e2a.zip
git-c3254aeecf89a620db262480a7c424e7607f1e2a.tar.gz
git-c3254aeecf89a620db262480a7c424e7607f1e2a.tar.bz2
gitweb: make static files accessible with PATH_INFO
Gitweb links to a number of static files such as CSS stylesheets, favicon or the git logo. When, such as with the default Makefile, the paths to these files are relative (i.e. doesn't start with a "/"), the files become inaccessible in any view other tha project list and summary page if gitweb is invoked with a non-empty PATH_INFO. Fix this by adding a <base> element pointing to the script's own URL, which ensure that all relative paths will be resolved correctly. Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com> Acked-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xgitweb/gitweb.perl5
1 files changed, 5 insertions, 0 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index f4defb0..87948fc 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -2901,6 +2901,11 @@ sub git_header_html {
<meta name="robots" content="index, nofollow"/>
<title>$title</title>
EOF
+# the stylesheet, favicon etc urls won't work correctly with path_info unless we
+# set the appropriate base URL
+ if ($ENV{'PATH_INFO'}) {
+ print '<base href="'.esc_url($my_url).'" />\n';
+ }
# print out each stylesheet that exist
if (defined $stylesheet) {
#provides backwards capability for those people who define style sheet in a config file