diff options
| author | Tom Feist <shabble@metavore.org> | 2010-11-05 05:06:35 +0000 | 
|---|---|---|
| committer | Tom Feist <shabble@metavore.org> | 2010-11-05 05:06:35 +0000 | 
| commit | 9b79dbd185e78a7cd288c88a31a188b4be62c698 (patch) | |
| tree | 33957190117d54ba62721bd358ea3a9183e26548 | |
| parent | added some feature tests for format expansion (diff) | |
| download | irssi-scripts-9b79dbd185e78a7cd288c88a31a188b4be62c698.tar.gz irssi-scripts-9b79dbd185e78a7cd288c88a31a188b4be62c698.zip | |
url_hilight: added a warning about unfinishedness, and make it at least compile.
| -rw-r--r-- | url_hilight/url_hilight.pl | 15 | 
1 files changed, 11 insertions, 4 deletions
| diff --git a/url_hilight/url_hilight.pl b/url_hilight/url_hilight.pl index 4efb893..fe1a096 100644 --- a/url_hilight/url_hilight.pl +++ b/url_hilight/url_hilight.pl @@ -1,3 +1,11 @@ +# url_hilight.pl +# +# This script is a work in progress, and will probably not do anything useful +# at the moment.  Please fork and implement, or bug me on #irssi if you can +# decide what it ought to do, since I've forgotten. + + +  use strict;  use warnings;  use Irssi; @@ -6,9 +14,9 @@ our %IRSSI = (               "author"      => 'shabble',               "contact"     => 'shabble+irssi@metavore.org, shabble@Freenode/#irssi',               "name"        => 'URL Highlighter', -             "description" => ' ' -             "license"     => 'WTFPL: http://sam.zoy.org/wtfpl/' -             "version"     => '0.1' +             "description" => ' ', +             "license"     => 'WTFPL: http://sam.zoy.org/wtfpl/', +             "version"     => '0.1',              );  # regex taken from http://daringfireball.net/2010/07/improved_regex_for_matching_urls @@ -21,6 +29,5 @@ sub handle_gui_print_text {      }  } -  Irssi::signal_add('gui print text', \&handle_gui_print_text); | 
