Note a bug.
authorEric S. Raymond <esr@thyrsus.com>
Mon, 1 Oct 2012 02:03:30 +0000 (22:03 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Mon, 1 Oct 2012 02:03:30 +0000 (22:03 -0400)
BUGS
irkerhook.py

diff --git a/BUGS b/BUGS
index 199419c16008f3ac793e1b349327b5b08f658678..2c3e5061916a1bf1b3b0c13039aff3f98af66ce5 100644 (file)
--- a/BUGS
+++ b/BUGS
@@ -3,6 +3,4 @@
 * Despite what the header comment implies, the URL prefix and message template
   in irkerhook.py can at present only be modified by hacking the script.
 
-* DoS attacks on irker instances are not presently very difficult.
-  Some mechanism for reaping old connections when near exhaustion of
-  thread instances or file descriptors would be a good idea.
+* We shouldn't generate bogus URLS when the repo doesm't have a web view.
index 781670f51aacdd1a783648baa5a39675d5786863..bcc8275f7c64fa4b5dcce1dfbc5033cfacb6aaa5 100755 (executable)
@@ -68,9 +68,10 @@ class GenericExtractor:
         self.logmsg = None
         self.rev = None
         self.color = False
+        # Color highlighting is disabled by default.
         self.bold = self.green = self.blue = ""
         self.yellow = self.brown = self.reset = ""
-    def activate_color(self)
+    def activate_color(self):
         "IRC color codes."
         self.bold = '\x02'
         self.green = '\x033'