From c15079d0fbcc4d023cd27f2a497639df92a587a5 Mon Sep 17 00:00:00 2001 From: Aaron Bentley Date: Mon, 16 May 2005 21:01:23 +0000 Subject: Added appropriate copyright notices, GPLed. --- becommands/assign.py | 16 ++++++++++++++++ becommands/close.py | 16 ++++++++++++++++ becommands/comment.py | 16 ++++++++++++++++ becommands/diff.py | 18 ++++++++++++++++-- becommands/inprogress.py | 16 ++++++++++++++++ becommands/list.py | 16 ++++++++++++++++ becommands/new.py | 16 ++++++++++++++++ becommands/open.py | 16 ++++++++++++++++ becommands/set.py | 16 ++++++++++++++++ becommands/set_root.py | 16 ++++++++++++++++ becommands/severity.py | 16 ++++++++++++++++ becommands/show.py | 16 ++++++++++++++++ becommands/target.py | 16 ++++++++++++++++ becommands/upgrade.py | 16 ++++++++++++++++ 14 files changed, 224 insertions(+), 2 deletions(-) (limited to 'becommands') diff --git a/becommands/assign.py b/becommands/assign.py index 8b80342..d682130 100644 --- a/becommands/assign.py +++ b/becommands/assign.py @@ -1,3 +1,19 @@ +# Copyright (C) 2005 Aaron Bentley and Panometrics, Inc. +# +# +# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """Assign an individual or group to fix a bug""" from libbe import bugdir, cmdutil, names __desc__ = __doc__ diff --git a/becommands/close.py b/becommands/close.py index fba0b7b..9d01a7f 100644 --- a/becommands/close.py +++ b/becommands/close.py @@ -1,3 +1,19 @@ +# Copyright (C) 2005 Aaron Bentley and Panometrics, Inc. +# +# +# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """Close a bug""" from libbe import cmdutil def execute(args): diff --git a/becommands/comment.py b/becommands/comment.py index 50d58be..0207a6c 100644 --- a/becommands/comment.py +++ b/becommands/comment.py @@ -1,3 +1,19 @@ +# Copyright (C) 2005 Aaron Bentley and Panometrics, Inc. +# +# +# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """Add a comment to a bug""" from libbe import bugdir, cmdutil, names, utility import os diff --git a/becommands/diff.py b/becommands/diff.py index bf8b66d..82ebb2c 100644 --- a/becommands/diff.py +++ b/becommands/diff.py @@ -1,6 +1,20 @@ -# This is the standard command template. To use it, please fill in values for -# Short description, long help and COMMANDSPEC +# Copyright (C) 2005 Aaron Bentley and Panometrics, Inc. +# # +# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + """Compare bug reports with older tree""" from libbe import bugdir, diff, cmdutil import os diff --git a/becommands/inprogress.py b/becommands/inprogress.py index f1bc32c..5b9f767 100644 --- a/becommands/inprogress.py +++ b/becommands/inprogress.py @@ -1,3 +1,19 @@ +# Copyright (C) 2005 Aaron Bentley and Panometrics, Inc. +# +# +# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """Bug fixing in progress""" from libbe import cmdutil def execute(args): diff --git a/becommands/list.py b/becommands/list.py index ecd597b..d745702 100644 --- a/becommands/list.py +++ b/becommands/list.py @@ -1,3 +1,19 @@ +# Copyright (C) 2005 Aaron Bentley and Panometrics, Inc. +# +# +# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """List bugs""" from libbe import bugdir, cmdutil, names import os diff --git a/becommands/new.py b/becommands/new.py index 47221a7..29182ed 100644 --- a/becommands/new.py +++ b/becommands/new.py @@ -1,3 +1,19 @@ +# Copyright (C) 2005 Aaron Bentley and Panometrics, Inc. +# +# +# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """Create a new bug""" from libbe import bugdir, cmdutil, names, utility def execute(args): diff --git a/becommands/open.py b/becommands/open.py index 82d739b..7923091 100644 --- a/becommands/open.py +++ b/becommands/open.py @@ -1,3 +1,19 @@ +# Copyright (C) 2005 Aaron Bentley and Panometrics, Inc. +# +# +# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """Re-open a bug""" from libbe import cmdutil def execute(args): diff --git a/becommands/set.py b/becommands/set.py index a99fc19..2a977ca 100644 --- a/becommands/set.py +++ b/becommands/set.py @@ -1,3 +1,19 @@ +# Copyright (C) 2005 Aaron Bentley and Panometrics, Inc. +# +# +# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """Change tree settings""" from libbe import cmdutil def execute(args): diff --git a/becommands/set_root.py b/becommands/set_root.py index 87e4bda..ceed0dd 100644 --- a/becommands/set_root.py +++ b/becommands/set_root.py @@ -1,3 +1,19 @@ +# Copyright (C) 2005 Aaron Bentley and Panometrics, Inc. +# +# +# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """Assign the root directory for bug tracking""" from libbe import bugdir, cmdutil, rcs diff --git a/becommands/severity.py b/becommands/severity.py index 6c35a26..88d3f25 100644 --- a/becommands/severity.py +++ b/becommands/severity.py @@ -1,3 +1,19 @@ +# Copyright (C) 2005 Aaron Bentley and Panometrics, Inc. +# +# +# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """Show or change a bug's severity level""" from libbe import bugdir from libbe import cmdutil diff --git a/becommands/show.py b/becommands/show.py index 9d56a22..9e60586 100644 --- a/becommands/show.py +++ b/becommands/show.py @@ -1,3 +1,19 @@ +# Copyright (C) 2005 Aaron Bentley and Panometrics, Inc. +# +# +# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """Show a particular bug""" from libbe import bugdir, cmdutil, utility import os diff --git a/becommands/target.py b/becommands/target.py index 57e69ef..d077da5 100644 --- a/becommands/target.py +++ b/becommands/target.py @@ -1,3 +1,19 @@ +# Copyright (C) 2005 Aaron Bentley and Panometrics, Inc. +# +# +# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """Show or change a bug's target for fixing""" from libbe import bugdir from libbe import cmdutil diff --git a/becommands/upgrade.py b/becommands/upgrade.py index f1f41ee..0cbffa1 100644 --- a/becommands/upgrade.py +++ b/becommands/upgrade.py @@ -1,3 +1,19 @@ +# Copyright (C) 2005 Aaron Bentley and Panometrics, Inc. +# +# +# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """Upgrade the bugs to the latest format""" import os.path import errno -- cgit