[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [24203] trunk/blender/release/scripts: GPL2 header from firebird (without disclaimer), notice theres no copyright attributed and only the GPLv2 ( without the v2 or later clause).

Campbell Barton ideasman42 at gmail.com
Sat Oct 31 21:16:59 CET 2009


Revision: 24203
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=24203
Author:   campbellbarton
Date:     2009-10-31 21:16:59 +0100 (Sat, 31 Oct 2009)

Log Message:
-----------
GPL2 header from firebird (without disclaimer), notice theres no copyright attributed and only the GPLv2 (without the v2 or later clause).
Contributors list isnt used much in our C code so probably its easier if people just use svn blame for this.

Can change if this isnt acceptable but I guessed people didnt care so much since most scripts had no header.

Modified Paths:
--------------
    trunk/blender/release/scripts/modules/bpy_ext/Object.py
    trunk/blender/release/scripts/modules/bpy_ext/__init__.py
    trunk/blender/release/scripts/modules/bpy_ops.py
    trunk/blender/release/scripts/modules/bpy_sys.py
    trunk/blender/release/scripts/modules/dynamic_menu.py
    trunk/blender/release/scripts/ui/properties_data_armature.py
    trunk/blender/release/scripts/ui/properties_data_bone.py
    trunk/blender/release/scripts/ui/properties_data_camera.py
    trunk/blender/release/scripts/ui/properties_data_curve.py
    trunk/blender/release/scripts/ui/properties_data_empty.py
    trunk/blender/release/scripts/ui/properties_data_lamp.py
    trunk/blender/release/scripts/ui/properties_data_lattice.py
    trunk/blender/release/scripts/ui/properties_data_mesh.py
    trunk/blender/release/scripts/ui/properties_data_metaball.py
    trunk/blender/release/scripts/ui/properties_data_modifier.py
    trunk/blender/release/scripts/ui/properties_data_text.py
    trunk/blender/release/scripts/ui/properties_game.py
    trunk/blender/release/scripts/ui/properties_material.py
    trunk/blender/release/scripts/ui/properties_object.py
    trunk/blender/release/scripts/ui/properties_object_constraint.py
    trunk/blender/release/scripts/ui/properties_particle.py
    trunk/blender/release/scripts/ui/properties_physics_cloth.py
    trunk/blender/release/scripts/ui/properties_physics_common.py
    trunk/blender/release/scripts/ui/properties_physics_field.py
    trunk/blender/release/scripts/ui/properties_physics_fluid.py
    trunk/blender/release/scripts/ui/properties_physics_smoke.py
    trunk/blender/release/scripts/ui/properties_physics_softbody.py
    trunk/blender/release/scripts/ui/properties_render.py
    trunk/blender/release/scripts/ui/properties_scene.py
    trunk/blender/release/scripts/ui/properties_texture.py
    trunk/blender/release/scripts/ui/properties_world.py
    trunk/blender/release/scripts/ui/space_buttons.py
    trunk/blender/release/scripts/ui/space_console.py
    trunk/blender/release/scripts/ui/space_filebrowser.py
    trunk/blender/release/scripts/ui/space_image.py
    trunk/blender/release/scripts/ui/space_info.py
    trunk/blender/release/scripts/ui/space_logic.py
    trunk/blender/release/scripts/ui/space_node.py
    trunk/blender/release/scripts/ui/space_outliner.py
    trunk/blender/release/scripts/ui/space_sequencer.py
    trunk/blender/release/scripts/ui/space_text.py
    trunk/blender/release/scripts/ui/space_time.py
    trunk/blender/release/scripts/ui/space_userpref.py
    trunk/blender/release/scripts/ui/space_view3d.py
    trunk/blender/release/scripts/ui/space_view3d_toolbar.py

Modified: trunk/blender/release/scripts/modules/bpy_ext/Object.py
===================================================================
--- trunk/blender/release/scripts/modules/bpy_ext/Object.py	2009-10-31 19:57:59 UTC (rev 24202)
+++ trunk/blender/release/scripts/modules/bpy_ext/Object.py	2009-10-31 20:16:59 UTC (rev 24203)
@@ -1,3 +1,8 @@
+# This software is distributable under the terms of the GNU
+# General Public License (GPL) v2, the text of which can be found at
+# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise
+# using this module constitutes acceptance of the terms of this License.
+
 import bpy
 class_obj = bpy.types.Object
 

Modified: trunk/blender/release/scripts/modules/bpy_ext/__init__.py
===================================================================
--- trunk/blender/release/scripts/modules/bpy_ext/__init__.py	2009-10-31 19:57:59 UTC (rev 24202)
+++ trunk/blender/release/scripts/modules/bpy_ext/__init__.py	2009-10-31 20:16:59 UTC (rev 24203)
@@ -1 +1,6 @@
+# This software is distributable under the terms of the GNU
+# General Public License (GPL) v2, the text of which can be found at
+# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise
+# using this module constitutes acceptance of the terms of this License.
+
 import bpy_ext.Object

Modified: trunk/blender/release/scripts/modules/bpy_ops.py
===================================================================
--- trunk/blender/release/scripts/modules/bpy_ops.py	2009-10-31 19:57:59 UTC (rev 24202)
+++ trunk/blender/release/scripts/modules/bpy_ops.py	2009-10-31 20:16:59 UTC (rev 24203)
@@ -1,3 +1,8 @@
+# This software is distributable under the terms of the GNU
+# General Public License (GPL) v2, the text of which can be found at
+# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise
+# using this module constitutes acceptance of the terms of this License.
+
 # for slightly faster access
 from bpy.__ops__ import add        as op_add
 from bpy.__ops__ import remove     as op_remove

Modified: trunk/blender/release/scripts/modules/bpy_sys.py
===================================================================
--- trunk/blender/release/scripts/modules/bpy_sys.py	2009-10-31 19:57:59 UTC (rev 24202)
+++ trunk/blender/release/scripts/modules/bpy_sys.py	2009-10-31 20:16:59 UTC (rev 24203)
@@ -1,3 +1,8 @@
+# This software is distributable under the terms of the GNU
+# General Public License (GPL) v2, the text of which can be found at
+# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise
+# using this module constitutes acceptance of the terms of this License.
+
 import bpy
 import os
 

Modified: trunk/blender/release/scripts/modules/dynamic_menu.py
===================================================================
--- trunk/blender/release/scripts/modules/dynamic_menu.py	2009-10-31 19:57:59 UTC (rev 24202)
+++ trunk/blender/release/scripts/modules/dynamic_menu.py	2009-10-31 20:16:59 UTC (rev 24203)
@@ -1,3 +1,8 @@
+# This software is distributable under the terms of the GNU
+# General Public License (GPL) v2, the text of which can be found at
+# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise
+# using this module constitutes acceptance of the terms of this License.
+
 import bpy
 
 def collect_baseclasses(_class, bases):

Modified: trunk/blender/release/scripts/ui/properties_data_armature.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_data_armature.py	2009-10-31 19:57:59 UTC (rev 24202)
+++ trunk/blender/release/scripts/ui/properties_data_armature.py	2009-10-31 20:16:59 UTC (rev 24203)
@@ -1,4 +1,9 @@
+# This software is distributable under the terms of the GNU
+# General Public License (GPL) v2, the text of which can be found at
+# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise
+# using this module constitutes acceptance of the terms of this License.
 
+
 import bpy
 
 class DataButtonsPanel(bpy.types.Panel):

Modified: trunk/blender/release/scripts/ui/properties_data_bone.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_data_bone.py	2009-10-31 19:57:59 UTC (rev 24202)
+++ trunk/blender/release/scripts/ui/properties_data_bone.py	2009-10-31 20:16:59 UTC (rev 24203)
@@ -1,4 +1,9 @@
+# This software is distributable under the terms of the GNU
+# General Public License (GPL) v2, the text of which can be found at
+# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise
+# using this module constitutes acceptance of the terms of this License.
 
+
 import bpy
 
 class BoneButtonsPanel(bpy.types.Panel):

Modified: trunk/blender/release/scripts/ui/properties_data_camera.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_data_camera.py	2009-10-31 19:57:59 UTC (rev 24202)
+++ trunk/blender/release/scripts/ui/properties_data_camera.py	2009-10-31 20:16:59 UTC (rev 24203)
@@ -1,4 +1,9 @@
+# This software is distributable under the terms of the GNU
+# General Public License (GPL) v2, the text of which can be found at
+# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise
+# using this module constitutes acceptance of the terms of this License.
 
+
 import bpy
 
 class DataButtonsPanel(bpy.types.Panel):

Modified: trunk/blender/release/scripts/ui/properties_data_curve.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_data_curve.py	2009-10-31 19:57:59 UTC (rev 24202)
+++ trunk/blender/release/scripts/ui/properties_data_curve.py	2009-10-31 20:16:59 UTC (rev 24203)
@@ -1,4 +1,9 @@
+# This software is distributable under the terms of the GNU
+# General Public License (GPL) v2, the text of which can be found at
+# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise
+# using this module constitutes acceptance of the terms of this License.
 
+
 import bpy
 
 class DataButtonsPanel(bpy.types.Panel):

Modified: trunk/blender/release/scripts/ui/properties_data_empty.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_data_empty.py	2009-10-31 19:57:59 UTC (rev 24202)
+++ trunk/blender/release/scripts/ui/properties_data_empty.py	2009-10-31 20:16:59 UTC (rev 24203)
@@ -1,4 +1,9 @@
+# This software is distributable under the terms of the GNU
+# General Public License (GPL) v2, the text of which can be found at
+# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise
+# using this module constitutes acceptance of the terms of this License.
 
+
 import bpy
 
 class DataButtonsPanel(bpy.types.Panel):

Modified: trunk/blender/release/scripts/ui/properties_data_lamp.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_data_lamp.py	2009-10-31 19:57:59 UTC (rev 24202)
+++ trunk/blender/release/scripts/ui/properties_data_lamp.py	2009-10-31 20:16:59 UTC (rev 24203)
@@ -1,4 +1,9 @@
+# This software is distributable under the terms of the GNU
+# General Public License (GPL) v2, the text of which can be found at
+# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise
+# using this module constitutes acceptance of the terms of this License.
 
+
 import bpy
 
 class DataButtonsPanel(bpy.types.Panel):

Modified: trunk/blender/release/scripts/ui/properties_data_lattice.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_data_lattice.py	2009-10-31 19:57:59 UTC (rev 24202)
+++ trunk/blender/release/scripts/ui/properties_data_lattice.py	2009-10-31 20:16:59 UTC (rev 24203)
@@ -1,4 +1,9 @@
+# This software is distributable under the terms of the GNU
+# General Public License (GPL) v2, the text of which can be found at
+# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise
+# using this module constitutes acceptance of the terms of this License.
 
+
 import bpy
 
 class DataButtonsPanel(bpy.types.Panel):

Modified: trunk/blender/release/scripts/ui/properties_data_mesh.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_data_mesh.py	2009-10-31 19:57:59 UTC (rev 24202)
+++ trunk/blender/release/scripts/ui/properties_data_mesh.py	2009-10-31 20:16:59 UTC (rev 24203)
@@ -1,4 +1,9 @@
+# This software is distributable under the terms of the GNU
+# General Public License (GPL) v2, the text of which can be found at
+# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise
+# using this module constitutes acceptance of the terms of this License.
 
+
 import bpy
 
 class DataButtonsPanel(bpy.types.Panel):

Modified: trunk/blender/release/scripts/ui/properties_data_metaball.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_data_metaball.py	2009-10-31 19:57:59 UTC (rev 24202)
+++ trunk/blender/release/scripts/ui/properties_data_metaball.py	2009-10-31 20:16:59 UTC (rev 24203)
@@ -1,3 +1,8 @@
+# This software is distributable under the terms of the GNU
+# General Public License (GPL) v2, the text of which can be found at
+# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise
+# using this module constitutes acceptance of the terms of this License.
+
 import bpy
 
 class DataButtonsPanel(bpy.types.Panel):

Modified: trunk/blender/release/scripts/ui/properties_data_modifier.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_data_modifier.py	2009-10-31 19:57:59 UTC (rev 24202)
+++ trunk/blender/release/scripts/ui/properties_data_modifier.py	2009-10-31 20:16:59 UTC (rev 24203)
@@ -1,4 +1,9 @@
+# This software is distributable under the terms of the GNU
+# General Public License (GPL) v2, the text of which can be found at
+# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise
+# using this module constitutes acceptance of the terms of this License.
 
+
 import bpy
 
 class DataButtonsPanel(bpy.types.Panel):

Modified: trunk/blender/release/scripts/ui/properties_data_text.py
===================================================================

@@ Diff output truncated at 10240 characters. @@




More information about the Bf-blender-cvs mailing list