aboutsummaryrefslogtreecommitdiff
path: root/doc/doc.sh
blob: a5517af5ea8eae8e203db2ddfd11915cbaf56378 (plain)
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
68
#! /usr/bin/env bash

version=2.5.0-b.6
date="$(date +"%B %Y")"

trap 'exit 1' ERR
set -o errtrace # Trap in functions.

function info () { echo "$*" 1>&2; }
function error () { info "$*"; exit 1; }

while [ $# -gt 0 ]; do
  case $1 in
    --clean)
      rm -f odb.xhtml odb.1
      rm -f odb-manual.ps odb-manual.pdf
      exit 0
      ;;
    *)
      error "unexpected $1"
      ;;
  esac
done

function compile () # <input-name> <output-name>
{
  local i=$1; shift
  local o=$1; shift

  # Use a bash array to handle empty arguments.
  #
  local ops=()
  while [ $# -gt 0 ]; do
    ops=("${ops[@]}" "$1")
    shift
  done

  # --html-suffix .xhtml
  cli -I .. -v project="odb" -v version="$version" -v date="$date" \
"${ops[@]}" --generate-html  --stdout \
--html-prologue-file odb-prologue.xhtml \
--html-epilogue-file odb-epilogue.xhtml \
"../odb/$i.cli" >"$o.xhtml"

  # --man-suffix .1
    cli -I .. -v project="odb" -v version="$version" -v date="$date" \
"${ops[@]}" --generate-man  --stdout \
--man-prologue-file odb-prologue.1 \
--man-epilogue-file odb-epilogue.1 \
"../odb/$i.cli" >"$o.1"
}

compile options odb --suppress-undocumented

# Manual.
#

#function compile_doc ()
#{
#  html2ps -f doc.html2ps:a4.html2ps -o "$n-a4.ps" "$n.xhtml"
#  ps2pdf14 -sPAPERSIZE=a4 -dOptimize=true -dEmbedAllFonts=true "$n-a4.ps" "$n-a4.pdf"
#
#  html2ps -f doc.html2ps:letter.html2ps -o "$n-letter.ps" "$n.xhtml"
#  ps2pdf14 -sPAPERSIZE=letter -dOptimize=true -dEmbedAllFonts=true "$n-letter.ps" "$n-letter.pdf"
#}

html2ps -f manual.html2ps -o odb-manual.ps manual.xhtml
ps2pdf14 -dOptimize=true -dEmbedAllFonts=true odb-manual.ps odb-manual.pdf