From fc1cb1670e1f263d75ec07965028529e6dc52bc3 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 28 Feb 2010 11:54:48 +0000 Subject: include BLF in automated doc generation http://www.blender.org/documentation/250PythonDoc/BLF.html --- source/blender/python/doc/sphinx_doc_gen.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source/blender/python/doc/sphinx_doc_gen.py') diff --git a/source/blender/python/doc/sphinx_doc_gen.py b/source/blender/python/doc/sphinx_doc_gen.py index e3258a15655..bfe51eddf32 100644 --- a/source/blender/python/doc/sphinx_doc_gen.py +++ b/source/blender/python/doc/sphinx_doc_gen.py @@ -270,6 +270,7 @@ def rna2sphinx(BASEPATH): fw(" bpy.props.rst\n\n") fw(" Mathutils.rst\n\n") + fw(" BLF.rst\n\n") file.close() @@ -313,7 +314,9 @@ def rna2sphinx(BASEPATH): pymodule2sphinx(BASEPATH, "Mathutils", module, "Math Types & Utilities (Mathutils)") del module - + import BLF as module + pymodule2sphinx(BASEPATH, "BLF", module, "Blender Font Drawing (BLF)") + del module if 0: filepath = os.path.join(BASEPATH, "bpy.rst") -- cgit v1.2.3