#!/usr/bin/perl -w ## Bugreports and Licence disclaimer. # # This script is based on Geert Hauwaerts' active_notice.pl. # # 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 # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this script; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # ## use strict; use Irssi; use vars qw($VERSION %IRSSI); $VERSION = "0.1.0"; %IRSSI = ( authors => 'Nicolas Trecourt', contact => 'fosco@fosconetwork.org', name => 'active_dcc.pl', description => 'This script shows dcc info into the active channel unless it has its own window.', license => 'GNU General Public License', url => 'gopher://glog.fosconetwork.org/0/code/active_dcc.pl', changed => 'Thu Apr 09 12:19:00 CEST 2009', ); Irssi::theme_register([ 'active_dcc_loaded', '%R>>%n %_Scriptinfo:%_ Loaded $0 version $1 by $2.' ]); sub dcc_move { my ($dest, $text, $stripped) = @_; my $server = $dest->{server}; return if (!$server || !($dest->{level} & MSGLEVEL_DCC) || $server->ischannel($dest->{target})); my $witem = $server->window_item_find($dest->{target}); my $awin = Irssi::active_win(); return if $witem; $awin->print($text, MSGLEVEL_DCC); Irssi::signal_stop(); } Irssi::signal_add('print text', 'dcc_move'); Irssi::signal_add('dcc list print', 'dcc_move'); Irssi::printformat(MSGLEVEL_CLIENTCRAP, 'active_dcc_loaded', $IRSSI{name}, $VERSION, $IRSSI{authors});