summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter
diff options
context:
space:
mode:
authorGravatar mkaay <mkaay@mkaay.de> 2010-05-17 00:01:05 +0200
committerGravatar mkaay <mkaay@mkaay.de> 2010-05-17 00:01:05 +0200
commit32ba2f79389ccf4f7d40197837c02d28bb13261d (patch)
tree893de3556630eaa8242fa0fe3550039cab210b09 /module/plugins/crypter
parentnew config option (outgoing intreface) (diff)
downloadpyload-32ba2f79389ccf4f7d40197837c02d28bb13261d.tar.xz
new plugin interface test, ShareonlineBiz + SerienjunkiesOrg + MegauploadedCom fix, other stuff
Diffstat (limited to 'module/plugins/crypter')
-rw-r--r--module/plugins/crypter/SerienjunkiesOrg.py17
1 files changed, 8 insertions, 9 deletions
diff --git a/module/plugins/crypter/SerienjunkiesOrg.py b/module/plugins/crypter/SerienjunkiesOrg.py
index af95a9c78..6733be2bb 100644
--- a/module/plugins/crypter/SerienjunkiesOrg.py
+++ b/module/plugins/crypter/SerienjunkiesOrg.py
@@ -8,17 +8,16 @@ from module.unescape import unescape
from module.DownloadThread import CaptchaError
class SerienjunkiesOrg(Plugin):
+ __name__ = "SerienjunkiesOrg"
+ __type__ = "container"
+ __pattern__ = r"http://.*?serienjunkies.org/.*?"
+ __version__ = "0.2"
+ __description__ = """serienjunkies.org Container Plugin"""
+ __author_name__ = ("mkaay")
+ __author_mail__ = ("mkaay@mkaay.de")
+
def __init__(self, parent):
Plugin.__init__(self, parent)
- props = {}
- props['name'] = "SerienjunkiesOrg"
- props['type'] = "container"
- props['pattern'] = r"http://.*?serienjunkies.org/.*?"
- props['version'] = "0.2"
- props['description'] = """serienjunkies.org Container Plugin"""
- props['author_name'] = ("mkaay")
- props['author_mail'] = ("mkaay@mkaay.de")
- self.props = props
self.parent = parent
self.html = None
self.multi_dl = False