[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31327] branches/soc-2010-leifandersen: Started cleaning up code, added GPL blocks to all code files, allthough I currently have my name in the file, I' m perfectly fine changing it to the Blender Foundation if needed.

Leif Andersen leif.a.andersen at gmail.com
Fri Aug 13 23:32:24 CEST 2010


Revision: 31327
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31327
Author:   leifandersen
Date:     2010-08-13 23:32:23 +0200 (Fri, 13 Aug 2010)

Log Message:
-----------
Started cleaning up code, added GPL blocks to all code files, allthough I currently have my name in the file, I'm perfectly fine changing it to the Blender Foundation if needed.

Modified Paths:
--------------
    branches/soc-2010-leifandersen/release/scripts/op/tests_hash.py
    branches/soc-2010-leifandersen/release/scripts/op/tests_render.py
    branches/soc-2010-leifandersen/release/scripts/ui/space_tests.py
    branches/soc-2010-leifandersen/tests/addon/demo.py
    branches/soc-2010-leifandersen/tests/addon/setup.py
    branches/soc-2010-leifandersen/tests/data/hashchanger.py
    branches/soc-2010-leifandersen/tests/data/lamps.py
    branches/soc-2010-leifandersen/tests/data/meshes.py
    branches/soc-2010-leifandersen/tests/data/objects.py
    branches/soc-2010-leifandersen/tests/export_import_testing/export_import_testing.py
    branches/soc-2010-leifandersen/tests/hash_compare.py
    branches/soc-2010-leifandersen/tests/manual/README.txt
    branches/soc-2010-leifandersen/tests/manual/allselect.blend
    branches/soc-2010-leifandersen/tests/manual/faceselectmode.blend
    branches/soc-2010-leifandersen/tests/manual/outlinertest.blend
    branches/soc-2010-leifandersen/tests/physics/fluidbake.py
    branches/soc-2010-leifandersen/tests/physics/particle.py
    branches/soc-2010-leifandersen/tests/physics/softbody_basics.py
    branches/soc-2010-leifandersen/tests/python/Armature_example2.py
    branches/soc-2010-leifandersen/tests/python/BGL_example.py
    branches/soc-2010-leifandersen/tests/python/Camera_example.py
    branches/soc-2010-leifandersen/tests/python/Constraint_example1.py
    branches/soc-2010-leifandersen/tests/python/Constraint_example2.py
    branches/soc-2010-leifandersen/tests/python/Draw_example.py
    branches/soc-2010-leifandersen/tests/python/Font_example.py
    branches/soc-2010-leifandersen/tests/python/Group_example2.py
    branches/soc-2010-leifandersen/tests/python/MeshPrimitives_example.py
    branches/soc-2010-leifandersen/tests/python/Mesh_example.py
    branches/soc-2010-leifandersen/tests/python/MetaBall_example.py
    branches/soc-2010-leifandersen/tests/python/Modifier_example.py
    branches/soc-2010-leifandersen/tests/python/NMesh_example.py
    branches/soc-2010-leifandersen/tests/python/Object_example.py
    branches/soc-2010-leifandersen/tests/python/README.txt
    branches/soc-2010-leifandersen/tests/python/Radio_example.py
    branches/soc-2010-leifandersen/tests/python/Render_example.py
    branches/soc-2010-leifandersen/tests/python/Scene_example.py
    branches/soc-2010-leifandersen/tests/python/Sound_example.py
    branches/soc-2010-leifandersen/tests/python/Text3d_example.py
    branches/soc-2010-leifandersen/tests/python/Text_example.py
    branches/soc-2010-leifandersen/tests/python/Timeline.py
    branches/soc-2010-leifandersen/tests/python/Types_example.py
    branches/soc-2010-leifandersen/tests/python/Window_example1.py
    branches/soc-2010-leifandersen/tests/python/World_example1.py
    branches/soc-2010-leifandersen/tests/python/World_example2.py
    branches/soc-2010-leifandersen/tests/python/effect_example.py
    branches/soc-2010-leifandersen/tests/python/hash_compare.py
    branches/soc-2010-leifandersen/tests/python/image_example.py
    branches/soc-2010-leifandersen/tests/python/lamp_modes_example.py

Removed Paths:
-------------
    branches/soc-2010-leifandersen/tests/export_import_testing/README.txt
    branches/soc-2010-leifandersen/tests/mesh_modeling/README.txt
    branches/soc-2010-leifandersen/tests/physics/README.txt
    branches/soc-2010-leifandersen/tests/sequence_editing/README.txt

Modified: branches/soc-2010-leifandersen/release/scripts/op/tests_hash.py
===================================================================
--- branches/soc-2010-leifandersen/release/scripts/op/tests_hash.py	2010-08-13 20:54:34 UTC (rev 31326)
+++ branches/soc-2010-leifandersen/release/scripts/op/tests_hash.py	2010-08-13 21:32:23 UTC (rev 31327)
@@ -1,3 +1,26 @@
+# ##### 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+#  Contributor(s): Leif Andersen
+#
+#  The Original Code is Copyright (C) 2010 by Leif Andersen.
+#  All rights reserved.
+#
+# ##### END GPL LICENSE BLOCK #####
+
 import bpy
 import tests
 

Modified: branches/soc-2010-leifandersen/release/scripts/op/tests_render.py
===================================================================
--- branches/soc-2010-leifandersen/release/scripts/op/tests_render.py	2010-08-13 20:54:34 UTC (rev 31326)
+++ branches/soc-2010-leifandersen/release/scripts/op/tests_render.py	2010-08-13 21:32:23 UTC (rev 31327)
@@ -1,3 +1,26 @@
+# ##### 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+#  Contributor(s): Leif Andersen
+#
+#  The Original Code is Copyright (C) 2010 by Leif Andersen.
+#  All rights reserved.
+#
+# ##### END GPL LICENSE BLOCK #####
+
 import os
 import sys
 import tests

Modified: branches/soc-2010-leifandersen/release/scripts/ui/space_tests.py
===================================================================
--- branches/soc-2010-leifandersen/release/scripts/ui/space_tests.py	2010-08-13 20:54:34 UTC (rev 31326)
+++ branches/soc-2010-leifandersen/release/scripts/ui/space_tests.py	2010-08-13 21:32:23 UTC (rev 31327)
@@ -1,3 +1,26 @@
+# ##### 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+#  Contributor(s): Leif Andersen
+#
+#  The Original Code is Copyright (C) 2010 by Leif Andersen.
+#  All rights reserved.
+#
+# ##### END GPL LICENSE BLOCK #####
+
 import bpy
 import tests
 

Modified: branches/soc-2010-leifandersen/tests/addon/demo.py
===================================================================
--- branches/soc-2010-leifandersen/tests/addon/demo.py	2010-08-13 20:54:34 UTC (rev 31326)
+++ branches/soc-2010-leifandersen/tests/addon/demo.py	2010-08-13 21:32:23 UTC (rev 31327)
@@ -1,3 +1,26 @@
+# ##### 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+#  Contributor(s): Leif Andersen
+#
+#  The Original Code is Copyright (C) 2010 by Leif Andersen.
+#  All rights reserved.
+#
+# ##### END GPL LICENSE BLOCK #####
+
 import bpy
 import tests
 

Modified: branches/soc-2010-leifandersen/tests/addon/setup.py
===================================================================
--- branches/soc-2010-leifandersen/tests/addon/setup.py	2010-08-13 20:54:34 UTC (rev 31326)
+++ branches/soc-2010-leifandersen/tests/addon/setup.py	2010-08-13 21:32:23 UTC (rev 31327)
@@ -1,3 +1,26 @@
+# ##### 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+#  Contributor(s): Leif Andersen
+#
+#  The Original Code is Copyright (C) 2010 by Leif Andersen.
+#  All rights reserved.
+#
+# ##### END GPL LICENSE BLOCK #####
+
 import bpy
 import unittest
 

Modified: branches/soc-2010-leifandersen/tests/data/hashchanger.py
===================================================================
--- branches/soc-2010-leifandersen/tests/data/hashchanger.py	2010-08-13 20:54:34 UTC (rev 31326)
+++ branches/soc-2010-leifandersen/tests/data/hashchanger.py	2010-08-13 21:32:23 UTC (rev 31327)
@@ -1,3 +1,26 @@
+# ##### 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+#  Contributor(s): Leif Andersen
+#
+#  The Original Code is Copyright (C) 2010 by Leif Andersen.
+#  All rights reserved.
+#
+# ##### END GPL LICENSE BLOCK #####
+
 import tests
 
 path = input("Please enter the file you would like to edit: ")

Modified: branches/soc-2010-leifandersen/tests/data/lamps.py
===================================================================
--- branches/soc-2010-leifandersen/tests/data/lamps.py	2010-08-13 20:54:34 UTC (rev 31326)
+++ branches/soc-2010-leifandersen/tests/data/lamps.py	2010-08-13 21:32:23 UTC (rev 31327)
@@ -1,3 +1,26 @@
+# ##### 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+#  Contributor(s): Leif Andersen
+#
+#  The Original Code is Copyright (C) 2010 by Leif Andersen.
+#  All rights reserved.
+#
+# ##### END GPL LICENSE BLOCK #####
+
 import bpy
 import tests
 import unittest

Modified: branches/soc-2010-leifandersen/tests/data/meshes.py
===================================================================
--- branches/soc-2010-leifandersen/tests/data/meshes.py	2010-08-13 20:54:34 UTC (rev 31326)
+++ branches/soc-2010-leifandersen/tests/data/meshes.py	2010-08-13 21:32:23 UTC (rev 31327)
@@ -1,3 +1,26 @@
+# ##### 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+#  Contributor(s): Leif Andersen
+#

@@ Diff output truncated at 10240 characters. @@




More information about the Bf-blender-cvs mailing list