From 6b5d39a18461a45e53fd4048e1ac6a5cbd075b8c Mon Sep 17 00:00:00 2001
From: spoob <spoob@gmx.de>
Date: Fri, 4 Sep 2009 15:13:57 +0200
Subject: clean root folder

---
 Plugins/ZippyshareCom.py | 62 ------------------------------------------------
 1 file changed, 62 deletions(-)
 delete mode 100644 Plugins/ZippyshareCom.py

(limited to 'Plugins/ZippyshareCom.py')

diff --git a/Plugins/ZippyshareCom.py b/Plugins/ZippyshareCom.py
deleted file mode 100644
index 61408f925..000000000
--- a/Plugins/ZippyshareCom.py
+++ /dev/null
@@ -1,62 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-
-import re
-import urllib
-from Plugin import Plugin
-
-class ZippyshareCom(Plugin):
-
-    def __init__(self, parent):
-        Plugin.__init__(self, parent)
-        props = {}
-        props['name'] = "ZippyshareCom"
-        props['type'] = "hoster"
-        props['pattern'] = r"(http://)?www?\d{0,2}\.zippyshare.com/v/"
-        props['version'] = "0.1"
-        props['description'] = """Zippyshare.com Download Plugin"""
-        props['author_name'] = ("spoob")
-        props['author_mail'] = ("spoob@pyload.org")
-        self.props = props
-        self.parent = parent
-        self.html = None
-        self.want_reconnect = False
-        self.multi_dl = False
-
-    def download_html(self):
-        url = self.parent.url
-        self.html = self.req.load(url, cookies=True)
-
-    def get_file_url(self):
-        """ returns the absolute downloadable filepath
-        """
-        if self.html == None:
-            self.download_html()
-        if not self.want_reconnect:
-            file_url = urllib.unquote(re.search("var \w* = 'fck(.*)';", self.html).group(1))
-            return file_url
-        else:
-            return False
-
-    def get_file_name(self):
-        if self.html == None:
-            self.download_html()
-        if not self.want_reconnect:
-            file_name = re.search("<strong>Name: </strong>(.*)</font><br />", self.html).group(1)
-            return file_name
-        else:
-            return self.parent.url
-
-    def file_exists(self):
-        """ returns True or False
-        """
-        if self.html == None:
-            self.download_html()
-        if re.search(r"HTTP Status 404", self.html) != None:
-            return False
-        else:
-            return True
-
-    def proceed(self, url, location):
-        
-        self.req.download(url, location, cookies=True)
-- 
cgit v1.2.3