From 88b2e92ff8b48af1291088a87dd69d41842537b6 Mon Sep 17 00:00:00 2001 From: Jeix <devnull@localhost> Date: Tue, 22 Jun 2010 20:13:42 +0200 Subject: porno update, new plugins: Pornhub Redtube Pornhost --- module/network/Request.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'module/network') diff --git a/module/network/Request.py b/module/network/Request.py index 1fb76d7e0..4c7de2b22 100755 --- a/module/network/Request.py +++ b/module/network/Request.py @@ -123,12 +123,13 @@ class Request: return self.cookieJar.getCookie(name) return None - def load(self, url, get={}, post={}, ref=True, cookies=True, just_header=False): + def load(self, url, get={}, post={}, ref=True, cookies=True, just_header=False, no_post_encode=False): url = str(url) if post: - post = urllib.urlencode(post) + if not no_post_encode: + post = urllib.urlencode(post) else: post = None @@ -199,12 +200,13 @@ class Request: self.pycurl.setopt(pycurl.PROXY, adress.split(":")[0]) self.pycurl.setopt(pycurl.PROXYPORT, adress.split(":")[1]) - def download(self, url, file_name, get={}, post={}, ref=True, cookies=True): + def download(self, url, file_name, get={}, post={}, ref=True, cookies=True, no_post_encode=False): url = str(url) if post: - post = urllib.urlencode(post) + if not no_post_encode: + post = urllib.urlencode(post) else: post = None -- cgit v1.2.3