From 8e87787753b2e049917a5491727d285b1c5a7095 Mon Sep 17 00:00:00 2001
From: mkaay <mkaay@mkaay.de>
Date: Sun, 27 Dec 2009 00:20:21 +0100
Subject: closes #13

---
 module/plugins/LinkList.py | 39 ---------------------------------------
 1 file changed, 39 deletions(-)
 delete mode 100644 module/plugins/LinkList.py

(limited to 'module/plugins/LinkList.py')

diff --git a/module/plugins/LinkList.py b/module/plugins/LinkList.py
deleted file mode 100644
index 92508ce29..000000000
--- a/module/plugins/LinkList.py
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-
-
-from module.Plugin import Plugin
-
-class LinkList(Plugin):
-
-    def __init__(self, parent):
-        Plugin.__init__(self, parent)
-        props = {}
-        props['name'] = "LinkList"
-        props['type'] = "container"
-        props['pattern'] = r"(?!http://).*\.txt"
-        props['version'] = "0.1"
-        props['description'] = """Read Link Lists in txt format"""
-        props['author_name'] = ("Spoob")
-        props['author_mail'] = ("spoob@pyload.org")
-        self.props = props
-        self.parent = parent
-        self.html = None
-        self.read_config()
-
-    def proceed(self, linkList, location):
-        tmpLinks = []
-        txt = open(linkList, 'r')
-        links = txt.readlines()
-        for link in links:
-            if link != "\n":
-                tmpLinks.append(link.replace("\n", ""))
-        txt.close()
-
-        if not self.parent.core.config['general']['debug_mode']:
-            txt = open(linkList, 'w')
-            txt.write("")
-            txt.close()
-            #@TODO: maybe delete read txt file?
-            
-        self.links = tmpLinks
-- 
cgit v1.2.3