Added RSS feed support to Evennia. This uses the @rss2chan command to tie a feed to an in-game channel. Updates to the feed will henceforth be echoed to the channel. The reader requires the python-feedreader package to be installed.

This commit is contained in:
Griatch 2012-01-28 20:12:59 +01:00
parent b2d7f37e9c
commit cdab5a240b
8 changed files with 286 additions and 25 deletions

View file

@ -174,8 +174,6 @@ def connect_to_irc(connection):
def connect_all():
"""
Activate all irc bots.
Returns a list of (key, TCPClient) tuples for server to properly set services.
"""
for connection in ExternalChannelConnection.objects.filter(db_external_key__startswith='irc_'):
connect_to_irc(connection)