diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-04-11 11:55:03 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-21 17:17:41 +0200 |
commit | c46b882d9124fab8795b6094d928e76f6d21ae8c (patch) | |
tree | db58d7e3ca34af104ad603cdd7fad81dfd74be92 | |
parent | Fix __author_name__ and __author_mail__ (diff) | |
download | pyload-c46b882d9124fab8795b6094d928e76f6d21ae8c.tar.xz |
Fix __description__
Merges vuolter/pyload@74bcc70
(cherry picked from commit cca4127f9853ab029cbf0b55fedced124400952d)
Conflicts:
module/plugins/Account.py
module/plugins/Container.py
module/plugins/Crypter.py
module/plugins/Hook.py
module/plugins/Plugin.py
module/plugins/container/LinkList.py
pyload/plugins/crypter/HoerbuchIn.py
224 files changed, 224 insertions, 225 deletions
diff --git a/module/plugins/crypter/DailymotionBatch.py b/module/plugins/crypter/DailymotionBatch.py index ad1cae67f..2b692f92a 100644 --- a/module/plugins/crypter/DailymotionBatch.py +++ b/module/plugins/crypter/DailymotionBatch.py @@ -30,7 +30,7 @@ class DailymotionBatch(Crypter): __type__ = "crypter" __pattern__ = r"https?://(?:www\.)?dailymotion\.com/((playlists/)?(?P<TYPE>playlist|user)/)?(?P<ID>[\w^_]+)(?(TYPE)|#)" __version__ = "0.01" - __description__ = """Dailymotion channel & playlist decrypter""" + __description__ = """Dailymotion.com channel & playlist decrypter""" __author_name__ = "Walter Purcaro" __author_mail__ = "vuolter@gmail.com" diff --git a/module/plugins/crypter/DlProtectCom.py b/module/plugins/crypter/DlProtectCom.py index d93455a55..bb5f68039 100644 --- a/module/plugins/crypter/DlProtectCom.py +++ b/module/plugins/crypter/DlProtectCom.py @@ -29,7 +29,7 @@ class DlProtectCom(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?dl-protect\.com/((en|fr)/)?(?P<ID>\w+)" __version__ = "0.01" - __description__ = """dl-protect.com decrypter plugin""" + __description__ = """Dl-protect.com decrypter plugin""" __author_name__ = "Walter Purcaro" __author_mail__ = "vuolter@gmail.com" diff --git a/module/plugins/crypter/NosvideoCom.py b/module/plugins/crypter/NosvideoCom.py index eae836038..f85f33844 100644 --- a/module/plugins/crypter/NosvideoCom.py +++ b/module/plugins/crypter/NosvideoCom.py @@ -6,7 +6,7 @@ class NosvideoCom(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?nosvideo\.com/\?v=\w+" __version__ = "0.01" - __description__ = """Nosvideo.com Plugin""" + __description__ = """Nosvideo.com decrypter plugin""" __author_name__ = "igel" __author_mail__ = "igelkun@myopera.com" diff --git a/module/plugins/crypter/TnyCz.py b/module/plugins/crypter/TnyCz.py index 444eb53f6..aeecea9ea 100644 --- a/module/plugins/crypter/TnyCz.py +++ b/module/plugins/crypter/TnyCz.py @@ -27,7 +27,7 @@ class TnyCz(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?tny\.cz/\w+" __version__ = "0.01" - __description__ = """Tny.cz Plugin""" + __description__ = """Tny.cz decrypter plugin""" __author_name__ = "Walter Purcaro" __author_mail__ = "vuolter@gmail.com" diff --git a/module/plugins/hooks/FreeWayMe.py b/module/plugins/hooks/FreeWayMe.py index 021ce2246..7f3f7b386 100644 --- a/module/plugins/hooks/FreeWayMe.py +++ b/module/plugins/hooks/FreeWayMe.py @@ -24,7 +24,7 @@ class FreeWayMe(MultiHoster): __name__ = "FreeWayMe" __version__ = "0.11" __type__ = "hook" - __description__ = """FreeWayMe hook plugin""" + __description__ = """FreeWay.me hook plugin""" __config__ = [("activated", "bool", "Activated", "False"), ("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported):", "all"), ("hosterList", "str", "Hoster list (comma separated)", ""), diff --git a/module/plugins/hoster/FileStoreTo.py b/module/plugins/hoster/FileStoreTo.py index 1a314947b..ad498b213 100644 --- a/module/plugins/hoster/FileStoreTo.py +++ b/module/plugins/hoster/FileStoreTo.py @@ -27,7 +27,7 @@ class FileStoreTo(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(www\.)?filestore\.to/\?d=(?P<ID>\w+)" __version__ = "0.01" - __description__ = """FileStore.to download hoster""" + __description__ = """FileStore.to hoster plugin""" __author_name__ = ("Walter Purcaro", "stickell") __author_mail__ = ("vuolter@gmail.com", "l.stickell@yahoo.it") diff --git a/module/plugins/hoster/NosuploadCom.py b/module/plugins/hoster/NosuploadCom.py index f7e3d2657..59142d1b7 100644 --- a/module/plugins/hoster/NosuploadCom.py +++ b/module/plugins/hoster/NosuploadCom.py @@ -10,7 +10,7 @@ class NosuploadCom(XFileSharingPro): __type__ = "hoster" __version__ = "0.1" __pattern__ = r"http://(?:www\.)?nosupload\.com/\?d=\w{12}" - __description__ = """nosupload.com hoster plugin""" + __description__ = """Nosupload.com hoster plugin""" __author_name__ = "igel" __author_mail__ = "igelkun@myopera.com" diff --git a/module/plugins/hoster/SoundcloudCom.py b/module/plugins/hoster/SoundcloudCom.py index 6cccf4cab..e6bc1455a 100644 --- a/module/plugins/hoster/SoundcloudCom.py +++ b/module/plugins/hoster/SoundcloudCom.py @@ -11,7 +11,7 @@ class SoundcloudCom(Hoster): __type__ = "hoster" __pattern__ = r"https?://(?:www\.)?soundcloud\.com/(?P<UID>.*?)/(?P<SID>.*)" __version__ = "0.1" - __description__ = """SoundCloud.com audio download hoster""" + __description__ = """SoundCloud.com hoster plugin""" __author_name__ = "Peekayy" __author_mail__ = "peekayy.dev@gmail.com" diff --git a/pyload/plugins/accounts/BayfilesCom.py b/pyload/plugins/accounts/BayfilesCom.py index a74952724..0a9e11ec8 100644 --- a/pyload/plugins/accounts/BayfilesCom.py +++ b/pyload/plugins/accounts/BayfilesCom.py @@ -27,7 +27,7 @@ class BayfilesCom(Account): __name__ = "BayfilesCom" __version__ = "0.02" __type__ = "account" - __description__ = """bayfiles.com account plugin""" + __description__ = """Bayfiles.com account plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/accounts/CramitIn.py b/pyload/plugins/accounts/CramitIn.py index be7baff9d..3b43448b2 100644 --- a/pyload/plugins/accounts/CramitIn.py +++ b/pyload/plugins/accounts/CramitIn.py @@ -6,7 +6,7 @@ class CramitIn(XFSPAccount): __name__ = "CramitIn" __version__ = "0.01" __type__ = "account" - __description__ = """cramit.in account plugin""" + __description__ = """Cramit.in account plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/accounts/CyberlockerCh.py b/pyload/plugins/accounts/CyberlockerCh.py index 1deac2730..d33ce41a9 100644 --- a/pyload/plugins/accounts/CyberlockerCh.py +++ b/pyload/plugins/accounts/CyberlockerCh.py @@ -7,7 +7,7 @@ class CyberlockerCh(XFSPAccount): __name__ = "CyberlockerCh" __version__ = "0.01" __type__ = "account" - __description__ = """CyberlockerCh account plugin""" + __description__ = """Cyberlocker.ch account plugin""" __author_name__ = "stickell" __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/accounts/CzshareCom.py b/pyload/plugins/accounts/CzshareCom.py index 7b1a8edc5..188ee74e9 100644 --- a/pyload/plugins/accounts/CzshareCom.py +++ b/pyload/plugins/accounts/CzshareCom.py @@ -27,7 +27,7 @@ class CzshareCom(Account): __name__ = "CzshareCom" __version__ = "0.13" __type__ = "account" - __description__ = """czshare.com account plugin""" + __description__ = """Czshare.com account plugin""" __author_name__ = ("zoidberg", "stickell") __author_mail__ = ("zoidberg@mujmail.cz", "l.stickell@yahoo.it") diff --git a/pyload/plugins/accounts/DebridItaliaCom.py b/pyload/plugins/accounts/DebridItaliaCom.py index 530bfa470..bc5734113 100644 --- a/pyload/plugins/accounts/DebridItaliaCom.py +++ b/pyload/plugins/accounts/DebridItaliaCom.py @@ -25,7 +25,7 @@ class DebridItaliaCom(MultiHoster): __name__ = "DebridItaliaCom" __version__ = "0.1" __type__ = "account" - __description__ = """debriditalia.com account plugin""" + __description__ = """Debriditalia.com account plugin""" __author_name__ = "stickell" __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/accounts/DepositfilesCom.py b/pyload/plugins/accounts/DepositfilesCom.py index 5f2408e72..d75c9b729 100644 --- a/pyload/plugins/accounts/DepositfilesCom.py +++ b/pyload/plugins/accounts/DepositfilesCom.py @@ -27,7 +27,7 @@ class DepositfilesCom(Account): __name__ = "DepositfilesCom" __version__ = "0.2" __type__ = "account" - __description__ = """depositfiles.com account plugin""" + __description__ = """Depositfiles.com account plugin""" __author_name__ = ("mkaay", "stickell") __author_mail__ = ("mkaay@mkaay.de", "l.stickell@yahoo.it") diff --git a/pyload/plugins/accounts/EgoFilesCom.py b/pyload/plugins/accounts/EgoFilesCom.py index 67a4a1aca..e5c781068 100644 --- a/pyload/plugins/accounts/EgoFilesCom.py +++ b/pyload/plugins/accounts/EgoFilesCom.py @@ -11,7 +11,7 @@ class EgoFilesCom(Account): __name__ = "EgoFilesCom" __version__ = "0.2" __type__ = "account" - __description__ = """egofiles.com account plugin""" + __description__ = """Egofiles.com account plugin""" __author_name__ = "stickell" __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/accounts/EuroshareEu.py b/pyload/plugins/accounts/EuroshareEu.py index e0c8a9e4a..223d3fcf6 100644 --- a/pyload/plugins/accounts/EuroshareEu.py +++ b/pyload/plugins/accounts/EuroshareEu.py @@ -27,7 +27,7 @@ class EuroshareEu(Account): __name__ = "EuroshareEu" __version__ = "0.01" __type__ = "account" - __description__ = """euroshare.eu account plugin""" + __description__ = """Euroshare.eu account plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/accounts/FastshareCz.py b/pyload/plugins/accounts/FastshareCz.py index c047ff766..44c4215ac 100644 --- a/pyload/plugins/accounts/FastshareCz.py +++ b/pyload/plugins/accounts/FastshareCz.py @@ -26,7 +26,7 @@ class FastshareCz(Account): __name__ = "FastshareCz" __version__ = "0.03" __type__ = "account" - __description__ = """fastshare.cz account plugin""" + __description__ = """Fastshare.cz account plugin""" __author_name__ = ("zoidberg", "stickell") __author_mail__ = ("zoidberg@mujmail.cz", "l.stickell@yahoo.it") diff --git a/pyload/plugins/accounts/FilefactoryCom.py b/pyload/plugins/accounts/FilefactoryCom.py index 04ba0ea86..bbb606aa2 100644 --- a/pyload/plugins/accounts/FilefactoryCom.py +++ b/pyload/plugins/accounts/FilefactoryCom.py @@ -27,7 +27,7 @@ class FilefactoryCom(Account): __name__ = "FilefactoryCom" __version__ = "0.14" __type__ = "account" - __description__ = """filefactory.com account plugin""" + __description__ = """Filefactory.com account plugin""" __author_name__ = ("zoidberg", "stickell") __author_mail__ = ("zoidberg@mujmail.cz", "l.stickell@yahoo.it") diff --git a/pyload/plugins/accounts/FilejungleCom.py b/pyload/plugins/accounts/FilejungleCom.py index fb56693d9..42b45625c 100644 --- a/pyload/plugins/accounts/FilejungleCom.py +++ b/pyload/plugins/accounts/FilejungleCom.py @@ -27,7 +27,7 @@ class FilejungleCom(Account): __name__ = "FilejungleCom" __version__ = "0.11" __type__ = "account" - __description__ = """filejungle.com account plugin""" + __description__ = """Filejungle.com account plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/accounts/FilesMailRu.py b/pyload/plugins/accounts/FilesMailRu.py index c316ebf42..794e80d84 100644 --- a/pyload/plugins/accounts/FilesMailRu.py +++ b/pyload/plugins/accounts/FilesMailRu.py @@ -24,7 +24,7 @@ class FilesMailRu(Account): __name__ = "FilesMailRu" __version__ = "0.1" __type__ = "account" - __description__ = """filesmail.ru account plugin""" + __description__ = """Filesmail.ru account plugin""" __author_name__ = "RaNaN" __author_mail__ = "RaNaN@pyload.org" diff --git a/pyload/plugins/accounts/FileserveCom.py b/pyload/plugins/accounts/FileserveCom.py index d6f286cfd..439e4cd81 100644 --- a/pyload/plugins/accounts/FileserveCom.py +++ b/pyload/plugins/accounts/FileserveCom.py @@ -27,7 +27,7 @@ class FileserveCom(Account): __name__ = "FileserveCom" __version__ = "0.2" __type__ = "account" - __description__ = """fileserve.com account plugin""" + __description__ = """Fileserve.com account plugin""" __author_name__ = "mkaay" __author_mail__ = "mkaay@mkaay.de" diff --git a/pyload/plugins/accounts/FourSharedCom.py b/pyload/plugins/accounts/FourSharedCom.py index ba692d2db..e8c8c5bd6 100644 --- a/pyload/plugins/accounts/FourSharedCom.py +++ b/pyload/plugins/accounts/FourSharedCom.py @@ -25,7 +25,7 @@ class FourSharedCom(Account): __name__ = "FourSharedCom" __version__ = "0.01" __type__ = "account" - __description__ = """FourSharedCom account plugin""" + __description__ = """FourShared.com account plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/accounts/FreakshareCom.py b/pyload/plugins/accounts/FreakshareCom.py index dd666f653..6628db6b1 100644 --- a/pyload/plugins/accounts/FreakshareCom.py +++ b/pyload/plugins/accounts/FreakshareCom.py @@ -26,7 +26,7 @@ class FreakshareCom(Account): __name__ = "FreakshareCom" __version__ = "0.1" __type__ = "account" - __description__ = """freakshare.com account plugin""" + __description__ = """Freakshare.com account plugin""" __author_name__ = "RaNaN" __author_mail__ = "RaNaN@pyload.org" diff --git a/pyload/plugins/accounts/FshareVn.py b/pyload/plugins/accounts/FshareVn.py index 0d49b137d..cb2ad700c 100644 --- a/pyload/plugins/accounts/FshareVn.py +++ b/pyload/plugins/accounts/FshareVn.py @@ -28,7 +28,7 @@ class FshareVn(Account): __name__ = "FshareVn" __version__ = "0.06" __type__ = "account" - __description__ = """fshare.vn account plugin""" + __description__ = """Fshare.vn account plugin""" __author_name__ = ("zoidberg", "stickell") __author_mail__ = ("zoidberg@mujmail.cz", "l.stickell@yahoo.it") diff --git a/pyload/plugins/accounts/HellshareCz.py b/pyload/plugins/accounts/HellshareCz.py index 0759912e6..b6c738715 100644 --- a/pyload/plugins/accounts/HellshareCz.py +++ b/pyload/plugins/accounts/HellshareCz.py @@ -27,7 +27,7 @@ class HellshareCz(Account): __name__ = "HellshareCz" __version__ = "0.14" __type__ = "account" - __description__ = """hellshare.cz account plugin""" + __description__ = """Hellshare.cz account plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/accounts/HotfileCom.py b/pyload/plugins/accounts/HotfileCom.py index 4c144a883..72a04777f 100644 --- a/pyload/plugins/accounts/HotfileCom.py +++ b/pyload/plugins/accounts/HotfileCom.py @@ -27,7 +27,7 @@ class HotfileCom(Account): __name__ = "HotfileCom" __version__ = "0.2" __type__ = "account" - __description__ = """hotfile.com account plugin""" + __description__ = """Hotfile.com account plugin""" __author_name__ = ("mkaay", "JoKoT3") __author_mail__ = ("mkaay@mkaay.de", "jokot3@gmail.com") diff --git a/pyload/plugins/accounts/MegasharesCom.py b/pyload/plugins/accounts/MegasharesCom.py index 4c44ddfad..59aefe374 100644 --- a/pyload/plugins/accounts/MegasharesCom.py +++ b/pyload/plugins/accounts/MegasharesCom.py @@ -10,7 +10,7 @@ class MegasharesCom(Account): __name__ = "MegasharesCom" __version__ = "0.02" __type__ = "account" - __description__ = """megashares.com account plugin""" + __description__ = """Megashares.com account plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/accounts/MultishareCz.py b/pyload/plugins/accounts/MultishareCz.py index baf156abf..749400fa7 100644 --- a/pyload/plugins/accounts/MultishareCz.py +++ b/pyload/plugins/accounts/MultishareCz.py @@ -28,7 +28,7 @@ class MultishareCz(MultiHoster): __name__ = "MultishareCz" __version__ = "0.02" __type__ = "account" - __description__ = """multishare.cz account plugin""" + __description__ = """Multishare.cz account plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/accounts/NetloadIn.py b/pyload/plugins/accounts/NetloadIn.py index 3e3bd93c1..d71fba070 100755 --- a/pyload/plugins/accounts/NetloadIn.py +++ b/pyload/plugins/accounts/NetloadIn.py @@ -27,7 +27,7 @@ class NetloadIn(Account): __name__ = "NetloadIn" __version__ = "0.22" __type__ = "account" - __description__ = """netload.in account plugin""" + __description__ = """Netload.in account plugin""" __author_name__ = ("RaNaN", "CryNickSystems") __author_mail__ = ("RaNaN@pyload.org", "webmaster@pcProfil.de") diff --git a/pyload/plugins/accounts/PremiumizeMe.py b/pyload/plugins/accounts/PremiumizeMe.py index e2f85e394..814269acb 100644 --- a/pyload/plugins/accounts/PremiumizeMe.py +++ b/pyload/plugins/accounts/PremiumizeMe.py @@ -6,7 +6,7 @@ class PremiumizeMe(MultiHoster): __name__ = "PremiumizeMe" __version__ = "0.11" __type__ = "account" - __description__ = """Premiumize.Me account plugin""" + __description__ = """Premiumize.me account plugin""" __author_name__ = "Florian Franzen" __author_mail__ = "FlorianFranzen@gmail.com" diff --git a/pyload/plugins/accounts/QuickshareCz.py b/pyload/plugins/accounts/QuickshareCz.py index 514db235f..356ed23c8 100644 --- a/pyload/plugins/accounts/QuickshareCz.py +++ b/pyload/plugins/accounts/QuickshareCz.py @@ -26,7 +26,7 @@ class QuickshareCz(Account): __name__ = "QuickshareCz" __version__ = "0.01" __type__ = "account" - __description__ = """quickshare.cz account plugin""" + __description__ = """Quickshare.cz account plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/accounts/RapidgatorNet.py b/pyload/plugins/accounts/RapidgatorNet.py index 5fae5ea7e..8fcd0c95a 100644 --- a/pyload/plugins/accounts/RapidgatorNet.py +++ b/pyload/plugins/accounts/RapidgatorNet.py @@ -25,7 +25,7 @@ class RapidgatorNet(Account): __name__ = "RapidgatorNet" __version__ = "0.04" __type__ = "account" - __description__ = """rapidgator.net account plugin""" + __description__ = """Rapidgator.net account plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/accounts/ReloadCc.py b/pyload/plugins/accounts/ReloadCc.py index 3bc28ee9f..aead6544f 100644 --- a/pyload/plugins/accounts/ReloadCc.py +++ b/pyload/plugins/accounts/ReloadCc.py @@ -9,7 +9,7 @@ class ReloadCc(Account): __name__ = "ReloadCc" __version__ = "0.3" __type__ = "account" - __description__ = """Reload.Cc account plugin""" + __description__ = """Reload.cc account plugin""" __author_name__ = "Reload Team" __author_mail__ = "hello@reload.cc" diff --git a/pyload/plugins/accounts/RyushareCom.py b/pyload/plugins/accounts/RyushareCom.py index 484de2d7a..1300659ee 100644 --- a/pyload/plugins/accounts/RyushareCom.py +++ b/pyload/plugins/accounts/RyushareCom.py @@ -6,7 +6,7 @@ class RyushareCom(XFSPAccount): __name__ = "RyushareCom" __version__ = "0.03" __type__ = "account" - __description__ = """ryushare.com account plugin""" + __description__ = """Ryushare.com account plugin""" __author_name__ = ("zoidberg", "trance4us") __author_mail__ = ("zoidberg@mujmail.cz", "") diff --git a/pyload/plugins/accounts/ShareonlineBiz.py b/pyload/plugins/accounts/ShareonlineBiz.py index 03babb5e6..6ab1492c2 100644 --- a/pyload/plugins/accounts/ShareonlineBiz.py +++ b/pyload/plugins/accounts/ShareonlineBiz.py @@ -24,7 +24,7 @@ class ShareonlineBiz(Account): __name__ = "ShareonlineBiz" __version__ = "0.24" __type__ = "account" - __description__ = """share-online.biz account plugin""" + __description__ = """Share-online.biz account plugin""" __author_name__ = ("mkaay", "zoidberg") __author_mail__ = ("mkaay@mkaay.de", "zoidberg@mujmail.cz") diff --git a/pyload/plugins/accounts/UlozTo.py b/pyload/plugins/accounts/UlozTo.py index e1596e164..6b1067f28 100644 --- a/pyload/plugins/accounts/UlozTo.py +++ b/pyload/plugins/accounts/UlozTo.py @@ -9,7 +9,7 @@ class UlozTo(Account): __name__ = "UlozTo" __version__ = "0.06" __type__ = "account" - __description__ = """uloz.to account plugin""" + __description__ = """Uloz.to account plugin""" __author_name__ = ("zoidberg", "pulpe") __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/accounts/UploadedTo.py b/pyload/plugins/accounts/UploadedTo.py index a9e86e297..83bfb3f14 100644 --- a/pyload/plugins/accounts/UploadedTo.py +++ b/pyload/plugins/accounts/UploadedTo.py @@ -27,7 +27,7 @@ class UploadedTo(Account): __name__ = "UploadedTo" __version__ = "0.26" __type__ = "account" - __description__ = """ul.net account plugin""" + __description__ = """Uploaded.to account plugin""" __author_name__ = "mkaay" __author_mail__ = "mkaay@mkaay.de" diff --git a/pyload/plugins/accounts/UploadingCom.py b/pyload/plugins/accounts/UploadingCom.py index 187434b19..665c6346f 100644 --- a/pyload/plugins/accounts/UploadingCom.py +++ b/pyload/plugins/accounts/UploadingCom.py @@ -27,7 +27,7 @@ class UploadingCom(Account): __name__ = "UploadingCom" __version__ = "0.1" __type__ = "account" - __description__ = """uploading.com account plugin""" + __description__ = """Uploading.com account plugin""" __author_name__ = "mkaay" __author_mail__ = "mkaay@mkaay.de" diff --git a/pyload/plugins/addons/BypassCaptcha.py b/pyload/plugins/addons/BypassCaptcha.py index bd718ea7e..8956febb5 100644 --- a/pyload/plugins/addons/BypassCaptcha.py +++ b/pyload/plugins/addons/BypassCaptcha.py @@ -44,7 +44,7 @@ class BypassCaptchaException(Exception): class BypassCaptcha(Hook): __name__ = "BypassCaptcha" __version__ = "0.04" - __description__ = """send captchas to BypassCaptcha.com""" + __description__ = """Send captchas to BypassCaptcha.com""" __config__ = [("activated", "bool", "Activated", False), ("force", "bool", "Force BC even if client is connected", False), ("passkey", "password", "Passkey", "")] diff --git a/pyload/plugins/addons/Captcha9kw.py b/pyload/plugins/addons/Captcha9kw.py index 85331a2c2..3a1b9fe8f 100755 --- a/pyload/plugins/addons/Captcha9kw.py +++ b/pyload/plugins/addons/Captcha9kw.py @@ -30,7 +30,7 @@ from module.plugins.Hook import Hook class Captcha9kw(Hook): __name__ = "Captcha9kw" __version__ = "0.09" - __description__ = """send captchas to 9kw.eu""" + __description__ = """Send captchas to 9kw.eu""" __config__ = [("activated", "bool", "Activated", False), ("force", "bool", "Force CT even if client is connected", True), ("https", "bool", "Enable HTTPS", "False"), diff --git a/pyload/plugins/addons/CaptchaBrotherhood.py b/pyload/plugins/addons/CaptchaBrotherhood.py index 69af96705..9a4efaa95 100644 --- a/pyload/plugins/addons/CaptchaBrotherhood.py +++ b/pyload/plugins/addons/CaptchaBrotherhood.py @@ -46,7 +46,7 @@ class CaptchaBrotherhoodException(Exception): class CaptchaBrotherhood(Hook): __name__ = "CaptchaBrotherhood" __version__ = "0.04" - __description__ = """send captchas to CaptchaBrotherhood.com""" + __description__ = """Send captchas to CaptchaBrotherhood.com""" __config__ = [("activated", "bool", "Activated", False), ("username", "str", "Username", ""), ("force", "bool", "Force CT even if client is connected", False), diff --git a/pyload/plugins/addons/CaptchaTrader.py b/pyload/plugins/addons/CaptchaTrader.py index df54ec70b..067ee7c9b 100644 --- a/pyload/plugins/addons/CaptchaTrader.py +++ b/pyload/plugins/addons/CaptchaTrader.py @@ -44,7 +44,7 @@ class CaptchaTraderException(Exception): class CaptchaTrader(Hook): __name__ = "CaptchaTrader" __version__ = "0.16" - __description__ = """send captchas to captchatrader.com""" + __description__ = """Send captchas to captchatrader.com""" __config__ = [("activated", "bool", "Activated", False), ("username", "str", "Username", ""), ("force", "bool", "Force CT even if client is connected", False), diff --git a/pyload/plugins/addons/Checksum.py b/pyload/plugins/addons/Checksum.py index 7f2f63e8f..fb7087de9 100644 --- a/pyload/plugins/addons/Checksum.py +++ b/pyload/plugins/addons/Checksum.py @@ -55,7 +55,7 @@ def computeChecksum(local_file, algorithm): class Checksum(Hook): __name__ = "Checksum" __version__ = "0.12" - __description__ = "Verify downloaded file size and checksum" + __description__ = """Verify downloaded file size and checksum""" __config__ = [("activated", "bool", "Activated", False), ("check_action", "fail;retry;nothing", "What to do if check fails?", "retry"), ("max_tries", "int", "Number of retries", 2), diff --git a/pyload/plugins/addons/DeathByCaptcha.py b/pyload/plugins/addons/DeathByCaptcha.py index 7de4f4f2c..9e466e193 100644 --- a/pyload/plugins/addons/DeathByCaptcha.py +++ b/pyload/plugins/addons/DeathByCaptcha.py @@ -61,7 +61,7 @@ class DeathByCaptchaException(Exception): class DeathByCaptcha(Hook): __name__ = "DeathByCaptcha" __version__ = "0.03" - __description__ = """send captchas to DeathByCaptcha.com""" + __description__ = """Send captchas to DeathByCaptcha.com""" __config__ = [("activated", "bool", "Activated", False), ("username", "str", "Username", ""), ("passkey", "password", "Password", ""), diff --git a/pyload/plugins/addons/Ev0InFetcher.py b/pyload/plugins/addons/Ev0InFetcher.py index 0267dd4a7..674cc07a8 100644 --- a/pyload/plugins/addons/Ev0InFetcher.py +++ b/pyload/plugins/addons/Ev0InFetcher.py @@ -24,7 +24,7 @@ from module.plugins.Hook import Hook class Ev0InFetcher(Hook): __name__ = "Ev0InFetcher" __version__ = "0.21" - __description__ = """checks rss feeds for ev0.in""" + __description__ = """Checks rss feeds for Ev0.in""" __config__ = [("activated", "bool", "Activated", "False"), ("interval", "int", "Check interval in minutes", "10"), ("queue", "bool", "Move new shows directly to Queue", False), diff --git a/pyload/plugins/addons/ExpertDecoders.py b/pyload/plugins/addons/ExpertDecoders.py index f1b7ea352..e2dfe9349 100644 --- a/pyload/plugins/addons/ExpertDecoders.py +++ b/pyload/plugins/addons/ExpertDecoders.py @@ -31,7 +31,7 @@ from module.plugins.Hook import Hook class ExpertDecoders(Hook): __name__ = "ExpertDecoders" __version__ = "0.01" - __description__ = """send captchas to expertdecoders.com""" + __description__ = """Send captchas to expertdecoders.com""" __config__ = [("activated", "bool", "Activated", False), ("force", "bool", "Force CT even if client is connected", False), ("passkey", "password", "Access key", ""), ] diff --git a/pyload/plugins/addons/ExtractArchive.py b/pyload/plugins/addons/ExtractArchive.py index 9a66f13c7..cfa7f36c7 100644 --- a/pyload/plugins/addons/ExtractArchive.py +++ b/pyload/plugins/addons/ExtractArchive.py @@ -62,7 +62,7 @@ class ExtractArchive(Addon): """ __name__ = "ExtractArchive" __version__ = "0.16" - __description__ = "Extract different kind of archives" + __description__ = """Extract different kind of archives""" __config__ = [("activated", "bool", "Activated", True), ("fullpath", "bool", "Extract full path", True), ("overwrite", "bool", "Overwrite files", True), diff --git a/pyload/plugins/addons/FastixRu.py b/pyload/plugins/addons/FastixRu.py index b7d1dd05d..96d35e390 100644 --- a/pyload/plugins/addons/FastixRu.py +++ b/pyload/plugins/addons/FastixRu.py @@ -15,7 +15,7 @@ class FastixRu(MultiHoster): ("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported)", "all"), ("unloadFailing", "bool", "Revert to standard download if download fails", "False"), ("interval", "int", "Reload interval in hours (0 to disable)", "24")] - __description__ = """Fastix hook plugin""" + __description__ = """Fastix.ru hook plugin""" __author_name__ = "Massimo Rosamilia" __author_mail__ = "max@spiritix.eu" diff --git a/pyload/plugins/addons/HotFolder.py b/pyload/plugins/addons/HotFolder.py index 39e135db1..46010b2a7 100644 --- a/pyload/plugins/addons/HotFolder.py +++ b/pyload/plugins/addons/HotFolder.py @@ -32,7 +32,7 @@ from module.plugins.Hook import Hook class HotFolder(Hook): __name__ = "HotFolder" __version__ = "0.11" - __description__ = """observe folder and file for changes and add container and links""" + __description__ = """Observe folder and file for changes and add container and links""" __config__ = [("activated", "bool", "Activated", "False"), ("folder", "str", "Folder to observe", "container"), ("watch_file", "bool", "Observe link file", "False"), diff --git a/pyload/plugins/addons/IRCInterface.py b/pyload/plugins/addons/IRCInterface.py index f71897ff2..2e26fee1d 100644 --- a/pyload/plugins/addons/IRCInterface.py +++ b/pyload/plugins/addons/IRCInterface.py @@ -37,7 +37,7 @@ from module.Api import PackageDoesNotExists, FileDoesNotExists class IRCInterface(Thread, Addon): __name__ = "IRCInterface" __version__ = "0.11" - __description__ = """connect to irc and let owner perform different tasks""" + __description__ = """Connect to irc and let owner perform different tasks""" __config__ = [("activated", "bool", "Activated", "False"), ("host", "str", "IRC-Server Address", "Enter your server here!"), ("port", "int", "IRC-Server Port", "6667"), diff --git a/pyload/plugins/addons/ImageTyperz.py b/pyload/plugins/addons/ImageTyperz.py index c9e43b8ae..3d95e0f2e 100644 --- a/pyload/plugins/addons/ImageTyperz.py +++ b/pyload/plugins/addons/ImageTyperz.py @@ -42,7 +42,7 @@ class ImageTyperzException(Exception): class ImageTyperz(Hook): __name__ = "ImageTyperz" __version__ = "0.04" - __description__ = """send captchas to ImageTyperz.com""" + __description__ = """Send captchas to ImageTyperz.com""" __config__ = [("activated", "bool", "Activated", False), ("username", "str", "Username", ""), ("passkey", "password", "Password", ""), diff --git a/pyload/plugins/addons/LinkdecrypterCom.py b/pyload/plugins/addons/LinkdecrypterCom.py index 550cc0d62..8918135a1 100644 --- a/pyload/plugins/addons/LinkdecrypterCom.py +++ b/pyload/plugins/addons/LinkdecrypterCom.py @@ -26,7 +26,7 @@ from module.utils import remove_chars class LinkdecrypterCom(Hook): __name__ = "LinkdecrypterCom" __version__ = "0.19" - __description__ = """linkdecrypter.com - regexp loader""" + __description__ = """Linkdecrypter.com hook plugin""" __config__ = [("activated", "bool", "Activated", "False")] __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/addons/MergeFiles.py b/pyload/plugins/addons/MergeFiles.py index e7f35d406..770a47060 100644 --- a/pyload/plugins/addons/MergeFiles.py +++ b/pyload/plugins/addons/MergeFiles.py @@ -31,7 +31,7 @@ BUFFER_SIZE = 4096 class MergeFiles(Hook): __name__ = "MergeFiles" __version__ = "0.12" - __description__ = "Merges parts splitted with hjsplit" + __description__ = """Merges parts splitted with hjsplit""" __config__ = [("activated", "bool", "Activated", "False")] __threaded__ = ["packageFinished"] __author_name__ = "and9000" diff --git a/pyload/plugins/addons/MultiHome.py b/pyload/plugins/addons/MultiHome.py index e0895f706..d662ff7af 100644 --- a/pyload/plugins/addons/MultiHome.py +++ b/pyload/plugins/addons/MultiHome.py @@ -25,7 +25,7 @@ from module.plugins.Hook import Hook class MultiHome(Hook): __name__ = "MultiHome" __version__ = "0.11" - __description__ = """ip address changer""" + __description__ = """Ip address changer""" __config__ = [("activated", "bool", "Activated", "False"), ("interfaces", "str", "Interfaces", "None")] __author_name__ = "mkaay" diff --git a/pyload/plugins/addons/PremiumizeMe.py b/pyload/plugins/addons/PremiumizeMe.py index d6d2577a7..1c285bad8 100644 --- a/pyload/plugins/addons/PremiumizeMe.py +++ b/pyload/plugins/addons/PremiumizeMe.py @@ -8,7 +8,7 @@ class PremiumizeMe(MultiHoster): __name__ = "PremiumizeMe" __version__ = "0.12" __type__ = "hook" - __description__ = """Premiumize.Me hook plugin""" + __description__ = """Premiumize.me hook plugin""" __config__ = [("activated", "bool", "Activated", "False"), ("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported):", "all"), diff --git a/pyload/plugins/addons/RPNetBiz.py b/pyload/plugins/addons/RPNetBiz.py index 85ba72a46..e705eb23e 100644 --- a/pyload/plugins/addons/RPNetBiz.py +++ b/pyload/plugins/addons/RPNetBiz.py @@ -7,7 +7,7 @@ class RPNetBiz(MultiHoster): __name__ = "RPNetBiz" __version__ = "0.1" __type__ = "hook" - __description__ = """RPNet.Biz hook plugin""" + __description__ = """RPNet.biz hook plugin""" __config__ = [("activated", "bool", "Activated", "False"), ("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported):", "all"), ("hosterList", "str", "Hoster list (comma separated)", ""), diff --git a/pyload/plugins/addons/RehostTo.py b/pyload/plugins/addons/RehostTo.py index 8b110fa53..52e266b02 100644 --- a/pyload/plugins/addons/RehostTo.py +++ b/pyload/plugins/addons/RehostTo.py @@ -15,7 +15,7 @@ class RehostTo(MultiHoster): ("unloadFailing", "bool", "Revert to stanard download if download fails", "False"), ("interval", "int", "Reload interval in hours (0 to disable)", "24")] - __description__ = """rehost.to hook plugin""" + __description__ = """Rehost.to hook plugin""" __author_name__ = "RaNaN" __author_mail__ = "RaNaN@pyload.org" diff --git a/pyload/plugins/addons/RestartFailed.py b/pyload/plugins/addons/RestartFailed.py index 8b4dd98a3..9ae920911 100644 --- a/pyload/plugins/addons/RestartFailed.py +++ b/pyload/plugins/addons/RestartFailed.py @@ -23,7 +23,7 @@ from module.plugins.Hook import Hook class RestartFailed(Hook): __name__ = "RestartFailed" __version__ = "1.53" - __description__ = "Periodically restart all failed downloads in queue" + __description__ = """Periodically restart all failed downloads in queue""" __config__ = [("activated", "bool", "Activated", "False"), ("interval", "int", "Interval in minutes", "90")] __author_name__ = "Walter Purcaro" diff --git a/pyload/plugins/addons/UnSkipOnFail.py b/pyload/plugins/addons/UnSkipOnFail.py index 8750ab47f..3d6566a18 100644 --- a/pyload/plugins/addons/UnSkipOnFail.py +++ b/pyload/plugins/addons/UnSkipOnFail.py @@ -26,7 +26,7 @@ from module.PyFile import PyFile class UnSkipOnFail(Hook): __name__ = 'UnSkipOnFail' __version__ = '0.01' - __description__ = 'When a download fails, restart "skipped" duplicates.' + __description__ = """When a download fails, restart skipped duplicates""" __config__ = [('activated', 'bool', 'Activated', True), ] __author_name__ = "hagg" __author_mail__ = "" diff --git a/pyload/plugins/addons/UpdateManager.py b/pyload/plugins/addons/UpdateManager.py index 37ea1b67c..381b38486 100644 --- a/pyload/plugins/addons/UpdateManager.py +++ b/pyload/plugins/addons/UpdateManager.py @@ -31,7 +31,7 @@ from module.plugins.Hook import threaded, Expose, Hook class UpdateManager(Hook): __name__ = "UpdateManager" __version__ = "0.15" - __description__ = """checks for updates""" + __description__ = """Checks for updates""" __config__ = [("activated", "bool", "Activated", "True"), ("interval", "int", "Check interval in minutes", "480"), ("debug", "bool", "Check for plugin changes when in debug mode", False)] diff --git a/pyload/plugins/addons/WindowsPhoneToastNotify.py b/pyload/plugins/addons/WindowsPhoneToastNotify.py index e96004657..1fce9f2cf 100644 --- a/pyload/plugins/addons/WindowsPhoneToastNotify.py +++ b/pyload/plugins/addons/WindowsPhoneToastNotify.py @@ -21,7 +21,7 @@ from module.plugins.Hook import Hook class WindowsPhoneToastNotify(Hook): __name__ = "WindowsPhoneToastNotify" __version__ = "0.02" - __description__ = """Send push notifications to Windows Phone.""" + __description__ = """Send push notifications to Windows Phone""" __author_name__ = "Andy Voigt" __author_mail__ = "phone-support@hotmail.de" __config__ = [("activated", "bool", "Activated", False), diff --git a/pyload/plugins/addons/XFileSharingPro.py b/pyload/plugins/addons/XFileSharingPro.py index 914777dec..a1ef84be6 100644 --- a/pyload/plugins/addons/XFileSharingPro.py +++ b/pyload/plugins/addons/XFileSharingPro.py @@ -13,7 +13,7 @@ class XFileSharingPro(Hook): ("loadDefault", "bool", "Include default (built-in) hoster list", "True"), ("includeList", "str", "Include hosters (comma separated)", ""), ("excludeList", "str", "Exclude hosters (comma separated)", "")] - __description__ = """Hoster URL pattern loader for the generic XFileSharingPro plugin""" + __description__ = """XFileSharingPro hook plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/addons/XMPPInterface.py b/pyload/plugins/addons/XMPPInterface.py index 0e92b6f2b..fc38bd2e4 100644 --- a/pyload/plugins/addons/XMPPInterface.py +++ b/pyload/plugins/addons/XMPPInterface.py @@ -30,7 +30,7 @@ from module.plugins.hooks.IRCInterface import IRCInterface class XMPPInterface(IRCInterface, JabberClient): __name__ = "XMPPInterface" __version__ = "0.11" - __description__ = """connect to jabber and let owner perform different tasks""" + __description__ = """Connect to jabber and let owner perform different tasks""" __config__ = [("activated", "bool", "Activated", "False"), ("jid", "str", "Jabber ID", "user@exmaple-jabber-server.org"), ("pw", "str", "Password", ""), diff --git a/pyload/plugins/crypter/BitshareComFolder.py b/pyload/plugins/crypter/BitshareComFolder.py index 86754915d..82d7f05bf 100644 --- a/pyload/plugins/crypter/BitshareComFolder.py +++ b/pyload/plugins/crypter/BitshareComFolder.py @@ -23,7 +23,7 @@ class BitshareComFolder(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?bitshare\.com/\?d=\w+" __version__ = "0.01" - __description__ = """Bitshare.com Folder Plugin""" + __description__ = """Bitshare.com folder decrypter plugin""" __author_name__ = "stickell" __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/crypter/C1neonCom.py b/pyload/plugins/crypter/C1neonCom.py index 5506820af..da94f22f5 100644 --- a/pyload/plugins/crypter/C1neonCom.py +++ b/pyload/plugins/crypter/C1neonCom.py @@ -8,6 +8,6 @@ class C1neonCom(DeadCrypter): __type__ = "container" __pattern__ = r"http://(www\.)?c1neon.com/.*?" __version__ = "0.05" - __description__ = """C1neon.Com Container Plugin""" + __description__ = """C1neon.com decrypter plugin""" __author_name__ = "godofdream" __author_mail__ = "soilfiction@gmail.com" diff --git a/pyload/plugins/crypter/CCF.py b/pyload/plugins/crypter/CCF.py index 8013f34f2..2bd42480d 100644 --- a/pyload/plugins/crypter/CCF.py +++ b/pyload/plugins/crypter/CCF.py @@ -14,7 +14,7 @@ class CCF(Crypter): __name__ = "CCF" __version__ = "0.2" __pattern__ = r"(?!http://).*\.ccf$" - __description__ = """CCF Container Convert Plugin""" + __description__ = """CCF container decrypter plugin""" __author_name__ = "Willnix" __author_mail__ = "Willnix@pyload.org" diff --git a/pyload/plugins/crypter/CrockoComFolder.py b/pyload/plugins/crypter/CrockoComFolder.py index fa616fb28..2b3b4af3c 100644 --- a/pyload/plugins/crypter/CrockoComFolder.py +++ b/pyload/plugins/crypter/CrockoComFolder.py @@ -8,7 +8,7 @@ class CrockoComFolder(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(www\.)?crocko.com/f/.*" __version__ = "0.01" - __description__ = """Crocko.com Folder Plugin""" + __description__ = """Crocko.com folder decrypter plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/crypter/CryptItCom.py b/pyload/plugins/crypter/CryptItCom.py index 7fe0cb036..b57013d01 100644 --- a/pyload/plugins/crypter/CryptItCom.py +++ b/pyload/plugins/crypter/CryptItCom.py @@ -8,6 +8,6 @@ class CryptItCom(DeadCrypter): __type__ = "container" __pattern__ = r"http://[\w\.]*?crypt-it\.com/(s|e|d|c)/[\w]+" __version__ = "0.11" - __description__ = """Crypt.It.com Container Plugin""" + __description__ = """Crypt-it.com decrypter plugin""" __author_name__ = "jeix" __author_mail__ = "jeix@hasnomail.de" diff --git a/pyload/plugins/crypter/CzshareComFolder.py b/pyload/plugins/crypter/CzshareComFolder.py index 5d352702f..b908efc42 100644 --- a/pyload/plugins/crypter/CzshareComFolder.py +++ b/pyload/plugins/crypter/CzshareComFolder.py @@ -9,7 +9,7 @@ class CzshareComFolder(Crypter): __type__ = "crypter" __pattern__ = r"http://(\w*\.)*czshare\.(com|cz)/folders/.*" __version__ = "0.1" - __description__ = """Czshare.com Folder Plugin""" + __description__ = """Czshare.com folder decrypter plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/crypter/DDLMusicOrg.py b/pyload/plugins/crypter/DDLMusicOrg.py index c92d3acca..9ee00a8fc 100644 --- a/pyload/plugins/crypter/DDLMusicOrg.py +++ b/pyload/plugins/crypter/DDLMusicOrg.py @@ -12,7 +12,7 @@ class DDLMusicOrg(Crypter): __type__ = "container" __pattern__ = r"http://[\w\.]*?ddl-music\.org/captcha/ddlm_cr\d\.php\?\d+\?\d+" __version__ = "0.3" - __description__ = """ddl-music.org Container Plugin""" + __description__ = """Ddl-music.org decrypter plugin""" __author_name__ = "mkaay" __author_mail__ = "mkaay@mkaay.de" diff --git a/pyload/plugins/crypter/DataHuFolder.py b/pyload/plugins/crypter/DataHuFolder.py index cbc4289e5..0a2869f24 100644 --- a/pyload/plugins/crypter/DataHuFolder.py +++ b/pyload/plugins/crypter/DataHuFolder.py @@ -25,7 +25,7 @@ class DataHuFolder(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(www\.)?data.hu/dir/\w+" __version__ = "0.03" - __description__ = """Data.hu Folder Plugin""" + __description__ = """Data.hu folder decrypter plugin""" __author_name__ = ("crash", "stickell") __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/crypter/DdlstorageComFolder.py b/pyload/plugins/crypter/DdlstorageComFolder.py index d76988c92..d7edea9e1 100644 --- a/pyload/plugins/crypter/DdlstorageComFolder.py +++ b/pyload/plugins/crypter/DdlstorageComFolder.py @@ -23,7 +23,7 @@ class DdlstorageComFolder(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(?:\w*\.)*?ddlstorage.com/folder/\w{10}" __version__ = "0.02" - __description__ = """DDLStorage.com Folder Plugin""" + __description__ = """DDLStorage.com folder decrypter plugin""" __author_name__ = ("godofdream", "stickell") __author_mail__ = ("soilfiction@gmail.com", "l.stickell@yahoo.it") diff --git a/pyload/plugins/crypter/DepositfilesComFolder.py b/pyload/plugins/crypter/DepositfilesComFolder.py index 2bb32b072..f75d942ca 100644 --- a/pyload/plugins/crypter/DepositfilesComFolder.py +++ b/pyload/plugins/crypter/DepositfilesComFolder.py @@ -8,7 +8,7 @@ class DepositfilesComFolder(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(www\.)?depositfiles.com/folders/\w+" __version__ = "0.01" - __description__ = """Depositfiles.com Folder Plugin""" + __description__ = """Depositfiles.com folder decrypter plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/crypter/DontKnowMe.py b/pyload/plugins/crypter/DontKnowMe.py index 03a016d27..67ede18eb 100644 --- a/pyload/plugins/crypter/DontKnowMe.py +++ b/pyload/plugins/crypter/DontKnowMe.py @@ -11,7 +11,7 @@ class DontKnowMe(Crypter): __type__ = "crypter" __pattern__ = r"http://dontknow.me/at/\?.+$" __version__ = "0.1" - __description__ = """DontKnowMe""" + __description__ = """DontKnow.me decrypter plugin""" __author_name__ = "selaux" __author_mail__ = "" diff --git a/pyload/plugins/crypter/DownloadVimeoCom.py b/pyload/plugins/crypter/DownloadVimeoCom.py index 9b5fd552a..e3e6704cd 100644 --- a/pyload/plugins/crypter/DownloadVimeoCom.py +++ b/pyload/plugins/crypter/DownloadVimeoCom.py @@ -10,9 +10,8 @@ class DownloadVimeoCom(Crypter): __name__ = 'DownloadVimeoCom' __type__ = 'crypter' __pattern__ = r'(?:http://vimeo\.com/\d*|http://smotri\.com/video/view/\?id=.*)' - ## The download from dailymotion failed with a 403 __version__ = '0.1' - __description__ = """Video Download Plugin based on downloadvimeo.com""" + __description__ = """Vimeo.com decrypter plugin""" __author_name__ = "4Christopher" __author_mail__ = "4Christopher@gmx.de" diff --git a/pyload/plugins/crypter/DuckCryptInfo.py b/pyload/plugins/crypter/DuckCryptInfo.py index 6a157a9c0..b182884a1 100644 --- a/pyload/plugins/crypter/DuckCryptInfo.py +++ b/pyload/plugins/crypter/DuckCryptInfo.py @@ -10,7 +10,7 @@ class DuckCryptInfo(Crypter): __type__ = "container" __pattern__ = r"http://(?:www\.)?duckcrypt.info/(folder|wait|link)/(\w+)/?(\w*)" __version__ = "0.02" - __description__ = """DuckCrypt.Info Container Plugin""" + __description__ = """DuckCrypt.info decrypter plugin""" __author_name__ = "godofdream" __author_mail__ = "soilfiction@gmail.com" diff --git a/pyload/plugins/crypter/DuploadOrgFolder.py b/pyload/plugins/crypter/DuploadOrgFolder.py index 3f179cd34..e1fc6cfb9 100644 --- a/pyload/plugins/crypter/DuploadOrgFolder.py +++ b/pyload/plugins/crypter/DuploadOrgFolder.py @@ -23,7 +23,7 @@ class DuploadOrgFolder(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(www\.)?dupload\.org/folder/\d+/" __version__ = "0.01" - __description__ = """Dupload.org Folder Plugin""" + __description__ = """Dupload.org folder decrypter plugin""" __author_name__ = "stickell" __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/crypter/EasybytezComFolder.py b/pyload/plugins/crypter/EasybytezComFolder.py index 0e28fc35e..7d721e0d5 100644 --- a/pyload/plugins/crypter/EasybytezComFolder.py +++ b/pyload/plugins/crypter/EasybytezComFolder.py @@ -23,7 +23,7 @@ class EasybytezComFolder(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?easybytez\.com/users/(?P<ID>\d+/\d+)" __version__ = "0.05" - __description__ = """Easybytez Crypter Plugin""" + __description__ = """Easybytez.com decrypter plugin""" __author_name__ = "stickell" __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/crypter/EmbeduploadCom.py b/pyload/plugins/crypter/EmbeduploadCom.py index 956fa6bfb..1c6f2cec3 100644 --- a/pyload/plugins/crypter/EmbeduploadCom.py +++ b/pyload/plugins/crypter/EmbeduploadCom.py @@ -10,7 +10,7 @@ class EmbeduploadCom(Crypter): __type__ = "crypter" __pattern__ = r"http://(www\.)?embedupload.com/\?d=.*" __version__ = "0.02" - __description__ = """EmbedUpload.com crypter""" + __description__ = """EmbedUpload.com decrypter plugin""" __config__ = [("preferedHoster", "str", "Prefered hoster list (bar-separated) ", "embedupload"), ("ignoredHoster", "str", "Ignored hoster list (bar-separated) ", "")] __author_name__ = "zoidberg" diff --git a/pyload/plugins/crypter/FilebeerInfoFolder.py b/pyload/plugins/crypter/FilebeerInfoFolder.py index 311c1960a..8a8dbd8ed 100644 --- a/pyload/plugins/crypter/FilebeerInfoFolder.py +++ b/pyload/plugins/crypter/FilebeerInfoFolder.py @@ -8,7 +8,7 @@ class FilebeerInfoFolder(DeadCrypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?filebeer\.info/(\d+~f).*" __version__ = "0.02" - __description__ = """Filebeer.info Folder Plugin""" + __description__ = """Filebeer.info folder decrypter plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/crypter/FilefactoryComFolder.py b/pyload/plugins/crypter/FilefactoryComFolder.py index 547b8e873..4f7ed6281 100644 --- a/pyload/plugins/crypter/FilefactoryComFolder.py +++ b/pyload/plugins/crypter/FilefactoryComFolder.py @@ -9,7 +9,7 @@ class FilefactoryComFolder(Crypter): __type__ = "crypter" __pattern__ = r"(http://(www\.)?filefactory\.com/f/\w+).*" __version__ = "0.1" - __description__ = """Filefactory.com Folder Plugin""" + __description__ = """Filefactory.com folder decrypter plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/crypter/FileserveComFolder.py b/pyload/plugins/crypter/FileserveComFolder.py index 0bf42f56e..e6fbcdf9d 100644 --- a/pyload/plugins/crypter/FileserveComFolder.py +++ b/pyload/plugins/crypter/FileserveComFolder.py @@ -10,7 +10,7 @@ class FileserveComFolder(Crypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?fileserve.com/list/\w+" __version__ = "0.11" - __description__ = """FileServeCom.com Folder Plugin""" + __description__ = """FileServe.com folder decrypter plugin""" __author_name__ = "fionnc" __author_mail__ = "fionnc@gmail.com" diff --git a/pyload/plugins/crypter/FilestubeCom.py b/pyload/plugins/crypter/FilestubeCom.py index 2595fa72a..4d7c6be52 100644 --- a/pyload/plugins/crypter/FilestubeCom.py +++ b/pyload/plugins/crypter/FilestubeCom.py @@ -23,7 +23,7 @@ class FilestubeCom(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(?:w{3}.)?filestube\.(?:com|to)/\w+" __version__ = "0.03" - __description__ = """Filestube.com Plugin""" + __description__ = """Filestube.com decrypter plugin""" __author_name__ = "stickell" __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/crypter/FiletramCom.py b/pyload/plugins/crypter/FiletramCom.py index 886b8be30..fea039ff0 100644 --- a/pyload/plugins/crypter/FiletramCom.py +++ b/pyload/plugins/crypter/FiletramCom.py @@ -23,7 +23,7 @@ class FiletramCom(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?filetram.com/[^/]+/.+" __version__ = "0.01" - __description__ = """Filetram.com Plugin""" + __description__ = """Filetram.com decrypter plugin""" __author_name__ = ("igel", "stickell") __author_mail__ = ("igelkun@myopera.com", "l.stickell@yahoo.it") diff --git a/pyload/plugins/crypter/FourChanOrg.py b/pyload/plugins/crypter/FourChanOrg.py index 700a09b97..2cffc6ac2 100644 --- a/pyload/plugins/crypter/FourChanOrg.py +++ b/pyload/plugins/crypter/FourChanOrg.py @@ -13,7 +13,7 @@ class FourChanOrg(Crypter): __type__ = "container" __version__ = "0.3" __pattern__ = r"http://boards\.4chan.org/\w+/res/(\d+)" - __description__ = "Downloader for entire 4chan threads" + __description__ = """4chan.org folder decrypter plugin""" def decrypt(self, pyfile): pagehtml = self.load(pyfile.url) diff --git a/pyload/plugins/crypter/FreakhareComFolder.py b/pyload/plugins/crypter/FreakhareComFolder.py index 1e86afdc1..1b18ee25d 100644 --- a/pyload/plugins/crypter/FreakhareComFolder.py +++ b/pyload/plugins/crypter/FreakhareComFolder.py @@ -25,7 +25,7 @@ class FreakhareComFolder(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?freakshare\.com/folder/.+" __version__ = "0.01" - __description__ = """Freakhare.com Folder Plugin""" + __description__ = """Freakhare.com folder decrypter plugin""" __author_name__ = "stickell" __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/crypter/FreetexthostCom.py b/pyload/plugins/crypter/FreetexthostCom.py index 7c838e609..c82e93ffd 100644 --- a/pyload/plugins/crypter/FreetexthostCom.py +++ b/pyload/plugins/crypter/FreetexthostCom.py @@ -25,7 +25,7 @@ class FreetexthostCom(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(?:w{3}.)?freetexthost\.com/\w+" __version__ = "0.01" - __description__ = """Freetexthost.com Plugin""" + __description__ = """Freetexthost.com decrypter plugin""" __author_name__ = "stickell" __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/crypter/FshareVnFolder.py b/pyload/plugins/crypter/FshareVnFolder.py index 77217ff54..5b4c0bfac 100644 --- a/pyload/plugins/crypter/FshareVnFolder.py +++ b/pyload/plugins/crypter/FshareVnFolder.py @@ -8,7 +8,7 @@ class FshareVnFolder(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(www\.)?fshare.vn/folder/.*" __version__ = "0.01" - __description__ = """Fshare.vn Folder Plugin""" + __description__ = """Fshare.vn folder decrypter plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/crypter/GooGl.py b/pyload/plugins/crypter/GooGl.py index 7b78af926..de9f9eeb0 100644 --- a/pyload/plugins/crypter/GooGl.py +++ b/pyload/plugins/crypter/GooGl.py @@ -24,7 +24,7 @@ class GooGl(Crypter): __type__ = "crypter" __pattern__ = r"https?://(www\.)?goo\.gl/\w+" __version__ = "0.01" - __description__ = """Goo.gl Crypter Plugin""" + __description__ = """Goo.gl decrypter plugin""" __author_name__ = "stickell" __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/crypter/HotfileFolderCom.py b/pyload/plugins/crypter/HotfileFolderCom.py index 3836bcb34..3bf556f7c 100644 --- a/pyload/plugins/crypter/HotfileFolderCom.py +++ b/pyload/plugins/crypter/HotfileFolderCom.py @@ -11,7 +11,7 @@ class HotfileFolderCom(Crypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?hotfile.com/list/\w+/\w+" __version__ = "0.1" - __description__ = """HotfileFolder Download Plugin""" + __description__ = """Hotfile.com folder decrypter plugin""" __author_name__ = "RaNaN" __author_mail__ = "RaNaN@pyload.org" diff --git a/pyload/plugins/crypter/ILoadTo.py b/pyload/plugins/crypter/ILoadTo.py index ca6dd5026..09c08604f 100644 --- a/pyload/plugins/crypter/ILoadTo.py +++ b/pyload/plugins/crypter/ILoadTo.py @@ -8,6 +8,6 @@ class ILoadTo(DeadCrypter): __type__ = "crypter" __pattern__ = r"http://iload\.to/go/\d+-[\w\.-]+/" __version__ = "0.11" - __description__ = """iload.to Crypter Plugin""" + __description__ = """Iload.to decrypter plugin""" __author_name__ = "hzpz" __author_mail__ = "" diff --git a/pyload/plugins/crypter/LetitbitNetFolder.py b/pyload/plugins/crypter/LetitbitNetFolder.py index 68aad9dd7..96499a666 100644 --- a/pyload/plugins/crypter/LetitbitNetFolder.py +++ b/pyload/plugins/crypter/LetitbitNetFolder.py @@ -9,7 +9,7 @@ class LetitbitNetFolder(Crypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?letitbit.net/folder/\w+" __version__ = "0.1" - __description__ = """Letitbit.net Folder Plugin""" + __description__ = """Letitbit.net folder decrypter plugin""" __author_name__ = ("DHMH", "z00nx") __author_mail__ = ("webmaster@pcProfil.de", "z00nx0@gmail.com") diff --git a/pyload/plugins/crypter/LinkSaveIn.py b/pyload/plugins/crypter/LinkSaveIn.py index d75ab463c..4646b3549 100644 --- a/pyload/plugins/crypter/LinkSaveIn.py +++ b/pyload/plugins/crypter/LinkSaveIn.py @@ -20,7 +20,7 @@ class LinkSaveIn(Crypter): __type__ = "crypter" __pattern__ = r"http://(www\.)?linksave.in/(?P<id>\w+)$" __version__ = "2.01" - __description__ = """LinkSave.in Crypter Plugin""" + __description__ = """LinkSave.in decrypter plugin""" __author_name__ = "fragonib" __author_mail__ = "fragonib[AT]yahoo[DOT]es" diff --git a/pyload/plugins/crypter/LinkdecrypterCom.py b/pyload/plugins/crypter/LinkdecrypterCom.py index 1880e03eb..c84a7f099 100644 --- a/pyload/plugins/crypter/LinkdecrypterCom.py +++ b/pyload/plugins/crypter/LinkdecrypterCom.py @@ -24,7 +24,7 @@ class LinkdecrypterCom(Crypter): __name__ = "LinkdecrypterCom" __type__ = "crypter" __version__ = "0.27" - __description__ = """linkdecrypter.com""" + __description__ = """Linkdecrypter.com""" __author_name__ = ("zoidberg", "flowlee") __author_mail__ = ("zoidberg@mujmail.cz", "") diff --git a/pyload/plugins/crypter/LixIn.py b/pyload/plugins/crypter/LixIn.py index 6e4d8fe89..601490ddd 100644 --- a/pyload/plugins/crypter/LixIn.py +++ b/pyload/plugins/crypter/LixIn.py @@ -11,7 +11,7 @@ class LixIn(Crypter): __type__ = "container" __pattern__ = r"http://(www.)?lix.in/(?P<id>.*)" __version__ = "0.22" - __description__ = """Lix.in Container Plugin""" + __description__ = """Lix.in decrypter plugin""" __author_name__ = "spoob" __author_mail__ = "spoob@pyload.org" diff --git a/pyload/plugins/crypter/LofCc.py b/pyload/plugins/crypter/LofCc.py index e3aec6b73..173d710c6 100644 --- a/pyload/plugins/crypter/LofCc.py +++ b/pyload/plugins/crypter/LofCc.py @@ -8,6 +8,6 @@ class LofCc(DeadCrypter): __type__ = "container" __pattern__ = r"http://lof.cc/(.*)" __version__ = "0.21" - __description__ = """lof.cc Plugin""" + __description__ = """Lof.cc decrypter plugin""" __author_name__ = "mkaay" __author_mail__ = "mkaay@mkaay.de" diff --git a/pyload/plugins/crypter/MBLinkInfo.py b/pyload/plugins/crypter/MBLinkInfo.py index 434819d07..a32c742f2 100644 --- a/pyload/plugins/crypter/MBLinkInfo.py +++ b/pyload/plugins/crypter/MBLinkInfo.py @@ -8,6 +8,6 @@ class MBLinkInfo(DeadCrypter): __type__ = "container" __pattern__ = r"http://(?:www\.)?mblink\.info/?\?id=(\d+)" __version__ = "0.03" - __description__ = """MBLink.Info Container Plugin""" + __description__ = """MBLink.info decrypter plugin""" __author_name__ = ("Gummibaer", "stickell") __author_mail__ = ("Gummibaer@wiki-bierkiste.de", "l.stickell@yahoo.it") diff --git a/pyload/plugins/crypter/MediafireComFolder.py b/pyload/plugins/crypter/MediafireComFolder.py index 1c0c389da..6bc6e16f5 100644 --- a/pyload/plugins/crypter/MediafireComFolder.py +++ b/pyload/plugins/crypter/MediafireComFolder.py @@ -11,7 +11,7 @@ class MediafireComFolder(Crypter): __type__ = "crypter" __pattern__ = r"http://(\w*\.)*mediafire\.com/(folder/|\?sharekey=|\?\w{13}($|[/#]))" __version__ = "0.14" - __description__ = """Mediafire.com Folder Plugin""" + __description__ = """Mediafire.com folder decrypter plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/crypter/Movie2kTo.py b/pyload/plugins/crypter/Movie2kTo.py index 8119ba814..548f40f1c 100644 --- a/pyload/plugins/crypter/Movie2kTo.py +++ b/pyload/plugins/crypter/Movie2kTo.py @@ -8,6 +8,6 @@ class Movie2kTo(DeadCrypter): __type__ = "container" __pattern__ = r"http://(?:www\.)?movie2k\.to/(.*)\.html" __version__ = "0.51" - __description__ = """Movie2k.to Container Plugin""" + __description__ = """Movie2k.to decrypter plugin""" __author_name__ = "4Christopher" __author_mail__ = "4Christopher@gmx.de" diff --git a/pyload/plugins/crypter/MultiloadCz.py b/pyload/plugins/crypter/MultiloadCz.py index dcc27f2e7..22dff1c8a 100644 --- a/pyload/plugins/crypter/MultiloadCz.py +++ b/pyload/plugins/crypter/MultiloadCz.py @@ -9,7 +9,7 @@ class MultiloadCz(Crypter): __type__ = "crypter" __pattern__ = r"http://.*multiload.cz/(stahnout|slozka)/.*" __version__ = "0.4" - __description__ = """multiload.cz""" + __description__ = """Multiload.cz decrypter plugin""" __config__ = [("usedHoster", "str", "Prefered hoster list (bar-separated) ", ""), ("ignoredHoster", "str", "Ignored hoster list (bar-separated) ", "")] __author_name__ = "zoidberg" diff --git a/pyload/plugins/crypter/MultiuploadCom.py b/pyload/plugins/crypter/MultiuploadCom.py index f54566b10..f060d9472 100644 --- a/pyload/plugins/crypter/MultiuploadCom.py +++ b/pyload/plugins/crypter/MultiuploadCom.py @@ -12,7 +12,7 @@ class MultiuploadCom(Crypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?multiupload.com/(\w+)" __version__ = "0.01" - __description__ = """MultiUpload.com crypter""" + __description__ = """MultiUpload.com decrypter plugin""" __config__ = [("preferedHoster", "str", "Prefered hoster list (bar-separated) ", "multiupload"), ("ignoredHoster", "str", "Ignored hoster list (bar-separated) ", "")] __author_name__ = "zoidberg" diff --git a/pyload/plugins/crypter/NCryptIn.py b/pyload/plugins/crypter/NCryptIn.py index 3a474a1c6..53f4dad19 100644 --- a/pyload/plugins/crypter/NCryptIn.py +++ b/pyload/plugins/crypter/NCryptIn.py @@ -14,7 +14,7 @@ class NCryptIn(Crypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?ncrypt.in/(?P<type>folder|link|frame)-([^/\?]+)" __version__ = "1.32" - __description__ = """NCrypt.in Crypter Plugin""" + __description__ = """NCrypt.in decrypter plugin""" __author_name__ = ("fragonib", "stickell") __author_mail__ = ("fragonib[AT]yahoo[DOT]es", "l.stickell@yahoo.it") diff --git a/pyload/plugins/crypter/NetfolderIn.py b/pyload/plugins/crypter/NetfolderIn.py index c5c602c27..d92c5e60e 100644 --- a/pyload/plugins/crypter/NetfolderIn.py +++ b/pyload/plugins/crypter/NetfolderIn.py @@ -10,7 +10,7 @@ class NetfolderIn(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?netfolder.in/((?P<id1>\w+)/\w+|folder.php\?folder_id=(?P<id2>\w+))" __version__ = "0.6" - __description__ = """NetFolder Crypter Plugin""" + __description__ = """NetFolder.in decrypter plugin""" __author_name__ = ("RaNaN", "fragonib") __author_mail__ = ("RaNaN@pyload.org", "fragonib[AT]yahoo[DOT]es") diff --git a/pyload/plugins/crypter/OneKhDe.py b/pyload/plugins/crypter/OneKhDe.py index 55b90c0e4..f6c3aff86 100644 --- a/pyload/plugins/crypter/OneKhDe.py +++ b/pyload/plugins/crypter/OneKhDe.py @@ -12,7 +12,7 @@ class OneKhDe(Crypter): __type__ = "container" __pattern__ = r"http://(www\.)?1kh.de/f/" __version__ = "0.1" - __description__ = """1kh.de Container Plugin""" + __description__ = """1kh.de decrypter plugin""" __author_name__ = "spoob" __author_mail__ = "spoob@pyload.org" diff --git a/pyload/plugins/crypter/OronComFolder.py b/pyload/plugins/crypter/OronComFolder.py index 93ca6888a..03e8b01c8 100755 --- a/pyload/plugins/crypter/OronComFolder.py +++ b/pyload/plugins/crypter/OronComFolder.py @@ -8,6 +8,6 @@ class OronComFolder(DeadCrypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?oron.com/folder/\w+" __version__ = "0.11" - __description__ = """Oron.com Folder Plugin""" + __description__ = """Oron.com folder decrypter plugin""" __author_name__ = "DHMH" __author_mail__ = "webmaster@pcProfil.de" diff --git a/pyload/plugins/crypter/PastebinCom.py b/pyload/plugins/crypter/PastebinCom.py index fe5acfa93..b68fe56c7 100644 --- a/pyload/plugins/crypter/PastebinCom.py +++ b/pyload/plugins/crypter/PastebinCom.py @@ -23,7 +23,7 @@ class PastebinCom(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(?:w{3}.)?pastebin\.com/\w+" __version__ = "0.01" - __description__ = """Pastebin.com Plugin""" + __description__ = """Pastebin.com decrypter plugin""" __author_name__ = "stickell" __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/crypter/QuickshareCzFolder.py b/pyload/plugins/crypter/QuickshareCzFolder.py index 51947fed3..c24034e8f 100644 --- a/pyload/plugins/crypter/QuickshareCzFolder.py +++ b/pyload/plugins/crypter/QuickshareCzFolder.py @@ -9,7 +9,7 @@ class QuickshareCzFolder(Crypter): __type__ = "crypter" __pattern__ = r"http://(www\.)?quickshare.cz/slozka-\d+.*" __version__ = "0.1" - __description__ = """Quickshare.cz Folder Plugin""" + __description__ = """Quickshare.cz folder decrypter plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/crypter/RSDF.py b/pyload/plugins/crypter/RSDF.py index cbc9864b1..443eaff26 100644 --- a/pyload/plugins/crypter/RSDF.py +++ b/pyload/plugins/crypter/RSDF.py @@ -11,7 +11,7 @@ class RSDF(Crypter): __name__ = "RSDF" __version__ = "0.21" __pattern__ = r".*\.rsdf" - __description__ = """RSDF Container Decode Plugin""" + __description__ = """RSDF container decrypter plugin""" __author_name__ = ("RaNaN", "spoob") __author_mail__ = ("RaNaN@pyload.org", "spoob@pyload.org") diff --git a/pyload/plugins/crypter/RSLayerCom.py b/pyload/plugins/crypter/RSLayerCom.py index cce24c972..d4e69b38f 100644 --- a/pyload/plugins/crypter/RSLayerCom.py +++ b/pyload/plugins/crypter/RSLayerCom.py @@ -8,6 +8,6 @@ class RSLayerCom(DeadCrypter): __type__ = "container" __pattern__ = r"http://(www\.)?rs-layer.com/directory-" __version__ = "0.21" - __description__ = """RS-Layer.com Container Plugin""" + __description__ = """RS-Layer.com decrypter plugin""" __author_name__ = "hzpz" __author_mail__ = "" diff --git a/pyload/plugins/crypter/RelinkUs.py b/pyload/plugins/crypter/RelinkUs.py index d2562ca86..3241d21d8 100644 --- a/pyload/plugins/crypter/RelinkUs.py +++ b/pyload/plugins/crypter/RelinkUs.py @@ -14,7 +14,7 @@ class RelinkUs(Crypter): __type__ = "crypter" __pattern__ = r"http://(www\.)?relink.us/(f/|((view|go).php\?id=))(?P<id>.+)" __version__ = "3.0" - __description__ = """Relink.us Crypter Plugin""" + __description__ = """Relink.us decrypter plugin""" __author_name__ = "fragonib" __author_mail__ = "fragonib[AT]yahoo[DOT]es" diff --git a/pyload/plugins/crypter/SafelinkingNet.py b/pyload/plugins/crypter/SafelinkingNet.py index 725e629ab..5252051bb 100644 --- a/pyload/plugins/crypter/SafelinkingNet.py +++ b/pyload/plugins/crypter/SafelinkingNet.py @@ -14,7 +14,7 @@ class SafelinkingNet(Crypter): __type__ = 'crypter' __pattern__ = r'https?://safelinking.net/([pd])/\w+' __version__ = '0.1' - __description__ = 'Safelinking.net Crypter Plugin' + __description__ = """Safelinking.net decrypter plugin""" __author_name__ = "quareevo" __author_mail__ = "quareevo@arcor.de" diff --git a/pyload/plugins/crypter/SecuredIn.py b/pyload/plugins/crypter/SecuredIn.py index 603f9d9b0..3bb3ed8bd 100644 --- a/pyload/plugins/crypter/SecuredIn.py +++ b/pyload/plugins/crypter/SecuredIn.py @@ -8,6 +8,6 @@ class SecuredIn(DeadCrypter): __type__ = "container" __pattern__ = r"http://[\w\.]*?secured\.in/download-[\d]+-[\w]{8}\.html" __version__ = "0.21" - __description__ = """secured.in Container Plugin""" + __description__ = """Secured.in decrypter plugin""" __author_name__ = "mkaay" __author_mail__ = "mkaay@mkaay.de" diff --git a/pyload/plugins/crypter/SerienjunkiesOrg.py b/pyload/plugins/crypter/SerienjunkiesOrg.py index a682a44fa..8c6604c0a 100644 --- a/pyload/plugins/crypter/SerienjunkiesOrg.py +++ b/pyload/plugins/crypter/SerienjunkiesOrg.py @@ -25,7 +25,7 @@ class SerienjunkiesOrg(Crypter): "RapidshareCom,UploadedTo,NetloadIn,FilefactoryCom,FreakshareNet,FilebaseTo,HotfileCom,DepositfilesCom,EasyshareCom,KickloadCom"), ("ignoreList", "str", "Ignored Hoster list (comma separated)", "MegauploadCom") ] - __description__ = """serienjunkies.org Container Plugin""" + __description__ = """Serienjunkies.org decrypter plugin""" __author_name__ = ("mkaay", "godofdream") __author_mail__ = ("mkaay@mkaay.de", "soilfiction@gmail.com") diff --git a/pyload/plugins/crypter/ShareLinksBiz.py b/pyload/plugins/crypter/ShareLinksBiz.py index 09c300bf7..c48ef6e64 100644 --- a/pyload/plugins/crypter/ShareLinksBiz.py +++ b/pyload/plugins/crypter/ShareLinksBiz.py @@ -13,7 +13,7 @@ class ShareLinksBiz(Crypter): __type__ = "crypter" __pattern__ = r"(?P<base>http://[\w\.]*?(share-links|s2l)\.biz)/(?P<id>_?[0-9a-z]+)(/.*)?" __version__ = "1.13" - __description__ = """Share-Links.biz Crypter""" + __description__ = """Share-Links.biz decrypter plugin""" __author_name__ = "fragonib" __author_mail__ = "fragonib[AT]yahoo[DOT]es" diff --git a/pyload/plugins/crypter/ShareRapidComFolder.py b/pyload/plugins/crypter/ShareRapidComFolder.py index cccf3da91..9b6d26a05 100644 --- a/pyload/plugins/crypter/ShareRapidComFolder.py +++ b/pyload/plugins/crypter/ShareRapidComFolder.py @@ -8,7 +8,7 @@ class ShareRapidComFolder(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?((share(-?rapid\.(biz|com|cz|info|eu|net|org|pl|sk)|-(central|credit|free|net)\.cz|-ms\.net)|(s-?rapid|rapids)\.(cz|sk))|(e-stahuj|mediatack|premium-rapidshare|rapidshare-premium|qiuck)\.cz|kadzet\.com|stahuj-zdarma\.eu|strelci\.net|universal-share\.com)/(slozka/.+)" __version__ = "0.01" - __description__ = """Share-Rapid.com Folder Plugin""" + __description__ = """Share-Rapid.com folder decrypter plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/crypter/SpeedLoadOrgFolder.py b/pyload/plugins/crypter/SpeedLoadOrgFolder.py index d03a81648..873374cad 100644 --- a/pyload/plugins/crypter/SpeedLoadOrgFolder.py +++ b/pyload/plugins/crypter/SpeedLoadOrgFolder.py @@ -23,6 +23,6 @@ class SpeedLoadOrgFolder(DeadCrypter): __type__ = "crypter" __pattern__ = r"http://(www\.)?speedload\.org/(\d+~f$|folder/\d+/)" __version__ = "0.3" - __description__ = """Speedload Crypter Plugin""" + __description__ = """Speedload decrypter plugin""" __author_name__ = "stickell" __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/crypter/StealthTo.py b/pyload/plugins/crypter/StealthTo.py index 793bcfe30..8a73cdfbb 100644 --- a/pyload/plugins/crypter/StealthTo.py +++ b/pyload/plugins/crypter/StealthTo.py @@ -11,7 +11,7 @@ class StealthTo(Crypter): __type__ = "container" __pattern__ = r"http://(www\.)?stealth.to/folder/" __version__ = "0.1" - __description__ = """Stealth.to Container Plugin""" + __description__ = """Stealth.to decrypter plugin""" __author_name__ = "spoob" __author_mail__ = "spoob@pyload.org" diff --git a/pyload/plugins/crypter/TrailerzoneInfo.py b/pyload/plugins/crypter/TrailerzoneInfo.py index 5a6455789..45c9590a3 100644 --- a/pyload/plugins/crypter/TrailerzoneInfo.py +++ b/pyload/plugins/crypter/TrailerzoneInfo.py @@ -8,6 +8,6 @@ class TrailerzoneInfo(DeadCrypter): __type__ = "crypter" __pattern__ = r"http://(www\.)?trailerzone.info/.*?" __version__ = "0.03" - __description__ = """TrailerZone.info Crypter Plugin""" + __description__ = """TrailerZone.info decrypter plugin""" __author_name__ = "godofdream" __author_mail__ = "soilfiction@gmail.com" diff --git a/pyload/plugins/crypter/TurbobitNetFolder.py b/pyload/plugins/crypter/TurbobitNetFolder.py index 52a661f16..6fe72845c 100644 --- a/pyload/plugins/crypter/TurbobitNetFolder.py +++ b/pyload/plugins/crypter/TurbobitNetFolder.py @@ -26,7 +26,7 @@ class TurbobitNetFolder(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?turbobit\.net/download/folder/(?P<ID>\w+)" __version__ = "0.03" - __description__ = """Turbobit.net Folder Plugin""" + __description__ = """Turbobit.net folder decrypter plugin""" __author_name__ = ("stickell", "Walter Purcaro") __author_mail__ = ("l.stickell@yahoo.it", "vuolter@gmail.com") diff --git a/pyload/plugins/crypter/UlozToFolder.py b/pyload/plugins/crypter/UlozToFolder.py index d927be6b6..d42605acc 100644 --- a/pyload/plugins/crypter/UlozToFolder.py +++ b/pyload/plugins/crypter/UlozToFolder.py @@ -9,7 +9,7 @@ class UlozToFolder(Crypter): __type__ = "crypter" __pattern__ = r"http://.*(uloz\.to|ulozto\.(cz|sk|net)|bagruj.cz|zachowajto.pl)/(m|soubory)/.*" __version__ = "0.2" - __description__ = """Uloz.to Folder Plugin""" + __description__ = """Uloz.to folder decrypter plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/crypter/UploadedToFolder.py b/pyload/plugins/crypter/UploadedToFolder.py index 464ef2cc9..85a66f89a 100644 --- a/pyload/plugins/crypter/UploadedToFolder.py +++ b/pyload/plugins/crypter/UploadedToFolder.py @@ -25,7 +25,7 @@ class UploadedToFolder(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?(uploaded|ul)\.(to|net)/(f|folder|list)/(?P<id>\w+)" __version__ = "0.3" - __description__ = """UploadedTo Crypter Plugin""" + __description__ = """UploadedTo decrypter plugin""" __author_name__ = "stickell" __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/crypter/WiiReloadedOrg.py b/pyload/plugins/crypter/WiiReloadedOrg.py index 8768952fe..4e172bd08 100644 --- a/pyload/plugins/crypter/WiiReloadedOrg.py +++ b/pyload/plugins/crypter/WiiReloadedOrg.py @@ -8,6 +8,6 @@ class WiiReloadedOrg(DeadCrypter): __type__ = "crypter" __pattern__ = r"http://www\.wii-reloaded\.org/protect/get\.php\?i=.+" __version__ = "0.11" - __description__ = """Wii-Reloaded.org Crypter Plugin""" + __description__ = """Wii-Reloaded.org decrypter plugin""" __author_name__ = "hzpz" __author_mail__ = "" diff --git a/pyload/plugins/crypter/XupPl.py b/pyload/plugins/crypter/XupPl.py index 7ad0b22e0..e3bbf6388 100644 --- a/pyload/plugins/crypter/XupPl.py +++ b/pyload/plugins/crypter/XupPl.py @@ -6,7 +6,7 @@ class XupPl(Crypter): __type__ = "crypter" __pattern__ = r"https?://.*\.xup\.pl/.*" __version__ = "0.1" - __description__ = """Xup.pl Crypter Plugin""" + __description__ = """Xup.pl decrypter plugin""" __author_name__ = "z00nx" __author_mail__ = "z00nx0@gmail.com" diff --git a/pyload/plugins/crypter/YoutubeBatch.py b/pyload/plugins/crypter/YoutubeBatch.py index cccade063..ce2769fe0 100644 --- a/pyload/plugins/crypter/YoutubeBatch.py +++ b/pyload/plugins/crypter/YoutubeBatch.py @@ -32,7 +32,7 @@ class YoutubeBatch(Crypter): __type__ = "crypter" __pattern__ = r"https?://(?:www\.)?(m\.)?youtube\.com/(?P<TYPE>user|playlist|view_play_list)(/|.*?[?&](?:list|p)=)(?P<ID>[\w-]+)" __version__ = "1.00" - __description__ = """Youtube.com channel & playlist decrypter""" + __description__ = """Youtube.com channel & playlist decrypter plugin""" __config__ = [("likes", "bool", "Grab user (channel) liked videos", "False"), ("favorites", "bool", "Grab user (channel) favorite videos", "False"), ("uploads", "bool", "Grab channel unplaylisted videos", "True")] diff --git a/pyload/plugins/hoster/BayfilesCom.py b/pyload/plugins/hoster/BayfilesCom.py index a7a2c75d4..849370f3f 100644 --- a/pyload/plugins/hoster/BayfilesCom.py +++ b/pyload/plugins/hoster/BayfilesCom.py @@ -28,7 +28,7 @@ class BayfilesCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"https?://(?:www\.)?bayfiles\.(com|net)/file/(?P<ID>[a-zA-Z0-9]+/[a-zA-Z0-9]+/[^/]+)" __version__ = "0.06" - __description__ = """Bayfiles.com plugin - free only""" + __description__ = """Bayfiles.com hoster plugin""" __author_name__ = ("zoidberg", "Walter Purcaro") __author_mail__ = ("zoidberg@mujmail.cz", "vuolter@gmail.com") diff --git a/pyload/plugins/hoster/BezvadataCz.py b/pyload/plugins/hoster/BezvadataCz.py index 8c8fed6bf..831eca195 100644 --- a/pyload/plugins/hoster/BezvadataCz.py +++ b/pyload/plugins/hoster/BezvadataCz.py @@ -26,7 +26,7 @@ class BezvadataCz(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(\w*\.)*bezvadata.cz/stahnout/.*" __version__ = "0.24" - __description__ = """BezvaData.cz""" + __description__ = """BezvaData.cz hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/BillionuploadsCom.py b/pyload/plugins/hoster/BillionuploadsCom.py index eb54ad714..21ea6a069 100644 --- a/pyload/plugins/hoster/BillionuploadsCom.py +++ b/pyload/plugins/hoster/BillionuploadsCom.py @@ -7,7 +7,7 @@ class BillionuploadsCom(XFileSharingPro): __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)*?billionuploads.com/\w{12}" __version__ = "0.01" - __description__ = """billionuploads.com hoster plugin""" + __description__ = """Billionuploads.com hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/BitshareCom.py b/pyload/plugins/hoster/BitshareCom.py index f633fb71f..389401feb 100644 --- a/pyload/plugins/hoster/BitshareCom.py +++ b/pyload/plugins/hoster/BitshareCom.py @@ -12,7 +12,7 @@ class BitshareCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(www\.)?bitshare\.com/(files/(?P<id1>[a-zA-Z0-9]+)(/(?P<name>.*?)\.html)?|\?f=(?P<id2>[a-zA-Z0-9]+))" __version__ = "0.49" - __description__ = """Bitshare.Com File Download Hoster""" + __description__ = """Bitshare.com hoster plugin""" __author_name__ = ("Paul King", "fragonib") __author_mail__ = ("", "fragonib[AT]yahoo[DOT]es") diff --git a/pyload/plugins/hoster/CatShareNet.py b/pyload/plugins/hoster/CatShareNet.py index b5540e399..4419779e3 100644 --- a/pyload/plugins/hoster/CatShareNet.py +++ b/pyload/plugins/hoster/CatShareNet.py @@ -10,7 +10,7 @@ class CatShareNet(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(www\.)?catshare.net/\w{16}.*" __version__ = "0.01" - __description__ = """CatShare.net Download Hoster""" + __description__ = """CatShare.net hoster plugin""" __author_name__ = "z00nx" __author_mail__ = "z00nx0@gmail.com" diff --git a/pyload/plugins/hoster/ChipDe.py b/pyload/plugins/hoster/ChipDe.py index 48442aefc..ccad723b6 100644 --- a/pyload/plugins/hoster/ChipDe.py +++ b/pyload/plugins/hoster/ChipDe.py @@ -10,7 +10,7 @@ class ChipDe(Crypter): __type__ = "container" __pattern__ = r"http://(?:www\.)?chip.de/video/.*\.html" __version__ = "0.1" - __description__ = """Chip.de Container Plugin""" + __description__ = """Chip.de hoster plugin""" __author_name__ = "4Christopher" __author_mail__ = "4Christopher@gmx.de" diff --git a/pyload/plugins/hoster/CrockoCom.py b/pyload/plugins/hoster/CrockoCom.py index 6eb299c87..569cef01d 100644 --- a/pyload/plugins/hoster/CrockoCom.py +++ b/pyload/plugins/hoster/CrockoCom.py @@ -11,7 +11,7 @@ class CrockoCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(www\.)?(crocko|easy-share).com/\w+" __version__ = "0.16" - __description__ = """Crocko Download Hoster""" + __description__ = """Crocko hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/CzshareCom.py b/pyload/plugins/hoster/CzshareCom.py index 65a685cc3..57d110608 100644 --- a/pyload/plugins/hoster/CzshareCom.py +++ b/pyload/plugins/hoster/CzshareCom.py @@ -29,7 +29,7 @@ class CzshareCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(\w*\.)*czshare\.(com|cz)/(\d+/|download.php\?).*" __version__ = "0.93" - __description__ = """CZshare.com""" + __description__ = """CZshare.com hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/DailymotionCom.py b/pyload/plugins/hoster/DailymotionCom.py index 93eceeff4..a38dc723e 100644 --- a/pyload/plugins/hoster/DailymotionCom.py +++ b/pyload/plugins/hoster/DailymotionCom.py @@ -62,7 +62,7 @@ class DailymotionCom(Hoster): __pattern__ = r"https?://(?:www\.)?dailymotion\.com/.*?video/(?P<ID>[\w^_]+)" __version__ = "0.2" __config__ = [("quality", "Lowest;LD 144p;LD 240p;SD 384p;HQ 480p;HD 720p;HD 1080p;Highest", "Quality", "HD 720p")] - __description__ = """Dailymotion Video Download Hoster""" + __description__ = """Dailymotion.com hoster plugin""" __author_name__ = "Walter Purcaro" __author_mail__ = "vuolter@gmail.com" diff --git a/pyload/plugins/hoster/DataHu.py b/pyload/plugins/hoster/DataHu.py index 390b40628..821c883ab 100644 --- a/pyload/plugins/hoster/DataHu.py +++ b/pyload/plugins/hoster/DataHu.py @@ -28,7 +28,7 @@ class DataHu(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(www\.)?data.hu/get/\w+" __version__ = "0.01" - __description__ = """Data.hu Download Hoster""" + __description__ = """Data.hu hoster plugin""" __author_name__ = ("crash", "stickell") __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/hoster/DataportCz.py b/pyload/plugins/hoster/DataportCz.py index 9f30752b0..374c7a469 100644 --- a/pyload/plugins/hoster/DataportCz.py +++ b/pyload/plugins/hoster/DataportCz.py @@ -24,7 +24,7 @@ class DataportCz(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(?:.*?\.)?dataport.cz/file/(.*)" __version__ = "0.37" - __description__ = """Dataport.cz plugin - free only""" + __description__ = """Dataport.cz hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/DateiTo.py b/pyload/plugins/hoster/DateiTo.py index 7841460b3..11b47240a 100644 --- a/pyload/plugins/hoster/DateiTo.py +++ b/pyload/plugins/hoster/DateiTo.py @@ -26,7 +26,7 @@ class DateiTo(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(?:www\.)?datei\.to/datei/(?P<ID>\w+)\.html" __version__ = "0.02" - __description__ = """Datei.to plugin - free only""" + __description__ = """Datei.to hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/DepositfilesCom.py b/pyload/plugins/hoster/DepositfilesCom.py index 81458ac62..c15dbb5c7 100644 --- a/pyload/plugins/hoster/DepositfilesCom.py +++ b/pyload/plugins/hoster/DepositfilesCom.py @@ -12,7 +12,7 @@ class DepositfilesCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"https?://[\w\.]*?(depositfiles\.com|dfiles\.(eu|ru))(/\w{1,3})?/files/[\w]+" __version__ = "0.46" - __description__ = """Depositfiles.com Download Hoster""" + __description__ = """Depositfiles.com hoster plugin""" __author_name__ = ("spoob", "zoidberg") __author_mail__ = ("spoob@pyload.org", "zoidberg@mujmail.cz") diff --git a/pyload/plugins/hoster/DlFreeFr.py b/pyload/plugins/hoster/DlFreeFr.py index 35b9ca6b8..f5641d29c 100644 --- a/pyload/plugins/hoster/DlFreeFr.py +++ b/pyload/plugins/hoster/DlFreeFr.py @@ -109,7 +109,7 @@ class DlFreeFr(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://dl\.free\.fr/([a-zA-Z0-9]+|getfile\.pl\?file=/[a-zA-Z0-9]+)" __version__ = "0.25" - __description__ = """dl.free.fr download hoster""" + __description__ = """Dl.free.fr hoster plugin""" __author_name__ = ("the-razer", "zoidberg", "Toilal") __author_mail__ = ("daniel_ AT gmx DOT net", "zoidberg@mujmail.cz", "toilal.dev@gmail.com") diff --git a/pyload/plugins/hoster/EasybytezCom.py b/pyload/plugins/hoster/EasybytezCom.py index 98691a641..8cc0b6e9f 100644 --- a/pyload/plugins/hoster/EasybytezCom.py +++ b/pyload/plugins/hoster/EasybytezCom.py @@ -24,7 +24,7 @@ class EasybytezCom(XFileSharingPro): __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)?easybytez.com/(\w+).*" __version__ = "0.17" - __description__ = """easybytez.com""" + __description__ = """Easybytez.com hoster plugin""" __author_name__ = ("zoidberg", "stickell") __author_mail__ = ("zoidberg@mujmail.cz", "l.stickell@yahoo.it") diff --git a/pyload/plugins/hoster/EdiskCz.py b/pyload/plugins/hoster/EdiskCz.py index e92ecf4d2..8adffb7a4 100644 --- a/pyload/plugins/hoster/EdiskCz.py +++ b/pyload/plugins/hoster/EdiskCz.py @@ -25,7 +25,7 @@ class EdiskCz(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(\w*\.)?edisk.(cz|sk|eu)/(stahni|sk/stahni|en/download)/.*" __version__ = "0.21" - __description__ = """Edisk.cz""" + __description__ = """Edisk.cz hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/EgoFilesCom.py b/pyload/plugins/hoster/EgoFilesCom.py index a454751b5..e62b0d9d9 100644 --- a/pyload/plugins/hoster/EgoFilesCom.py +++ b/pyload/plugins/hoster/EgoFilesCom.py @@ -29,7 +29,7 @@ class EgoFilesCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"https?://(www\.)?egofiles.com/(\w+)" __version__ = "0.13" - __description__ = """Egofiles.com Download Hoster""" + __description__ = """Egofiles.com hoster plugin""" __author_name__ = "stickell" __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/hoster/EuroshareEu.py b/pyload/plugins/hoster/EuroshareEu.py index d0f87aede..646e8607e 100644 --- a/pyload/plugins/hoster/EuroshareEu.py +++ b/pyload/plugins/hoster/EuroshareEu.py @@ -25,7 +25,7 @@ class EuroshareEu(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(\w*\.)?euroshare.(eu|sk|cz|hu|pl)/file/.*" __version__ = "0.25" - __description__ = """Euroshare.eu""" + __description__ = """Euroshare.eu hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/ExtabitCom.py b/pyload/plugins/hoster/ExtabitCom.py index 807f388fe..d9724ddb7 100644 --- a/pyload/plugins/hoster/ExtabitCom.py +++ b/pyload/plugins/hoster/ExtabitCom.py @@ -28,7 +28,7 @@ class ExtabitCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(?:www\.)?extabit\.com/(file|go|fid)/(?P<ID>\w+)" __version__ = "0.5" - __description__ = """Extabit.com""" + __description__ = """Extabit.com hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/FileApeCom.py b/pyload/plugins/hoster/FileApeCom.py index de1597d87..7e69441a8 100644 --- a/pyload/plugins/hoster/FileApeCom.py +++ b/pyload/plugins/hoster/FileApeCom.py @@ -9,7 +9,7 @@ class FileApeCom(DeadHoster): __type__ = "hoster" __pattern__ = r"http://(www\.)?fileape\.com/(index\.php\?act=download\&id=|dl/)\w+" __version__ = "0.12" - __description__ = """FileApe Download Hoster""" + __description__ = """FileApe.com hoster plugin""" __author_name__ = "espes" __author_mail__ = "" diff --git a/pyload/plugins/hoster/FilecloudIo.py b/pyload/plugins/hoster/FilecloudIo.py index 26e421b06..c9f872617 100644 --- a/pyload/plugins/hoster/FilecloudIo.py +++ b/pyload/plugins/hoster/FilecloudIo.py @@ -27,7 +27,7 @@ class FilecloudIo(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)*(?:filecloud\.io|ifile\.it|mihd\.net)/(?P<ID>\w+).*" __version__ = "0.02" - __description__ = """Filecloud.io (formerly Ifile.it) plugin - free account only""" + __description__ = """Filecloud.io hoster plugin""" __author_name__ = ("zoidberg", "stickell") __author_mail__ = ("zoidberg@mujmail.cz", "l.stickell@yahoo.it") diff --git a/pyload/plugins/hoster/FilefactoryCom.py b/pyload/plugins/hoster/FilefactoryCom.py index 14caba01c..8e0bd2494 100644 --- a/pyload/plugins/hoster/FilefactoryCom.py +++ b/pyload/plugins/hoster/FilefactoryCom.py @@ -25,7 +25,7 @@ class FilefactoryCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"https?://(?:www\.)?filefactory\.com/file/(?P<id>[a-zA-Z0-9]+)" __version__ = "0.47" - __description__ = """Filefactory.Com File Download Hoster""" + __description__ = """Filefactory.com hoster plugin""" __author_name__ = "stickell" __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/hoster/FilejungleCom.py b/pyload/plugins/hoster/FilejungleCom.py index e8857257a..221093068 100644 --- a/pyload/plugins/hoster/FilejungleCom.py +++ b/pyload/plugins/hoster/FilejungleCom.py @@ -25,7 +25,7 @@ class FilejungleCom(FileserveCom): __type__ = "hoster" __pattern__ = r"http://(?:www\.)?filejungle\.com/f/(?P<id>[^/]+).*" __version__ = "0.51" - __description__ = """Filejungle.com plugin - free only""" + __description__ = """Filejungle.com hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/FilepostCom.py b/pyload/plugins/hoster/FilepostCom.py index b7a7e1d50..de40c2c5c 100644 --- a/pyload/plugins/hoster/FilepostCom.py +++ b/pyload/plugins/hoster/FilepostCom.py @@ -34,7 +34,7 @@ class FilepostCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"https?://(?:www\.)?(?:filepost\.com/files|fp.io)/([^/]+).*" __version__ = "0.27" - __description__ = """Filepost.com plugin - free only""" + __description__ = """Filepost.com hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/FilerNet.py b/pyload/plugins/hoster/FilerNet.py index 62ae81862..e67efd57e 100644 --- a/pyload/plugins/hoster/FilerNet.py +++ b/pyload/plugins/hoster/FilerNet.py @@ -32,7 +32,7 @@ class FilerNet(SimpleHoster): __type__ = "hoster" __pattern__ = r"https?://(www\.)?filer\.net/get/(\w+)" __version__ = "0.03" - __description__ = """Filer.net Download Hoster""" + __description__ = """Filer.net hoster plugin""" __author_name__ = "stickell" __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/hoster/FilesMailRu.py b/pyload/plugins/hoster/FilesMailRu.py index 04ca2926c..be54d54d5 100644 --- a/pyload/plugins/hoster/FilesMailRu.py +++ b/pyload/plugins/hoster/FilesMailRu.py @@ -34,7 +34,7 @@ class FilesMailRu(Hoster): __type__ = "hoster" __pattern__ = r"http://files\.mail\.ru/.*" __version__ = "0.31" - __description__ = """Files.Mail.Ru One-Klick Hoster""" + __description__ = """Files.mail.ru hoster plugin""" __author_name__ = "oZiRiz" __author_mail__ = "ich@oziriz.de" diff --git a/pyload/plugins/hoster/FileserveCom.py b/pyload/plugins/hoster/FileserveCom.py index b75b13841..60a7e2181 100644 --- a/pyload/plugins/hoster/FileserveCom.py +++ b/pyload/plugins/hoster/FileserveCom.py @@ -47,7 +47,7 @@ class FileserveCom(Hoster): __type__ = "hoster" __pattern__ = r"http://(?:www\.)?fileserve\.com/file/(?P<id>[^/]+).*" __version__ = "0.51" - __description__ = """Fileserve.Com File Download Hoster""" + __description__ = """Fileserve.com hoster plugin""" __author_name__ = ("jeix", "mkaay", "Paul King", "zoidberg") __author_mail__ = ("jeix@hasnomail.de", "mkaay@mkaay.de", "", "zoidberg@mujmail.cz") diff --git a/pyload/plugins/hoster/FileshareInUa.py b/pyload/plugins/hoster/FileshareInUa.py index 5e82057dc..14b703571 100644 --- a/pyload/plugins/hoster/FileshareInUa.py +++ b/pyload/plugins/hoster/FileshareInUa.py @@ -9,7 +9,7 @@ class FileshareInUa(Hoster): __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)*?fileshare.in.ua/[A-Za-z0-9]+" __version__ = "0.01" - __description__ = """fileshare.in.ua hoster plugin""" + __description__ = """Fileshare.in.ua hoster plugin""" __author_name__ = "fwannmacher" __author_mail__ = "felipe@warhammerproject.com" diff --git a/pyload/plugins/hoster/FilezyNet.py b/pyload/plugins/hoster/FilezyNet.py index c31707089..696c256e1 100644 --- a/pyload/plugins/hoster/FilezyNet.py +++ b/pyload/plugins/hoster/FilezyNet.py @@ -8,7 +8,7 @@ class FilezyNet(XFileSharingPro): __type__ = "hoster" __version__ = "0.1" __pattern__ = r"http://filezy.net/.*/.*.html" - __description__ = """filezy.net hoster plugin""" + __description__ = """Filezy.net hoster plugin""" HOSTER_NAME = "filezy.net" diff --git a/pyload/plugins/hoster/FourSharedCom.py b/pyload/plugins/hoster/FourSharedCom.py index 6b3e33284..d1414347f 100644 --- a/pyload/plugins/hoster/FourSharedCom.py +++ b/pyload/plugins/hoster/FourSharedCom.py @@ -11,7 +11,7 @@ class FourSharedCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"https?://(www\.)?4shared(\-china)?\.com/(account/)?(download|get|file|document|photo|video|audio|mp3|office|rar|zip|archive|music)/.+?/.*" __version__ = "0.29" - __description__ = """4Shared Download Hoster""" + __description__ = """4Shared.com hoster plugin""" __author_name__ = ("jeix", "zoidberg") __author_mail__ = ("jeix@hasnomail.de", "zoidberg@mujmail.cz") diff --git a/pyload/plugins/hoster/FreakshareCom.py b/pyload/plugins/hoster/FreakshareCom.py index d69a95343..2dcd9ee48 100644 --- a/pyload/plugins/hoster/FreakshareCom.py +++ b/pyload/plugins/hoster/FreakshareCom.py @@ -11,7 +11,7 @@ class FreakshareCom(Hoster): __type__ = "hoster" __pattern__ = r"http://(?:www\.)?freakshare\.(net|com)/files/\S*?/" __version__ = "0.38" - __description__ = """Freakshare.com Download Hoster""" + __description__ = """Freakshare.com hoster plugin""" __author_name__ = ("sitacuisses", "spoob", "mkaay", "Toilal") __author_mail__ = ("sitacuisses@yahoo.de", "spoob@pyload.org", "mkaay@mkaay.de", "toilal.dev@gmail.com") diff --git a/pyload/plugins/hoster/FreevideoCz.py b/pyload/plugins/hoster/FreevideoCz.py index 4c97516dc..8d33050e6 100644 --- a/pyload/plugins/hoster/FreevideoCz.py +++ b/pyload/plugins/hoster/FreevideoCz.py @@ -40,7 +40,7 @@ class FreevideoCz(Hoster): __type__ = "hoster" __pattern__ = r"http://www.freevideo.cz/vase-videa/(.*)\.html" __version__ = "0.2" - __description__ = """freevideo.cz""" + __description__ = """Freevideo.cz hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/FshareVn.py b/pyload/plugins/hoster/FshareVn.py index cde3c3408..6b73f1975 100644 --- a/pyload/plugins/hoster/FshareVn.py +++ b/pyload/plugins/hoster/FshareVn.py @@ -29,7 +29,7 @@ class FshareVn(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(www\.)?fshare.vn/file/.*" __version__ = "0.16" - __description__ = """FshareVn Download Hoster""" + __description__ = """FshareVn hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/Ftp.py b/pyload/plugins/hoster/Ftp.py index 77992372a..2058d21d6 100644 --- a/pyload/plugins/hoster/Ftp.py +++ b/pyload/plugins/hoster/Ftp.py @@ -30,7 +30,7 @@ class Ftp(Hoster): __version__ = "0.41" __pattern__ = r'(ftps?|sftp)://(.*?:.*?@)?.*?/.*' # ftp://user:password@ftp.server.org/path/to/file __type__ = "hoster" - __description__ = """A Plugin that allows you to download from an from an ftp directory""" + __description__ = """Download from ftp directory""" __author_name__ = ("jeix", "mkaay", "zoidberg") __author_mail__ = ("jeix@hasnomail.com", "mkaay@mkaay.de", "zoidberg@mujmail.cz") diff --git a/pyload/plugins/hoster/GamefrontCom.py b/pyload/plugins/hoster/GamefrontCom.py index 71f5b4eb9..54d7e2a51 100644 --- a/pyload/plugins/hoster/GamefrontCom.py +++ b/pyload/plugins/hoster/GamefrontCom.py @@ -9,7 +9,7 @@ class GamefrontCom(Hoster): __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)*?gamefront.com/files/[A-Za-z0-9]+" __version__ = "0.04" - __description__ = """gamefront.com hoster plugin""" + __description__ = """Gamefront.com hoster plugin""" __author_name__ = "fwannmacher" __author_mail__ = "felipe@warhammerproject.com" diff --git a/pyload/plugins/hoster/GigapetaCom.py b/pyload/plugins/hoster/GigapetaCom.py index 1c6200f62..c57bce4c9 100644 --- a/pyload/plugins/hoster/GigapetaCom.py +++ b/pyload/plugins/hoster/GigapetaCom.py @@ -28,7 +28,7 @@ class GigapetaCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(?:www\.)?gigapeta\.com/dl/\w+" __version__ = "0.01" - __description__ = """GigaPeta.com plugin - free only""" + __description__ = """GigaPeta.com hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/HellshareCz.py b/pyload/plugins/hoster/HellshareCz.py index 84b359695..6b8701d1f 100644 --- a/pyload/plugins/hoster/HellshareCz.py +++ b/pyload/plugins/hoster/HellshareCz.py @@ -25,7 +25,7 @@ class HellshareCz(SimpleHoster): __type__ = "hoster" __pattern__ = r"(http://(?:.*\.)*hellshare\.(?:cz|com|sk|hu|pl)/[^?]*/\d+).*" __version__ = "0.82" - __description__ = """Hellshare.cz - premium only""" + __description__ = """Hellshare.cz hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/HellspyCz.py b/pyload/plugins/hoster/HellspyCz.py index 077d1debb..ff2860b12 100644 --- a/pyload/plugins/hoster/HellspyCz.py +++ b/pyload/plugins/hoster/HellspyCz.py @@ -24,7 +24,7 @@ class HellspyCz(DeadHoster): __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)*(?:hellspy\.(?:cz|com|sk|hu|pl)|sciagaj.pl)(/\S+/\d+)/?.*" __version__ = "0.28" - __description__ = """HellSpy.cz""" + __description__ = """HellSpy.cz hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/HotfileCom.py b/pyload/plugins/hoster/HotfileCom.py index 98adb64c6..e8ced1c33 100644 --- a/pyload/plugins/hoster/HotfileCom.py +++ b/pyload/plugins/hoster/HotfileCom.py @@ -8,7 +8,7 @@ class HotfileCom(DeadHoster): __type__ = "hoster" __pattern__ = r"https?://(www.)?hotfile\.com/dl/\d+/[0-9a-zA-Z]+/" __version__ = "0.37" - __description__ = """Hotfile.com Download Hoster""" + __description__ = """Hotfile.com hoster plugin""" __author_name__ = ("sitacuisses", "spoob", "mkaay", "JoKoT3") __author_mail__ = ("sitacuisses@yhoo.de", "spoob@pyload.org", "mkaay@mkaay.de", "jokot3@gmail.com") diff --git a/pyload/plugins/hoster/IcyFilesCom.py b/pyload/plugins/hoster/IcyFilesCom.py index a42cc8b9a..0a995e479 100644 --- a/pyload/plugins/hoster/IcyFilesCom.py +++ b/pyload/plugins/hoster/IcyFilesCom.py @@ -24,7 +24,7 @@ class IcyFilesCom(DeadHoster): __type__ = "hoster" __pattern__ = r"http://(?:www\.)?icyfiles\.com/(.*)" __version__ = "0.06" - __description__ = """IcyFiles.com plugin - free only""" + __description__ = """IcyFiles.com hoster plugin""" __author_name__ = "godofdream" __author_mail__ = "soilfiction@gmail.com" diff --git a/pyload/plugins/hoster/IfolderRu.py b/pyload/plugins/hoster/IfolderRu.py index 2c8014230..10dc169e7 100644 --- a/pyload/plugins/hoster/IfolderRu.py +++ b/pyload/plugins/hoster/IfolderRu.py @@ -25,7 +25,7 @@ class IfolderRu(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(?:[^.]*\.)?(?:ifolder\.ru|rusfolder\.(?:com|net|ru))/(?:files/)?(?P<ID>\d+).*" __version__ = "0.38" - __description__ = """rusfolder.com / ifolder.ru""" + __description__ = """Ifolder.ru hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/LetitbitNet.py b/pyload/plugins/hoster/LetitbitNet.py index 45f029c7b..d2ef616a8 100644 --- a/pyload/plugins/hoster/LetitbitNet.py +++ b/pyload/plugins/hoster/LetitbitNet.py @@ -52,7 +52,7 @@ class LetitbitNet(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)*(letitbit|shareflare).net/download/.*" __version__ = "0.23" - __description__ = """letitbit.net""" + __description__ = """Letitbit.net hoster plugin""" __author_name__ = ("zoidberg", "z00nx") __author_mail__ = ("zoidberg@mujmail.cz", "z00nx0@gmail.com") diff --git a/pyload/plugins/hoster/LuckyShareNet.py b/pyload/plugins/hoster/LuckyShareNet.py index 3096db1f1..6097bf13d 100644 --- a/pyload/plugins/hoster/LuckyShareNet.py +++ b/pyload/plugins/hoster/LuckyShareNet.py @@ -12,7 +12,7 @@ class LuckyShareNet(SimpleHoster): __type__ = "hoster" __pattern__ = r"https?://(www\.)?luckyshare.net/(?P<ID>\d{10,})" __version__ = "0.02" - __description__ = """LuckyShare.net Download Hoster""" + __description__ = """LuckyShare.net hoster plugin""" __author_name__ = "stickell" __author_mail__ = "l.stickell@yahoo.it" diff --git a/pyload/plugins/hoster/MediafireCom.py b/pyload/plugins/hoster/MediafireCom.py index 494d0049e..e4850dcb6 100644 --- a/pyload/plugins/hoster/MediafireCom.py +++ b/pyload/plugins/hoster/MediafireCom.py @@ -64,7 +64,7 @@ class MediafireCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)*mediafire\.com/(file/|(view/?|download.php)?\?)(\w{11}|\w{15})($|/)" __version__ = "0.79" - __description__ = """Mediafire.com plugin - free only""" + __description__ = """Mediafire.com hoster plugin""" __author_name__ = ("zoidberg", "stickell") __author_mail__ = ("zoidberg@mujmail.cz", "l.stickell@yahoo.it") diff --git a/pyload/plugins/hoster/MegaNz.py b/pyload/plugins/hoster/MegaNz.py index bf4223213..0d5e84f2f 100644 --- a/pyload/plugins/hoster/MegaNz.py +++ b/pyload/plugins/hoster/MegaNz.py @@ -21,7 +21,7 @@ class MegaNz(Hoster): __type__ = "hoster" __pattern__ = r"https?://([a-z0-9]+\.)?mega\.co\.nz/#!([a-zA-Z0-9!_\-]+)" __version__ = "0.14" - __description__ = """mega.co.nz hoster plugin""" + __description__ = """Mega.co.nz hoster plugin""" __author_name__ = ("RaNaN", ) __author_mail__ = ("ranan@pyload.org", ) diff --git a/pyload/plugins/hoster/MegacrypterCom.py b/pyload/plugins/hoster/MegacrypterCom.py index c166146dd..6dae50848 100644 --- a/pyload/plugins/hoster/MegacrypterCom.py +++ b/pyload/plugins/hoster/MegacrypterCom.py @@ -10,7 +10,7 @@ class MegacrypterCom(MegaNz): __type__ = "hoster" __pattern__ = r"(https?://[a-z0-9]{0,10}\.?megacrypter\.com/[a-zA-Z0-9!_\-]+)" __version__ = "0.2" - __description__ = """megacrypter plugin, based and inherits from RaNaN's MegaNz plugin""" + __description__ = """Megacrypter.com decrypter plugin""" __author_name__ = ("GonzaloSR", ) __author_mail__ = ("gonzalo@gonzalosr.com", ) diff --git a/pyload/plugins/hoster/MegareleaseOrg.py b/pyload/plugins/hoster/MegareleaseOrg.py index 8e90d2119..651e3eab7 100644 --- a/pyload/plugins/hoster/MegareleaseOrg.py +++ b/pyload/plugins/hoster/MegareleaseOrg.py @@ -23,7 +23,7 @@ class MegareleaseOrg(XFileSharingPro): __type__ = "hoster" __pattern__ = r"https?://(?:www\.)?megarelease.org/\w{12}" __version__ = "0.01" - __description__ = """Megarelease.Org hoster plugin""" + __description__ = """Megarelease.org hoster plugin""" __author_name__ = ("derek3x", "stickell") __author_mail__ = ("derek3x@vmail.me", "l.stickell@yahoo.it") diff --git a/pyload/plugins/hoster/MegasharesCom.py b/pyload/plugins/hoster/MegasharesCom.py index a0aebe7c6..13e8642ed 100644 --- a/pyload/plugins/hoster/MegasharesCom.py +++ b/pyload/plugins/hoster/MegasharesCom.py @@ -26,7 +26,7 @@ class MegasharesCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(\w+\.)?megashares.com/.*" __version__ = "0.24" - __description__ = """megashares.com plugin - free only""" + __description__ = """Megashares.com hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/MultishareCz.py b/pyload/plugins/hoster/MultishareCz.py index 598e17c03..3aa9eb85e 100644 --- a/pyload/plugins/hoster/MultishareCz.py +++ b/pyload/plugins/hoster/MultishareCz.py @@ -26,7 +26,7 @@ class MultishareCz(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)?multishare.cz/stahnout/(?P<ID>\d+).*" __version__ = "0.34" - __description__ = """MultiShare.cz""" + __description__ = """MultiShare.cz hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/MyvideoDe.py b/pyload/plugins/hoster/MyvideoDe.py index f858e7313..bdb4ca337 100644 --- a/pyload/plugins/hoster/MyvideoDe.py +++ b/pyload/plugins/hoster/MyvideoDe.py @@ -10,7 +10,7 @@ class MyvideoDe(Hoster): __type__ = "hoster" __pattern__ = r"http://(www\.)?myvideo.de/watch/" __version__ = "0.9" - __description__ = """Myvideo.de Video Download Hoster""" + __description__ = """Myvideo.de hoster plugin""" __author_name__ = "spoob" __author_mail__ = "spoob@pyload.org" diff --git a/pyload/plugins/hoster/NarodRu.py b/pyload/plugins/hoster/NarodRu.py index 771c15865..d932f4918 100644 --- a/pyload/plugins/hoster/NarodRu.py +++ b/pyload/plugins/hoster/NarodRu.py @@ -26,7 +26,7 @@ class NarodRu(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(www\.)?narod(\.yandex)?\.ru/(disk|start/[0-9]+\.\w+-narod\.yandex\.ru)/(?P<ID>\d+)/.+" __version__ = "0.1" - __description__ = """Narod.ru""" + __description__ = """Narod.ru hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/NetloadIn.py b/pyload/plugins/hoster/NetloadIn.py index 71c8dd4f2..d34e8b6af 100644 --- a/pyload/plugins/hoster/NetloadIn.py +++ b/pyload/plugins/hoster/NetloadIn.py @@ -54,7 +54,7 @@ class NetloadIn(Hoster): __type__ = "hoster" __pattern__ = r"https?://.*netload\.in/(?:datei(.*?)(?:\.htm|/)|index.php?id=10&file_id=)" __version__ = "0.45" - __description__ = """Netload.in Download Hoster""" + __description__ = """Netload.in hoster plugin""" __author_name__ = ("spoob", "RaNaN", "Gregy") __author_mail__ = ("spoob@pyload.org", "ranan@pyload.org", "gregy@gregy.cz") diff --git a/pyload/plugins/hoster/NovafileCom.py b/pyload/plugins/hoster/NovafileCom.py index 599ec5f7d..eb81e44bb 100644 --- a/pyload/plugins/hoster/NovafileCom.py +++ b/pyload/plugins/hoster/NovafileCom.py @@ -12,7 +12,7 @@ class NovafileCom(XFileSharingPro): __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)*novafile\.com/\w{12}" __version__ = "0.02" - __description__ = """novafile.com hoster plugin""" + __description__ = """Novafile.com hoster plugin""" __author_name__ = ("zoidberg", "stickell") __author_mail__ = ("zoidberg@mujmail.cz", "l.stickell@yahoo.it") diff --git a/pyload/plugins/hoster/NowDownloadEu.py b/pyload/plugins/hoster/NowDownloadEu.py index 24d8f3f1c..dda13e2da 100644 --- a/pyload/plugins/hoster/NowDownloadEu.py +++ b/pyload/plugins/hoster/NowDownloadEu.py @@ -26,7 +26,7 @@ class NowDownloadEu(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(?:www\.)?nowdownload\.(ch|co|eu|sx)/(dl/|download\.php\?id=)(?P<ID>\w+)" __version__ = "0.05" - __description__ = """NowDownloadCh""" + __description__ = """NowDownload.ch hoster plugin""" __author_name__ = ("godofdream", "Walter Purcaro") __author_mail__ = ("soilfiction@gmail.com", "vuolter@gmail.com") diff --git a/pyload/plugins/hoster/OneFichierCom.py b/pyload/plugins/hoster/OneFichierCom.py index 4142eaece..d358b9714 100644 --- a/pyload/plugins/hoster/OneFichierCom.py +++ b/pyload/plugins/hoster/OneFichierCom.py @@ -12,7 +12,7 @@ class OneFichierCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"(http://(\w+)\.((1fichier|d(es)?fichiers|pjointe)\.(com|fr|net|org)|(cjoint|mesfichiers|piecejointe|oi)\.(org|net)|tenvoi\.(com|org|net)|dl4free\.com|alterupload\.com|megadl.fr))" __version__ = "0.50" - __description__ = """1fichier.com download hoster""" + __description__ = """1fichier.com hoster plugin""" __author_name__ = ("fragonib", "the-razer", "zoidberg", "imclem") __author_mail__ = ("fragonib[AT]yahoo[DOT]es", "daniel_ AT gmx DOT net", "zoidberg@mujmail.cz", "imclem on github") diff --git a/pyload/plugins/hoster/PornhostCom.py b/pyload/plugins/hoster/PornhostCom.py index a3ef6a427..d090d27c1 100644 --- a/pyload/plugins/hoster/PornhostCom.py +++ b/pyload/plugins/hoster/PornhostCom.py @@ -10,7 +10,7 @@ class PornhostCom(Hoster): __type__ = "hoster" __pattern__ = r'http://[\w\.]*?pornhost\.com/([0-9]+/[0-9]+\.html|[0-9]+)' __version__ = "0.2" - __description__ = """Pornhost.com Download Hoster""" + __description__ = """Pornhost.com hoster plugin""" __author_name__ = "jeix" __author_mail__ = "jeix@hasnomail.de" diff --git a/pyload/plugins/hoster/PornhubCom.py b/pyload/plugins/hoster/PornhubCom.py index 56f5ede2a..254e94556 100644 --- a/pyload/plugins/hoster/PornhubCom.py +++ b/pyload/plugins/hoster/PornhubCom.py @@ -10,7 +10,7 @@ class PornhubCom(Hoster): __type__ = "hoster" __pattern__ = r'http://[\w\.]*?pornhub\.com/view_video\.php\?viewkey=[\w\d]+' __version__ = "0.5" - __description__ = """Pornhub.com Download Hoster""" + __description__ = """Pornhub.com hoster plugin""" __author_name__ = "jeix" __author_mail__ = "jeix@hasnomail.de" diff --git a/pyload/plugins/hoster/PremiumizeMe.py b/pyload/plugins/hoster/PremiumizeMe.py index 2a5dac0b4..6e4566234 100644 --- a/pyload/plugins/hoster/PremiumizeMe.py +++ b/pyload/plugins/hoster/PremiumizeMe.py @@ -7,7 +7,7 @@ class PremiumizeMe(Hoster): __name__ = "PremiumizeMe" __version__ = "0.12" __type__ = "hoster" - __description__ = """Premiumize.Me hoster plugin""" + __description__ = """Premiumize.me hoster plugin""" # Since we want to allow the user to specify the list of hoster to use we let MultiHoster.coreReady # create the regex patterns for us using getHosters in our PremiumizeMe hook. diff --git a/pyload/plugins/hoster/QuickshareCz.py b/pyload/plugins/hoster/QuickshareCz.py index 14f8a0f53..bbb2eaa1b 100644 --- a/pyload/plugins/hoster/QuickshareCz.py +++ b/pyload/plugins/hoster/QuickshareCz.py @@ -27,7 +27,7 @@ class QuickshareCz(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://.*quickshare.cz/stahnout-soubor/.*" __version__ = "0.54" - __description__ = """Quickshare.cz""" + __description__ = """Quickshare.cz hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/RPNetBiz.py b/pyload/plugins/hoster/RPNetBiz.py index 5462b1e47..4e88a19e9 100644 --- a/pyload/plugins/hoster/RPNetBiz.py +++ b/pyload/plugins/hoster/RPNetBiz.py @@ -8,7 +8,7 @@ class RPNetBiz(Hoster): __name__ = "RPNetBiz" __version__ = "0.1" __type__ = "hoster" - __description__ = """RPNet.Biz hoster plugin""" + __description__ = """RPNet.biz hoster plugin""" __pattern__ = r"https?://.*rpnet\.biz" __author_name__ = "Dman" __author_mail__ = "dmanugm@gmail.com" diff --git a/pyload/plugins/hoster/RapidshareCom.py b/pyload/plugins/hoster/RapidshareCom.py index 05adb9fe2..c0276279e 100644 --- a/pyload/plugins/hoster/RapidshareCom.py +++ b/pyload/plugins/hoster/RapidshareCom.py @@ -54,7 +54,7 @@ class RapidshareCom(Hoster): __type__ = "hoster" __pattern__ = r"https?://[\w\.]*?rapidshare.com/(?:files/(?P<id>\d*?)/(?P<name>[^?]+)|#!download\|(?:\w+)\|(?P<id_new>\d+)\|(?P<name_new>[^|]+))" __version__ = "1.39" - __description__ = """Rapidshare.com Download Hoster""" + __description__ = """Rapidshare.com hoster plugin""" __config__ = [["server", "Cogent;Deutsche Telekom;Level(3);Level(3) #2;GlobalCrossing;Level(3) #3;Teleglobe;GlobalCrossing #2;TeliaSonera #2;Teleglobe #2;TeliaSonera #3;TeliaSonera", "Preferred Server", "None"]] diff --git a/pyload/plugins/hoster/RedtubeCom.py b/pyload/plugins/hoster/RedtubeCom.py index 3c341e997..b5868a6c3 100644 --- a/pyload/plugins/hoster/RedtubeCom.py +++ b/pyload/plugins/hoster/RedtubeCom.py @@ -11,7 +11,7 @@ class RedtubeCom(Hoster): __type__ = "hoster" __pattern__ = r'http://[\w\.]*?redtube\.com/\d+' __version__ = "0.2" - __description__ = """Redtube.com Download Hoster""" + __description__ = """Redtube.com hoster plugin""" __author_name__ = "jeix" __author_mail__ = "jeix@hasnomail.de" diff --git a/pyload/plugins/hoster/RehostTo.py b/pyload/plugins/hoster/RehostTo.py index 595f87e6f..be892572d 100644 --- a/pyload/plugins/hoster/RehostTo.py +++ b/pyload/plugins/hoster/RehostTo.py @@ -10,7 +10,7 @@ class RehostTo(Hoster): __version__ = "0.13" __type__ = "hoster" __pattern__ = r"https?://.*rehost.to\..*" - __description__ = """rehost.com hoster plugin""" + __description__ = """Rehost.com hoster plugin""" __author_name__ = "RaNaN" __author_mail__ = "RaNaN@pyload.org" diff --git a/pyload/plugins/hoster/ReloadCc.py b/pyload/plugins/hoster/ReloadCc.py index cae72bb1c..9c23c8c49 100644 --- a/pyload/plugins/hoster/ReloadCc.py +++ b/pyload/plugins/hoster/ReloadCc.py @@ -9,7 +9,7 @@ class ReloadCc(Hoster): __name__ = "ReloadCc" __version__ = "0.5" __type__ = "hoster" - __description__ = """Reload.Cc hoster plugin""" + __description__ = """Reload.cc hoster plugin""" # Since we want to allow the user to specify the list of hoster to use we let MultiHoster.coreReady # create the regex patterns for us using getHosters in our ReloadCc hook. diff --git a/pyload/plugins/hoster/RgHostNet.py b/pyload/plugins/hoster/RgHostNet.py index 227dbbb2d..9a1eb8349 100644 --- a/pyload/plugins/hoster/RgHostNet.py +++ b/pyload/plugins/hoster/RgHostNet.py @@ -10,7 +10,7 @@ class RgHostNet(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(?:www\.)?rghost\.net/\d+(?:r=\d+)?" __version__ = "0.01" - __description__ = """RgHost.net Download Hoster""" + __description__ = """RgHost.net hoster plugin""" __author_name__ = "z00nx" __author_mail__ = "z00nx0@gmail.com" diff --git a/pyload/plugins/hoster/SendspaceCom.py b/pyload/plugins/hoster/SendspaceCom.py index 22b3a8ebe..4efffb784 100644 --- a/pyload/plugins/hoster/SendspaceCom.py +++ b/pyload/plugins/hoster/SendspaceCom.py @@ -25,7 +25,7 @@ class SendspaceCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(www\.)?sendspace.com/file/.*" __version__ = "0.13" - __description__ = """sendspace.com plugin - free only""" + __description__ = """Sendspace.com hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/Share4webCom.py b/pyload/plugins/hoster/Share4webCom.py index df927f823..5e96866e8 100644 --- a/pyload/plugins/hoster/Share4webCom.py +++ b/pyload/plugins/hoster/Share4webCom.py @@ -9,7 +9,7 @@ class Share4webCom(UnibytesCom): __type__ = "hoster" __pattern__ = r"http://(www\.)?share4web\.com/get/\w+" __version__ = "0.1" - __description__ = """Share4web.com""" + __description__ = """Share4web.com hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/Share76Com.py b/pyload/plugins/hoster/Share76Com.py index 583eddbd0..f65cd0609 100644 --- a/pyload/plugins/hoster/Share76Com.py +++ b/pyload/plugins/hoster/Share76Com.py @@ -8,7 +8,7 @@ class Share76Com(DeadHoster): __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)*?share76.com/\w{12}" __version__ = "0.04" - __description__ = """share76.com hoster plugin""" + __description__ = """Share76.com hoster plugin""" __author_name__ = "me" __author_mail__ = "" diff --git a/pyload/plugins/hoster/ShareRapidCom.py b/pyload/plugins/hoster/ShareRapidCom.py index a48f960cb..b14892a8f 100644 --- a/pyload/plugins/hoster/ShareRapidCom.py +++ b/pyload/plugins/hoster/ShareRapidCom.py @@ -25,7 +25,7 @@ class ShareRapidCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(?:www\.)?((share(-?rapid\.(biz|com|cz|info|eu|net|org|pl|sk)|-(central|credit|free|net)\.cz|-ms\.net)|(s-?rapid|rapids)\.(cz|sk))|(e-stahuj|mediatack|premium-rapidshare|rapidshare-premium|qiuck)\.cz|kadzet\.com|stahuj-zdarma\.eu|strelci\.net|universal-share\.com)/stahuj/(?P<id>\w+)" __version__ = "0.53" - __description__ = """Share-rapid.com plugin - premium only""" + __description__ = """Share-rapid.com hoster plugin""" __author_name__ = ("MikyWoW", "zoidberg", "stickell") __author_mail__ = ("mikywow@seznam.cz", "zoidberg@mujmail.cz", "l.stickell@yahoo.it") diff --git a/pyload/plugins/hoster/ShareonlineBiz.py b/pyload/plugins/hoster/ShareonlineBiz.py index d51935d33..066919fda 100644 --- a/pyload/plugins/hoster/ShareonlineBiz.py +++ b/pyload/plugins/hoster/ShareonlineBiz.py @@ -44,7 +44,7 @@ class ShareonlineBiz(Hoster): __type__ = "hoster" __pattern__ = r"https?://(?:www\.)?(share-online\.biz|egoshare\.com)/(download.php\?id=|dl/)(?P<ID>\w+)" __version__ = "0.38" - __description__ = """Shareonline.biz Download Hoster""" + __description__ = """Shareonline.biz hoster plugin""" __author_name__ = ("spoob", "mkaay", "zoidberg", "Walter Purcaro") __author_mail__ = ("spoob@pyload.org", "mkaay@mkaay.de", "zoidberg@mujmail.cz", "vuolter@gmail.com") diff --git a/pyload/plugins/hoster/ShareplaceCom.py b/pyload/plugins/hoster/ShareplaceCom.py index 38754fc52..2a5742512 100644 --- a/pyload/plugins/hoster/ShareplaceCom.py +++ b/pyload/plugins/hoster/ShareplaceCom.py @@ -11,7 +11,7 @@ class ShareplaceCom(Hoster): __type__ = "hoster" __pattern__ = r"(http://)?(www\.)?shareplace\.(com|org)/\?[a-zA-Z0-9]+" __version__ = "0.11" - __description__ = """Shareplace.com Download Hoster""" + __description__ = """Shareplace.com hoster plugin""" __author_name__ = "ACCakut" __author_mail__ = "" diff --git a/pyload/plugins/hoster/ShragleCom.py b/pyload/plugins/hoster/ShragleCom.py index 2b1a8b80a..d0d33e804 100644 --- a/pyload/plugins/hoster/ShragleCom.py +++ b/pyload/plugins/hoster/ShragleCom.py @@ -9,7 +9,7 @@ class ShragleCom(DeadHoster): __type__ = "hoster" __pattern__ = r"http://(?:www.)?(cloudnator|shragle).com/files/(?P<ID>.*?)/" __version__ = "0.22" - __description__ = """Cloudnator.com (Shragle.com) Download PLugin""" + __description__ = """Cloudnator.com (Shragle.com) hoster plugin""" __author_name__ = ("RaNaN", "zoidberg") __author_mail__ = ("RaNaN@pyload.org", "zoidberg@mujmail.cz") diff --git a/pyload/plugins/hoster/SimplydebridCom.py b/pyload/plugins/hoster/SimplydebridCom.py index 106a25336..0446981f1 100644 --- a/pyload/plugins/hoster/SimplydebridCom.py +++ b/pyload/plugins/hoster/SimplydebridCom.py @@ -12,7 +12,7 @@ class SimplydebridCom(Hoster): __version__ = "0.1" __type__ = "hoster" __pattern__ = r"http://\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/sd.php/*" - __description__ = """simply-debrid.com hoster plugin""" + __description__ = """Simply-debrid.com hoster plugin""" __author_name__ = "Kagenoshin" __author_mail__ = "kagenoshin@gmx.ch" diff --git a/pyload/plugins/hoster/SpeedfileCz.py b/pyload/plugins/hoster/SpeedfileCz.py index ebe399843..e5adc8922 100644 --- a/pyload/plugins/hoster/SpeedfileCz.py +++ b/pyload/plugins/hoster/SpeedfileCz.py @@ -24,7 +24,7 @@ class SpeedfileCz(DeadHoster): __type__ = "hoster" __pattern__ = r"http://speedfile.cz/.*" __version__ = "0.32" - __description__ = """speedfile.cz""" + __description__ = """Speedfile.cz hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/StreamCz.py b/pyload/plugins/hoster/StreamCz.py index b25943218..79d9740ef 100644 --- a/pyload/plugins/hoster/StreamCz.py +++ b/pyload/plugins/hoster/StreamCz.py @@ -40,7 +40,7 @@ class StreamCz(Hoster): __type__ = "hoster" __pattern__ = r"http://www.stream.cz/[^/]+/\d+.*" __version__ = "0.1" - __description__ = """stream.cz""" + __description__ = """Stream.cz hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/TurbouploadCom.py b/pyload/plugins/hoster/TurbouploadCom.py index 332333ddb..5a5947a64 100644 --- a/pyload/plugins/hoster/TurbouploadCom.py +++ b/pyload/plugins/hoster/TurbouploadCom.py @@ -24,7 +24,7 @@ class TurbouploadCom(DeadHoster): __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)?turboupload.com/(\w+).*" __version__ = "0.03" - __description__ = """turboupload.com""" + __description__ = """Turboupload.com hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/TwoSharedCom.py b/pyload/plugins/hoster/TwoSharedCom.py index a8528cf08..ecfcdc187 100644 --- a/pyload/plugins/hoster/TwoSharedCom.py +++ b/pyload/plugins/hoster/TwoSharedCom.py @@ -11,7 +11,7 @@ class TwoSharedCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://[\w\.]*?2shared.com/(account/)?(download|get|file|document|photo|video|audio)/.*" __version__ = "0.11" - __description__ = """2Shared Download Hoster""" + __description__ = """2Shared.com hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/UlozTo.py b/pyload/plugins/hoster/UlozTo.py index 3fe7e2dc6..4e2db527a 100644 --- a/pyload/plugins/hoster/UlozTo.py +++ b/pyload/plugins/hoster/UlozTo.py @@ -30,7 +30,7 @@ class UlozTo(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(\w*\.)?(uloz\.to|ulozto\.(cz|sk|net)|bagruj.cz|zachowajto.pl)/(?:live/)?(?P<id>\w+/[^/?]*)" __version__ = "0.96" - __description__ = """uloz.to""" + __description__ = """Uloz.to hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/UloziskoSk.py b/pyload/plugins/hoster/UloziskoSk.py index 1533abace..ff898dba1 100644 --- a/pyload/plugins/hoster/UloziskoSk.py +++ b/pyload/plugins/hoster/UloziskoSk.py @@ -25,7 +25,7 @@ class UloziskoSk(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(\w*\.)?ulozisko.sk/.*" __version__ = "0.23" - __description__ = """Ulozisko.sk""" + __description__ = """Ulozisko.sk hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/UnibytesCom.py b/pyload/plugins/hoster/UnibytesCom.py index 8153b3e94..eb1132e99 100644 --- a/pyload/plugins/hoster/UnibytesCom.py +++ b/pyload/plugins/hoster/UnibytesCom.py @@ -26,7 +26,7 @@ class UnibytesCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(www\.)?unibytes\.com/[a-zA-Z0-9-._ ]{11}B" __version__ = "0.1" - __description__ = """UniBytes.com""" + __description__ = """UniBytes.com hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/UploadStationCom.py b/pyload/plugins/hoster/UploadStationCom.py index 3583af65d..aed3a7a11 100644 --- a/pyload/plugins/hoster/UploadStationCom.py +++ b/pyload/plugins/hoster/UploadStationCom.py @@ -8,7 +8,7 @@ class UploadStationCom(DeadHoster): __type__ = "hoster" __pattern__ = r"http://(?:www\.)?uploadstation\.com/file/(?P<id>[A-Za-z0-9]+)" __version__ = "0.52" - __description__ = """UploadStation.Com File Download Hoster""" + __description__ = """UploadStation.com hoster plugin""" __author_name__ = ("fragonib", "zoidberg") __author_mail__ = ("fragonib[AT]yahoo[DOT]es", "zoidberg@mujmail.cz") diff --git a/pyload/plugins/hoster/UploadedTo.py b/pyload/plugins/hoster/UploadedTo.py index 88a8edebb..56d8b1628 100644 --- a/pyload/plugins/hoster/UploadedTo.py +++ b/pyload/plugins/hoster/UploadedTo.py @@ -90,7 +90,7 @@ class UploadedTo(Hoster): __type__ = "hoster" __pattern__ = r"https?://[\w\.-]*?(uploaded\.(to|net)|ul\.to)(/file/|/?\?id=|.*?&id=|/)(?P<ID>\w+)" __version__ = "0.72" - __description__ = """Uploaded.net Download Hoster""" + __description__ = """Uploaded.net hoster plugin""" __author_name__ = ("spoob", "mkaay", "zoidberg", "netpok", "stickell") __author_mail__ = ("spoob@pyload.org", "mkaay@mkaay.de", "zoidberg@mujmail.cz", "netpok@gmail.com", "l.stickell@yahoo.it") diff --git a/pyload/plugins/hoster/UploadingCom.py b/pyload/plugins/hoster/UploadingCom.py index c8ca2169c..a5c6946ff 100644 --- a/pyload/plugins/hoster/UploadingCom.py +++ b/pyload/plugins/hoster/UploadingCom.py @@ -29,7 +29,7 @@ class UploadingCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(?:www\.)?uploading\.com/files/(?:get/)?(?P<ID>[\w\d]+)" __version__ = "0.34" - __description__ = """Uploading.Com File Download Hoster""" + __description__ = """Uploading.com hoster plugin""" __author_name__ = ("jeix", "mkaay", "zoidberg") __author_mail__ = ("jeix@hasnomail.de", "mkaay@mkaay.de", "zoidberg@mujmail.cz") diff --git a/pyload/plugins/hoster/VeehdCom.py b/pyload/plugins/hoster/VeehdCom.py index 6e317996e..8a4433fa4 100644 --- a/pyload/plugins/hoster/VeehdCom.py +++ b/pyload/plugins/hoster/VeehdCom.py @@ -13,7 +13,7 @@ class VeehdCom(Hoster): ('replacement_char', 'str', "Filename replacement character", '_'), ] __version__ = '0.23' - __description__ = """Veehd.com Download Hoster""" + __description__ = """Veehd.com hoster plugin""" __author_name__ = "cat" __author_mail__ = "cat@pyload" diff --git a/pyload/plugins/hoster/WarserverCz.py b/pyload/plugins/hoster/WarserverCz.py index b0235f4ad..03ec05e63 100644 --- a/pyload/plugins/hoster/WarserverCz.py +++ b/pyload/plugins/hoster/WarserverCz.py @@ -29,7 +29,7 @@ class WarserverCz(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)?warserver.cz/stahnout/(?P<ID>\d+)/.+" __version__ = "0.12" - __description__ = """Warserver.cz""" + __description__ = """Warserver.cz hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/WrzucTo.py b/pyload/plugins/hoster/WrzucTo.py index 878a47da4..e489f5064 100644 --- a/pyload/plugins/hoster/WrzucTo.py +++ b/pyload/plugins/hoster/WrzucTo.py @@ -27,7 +27,7 @@ class WrzucTo(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(?:\w+\.)*?wrzuc\.to/([a-zA-Z0-9]+(\.wt|\.html)|(\w+/?linki/[a-zA-Z0-9]+))" __version__ = "0.01" - __description__ = """Wrzuc.to plugin - free only""" + __description__ = """Wrzuc.to hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/WuploadCom.py b/pyload/plugins/hoster/WuploadCom.py index e4c6737d6..34f7e1fcd 100644 --- a/pyload/plugins/hoster/WuploadCom.py +++ b/pyload/plugins/hoster/WuploadCom.py @@ -9,7 +9,7 @@ class WuploadCom(DeadHoster): __type__ = "hoster" __pattern__ = r"http://[\w\.]*?wupload\..*?/file/(([a-z][0-9]+/)?[0-9]+)(/.*)?" __version__ = "0.23" - __description__ = """Wupload com""" + __description__ = """Wupload.com hoster plugin""" __author_name__ = ("jeix", "Paul King") __author_mail__ = ("jeix@hasnomail.de", "") diff --git a/pyload/plugins/hoster/X7To.py b/pyload/plugins/hoster/X7To.py index 7c59ac94d..cd9b8aa76 100644 --- a/pyload/plugins/hoster/X7To.py +++ b/pyload/plugins/hoster/X7To.py @@ -8,7 +8,7 @@ class X7To(DeadHoster): __type__ = "hoster" __pattern__ = r"http://(?:www.)?x7.to/" __version__ = "0.41" - __description__ = """X7.To File Download Hoster""" + __description__ = """X7.to hoster plugin""" __author_name__ = "ernieb" __author_mail__ = "ernieb" diff --git a/pyload/plugins/hoster/XFileSharingPro.py b/pyload/plugins/hoster/XFileSharingPro.py index 321c06bb7..20ba1b241 100644 --- a/pyload/plugins/hoster/XFileSharingPro.py +++ b/pyload/plugins/hoster/XFileSharingPro.py @@ -37,7 +37,7 @@ class XFileSharingPro(SimpleHoster): __type__ = "hoster" __pattern__ = r"^unmatchable$" __version__ = "0.29" - __description__ = """XFileSharingPro common hoster base""" + __description__ = """XFileSharingPro base hoster plugin""" __author_name__ = ("zoidberg", "stickell") __author_mail__ = ("zoidberg@mujmail.cz", "l.stickell@yahoo.it") diff --git a/pyload/plugins/hoster/XHamsterCom.py b/pyload/plugins/hoster/XHamsterCom.py index d2c55e8bc..ce1c5231e 100644 --- a/pyload/plugins/hoster/XHamsterCom.py +++ b/pyload/plugins/hoster/XHamsterCom.py @@ -22,7 +22,7 @@ class XHamsterCom(Hoster): __pattern__ = r"http://(www\.)?xhamster\.com/movies/.+" __version__ = "0.12" __config__ = [("type", ".mp4;.flv", "Preferred type", ".mp4")] - __description__ = """XHamster.com Video Download Hoster""" + __description__ = """XHamster.com hoster plugin""" def process(self, pyfile): self.pyfile = pyfile diff --git a/pyload/plugins/hoster/Xdcc.py b/pyload/plugins/hoster/Xdcc.py index ee445069c..90de28013 100644 --- a/pyload/plugins/hoster/Xdcc.py +++ b/pyload/plugins/hoster/Xdcc.py @@ -41,7 +41,7 @@ class Xdcc(Hoster): ("ident", "str", "Ident", "pyloadident"), ("realname", "str", "Realname", "pyloadreal") ] - __description__ = """A Plugin that allows you to download from an IRC XDCC bot""" + __description__ = """Download from IRC XDCC bot""" __author_name__ = "jeix" __author_mail__ = "jeix@hasnomail.com" diff --git a/pyload/plugins/hoster/YibaishiwuCom.py b/pyload/plugins/hoster/YibaishiwuCom.py index 3b6f8e6bc..d4250ec5c 100644 --- a/pyload/plugins/hoster/YibaishiwuCom.py +++ b/pyload/plugins/hoster/YibaishiwuCom.py @@ -26,7 +26,7 @@ class YibaishiwuCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"http://(?:www\.)?(?:u\.)?115.com/file/(?P<ID>\w+)" __version__ = "0.12" - __description__ = """115.com""" + __description__ = """115.com hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/YoupornCom.py b/pyload/plugins/hoster/YoupornCom.py index 9f45aecec..ce00d0476 100644 --- a/pyload/plugins/hoster/YoupornCom.py +++ b/pyload/plugins/hoster/YoupornCom.py @@ -10,7 +10,7 @@ class YoupornCom(Hoster): __type__ = "hoster" __pattern__ = r"http://(www\.)?youporn\.com/watch/.+" __version__ = "0.2" - __description__ = """Youporn.com Video Download Hoster""" + __description__ = """Youporn.com hoster plugin""" __author_name__ = "willnix" __author_mail__ = "willnix@pyload.org" diff --git a/pyload/plugins/hoster/YourfilesTo.py b/pyload/plugins/hoster/YourfilesTo.py index 0fd094f61..2ac9681c2 100644 --- a/pyload/plugins/hoster/YourfilesTo.py +++ b/pyload/plugins/hoster/YourfilesTo.py @@ -11,7 +11,7 @@ class YourfilesTo(Hoster): __type__ = "hoster" __pattern__ = r"(http://)?(www\.)?yourfiles\.(to|biz)/\?d=[a-zA-Z0-9]+" __version__ = "0.21" - __description__ = """Youfiles.to Download Hoster""" + __description__ = """Youfiles.to hoster plugin""" __author_name__ = ("jeix", "skydancer") __author_mail__ = ("jeix@hasnomail.de", "skydancer@hasnomail.de") diff --git a/pyload/plugins/hoster/YoutubeCom.py b/pyload/plugins/hoster/YoutubeCom.py index 20c8c8227..1dbc331aa 100644 --- a/pyload/plugins/hoster/YoutubeCom.py +++ b/pyload/plugins/hoster/YoutubeCom.py @@ -44,7 +44,7 @@ class YoutubeCom(Hoster): (".webm", "bool", "Allow .webm", False), (".3gp", "bool", "Allow .3gp", False), ("3d", "bool", "Prefer 3D", False)] - __description__ = """Youtube.com Video Download Hoster""" + __description__ = """Youtube.com hoster plugin""" __author_name__ = ("spoob", "zoidberg") __author_mail__ = ("spoob@pyload.org", "zoidberg@mujmail.cz") diff --git a/pyload/plugins/hoster/ZeveraCom.py b/pyload/plugins/hoster/ZeveraCom.py index 200f15fe7..9546f09d3 100644 --- a/pyload/plugins/hoster/ZeveraCom.py +++ b/pyload/plugins/hoster/ZeveraCom.py @@ -9,7 +9,7 @@ class ZeveraCom(Hoster): __version__ = "0.21" __type__ = "hoster" __pattern__ = r"http://zevera.com/.*" - __description__ = """zevera.com hoster plugin""" + __description__ = """Zevera.com hoster plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" diff --git a/pyload/plugins/hoster/ZippyshareCom.py b/pyload/plugins/hoster/ZippyshareCom.py index 5983627d5..ea861025d 100644 --- a/pyload/plugins/hoster/ZippyshareCom.py +++ b/pyload/plugins/hoster/ZippyshareCom.py @@ -18,7 +18,7 @@ class ZippyshareCom(SimpleHoster): __type__ = "hoster" __pattern__ = r"(?P<HOST>http://www\d{0,2}\.zippyshare.com)/v(?:/|iew.jsp.*key=)(?P<KEY>\d+)" __version__ = "0.46" - __description__ = """Zippyshare.com Download Hoster""" + __description__ = """Zippyshare.com hoster plugin""" __author_name__ = ("spoob", "zoidberg", "stickell") __author_mail__ = ("spoob@pyload.org", "zoidberg@mujmail.cz", "l.stickell@yahoo.it") __config__ = [("swfdump_path", "string", "Path to swfdump", "")] diff --git a/pyload/plugins/internal/SimpleCrypter.py b/pyload/plugins/internal/SimpleCrypter.py index 9eb80850d..e93f5346d 100644 --- a/pyload/plugins/internal/SimpleCrypter.py +++ b/pyload/plugins/internal/SimpleCrypter.py @@ -29,7 +29,7 @@ class SimpleCrypter(Crypter): __version__ = "0.07" __pattern__ = None __type__ = "crypter" - __description__ = """Base crypter plugin""" + __description__ = """Simple decrypter plugin""" __author_name__ = ("stickell", "zoidberg") __author_mail__ = ("l.stickell@yahoo.it", "zoidberg@mujmail.cz") """ diff --git a/pyload/plugins/internal/SimpleHoster.py b/pyload/plugins/internal/SimpleHoster.py index 46d0a9517..f10433e78 100644 --- a/pyload/plugins/internal/SimpleHoster.py +++ b/pyload/plugins/internal/SimpleHoster.py @@ -166,7 +166,7 @@ class SimpleHoster(Hoster): __version__ = "0.33" __pattern__ = None __type__ = "hoster" - __description__ = """Base hoster plugin""" + __description__ = """Simple hoster plugin""" __author_name__ = ("zoidberg", "stickell") __author_mail__ = ("zoidberg@mujmail.cz", "l.stickell@yahoo.it") """ diff --git a/pyload/plugins/internal/XFSPAccount.py b/pyload/plugins/internal/XFSPAccount.py index bc6061e6a..787e7fa9e 100644 --- a/pyload/plugins/internal/XFSPAccount.py +++ b/pyload/plugins/internal/XFSPAccount.py @@ -28,7 +28,7 @@ class XFSPAccount(Account): __name__ = "XFSPAccount" __version__ = "0.05" __type__ = "account" - __description__ = """XFileSharingPro account base""" + __description__ = """XFileSharingPro base account plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" |