summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/FreetexthostCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/crypter/FreetexthostCom.py')
-rw-r--r--module/plugins/crypter/FreetexthostCom.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/module/plugins/crypter/FreetexthostCom.py b/module/plugins/crypter/FreetexthostCom.py
deleted file mode 100644
index bd8a90ce5..000000000
--- a/module/plugins/crypter/FreetexthostCom.py
+++ /dev/null
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-
-import re
-
-from module.plugins.internal.SimpleCrypter import SimpleCrypter
-
-
-class FreetexthostCom(SimpleCrypter):
- __name__ = "FreetexthostCom"
- __type__ = "crypter"
- __version__ = "0.01"
-
- __pattern__ = r'http://(?:www\.)?freetexthost\.com/\w+'
-
- __description__ = """Freetexthost.com decrypter plugin"""
- __author_name__ = "stickell"
- __author_mail__ = "l.stickell@yahoo.it"
-
-
- def getLinks(self):
- m = re.search(r'<div id="contentsinner">\s*(.+)<div class="viewcount">', self.html, re.DOTALL)
- if m is None:
- self.fail('Unable to extract links | Plugin may be out-of-date')
- links = m.group(1)
- return links.strip().split("<br />\r\n")