summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/addons/ZeveraCom.py
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-08-07 19:35:43 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-08-07 19:35:43 +0200
commit681609d8fa13677f3e7756dc50a8483a7e8b72e5 (patch)
tree9c7b5771a9f1529edd91a6dfa1a0d00a46f91a84 /pyload/plugins/addons/ZeveraCom.py
parentUpdated translations (diff)
downloadpyload-681609d8fa13677f3e7756dc50a8483a7e8b72e5.tar.xz
MultiHosters: moved settings to account plugins
* removed addon plugins
Diffstat (limited to 'pyload/plugins/addons/ZeveraCom.py')
-rw-r--r--pyload/plugins/addons/ZeveraCom.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/pyload/plugins/addons/ZeveraCom.py b/pyload/plugins/addons/ZeveraCom.py
deleted file mode 100644
index fb84886d1..000000000
--- a/pyload/plugins/addons/ZeveraCom.py
+++ /dev/null
@@ -1,20 +0,0 @@
-# -*- coding: utf-8 -*-
-
-from module.network.RequestFactory import getURL
-from module.plugins.internal.MultiHoster import MultiHoster
-
-
-class ZeveraCom(MultiHoster):
- __name__ = "ZeveraCom"
- __version__ = "0.02"
- __type__ = "hook"
- __config__ = [("activated", "bool", "Activated", "False"),
- ("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported)", "all"),
- ("hosterList", "str", "Hoster list (comma separated)", "")]
- __description__ = """Real-Debrid.com hook plugin"""
- __author_name__ = ("zoidberg")
- __author_mail__ = ("zoidberg@mujmail.cz")
-
- def getHoster(self):
- page = getURL("http://www.zevera.com/jDownloader.ashx?cmd=gethosters")
- return [x.strip() for x in page.replace("\"", "").split(",")]