diff options
| author | 2014-12-06 01:43:37 +0100 | |
|---|---|---|
| committer | 2014-12-06 01:43:37 +0100 | |
| commit | 05ef8f04486a3989798d963ad326f6e371741d8f (patch) | |
| tree | 6bf6c013af390df1770b39d92b4f531069e68491 /module | |
| parent | [OboomCom] Traffic size path (temp) (diff) | |
| parent | [JunocloudMe] Fixed patterns and recovered intended behaviour (diff) | |
| download | pyload-05ef8f04486a3989798d963ad326f6e371741d8f.tar.xz | |
Merge pull request #949 from Guidobelix/Juno2
[JunocloudMe] Fixed patterns and recovered intended behaviour
Diffstat (limited to 'module')
| -rw-r--r-- | module/plugins/hoster/JunocloudMe.py | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/module/plugins/hoster/JunocloudMe.py b/module/plugins/hoster/JunocloudMe.py index 168ad22da..ffea77315 100644 --- a/module/plugins/hoster/JunocloudMe.py +++ b/module/plugins/hoster/JunocloudMe.py @@ -6,7 +6,7 @@ from module.plugins.internal.XFSHoster import XFSHoster, create_getInfo  class JunocloudMe(XFSHoster):      __name__    = "JunocloudMe"      __type__    = "hoster" -    __version__ = "0.04" +    __version__ = "0.05"      __pattern__ = r'http://(?:\w+\.)?junocloud\.me/\w{12}' @@ -17,9 +17,8 @@ class JunocloudMe(XFSHoster):      HOSTER_DOMAIN = "junocloud.me" -    URL_REPLACEMENTS = [(r'//www\.', "//dl3.")] +    URL_REPLACEMENTS = [(r'//(www\.)?junocloud', "//dl3.junocloud")] -    NAME_PATTERN = r'<p class="request_file">http://junocloud.me/w{12}/(?P<N>.+?)</p>'      SIZE_PATTERN = r'<p class="request_filesize">Size: (?P<S>[\d.,]+) (?P<U>[\w^_]+)</p>'      OFFLINE_PATTERN = r'>No such file with this filename<' | 
