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>2010-02-28 14:54:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-02-28 14:54:48 +0300
commitfc1cb1670e1f263d75ec07965028529e6dc52bc3 (patch)
treee295a46f852e4ade956ca5c568511fb5f167bf02 /source/blender/python/doc/sphinx_doc_gen.py
parent3bbf1917c51bc005d8c5f5d64c5f7546b3e459c2 (diff)
include BLF in automated doc generation
http://www.blender.org/documentation/250PythonDoc/BLF.html
Diffstat (limited to 'source/blender/python/doc/sphinx_doc_gen.py')
-rw-r--r--source/blender/python/doc/sphinx_doc_gen.py5
1 files changed, 4 insertions, 1 deletions
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")