Enable highlight executable path as a configuration option
Allow build-time/run-time configuration of the highlight executable (must be the one from http://www.andre-simon.de due to assumptions about parameters and output). Defaults to previous behavior which assumes that highlight is available on the server PATH. However, if this is not the case, the path to the highlight executable can be configured at build time as a configuration variable HIGHLIGHT_BIN = /path/to/highlight or at runtime by configuring GITWEB_CONFIG $highlight_bin = /path/to/highlight Signed-off-by: Christopher Wilson <cwilson@cdwilson.us> Acked-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
9027fa9eb7
commit
7ce896b300
@ -165,6 +165,12 @@ our @diff_opts = ('-M'); # taken from git_commit
|
||||
# the gitweb domain.
|
||||
our $prevent_xss = 0;
|
||||
|
||||
# Path to the highlight executable to use (must be the one from
|
||||
# http://www.andre-simon.de due to assumptions about parameters and output).
|
||||
# Useful if highlight is not installed on your webserver's PATH.
|
||||
# [Default: highlight]
|
||||
our $highlight_bin = "++HIGHLIGHT_BIN++";
|
||||
|
||||
# information about snapshot formats that gitweb is capable of serving
|
||||
our %known_snapshot_formats = (
|
||||
# name => {
|
||||
@ -3360,7 +3366,8 @@ sub run_highlighter {
|
||||
close $fd
|
||||
or die_error(404, "Reading blob failed");
|
||||
open $fd, quote_command(git_cmd(), "cat-file", "blob", $hash)." | ".
|
||||
"highlight --xhtml --fragment --syntax $syntax |"
|
||||
quote_command($highlight_bin).
|
||||
" --xhtml --fragment --syntax $syntax |"
|
||||
or die_error(500, "Couldn't open file or run syntax highlighter");
|
||||
return $fd;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user