diff options
| author | 2012-09-24 23:54:50 +0200 | |
|---|---|---|
| committer | 2012-09-24 23:54:50 +0200 | |
| commit | b65c4091d5c5e793d8a9df17a46657d45c3a1292 (patch) | |
| tree | 40a420e5213d28634b75408059a2dc3687e461d1 /module/plugins/accounts | |
| parent | update hellshare/hellspy patterns (diff) | |
| download | pyload-b65c4091d5c5e793d8a9df17a46657d45c3a1292.tar.xz | |
multihosters - closed #618, store http/ftp accounts, add uptobox.com premium
Diffstat (limited to 'module/plugins/accounts')
| -rw-r--r-- | module/plugins/accounts/Ftp.py | 13 | ||||
| -rw-r--r-- | module/plugins/accounts/Http.py | 13 | ||||
| -rw-r--r-- | module/plugins/accounts/UptoboxCom.py | 12 | 
3 files changed, 38 insertions, 0 deletions
diff --git a/module/plugins/accounts/Ftp.py b/module/plugins/accounts/Ftp.py new file mode 100644 index 000000000..9c1081662 --- /dev/null +++ b/module/plugins/accounts/Ftp.py @@ -0,0 +1,13 @@ +# -*- coding: utf-8 -*- + +from module.plugins.Account import Account + +class Ftp(Account): +    __name__ = "Ftp" +    __version__ = "0.01" +    __type__ = "account" +    __description__ = """Ftp dummy account plugin""" +    __author_name__ = ("zoidberg") +    __author_mail__ = ("zoidberg@mujmail.cz") +     +    login_timeout = info_threshold = 1000000
\ No newline at end of file diff --git a/module/plugins/accounts/Http.py b/module/plugins/accounts/Http.py new file mode 100644 index 000000000..805d19900 --- /dev/null +++ b/module/plugins/accounts/Http.py @@ -0,0 +1,13 @@ +# -*- coding: utf-8 -*- + +from module.plugins.Account import Account + +class Http(Account): +    __name__ = "Http" +    __version__ = "0.01" +    __type__ = "account" +    __description__ = """Http dummy account plugin""" +    __author_name__ = ("zoidberg") +    __author_mail__ = ("zoidberg@mujmail.cz") +     +    login_timeout = info_threshold = 1000000
\ No newline at end of file diff --git a/module/plugins/accounts/UptoboxCom.py b/module/plugins/accounts/UptoboxCom.py new file mode 100644 index 000000000..b07991817 --- /dev/null +++ b/module/plugins/accounts/UptoboxCom.py @@ -0,0 +1,12 @@ +# -*- coding: utf-8 -*- +from module.plugins.internal.XFSPAccount import XFSPAccount + +class UptoboxCom(XFSPAccount): +    __name__ = "UptoboxCom" +    __version__ = "0.01" +    __type__ = "account" +    __description__ = """DDLStorage.com account plugin""" +    __author_name__ = ("zoidberg") +    __author_mail__ = ("zoidberg@mujmail.cz") +     +    MAIN_PAGE = "http://uptobox.com/"
\ No newline at end of file  | 
