[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [4073] trunk/py/scripts/addons: formatting edits for bl_info

Campbell Barton ideasman42 at gmail.com
Wed Dec 19 16:42:02 CET 2012


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

Modified Paths:
--------------
    trunk/py/scripts/addons/add_mesh_extra_objects/add_mesh_supertoroid.py
    trunk/py/scripts/addons/io_anim_acclaim/__init__.py
    trunk/py/scripts/addons/io_anim_c3d/__init__.py
    trunk/py/scripts/addons/io_export_after_effects.py
    trunk/py/scripts/addons/io_import_scene_dxf.py
    trunk/py/scripts/addons/io_scene_obj/import_obj.py
    trunk/py/scripts/addons/light_field_tools/__init__.py
    trunk/py/scripts/addons/mesh_looptools.py
    trunk/py/scripts/addons/space_view3d_copy_attributes.py
    trunk/py/scripts/addons/space_view3d_screencast_keys.py

Modified: trunk/py/scripts/addons/add_mesh_extra_objects/add_mesh_supertoroid.py
===================================================================
--- trunk/py/scripts/addons/add_mesh_extra_objects/add_mesh_supertoroid.py	2012-12-19 11:28:34 UTC (rev 4072)
+++ trunk/py/scripts/addons/add_mesh_extra_objects/add_mesh_supertoroid.py	2012-12-19 15:42:01 UTC (rev 4073)
@@ -1,14 +1,14 @@
 '''
 bl_addon_info = {
-    'name': 'Add Mesh: SuperToroid',
-    'author': 'DreamPainter',
-    'version': '1',
-    'blender': (2, 5, 3),
-    'location': 'View3D > Add > Mesh > SuperToroid',
-    'description': 'Add a SuperToroid mesh',
-    'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
-        'Scripts/Add_Mesh/',  # no url
-    'category': 'Add Mesh'}
+    "name": "Add Mesh: SuperToroid",
+    "author": "DreamPainter",
+    "version": (1, 0, 0),
+    "blender": (2, 5, 3),
+    "location": "View3D > Add > Mesh > SuperToroid",
+    "description": "Add a SuperToroid mesh",
+    "url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/" \
+        "Scripts/Add_Mesh/",  # no url
+    "category": "Add Mesh"}
 '''
 import bpy
 from bpy.props import FloatProperty,BoolProperty,IntProperty

Modified: trunk/py/scripts/addons/io_anim_acclaim/__init__.py
===================================================================
--- trunk/py/scripts/addons/io_anim_acclaim/__init__.py	2012-12-19 11:28:34 UTC (rev 4072)
+++ trunk/py/scripts/addons/io_anim_acclaim/__init__.py	2012-12-19 15:42:01 UTC (rev 4073)
@@ -23,17 +23,17 @@
 
 
 bl_info = {
-    'name': "Acclaim Motion Capture Files (.asf, .amc)",
-    'author': "Daniel Monteiro Basso <daniel at basso.inf.br>",
-    'version': (2012, 2, 29, 1),
-    'blender': (2, 6, 2),
-    'location': "File > Import-Export",
-    'description': "Imports Acclaim Skeleton and Motion Capture Files",
-    'wiki_url': "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
+    "name": "Acclaim Motion Capture Files (.asf, .amc)",
+    "author": "Daniel Monteiro Basso <daniel at basso.inf.br>",
+    "version": (2012, 2, 29, 1),
+    "blender": (2, 6, 2),
+    "location": "File > Import-Export",
+    "description": "Imports Acclaim Skeleton and Motion Capture Files",
+    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
                 "Scripts/Import-Export/Acclaim_Importer",
-    'tracker_url': "http://projects.blender.org/tracker/index.php?"
+    "tracker_url": "http://projects.blender.org/tracker/index.php?"
                    "func=detail&aid=27127&group_id=153&atid=467",
-    'category': 'Import-Export'}
+    "category": "Import-Export"}
 
 
 import re

Modified: trunk/py/scripts/addons/io_anim_c3d/__init__.py
===================================================================
--- trunk/py/scripts/addons/io_anim_c3d/__init__.py	2012-12-19 11:28:34 UTC (rev 4072)
+++ trunk/py/scripts/addons/io_anim_c3d/__init__.py	2012-12-19 15:42:01 UTC (rev 4073)
@@ -23,17 +23,17 @@
 
 
 bl_info = {
-    'name': "C3D Graphics Lab Motion Capture file (.c3d)",
-    'author': "Daniel Monteiro Basso <daniel at basso.inf.br>",
-    'version': (2012, 7, 11, 1),
-    'blender': (2, 6, 3),
-    'location': "File > Import",
-    'description': "Imports C3D Graphics Lab Motion Capture files",
-    'wiki_url': "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
+    "name": "C3D Graphics Lab Motion Capture file (.c3d)",
+    "author": "Daniel Monteiro Basso <daniel at basso.inf.br>",
+    "version": (2012, 7, 11, 1),
+    "blender": (2, 6, 3),
+    "location": "File > Import",
+    "description": "Imports C3D Graphics Lab Motion Capture files",
+    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
                 "Scripts/Import-Export/C3D_Importer",
-    'tracker_url': "http://projects.blender.org/tracker/?func=detail&atid=467"
+    "tracker_url": "http://projects.blender.org/tracker/?func=detail&atid=467"
                    "&aid=29061&group_id=153",
-    'category': 'Import-Export'}
+    "category": 'Import-Export'}
 
 
 import bpy

Modified: trunk/py/scripts/addons/io_export_after_effects.py
===================================================================
--- trunk/py/scripts/addons/io_export_after_effects.py	2012-12-19 11:28:34 UTC (rev 4072)
+++ trunk/py/scripts/addons/io_export_after_effects.py	2012-12-19 15:42:01 UTC (rev 4073)
@@ -19,18 +19,18 @@
 # <pep8 compliant>
 
 bl_info = {
-    'name': 'Export: Adobe After Effects (.jsx)',
-    'description': 'Export cameras, selected objects & camera solution 3D Markers to Adobe After Effects CS3 and above',
-    'author': 'Bartek Skorupa',
-    'version': (0, 6, 3),
-    'blender': (2, 6, 2),
-    'location': 'File > Export > Adobe After Effects (.jsx)',
+    "name": "Export: Adobe After Effects (.jsx)",
+    "description": "Export cameras, selected objects & camera solution 3D Markers to Adobe After Effects CS3 and above",
+    "author": "Bartek Skorupa",
+    "version": (0, 6, 3),
+    "blender": (2, 6, 2),
+    "location": "File > Export > Adobe After Effects (.jsx)",
     "warning": "",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"\
         "Scripts/Import-Export/Adobe_After_Effects",
     "tracker_url": "https://projects.blender.org/tracker/index.php?"\
         "func=detail&aid=29858",
-    'category': 'Import-Export',
+    "category": "Import-Export",
     }
 
 

Modified: trunk/py/scripts/addons/io_import_scene_dxf.py
===================================================================
--- trunk/py/scripts/addons/io_import_scene_dxf.py	2012-12-19 11:28:34 UTC (rev 4072)
+++ trunk/py/scripts/addons/io_import_scene_dxf.py	2012-12-19 15:42:01 UTC (rev 4073)
@@ -17,19 +17,19 @@
 # ##### END GPL LICENSE BLOCK #####
 
 bl_info = {
-    'name': 'Import Autocad DXF Format (.dxf)',
-    'author': 'Thomas Larsson, Remigiusz Fiedler',
-    'version': (0, 1, 6),
-    'blender': (2, 6, 3),
-    'location': 'File > Import > Autocad (.dxf)',
-    'description': 'Import files in the Autocad DXF format (.dxf)',
-    'warning': 'Under construction! Visit Wiki for details.',
-    'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.6/Py/'\
-        'Scripts/Import-Export/DXF_Importer',
-    'tracker_url': 'https://projects.blender.org/tracker/index.php?'\
-        'func=detail&aid=23480',
-    'support': 'OFFICIAL',
-    'category': 'Import-Export',
+    "name": "Import Autocad DXF Format (.dxf)",
+    "author": "Thomas Larsson, Remigiusz Fiedler",
+    "version": (0, 1, 6),
+    "blender": (2, 6, 3),
+    "location": "File > Import > Autocad (.dxf)",
+    "description": "Import files in the Autocad DXF format (.dxf)",
+    "warning": "Under construction! Visit Wiki for details.",
+    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
+                "Scripts/Import-Export/DXF_Importer",
+    "tracker_url": "https://projects.blender.org/tracker/index.php?"
+                   "func=detail&aid=23480",
+    "support": "OFFICIAL",
+    "category": "Import-Export",
     }
 
 """

Modified: trunk/py/scripts/addons/io_scene_obj/import_obj.py
===================================================================
--- trunk/py/scripts/addons/io_scene_obj/import_obj.py	2012-12-19 11:28:34 UTC (rev 4072)
+++ trunk/py/scripts/addons/io_scene_obj/import_obj.py	2012-12-19 15:42:01 UTC (rev 4073)
@@ -1171,15 +1171,3 @@
 
     print("finished importing: %r in %.4f sec." % (filepath, (time_new - time_main)))
     return {'FINISHED'}
-
-
-# NOTES (all line numbers refer to 2.4x import_obj.py, not this file)
-# check later: line 489
-# can convert now: edge flags, edges: lines 508-528
-# ngon (uses python module BPyMesh): 384-414
-# NEXT clamp size: get bound box with RNA
-# get back to l 140 (here)
-# search image in bpy.config.textureDir - load_image
-# replaced BPyImage.comprehensiveImageLoad with a simplified version that only checks additional directory specified, but doesn't search dirs recursively (obj_image_load)
-# bitmask won't work? - 132
-# uses bpy.sys.time()

Modified: trunk/py/scripts/addons/light_field_tools/__init__.py
===================================================================
--- trunk/py/scripts/addons/light_field_tools/__init__.py	2012-12-19 11:28:34 UTC (rev 4072)
+++ trunk/py/scripts/addons/light_field_tools/__init__.py	2012-12-19 15:42:01 UTC (rev 4073)
@@ -18,16 +18,16 @@
 
 
 bl_info = {
-    'name': 'Light Field Tools',
-    'author': 'Aurel Wildfellner',
-    'description': 'Tools to create a light field camera and projector',
-    'version': (0, 3, 0),
-    'blender': (2, 6, 4),
-    'location': 'View3D > Tool Shelf > Light Field Tools',
-    'url': 'http://www.jku.at/cg/',
+    "name": "Light Field Tools",
+    "author": "Aurel Wildfellner",
+    "description": "Tools to create a light field camera and projector",
+    "version": (0, 3, 0),
+    "blender": (2, 6, 4),
+    "location": "View3D > Tool Shelf > Light Field Tools",
+    "url": "http://www.jku.at/cg/",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Render/Light_Field_Tools",
     "tracker_url": "http://projects.blender.org/tracker/index.php?func=detail&aid=25719",
-    'category': 'Render'
+    "category": "Render"
 }
 
 

Modified: trunk/py/scripts/addons/mesh_looptools.py
===================================================================
--- trunk/py/scripts/addons/mesh_looptools.py	2012-12-19 11:28:34 UTC (rev 4072)
+++ trunk/py/scripts/addons/mesh_looptools.py	2012-12-19 15:42:01 UTC (rev 4073)
@@ -17,18 +17,18 @@
 # ##### END GPL LICENSE BLOCK #####
 
 bl_info = {
-    'name': "LoopTools",
-    'author': "Bart Crouch",
-    'version': (4, 2, 0),
-    'blender': (2, 6, 3),
-    'location': "View3D > Toolbar and View3D > Specials (W-key)",
-    'warning': "",
-    'description': "Mesh modelling toolkit. Several tools to aid modelling",
-    'wiki_url': "http://wiki.blender.org/index.php/Extensions:2.6/Py/"\
-        "Scripts/Modeling/LoopTools",
-    'tracker_url': "http://projects.blender.org/tracker/index.php?"\
-        "func=detail&aid=26189",
-    'category': 'Mesh'}
+    "name": "LoopTools",
+    "author": "Bart Crouch",
+    "version": (4, 2, 0),
+    "blender": (2, 6, 3),
+    "location": "View3D > Toolbar and View3D > Specials (W-key)",
+    "warning": "",
+    "description": "Mesh modelling toolkit. Several tools to aid modelling",
+    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"

@@ Diff output truncated at 10240 characters. @@


More information about the Bf-extensions-cvs mailing list