diff options
author | Ferry Huberts | 2012-03-18 11:48:01 +0000 |
---|---|---|
committer | Lars Hjemli | 2012-03-18 20:12:36 +0000 |
commit | f50be7fda0a7ab57009169dd5905fcbab8eb5166 (patch) | |
tree | c2d167f39385fa17733379137fe82d58f5cd849f /filters | |
parent | filters/highlight.sh: manually support highlight version 2 and 3 (diff) | |
download | cgit-f50be7fda0a7ab57009169dd5905fcbab8eb5166.tar.gz cgit-f50be7fda0a7ab57009169dd5905fcbab8eb5166.zip |
filters/syntax-highlighting.sh: work around highlight --force bug
Diffstat (limited to 'filters')
-rwxr-xr-x | filters/syntax-highlighting.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/filters/syntax-highlighting.sh b/filters/syntax-highlighting.sh index 3fe7fa1..0acdf12 100755 --- a/filters/syntax-highlighting.sh +++ b/filters/syntax-highlighting.sh | |||
@@ -42,4 +42,21 @@ EXTENSION="${BASENAME##*.}" | |||
42 | exec highlight --force -f -I -X -S $EXTENSION 2>/dev/null | 42 | exec highlight --force -f -I -X -S $EXTENSION 2>/dev/null |
43 | 43 | ||
44 | # This is for version 3 | 44 | # This is for version 3 |
45 | # | ||
46 | # On CentOS 6.2 (using highlight from EPEL), when highlight doesn't know about | ||
47 | # an EXTENSION, it outputs a lua error and _no_ text, even when the --force | ||
48 | # option is used. | ||
49 | # | ||
50 | # Also see the bug reports at: | ||
51 | # http://sourceforge.net/tracker/?func=detail&aid=3490017&group_id=215618&atid=1034391 | ||
52 | # https://bugzilla.redhat.com/show_bug.cgi?id=795567 | ||
53 | # | ||
54 | # This workaround can be removed when the bug is fixed upstream and the new | ||
55 | # version is packaged in most distributions. | ||
56 | # | ||
57 | # The workaround is to set the extension to 'txt' (plain text) when highlight | ||
58 | # exits with an error (doesn't know the format). | ||
59 | # | ||
60 | #echo "test" | highlight -f -I -O xhtml -S $EXTENSION &>/dev/null | ||
61 | #[ ${?} -ne 0 ] && EXTENSION="txt" | ||
45 | #exec highlight --force -f -I -O xhtml -S $EXTENSION 2>/dev/null | 62 | #exec highlight --force -f -I -O xhtml -S $EXTENSION 2>/dev/null |