source: rtems-tools/doc/asciidoc/examples/website/build-website.sh @ f91e023

4.104.115
Last change on this file since f91e023 was f91e023, checked in by Chris Johns <chrisj@…>, on 02/17/14 at 07:04:46

Add the documentation.

  • Property mode set to 100755
File size: 837 bytes
Line 
1#!/bin/sh
2
3VERS="8.1.0"
4DATE="2006-10-22"
5
6# Leave the desired layout uncommented.
7#LAYOUT=layout1      # Tables based layout.
8LAYOUT=layout2     # CSS based layout.
9
10ASCIIDOC_HTML="python ../../asciidoc.py --backend=xhtml11 --conf-file=${LAYOUT}.conf --attribute icons --attribute iconsdir=./images/icons --attribute=badges --attribute=revision=$VERS  --attribute=date=$DATE"
11
12$ASCIIDOC_HTML -a index-only index.txt
13$ASCIIDOC_HTML -a toc -a numbered userguide.txt
14$ASCIIDOC_HTML -d manpage manpage.txt
15$ASCIIDOC_HTML downloads.txt
16$ASCIIDOC_HTML latex-backend.txt
17$ASCIIDOC_HTML README.txt
18$ASCIIDOC_HTML INSTALL.txt
19$ASCIIDOC_HTML CHANGELOG.txt
20$ASCIIDOC_HTML README-website.txt
21$ASCIIDOC_HTML support.txt
22$ASCIIDOC_HTML source-highlight-filter.txt
23$ASCIIDOC_HTML music-filter.txt
24$ASCIIDOC_HTML a2x.1.txt
25$ASCIIDOC_HTML asciimath.txt
Note: See TracBrowser for help on using the repository browser.