diff options
author | Stefano <l.stickell@yahoo.it> | 2014-03-19 15:30:43 +0100 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-21 17:06:26 +0200 |
commit | 0a3cf0fcbfd03e10596a0f95ace813c6c022590f (patch) | |
tree | 3f646e6f32ed47af4567557f394f817eb0a831cb | |
parent | ZDF: ignore series id, use progressive only, not hbbtv (diff) | |
download | pyload-0a3cf0fcbfd03e10596a0f95ace813c6c022590f.tar.xz |
Filestube: patterns updated
-rw-r--r-- | pyload/plugins/crypter/FilestubeCom.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyload/plugins/crypter/FilestubeCom.py b/pyload/plugins/crypter/FilestubeCom.py index 24e2ca137..bb90e63b8 100644 --- a/pyload/plugins/crypter/FilestubeCom.py +++ b/pyload/plugins/crypter/FilestubeCom.py @@ -22,10 +22,10 @@ class FilestubeCom(SimpleCrypter): __name__ = "FilestubeCom" __type__ = "crypter" __pattern__ = r"http://(?:w{3}.)?filestube\.(?:com|to)/\w+" - __version__ = "0.02" + __version__ = "0.03" __description__ = """Filestube.com Plugin""" __author_name__ = ("stickell") __author_mail__ = ("l.stickell@yahoo.it") - LINK_PATTERN = r"link_download'\]\); renderGo\('(http://[^)]+)'\);" - TITLE_PATTERN = r"<title>(?P<title>.+) download" + LINK_PATTERN = r"<a class=\"file-link-main(?: noref)?\" [^>]* href=\"(http://[^\"]+)" + TITLE_PATTERN = r"<h1\s*> (?P<title>.+) download\s*</h1>" |