forked from bartvdbraak/blender
c8b4cf9206
svn merge https://svn.blender.org/svnroot/bf-blender/trunk/blender -r19820:HEAD Notes: * Game and sequencer RNA, and sequencer header are now out of date a bit after changes in trunk. * I didn't know how to port these bugfixes, most likely they are not needed anymore. * Fix "duplicate strip" always increase the user count for ipo. * IPO pinning on sequencer strips was lost during Undo.
17 lines
584 B
Bash
Executable File
17 lines
584 B
Bash
Executable File
# 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
|
|
|
|
epydoc --debug -v -o BPY_GE --url "http://www.blender.org" --top API_intro \
|
|
--name "Blender GameEngine" --no-private --no-sourcecode --inheritance=included \
|
|
*.py \
|
|
../../../source/blender/python/api2_2x/doc/BGL.py \
|
|
../../../source/blender/python/api2_2x/doc/Mathutils.py \
|
|
../../../source/blender/python/api2_2x/doc/Geometry.py
|
|
|