summaryrefslogtreecommitdiff
path: root/format/fo/awt
blob: 4c7f1d30b602de7ae17cbff55f10211fa8f1070a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
case "$USE_BACKEND" in
DEFAULT|DBLATEX)
	echo "Sorry, no way to convert to awt, 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 "Rendering XSL-FO to screen"
	  fi
	  #we need to change dir to handle external data objects correctly
	  cd "${OUTPUT_DIR}"
	  "$FOP_PATH" ${POSTARGS} -fo "${XSLT_PROCESSED}" -"${EXT}"
	  cd -
	esac
	;;
esac