aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--AUTHORS2
-rw-r--r--Makefile1
-rwxr-xr-xbe1
-rw-r--r--becommands/assign.py1
-rw-r--r--becommands/close.py1
-rw-r--r--becommands/comment.py2
-rw-r--r--becommands/depend.py3
-rw-r--r--becommands/diff.py1
-rw-r--r--becommands/help.py1
-rw-r--r--becommands/init.py1
-rw-r--r--becommands/list.py2
-rw-r--r--becommands/merge.py3
-rw-r--r--becommands/new.py1
-rw-r--r--becommands/open.py1
-rw-r--r--becommands/remove.py3
-rw-r--r--becommands/set.py2
-rw-r--r--becommands/severity.py1
-rw-r--r--becommands/show.py2
-rw-r--r--becommands/status.py3
-rw-r--r--becommands/tag.py3
-rw-r--r--doc/module.mk1
-rwxr-xr-xinterfaces/xml/be-xml-to-mbox3
-rw-r--r--libbe/arch.py3
-rw-r--r--libbe/beuuid.py3
-rw-r--r--libbe/bug.py2
-rw-r--r--libbe/bugdir.py1
-rw-r--r--libbe/bzr.py3
-rw-r--r--libbe/cmdutil.py1
-rw-r--r--libbe/comment.py2
-rw-r--r--libbe/config.py1
-rw-r--r--libbe/darcs.py3
-rw-r--r--libbe/diff.py1
-rw-r--r--libbe/editor.py3
-rw-r--r--libbe/encoding.py3
-rw-r--r--libbe/git.py3
-rw-r--r--libbe/hg.py3
-rw-r--r--libbe/mapfile.py1
-rw-r--r--libbe/plugin.py1
-rw-r--r--libbe/properties.py3
-rw-r--r--libbe/settings_object.py3
-rw-r--r--libbe/tree.py3
-rw-r--r--libbe/utility.py1
-rw-r--r--libbe/vcs.py3
43 files changed, 60 insertions, 26 deletions
diff --git a/AUTHORS b/AUTHORS
index 6b66315..5445afc 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,7 +1,7 @@
Bugs Everywhere was written by:
Aaron Bentley
-Alexander Belchenko
Alex Miller
+Alexander Belchenko
Ben Finney
Chris Ball
Gianluca Montecchi
diff --git a/Makefile b/Makefile
index fe482c3..3599a02 100644
--- a/Makefile
+++ b/Makefile
@@ -6,6 +6,7 @@
#
# Copyright (C) 2008-2009 Ben Finney <benf@cybersource.com.au>
# Chris Ball <cjb@laptop.org>
+# Gianluca Montecchi <gian@grys.it>
# W. Trevor King <wking@drexel.edu>
#
# This program is free software; you can redistribute it and/or modify
diff --git a/be b/be
index feacfb4..8fe7dca 100755
--- a/be
+++ b/be
@@ -1,6 +1,7 @@
#!/usr/bin/env python
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
# Chris Ball <cjb@laptop.org>
+# Gianluca Montecchi <gian@grys.it>
# Oleg Romanyshyn <oromanyshyn@panoramicfeedback.com>
# W. Trevor King <wking@drexel.edu>
#
diff --git a/becommands/assign.py b/becommands/assign.py
index 794f028..fbef281 100644
--- a/becommands/assign.py
+++ b/becommands/assign.py
@@ -1,4 +1,5 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
+# Gianluca Montecchi <gian@grys.it>
# Marien Zwart <marienz@gentoo.org>
# Thomas Gerigk <tgerigk@gmx.de>
# W. Trevor King <wking@drexel.edu>
diff --git a/becommands/close.py b/becommands/close.py
index 0532ed2..2cdcb59 100644
--- a/becommands/close.py
+++ b/becommands/close.py
@@ -1,4 +1,5 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
+# Gianluca Montecchi <gian@grys.it>
# Marien Zwart <marienz@gentoo.org>
# Thomas Gerigk <tgerigk@gmx.de>
# W. Trevor King <wking@drexel.edu>
diff --git a/becommands/comment.py b/becommands/comment.py
index 950a95a..dad32dd 100644
--- a/becommands/comment.py
+++ b/becommands/comment.py
@@ -1,5 +1,5 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
-# Chris Ball <cjb@laptop.org>
+# Gianluca Montecchi <gian@grys.it>
# W. Trevor King <wking@drexel.edu>
#
# This program is free software; you can redistribute it and/or modify
diff --git a/becommands/depend.py b/becommands/depend.py
index f72b8ba..f52527e 100644
--- a/becommands/depend.py
+++ b/becommands/depend.py
@@ -1,4 +1,5 @@
-# Copyright (C) 2009 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2009 Gianluca Montecchi <gian@grys.it>
+# W. Trevor King <wking@drexel.edu>
#
# 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/becommands/diff.py b/becommands/diff.py
index b6ac5b0..e71da9b 100644
--- a/becommands/diff.py
+++ b/becommands/diff.py
@@ -1,4 +1,5 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
+# Gianluca Montecchi <gian@grys.it>
# W. Trevor King <wking@drexel.edu>
#
# This program is free software; you can redistribute it and/or modify
diff --git a/becommands/help.py b/becommands/help.py
index a8f346a..c12c56a 100644
--- a/becommands/help.py
+++ b/becommands/help.py
@@ -1,4 +1,5 @@
# Copyright (C) 2006-2009 Aaron Bentley and Panometrics, Inc.
+# Gianluca Montecchi <gian@grys.it>
# Thomas Gerigk <tgerigk@gmx.de>
# W. Trevor King <wking@drexel.edu>
#
diff --git a/becommands/init.py b/becommands/init.py
index a6098ba..275dd77 100644
--- a/becommands/init.py
+++ b/becommands/init.py
@@ -1,4 +1,5 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
+# Gianluca Montecchi <gian@grys.it>
# W. Trevor King <wking@drexel.edu>
#
# This program is free software; you can redistribute it and/or modify
diff --git a/becommands/list.py b/becommands/list.py
index 12e1e29..14e387b 100644
--- a/becommands/list.py
+++ b/becommands/list.py
@@ -1,5 +1,5 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
-# Chris Ball <cjb@laptop.org>
+# Gianluca Montecchi <gian@grys.it>
# Oleg Romanyshyn <oromanyshyn@panoramicfeedback.com>
# W. Trevor King <wking@drexel.edu>
#
diff --git a/becommands/merge.py b/becommands/merge.py
index f212b01..bc18479 100644
--- a/becommands/merge.py
+++ b/becommands/merge.py
@@ -1,4 +1,5 @@
-# Copyright (C) 2008-2009 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2008-2009 Gianluca Montecchi <gian@grys.it>
+# W. Trevor King <wking@drexel.edu>
#
# 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/becommands/new.py b/becommands/new.py
index a8ee2ec..30a7d28 100644
--- a/becommands/new.py
+++ b/becommands/new.py
@@ -1,4 +1,5 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
+# Gianluca Montecchi <gian@grys.it>
# W. Trevor King <wking@drexel.edu>
#
# This program is free software; you can redistribute it and/or modify
diff --git a/becommands/open.py b/becommands/open.py
index 0c6bf05..c9e55a2 100644
--- a/becommands/open.py
+++ b/becommands/open.py
@@ -1,4 +1,5 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
+# Gianluca Montecchi <gian@grys.it>
# Marien Zwart <marienz@gentoo.org>
# Thomas Gerigk <tgerigk@gmx.de>
# W. Trevor King <wking@drexel.edu>
diff --git a/becommands/remove.py b/becommands/remove.py
index 8d85033..0e61362 100644
--- a/becommands/remove.py
+++ b/becommands/remove.py
@@ -1,4 +1,5 @@
-# Copyright (C) 2008-2009 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2008-2009 Gianluca Montecchi <gian@grys.it>
+# W. Trevor King <wking@drexel.edu>
#
# 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/becommands/set.py b/becommands/set.py
index f7e68d3..e5cab8d 100644
--- a/becommands/set.py
+++ b/becommands/set.py
@@ -1,5 +1,5 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
-# Chris Ball <cjb@laptop.org>
+# Gianluca Montecchi <gian@grys.it>
# Marien Zwart <marienz@gentoo.org>
# Thomas Gerigk <tgerigk@gmx.de>
# W. Trevor King <wking@drexel.edu>
diff --git a/becommands/severity.py b/becommands/severity.py
index 660586e..e987760 100644
--- a/becommands/severity.py
+++ b/becommands/severity.py
@@ -1,4 +1,5 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
+# Gianluca Montecchi <gian@grys.it>
# Marien Zwart <marienz@gentoo.org>
# Thomas Gerigk <tgerigk@gmx.de>
# W. Trevor King <wking@drexel.edu>
diff --git a/becommands/show.py b/becommands/show.py
index 50bd6eb..94e16bf 100644
--- a/becommands/show.py
+++ b/becommands/show.py
@@ -1,5 +1,5 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
-# Chris Ball <cjb@laptop.org>
+# Gianluca Montecchi <gian@grys.it>
# Thomas Gerigk <tgerigk@gmx.de>
# Thomas Habets <thomas@habets.pp.se>
# W. Trevor King <wking@drexel.edu>
diff --git a/becommands/status.py b/becommands/status.py
index f315003..827c7ce 100644
--- a/becommands/status.py
+++ b/becommands/status.py
@@ -1,4 +1,5 @@
-# Copyright (C) 2008-2009 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2008-2009 Gianluca Montecchi <gian@grys.it>
+# W. Trevor King <wking@drexel.edu>
#
# 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/becommands/tag.py b/becommands/tag.py
index ecd853f..31b43ba 100644
--- a/becommands/tag.py
+++ b/becommands/tag.py
@@ -1,4 +1,5 @@
-# Copyright (C) 2009 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2009 Gianluca Montecchi <gian@grys.it>
+# W. Trevor King <wking@drexel.edu>
#
# 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/doc/module.mk b/doc/module.mk
index 7791f48..de33d6a 100644
--- a/doc/module.mk
+++ b/doc/module.mk
@@ -4,6 +4,7 @@
# Part of Bugs Everywhere, a distributed bug tracking system.
#
# Copyright (C) 2008-2009 Chris Ball <cjb@laptop.org>
+# Gianluca Montecchi <gian@grys.it>
# W. Trevor King <wking@drexel.edu>
#
# This program is free software; you can redistribute it and/or modify
diff --git a/interfaces/xml/be-xml-to-mbox b/interfaces/xml/be-xml-to-mbox
index c630447..7960d56 100755
--- a/interfaces/xml/be-xml-to-mbox
+++ b/interfaces/xml/be-xml-to-mbox
@@ -1,6 +1,5 @@
#!/usr/bin/env python
-# Copyright (C) 2009 Chris Ball <cjb@laptop.org>
-# W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2009 W. Trevor King <wking@drexel.edu>
#
# 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/arch.py b/libbe/arch.py
index 98c4edd..4687555 100644
--- a/libbe/arch.py
+++ b/libbe/arch.py
@@ -1,5 +1,6 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
-# Ben Finney <ben+python@benfinney.id.au>
+# Ben Finney <benf@cybersource.com.au>
+# Gianluca Montecchi <gian@grys.it>
# James Rowe <jnrowe@ukfsn.org>
# W. Trevor King <wking@drexel.edu>
#
diff --git a/libbe/beuuid.py b/libbe/beuuid.py
index 490ed62..260f3dc 100644
--- a/libbe/beuuid.py
+++ b/libbe/beuuid.py
@@ -1,4 +1,5 @@
-# Copyright (C) 2008-2009 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2008-2009 Gianluca Montecchi <gian@grys.it>
+# W. Trevor King <wking@drexel.edu>
#
# 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/bug.py b/libbe/bug.py
index 6633ab7..48f8358 100644
--- a/libbe/bug.py
+++ b/libbe/bug.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2008-2009 Chris Ball <cjb@laptop.org>
+# Copyright (C) 2008-2009 Gianluca Montecchi <gian@grys.it>
# Thomas Habets <thomas@habets.pp.se>
# W. Trevor King <wking@drexel.edu>
#
diff --git a/libbe/bugdir.py b/libbe/bugdir.py
index 5324163..5b942d3 100644
--- a/libbe/bugdir.py
+++ b/libbe/bugdir.py
@@ -1,6 +1,7 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
# Alexander Belchenko <bialix@ukr.net>
# Chris Ball <cjb@laptop.org>
+# Gianluca Montecchi <gian@grys.it>
# Oleg Romanyshyn <oromanyshyn@panoramicfeedback.com>
# W. Trevor King <wking@drexel.edu>
#
diff --git a/libbe/bzr.py b/libbe/bzr.py
index 8e91d0c..2cf1cba 100644
--- a/libbe/bzr.py
+++ b/libbe/bzr.py
@@ -1,5 +1,6 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
-# Ben Finney <ben+python@benfinney.id.au>
+# Ben Finney <benf@cybersource.com.au>
+# Gianluca Montecchi <gian@grys.it>
# Marien Zwart <marienz@gentoo.org>
# W. Trevor King <wking@drexel.edu>
#
diff --git a/libbe/cmdutil.py b/libbe/cmdutil.py
index 9b64142..f1c8acd 100644
--- a/libbe/cmdutil.py
+++ b/libbe/cmdutil.py
@@ -1,4 +1,5 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
+# Gianluca Montecchi <gian@grys.it>
# Oleg Romanyshyn <oromanyshyn@panoramicfeedback.com>
# W. Trevor King <wking@drexel.edu>
#
diff --git a/libbe/comment.py b/libbe/comment.py
index 17daf62..5f67878 100644
--- a/libbe/comment.py
+++ b/libbe/comment.py
@@ -1,5 +1,5 @@
# Bugs Everywhere, a distributed bugtracker
-# Copyright (C) 2008-2009 Chris Ball <cjb@laptop.org>
+# Copyright (C) 2008-2009 Gianluca Montecchi <gian@grys.it>
# Thomas Habets <thomas@habets.pp.se>
# W. Trevor King <wking@drexel.edu>
#
diff --git a/libbe/config.py b/libbe/config.py
index fb5a028..4f32731 100644
--- a/libbe/config.py
+++ b/libbe/config.py
@@ -1,4 +1,5 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
+# Gianluca Montecchi <gian@grys.it>
# W. Trevor King <wking@drexel.edu>
#
# This program is free software; you can redistribute it and/or modify
diff --git a/libbe/darcs.py b/libbe/darcs.py
index 6bf0119..059452c 100644
--- a/libbe/darcs.py
+++ b/libbe/darcs.py
@@ -1,4 +1,5 @@
-# Copyright (C) 2009 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2009 Gianluca Montecchi <gian@grys.it>
+# W. Trevor King <wking@drexel.edu>
#
# 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/diff.py b/libbe/diff.py
index 9253a23..cce3b0f 100644
--- a/libbe/diff.py
+++ b/libbe/diff.py
@@ -1,4 +1,5 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
+# Gianluca Montecchi <gian@grys.it>
# W. Trevor King <wking@drexel.edu>
#
# This program is free software; you can redistribute it and/or modify
diff --git a/libbe/editor.py b/libbe/editor.py
index ec41006..ed497a0 100644
--- a/libbe/editor.py
+++ b/libbe/editor.py
@@ -1,5 +1,6 @@
# Bugs Everywhere, a distributed bugtracker
-# Copyright (C) 2008-2009 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2008-2009 Gianluca Montecchi <gian@grys.it>
+# W. Trevor King <wking@drexel.edu>
#
# 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/encoding.py b/libbe/encoding.py
index fd513b5..b0a04cc 100644
--- a/libbe/encoding.py
+++ b/libbe/encoding.py
@@ -1,5 +1,6 @@
# Bugs Everywhere, a distributed bugtracker
-# Copyright (C) 2008-2009 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2008-2009 Gianluca Montecchi <gian@grys.it>
+# W. Trevor King <wking@drexel.edu>
#
# 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/git.py b/libbe/git.py
index 781a278..cb4436a 100644
--- a/libbe/git.py
+++ b/libbe/git.py
@@ -1,5 +1,6 @@
-# Copyright (C) 2008-2009 Ben Finney <ben+python@benfinney.id.au>
+# Copyright (C) 2008-2009 Ben Finney <benf@cybersource.com.au>
# Chris Ball <cjb@laptop.org>
+# Gianluca Montecchi <gian@grys.it>
# W. Trevor King <wking@drexel.edu>
#
# This program is free software; you can redistribute it and/or modify
diff --git a/libbe/hg.py b/libbe/hg.py
index 40739b6..d7eb796 100644
--- a/libbe/hg.py
+++ b/libbe/hg.py
@@ -1,5 +1,6 @@
# Copyright (C) 2007-2009 Aaron Bentley and Panometrics, Inc.
-# Ben Finney <ben+python@benfinney.id.au>
+# Ben Finney <benf@cybersource.com.au>
+# Gianluca Montecchi <gian@grys.it>
# W. Trevor King <wking@drexel.edu>
#
# This program is free software; you can redistribute it and/or modify
diff --git a/libbe/mapfile.py b/libbe/mapfile.py
index d0e16fe..062606b 100644
--- a/libbe/mapfile.py
+++ b/libbe/mapfile.py
@@ -1,4 +1,5 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
+# Gianluca Montecchi <gian@grys.it>
# W. Trevor King <wking@drexel.edu>
#
# This program is free software; you can redistribute it and/or modify
diff --git a/libbe/plugin.py b/libbe/plugin.py
index d593d69..bd9bb65 100644
--- a/libbe/plugin.py
+++ b/libbe/plugin.py
@@ -1,4 +1,5 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
+# Gianluca Montecchi <gian@grys.it>
# Marien Zwart <marienz@gentoo.org>
# W. Trevor King <wking@drexel.edu>
#
diff --git a/libbe/properties.py b/libbe/properties.py
index 09dd20e..54375b4 100644
--- a/libbe/properties.py
+++ b/libbe/properties.py
@@ -1,5 +1,6 @@
# Bugs Everywhere - a distributed bugtracker
-# Copyright (C) 2008-2009 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2008-2009 Gianluca Montecchi <gian@grys.it>
+# W. Trevor King <wking@drexel.edu>
#
# 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/settings_object.py b/libbe/settings_object.py
index ceea9d5..7efda5b 100644
--- a/libbe/settings_object.py
+++ b/libbe/settings_object.py
@@ -1,5 +1,6 @@
# Bugs Everywhere - a distributed bugtracker
-# Copyright (C) 2008-2009 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2008-2009 Gianluca Montecchi <gian@grys.it>
+# W. Trevor King <wking@drexel.edu>
#
# 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/tree.py b/libbe/tree.py
index 06d09e5..1bfd803 100644
--- a/libbe/tree.py
+++ b/libbe/tree.py
@@ -1,5 +1,6 @@
# Bugs Everywhere, a distributed bugtracker
-# Copyright (C) 2008-2009 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2008-2009 Gianluca Montecchi <gian@grys.it>
+# W. Trevor King <wking@drexel.edu>
#
# 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/utility.py b/libbe/utility.py
index 1e43516..4126913 100644
--- a/libbe/utility.py
+++ b/libbe/utility.py
@@ -1,4 +1,5 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
+# Gianluca Montecchi <gian@grys.it>
# W. Trevor King <wking@drexel.edu>
#
# This program is free software; you can redistribute it and/or modify
diff --git a/libbe/vcs.py b/libbe/vcs.py
index ba23858..1ac5dd9 100644
--- a/libbe/vcs.py
+++ b/libbe/vcs.py
@@ -1,7 +1,8 @@
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
# Alexander Belchenko <bialix@ukr.net>
-# Ben Finney <ben+python@benfinney.id.au>
+# Ben Finney <benf@cybersource.com.au>
# Chris Ball <cjb@laptop.org>
+# Gianluca Montecchi <gian@grys.it>
# W. Trevor King <wking@drexel.edu>
#
# This program is free software; you can redistribute it and/or modify