Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2007-09-03 04:03:29 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-09-03 04:03:29 +0400
commitca59cd68d305877f907a18113cdc7ccc542be6c1 (patch)
tree0ffe0952d66abfa84d8875176f0da44d7d3bee96 /source/blender/python/api2_2x/doc
parent04a2eb2e4e95c1d87c384e69f4c3ed3a6b3552f3 (diff)
shell script that works with epydoc 3.0
Diffstat (limited to 'source/blender/python/api2_2x/doc')
-rw-r--r--source/blender/python/api2_2x/doc/epy_docgen-3.sh12
1 files changed, 12 insertions, 0 deletions
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