[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [1609] trunk/py/scripts/addons: update for changes in blender.

Campbell Barton ideasman42 at gmail.com
Wed Feb 16 03:52:13 CET 2011


Revision: 1609
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=1609
Author:   campbellbarton
Date:     2011-02-16 02:52:12 +0000 (Wed, 16 Feb 2011)
Log Message:
-----------
update for changes in blender.

Modified Paths:
--------------
    trunk/py/scripts/addons/development_icon_get.py
    trunk/py/scripts/addons/io_coat3D/__init__.py
    trunk/py/scripts/addons/modules/extensions_framework/__init__.py
    trunk/py/scripts/addons/render_renderfarmfi.py
    trunk/py/scripts/addons/rigify/__init__.py
    trunk/py/scripts/addons/rigify/rigs/biped/arm/__init__.py
    trunk/py/scripts/addons/rigify/rigs/biped/leg/__init__.py
    trunk/py/scripts/addons/rigify/rigs/finger.py
    trunk/py/scripts/addons/rigify/rigs/palm.py
    trunk/py/scripts/addons/text_editor_api_navigator.py

Modified: trunk/py/scripts/addons/development_icon_get.py
===================================================================
--- trunk/py/scripts/addons/development_icon_get.py	2011-02-16 02:26:15 UTC (rev 1608)
+++ trunk/py/scripts/addons/development_icon_get.py	2011-02-16 02:52:12 UTC (rev 1609)
@@ -203,7 +203,7 @@
     icons_total = len(create_icon_list_all())
     icons_per_row = 10
 
-    class IconProps(bpy.types.IDPropertyGroup):
+    class IconProps(bpy.types.PropertyGroup):
         """
         Fake module like class
         bpy.context.scene.icon_props

Modified: trunk/py/scripts/addons/io_coat3D/__init__.py
===================================================================
--- trunk/py/scripts/addons/io_coat3D/__init__.py	2011-02-16 02:26:15 UTC (rev 1608)
+++ trunk/py/scripts/addons/io_coat3D/__init__.py	2011-02-16 02:52:12 UTC (rev 1609)
@@ -51,7 +51,7 @@
     bpy.coat3D['status'] = 0
     bpy.coat3D['kuva'] = 1
     
-    class ObjectCoat3D(bpy.types.IDPropertyGroup):
+    class ObjectCoat3D(bpy.types.PropertyGroup):
         objpath = StringProperty(name="Object_Path")
         coatpath = StringProperty(name="Coat_Path")
         objectdir = StringProperty(name="ObjectPath", subtype="FILE_PATH")
@@ -59,7 +59,7 @@
         path3b = StringProperty(name="3B Path", subtype="FILE_PATH")
 
 
-    class SceneCoat3D(bpy.types.IDPropertyGroup):
+    class SceneCoat3D(bpy.types.PropertyGroup):
         exchangedir = StringProperty(
             name="FilePath",
             subtype="DIR_PATH",

Modified: trunk/py/scripts/addons/modules/extensions_framework/__init__.py
===================================================================
--- trunk/py/scripts/addons/modules/extensions_framework/__init__.py	2011-02-16 02:26:15 UTC (rev 1608)
+++ trunk/py/scripts/addons/modules/extensions_framework/__init__.py	2011-02-16 02:52:12 UTC (rev 1609)
@@ -115,7 +115,7 @@
 			# Silently skip invalid entries in props
 			continue
 
-class declarative_property_group(bpy.types.IDPropertyGroup):
+class declarative_property_group(bpy.types.PropertyGroup):
 	"""A declarative_property_group describes a set of logically
 	related properties, using a declarative style to list each
 	property type, name, values, and other relevant information.
@@ -137,7 +137,7 @@
 	ef_initialised = False
 	
 	"""This property tells extensions_framework which bpy.type(s)
-	to attach this IDPropertyGroup to. If left as an empty list,
+	to attach this PropertyGroup to. If left as an empty list,
 	it will not be attached to any type, but its properties will
 	still be initialised. The type(s) given in the list should be
 	a string, such as 'Scene'.

Modified: trunk/py/scripts/addons/render_renderfarmfi.py
===================================================================
--- trunk/py/scripts/addons/render_renderfarmfi.py	2011-02-16 02:26:15 UTC (rev 1608)
+++ trunk/py/scripts/addons/render_renderfarmfi.py	2011-02-16 02:52:12 UTC (rev 1609)
@@ -81,10 +81,10 @@
         ('7', 'Copyright', 'Copyright, no license specified'),
         )
 
-class ORESession(bpy.types.IDPropertyGroup):
+class ORESession(bpy.types.PropertyGroup):
     name = StringProperty(name='Name', description='Name of the session', maxlen=128, default='[session]')
 
-class ORESettings(bpy.types.IDPropertyGroup):
+class ORESettings(bpy.types.PropertyGroup):
     username = StringProperty(name='E-mail', description='E-mail for Renderfarm.fi', maxlen=256, default='')
     password = StringProperty(name='Password', description='Renderfarm.fi password', maxlen=256, default='')
     hash = StringProperty(name='Hash', description='hash calculated out of credentials', maxlen=33, default='')

Modified: trunk/py/scripts/addons/rigify/__init__.py
===================================================================
--- trunk/py/scripts/addons/rigify/__init__.py	2011-02-16 02:26:15 UTC (rev 1608)
+++ trunk/py/scripts/addons/rigify/__init__.py	2011-02-16 02:52:12 UTC (rev 1609)
@@ -108,11 +108,11 @@
     col_enum_list += [(c, c, "")]
 
 
-class RigifyName(bpy.types.IDPropertyGroup):
+class RigifyName(bpy.types.PropertyGroup):
     name = bpy.props.StringProperty()
 
 
-class RigifyParameters(bpy.types.IDPropertyGroup):
+class RigifyParameters(bpy.types.PropertyGroup):
     name = bpy.props.StringProperty()
 
 

Modified: trunk/py/scripts/addons/rigify/rigs/biped/arm/__init__.py
===================================================================
--- trunk/py/scripts/addons/rigify/rigs/biped/arm/__init__.py	2011-02-16 02:26:15 UTC (rev 1608)
+++ trunk/py/scripts/addons/rigify/rigs/biped/arm/__init__.py	2011-02-16 02:52:12 UTC (rev 1609)
@@ -69,7 +69,7 @@
     @classmethod
     def add_parameters(self, group):
         """ Add the parameters of this rig type to the
-            RigifyParameters IDPropertyGroup
+            RigifyParameters PropertyGroup
 
         """
         items = [('X', 'X', ''), ('Y', 'Y', ''), ('Z', 'Z', ''), ('-X', '-X', ''), ('-Y', '-Y', ''), ('-Z', '-Z', '')]

Modified: trunk/py/scripts/addons/rigify/rigs/biped/leg/__init__.py
===================================================================
--- trunk/py/scripts/addons/rigify/rigs/biped/leg/__init__.py	2011-02-16 02:26:15 UTC (rev 1608)
+++ trunk/py/scripts/addons/rigify/rigs/biped/leg/__init__.py	2011-02-16 02:52:12 UTC (rev 1609)
@@ -69,7 +69,7 @@
     @classmethod
     def add_parameters(self, group):
         """ Add the parameters of this rig type to the
-            RigifyParameters IDPropertyGroup
+            RigifyParameters PropertyGroup
 
         """
         items = [('X', 'X', ''), ('Y', 'Y', ''), ('Z', 'Z', ''), ('-X', '-X', ''), ('-Y', '-Y', ''), ('-Z', '-Z', '')]

Modified: trunk/py/scripts/addons/rigify/rigs/finger.py
===================================================================
--- trunk/py/scripts/addons/rigify/rigs/finger.py	2011-02-16 02:26:15 UTC (rev 1608)
+++ trunk/py/scripts/addons/rigify/rigs/finger.py	2011-02-16 02:52:12 UTC (rev 1609)
@@ -277,7 +277,7 @@
     @classmethod
     def add_parameters(self, group):
         """ Add the parameters of this rig type to the
-            RigifyParameters IDPropertyGroup
+            RigifyParameters PropertyGroup
         """
         items = [('X', 'X', ''), ('Y', 'Y', ''), ('Z', 'Z', ''), ('-X', '-X', ''), ('-Y', '-Y', ''), ('-Z', '-Z', '')]
         group.primary_rotation_axis = bpy.props.EnumProperty(items=items, name="Primary Rotation Axis", default='X')

Modified: trunk/py/scripts/addons/rigify/rigs/palm.py
===================================================================
--- trunk/py/scripts/addons/rigify/rigs/palm.py	2011-02-16 02:26:15 UTC (rev 1608)
+++ trunk/py/scripts/addons/rigify/rigs/palm.py	2011-02-16 02:52:12 UTC (rev 1609)
@@ -161,7 +161,7 @@
     @classmethod
     def add_parameters(self, group):
         """ Add the parameters of this rig type to the
-            RigifyParameters IDPropertyGroup
+            RigifyParameters PropertyGroup
 
         """
         items = [('X', 'X', ''), ('Z', 'Z', '')]

Modified: trunk/py/scripts/addons/text_editor_api_navigator.py
===================================================================
--- trunk/py/scripts/addons/text_editor_api_navigator.py	2011-02-16 02:26:15 UTC (rev 1608)
+++ trunk/py/scripts/addons/text_editor_api_navigator.py	2011-02-16 02:52:12 UTC (rev 1609)
@@ -675,7 +675,7 @@
 def register():
     from bpy.props import StringProperty, IntProperty, PointerProperty
     
-    class ApiNavProps(bpy.types.IDPropertyGroup):
+    class ApiNavProps(bpy.types.PropertyGroup):
         """
         Fake module like class.
     



More information about the Bf-extensions-cvs mailing list