From 4d4283ecd654f1efb058cd7f7dba6be88b70ee92 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 1 Jan 2010 08:11:08 -0500 Subject: Updated copyright information --- libbe/storage/__init__.py | 16 +++++++++++++++- libbe/storage/base.py | 16 +++++++++++++++- libbe/storage/util/config.py | 2 +- libbe/storage/util/mapfile.py | 2 +- libbe/storage/util/properties.py | 2 +- libbe/storage/util/settings_object.py | 2 +- libbe/storage/util/upgrade.py | 2 +- libbe/storage/vcs/__init__.py | 16 +++++++++++++++- libbe/storage/vcs/arch.py | 2 +- libbe/storage/vcs/base.py | 2 +- libbe/storage/vcs/bzr.py | 2 +- libbe/storage/vcs/darcs.py | 4 ++-- libbe/storage/vcs/git.py | 2 +- libbe/storage/vcs/hg.py | 2 +- 14 files changed, 57 insertions(+), 15 deletions(-) (limited to 'libbe/storage') diff --git a/libbe/storage/__init__.py b/libbe/storage/__init__.py index e99f799..7abe791 100644 --- a/libbe/storage/__init__.py +++ b/libbe/storage/__init__.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2009-2010 W. Trevor King +# +# 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. import base diff --git a/libbe/storage/base.py b/libbe/storage/base.py index 1c711fa..d85627f 100644 --- a/libbe/storage/base.py +++ b/libbe/storage/base.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2009-2010 W. Trevor King +# +# 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. """ Abstract bug repository data storage to easily support multiple backends. diff --git a/libbe/storage/util/config.py b/libbe/storage/util/config.py index 9f95d14..8526724 100644 --- a/libbe/storage/util/config.py +++ b/libbe/storage/util/config.py @@ -1,4 +1,4 @@ -# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc. +# Copyright (C) 2005-2010 Aaron Bentley and Panometrics, Inc. # Gianluca Montecchi # W. Trevor King # diff --git a/libbe/storage/util/mapfile.py b/libbe/storage/util/mapfile.py index 35ae1a0..0b8af23 100644 --- a/libbe/storage/util/mapfile.py +++ b/libbe/storage/util/mapfile.py @@ -1,4 +1,4 @@ -# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc. +# Copyright (C) 2005-2010 Aaron Bentley and Panometrics, Inc. # Gianluca Montecchi # W. Trevor King # diff --git a/libbe/storage/util/properties.py b/libbe/storage/util/properties.py index ddd7b25..f48cfa0 100644 --- a/libbe/storage/util/properties.py +++ b/libbe/storage/util/properties.py @@ -1,5 +1,5 @@ # Bugs Everywhere - a distributed bugtracker -# Copyright (C) 2008-2009 Gianluca Montecchi +# Copyright (C) 2008-2010 Gianluca Montecchi # W. Trevor King # # This program is free software; you can redistribute it and/or modify diff --git a/libbe/storage/util/settings_object.py b/libbe/storage/util/settings_object.py index 8b86829..9f2b7af 100644 --- a/libbe/storage/util/settings_object.py +++ b/libbe/storage/util/settings_object.py @@ -1,5 +1,5 @@ # Bugs Everywhere - a distributed bugtracker -# Copyright (C) 2008-2009 Gianluca Montecchi +# Copyright (C) 2008-2010 Gianluca Montecchi # W. Trevor King # # This program is free software; you can redistribute it and/or modify diff --git a/libbe/storage/util/upgrade.py b/libbe/storage/util/upgrade.py index 20ef1e4..f3c4912 100644 --- a/libbe/storage/util/upgrade.py +++ b/libbe/storage/util/upgrade.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009 W. Trevor King +# Copyright (C) 2009-2010 W. Trevor King # # 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 diff --git a/libbe/storage/vcs/__init__.py b/libbe/storage/vcs/__init__.py index ddfb00a..777c723 100644 --- a/libbe/storage/vcs/__init__.py +++ b/libbe/storage/vcs/__init__.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2009-2010 W. Trevor King +# +# 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. import base diff --git a/libbe/storage/vcs/arch.py b/libbe/storage/vcs/arch.py index f1b5b7b..f9ae32b 100644 --- a/libbe/storage/vcs/arch.py +++ b/libbe/storage/vcs/arch.py @@ -1,4 +1,4 @@ -# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc. +# Copyright (C) 2005-2010 Aaron Bentley and Panometrics, Inc. # Ben Finney # Gianluca Montecchi # James Rowe diff --git a/libbe/storage/vcs/base.py b/libbe/storage/vcs/base.py index 99f43f3..39f5082 100644 --- a/libbe/storage/vcs/base.py +++ b/libbe/storage/vcs/base.py @@ -1,4 +1,4 @@ -# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc. +# Copyright (C) 2005-2010 Aaron Bentley and Panometrics, Inc. # Alexander Belchenko # Ben Finney # Chris Ball diff --git a/libbe/storage/vcs/bzr.py b/libbe/storage/vcs/bzr.py index 7335861..4d72fd0 100644 --- a/libbe/storage/vcs/bzr.py +++ b/libbe/storage/vcs/bzr.py @@ -1,4 +1,4 @@ -# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc. +# Copyright (C) 2005-2010 Aaron Bentley and Panometrics, Inc. # Ben Finney # Gianluca Montecchi # Marien Zwart diff --git a/libbe/storage/vcs/darcs.py b/libbe/storage/vcs/darcs.py index 6d47ea5..92dc1a7 100644 --- a/libbe/storage/vcs/darcs.py +++ b/libbe/storage/vcs/darcs.py @@ -1,5 +1,5 @@ -# Copyright (C) 2009 Gianluca Montecchi -# W. Trevor King +# Copyright (C) 2009-2010 Gianluca Montecchi +# W. Trevor King # # 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 diff --git a/libbe/storage/vcs/git.py b/libbe/storage/vcs/git.py index 2280665..5382c7e 100644 --- a/libbe/storage/vcs/git.py +++ b/libbe/storage/vcs/git.py @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2009 Ben Finney +# Copyright (C) 2008-2010 Ben Finney # Chris Ball # Gianluca Montecchi # W. Trevor King diff --git a/libbe/storage/vcs/hg.py b/libbe/storage/vcs/hg.py index 11494a9..824f687 100644 --- a/libbe/storage/vcs/hg.py +++ b/libbe/storage/vcs/hg.py @@ -1,4 +1,4 @@ -# Copyright (C) 2007-2009 Aaron Bentley and Panometrics, Inc. +# Copyright (C) 2007-2010 Aaron Bentley and Panometrics, Inc. # Ben Finney # Gianluca Montecchi # W. Trevor King -- cgit