From 7b1889af3caf854a2b4aaed32d27816402a8ef97 Mon Sep 17 00:00:00 2001
From: Christopher <4Christopher@gmx.de>
Date: Wed, 27 Feb 2013 13:21:13 +0100
Subject: little fixes
---
module/plugins/hoster/XvidstageCom.py | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
(limited to 'module/plugins/hoster')
diff --git a/module/plugins/hoster/XvidstageCom.py b/module/plugins/hoster/XvidstageCom.py
index 1994e40ed..38c54efec 100644
--- a/module/plugins/hoster/XvidstageCom.py
+++ b/module/plugins/hoster/XvidstageCom.py
@@ -37,8 +37,8 @@ def getInfo(urls):
def parseFileInfo(url, getInfoMode = False):
html = getURL(url)
info = {"name" : url, "size" : 0, "status" : 3}
- info['name'] = re.search(r'Filename:
(.*?)<', html).group(1)
- info['size'] = re.search(r'Size: | .*? \((\d+?) bytes\)', html).group(1)
+ info['name'] = re.search(r'(?:Filename|Dateiname): | ]*?>(.*?)<', html).group(1)
+ info['size'] = re.search(r'(?:Size|Größe): | .*? \((\d+?) bytes\)', html).group(1)
if info['size'] == 0:
info['status'] = 1
else:
@@ -49,10 +49,9 @@ def parseFileInfo(url, getInfoMode = False):
else:
return info['name'], info['size'], info['status'], html
-
class XvidstageCom(Hoster):
__name__ = 'XvidstageCom'
- __version__ = '0.1.1'
+ __version__ = '0.2'
__pattern__ = r'http://(?:www.)?xvidstage.com/(?P[0-9A-Za-z]+)'
__type__ = 'hoster'
__description__ = """A Plugin that allows you to download files from http://xvidstage.com"""
--
cgit v1.2.3
|