[SimBot-commits] CVS: simbot/plugins sqlite-logger.pl,1.67,1.68
Status: Abandoned
Brought to you by:
kstange
|
From: Kevin S. <ks...@us...> - 2005-08-19 00:32:49
|
Update of /cvsroot/simbot/simbot/plugins In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12008/plugins Modified Files: sqlite-logger.pl Log Message: Support URLs containing colons (such as with port numbers) Index: sqlite-logger.pl =================================================================== RCS file: /cvsroot/simbot/simbot/plugins/sqlite-logger.pl,v retrieving revision 1.67 retrieving revision 1.68 diff -u -d -p -r1.67 -r1.68 --- sqlite-logger.pl 18 Aug 2005 23:10:09 -0000 1.67 +++ sqlite-logger.pl 19 Aug 2005 00:31:52 -0000 1.68 @@ -1312,7 +1312,7 @@ sub linkify { next; } - if ( $url =~ m{^((http|ftp|news|nntp|irc|aim)s?:[\w.?/=\-\&\~\;]+)} ) { + if ( $url =~ m{^((http|ftp|news|nntp|irc|aim)s?:[\w.?/=\-\&\~\;:]+)} ) { $curWord = qq($word_prefix<a href="$1">$word</a>$word_suffix); next; } |