diff options
author | Lénaïc Huard <lenaic@lhuard.fr.eu.org> | 2011-10-21 09:09:29 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-10-21 10:18:37 -0700 |
commit | c1355b7ffb6573ff7c76aef7d3bab664fb895dc8 (patch) | |
tree | dd1ee84d3d0001032d58912b98b2805605cf5661 /t | |
parent | 55752fa8610ebc16a1ebda2bcaf73f82142dde30 (diff) | |
download | git-c1355b7ffb6573ff7c76aef7d3bab664fb895dc8.tar.gz |
gitweb: provide a way to customize html headers
This allows web sites to add some specific html headers to the pages
generated by gitweb.
The new variable $site_html_head_string can be set to an html snippet that
will be inserted at the end of the <head> section of each page generated
by gitweb.
Signed-off-by: Lénaïc Huard <lenaic@lhuard.fr.eu.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rw-r--r-- | t/gitweb-lib.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/gitweb-lib.sh b/t/gitweb-lib.sh index 292753f77c..21d11d6c2d 100644 --- a/t/gitweb-lib.sh +++ b/t/gitweb-lib.sh @@ -16,6 +16,7 @@ our \$projectroot = "$safe_pwd"; our \$project_maxdepth = 8; our \$home_link_str = 'projects'; our \$site_name = '[localhost]'; +our \$site_html_head_string = ''; our \$site_header = ''; our \$site_footer = ''; our \$home_text = 'indextext.html'; |