aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorManuel Canales Esparcia <manuel@linuxfromscratch.org>2004-12-19 21:17:48 +0000
committerManuel Canales Esparcia <manuel@linuxfromscratch.org>2004-12-19 21:17:48 +0000
commitf7bd105db3cf74fb6d2bfed726cf5d187cb1109f (patch)
tree0077803fc32f39b293b3860f6ffa765eefcec94f /contrib
parent6d3af72bf2b333798eba7b88075fccab9441519f (diff)
Updated the stylesheets and Makefile.
Removed contrib/, index-pdf.xml and goTidy. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@4428 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'contrib')
-rw-r--r--contrib/entResolver29
1 files changed, 0 insertions, 29 deletions
diff --git a/contrib/entResolver b/contrib/entResolver
deleted file mode 100644
index e04f439b3..000000000
--- a/contrib/entResolver
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-###############################################################################
-# #
-# File: entResolver #
-# #
-# Description: Works around libxml2 bug 135713 by preprocessing entity #
-# references before performing any stylesheet processing. #
-# #
-# Author: Manuel Canales Esparcia #
-# #
-###############################################################################
-
-NAME=`basename "$0"`
-DESTDIR="$1"
-
-if [ -z "$1" ]; then
- echo "USAGE: $NAME destdir"
- exit
-fi
-
-mkdir -p ../"$DESTDIR"/chapter0{1,2,3,4,5,6,7,8,9}
-mkdir -p ../"$DESTDIR"/prologue
-mkdir -p ../"$DESTDIR"/appendix{a,b}
-
-for i in `find . -name "*.xml"`; do
- xmllint --nonet --noent "${i}" > ../"$DESTDIR"/"${i}";
-done
-
-cp -a stylesheets ../"$DESTDIR"