From 866c42e679c4fcfdd26c82ee0ca349c12a74f506 Mon Sep 17 00:00:00 2001 From: Daniel Garcia Moreno Date: Mon, 15 Jul 2013 17:44:45 +0200 Subject: [PATCH] Adding intra2net copyright header to every python file --- deltatar/aescrypto.py | 4 +++- filesplit.py | 16 ++++++++++++++++ rescue_tar.py | 16 ++++++++++++++++ runtests.py | 16 ++++++++++++++++ testing/__init__.py | 16 ++++++++++++++++ testing/test_concat_compress.py | 16 ++++++++++++++++ testing/test_encryption.py | 16 ++++++++++++++++ testing/test_multivol.py | 16 ++++++++++++++++ testing/test_rescue_tar.py | 16 ++++++++++++++++ 9 files changed, 131 insertions(+), 1 deletions(-) diff --git a/deltatar/aescrypto.py b/deltatar/aescrypto.py index ea676de..423bba2 100644 --- a/deltatar/aescrypto.py +++ b/deltatar/aescrypto.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (C) 2013 Daniel Garcia +# Copyright (C) 2013 Intra2net AG # # 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 @@ -15,6 +15,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +# Author: Daniel Garcia + ''' AES encryption and decryption lib. This is a simple utility lib over pycrypto to encrypt and decrypt using AES diff --git a/filesplit.py b/filesplit.py index db1c476..b06d99a 100644 --- a/filesplit.py +++ b/filesplit.py @@ -1,5 +1,21 @@ #!/usr/bin/env python +# Copyright (C) 2013 Intra2net AG +# +# 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 3 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, see . + + import argparse BUFSIZE = 16 * 1024 diff --git a/rescue_tar.py b/rescue_tar.py index ce028fd..6158db9 100644 --- a/rescue_tar.py +++ b/rescue_tar.py @@ -1,5 +1,21 @@ #!/usr/bin/env python +# Copyright (C) 2013 Intra2net AG +# +# 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 3 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, see . + + import argparse import os import tempfile diff --git a/runtests.py b/runtests.py index 7b0a305..7808b2f 100644 --- a/runtests.py +++ b/runtests.py @@ -1,5 +1,21 @@ #!/usr/bin/env python +# Copyright (C) 2013 Intra2net AG +# +# 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 3 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, see . + + import unittest from testing.test_multivol import MultivolGnuFormatTest, MultivolPaxFormatTest diff --git a/testing/__init__.py b/testing/__init__.py index 673414b..ba9fe83 100644 --- a/testing/__init__.py +++ b/testing/__init__.py @@ -1,3 +1,19 @@ +# Copyright (C) 2013 Intra2net AG +# +# 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 3 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, see . + + import os, unittest, hashlib, string import random diff --git a/testing/test_concat_compress.py b/testing/test_concat_compress.py index 4262e67..f292574 100644 --- a/testing/test_concat_compress.py +++ b/testing/test_concat_compress.py @@ -1,3 +1,19 @@ +# Copyright (C) 2013 Intra2net AG +# +# 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 3 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, see . + + import os, unittest, hashlib, string from deltatar.tarfile import TarFile, GNU_FORMAT diff --git a/testing/test_encryption.py b/testing/test_encryption.py index cc170a0..08af199 100644 --- a/testing/test_encryption.py +++ b/testing/test_encryption.py @@ -1,3 +1,19 @@ +# Copyright (C) 2013 Intra2net AG +# +# 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 3 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, see . + + import os from deltatar.tarfile import TarFile, GNU_FORMAT diff --git a/testing/test_multivol.py b/testing/test_multivol.py index fce20c8..b8d4557 100644 --- a/testing/test_multivol.py +++ b/testing/test_multivol.py @@ -1,3 +1,19 @@ +# Copyright (C) 2013 Intra2net AG +# +# 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 3 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, see . + + import os, unittest, hashlib, string from deltatar.tarfile import TarFile, PAX_FORMAT, GNU_FORMAT, BLOCKSIZE diff --git a/testing/test_rescue_tar.py b/testing/test_rescue_tar.py index 829b158..83d8c00 100644 --- a/testing/test_rescue_tar.py +++ b/testing/test_rescue_tar.py @@ -1,3 +1,19 @@ +# Copyright (C) 2013 Intra2net AG +# +# 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 3 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, see . + + import os, unittest, hashlib, string from deltatar.tarfile import TarFile, PAX_FORMAT, GNU_FORMAT, BLOCKSIZE -- 1.7.1