summaryrefslogtreecommitdiffstats
path: root/pyload/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins')
-rw-r--r--pyload/plugins/account/DropboxCom.py2
-rw-r--r--pyload/plugins/account/FastshareCz.py2
-rw-r--r--pyload/plugins/account/FilecloudIo.py2
-rw-r--r--pyload/plugins/account/FourSharedCom.py2
-rw-r--r--pyload/plugins/account/Keep2shareCc.py2
-rw-r--r--pyload/plugins/account/RapidshareCom.py2
-rw-r--r--pyload/plugins/account/ShareonlineBiz.py4
-rw-r--r--pyload/plugins/account/SimplyPremiumCom.py2
-rw-r--r--pyload/plugins/account/TurbobitNet.py2
-rw-r--r--pyload/plugins/account/UlozTo.py2
-rw-r--r--pyload/plugins/account/UnrestrictLi.py2
-rw-r--r--pyload/plugins/account/UploadedTo.py2
-rw-r--r--pyload/plugins/account/UploadingCom.py8
-rw-r--r--pyload/plugins/crypter/FilefactoryCom.py2
-rw-r--r--pyload/plugins/crypter/LinkCryptWs.py2
-rw-r--r--pyload/plugins/crypter/LinkSaveIn.py2
-rw-r--r--pyload/plugins/hoster/BitshareCom.py2
-rw-r--r--pyload/plugins/hoster/DepositfilesCom.py2
-rw-r--r--pyload/plugins/hoster/FastshareCz.py2
-rw-r--r--pyload/plugins/hoster/FilefactoryCom.py2
-rw-r--r--pyload/plugins/hoster/GigapetaCom.py2
-rw-r--r--pyload/plugins/hoster/OneFichierCom.py2
-rw-r--r--pyload/plugins/hoster/RapidgatorNet.py2
-rw-r--r--pyload/plugins/hoster/TurbobitNet.py2
-rw-r--r--pyload/plugins/hoster/UploadheroCom.py2
-rw-r--r--pyload/plugins/hoster/UploadingCom.py2
-rw-r--r--pyload/plugins/hoster/VeohCom.py2
-rw-r--r--pyload/plugins/hoster/VimeoCom.py2
-rw-r--r--pyload/plugins/hoster/WrzucTo.py2
-rw-r--r--pyload/plugins/hoster/ZippyshareCom.py2
30 files changed, 34 insertions, 34 deletions
diff --git a/pyload/plugins/account/DropboxCom.py b/pyload/plugins/account/DropboxCom.py
index 03e654e89..40d5584a4 100644
--- a/pyload/plugins/account/DropboxCom.py
+++ b/pyload/plugins/account/DropboxCom.py
@@ -22,7 +22,7 @@ class DropboxCom(SimpleHoster):
OFFLINE_PATTERN = r'<title>Dropbox - (404|Shared link error)<'
- COOKIES = [(".dropbox.com", "lang", "en")]
+ COOKIES = [("dropbox.com", "lang", "en")]
def setup(self):
diff --git a/pyload/plugins/account/FastshareCz.py b/pyload/plugins/account/FastshareCz.py
index b61d6b23f..32c897317 100644
--- a/pyload/plugins/account/FastshareCz.py
+++ b/pyload/plugins/account/FastshareCz.py
@@ -41,7 +41,7 @@ class FastshareCz(Account):
def login(self, user, data, req):
- req.cj.setCookie(".fastshare.cz", "lang", "en")
+ req.cj.setCookie("fastshare.cz", "lang", "en")
req.load('http://www.fastshare.cz/login') # Do not remove or it will not login
diff --git a/pyload/plugins/account/FilecloudIo.py b/pyload/plugins/account/FilecloudIo.py
index b52521093..babef59a2 100644
--- a/pyload/plugins/account/FilecloudIo.py
+++ b/pyload/plugins/account/FilecloudIo.py
@@ -42,7 +42,7 @@ class FilecloudIo(Account):
def login(self, user, data, req):
- req.cj.setCookie(".secure.filecloud.io", "lang", "en")
+ req.cj.setCookie("secure.filecloud.io", "lang", "en")
html = req.load('https://secure.filecloud.io/user-login.html')
if not hasattr(self, "form_data"):
diff --git a/pyload/plugins/account/FourSharedCom.py b/pyload/plugins/account/FourSharedCom.py
index 110572faa..20293fa5d 100644
--- a/pyload/plugins/account/FourSharedCom.py
+++ b/pyload/plugins/account/FourSharedCom.py
@@ -21,7 +21,7 @@ class FourSharedCom(Account):
def login(self, user, data, req):
- req.cj.setCookie(".4shared.com", "4langcookie", "en")
+ req.cj.setCookie("4shared.com", "4langcookie", "en")
res = req.load('http://www.4shared.com/web/login',
post={'login': user,
'password': data['password'],
diff --git a/pyload/plugins/account/Keep2shareCc.py b/pyload/plugins/account/Keep2shareCc.py
index af870cfd0..172cedfc2 100644
--- a/pyload/plugins/account/Keep2shareCc.py
+++ b/pyload/plugins/account/Keep2shareCc.py
@@ -60,7 +60,7 @@ class Keep2shareCc(Account):
def login(self, user, data, req):
- req.cj.setCookie(".keep2share.cc", "lang", "en")
+ req.cj.setCookie("keep2share.cc", "lang", "en")
html = req.load("http://keep2share.cc/login.html",
post={'LoginForm[username]': user, 'LoginForm[password]': data['password']})
diff --git a/pyload/plugins/account/RapidshareCom.py b/pyload/plugins/account/RapidshareCom.py
index 778b0c55d..01adad15f 100644
--- a/pyload/plugins/account/RapidshareCom.py
+++ b/pyload/plugins/account/RapidshareCom.py
@@ -52,4 +52,4 @@ class RapidshareCom(Account):
k, v = t.split("=")
info[k] = v
cj = self.getAccountCookies(user)
- cj.setCookie(".rapidshare.com", "enc", info['cookie'])
+ cj.setCookie("rapidshare.com", "enc", info['cookie'])
diff --git a/pyload/plugins/account/ShareonlineBiz.py b/pyload/plugins/account/ShareonlineBiz.py
index cc411ad72..dbbe93869 100644
--- a/pyload/plugins/account/ShareonlineBiz.py
+++ b/pyload/plugins/account/ShareonlineBiz.py
@@ -30,9 +30,9 @@ class ShareonlineBiz(Account):
self.logDebug(info)
if "dl" in info and info['dl'].lower() != "not_available":
- req.cj.setCookie(".share-online.biz", "dl", info['dl'])
+ req.cj.setCookie("share-online.biz", "dl", info['dl'])
if "a" in info and info['a'].lower() != "not_available":
- req.cj.setCookie(".share-online.biz", "a", info['a'])
+ req.cj.setCookie("share-online.biz", "a", info['a'])
return {"validuntil": int(info['expire_date']) if "expire_date" in info else -1,
"trafficleft": -1,
diff --git a/pyload/plugins/account/SimplyPremiumCom.py b/pyload/plugins/account/SimplyPremiumCom.py
index 45b4263ae..b3dad84d3 100644
--- a/pyload/plugins/account/SimplyPremiumCom.py
+++ b/pyload/plugins/account/SimplyPremiumCom.py
@@ -33,7 +33,7 @@ class SimplyPremiumCom(Account):
def login(self, user, data, req):
- req.cj.setCookie(".simply-premium.com", "lang", "EN")
+ req.cj.setCookie("simply-premium.com", "lang", "EN")
if data['password'] == '' or data['password'] == '0':
post_data = {"key": user}
diff --git a/pyload/plugins/account/TurbobitNet.py b/pyload/plugins/account/TurbobitNet.py
index cb6f36613..e2f56905c 100644
--- a/pyload/plugins/account/TurbobitNet.py
+++ b/pyload/plugins/account/TurbobitNet.py
@@ -31,7 +31,7 @@ class TurbobitNet(Account):
def login(self, user, data, req):
- req.cj.setCookie(".turbobit.net", "user_lang", "en")
+ req.cj.setCookie("turbobit.net", "user_lang", "en")
html = req.load("http://turbobit.net/user/login", post={
"user[login]": user,
diff --git a/pyload/plugins/account/UlozTo.py b/pyload/plugins/account/UlozTo.py
index 4e663efa9..2cdab0167 100644
--- a/pyload/plugins/account/UlozTo.py
+++ b/pyload/plugins/account/UlozTo.py
@@ -26,7 +26,7 @@ class UlozTo(Account):
html = req.load("http://www.ulozto.net/", decode=True)
- req.cj.setCookie(".ulozto.net", "ULOSESSID", self.phpsessid)
+ req.cj.setCookie("ulozto.net", "ULOSESSID", self.phpsessid)
m = re.search(self.TRAFFIC_LEFT_PATTERN, html)
trafficleft = int(float(m.group(1).replace(' ', '').replace(',', '.')) * 1000 * 1.048) if m else 0
diff --git a/pyload/plugins/account/UnrestrictLi.py b/pyload/plugins/account/UnrestrictLi.py
index 88f4841f7..30144ca65 100644
--- a/pyload/plugins/account/UnrestrictLi.py
+++ b/pyload/plugins/account/UnrestrictLi.py
@@ -29,7 +29,7 @@ class UnrestrictLi(Account):
def login(self, user, data, req):
- req.cj.setCookie(".unrestrict.li", "lang", "EN")
+ req.cj.setCookie("unrestrict.li", "lang", "EN")
html = req.load("https://unrestrict.li/sign_in")
if 'solvemedia' in html:
diff --git a/pyload/plugins/account/UploadedTo.py b/pyload/plugins/account/UploadedTo.py
index 310e23730..f5c5d22b2 100644
--- a/pyload/plugins/account/UploadedTo.py
+++ b/pyload/plugins/account/UploadedTo.py
@@ -51,7 +51,7 @@ class UploadedTo(Account):
def login(self, user, data, req):
- req.cj.setCookie(".uploaded.net", "lang", "en")
+ req.cj.setCookie("uploaded.net", "lang", "en")
page = req.load("http://uploaded.net/io/login",
post={'id': user, 'pw': data['password'], '_': ""})
diff --git a/pyload/plugins/account/UploadingCom.py b/pyload/plugins/account/UploadingCom.py
index dd7ab26cf..8f308b0b6 100644
--- a/pyload/plugins/account/UploadingCom.py
+++ b/pyload/plugins/account/UploadingCom.py
@@ -53,10 +53,10 @@ class UploadingCom(Account):
def login(self, user, data, req):
- set_cookies([(".uploading.com", "lang", "1"),
- (".uploading.com", "language", "1"),
- (".uploading.com", "setlang", "en"),
- (".uploading.com", "_lang", "en")]
+ set_cookies([("uploading.com", "lang", "1"),
+ ("uploading.com", "language", "1"),
+ ("uploading.com", "setlang", "en"),
+ ("uploading.com", "_lang", "en")]
req.load("http://uploading.com/")
req.load("http://uploading.com/general/login_form/?JsHttpRequest=%s-xml" % long(time() * 1000),
diff --git a/pyload/plugins/crypter/FilefactoryCom.py b/pyload/plugins/crypter/FilefactoryCom.py
index 9792bb9f1..cc9563ed9 100644
--- a/pyload/plugins/crypter/FilefactoryCom.py
+++ b/pyload/plugins/crypter/FilefactoryCom.py
@@ -21,7 +21,7 @@ class FilefactoryCom(SimpleCrypter):
NAME_PATTERN = r'<h1>Files in <span>(?P<N>.+)</span></h1>'
PAGES_PATTERN = r'data-paginator-totalPages="(\d+)"'
- COOKIES = [(".filefactory.com", "locale", "en_US.utf8")]
+ COOKIES = [("filefactory.com", "locale", "en_US.utf8")]
def loadPage(self, page_n):
diff --git a/pyload/plugins/crypter/LinkCryptWs.py b/pyload/plugins/crypter/LinkCryptWs.py
index 4eb48deae..4b4adc8d1 100644
--- a/pyload/plugins/crypter/LinkCryptWs.py
+++ b/pyload/plugins/crypter/LinkCryptWs.py
@@ -43,7 +43,7 @@ class LinkCryptWs(Crypter):
self.package = pyfile.package()
self.fileid = re.match(self.__pattern__, pyfile.url).group('ID')
- self.req.cj.setCookie(".linkcrypt.ws", "language", "en")
+ self.req.cj.setCookie("linkcrypt.ws", "language", "en")
# Request package
self.req.http.c.setopt(pycurl.USERAGENT, "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko") #: better chance to not get those key-captchas
diff --git a/pyload/plugins/crypter/LinkSaveIn.py b/pyload/plugins/crypter/LinkSaveIn.py
index b45904c2e..2e0ac923e 100644
--- a/pyload/plugins/crypter/LinkSaveIn.py
+++ b/pyload/plugins/crypter/LinkSaveIn.py
@@ -27,7 +27,7 @@ class LinkSaveIn(SimpleCrypter):
__authors__ = [("fragonib", "fragonib[AT]yahoo[DOT]es")]
- COOKIES = [(".linksave.in", "Linksave_Language", "english")]
+ COOKIES = [("linksave.in", "Linksave_Language", "english")]
# Constants
_JK_KEY_ = "jk"
diff --git a/pyload/plugins/hoster/BitshareCom.py b/pyload/plugins/hoster/BitshareCom.py
index bb9230fd5..a557a43b0 100644
--- a/pyload/plugins/hoster/BitshareCom.py
+++ b/pyload/plugins/hoster/BitshareCom.py
@@ -24,7 +24,7 @@ class BitshareCom(SimpleHoster):
INFO_PATTERN = r'Downloading (?P<N>.+) - (?P<S>[\d.,]+) (?P<U>[\w^_]+)</h1>'
OFFLINE_PATTERN = r'(>We are sorry, but the requested file was not found in our database|>Error - File not available<|The file was deleted either by the uploader, inactivity or due to copyright claim)'
- COOKIES = [(".bitshare.com", "language_selection", "EN")]
+ COOKIES = [("bitshare.com", "language_selection", "EN")]
AJAXID_PATTERN = r'var ajaxdl = "(.*?)";'
TRAFFIC_USED_UP = r'Your Traffic is used up for today. Upgrade to premium to continue!'
diff --git a/pyload/plugins/hoster/DepositfilesCom.py b/pyload/plugins/hoster/DepositfilesCom.py
index b4fed5b52..ee84195b6 100644
--- a/pyload/plugins/hoster/DepositfilesCom.py
+++ b/pyload/plugins/hoster/DepositfilesCom.py
@@ -30,7 +30,7 @@ class DepositfilesCom(SimpleHoster):
(r'.*<b title="(?P<N>[^"]+).*', "\g<N>")]
URL_REPLACEMENTS = [(__pattern__, "https://dfiles.eu/files/\g<ID>")]
- COOKIES = [(".dfiles.eu", "lang_current", "en")]
+ COOKIES = [("dfiles.eu", "lang_current", "en")]
FREE_LINK_PATTERN = r'<form id="downloader_file_form" action="(http://.+?\.(dfiles\.eu|depositfiles\.com)/.+?)" method="post"'
PREMIUM_LINK_PATTERN = r'class="repeat"><a href="(.+?)"'
diff --git a/pyload/plugins/hoster/FastshareCz.py b/pyload/plugins/hoster/FastshareCz.py
index c3364cea6..17ba2add4 100644
--- a/pyload/plugins/hoster/FastshareCz.py
+++ b/pyload/plugins/hoster/FastshareCz.py
@@ -29,7 +29,7 @@ class FastshareCz(SimpleHoster):
URL_REPLACEMENTS = [("#.*", "")]
- COOKIES = [(".fastshare.cz", "lang", "en")]
+ COOKIES = [("fastshare.cz", "lang", "en")]
FREE_URL_PATTERN = r'action=(/free/.*?)>\s*<img src="([^"]*)"><br'
PREMIUM_URL_PATTERN = r'(http://data\d+\.fastshare\.cz/download\.php\?id=\d+&)'
diff --git a/pyload/plugins/hoster/FilefactoryCom.py b/pyload/plugins/hoster/FilefactoryCom.py
index 0e652ba50..969802703 100644
--- a/pyload/plugins/hoster/FilefactoryCom.py
+++ b/pyload/plugins/hoster/FilefactoryCom.py
@@ -39,7 +39,7 @@ class FilefactoryCom(SimpleHoster):
WAIT_PATTERN = r'<div id="countdown_clock" data-delay="(\d+)">'
PREMIUM_ONLY_PATTERN = r'>Premium Account Required'
- COOKIES = [(".filefactory.com", "locale", "en_US.utf8")]
+ COOKIES = [("filefactory.com", "locale", "en_US.utf8")]
def handleFree(self):
diff --git a/pyload/plugins/hoster/GigapetaCom.py b/pyload/plugins/hoster/GigapetaCom.py
index 7a0eef3c9..491fcad01 100644
--- a/pyload/plugins/hoster/GigapetaCom.py
+++ b/pyload/plugins/hoster/GigapetaCom.py
@@ -24,7 +24,7 @@ class GigapetaCom(SimpleHoster):
SIZE_PATTERN = r'<th>\s*Size\s*</th>\s*<td>\s*(?P<S>.*?)\s*</td>'
OFFLINE_PATTERN = r'<div id="page_error">'
- COOKIES = [(".gigapeta.com", "lang", "us")]
+ COOKIES = [("gigapeta.com", "lang", "us")]
def handleFree(self):
diff --git a/pyload/plugins/hoster/OneFichierCom.py b/pyload/plugins/hoster/OneFichierCom.py
index 299665bb5..b30358ff8 100644
--- a/pyload/plugins/hoster/OneFichierCom.py
+++ b/pyload/plugins/hoster/OneFichierCom.py
@@ -28,7 +28,7 @@ class OneFichierCom(SimpleHoster):
OFFLINE_PATTERN = r'File not found !\s*<'
- COOKIES = [(".1fichier.com", "LG", "en")]
+ COOKIES = [("1fichier.com", "LG", "en")]
WAIT_PATTERN = r'>You must wait (\d+)'
diff --git a/pyload/plugins/hoster/RapidgatorNet.py b/pyload/plugins/hoster/RapidgatorNet.py
index d7f06d990..99fec9b20 100644
--- a/pyload/plugins/hoster/RapidgatorNet.py
+++ b/pyload/plugins/hoster/RapidgatorNet.py
@@ -28,7 +28,7 @@ class RapidgatorNet(SimpleHoster):
API_URL = "http://rapidgator.net/api/file"
- COOKIES = [(".rapidgator.net", "lang", "en")]
+ COOKIES = [("rapidgator.net", "lang", "en")]
NAME_PATTERN = r'<title>Download file (?P<N>.*)</title>'
SIZE_PATTERN = r'File size:\s*<strong>(?P<S>[\d.,]+) (?P<U>[\w^_]+)</strong>'
diff --git a/pyload/plugins/hoster/TurbobitNet.py b/pyload/plugins/hoster/TurbobitNet.py
index e8a8ed9a6..b069e7a84 100644
--- a/pyload/plugins/hoster/TurbobitNet.py
+++ b/pyload/plugins/hoster/TurbobitNet.py
@@ -29,7 +29,7 @@ class TurbobitNet(SimpleHoster):
URL_REPLACEMENTS = [(__pattern__, "http://turbobit.net/\g<ID>.html")]
- COOKIES = [(".turbobit.net", "user_lang", "en")]
+ COOKIES = [("turbobit.net", "user_lang", "en")]
NAME_PATTERN = r'id="file-title">(?P<N>.+?)<'
SIZE_PATTERN = r'class="file-size">(?P<S>[\d.,]+) (?P<U>[\w^_]+)'
diff --git a/pyload/plugins/hoster/UploadheroCom.py b/pyload/plugins/hoster/UploadheroCom.py
index 2aab44c9f..97100b17d 100644
--- a/pyload/plugins/hoster/UploadheroCom.py
+++ b/pyload/plugins/hoster/UploadheroCom.py
@@ -25,7 +25,7 @@ class UploadheroCom(SimpleHoster):
SIZE_PATTERN = r'Taille du fichier : </span><strong>(?P<S>.*?)</strong>'
OFFLINE_PATTERN = r'<p class="titre_dl_2">|<div class="raison"><strong>Le lien du fichier ci-dessus n\'existe plus.'
- COOKIES = [(".uploadhero.co", "lang", "en")]
+ COOKIES = [("uploadhero.co", "lang", "en")]
IP_BLOCKED_PATTERN = r'href="(/lightbox_block_download\.php\?min=.*?)"'
IP_WAIT_PATTERN = r'<span id="minutes">(\d+)</span>.*\s*<span id="seconds">(\d+)</span>'
diff --git a/pyload/plugins/hoster/UploadingCom.py b/pyload/plugins/hoster/UploadingCom.py
index ffb275d94..3c0bc7ff9 100644
--- a/pyload/plugins/hoster/UploadingCom.py
+++ b/pyload/plugins/hoster/UploadingCom.py
@@ -26,7 +26,7 @@ class UploadingCom(SimpleHoster):
SIZE_PATTERN = r'size tip_container">(?P<S>[\d.,]+) (?P<U>[\w^_]+)<'
OFFLINE_PATTERN = r'(Page|file) not found'
- COOKIES = [(".uploading.com", "lang", "1"),
+ COOKIES = [("uploading.com", "lang", "1"),
(".uploading.com", "language", "1"),
(".uploading.com", "setlang", "en"),
(".uploading.com", "_lang", "en")]
diff --git a/pyload/plugins/hoster/VeohCom.py b/pyload/plugins/hoster/VeohCom.py
index ff4cde0ce..0f756211c 100644
--- a/pyload/plugins/hoster/VeohCom.py
+++ b/pyload/plugins/hoster/VeohCom.py
@@ -23,7 +23,7 @@ class VeohCom(SimpleHoster):
URL_REPLACEMENTS = [(__pattern__, r'http://www.veoh.com/watch/\g<ID>')]
- COOKIES = [(".veoh.com", "lassieLocale", "en")]
+ COOKIES = [("veoh.com", "lassieLocale", "en")]
def setup(self):
diff --git a/pyload/plugins/hoster/VimeoCom.py b/pyload/plugins/hoster/VimeoCom.py
index a23888160..5bd1b9afb 100644
--- a/pyload/plugins/hoster/VimeoCom.py
+++ b/pyload/plugins/hoster/VimeoCom.py
@@ -25,7 +25,7 @@ class VimeoCom(SimpleHoster):
URL_REPLACEMENTS = [(__pattern__, r'https://www.vimeo.com/\g<ID>')]
- COOKIES = [(".vimeo.com", "language", "en")]
+ COOKIES = [("vimeo.com", "language", "en")]
def setup(self):
diff --git a/pyload/plugins/hoster/WrzucTo.py b/pyload/plugins/hoster/WrzucTo.py
index 44255e6b2..dbd09f138 100644
--- a/pyload/plugins/hoster/WrzucTo.py
+++ b/pyload/plugins/hoster/WrzucTo.py
@@ -22,7 +22,7 @@ class WrzucTo(SimpleHoster):
NAME_PATTERN = r'id="file_info">\s*<strong>(?P<N>.*?)</strong>'
SIZE_PATTERN = r'class="info">\s*<tr>\s*<td>(?P<S>.*?)</td>'
- COOKIES = [(".wrzuc.to", "language", "en")]
+ COOKIES = [("wrzuc.to", "language", "en")]
def setup(self):
diff --git a/pyload/plugins/hoster/ZippyshareCom.py b/pyload/plugins/hoster/ZippyshareCom.py
index 67ff1c592..8f9062cfc 100644
--- a/pyload/plugins/hoster/ZippyshareCom.py
+++ b/pyload/plugins/hoster/ZippyshareCom.py
@@ -26,7 +26,7 @@ class ZippyshareCom(SimpleHoster):
OFFLINE_PATTERN = r'>File does not exist on this server<'
- COOKIES = [(".zippyshare.com", "ziplocale", "en")]
+ COOKIES = [("zippyshare.com", "ziplocale", "en")]
def setup(self):