remove sieve.py from core, it doesn't work at all

This commit is contained in:
Ryan Hitchman 2009-11-20 17:32:10 -07:00
parent 1e9e844f86
commit b6ca89e079
1 changed files with 0 additions and 29 deletions

View File

@ -1,29 +0,0 @@
import re
import hook
@hook.sieve
def sieve_suite(bot, input, func, args):
events = args.get('events', ['PRIVMSG'])
if input.command not in events and events != '*':
return None
if input.nick.lower()[-3:] == 'bot' and args.get('ignorebots', True):
return None
hook = args.get('hook', r'(.*)')
args.setdefault('prefix', True)
if args.get('prefix', True):
hook = (r'^(?:[.!]|' if input.chan != input.nick else r'^(?:[.!]?|') \
+ bot.nick +r'[:,]*\s*)' + hook
input.re = re.match(hook, input.msg, flags=re.I)
if input.re is None:
return None
input.inp = ' '.join(input.re.groups())
return input