2007-09-03 00:03:29 +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
|
|
|
|
|
|
|
|
|
|
# set posix locale so regex works properly for [A-Z]*.py
|
|
|
|
|
LC_ALL=POSIX
|
|
|
|
|
|
2008-02-12 14:47:55 +00:00
|
|
|
epydoc -v -o BPY_API --url "http://www.blender.org" --top API_intro \
|
2007-09-03 00:03:29 +00:00
|
|
|
--name "Blender" --no-private --no-frames \
|
2007-09-03 14:23:05 +00:00
|
|
|
$( ls [A-Z]*.py )
|