File: epy_docgen.sh

package info (click to toggle)
blender 2.49.2~dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 89,664 kB
  • ctags: 113,718
  • sloc: ansic: 738,048; cpp: 231,960; python: 104,955; asm: 33,960; sh: 16,233; ml: 12,962; makefile: 4,477; perl: 3,474; fortran: 108; java: 8
file content (16 lines) | stat: -rwxr-xr-x 584 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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