summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2014-03-19 15:30:43 +0100
committerGravatar Stefano <l.stickell@yahoo.it> 2014-04-21 17:06:26 +0200
commit0a3cf0fcbfd03e10596a0f95ace813c6c022590f (patch)
tree3f646e6f32ed47af4567557f394f817eb0a831cb
parentZDF: ignore series id, use progressive only, not hbbtv (diff)
downloadpyload-0a3cf0fcbfd03e10596a0f95ace813c6c022590f.tar.xz
Filestube: patterns updated
Resolves #543 and #497 (cherry picked from commit 7c272fffe59683ed232be7f93648b5904cc58139)
-rw-r--r--pyload/plugins/crypter/FilestubeCom.py6
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>"