[Bf-blender-cvs] [0e7dd01944d] blender2.8: PyDoc: remove old undocumented message

Aaron Carlisle noreply at git.blender.org
Tue Aug 14 03:44:05 CEST 2018


Commit: 0e7dd01944d880dcc22bd4783da9a5cc22510be8
Author: Aaron Carlisle
Date:   Mon Aug 13 21:43:51 2018 -0400
Branches: blender2.8
https://developer.blender.org/rB0e7dd01944d880dcc22bd4783da9a5cc22510be8

PyDoc: remove old undocumented message

===================================================================

M	doc/python_api/sphinx_doc_gen.py

===================================================================

diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index cde11268a9b..26cc3cda96b 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -500,22 +500,7 @@ def is_struct_seq(value):
 
 
 def undocumented_message(module_name, type_name, identifier):
-    return "Undocumented"
-
-    """
-    if str(type_name).startswith('<module'):
-        preloadtitle = '%s.%s' % (module_name, identifier)
-    else:
-        preloadtitle = '%s.%s.%s' % (module_name, type_name, identifier)
-    message = ("Undocumented (`contribute "
-               "<http://wiki.blender.org/index.php/"
-               "Dev:2.5/Py/API/Generating_API_Reference/Contribute"
-               "?action=edit"
-               "&section=new"
-               "&preload=Dev:2.5/Py/API/Generating_API_Reference/Contribute/Howto-message"
-               "&preloadtitle=%s>`_)\n\n" % preloadtitle)
-    return message
-    """
+    return "Undocumented `contribute <https://developer.blender.org/T51061>`"
 
 
 def range_str(val):



More information about the Bf-blender-cvs mailing list