2012-09-29 22:44:00 -06:00
|
|
|
#!/bin/bash
|
2012-09-30 15:24:24 -06:00
|
|
|
# regenerate documentation after editing the .rst files. Requires python and docutils.
|
2012-09-29 23:02:14 -06:00
|
|
|
|
|
|
|
cd `dirname $0`
|
|
|
|
|
|
|
|
function process() {
|
|
|
|
if [ "$1" -nt "$2" ]; then
|
2012-09-30 15:29:13 -06:00
|
|
|
rst2html --no-generator --no-datestamp "$1" "$2"
|
2012-09-29 23:02:14 -06:00
|
|
|
else
|
|
|
|
echo "$2 - up to date."
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
process Readme.rst Readme.html
|
|
|
|
process Compile.rst Compile.html
|
|
|
|
process Lua\ API.rst Lua\ API.html
|
|
|
|
process Contributors.rst Contributors.html
|
2012-09-30 15:29:13 -06:00
|
|
|
|