1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
From: =?utf-8?q?David_Pr=C3=A9vot?= <taffit@debian.org>
Date: Thu, 15 Nov 2012 18:28:28 -0400
Subject: =?utf-8?q?Don=E2=80=99t_build_multibloc_HTML?=
---
ProductionGuidesPratiques/production-traduc.org.sh | 34 ----------------------
1 file changed, 34 deletions(-)
diff --git a/ProductionGuidesPratiques/production-traduc.org.sh b/ProductionGuidesPratiques/production-traduc.org.sh
index fc3e681..3f2c46e 100755
--- a/ProductionGuidesPratiques/production-traduc.org.sh
+++ b/ProductionGuidesPratiques/production-traduc.org.sh
@@ -64,15 +64,6 @@ case $TYPE_DOC in
echo "Production de la version html monobloc"
"$LOCAL_PATH/hypertoile-unepage-traduc.org.sh" "$SOURCE"
- echo "Production de la version html multibloc"
- mkdir "$DOCUMENT"
- cd "$DOCUMENT"
- linuxdoc $LINUXDOC -B html -T 2 "../$SOURCE"
- for i in *.html ; do
- $CLEAN "$i" ;
- done
- cd ..
-
echo "Production de la version texte"
elinks -dump-charset UTF-8 -dump "$DOCUMENT.html" > "$DOCUMENT.txt"
@@ -96,10 +87,6 @@ case $TYPE_DOC in
echo "Production de la version html monobloc"
"$LOCAL_PATH/hypertoile-unepage-traduc.org.sh" "$SOURCE"
- echo "Production de la version html multibloc"
- mkdir "$DOCUMENT"
- docbook2html -o "$DOCUMENT" "$SOURCE"
-
echo "Production de la version texte"
elinks -dump-charset UTF-8 -no-references -dump "$DOCUMENT.html" > "$DOCUMENT.txt"
@@ -123,27 +110,6 @@ case $TYPE_DOC in
echo "Production de la version html monobloc"
"$LOCAL_PATH/hypertoile-unepage-traduc.org.sh" "$SOURCE"
- echo "Production de la version html multibloc"
- mkdir "$DOCUMENT"
- java -classpath /usr/share/java/saxon.jar:/usr/share/java/docbook-xsl-saxon.jar:/usr/share/java/xercesImpl.jar com.icl.saxon.StyleSheet \
- "${SOURCE}" \
- "${FEUILLE_DE_STYLE_XSL_HTML}" \
- "base.dir"="$DOCUMENT/" \
- "chunker.output.encoding"="UTF-8" \
- "admon.graphics"="1" \
- "use.extensions"="1" \
- "callouts.extensions"="1" \
- "html.stylesheet"="style.css" \
- "css.decoration"="0" \
- "blurb.on.titlepage.enabled"="0" \
- "contrib.inline.enabled"="1" \
- "othercredit.like.author.enabled"="1" \
- "make.valid.html"="1" \
- "make.year.ranges"="1" \
- "html.cleanup"="1" \
- "section.autolabel"="1"
-
-
echo "Production de la version texte"
"$LOCAL_PATH/html-en-texte.sh" "$DOCUMENT.html" "$DOCUMENT.txt"
|