Index: third_party/twisted_8_1/twisted/plugins/twisted_words.py |
diff --git a/third_party/twisted_8_1/twisted/plugins/twisted_words.py b/third_party/twisted_8_1/twisted/plugins/twisted_words.py |
deleted file mode 100644 |
index 85d820ab56e1f58140a6e00844544c8189678289..0000000000000000000000000000000000000000 |
--- a/third_party/twisted_8_1/twisted/plugins/twisted_words.py |
+++ /dev/null |
@@ -1,42 +0,0 @@ |
-# Copyright (c) 2001-2008 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 |
- |
-TwistedTOC = ServiceMaker( |
- "Twisted TOC Server", |
- "twisted.words.toctap", |
- "An AIM TOC service.", |
- "toc") |
- |
-NewTwistedWords = ServiceMaker( |
- "New Twisted Words", |
- "twisted.words.tap", |
- "A modern words server", |
- "words") |
- |
-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) |
- |