diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-18 13:50:09 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-18 13:50:09 +0200 |
commit | be5a34a74c7126dd9606e646cd879369dac7404d (patch) | |
tree | 49c251ee5309221848de6fd430660bafc00a5a3f /module/plugins/crypter/RapidfileshareNetFolder.py | |
parent | New account XFileSharingPro (diff) | |
download | pyload-be5a34a74c7126dd9606e646cd879369dac7404d.tar.xz |
Convert some crypters to use XFSPCrypter instead SimpleCrypter
Diffstat (limited to 'module/plugins/crypter/RapidfileshareNetFolder.py')
-rw-r--r-- | module/plugins/crypter/RapidfileshareNetFolder.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/module/plugins/crypter/RapidfileshareNetFolder.py b/module/plugins/crypter/RapidfileshareNetFolder.py index 7f7f85cbd..cca52db20 100644 --- a/module/plugins/crypter/RapidfileshareNetFolder.py +++ b/module/plugins/crypter/RapidfileshareNetFolder.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- -from module.plugins.internal.SimpleCrypter import SimpleCrypter +from module.plugins.internal.XFSPCrypter import XFSPCrypter -class RapidfileshareNetFolder(SimpleCrypter): +class RapidfileshareNetFolder(XFSPCrypter): __name__ = "RapidfileshareNetFolder" __type__ = "crypter" - __version__ = "0.01" + __version__ = "0.02" __pattern__ = r'http://(?:www\.)?rapidfileshare\.net/users/\w+/\d+/\w+' @@ -15,5 +15,4 @@ class RapidfileshareNetFolder(SimpleCrypter): __authors__ = [("guidobelix", "guidobelix@hotmail.it")] - LINK_PATTERN = r'<a href="(.+?)" target="_blank">.+?</a>' - TITLE_PATTERN = r'<Title>Files of \w+: ([^<]+) folder<' + HOSTER_NAME = "rapidfileshare.net" |