[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [1095] contrib/py/scripts/addons: licensing & cleanups

Brendon Murphy meta.androcto1 at gmail.com
Sat Oct 16 03:31:28 CEST 2010


Revision: 1095
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-extensions&revision=1095
Author:   meta-androcto
Date:     2010-10-16 03:31:28 +0200 (Sat, 16 Oct 2010)

Log Message:
-----------
licensing & cleanups

Modified Paths:
--------------
    contrib/py/scripts/addons/system_icon_get.py
    contrib/py/scripts/addons/system_keyboard_svg.py

Modified: contrib/py/scripts/addons/system_icon_get.py
===================================================================
--- contrib/py/scripts/addons/system_icon_get.py	2010-10-16 01:19:58 UTC (rev 1094)
+++ contrib/py/scripts/addons/system_icon_get.py	2010-10-16 01:31:28 UTC (rev 1095)
@@ -1,14 +1,38 @@
+# ***** BEGIN GPL LICENSE BLOCK *****
+#
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software Foundation,
+# Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+# ***** END GPL LICENCE BLOCK *****
 # retrieving the masterlist with all icon names
+
 bl_addon_info = {
-    'name': 'Display All Icons',
-    'author': '',
-    'version': '0.3.2',
-    'blender': (2, 5, 3),
-    'location': 'Object > Properties',
-    'description': 'Fetch Icons * display',
-    'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
+    "name": "Display All Icons",
+    "author": "",
+    "version": (0,3),
+    "blender": (2, 5, 3),
+    "api": 32411,
+    "location": "Object > Properties",
+    "description": "Fetch Icons from internet * display",
+    "warning": "",
+    "wiki_url": 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
         'Scripts/',
-    'category': 'System'}
+    "tracker_url": "https://projects.blender.org/tracker/index.php?" \
+        "func==detail&aid=22011&group_id=153&atid=468",
+    "category": "System"}
+
 import bpy
 try:
     import urllib.request

Modified: contrib/py/scripts/addons/system_keyboard_svg.py
===================================================================
--- contrib/py/scripts/addons/system_keyboard_svg.py	2010-10-16 01:19:58 UTC (rev 1094)
+++ contrib/py/scripts/addons/system_keyboard_svg.py	2010-10-16 01:31:28 UTC (rev 1095)
@@ -1,3 +1,21 @@
+# ***** BEGIN GPL LICENSE BLOCK *****
+#
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software Foundation,
+# Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+# ***** END GPL LICENCE BLOCK *****
 # this script creates Keyboard layout images of the current keyboard configuration.
 # the result will be writen to the blender default directory.
 
@@ -4,20 +22,20 @@
 # first implementation done by jbakker
 
 bl_addon_info = {
-    'name': 'Keyboard Layout (svg)',
-    'author': 'Jbakker',
-    'version': (1,),
-    'blender': (2, 5, 3),
-    'api': 31667,
-    'location': 'View3D > Ctrl Space',
-    'description': 'Save the hotkeys as a .svg file (search: Keyboard)',
-    'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/'\
+    "name": "Keyboard Layout (svg)",
+    "author": "Jbakker",
+    "version": (0,1),
+    "blender": (2, 5, 4),
+    "api": 32411,
+    "location": "",
+    "description": "Save the hotkeys as a .svg file (search: Keyboard)",
+    "warning": "",
+    "wiki_url": 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
         'Scripts/System/Keyboard Layout (svg)',
-    'tracker_url': 'https://projects.blender.org/tracker/index.php?'\
-        'func=detail&aid=21490&group_id=153&atid=468',
-    'category': 'System'}
+    "tracker_url": "https://projects.blender.org/tracker/index.php?" \
+        "func==detail&aid=21490&group_id=153&atid=468",
+    "category": "System"}
 
-
 import bpy
 
 keyboard=[




More information about the Bf-extensions-cvs mailing list