mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-04 23:48:40 +00:00
fix the package name in common
change the script name in webui add copyright headers to the js file and change indentation
This commit is contained in:
parent
365d21ed04
commit
e1f68fb8fa
3 changed files with 126 additions and 103 deletions
|
@ -37,4 +37,4 @@ import pkg_resources
|
||||||
import os.path
|
import os.path
|
||||||
|
|
||||||
def get_resource(filename):
|
def get_resource(filename):
|
||||||
return pkg_resources.resource_filename("example", os.path.join("data", filename))
|
return pkg_resources.resource_filename("execute", os.path.join("data", filename))
|
||||||
|
|
|
@ -1,3 +1,36 @@
|
||||||
|
/*
|
||||||
|
Script: execute.js
|
||||||
|
The client-side javascript code for the Execute plugin.
|
||||||
|
|
||||||
|
Copyright:
|
||||||
|
(C) Damien Churchill 2009 <damoxc@gmail.com>
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 3, or (at your option)
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, write to:
|
||||||
|
The Free Software Foundation, Inc.,
|
||||||
|
51 Franklin Street, Fifth Floor
|
||||||
|
Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
|
In addition, as a special exception, the copyright holders give
|
||||||
|
permission to link the code of portions of this program with the OpenSSL
|
||||||
|
library.
|
||||||
|
You must obey the GNU General Public License in all respects for all of
|
||||||
|
the code used other than OpenSSL. If you modify file(s) with this
|
||||||
|
exception, you may extend this exception to your version of the file(s),
|
||||||
|
but you are not obligated to do so. If you do not wish to do so, delete
|
||||||
|
this exception statement from your version. If you delete this exception
|
||||||
|
statement from all source files in the program, then also delete it here.
|
||||||
|
*/
|
||||||
|
|
||||||
(function() {
|
(function() {
|
||||||
EVENT_MAP = {
|
EVENT_MAP = {
|
||||||
'complete': _('Torrent Complete'),
|
'complete': _('Torrent Complete'),
|
||||||
|
|
|
@ -40,18 +40,8 @@ from deluge.ui.client import client
|
||||||
from deluge import component
|
from deluge import component
|
||||||
from deluge.plugins.pluginbase import WebPluginBase
|
from deluge.plugins.pluginbase import WebPluginBase
|
||||||
|
|
||||||
|
from common import get_resource
|
||||||
|
|
||||||
class WebUI(WebPluginBase):
|
class WebUI(WebPluginBase):
|
||||||
def enable(self):
|
|
||||||
log.debug("Execute Web plugin enabled!")
|
|
||||||
deluge_web = component.get("DelugeWeb").top_level
|
|
||||||
deluge_web.scripts.append("/js/deluge-execute.js")
|
|
||||||
deluge_web.debug_scripts.append("/js/deluge-execute.js")
|
|
||||||
|
|
||||||
javascript = component.get("Javascript").directories
|
scripts = [get_resource("execute.js")]
|
||||||
javascript.append(pkg_resources.resource_filename("execute", "data"))
|
|
||||||
|
|
||||||
def disable(self):
|
|
||||||
log.debug("Execute Web plugin disabled!")
|
|
||||||
deluge_web = component.get("DelugeWeb").top_level
|
|
||||||
deluge_web.scripts.remove("/js/deluge-execute.js")
|
|
||||||
deluge_web.debug_scripts.remove("/js/deluge-execute.js")
|
|
Loading…
Add table
Add a link
Reference in a new issue