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
|
|
|
|
|
|
2005-06-12 16:20:29 +00:00
|
|
|
epydoc -o BPY_API --url "http://www.blender.org" -t API_intro.py \
|
2003-10-29 23:03:30 +00:00
|
|
|
-n "Blender" --no-private --no-frames \
|
|
|
|
|
$( ls [A-Z]*.py )
|