Renamed gen-doc.bash, run-tests.bash to make-doc, make-test respectively

This commit is contained in:
Jason Gerard DeRose
2008-10-07 22:45:32 -06:00
parent fec6fc2e8c
commit 6489e4f348
2 changed files with 0 additions and 0 deletions

29
make-doc Executable file
View File

@@ -0,0 +1,29 @@
#!/bin/bash
# Hackish script to generate documentation using epydoc
sources="ipalib ipa_server ipa_webui tests"
out="./freeipa2-dev-doc"
init="./ipalib/__init__.py"
echo "Looking for $init"
if [[ ! -f $init ]]
then
echo "Error: You do not appear to be in the project directory"
exit 1
fi
echo "You appear to be in the project directory"
# Documentation
if [[ -d $out ]]
then
echo "Removing old $out directory"
rm -r $out
fi
echo "Creating documentation in $out"
epydoc -v --html --no-frames --include-log \
--name="FreeIPA v2 developer documentation" \
--docformat=restructuredtext \
--output=$out \
$sources