aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/Twisted-12.2.0-py2.7-linux-x86_64.egg/twisted/plugins/twisted_lore.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_lore.py')
-rwxr-xr-xlib/python2.7/site-packages/Twisted-12.2.0-py2.7-linux-x86_64.egg/twisted/plugins/twisted_lore.py38
1 files changed, 0 insertions, 38 deletions
diff --git a/lib/python2.7/site-packages/Twisted-12.2.0-py2.7-linux-x86_64.egg/twisted/plugins/twisted_lore.py b/lib/python2.7/site-packages/Twisted-12.2.0-py2.7-linux-x86_64.egg/twisted/plugins/twisted_lore.py
deleted file mode 100755
index 1ab57a5d..00000000
--- a/lib/python2.7/site-packages/Twisted-12.2.0-py2.7-linux-x86_64.egg/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",
- "twisted.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")