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

Unified Diff: third_party/twisted_8_1/twisted/plugins/twisted_lore.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_lore.py
diff --git a/third_party/twisted_8_1/twisted/plugins/twisted_lore.py b/third_party/twisted_8_1/twisted/plugins/twisted_lore.py
deleted file mode 100644
index 43bb91365691d65e76f6f3530f91fdddbd9228ae..0000000000000000000000000000000000000000
--- a/third_party/twisted_8_1/twisted/plugins/twisted_lore.py
+++ /dev/null
@@ -1,38 +0,0 @@
-
-from zope.interface import implements
-
-from twisted.lore.scripts.lore import IProcessor
-from twisted.plugin import IPlugin
-
-class _LorePlugin(object):
- implements(IPlugin, IProcessor)
-
- def __init__(self, name, moduleName, description):
- self.name = name
- self.moduleName = moduleName
- self.description = description
-
-DefaultProcessor = _LorePlugin(
- "lore",
- "twisted.lore.default",
- "Lore format")
-
-MathProcessor = _LorePlugin(
- "mlore",
- "twsited.lore.lmath",
- "Lore format with LaTeX formula")
-
-SlideProcessor = _LorePlugin(
- "lore-slides",
- "twisted.lore.slides",
- "Lore for slides")
-
-ManProcessor = _LorePlugin(
- "man",
- "twisted.lore.man2lore",
- "UNIX Man pages")
-
-NevowProcessor = _LorePlugin(
- "nevow",
- "twisted.lore.nevowlore",
- "Nevow for Lore")
« no previous file with comments | « third_party/twisted_8_1/twisted/plugins/twisted_inet.py ('k') | third_party/twisted_8_1/twisted/plugins/twisted_mail.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698