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
path: root/doc
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2018-08-14 04:43:51 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2018-08-14 04:43:51 +0300
commit0e7dd01944d880dcc22bd4783da9a5cc22510be8 (patch)
tree4d3fb06d0778873d87f1ce3abf93385258fcc839 /doc
parente040cfe15aff695246efcb4bbb0ea6fa4992fd19 (diff)
PyDoc: remove old undocumented message
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/sphinx_doc_gen.py17
1 files changed, 1 insertions, 16 deletions
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):