From 2e2851dc13d73352530dd4495c7e05603b2e520d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 23:38:38 +0200 Subject: Adding upstream version 2.1.2~dev0+20240219. Signed-off-by: Daniel Baumann --- deluge/plugins/AutoAdd/deluge_autoadd/webui.py | 35 ++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 deluge/plugins/AutoAdd/deluge_autoadd/webui.py (limited to 'deluge/plugins/AutoAdd/deluge_autoadd/webui.py') diff --git a/deluge/plugins/AutoAdd/deluge_autoadd/webui.py b/deluge/plugins/AutoAdd/deluge_autoadd/webui.py new file mode 100644 index 0000000..d328432 --- /dev/null +++ b/deluge/plugins/AutoAdd/deluge_autoadd/webui.py @@ -0,0 +1,35 @@ +# +# Copyright (C) 2009 GazpachoKing +# +# Basic plugin template created by: +# Copyright (C) 2008 Martijn Voncken +# Copyright (C) 2007-2009 Andrew Resch +# Copyright (C) 2009 Damien Churchill +# +# This file is part of Deluge and is licensed under GNU General Public License 3.0, or later, with +# the additional special exception to link portions of this program with the OpenSSL library. +# See LICENSE for more details. +# + +import logging + +from deluge.plugins.pluginbase import WebPluginBase + +from .common import get_resource + +log = logging.getLogger(__name__) + + +class WebUI(WebPluginBase): + scripts = [ + get_resource('autoadd.js'), + get_resource('autoadd_options.js'), + get_resource('main_tab.js', True), + get_resource('options_tab.js', True), + ] + + def enable(self): + pass + + def disable(self): + pass -- cgit v1.2.3