Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Unified Diff: third_party/twisted_8_1/twisted/plugins/twisted_words.py

Issue 12261012: Remove third_party/twisted_8_1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)
-
« no previous file with comments | « third_party/twisted_8_1/twisted/plugins/twisted_web.py ('k') | third_party/twisted_8_1/twisted/protocols/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698