2003-10-29 23:03:30 +00:00
|
|
|
# epy_docgen.sh
|
|
|
|
|
# generates blender python doc using epydoc
|
|
|
|
|
# requires epydoc in your PATH.
|
|
|
|
|
# run from the doc directory containing the .py files
|
|
|
|
|
# usage: sh epy_docgen.sh
|
|
|
|
|
|
2006-05-23 02:27:22 +00:00
|
|
|
# set posix locale so regex works properly for [A-Z]*.py
|
|
|
|
|
LC_ALL=POSIX
|
|
|
|
|
|
2008-10-14 22:31:10 +00:00
|
|
|
epydoc --debug -v -o BPY_API --url "http://www.blender.org" --top API_intro \
|
2008-05-07 22:46:20 +00:00
|
|
|
--name "Blender" --no-private --no-frames [A-Z]*.py
|