From 26f1970d6c16c9067b4f1eb7a8837aedde434f98 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Wed, 29 Aug 2007 10:16:33 +0000 Subject: [PATCH] adding copyright for all missing plugin files --- plugins/BlocklistImport/test.py | 5 +++++ plugins/EventLogging/tab_log.py | 32 +++++++++++++++++++++++++++++ plugins/NetworkGraph/__init__.py | 32 +++++++++++++++++++++++++++++ plugins/NetworkGraph/tab_graph.py | 32 +++++++++++++++++++++++++++++ plugins/NetworkHealth/__init__.py | 32 +++++++++++++++++++++++++++++ plugins/NetworkHealth/plugin.py | 32 +++++++++++++++++++++++++++++ plugins/SimpleRSS/__init__.py | 32 +++++++++++++++++++++++++++++ plugins/SimpleRSS/plugin.py | 31 ++++++++++++++++++++++++++++ plugins/TorrentFiles/tab_files.py | 32 +++++++++++++++++++++++++++++ plugins/TorrentPeers/tab_peers.py | 32 +++++++++++++++++++++++++++++ plugins/TorrentPieces/tab_pieces.py | 32 +++++++++++++++++++++++++++++ plugins/TorrentSearch/__init__.py | 32 +++++++++++++++++++++++++++++ plugins/TorrentSearch/plugin.py | 31 ++++++++++++++++++++++++++++ 13 files changed, 387 insertions(+) diff --git a/plugins/BlocklistImport/test.py b/plugins/BlocklistImport/test.py index 96d77c254..1d03ee2cf 100644 --- a/plugins/BlocklistImport/test.py +++ b/plugins/BlocklistImport/test.py @@ -1,3 +1,8 @@ +## +# Copyright 2007 Steve 'Tarka' Smith (tarka@internode.on.net) +# Distributed under the same terms as Deluge +## + import unittest from text import TextReader, GZMuleReader, PGZip diff --git a/plugins/EventLogging/tab_log.py b/plugins/EventLogging/tab_log.py index f6381ded2..c9058c436 100644 --- a/plugins/EventLogging/tab_log.py +++ b/plugins/EventLogging/tab_log.py @@ -1,3 +1,35 @@ +# -*- coding: utf-8 -*- +# +# tab_log.py +# +# Copyright (C) Marcos Pinto 2007 +# +# 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, 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. +# +# In addition, as a special exception, the copyright holders give +# permission to link the code of portions of this program with the OpenSSL +# library. +# You must obey the GNU General Public License in all respects for all of +# the code used other than OpenSSL. If you modify file(s) with this +# exception, you may extend this exception to your version of the file(s), +# but you are not obligated to do so. If you do not wish to do so, delete +# this exception statement from your version. If you delete this exception +# statement from all source files in the program, then also delete it here. + import gtk import os import time diff --git a/plugins/NetworkGraph/__init__.py b/plugins/NetworkGraph/__init__.py index 0904b4b79..dbc79fa83 100644 --- a/plugins/NetworkGraph/__init__.py +++ b/plugins/NetworkGraph/__init__.py @@ -1,3 +1,35 @@ +# -*- coding: utf-8 -*- +# +# __init__.py +# +# Copyright (C) Marcos Pinto 2007 +# +# 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, 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. +# +# In addition, as a special exception, the copyright holders give +# permission to link the code of portions of this program with the OpenSSL +# library. +# You must obey the GNU General Public License in all respects for all of +# the code used other than OpenSSL. If you modify file(s) with this +# exception, you may extend this exception to your version of the file(s), +# but you are not obligated to do so. If you do not wish to do so, delete +# this exception statement from your version. If you delete this exception +# statement from all source files in the program, then also delete it here. + plugin_name = _("Network Activity Graph") plugin_author = "Alon Zakai, Zach Tibbitts" plugin_version = "0.2" diff --git a/plugins/NetworkGraph/tab_graph.py b/plugins/NetworkGraph/tab_graph.py index d66cdc47e..0f2c97f64 100644 --- a/plugins/NetworkGraph/tab_graph.py +++ b/plugins/NetworkGraph/tab_graph.py @@ -1,3 +1,35 @@ +# -*- coding: utf-8 -*- +# +# tab_graph.py +# +# Copyright (C) Marcos Pinto 2007 +# +# 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, 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. +# +# In addition, as a special exception, the copyright holders give +# permission to link the code of portions of this program with the OpenSSL +# library. +# You must obey the GNU General Public License in all respects for all of +# the code used other than OpenSSL. If you modify file(s) with this +# exception, you may extend this exception to your version of the file(s), +# but you are not obligated to do so. If you do not wish to do so, delete +# this exception statement from your version. If you delete this exception +# statement from all source files in the program, then also delete it here. + import gtk import pango import cairo diff --git a/plugins/NetworkHealth/__init__.py b/plugins/NetworkHealth/__init__.py index 4ead07401..0516922fc 100644 --- a/plugins/NetworkHealth/__init__.py +++ b/plugins/NetworkHealth/__init__.py @@ -1,3 +1,35 @@ +# -*- coding: utf-8 -*- +# +# __init__.py +# +# Copyright (C) Marcos Pinto 2007 +# +# 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, 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. +# +# In addition, as a special exception, the copyright holders give +# permission to link the code of portions of this program with the OpenSSL +# library. +# You must obey the GNU General Public License in all respects for all of +# the code used other than OpenSSL. If you modify file(s) with this +# exception, you may extend this exception to your version of the file(s), +# but you are not obligated to do so. If you do not wish to do so, delete +# this exception statement from your version. If you delete this exception +# statement from all source files in the program, then also delete it here. + plugin_name = _("Network Health Monitor") plugin_author = "Alon Zakai, Zach Tibbitts" plugin_version = "0.2" diff --git a/plugins/NetworkHealth/plugin.py b/plugins/NetworkHealth/plugin.py index bdf7136a4..a7e5ee1c4 100644 --- a/plugins/NetworkHealth/plugin.py +++ b/plugins/NetworkHealth/plugin.py @@ -1,3 +1,35 @@ +# -*- coding: utf-8 -*- +# +# plugin.py +# +# Copyright (C) Marcos Pinto 2007 +# +# 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, 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. +# +# In addition, as a special exception, the copyright holders give +# permission to link the code of portions of this program with the OpenSSL +# library. +# You must obey the GNU General Public License in all respects for all of +# the code used other than OpenSSL. If you modify file(s) with this +# exception, you may extend this exception to your version of the file(s), +# but you are not obligated to do so. If you do not wish to do so, delete +# this exception statement from your version. If you delete this exception +# statement from all source files in the program, then also delete it here. + class plugin_NetworkHealth: def __init__(self, path, deluge_core, deluge_interface): self.parent = deluge_interface # Using this, you can access the Deluge client diff --git a/plugins/SimpleRSS/__init__.py b/plugins/SimpleRSS/__init__.py index 921185170..29cc62ed2 100644 --- a/plugins/SimpleRSS/__init__.py +++ b/plugins/SimpleRSS/__init__.py @@ -1,3 +1,35 @@ +# -*- coding: utf-8 -*- +# +# __init__.py +# +# Copyright (C) "Mark Adamson" 2007 +# +# 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, 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. +# +# In addition, as a special exception, the copyright holders give +# permission to link the code of portions of this program with the OpenSSL +# library. +# You must obey the GNU General Public License in all respects for all of +# the code used other than OpenSSL. If you modify file(s) with this +# exception, you may extend this exception to your version of the file(s), +# but you are not obligated to do so. If you do not wish to do so, delete +# this exception statement from your version. If you delete this exception +# statement from all source files in the program, then also delete it here. + plugin_name = _("Simple RSS") plugin_author = "Mark Adamson" plugin_version = "1.0" diff --git a/plugins/SimpleRSS/plugin.py b/plugins/SimpleRSS/plugin.py index cf16508cc..47d3a14c9 100644 --- a/plugins/SimpleRSS/plugin.py +++ b/plugins/SimpleRSS/plugin.py @@ -1,3 +1,34 @@ +# -*- coding: utf-8 -*- +# +# plugin.py +# +# Copyright (C) Marcos Pinto 2007 +# +# 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, 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. +# +# In addition, as a special exception, the copyright holders give +# permission to link the code of portions of this program with the OpenSSL +# library. +# You must obey the GNU General Public License in all respects for all of +# the code used other than OpenSSL. If you modify file(s) with this +# exception, you may extend this exception to your version of the file(s), +# but you are not obligated to do so. If you do not wish to do so, delete +# this exception statement from your version. If you delete this exception +# statement from all source files in the program, then also delete it here. class plugin_SimpleRSS: diff --git a/plugins/TorrentFiles/tab_files.py b/plugins/TorrentFiles/tab_files.py index 75bf5ee4a..84042c043 100644 --- a/plugins/TorrentFiles/tab_files.py +++ b/plugins/TorrentFiles/tab_files.py @@ -1,3 +1,35 @@ +# -*- coding: utf-8 -*- +# +# tab_files.py +# +# Copyright (C) Marcos Pinto 2007 +# +# 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, 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. +# +# In addition, as a special exception, the copyright holders give +# permission to link the code of portions of this program with the OpenSSL +# library. +# You must obey the GNU General Public License in all respects for all of +# the code used other than OpenSSL. If you modify file(s) with this +# exception, you may extend this exception to your version of the file(s), +# but you are not obligated to do so. If you do not wish to do so, delete +# this exception statement from your version. If you delete this exception +# statement from all source files in the program, then also delete it here. + from itertools import izip import gobject diff --git a/plugins/TorrentPeers/tab_peers.py b/plugins/TorrentPeers/tab_peers.py index b1947df15..d181aaa70 100644 --- a/plugins/TorrentPeers/tab_peers.py +++ b/plugins/TorrentPeers/tab_peers.py @@ -1,3 +1,35 @@ +# -*- coding: utf-8 -*- +# +# tab_peers.py +# +# Copyright (C) Marcos Pinto 2007 +# +# 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, 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. +# +# In addition, as a special exception, the copyright holders give +# permission to link the code of portions of this program with the OpenSSL +# library. +# You must obey the GNU General Public License in all respects for all of +# the code used other than OpenSSL. If you modify file(s) with this +# exception, you may extend this exception to your version of the file(s), +# but you are not obligated to do so. If you do not wish to do so, delete +# this exception statement from your version. If you delete this exception +# statement from all source files in the program, then also delete it here. + from itertools import izip import deluge from deluge import dgtk diff --git a/plugins/TorrentPieces/tab_pieces.py b/plugins/TorrentPieces/tab_pieces.py index d5099680e..bd26d808b 100644 --- a/plugins/TorrentPieces/tab_pieces.py +++ b/plugins/TorrentPieces/tab_pieces.py @@ -1,3 +1,35 @@ +# -*- coding: utf-8 -*- +# +# tab_pieces.py +# +# Copyright (C) Marcos Pinto 2007 +# +# 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, 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. +# +# In addition, as a special exception, the copyright holders give +# permission to link the code of portions of this program with the OpenSSL +# library. +# You must obey the GNU General Public License in all respects for all of +# the code used other than OpenSSL. If you modify file(s) with this +# exception, you may extend this exception to your version of the file(s), +# but you are not obligated to do so. If you do not wish to do so, delete +# this exception statement from your version. If you delete this exception +# statement from all source files in the program, then also delete it here. + import gtk import math diff --git a/plugins/TorrentSearch/__init__.py b/plugins/TorrentSearch/__init__.py index 8394908a6..70d94f217 100644 --- a/plugins/TorrentSearch/__init__.py +++ b/plugins/TorrentSearch/__init__.py @@ -1,3 +1,35 @@ +# -*- coding: utf-8 -*- +# +# __init__.py +# +# Copyright (C) Marcos Pinto 2007 +# +# 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, 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. +# +# In addition, as a special exception, the copyright holders give +# permission to link the code of portions of this program with the OpenSSL +# library. +# You must obey the GNU General Public License in all respects for all of +# the code used other than OpenSSL. If you modify file(s) with this +# exception, you may extend this exception to your version of the file(s), +# but you are not obligated to do so. If you do not wish to do so, delete +# this exception statement from your version. If you delete this exception +# statement from all source files in the program, then also delete it here. + plugin_name = _("Torrent Search") plugin_author = "Zach Tibbitts" plugin_version = "0.5" diff --git a/plugins/TorrentSearch/plugin.py b/plugins/TorrentSearch/plugin.py index f6416ca09..63507d3bf 100644 --- a/plugins/TorrentSearch/plugin.py +++ b/plugins/TorrentSearch/plugin.py @@ -1,3 +1,34 @@ +# -*- coding: utf-8 -*- +# +# plugin.py +# +# Copyright (C) Marcos Pinto 2007 +# +# 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, 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. +# +# In addition, as a special exception, the copyright holders give +# permission to link the code of portions of this program with the OpenSSL +# library. +# You must obey the GNU General Public License in all respects for all of +# the code used other than OpenSSL. If you modify file(s) with this +# exception, you may extend this exception to your version of the file(s), +# but you are not obligated to do so. If you do not wish to do so, delete +# this exception statement from your version. If you delete this exception +# statement from all source files in the program, then also delete it here. class plugin_Search: