Documentation improvements.
authorEric S. Raymond <esr@thyrsus.com>
Mon, 8 Oct 2012 14:56:59 +0000 (10:56 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Mon, 8 Oct 2012 14:56:59 +0000 (10:56 -0400)
NEWS
hacking.txt
irkerd
irkerhook.py
irkerhook.xml

diff --git a/NEWS b/NEWS
index 13bf329dde401ed5774dc5d59c0141646638e9b6..8030956dc4ba6134c08a1577a2fa7319a1708e32 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,13 @@
                        irker history 
 
+1.9 @
+  This is a stable release.
+  Proper mutex locks prevent an occasional thread crash on session timeout.
+  There's now systemd installation support for irkerd.
+
 1.8 @ 2012-10-06
   It's now possible to send to nick URLs.
-  Cope gracefully if an IRC server dies or hands during the nick handshake.
+  Cope gracefully if an IRC server dies or hangs during the nick handshake.
 
 1.7 @ 2012-10-05
   This is a stable release.
index 0a54a319697a39dc459b44a2ec00a84e64a57183..583113f3e046977069ce5525cbe3910fee9536d2 100644 (file)
@@ -62,7 +62,10 @@ filtering option.
 
 dak180 (name withheld by request) wrote the OS X launchd plist.
 
+Wulf C. Krueger <philantrop@exherbo.org> wrote the systemd 
+installation support.
+
 Other people on the freenode #irker channel (Kingpin, fpcfan,
-shadowm) smoked out bugs in irkerd before they could seriously
+shadowm, Rick) smoked out bugs in irkerd before they could seriously
 bug anybody.
 
diff --git a/irkerd b/irkerd
index 302b48a0efec29ab76ae29c6b3562cf43a19d44d..03d0254488b083b8d44c3085992c28e00fd9e7fa 100755 (executable)
--- a/irkerd
+++ b/irkerd
@@ -18,7 +18,8 @@ developers). The -V option prints the program version and exits.
 Design and code by Eric S. Raymond <esr@thyrsus.com>. See the project
 resource page at <http://www.catb.org/~esr/irker/>.
 
-Requires Python 2.6 and the irc client library at version >= 2.0.2: see
+Requires Python 2.6 or 2.5 with the simplejson library installed, and
+the irc client library at version >= 2.0.2: see
 
 http://pypi.python.org/pypi/irc/
 """
index 3c4bfc483efb48a985aa677d80985286d4cf6a15..65f7f1c02829a0d7b268b713dbd2426998deea8a 100755 (executable)
@@ -3,7 +3,7 @@
 # Distributed under BSD terms.
 #
 # This script contains git porcelain and porcelain byproducts.
-# Requires Python 2.6, or 2.4 with the 2.6 json library installed.
+# Requires Python 2.6, or 2.5 with the simplejson library installed.
 #
 # usage: irkerhook.py [-V] [-n] [--variable=value...] [commit_id...]
 #
@@ -42,7 +42,7 @@ version = "1.8"
 import os, sys, commands, socket, urllib, subprocess
 from pipes import quote as shellquote
 try:
-    import simplejson as json  # Faster, also makes us Python-2.4-compatible
+    import simplejson as json  # Faster, also makes us Python-2.5-compatible
 except ImportError:
     import json
 
index 748a202d216b29cd4e4e8ffeaa24b6f8305706b5..d097aaaeb442d33a808073116b933483b64d56a2 100644 (file)
@@ -111,8 +111,9 @@ expanded to the value of the "repo" variable.</para>
 <varlistentry>
 <term>tinyifier</term>
 <listitem>
-<para>URL template pointing to a service for compressing URLs so they 
-will take up less space in the notification line.</para>
+<para>URL template pointing to a service for compressing URLs so they
+will take up less space in the notification line. If the value of this
+variable is "None", no compression will be attempted.</para>
 </listitem>
 </varlistentry>
 <varlistentry>