summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/DevhostStFolder.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-03 17:46:50 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-03 17:46:50 +0200
commitf62715c5d2c6eb6379119b220a271b5b73da689f (patch)
tree635fa83650c80f30a72205c9f8ab23289ab3977a /module/plugins/crypter/DevhostStFolder.py
parentMerge branch 'stable' into 0.4.10 (diff)
downloadpyload-f62715c5d2c6eb6379119b220a271b5b73da689f.tar.xz
Fix previous merge commit
Diffstat (limited to 'module/plugins/crypter/DevhostStFolder.py')
-rw-r--r--module/plugins/crypter/DevhostStFolder.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/module/plugins/crypter/DevhostStFolder.py b/module/plugins/crypter/DevhostStFolder.py
deleted file mode 100644
index 0d9c032cb..000000000
--- a/module/plugins/crypter/DevhostStFolder.py
+++ /dev/null
@@ -1,29 +0,0 @@
-# -*- coding: utf-8 -*-
-#
-# Test links:
-# http://d-h.st/users/shine/?fld_id=37263#files
-
-import re
-
-from urlparse import urljoin
-
-from module.plugins.internal.SimpleCrypter import SimpleCrypter
-
-
-class DevhostStFolder(SimpleCrypter):
- __name__ = "DevhostStFolder"
- __type__ = "crypter"
- __version__ = "0.01"
-
- __pattern__ = r'http://(?:www\.)?d-h\.st/users/\w+/\?fld_id=\d+'
-
- __description__ = """d-h.st decrypter plugin"""
- __author_name_ = "zapp-brannigan"
- __author_mail_ = "fuerst.reinje@web.de"
-
-
- LINK_PATTERN = r';"><a href="/(\w+)'
-
-
- def getLinks(self):
- return [urljoin("http://d-h.st", link) for link in re.findall(self.LINK_PATTERN, self.html)]