[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [4076] contrib/py/scripts/addons: formatting edits

Campbell Barton ideasman42 at gmail.com
Wed Dec 19 16:47:30 CET 2012


Revision: 4076
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=4076
Author:   campbellbarton
Date:     2012-12-19 15:47:30 +0000 (Wed, 19 Dec 2012)
Log Message:
-----------
formatting edits

Modified Paths:
--------------
    contrib/py/scripts/addons/mesh_extra_tools/mesh_bump.py
    contrib/py/scripts/addons/mesh_extra_tools/mesh_filletplus.py
    contrib/py/scripts/addons/mesh_extra_tools/mesh_polyredux.py
    contrib/py/scripts/addons/mesh_select_tools/mesh_select_by_direction.py
    contrib/py/scripts/addons/mesh_select_tools/mesh_select_by_edge_length.py
    contrib/py/scripts/addons/mesh_select_tools/mesh_select_by_pi.py
    contrib/py/scripts/addons/mesh_select_tools/mesh_select_checkered.py
    contrib/py/scripts/addons/mesh_select_tools/mesh_select_connected_faces.py
    contrib/py/scripts/addons/mesh_select_tools/mesh_select_innermost.py
    contrib/py/scripts/addons/text_intellisense.py

Modified: contrib/py/scripts/addons/mesh_extra_tools/mesh_bump.py
===================================================================
--- contrib/py/scripts/addons/mesh_extra_tools/mesh_bump.py	2012-12-19 15:46:55 UTC (rev 4075)
+++ contrib/py/scripts/addons/mesh_extra_tools/mesh_bump.py	2012-12-19 15:47:30 UTC (rev 4076)
@@ -22,19 +22,18 @@
 # ***** END GPL LICENCE BLOCK *****
 
 bl_info = {
-	"name": "Bump",
-	"author": "Dolf Veenvliet",
-	"version": 1,
-	"blender": (2, 5, 6),
-	"api": 31847,
-	"location": "View3D > Specials > Bump",
-	"description": "Extrude and translate/rotate/scale multiple times",
-	"warning": "",
-	"wiki_url": "",
-	"tracker_url": "",
-	"category": "Mesh"}
-	
-	
+    "name": "Bump",
+    "author": "Dolf Veenvliet",
+    "version": 1,
+    "blender": (2, 5, 6),
+    "api": 31847,
+    "location": "View3D > Specials > Bump",
+    "description": "Extrude and translate/rotate/scale multiple times",
+    "warning": "",
+    "wiki_url": "",
+    "tracker_url": "",
+    "category": "Mesh"}
+
 """
 Usage:
 

Modified: contrib/py/scripts/addons/mesh_extra_tools/mesh_filletplus.py
===================================================================
--- contrib/py/scripts/addons/mesh_extra_tools/mesh_filletplus.py	2012-12-19 15:46:55 UTC (rev 4075)
+++ contrib/py/scripts/addons/mesh_extra_tools/mesh_filletplus.py	2012-12-19 15:47:30 UTC (rev 4076)
@@ -21,17 +21,17 @@
 
 # ------ ------
 bl_info = {
-	"name": "FilletPlus",
-	"author": "Gert De Roost - original by zmj100",
-	"version": (0, 4, 2),
-	"blender": (2, 6, 1),
-	"api": 43085,
-	"location": "View3D > Tool Shelf",
-	"description": "",
-	"warning": "",
-	"wiki_url": "",
-	"tracker_url": "",
-	"category": "Mesh"}
+    "name": "FilletPlus",
+    "author": "Gert De Roost - original by zmj100",
+    "version": (0, 4, 2),
+    "blender": (2, 6, 1),
+    "api": 43085,
+    "location": "View3D > Tool Shelf",
+    "description": "",
+    "warning": "",
+    "wiki_url": "",
+    "tracker_url": "",
+    "category": "Mesh"}
 
 # ------ ------
 import bpy

Modified: contrib/py/scripts/addons/mesh_extra_tools/mesh_polyredux.py
===================================================================
--- contrib/py/scripts/addons/mesh_extra_tools/mesh_polyredux.py	2012-12-19 15:46:55 UTC (rev 4075)
+++ contrib/py/scripts/addons/mesh_extra_tools/mesh_polyredux.py	2012-12-19 15:47:30 UTC (rev 4076)
@@ -19,18 +19,18 @@
 # ***** END GPL LICENCE BLOCK *****
 # --------------------------------------------------------------------------
 bl_info = {
-	"name": "PolyRedux",
-	"author": "Campbell J Barton - updated by Gert De Roost",
-	"version": (2, 0, 4),
-	"blender": (2, 6, 3),
-	"location": "View3D > Tools",
-	"description": "predictable mesh simplifaction maintaining face loops",
-	"warning": "",
-	"wiki_url": "",
-	"tracker_url": "",
-	"category": "Mesh"}
-	
+    "name": "PolyRedux",
+    "author": "Campbell J Barton - updated by Gert De Roost",
+    "version": (2, 0, 4),
+    "blender": (2, 6, 3),
+    "location": "View3D > Tools",
+    "description": "predictable mesh simplifaction maintaining face loops",
+    "warning": "",
+    "wiki_url": "",
+    "tracker_url": "",
+    "category": "Mesh"}
 
+
 if "bpy" in locals():
     import imp
 

Modified: contrib/py/scripts/addons/mesh_select_tools/mesh_select_by_direction.py
===================================================================
--- contrib/py/scripts/addons/mesh_select_tools/mesh_select_by_direction.py	2012-12-19 15:46:55 UTC (rev 4075)
+++ contrib/py/scripts/addons/mesh_select_tools/mesh_select_by_direction.py	2012-12-19 15:47:30 UTC (rev 4076)
@@ -22,18 +22,18 @@
 # ***** END GPL LICENCE BLOCK *****
 '''
 bl_info = {
-	"name": "Select by direction",
-	"author": "Dolf Veenvliet",
-	"version": 1,
-	"blender": (2, 5, 6),
-	"api": 31847,
-	"location": "View3D > Select",
-	"description": "Select all items whose normals face a certain direction",
-	"warning": "",
-	"wiki_url": "",
-	"tracker_url": "",
-	"category": "Mesh"}
-	
+    "name": "Select by direction",
+    "author": "Dolf Veenvliet",
+    "version": 1,
+    "blender": (2, 5, 6),
+    "api": 31847,
+    "location": "View3D > Select",
+    "description": "Select all items whose normals face a certain direction",
+    "warning": "",
+    "wiki_url": "",
+    "tracker_url": "",
+    "category": "Mesh"}
+
 """
 Usage:
 

Modified: contrib/py/scripts/addons/mesh_select_tools/mesh_select_by_edge_length.py
===================================================================
--- contrib/py/scripts/addons/mesh_select_tools/mesh_select_by_edge_length.py	2012-12-19 15:46:55 UTC (rev 4075)
+++ contrib/py/scripts/addons/mesh_select_tools/mesh_select_by_edge_length.py	2012-12-19 15:47:30 UTC (rev 4076)
@@ -22,18 +22,18 @@
 # ***** END GPL LICENCE BLOCK *****
 '''
 bl_info = {
-	"name": "Select by edge length",
-	"author": "Dolf Veenvliet",
-	"version": 1,
-	"blender": (2, 5, 6),
-	"api": 31847,
-	"location": "View3D > Select",
-	"description": "Select all items whose scale/length/surface matches a certain edge length",
-	"warning": "",
-	"wiki_url": "",
-	"tracker_url": "",
-	"category": "Mesh"}
-	
+    "name": "Select by edge length",
+    "author": "Dolf Veenvliet",
+    "version": 1,
+    "blender": (2, 5, 6),
+    "api": 31847,
+    "location": "View3D > Select",
+    "description": "Select all items whose scale/length/surface matches a certain edge length",
+    "warning": "",
+    "wiki_url": "",
+    "tracker_url": "",
+    "category": "Mesh"}
+
 """
 Usage:
 

Modified: contrib/py/scripts/addons/mesh_select_tools/mesh_select_by_pi.py
===================================================================
--- contrib/py/scripts/addons/mesh_select_tools/mesh_select_by_pi.py	2012-12-19 15:46:55 UTC (rev 4075)
+++ contrib/py/scripts/addons/mesh_select_tools/mesh_select_by_pi.py	2012-12-19 15:47:30 UTC (rev 4076)
@@ -22,18 +22,18 @@
 # ***** END GPL LICENCE BLOCK *****
 '''
 bl_info = {
-	"name": "Select by pi",
-	"author": "Dolf Veenvliet",
-	"version": 1,
-	"blender": (2, 5, 6),
-	"api": 31847,
-	"location": "View3D > Select",
-	"description": "Select fake random based on pi",
-	"warning": "",
-	"wiki_url": "",
-	"tracker_url": "",
-	"category": "Mesh"}
-	
+    "name": "Select by pi",
+    "author": "Dolf Veenvliet",
+    "version": 1,
+    "blender": (2, 5, 6),
+    "api": 31847,
+    "location": "View3D > Select",
+    "description": "Select fake random based on pi",
+    "warning": "",
+    "wiki_url": "",
+    "tracker_url": "",
+    "category": "Mesh"}
+
 """
 Usage:
 

Modified: contrib/py/scripts/addons/mesh_select_tools/mesh_select_checkered.py
===================================================================
--- contrib/py/scripts/addons/mesh_select_tools/mesh_select_checkered.py	2012-12-19 15:46:55 UTC (rev 4075)
+++ contrib/py/scripts/addons/mesh_select_tools/mesh_select_checkered.py	2012-12-19 15:47:30 UTC (rev 4076)
@@ -22,18 +22,18 @@
 # ***** END GPL LICENCE BLOCK *****
 
 bl_info = {
-	"name": "Select checkered",
-	"author": "Dolf Veenvliet",
-	"version": 1,
-	"blender": (2, 5, 6),
-	"api": 31847,
-	"location": "View3D > Select",
-	"description": "Select checkered",
-	"warning": "",
-	"wiki_url": "",
-	"tracker_url": "",
-	"category": "Mesh"}
-	
+    "name": "Select checkered",
+    "author": "Dolf Veenvliet",
+    "version": 1,
+    "blender": (2, 5, 6),
+    "api": 31847,
+    "location": "View3D > Select",
+    "description": "Select checkered",
+    "warning": "",
+    "wiki_url": "",
+    "tracker_url": "",
+    "category": "Mesh"}
+
 """
 Usage:
 

Modified: contrib/py/scripts/addons/mesh_select_tools/mesh_select_connected_faces.py
===================================================================
--- contrib/py/scripts/addons/mesh_select_tools/mesh_select_connected_faces.py	2012-12-19 15:46:55 UTC (rev 4075)
+++ contrib/py/scripts/addons/mesh_select_tools/mesh_select_connected_faces.py	2012-12-19 15:47:30 UTC (rev 4076)
@@ -21,19 +21,19 @@
 #
 # ***** END GPL LICENCE BLOCK *****
 '''
-bl_info = {
-	"name": "Select connected faces",
-	"author": "Dolf Veenvliet",
-	"version": 1,
-	"blender": (2, 5, 6),
-	"api": 31847,
-	"location": "View3D > Select",
-	"description": "Select all faces connected to the current selection",
-	"warning": "",
-	"wiki_url": "",
-	"tracker_url": "",
-	"category": "Mesh"}
-	
+    bl_info = {
+    "name": "Select connected faces",
+    "author": "Dolf Veenvliet",
+    "version": 1,
+    "blender": (2, 5, 6),
+    "api": 31847,
+    "location": "View3D > Select",
+    "description": "Select all faces connected to the current selection",
+    "warning": "",
+    "wiki_url": "",
+    "tracker_url": "",
+    "category": "Mesh"}
+
 """
 Usage:
 

Modified: contrib/py/scripts/addons/mesh_select_tools/mesh_select_innermost.py
===================================================================
--- contrib/py/scripts/addons/mesh_select_tools/mesh_select_innermost.py	2012-12-19 15:46:55 UTC (rev 4075)
+++ contrib/py/scripts/addons/mesh_select_tools/mesh_select_innermost.py	2012-12-19 15:47:30 UTC (rev 4076)
@@ -22,17 +22,17 @@
 # ***** END GPL LICENCE BLOCK *****
 '''
 bl_info = {
-	"name": "Select innermost",
-	"author": "Dolf Veenvliet",
-	"version": (0,3),
-	"blender": (2, 5, 7),
-	"api": 35851,
-	"location": "Select > Innermost",
-	"description": "Select the innermost faces",
-	"warning": "",
-	"wiki_url": "",
-	"tracker_url": "",
-	"category": "Mesh"}
+    "name": "Select innermost",
+    "author": "Dolf Veenvliet",
+    "version": (0,3),
+    "blender": (2, 5, 7),
+    "api": 35851,
+    "location": "Select > Innermost",
+    "description": "Select the innermost faces",
+    "warning": "",
+    "wiki_url": "",
+    "tracker_url": "",
+    "category": "Mesh"}
 
 """
 Usage:

Modified: contrib/py/scripts/addons/text_intellisense.py
===================================================================
--- contrib/py/scripts/addons/text_intellisense.py	2012-12-19 15:46:55 UTC (rev 4075)
+++ contrib/py/scripts/addons/text_intellisense.py	2012-12-19 15:47:30 UTC (rev 4076)
@@ -18,17 +18,17 @@
 # ***** END GPL LICENCE BLOCK *****
 
 bl_info = {
-	"name": "Intellisense for Text Editor",
-	"author": "Mackraken",
-	"version": (0, 2),
-	"blender": (2, 6, 0),
-	"api": 41851,
-	"location": "Ctrl + Space at Text Editor",
-	"description": "Adds intellense to the Text Editor",
-	"warning": "Only works with 2.57 intellisense",
-	"wiki_url": "",
-	"tracker_url": "",
-	"category": "Development"}
+    "name": "Intellisense for Text Editor",
+    "author": "Mackraken",
+    "version": (0, 2),

@@ Diff output truncated at 10240 characters. @@


More information about the Bf-extensions-cvs mailing list