X-Git-Url: https://git.camperquake.de/gitweb.cgi?a=blobdiff_plain;f=videosite-irssi.pl;h=3db9af162f8c994e2c211d422af9db2f570610ef;hb=9257f7504905acaae56297cf7f1a479853e68fe7;hp=f1c9b1d4c3fb4c825d2f7fc7aa49e03228d2cd68;hpb=5d1f166b61180b15b2f80ca514625f03e35b7cce;p=videosite.git diff --git a/videosite-irssi.pl b/videosite-irssi.pl index f1c9b1d..3db9af1 100644 --- a/videosite-irssi.pl +++ b/videosite-irssi.pl @@ -26,6 +26,14 @@ my %foreground_colors = ( ); # +# This is a canary value used in the config system as the default +# value. As irssi does not have a way to test if a setting exists +# this is used instead. A config value is never expected to be set +# to this value and be valid. +# +my $config_canary = "\1"; + +# # Initialize the config subsystem. Called by the core. # # Due to historic reasons this has to deal with a number of possible config sources: @@ -140,10 +148,10 @@ sub config_get { my $val; - Irssi::settings_add_str('videosite', $item, "\1"); + Irssi::settings_add_str('videosite', $item, $config_canary); $val = Irssi::settings_get_str($item); - return ($val ne "\1")?$val:undef; + return ($val ne $config_canary)?$val:undef; } # @@ -153,8 +161,8 @@ sub config_has { my $path = shift; my $item = join('.', 'videosite', @{$path}); - Irssi::settings_add_str('videosite', $item, "\1"); - return Irssi::settings_get_str($item) ne "\1"; + Irssi::settings_add_str('videosite', $item, $config_canary); + return Irssi::settings_get_str($item) ne $config_canary; } # @@ -165,18 +173,21 @@ sub config_set { my $value = shift; my $item = join('.', 'videosite', @{$path}); - Irssi::settings_add_str('videosite', $item, "\1"); + Irssi::settings_add_str('videosite', $item, $config_canary); Irssi::settings_set_str($item, $value); } # # Delete a configuration value. Called by the core. # +# Now, according to the configuration Irssi::settings_remove() removes a +# config settings. This does not work in any irssi version available to me. +# So just set the key to the canary value. +# sub config_del { my $path = shift; - my $item = join('.', 'videosite', @{$path}); - Irssi::settings_remove($item); + config_set($path, $config_canary); } # @@ -257,7 +268,7 @@ sub videosite_init { if (videosite_reset()) { signal_add_last("message public", sub { message_hook(@_) }); signal_add_last("message own_public", sub { message_hook($_[0], $_[1], undef, undef, $_[2]) }); - signal_add_last("message private", sub { message_hooK($_[0], $_[1], $_[2], $_[3], $_[2]) }); + signal_add_last("message private", sub { message_hook($_[0], $_[1], $_[2], $_[3], $_[2]) }); signal_add_last("message own_private", sub { message_hook($_[0], $_[1], undef, undef, $_[2]) }); signal_add_last("message irc action", sub { message_hook(@_) }); signal_add_last("message irc own_action", sub { message_hook($_[0], $_[1], undef, undef, $_[2]) });