summaryrefslogtreecommitdiff
path: root/format/fo/txt
diff options
context:
space:
mode:
Diffstat (limited to 'format/fo/txt')
-rwxr-xr-xformat/fo/txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/format/fo/txt b/format/fo/txt
new file mode 100755
index 0000000..2f98e42
--- /dev/null
+++ b/format/fo/txt
@@ -0,0 +1,24 @@
+case "$USE_BACKEND" in
+DEFAULT | DBLATEX)
+ echo "Sorry, no way to convert to txt , use --with-fop option for that."
+ echo "You need to install fop package for using that option."
+ exit 3
+ ;;
+FOP)
+ EXT=$(basename $0)
+ case "$1" in
+ stylesheet)
+ ;;
+ post-process)
+ if [ "$VERBOSE" -ge 1 ]
+ then
+ echo >&2 "Post-process XSL-FO to TXT"
+ fi
+ #we need to change dir to handle external data objects correctly
+ cd "${OUTPUT_DIR}"
+ "$FOP_PATH" ${POSTARGS} -fo "${XSLT_PROCESSED}" -"${EXT}" "$OUTPUT_DIR/$(basename ${XSLT_PROCESSED%.*}).${EXT}"
+ cd -
+ ;;
+ esac
+ ;;
+esac