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:
authorJoerg Mueller <nexyon@gmail.com>2010-07-19 17:36:10 +0400
committerJoerg Mueller <nexyon@gmail.com>2010-07-19 17:36:10 +0400
commit1f7bcf25447c8b2e2881d10d46f41d493c20cc09 (patch)
tree7a879a011b74e61b0df537669b344bf6efd3a415 /source/blender/python/doc/sphinx_doc_gen.py
parent7932b860621991bf54552be6e3a18cc4f4ad2c08 (diff)
Minor sphinx corrections:
* Attributes starting with _ in classes are now ignored * sphinx.blend updated so that it doesn't have to be edited anymore if the script changes
Diffstat (limited to 'source/blender/python/doc/sphinx_doc_gen.py')
-rw-r--r--source/blender/python/doc/sphinx_doc_gen.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/source/blender/python/doc/sphinx_doc_gen.py b/source/blender/python/doc/sphinx_doc_gen.py
index e38aa41a7da..145b6c3c312 100644
--- a/source/blender/python/doc/sphinx_doc_gen.py
+++ b/source/blender/python/doc/sphinx_doc_gen.py
@@ -143,7 +143,9 @@ def pyfunc2sphinx(ident, fw, identifier, py_func, is_class=True):
def py_descr2sphinx(ident, fw, descr, module_name, type_name, identifier):
-
+ if identifier.startswith("_"):
+ return
+
doc = descr.__doc__
if not doc:
doc = undocumented_message(module_name, type_name, identifier)
@@ -772,7 +774,8 @@ def rna2sphinx(BASEPATH):
file.close()
-if __name__ == '__main__':
+def main():
+ import bpy
if 'bpy' not in dir():
print("\nError, this script must run from inside blender2.5")
print(script_help_msg)
@@ -842,3 +845,6 @@ if __name__ == '__main__':
import sys
sys.exit()
+
+if __name__ == '__main__':
+ main()