diff options
author | 2014-11-02 22:34:38 +0100 | |
---|---|---|
committer | 2014-11-02 22:34:38 +0100 | |
commit | 7e759ef2d5dbb30da9752b72146bf4ff240821a8 (patch) | |
tree | 9c2829d69bc1092ff44424ac1312005247e935ee /module/plugins/internal/XFSPCrypter.py | |
parent | [Plugin] Improve logging (diff) | |
download | pyload-7e759ef2d5dbb30da9752b72146bf4ff240821a8.tar.xz |
Update internal XFS plugins
Diffstat (limited to 'module/plugins/internal/XFSPCrypter.py')
-rw-r--r-- | module/plugins/internal/XFSPCrypter.py | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/module/plugins/internal/XFSPCrypter.py b/module/plugins/internal/XFSPCrypter.py deleted file mode 100644 index 378b78d02..000000000 --- a/module/plugins/internal/XFSPCrypter.py +++ /dev/null @@ -1,28 +0,0 @@ -# -*- coding: utf-8 -*- - -from module.plugins.internal.SimpleCrypter import SimpleCrypter - - -class XFSPCrypter(SimpleCrypter): - __name__ = "XFSPCrypter" - __type__ = "crypter" - __version__ = "0.02" - - __pattern__ = None - - __description__ = """XFileSharingPro decrypter plugin""" - __license__ = "GPLv3" - __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] - - - HOSTER_NAME = None - - URL_REPLACEMENTS = [(r'[?/&]+$', r''), (r'(.+/[^?]*)$', r'\1?'), (r'$', r'&per_page=10000')] - - COOKIES = [(HOSTER_NAME, "lang", "english")] - - LINK_PATTERN = r'<(?:td|TD) [^>]*>\s*<a href="(.+?)"[^>]*>.+?(?:</a>)?\s*</(?:td|TD)>' - TITLE_PATTERN = r'<[tT]itle>.*?\: (.+) folder</[tT]itle>' - - OFFLINE_PATTERN = r'>\s*\w+ (Not Found|file (was|has been) removed)' - TEMP_OFFLINE_PATTERN = r'>\s*\w+ server (is in )?(maintenance|maintainance)' |