aboutsummaryrefslogtreecommitdiffstats
path: root/filters/about-formatting.sh
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-07-03 21:02:15 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2018-07-03 21:19:26 +0200
commit0ee035d4ec40f2308e99ab6d450cf606deadef17 (patch)
tree8e2b9d81eceee28038abec50ac83cb4a6be06af7 /filters/about-formatting.sh
parentc4167cbd65acef801e6132ba1182f6ce246ed630 (diff)
downloadcgit-origin/jd/render-filter.tar.gz
cgit-origin/jd/render-filter.tar.xz
Rename about-filter to render-filterorigin/jd/render-filter
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'filters/about-formatting.sh')
-rwxr-xr-xfilters/about-formatting.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/filters/about-formatting.sh b/filters/about-formatting.sh
deleted file mode 100755
index 85daf9c..0000000
--- a/filters/about-formatting.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-# This may be used with the about-filter or repo.about-filter setting in cgitrc.
-# It passes formatting of about pages to differing programs, depending on the usage.
-
-# Markdown support requires python and markdown-python.
-# RestructuredText support requires python and docutils.
-# Man page support requires groff.
-
-# The following environment variables can be used to retrieve the configuration
-# of the repository for which this script is called:
-# CGIT_REPO_URL ( = repo.url setting )
-# CGIT_REPO_NAME ( = repo.name setting )
-# CGIT_REPO_PATH ( = repo.path setting )
-# CGIT_REPO_OWNER ( = repo.owner setting )
-# CGIT_REPO_DEFBRANCH ( = repo.defbranch setting )
-# CGIT_REPO_SECTION ( = section setting )
-# CGIT_REPO_CLONE_URL ( = repo.clone-url setting )
-
-cd "$(dirname $0)/html-converters/"
-case "$(printf '%s' "$1" | tr '[:upper:]' '[:lower:]')" in
- *.markdown|*.mdown|*.md|*.mkd) exec ./md2html; ;;
- *.rst) exec ./rst2html; ;;
- *.[1-9]) exec ./man2html; ;;
- *.htm|*.html) exec cat; ;;
- *.txt|*) exec ./txt2html; ;;
-esac