aboutsummaryrefslogtreecommitdiffstats
path: root/auto-server
diff options
context:
space:
mode:
authorricho <richo@psych0tik.net>2011-09-21 11:33:31 +0000
committerricho <richo@psych0tik.net>2011-09-21 11:33:31 +0000
commitc705a09d0fe81ac20497d17640792cdcaf5ec0d0 (patch)
treeaaa382f548260902c96274e75c7a184db0e7cf8d /auto-server
parentMerge branch 'master' into richoH-dev (diff)
parentRemove deprecated docs (diff)
downloadirssi-scripts-c705a09d0fe81ac20497d17640792cdcaf5ec0d0.tar.gz
irssi-scripts-c705a09d0fe81ac20497d17640792cdcaf5ec0d0.zip
Merge branch 'master' into richoH-dev
Diffstat (limited to 'auto-server')
-rw-r--r--auto-server/auto_server.pl15
1 files changed, 5 insertions, 10 deletions
diff --git a/auto-server/auto_server.pl b/auto-server/auto_server.pl
index 0046340..8f24e50 100644
--- a/auto-server/auto_server.pl
+++ b/auto-server/auto_server.pl
@@ -5,21 +5,16 @@
#
# the primary command used is /join+ #channelname
#
-# Mappings for channels to servers is accomplished with the
-# joinplus_server_maps setting.
-#
-# Within this setting, space separated pairs denote channel, server pairs.
-# Spaces also separate individual pairs, for example:
-#
-# /set joinplus_server_maps #foo Freenode #bar irc.somewhere.tld #meep DALNet
+# Mappings for channels and servers are retrieved from irssi's internal
+# /channel list
#
# Then use /join+ #foo, and if you are not already connected to freenode, it
# will connect you, and then join that channel.
# TODO:
-# Autocompletion for channel names
# address conflict resolution
# fix that disgusting race condition
+# Fix incredibly slow shutdown time after a few days
use strict;
use warnings;
@@ -94,7 +89,7 @@ sub haxy_print_hook {
my $data = $_[1];
# Hose control characters
$data =~ s/\x04.//g;
- if ($data =~ m/^#/) {
+ if ($data =~ m/^[#&!]/) {
my @items = split /\s+/, $data;
push(@hack_channels, $items[0]);
push(@hack_channels, $items[1]);
@@ -135,7 +130,7 @@ sub join_plus {
# parse out channel name from args:
my $channel;
- if ($args =~ m/^(#?[#a-zA-Z0-9-]+)/) {
+ if ($args =~ m/^([#&!]?[^ ]*)/) {
$channel = $1;
_debug_print ("Channel is: $channel");
}