aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/Twisted-12.2.0-py2.7-linux-x86_64.egg/twisted/plugins/twisted_words.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/site-packages/Twisted-12.2.0-py2.7-linux-x86_64.egg/twisted/plugins/twisted_words.py')
-rwxr-xr-xlib/python2.7/site-packages/Twisted-12.2.0-py2.7-linux-x86_64.egg/twisted/plugins/twisted_words.py43
1 files changed, 0 insertions, 43 deletions
diff --git a/lib/python2.7/site-packages/Twisted-12.2.0-py2.7-linux-x86_64.egg/twisted/plugins/twisted_words.py b/lib/python2.7/site-packages/Twisted-12.2.0-py2.7-linux-x86_64.egg/twisted/plugins/twisted_words.py
deleted file mode 100755
index 6f14aefa..00000000
--- a/lib/python2.7/site-packages/Twisted-12.2.0-py2.7-linux-x86_64.egg/twisted/plugins/twisted_words.py
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright (c) Twisted Matrix Laboratories.
-# See LICENSE for details.
-
-from zope.interface import classProvides
-
-from twisted.plugin import IPlugin
-
-from twisted.application.service import ServiceMaker
-from twisted.words import iwords
-
-
-NewTwistedWords = ServiceMaker(
- "New Twisted Words",
- "twisted.words.tap",
- "A modern words server",
- "words")
-
-TwistedXMPPRouter = ServiceMaker(
- "XMPP Router",
- "twisted.words.xmpproutertap",
- "An XMPP Router server",
- "xmpp-router")
-
-class RelayChatInterface(object):
- classProvides(IPlugin, iwords.IProtocolPlugin)
-
- name = 'irc'
-
- def getFactory(cls, realm, portal):
- from twisted.words import service
- return service.IRCFactory(realm, portal)
- getFactory = classmethod(getFactory)
-
-class PBChatInterface(object):
- classProvides(IPlugin, iwords.IProtocolPlugin)
-
- name = 'pb'
-
- def getFactory(cls, realm, portal):
- from twisted.spread import pb
- return pb.PBServerFactory(portal, True)
- getFactory = classmethod(getFactory)
-