[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [56501] trunk/blender/doc/python_api/rst: Fix #35216: code examples like simple operator missing from python docs due to

Brecht Van Lommel brechtvanlommel at pandora.be
Sun May 5 07:56:49 CEST 2013


Revision: 56501
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=56501
Author:   blendix
Date:     2013-05-05 05:56:48 +0000 (Sun, 05 May 2013)
Log Message:
-----------
Fix #35216: code examples like simple operator missing from python docs due to
rename of directory.

Modified Paths:
--------------
    trunk/blender/doc/python_api/rst/include__bmesh.rst
    trunk/blender/doc/python_api/rst/info_quickstart.rst

Modified: trunk/blender/doc/python_api/rst/include__bmesh.rst
===================================================================
--- trunk/blender/doc/python_api/rst/include__bmesh.rst	2013-05-05 05:56:41 UTC (rev 56500)
+++ trunk/blender/doc/python_api/rst/include__bmesh.rst	2013-05-05 05:56:48 UTC (rev 56501)
@@ -47,7 +47,7 @@
 Example Script
 --------------
 
-.. literalinclude:: ../../../release/scripts/templates/bmesh_simple.py
+.. literalinclude:: ../../../release/scripts/templates_py/bmesh_simple.py
 
 
 Stand-Alone Module

Modified: trunk/blender/doc/python_api/rst/info_quickstart.rst
===================================================================
--- trunk/blender/doc/python_api/rst/info_quickstart.rst	2013-05-05 05:56:41 UTC (rev 56500)
+++ trunk/blender/doc/python_api/rst/info_quickstart.rst	2013-05-05 05:56:48 UTC (rev 56501)
@@ -285,7 +285,7 @@
 Example Operator
 ----------------
 
-.. literalinclude:: ../../../release/scripts/templates/operator_simple.py
+.. literalinclude:: ../../../release/scripts/templates_py/operator_simple.py
 
 Once this script runs, ``SimpleOperator`` is registered with Blender and can be called from the operator search popup or added to the toolbar.
 
@@ -318,7 +318,7 @@
 
 Panels register themselves as a class, like an operator. Notice the extra **bl_** variables used to set the context they display in.
 
-.. literalinclude:: ../../../release/scripts/templates/ui_panel_simple.py
+.. literalinclude:: ../../../release/scripts/templates_py/ui_panel_simple.py
 
 To run the script:
 




More information about the Bf-blender-cvs mailing list