From: Matthew Mondor Date: Thu, 30 Nov 2006 18:32:48 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: pgsql-branch-merge~60 X-Git-Url: http://git.pulsar-zone.net/?a=commitdiff_plain;h=6a832f0117ddda957457a9a38f7b06f31fba0f64;p=mmondor.git *** empty log message *** --- diff --git a/mmsoftware/js/js-sh/app/irclog/irclog.js b/mmsoftware/js/js-sh/app/irclog/irclog.js index 6bd268d..897d2d4 100644 --- a/mmsoftware/js/js-sh/app/irclog/irclog.js +++ b/mmsoftware/js/js-sh/app/irclog/irclog.js @@ -1,6 +1,6 @@ -/* $Id: irclog.js,v 1.13 2006/11/27 15:45:00 mmondor Exp $ */ +/* $Id: irclog.js,v 1.14 2006/11/30 18:32:48 mmondor Exp $ */ -var irc_version = '$Id: irclog.js,v 1.13 2006/11/27 15:45:00 mmondor Exp $'; +var irc_version = '$Id: irclog.js,v 1.14 2006/11/30 18:32:48 mmondor Exp $'; function file_read(name) { @@ -388,6 +388,17 @@ File.prototype.state_log = function() irc_channel + ' :' + msg.substr(s.length)); continue; + } else if (on_channel && + (s = msg.match(/^!A [^\n]* :/)) != null) { + s = s.toString(); + w = msg.split(' '); + if (w[1] == irc_msg_passwd) + this.putline('PRIVMSG ' + + irc_channel + + " :\001ACTION " + + msg.substr(s.length) + + "\001"); + continue; } } }