summaryrefslogtreecommitdiff
path: root/debianbugs.py
diff options
context:
space:
mode:
Diffstat (limited to 'debianbugs.py')
-rw-r--r--debianbugs.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/debianbugs.py b/debianbugs.py
index fe09d42..8e512e1 100644
--- a/debianbugs.py
+++ b/debianbugs.py
@@ -3,6 +3,7 @@
Place in your .xchat2 directory and either reload X-Chat or
/PY LOAD topicdiff.py
+0.6 26 Oct 2010 Allow bug numbers up to one million.
0.5 23 Jun 2008 Add support for Ubuntu/Launchpad.
0.4 21 May 2006 Change channel pattern from *debian* to *deb*.
0.3 12 Jun 2005 Limit bug numbers to be below 4e5 to reduce false
@@ -13,20 +14,20 @@ Place in your .xchat2 directory and either reload X-Chat or
topicdiff.py.
"""
-__author__ = "Lars Wirzenius <liw@iki.fi>"
-__copyright__ = "Copyright 2004 Lars Wirzenius <liw@iki.fi>."
+__author__ = "Lars Wirzenius <liw@liw.fi>"
+__copyright__ = "Copyright 2010 Lars Wirzenius <liw@liw.fi>."
__licence__ = "MIT"
__module_name__ = "debianbugs"
-__module_version__ = "0.5"
+__module_version__ = "0.6"
__module_description__ = \
- "Shows links to Debian bugs, when someone says #[number]"
+ "Shows links to Debian/Ubuntu bugs, when someone says #[number]"
import re
import xchat
BUG_MIN = 10000
-BUG_MAX = 600000
+BUG_MAX = 1000000
patterns = {
r"#.*deb.*": "http://bugs.debian.org/%s",