mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 07:33:27 -06:00
30 lines
657 B
Bash
Executable File
30 lines
657 B
Bash
Executable File
#!/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 --parse-only --html --no-frames --include-log \
|
|
--name="FreeIPA2 developer documentation" \
|
|
--docformat=restructuredtext \
|
|
--output=$out \
|
|
$sources
|