aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Canales Esparcia <manuel@linuxfromscratch.org>2005-01-19 18:24:23 +0000
committerManuel Canales Esparcia <manuel@linuxfromscratch.org>2005-01-19 18:24:23 +0000
commit5156910bdbbcde9be049830d92aca490124ec756 (patch)
treebdb8cb29633f46a9095d0fe5f0e431b07648a58b
parenta9fde34e3d97903dbc337e46a7e7e5d28844264d (diff)
Clean-up
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/LFS-RNG/BOOK@4543 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r--contrib/entResolver29
-rw-r--r--goTidy17
-rw-r--r--index-pdf.xml49
3 files changed, 0 insertions, 95 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"
diff --git a/goTidy b/goTidy
deleted file mode 100644
index e2f4eed02..000000000
--- a/goTidy
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-#######################################################################
-#
-# File: goTidy
-#
-# Description: Tidy is best used inside a loop, but Makefiles don't do
-# bash loops well. This file alleviates that problem.
-#
-# Author: James Robertson
-#
-########################################################################
-
-for file in `find "$1" -name "*.html"`; do
- tidy -config tidy.conf $file
-done
-
-exit 0
diff --git a/index-pdf.xml b/index-pdf.xml
deleted file mode 100644
index ef5186dc2..000000000
--- a/index-pdf.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!DOCTYPE book [
- <!ENTITY % general-entities SYSTEM "general.ent">
- %general-entities;
-]>
-<book>
-
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="prologue/bookinfo.xml"/>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="prologue/dedication.xml"/>
-
-<preface id="preface">
-<title>Preface</title>
-
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="prologue/foreword.xml"/>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="prologue/audience.xml"/>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="prologue/prerequisites.xml"/>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="prologue/typography.xml"/>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="prologue/organization.xml"/>
-
-</preface>
-
-<part id="part1">
-<title>Introduction</title>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="chapter01/chapter01.xml"/>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="chapter02/chapter02.xml"/>
-</part>
-
-<part id="part2">
-<title>Preparing for the build</title>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="chapter03/chapter03.xml"/>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="chapter04/chapter04.xml"/>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="chapter05/chapter05.xml"/>
-</part>
-
-<part id="part3">
-<title>Building the LFS system</title>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="chapter06/chapter06.xml"/>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="chapter07/chapter07.xml"/>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="chapter08/chapter08.xml"/>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="chapter09/chapter09.xml"/>
-</part>
-
-<index/>
-
-<appendix><title/>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="prologue/acknowledgments.xml"/>
-</appendix>
-
-</book>