diff options
author | igel-kun <mathiaswe@gmx.de> | 2014-01-18 15:28:37 +0100 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-01-18 15:28:37 +0100 |
commit | c297f2749efe9e37ecab0965993cc8c8c11e8e59 (patch) | |
tree | 83d900a84e014cf3dd491cc3e928c8a442a8bdf4 /module/plugins/hoster | |
parent | Filestube: version increase after 4c02adf00b8a7d6abcd2467eaff512f5780c4d7d (diff) | |
download | pyload-c297f2749efe9e37ecab0965993cc8c8c11e8e59.tar.xz |
XFileSharingPro:
* Added 2 hosters
* Extended OFFLINE_PATTERN
Merged pull request #485
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/XFileSharingPro.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/XFileSharingPro.py b/module/plugins/hoster/XFileSharingPro.py index 1fb0cf96c..5b167c3c9 100644 --- a/module/plugins/hoster/XFileSharingPro.py +++ b/module/plugins/hoster/XFileSharingPro.py @@ -36,7 +36,7 @@ class XFileSharingPro(SimpleHoster): __name__ = "XFileSharingPro" __type__ = "hoster" __pattern__ = r"^unmatchable$" - __version__ = "0.24" + __version__ = "0.25" __description__ = """XFileSharingPro common hoster base""" __author_name__ = ("zoidberg", "stickell") __author_mail__ = ("zoidberg@mujmail.cz", "l.stickell@yahoo.it") @@ -44,7 +44,7 @@ class XFileSharingPro(SimpleHoster): FILE_NAME_PATTERN = r'<input type="hidden" name="fname" value="(?P<N>[^"]+)"' FILE_SIZE_PATTERN = r'You have requested <font color="red">[^<]+</font> \((?P<S>[^<]+)\)</font>' FILE_INFO_PATTERN = r'<tr><td align=right><b>Filename:</b></td><td nowrap>(?P<N>[^<]+)</td></tr>\s*.*?<small>\((?P<S>[^<]+)\)</small>' - FILE_OFFLINE_PATTERN = r'<(b|h[1-6])>File Not Found</(b|h[1-6])>' + FILE_OFFLINE_PATTERN = r'<(b|h[1-6])>File Not Found</(b|h[1-6])>|This file has been removed' WAIT_PATTERN = r'<span id="countdown_str">.*?>(\d+)</span>' LONG_WAIT_PATTERN = r'(?P<H>\d+(?=\s*hour))?.*?(?P<M>\d+(?=\s*minute))?.*?(?P<S>\d+(?=\s*second))?' |