From 198a49dfdf44daf4268b99c063a2b13cc6399ada Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 10 Sep 2012 12:40:55 +0900 Subject: [PATCH] Ensure all files have the gpl block. --- tools/io_qfmap/entityclass.py | 19 +++++++++++++++++++ tools/io_qfmap/map.py | 19 +++++++++++++++++++ tools/io_qfmap/script.py | 19 +++++++++++++++++++ tools/io_qfmap/wad.py | 19 +++++++++++++++++++ 4 files changed, 76 insertions(+) diff --git a/tools/io_qfmap/entityclass.py b/tools/io_qfmap/entityclass.py index c45294e74..e3e9dad33 100644 --- a/tools/io_qfmap/entityclass.py +++ b/tools/io_qfmap/entityclass.py @@ -1,4 +1,23 @@ # vim:ts=4:et +# ##### 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. +# +# ##### END GPL LICENSE BLOCK ##### + +# import os from .script import Script diff --git a/tools/io_qfmap/map.py b/tools/io_qfmap/map.py index 0c92d028a..7c61106fd 100644 --- a/tools/io_qfmap/map.py +++ b/tools/io_qfmap/map.py @@ -1,4 +1,23 @@ # vim:ts=4:et +# ##### 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. +# +# ##### END GPL LICENSE BLOCK ##### + +# from mathutils import Vector, Quaternion from math import pi diff --git a/tools/io_qfmap/script.py b/tools/io_qfmap/script.py index 788e23bf3..a44278139 100644 --- a/tools/io_qfmap/script.py +++ b/tools/io_qfmap/script.py @@ -1,4 +1,23 @@ # vim:ts=4:et +# ##### 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. +# +# ##### END GPL LICENSE BLOCK ##### + +# class Script: def __init__(self, filename, text, single="{}()':"): diff --git a/tools/io_qfmap/wad.py b/tools/io_qfmap/wad.py index 86d21e5e3..93f15668f 100644 --- a/tools/io_qfmap/wad.py +++ b/tools/io_qfmap/wad.py @@ -1,4 +1,23 @@ # vim:ts=4:et +# ##### 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. +# +# ##### END GPL LICENSE BLOCK ##### + +# from struct import unpack, pack