From 8e7d14bae4d3c836f029a1235eb227380acc3f75 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Mon, 16 Feb 2015 21:59:10 +0100 Subject: Fix plugins to work on 0.4.10 --- module/plugins/crypter/CloudzillaToFolder.py | 39 ---------------------------- 1 file changed, 39 deletions(-) delete mode 100644 module/plugins/crypter/CloudzillaToFolder.py (limited to 'module/plugins/crypter/CloudzillaToFolder.py') diff --git a/module/plugins/crypter/CloudzillaToFolder.py b/module/plugins/crypter/CloudzillaToFolder.py deleted file mode 100644 index 76019d928..000000000 --- a/module/plugins/crypter/CloudzillaToFolder.py +++ /dev/null @@ -1,39 +0,0 @@ -# -*- coding: utf-8 -*- - -import re - -from urlparse import urljoin - -from module.plugins.internal.SimpleCrypter import SimpleCrypter, create_getInfo - - -class CloudzillaToFolder(SimpleHoster): - __name__ = "CloudzillaToFolder" - __type__ = "crypter" - __version__ = "0.02" - - __pattern__ = r'http://(?:www\.)?cloudzilla\.to/share/folder/(?P[\w^_]+)' - - __description__ = """Cloudzilla.to folder decrypter plugin""" - __license__ = "GPLv3" - __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] - - - INFO_PATTERN = r'File not found...<' - - LINK_PATTERN = r'' - - PASSWORD_PATTERN = r'
' - - - def checkErrors(self): - m = re.search(self.PASSWORD_PATTERN, self.html) - if m: - self.html = self.load(self.pyfile.url, get={'key': self.getPassword()}) - - if re.search(self.PASSWORD_PATTERN, self.html): - self.retry(reason="Wrong password") - - -getInfo = create_getInfo(CloudzillaToFolder) -- cgit v1.2.3