diff options
Diffstat (limited to 'pyload')
-rw-r--r-- | pyload/plugin/Extractor.py | 4 | ||||
-rw-r--r-- | pyload/webui/app/cnl.py | 2 | ||||
-rw-r--r-- | pyload/webui/themes/Dark/tml/base.html | 4 | ||||
-rw-r--r-- | pyload/webui/themes/Dark/tml/logs.html | 2 | ||||
-rw-r--r-- | pyload/webui/themes/Dark/tml/pathchooser.html | 2 | ||||
-rw-r--r-- | pyload/webui/themes/Default/tml/base.html | 4 | ||||
-rw-r--r-- | pyload/webui/themes/Default/tml/logs.html | 2 | ||||
-rw-r--r-- | pyload/webui/themes/Default/tml/pathchooser.html | 2 | ||||
-rw-r--r-- | pyload/webui/themes/Flat/tml/base.html | 4 | ||||
-rw-r--r-- | pyload/webui/themes/Flat/tml/logs.html | 2 | ||||
-rw-r--r-- | pyload/webui/themes/Flat/tml/pathchooser.html | 2 | ||||
-rw-r--r-- | pyload/webui/themes/Next/tml/base.html | 2 |
12 files changed, 16 insertions, 16 deletions
diff --git a/pyload/plugin/Extractor.py b/pyload/plugin/Extractor.py index b1188fe13..01429570a 100644 --- a/pyload/plugin/Extractor.py +++ b/pyload/plugin/Extractor.py @@ -101,11 +101,11 @@ class Extractor(Base): :raises ArchiveError """ raise NotImplementedError - + def test(self): """Testing with Extractors buildt-in method Raises error if password is needed, integrity is questionable or else. - + :raises PasswordError :raises CRCError :raises ArchiveError diff --git a/pyload/webui/app/cnl.py b/pyload/webui/app/cnl.py index e00e47f66..c38e5fb68 100644 --- a/pyload/webui/app/cnl.py +++ b/pyload/webui/app/cnl.py @@ -18,7 +18,7 @@ except Exception: def local_check(function): def _view(*args, **kwargs): if request.environ.get("REMOTE_ADDR", "0") in ("127.0.0.1", "localhost") \ - or request.environ.get("HTTP_HOST", "0") in ("127.0.0.1:9666", "localhost:9666"): + or request.environ.get("HTTP_HOST", "0") in ("127.0.0.1:9666", "localhost:9666"): return function(*args, **kwargs) else: return HTTPError(403, "Forbidden") diff --git a/pyload/webui/themes/Dark/tml/base.html b/pyload/webui/themes/Dark/tml/base.html index c17e85a4a..cc2c93db9 100644 --- a/pyload/webui/themes/Dark/tml/base.html +++ b/pyload/webui/themes/Dark/tml/base.html @@ -5,8 +5,8 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> -<link rel="stylesheet" type="text/css" href="/css/base.min.css"/> -<link rel="stylesheet" type="text/css" href="/css/window.min.css"/> +<link rel="stylesheet" type="text/css" href="/css/base.css"/> +<link rel="stylesheet" type="text/css" href="/css/window.css"/> <link rel="stylesheet" type="text/css" href="/css/MooDialog.css"/> <script type="text/javascript" src="/lib/MooTools/MooTools-Core.js"></script> diff --git a/pyload/webui/themes/Dark/tml/logs.html b/pyload/webui/themes/Dark/tml/logs.html index 3b5d9d04a..2ea2f3e1f 100644 --- a/pyload/webui/themes/Dark/tml/logs.html +++ b/pyload/webui/themes/Dark/tml/logs.html @@ -3,7 +3,7 @@ {% block title %}{{_("Logs")}} - {{super()}} {% endblock %} {% block subtitle %}{{_("Logs")}}{% endblock %} {% block head %} -<link rel="stylesheet" type="text/css" href="/css/log.min.css"/> +<link rel="stylesheet" type="text/css" href="/css/log.css"/> {% endblock %} {% block content %} diff --git a/pyload/webui/themes/Dark/tml/pathchooser.html b/pyload/webui/themes/Dark/tml/pathchooser.html index 085da56fd..787292737 100644 --- a/pyload/webui/themes/Dark/tml/pathchooser.html +++ b/pyload/webui/themes/Dark/tml/pathchooser.html @@ -25,7 +25,7 @@ } </script> - <link rel="stylesheet" type="text/css" href="/css/pathchooser.min.css"/> + <link rel="stylesheet" type="text/css" href="/css/pathchooser.css"/> </head> <body{% if type == 'file' %}{% if not oldfile %} onload="setInvalid();"{% endif %}{% endif %}> <center> diff --git a/pyload/webui/themes/Default/tml/base.html b/pyload/webui/themes/Default/tml/base.html index 1adf16831..116fb9b51 100644 --- a/pyload/webui/themes/Default/tml/base.html +++ b/pyload/webui/themes/Default/tml/base.html @@ -5,8 +5,8 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> -<link rel="stylesheet" type="text/css" href="/css/base.min.css"/> -<link rel="stylesheet" type="text/css" href="/css/window.min.css"/> +<link rel="stylesheet" type="text/css" href="/css/base.css"/> +<link rel="stylesheet" type="text/css" href="/css/window.css"/> <link rel="stylesheet" type="text/css" href="/lib/MooTools/MooDialog/css/MooDialog.css"/> <script type="text/javascript" src="/lib/MooTools/MooTools-Core.js"></script> diff --git a/pyload/webui/themes/Default/tml/logs.html b/pyload/webui/themes/Default/tml/logs.html index 7d91dc269..429306aae 100644 --- a/pyload/webui/themes/Default/tml/logs.html +++ b/pyload/webui/themes/Default/tml/logs.html @@ -3,7 +3,7 @@ {% block title %}{{_("Logs")}} - {{super()}} {% endblock %} {% block subtitle %}{{_("Logs")}}{% endblock %} {% block head %} -<link rel="stylesheet" type="text/css" href="/css/log.min.css"/> +<link rel="stylesheet" type="text/css" href="/css/log.css"/> {% endblock %} {% block content %} diff --git a/pyload/webui/themes/Default/tml/pathchooser.html b/pyload/webui/themes/Default/tml/pathchooser.html index 91c957d6e..6e58ab536 100644 --- a/pyload/webui/themes/Default/tml/pathchooser.html +++ b/pyload/webui/themes/Default/tml/pathchooser.html @@ -25,7 +25,7 @@ } </script> - <link rel="stylesheet" type="text/css" href="/css/pathchooser.min.css"/> + <link rel="stylesheet" type="text/css" href="/css/pathchooser.css"/> </head> <body{% if type == 'file' %}{% if not oldfile %} onload="setInvalid();"{% endif %}{% endif %}> <center> diff --git a/pyload/webui/themes/Flat/tml/base.html b/pyload/webui/themes/Flat/tml/base.html index 114fbf73d..06061e705 100644 --- a/pyload/webui/themes/Flat/tml/base.html +++ b/pyload/webui/themes/Flat/tml/base.html @@ -5,8 +5,8 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> -<link rel="stylesheet" type="text/css" href="/css/base.min.css"/> -<link rel="stylesheet" type="text/css" href="/css/window.min.css"/> +<link rel="stylesheet" type="text/css" href="/css/base.css"/> +<link rel="stylesheet" type="text/css" href="/css/window.css"/> <link rel="stylesheet" type="text/css" href="/css/MooDialog.css"/> <script type="text/javascript" src="/lib/MooTools/MooTools-Core.js"></script> diff --git a/pyload/webui/themes/Flat/tml/logs.html b/pyload/webui/themes/Flat/tml/logs.html index 3b5d9d04a..2ea2f3e1f 100644 --- a/pyload/webui/themes/Flat/tml/logs.html +++ b/pyload/webui/themes/Flat/tml/logs.html @@ -3,7 +3,7 @@ {% block title %}{{_("Logs")}} - {{super()}} {% endblock %} {% block subtitle %}{{_("Logs")}}{% endblock %} {% block head %} -<link rel="stylesheet" type="text/css" href="/css/log.min.css"/> +<link rel="stylesheet" type="text/css" href="/css/log.css"/> {% endblock %} {% block content %} diff --git a/pyload/webui/themes/Flat/tml/pathchooser.html b/pyload/webui/themes/Flat/tml/pathchooser.html index 085da56fd..787292737 100644 --- a/pyload/webui/themes/Flat/tml/pathchooser.html +++ b/pyload/webui/themes/Flat/tml/pathchooser.html @@ -25,7 +25,7 @@ } </script> - <link rel="stylesheet" type="text/css" href="/css/pathchooser.min.css"/> + <link rel="stylesheet" type="text/css" href="/css/pathchooser.css"/> </head> <body{% if type == 'file' %}{% if not oldfile %} onload="setInvalid();"{% endif %}{% endif %}> <center> diff --git a/pyload/webui/themes/Next/tml/base.html b/pyload/webui/themes/Next/tml/base.html index b8365361e..750c855be 100644 --- a/pyload/webui/themes/Next/tml/base.html +++ b/pyload/webui/themes/Next/tml/base.html @@ -8,7 +8,7 @@ <link rel="stylesheet" type="text/css" href="/css/window.css"/> <link rel="stylesheet" type="text/css" href="/css/MooDialog.css"/> -<link rel="stylesheet" href="/lib/Bootstrap/css/bootstrap.min.css"> +<link rel="stylesheet" href="/lib/Bootstrap/css/bootstrap.css"> <script type="text/javascript" src="/lib/MooTools/MooTools-Core.js"></script> <script type="text/javascript" src="/lib/MooTools/MooTools-More.js"></script> |