From ca59cd68d305877f907a18113cdc7ccc542be6c1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 3 Sep 2007 00:03:29 +0000 Subject: [PATCH] shell script that works with epydoc 3.0 --- source/blender/python/api2_2x/doc/epy_docgen-3.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 source/blender/python/api2_2x/doc/epy_docgen-3.sh diff --git a/source/blender/python/api2_2x/doc/epy_docgen-3.sh b/source/blender/python/api2_2x/doc/epy_docgen-3.sh new file mode 100644 index 00000000000..4dec2b09d4c --- /dev/null +++ b/source/blender/python/api2_2x/doc/epy_docgen-3.sh @@ -0,0 +1,12 @@ +# 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 -o BPY_API --url "http://www.blender.org" --top API_intro \ + --name "Blender" --no-private --no-frames \ +$( ls [A-Z]*.py ) \ No newline at end of file