summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/internal')
-rw-r--r--module/plugins/internal/DeadCrypter.py9
-rw-r--r--module/plugins/internal/DeadHoster.py9
-rw-r--r--module/plugins/internal/MultiHoster.py9
-rw-r--r--module/plugins/internal/SimpleCrypter.py15
-rw-r--r--module/plugins/internal/SimpleHoster.py13
-rw-r--r--module/plugins/internal/XFSPAccount.py10
-rw-r--r--module/plugins/internal/XFSPCrypter.py9
-rw-r--r--module/plugins/internal/XFSPHoster.py13
8 files changed, 47 insertions, 40 deletions
diff --git a/module/plugins/internal/DeadCrypter.py b/module/plugins/internal/DeadCrypter.py
index 760ed61b1..9267f4c2e 100644
--- a/module/plugins/internal/DeadCrypter.py
+++ b/module/plugins/internal/DeadCrypter.py
@@ -4,15 +4,16 @@ from module.plugins.Crypter import Crypter as _Crypter
class DeadCrypter(_Crypter):
- __name__ = "DeadCrypter"
- __type__ = "crypter"
+ __name__ = "DeadCrypter"
+ __type__ = "crypter"
__version__ = "0.02"
__pattern__ = None
+ __config__ = []
__description__ = """ Crypter is no longer available """
- __license__ = "GPLv3"
- __authors__ = [("stickell", "l.stickell@yahoo.it")]
+ __license__ = "GPLv3"
+ __authors__ = [("stickell", "l.stickell@yahoo.it")]
def setup(self):
diff --git a/module/plugins/internal/DeadHoster.py b/module/plugins/internal/DeadHoster.py
index 2f0a01732..6633a8f1c 100644
--- a/module/plugins/internal/DeadHoster.py
+++ b/module/plugins/internal/DeadHoster.py
@@ -12,15 +12,16 @@ def create_getInfo(plugin):
class DeadHoster(_Hoster):
- __name__ = "DeadHoster"
- __type__ = "hoster"
+ __name__ = "DeadHoster"
+ __type__ = "hoster"
__version__ = "0.12"
__pattern__ = None
+ __config__ = []
__description__ = """ Hoster is no longer available """
- __license__ = "GPLv3"
- __authors__ = [("zoidberg", "zoidberg@mujmail.cz")]
+ __license__ = "GPLv3"
+ __authors__ = [("zoidberg", "zoidberg@mujmail.cz")]
def setup(self):
diff --git a/module/plugins/internal/MultiHoster.py b/module/plugins/internal/MultiHoster.py
index 5aadf6f2e..112736b0c 100644
--- a/module/plugins/internal/MultiHoster.py
+++ b/module/plugins/internal/MultiHoster.py
@@ -7,12 +7,15 @@ from module.utils import remove_chars
class MultiHoster(Hook):
- __name__ = "AbtractExtractor"
+ __name__ = "AbtractExtractor"
+ __type__ = "hook"
__version__ = "0.19"
+ __config__ = []
+
__description__ = """Generic MultiHoster plugin"""
- __license__ = "GPLv3"
- __authors__ = [("pyLoad Team", "admin@pyload.org")]
+ __license__ = "GPLv3"
+ __authors__ = [("pyLoad Team", "admin@pyload.org")]
replacements = [("2shared.com", "twoshared.com"), ("4shared.com", "fourshared.com"), ("cloudnator.com", "shragle.com"),
diff --git a/module/plugins/internal/SimpleCrypter.py b/module/plugins/internal/SimpleCrypter.py
index f6783cffb..bfa2e6408 100644
--- a/module/plugins/internal/SimpleCrypter.py
+++ b/module/plugins/internal/SimpleCrypter.py
@@ -12,17 +12,18 @@ from module.utils import fixup, html_unescape
class SimpleCrypter(Crypter):
- __name__ = "SimpleCrypter"
- __type__ = "crypter"
+ __name__ = "SimpleCrypter"
+ __type__ = "crypter"
__version__ = "0.20"
__pattern__ = None
+ __config__ = []
__description__ = """Simple decrypter plugin"""
- __license__ = "GPLv3"
- __authors__ = [("stickell", "l.stickell@yahoo.it"),
- ("zoidberg", "zoidberg@mujmail.cz"),
- ("Walter Purcaro", "vuolter@gmail.com")]
+ __license__ = "GPLv3"
+ __authors__ = [("stickell", "l.stickell@yahoo.it"),
+ ("zoidberg", "zoidberg@mujmail.cz"),
+ ("Walter Purcaro", "vuolter@gmail.com")]
"""
@@ -111,8 +112,6 @@ class SimpleCrypter(Crypter):
if self.package_links:
self.packages = [(package_name, self.package_links, folder_name)]
- else:
- self.fail(_("Could not extract any links"))
def getLinks(self):
diff --git a/module/plugins/internal/SimpleHoster.py b/module/plugins/internal/SimpleHoster.py
index ca84dc33e..782655007 100644
--- a/module/plugins/internal/SimpleHoster.py
+++ b/module/plugins/internal/SimpleHoster.py
@@ -157,17 +157,18 @@ def timestamp():
class SimpleHoster(Hoster):
- __name__ = "SimpleHoster"
- __type__ = "hoster"
+ __name__ = "SimpleHoster"
+ __type__ = "hoster"
__version__ = "0.42"
__pattern__ = None
+ __config__ = []
__description__ = """Simple hoster plugin"""
- __license__ = "GPLv3"
- __authors__ = [("zoidberg", "zoidberg@mujmail.cz"),
- ("stickell", "l.stickell@yahoo.it"),
- ("Walter Purcaro", "vuolter@gmail.com")]
+ __license__ = "GPLv3"
+ __authors__ = [("zoidberg", "zoidberg@mujmail.cz"),
+ ("stickell", "l.stickell@yahoo.it"),
+ ("Walter Purcaro", "vuolter@gmail.com")]
"""
diff --git a/module/plugins/internal/XFSPAccount.py b/module/plugins/internal/XFSPAccount.py
index 69b5cfc22..574bdd920 100644
--- a/module/plugins/internal/XFSPAccount.py
+++ b/module/plugins/internal/XFSPAccount.py
@@ -10,14 +10,14 @@ from module.plugins.internal.SimpleHoster import parseHtmlForm, set_cookies
class XFSPAccount(Account):
- __name__ = "XFSPAccount"
- __type__ = "account"
+ __name__ = "XFSPAccount"
+ __type__ = "account"
__version__ = "0.17"
__description__ = """XFileSharingPro account plugin"""
- __license__ = "GPLv3"
- __authors__ = [("zoidberg", "zoidberg@mujmail.cz"),
- ("Walter Purcaro", "vuolter@gmail.com")]
+ __license__ = "GPLv3"
+ __authors__ = [("zoidberg", "zoidberg@mujmail.cz"),
+ ("Walter Purcaro", "vuolter@gmail.com")]
"""
diff --git a/module/plugins/internal/XFSPCrypter.py b/module/plugins/internal/XFSPCrypter.py
index 372657d2d..52b6aed34 100644
--- a/module/plugins/internal/XFSPCrypter.py
+++ b/module/plugins/internal/XFSPCrypter.py
@@ -4,15 +4,16 @@ from module.plugins.internal.SimpleCrypter import SimpleCrypter
class XFSPCrypter(SimpleCrypter):
- __name__ = "XFSPCrypter"
- __type__ = "crypter"
+ __name__ = "XFSPCrypter"
+ __type__ = "crypter"
__version__ = "0.02"
__pattern__ = None
+ __config__ = []
__description__ = """XFileSharingPro decrypter plugin"""
- __license__ = "GPLv3"
- __authors__ = [("Walter Purcaro", "vuolter@gmail.com")]
+ __license__ = "GPLv3"
+ __authors__ = [("Walter Purcaro", "vuolter@gmail.com")]
HOSTER_NAME = None
diff --git a/module/plugins/internal/XFSPHoster.py b/module/plugins/internal/XFSPHoster.py
index 44b2006ae..46529eaa8 100644
--- a/module/plugins/internal/XFSPHoster.py
+++ b/module/plugins/internal/XFSPHoster.py
@@ -15,17 +15,18 @@ from module.utils import html_unescape
class XFSPHoster(SimpleHoster):
- __name__ = "XFSPHoster"
- __type__ = "hoster"
+ __name__ = "XFSPHoster"
+ __type__ = "hoster"
__version__ = "0.06"
__pattern__ = None
+ __config__ = []
__description__ = """XFileSharingPro hoster plugin"""
- __license__ = "GPLv3"
- __authors__ = [("zoidberg", "zoidberg@mujmail.cz"),
- ("stickell", "l.stickell@yahoo.it"),
- ("Walter Purcaro", "vuolter@gmail.com")]
+ __license__ = "GPLv3"
+ __authors__ = [("zoidberg", "zoidberg@mujmail.cz"),
+ ("stickell", "l.stickell@yahoo.it"),
+ ("Walter Purcaro", "vuolter@gmail.com")]
HOSTER_NAME = None