From 70504e42d2d79c40054d8aa6cb7d4337a3a73207 Mon Sep 17 00:00:00 2001 From: Per Reedtz Thomsen Date: Wed, 29 Mar 2006 23:04:26 +0000 Subject: Added XSL customization layer, and Makefile. The Makefile is pretty simple, and doesn't integrate into the full build. At least not at this time. --- documentation/boxbackup/Makefile | 36 ++++++++++++++++++++++++++++++++++++ documentation/boxbackup/bb-book.xsl | 17 +++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 documentation/boxbackup/Makefile create mode 100644 documentation/boxbackup/bb-book.xsl diff --git a/documentation/boxbackup/Makefile b/documentation/boxbackup/Makefile new file mode 100644 index 00000000..a3235ec5 --- /dev/null +++ b/documentation/boxbackup/Makefile @@ -0,0 +1,36 @@ + + +# Process DocBook to HTML + +DBPROC=/usr/bin/xsltproc +BOOKXSL=bb-book.xsl +MANXSL=bb-man.xsl +VPATH= adminguide +.SUFFIXES: .html .xml + +all: adminguide instguide + +adminguide: adminguide/index.html + +adminguide/index.html: adminguide.xml + # docname=`echo $@ | sed -e 's/\/index.html//'` + $(DBPROC) -o adminguide/ $(BOOKXSL) adminguide.xml + +instguide: instguide/index.html + +instguide/index.html: instguide.xml + $(DBPROC) -o instguide/ $(BOOKXSL) instguide.xml + +dockit: instguide adminguide + tar zcf documentation-kit-0.10.tar.gz images/ instguide/ adminguide/ + +clean: + rm -rf ./instguide/ + rm -rf ./adminguide/ + rm documentation-kit-0.10.tar.gz + + +# %.html: %.xml +# $(DBPROC) -o $@ $(BOOKXSL) $@.xml + + diff --git a/documentation/boxbackup/bb-book.xsl b/documentation/boxbackup/bb-book.xsl new file mode 100644 index 00000000..183c74aa --- /dev/null +++ b/documentation/boxbackup/bb-book.xsl @@ -0,0 +1,17 @@ + + + + + + + + + + + + + -- cgit v1.2.3