diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-26 13:10:36 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-26 13:10:36 +0100 |
commit | 13b722edcfc1ccba4c486e6566374097388ff863 (patch) | |
tree | be188395e84fa8d9977702304f373e82d01bdc0a | |
parent | Merge pull request #2111 from GammaC0de/patch-7 (diff) | |
parent | Update XFileSharing.py (diff) | |
download | pyload-13b722edcfc1ccba4c486e6566374097388ff863.tar.xz |
Merge pull request #2116 from GammaC0de/patch-7
[DeadHoster] RyushareCom
-rw-r--r-- | module/plugins/hooks/XFileSharing.py | 7 | ||||
-rw-r--r-- | module/plugins/hoster/RyushareCom.py | 22 |
2 files changed, 25 insertions, 4 deletions
diff --git a/module/plugins/hooks/XFileSharing.py b/module/plugins/hooks/XFileSharing.py index 20a3af4c1..b127f9322 100644 --- a/module/plugins/hooks/XFileSharing.py +++ b/module/plugins/hooks/XFileSharing.py @@ -9,7 +9,7 @@ from module.plugins.internal.Addon import Addon class XFileSharing(Addon): __name__ = "XFileSharing" __type__ = "hook" - __version__ = "0.50" + __version__ = "0.51" __status__ = "testing" __config__ = [("activated" , "bool", "Activated" , True ), @@ -33,9 +33,8 @@ class XFileSharing(Addon): "ani-stream.com", "backin.net", "cloudsix.me", "eyesfile.ca", "file4safe.com", "fileband.com", "filedwon.com", "fileparadox.in", "filevice.com", "hostingbulk.com", "junkyvideo.com", "ravishare.com", - "ryushare.com", "salefiles.com", "sendmyway.com", "sharebeast.com", - "sharesix.com", "thefile.me", "verzend.be", "worldbytez.com", - "xvidstage.com", + "salefiles.com", "sendmyway.com", "sharebeast.com", "sharesix.com", + "thefile.me", "verzend.be", "worldbytez.com", "xvidstage.com", #: NOT TESTED: "101shared.com", "4upfiles.com", "filemaze.ws", "filenuke.com", "linkzhost.com", "mightyupload.com", "rockdizfile.com", "sharerepo.com", diff --git a/module/plugins/hoster/RyushareCom.py b/module/plugins/hoster/RyushareCom.py new file mode 100644 index 000000000..3c469f94e --- /dev/null +++ b/module/plugins/hoster/RyushareCom.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- + +from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo + + +class RyushareCom(DeadHoster): + __name__ = "RyushareCom" + __type__ = "hoster" + __version__ = "0.16" + __status__ = "stable" + + __pattern__ = r'http://(?:www\.)?ryushare\.com/\w+' + __config__ = [] #@TODO: Remove in 0.4.10 + + __description__ = """Ryushare.com hoster plugin""" + __license__ = "GPLv3" + __authors__ = [("zoidberg", "zoidberg@mujmail.cz"), + ("stickell", "l.stickell@yahoo.it"), + ("quareevo", "quareevo@arcor.de" )] + + +getInfo = create_getInfo(RyushareCom) |