From b65c01fb31c96d12f5d9a7da4ff306ff98b0525e Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Wed, 28 Jul 2010 23:47:29 -0500 Subject: [PATCH] GPLv3 headers on the split out files --- Module.py | 16 ++++++++++++++++ modules/Countdown.py | 16 ++++++++++++++++ modules/Dice.py | 16 ++++++++++++++++ modules/FactFile.py | 16 ++++++++++++++++ modules/GoogleTranslate.py | 16 ++++++++++++++++ modules/IrcAdmin.py | 16 ++++++++++++++++ modules/Seen.py | 16 ++++++++++++++++ 7 files changed, 112 insertions(+) diff --git a/Module.py b/Module.py index f49d08e..b8e6ace 100644 --- a/Module.py +++ b/Module.py @@ -1,3 +1,19 @@ +# Module - dr.botzo modular functionality base class +# Copyright (C) 2010 Brian S. Stephan +# +# 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 . + from irclib import irclib import re diff --git a/modules/Countdown.py b/modules/Countdown.py index 10a8f88..f2393d5 100644 --- a/modules/Countdown.py +++ b/modules/Countdown.py @@ -1,3 +1,19 @@ +# Countdown - track and display time until events +# Copyright (C) 2010 Brian S. Stephan +# +# 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 . + from Module import Module from irclib import irclib from ConfigParser import NoOptionError diff --git a/modules/Dice.py b/modules/Dice.py index 3dbcb57..915a488 100644 --- a/modules/Dice.py +++ b/modules/Dice.py @@ -1,3 +1,19 @@ +# Dice - roll dice when asked, intended for RPGs +# Copyright (C) 2010 Brian S. Stephan +# +# 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 . + from Module import Module from irclib import irclib import re diff --git a/modules/FactFile.py b/modules/FactFile.py index 69a66f7..363f196 100644 --- a/modules/FactFile.py +++ b/modules/FactFile.py @@ -1,3 +1,19 @@ +# FactFile - display facts from a flat file upon request +# Copyright (C) 2010 Brian S. Stephan +# +# 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 . + from Module import Module from irclib import irclib from ConfigParser import NoOptionError diff --git a/modules/GoogleTranslate.py b/modules/GoogleTranslate.py index b553ea2..13edf11 100644 --- a/modules/GoogleTranslate.py +++ b/modules/GoogleTranslate.py @@ -1,3 +1,19 @@ +# GoogleTranslate - go out to google and translate sentences +# Copyright (C) 2010 Brian S. Stephan +# +# 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 . + from Module import Module from irclib import irclib from urllib2 import urlopen diff --git a/modules/IrcAdmin.py b/modules/IrcAdmin.py index 01cf1b9..55bf9f6 100644 --- a/modules/IrcAdmin.py +++ b/modules/IrcAdmin.py @@ -1,3 +1,19 @@ +# IrcAdmin - handle normal IRC functions one would expect +# Copyright (C) 2010 Brian S. Stephan +# +# 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 . + from ConfigParser import NoOptionError from Module import Module from irclib import irclib diff --git a/modules/Seen.py b/modules/Seen.py index 18229b6..0cd28d1 100644 --- a/modules/Seen.py +++ b/modules/Seen.py @@ -1,3 +1,19 @@ +# Seen - track when a person speaks, and allow data to be queried +# Copyright (C) 2010 Brian S. Stephan +# +# 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 . + from Module import Module from irclib import irclib from ConfigParser import NoOptionError