You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
365 B
15 lines
365 B
"""Forms for doing ircbot stuff."""
|
|
import logging
|
|
|
|
from django.forms import CharField, Form, IntegerField, Textarea
|
|
|
|
log = logging.getLogger('ircbot.forms')
|
|
|
|
|
|
class PrivmsgForm(Form):
|
|
"""Accept a privmsg to send to the ircbot."""
|
|
|
|
target = CharField()
|
|
message = CharField(widget=Textarea)
|
|
xmlrpc_host = CharField()
|
|
xmlrpc_port = IntegerField()
|
|
|