diff options
author | OndrejIT <git@ondrej.it> | 2016-04-25 21:40:15 +0200 |
---|---|---|
committer | OndrejIT <git@ondrej.it> | 2016-04-25 21:40:15 +0200 |
commit | aa785ddd8d64fa25bd1b0fe20eaa07d2c67b6837 (patch) | |
tree | 1ce98bfa86be2216908bfcfeb0d8b4075e26dbee /module/plugins/hoster | |
parent | Fix some incompatibilities with python 2.5 (diff) | |
download | pyload-aa785ddd8d64fa25bd1b0fe20eaa07d2c67b6837.tar.xz |
Fix SdilejCZ
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/CzshareCom.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/module/plugins/hoster/CzshareCom.py b/module/plugins/hoster/CzshareCom.py index 42a2ec02b..dff2f1611 100644 --- a/module/plugins/hoster/CzshareCom.py +++ b/module/plugins/hoster/CzshareCom.py @@ -1,7 +1,4 @@ # -*- coding: utf-8 -*- -# -# Test links: -# http://czshare.com/5278880/random.bin import re @@ -12,10 +9,10 @@ from module.plugins.internal.misc import parse_size class CzshareCom(SimpleHoster): __name__ = "CzshareCom" __type__ = "hoster" - __version__ = "1.08" + __version__ = "1.09" __status__ = "testing" - __pattern__ = r'http://(?:www\.)?(czshare|sdilej)\.(com|cz)/(\d+/|download\.php\?).+' + __pattern__ = r'https?://(?:www\.)?(czshare|sdilej)\.(com|cz)/(\d+/|download\.php\?).+' __config__ = [("activated" , "bool", "Activated" , True), ("use_premium" , "bool", "Use premium account if available" , True), ("fallback" , "bool", "Fallback to free download if premium fails" , True), @@ -24,7 +21,8 @@ class CzshareCom(SimpleHoster): __description__ = """CZshare.com hoster plugin, now Sdilej.cz""" __license__ = "GPLv3" - __authors__ = [("zoidberg", "zoidberg@mujmail.cz")] + __authors__ = [("zoidberg", "zoidberg@mujmail.cz"), + ("ondrej", "git@ondrej.it"),] NAME_PATTERN = r'<div class="tab" id="parameters">\s*<p>\s*Cel. n.zev: <a href=.*?>(?P<N>.+?)</a>' |