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:
authorWillian Padovani Germano <wpgermano@gmail.com>2004-11-07 19:31:13 +0300
committerWillian Padovani Germano <wpgermano@gmail.com>2004-11-07 19:31:13 +0300
commitc702b237d5f9a542c1d327e1c87a5b7e7ec81590 (patch)
tree99347ced1b1260843aff9c6f70670a2a9d45f7f8 /release/scripts/doc_browser.py
parent23e8b982288699258c4bf4d7f5464f968b98d5cf (diff)
Scripts:
-- adding help_browser.py to show help for installed scripts; -- updated scripts to include basic doc info to be shown with above script: script authors can / will / should update with more info, of course; -- updated some scripts to newer versions: disp_paint, fixfromarmature, hotkeys, etc.
Diffstat (limited to 'release/scripts/doc_browser.py')
-rw-r--r--release/scripts/doc_browser.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/release/scripts/doc_browser.py b/release/scripts/doc_browser.py
index e9c63b3d319..9c8d77caca6 100644
--- a/release/scripts/doc_browser.py
+++ b/release/scripts/doc_browser.py
@@ -7,6 +7,24 @@ Group: 'Misc'
Tip: 'Browse BPython (scripting API) modules doc strings.'
"""
+__author__ = "Daniel Dunbar"
+__url__ = ("blender", "elysiun")
+__version__ = "1.0"
+__bpydoc__ = """\
+The "Doc Browser" lets users navigate the documentation strings of part of
+the Blender Python API.
+
+It doesn't give access yet to object method functions and variables, only to
+module functions, but still it is a handy reference. Specially for quick
+access, for example to Blender.BGL: the module that wraps OpenGL calls.
+
+Notes:<br>
+ Everyone interested in the bpython api is also invited to read "The Blender
+Python API Reference" doc, available online ("Python Scripting Reference"
+entry in Blender's Help menu).
+"""
+
+
# $Id$
#
# --------------------------------------------------------------------------