mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-06 08:28:39 +00:00
Fix license headers
Remove ui/webui/ssl from package_data since it doesn't exist
This commit is contained in:
parent
865921a677
commit
089f0afa32
15 changed files with 474 additions and 284 deletions
|
@ -1,6 +1,22 @@
|
||||||
/*
|
/*
|
||||||
# Copyright (C) 2008 Martijn Voncken <mvoncken@gmail.com>
|
# Copyright (C) Martijn Voncken 2008 <mvoncken@gmail.com>
|
||||||
# License : GPL v3.
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@ -77,4 +93,3 @@ Plugins.Label = {
|
||||||
window.addEvent('domready', function(e) {
|
window.addEvent('domready', function(e) {
|
||||||
Plugins.Label.initialize();
|
Plugins.Label.initialize();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,22 @@
|
||||||
/*
|
/*
|
||||||
(c) Martijn Voncken mvoncken@gmail.com
|
# Copyright (C) Martijn Voncken 2008 <mvoncken@gmail.com>
|
||||||
License: GPL v3
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@ -57,6 +73,3 @@ var InputSensitivitySetter = new Class({
|
||||||
},this);
|
},this);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
quick and dirty auto-refresh timer.
|
quick and dirty auto-refresh timer.
|
||||||
Our users have waited too long for a new auto-refresh.
|
Our users have waited too long for a new auto-refresh.
|
||||||
I need to get things done (even if it's ot pretty). ;with the least dependencies for a backport to 1.05
|
I need to get things done (even if it's not pretty). ;with the least dependencies for a backport to 1.05
|
||||||
*/
|
*/
|
||||||
var seconds=0;
|
var seconds=0;
|
||||||
var refresh_secs = 10;
|
var refresh_secs = 10;
|
||||||
|
|
|
@ -2,8 +2,25 @@
|
||||||
Script: Rpc.js
|
Script: Rpc.js
|
||||||
A JSON-RPC proxy built ontop of mootools.
|
A JSON-RPC proxy built ontop of mootools.
|
||||||
|
|
||||||
Copyright:
|
*
|
||||||
Damien Churchill (c) 2008 <damoxc@gmail.com>
|
* Copyright (C) Damien Churchill 2008 <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.
|
||||||
|
*
|
||||||
|
|
||||||
Class: JSON.RPC
|
Class: JSON.RPC
|
||||||
Class to create a proxy to a json-rpc interface on a server.
|
Class to create a proxy to a json-rpc interface on a server.
|
||||||
|
|
|
@ -2,11 +2,25 @@
|
||||||
Script: deluge-add.js
|
Script: deluge-add.js
|
||||||
Contains the add torrent window and the torrent creator window.
|
Contains the add torrent window and the torrent creator window.
|
||||||
|
|
||||||
License:
|
*
|
||||||
General Public License v3
|
* Copyright (C) Damien Churchill 2008 <damoxc@gmail.com>
|
||||||
|
*
|
||||||
Copyright:
|
* This program is free software; you can redistribute it and/or modify
|
||||||
Damien Churchill (c) 2008 <damoxc@gmail.com>
|
* 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.
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Deluge.Widgets.AddWindow = new Class({
|
Deluge.Widgets.AddWindow = new Class({
|
||||||
|
|
|
@ -2,11 +2,25 @@
|
||||||
Script: deluge-bars.js
|
Script: deluge-bars.js
|
||||||
Contains the various bars (Sidebar, Toolbar, Statusbar) used within Deluge.
|
Contains the various bars (Sidebar, Toolbar, Statusbar) used within Deluge.
|
||||||
|
|
||||||
License:
|
*
|
||||||
General Public License v3
|
* Copyright (C) Damien Churchill 2008 <damoxc@gmail.com>
|
||||||
|
*
|
||||||
Copyright:
|
* This program is free software; you can redistribute it and/or modify
|
||||||
Damien Churchill (c) 2008 <damoxc@gmail.com>
|
* 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.
|
||||||
|
*
|
||||||
|
|
||||||
|
|
||||||
Class: Deluge.Widgets.Toolbar
|
Class: Deluge.Widgets.Toolbar
|
||||||
|
|
|
@ -2,11 +2,25 @@
|
||||||
Script: deluge-details.js
|
Script: deluge-details.js
|
||||||
Contains the tabs for the torrent details.
|
Contains the tabs for the torrent details.
|
||||||
|
|
||||||
License:
|
*
|
||||||
General Public License v3
|
* Copyright (C) Damien Churchill 2008 <damoxc@gmail.com>
|
||||||
|
*
|
||||||
Copyright:
|
* This program is free software; you can redistribute it and/or modify
|
||||||
Damien Churchill (c) 2008 <damoxc@gmail.com>
|
* 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.
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Deluge.Widgets.Details = new Class({
|
Deluge.Widgets.Details = new Class({
|
||||||
|
|
|
@ -2,11 +2,25 @@
|
||||||
Script: deluge-menus.js
|
Script: deluge-menus.js
|
||||||
Contains the layout for all the popup menus used within the ajax ui.
|
Contains the layout for all the popup menus used within the ajax ui.
|
||||||
|
|
||||||
License:
|
*
|
||||||
General Public License v3
|
* Copyright (C) Damien Churchill 2008 <damoxc@gmail.com>
|
||||||
|
*
|
||||||
Copyright:
|
* This program is free software; you can redistribute it and/or modify
|
||||||
Damien Churchill (c) 2008 <damoxc@gmail.com>
|
* 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.
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Deluge.Menus = {
|
Deluge.Menus = {
|
||||||
|
|
|
@ -2,11 +2,25 @@
|
||||||
Script: deluge-mime.js
|
Script: deluge-mime.js
|
||||||
Library for converting mimetypes to extensions and vica versa.
|
Library for converting mimetypes to extensions and vica versa.
|
||||||
|
|
||||||
License:
|
*
|
||||||
General Public License v3
|
* Copyright (C) Damien Churchill 2008 <damoxc@gmail.com>
|
||||||
|
*
|
||||||
Copyright:
|
* This program is free software; you can redistribute it and/or modify
|
||||||
Damien Churchill (c) 2008 <damoxc@gmail.com>
|
* 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.
|
||||||
|
*
|
||||||
|
|
||||||
|
|
||||||
Object: Deluge.Mime
|
Object: Deluge.Mime
|
||||||
|
|
|
@ -3,11 +3,25 @@ Script: deluge-preferences.js
|
||||||
Contains the classes that provides the preferences window with
|
Contains the classes that provides the preferences window with
|
||||||
functionality
|
functionality
|
||||||
|
|
||||||
License:
|
*
|
||||||
General Public License v3
|
* Copyright (C) Damien Churchill 2008 <damoxc@gmail.com>
|
||||||
|
*
|
||||||
Copyright:
|
* This program is free software; you can redistribute it and/or modify
|
||||||
Damien Churchill (c) 2008 <damoxc@gmail.com>
|
* 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.
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Deluge.Widgets.PreferencesCategory = new Class({
|
Deluge.Widgets.PreferencesCategory = new Class({
|
||||||
|
|
|
@ -2,11 +2,25 @@
|
||||||
Script: deluge-torrent-grid.js
|
Script: deluge-torrent-grid.js
|
||||||
Contains the Deluge torrent grid.
|
Contains the Deluge torrent grid.
|
||||||
|
|
||||||
License:
|
*
|
||||||
General Public License v3
|
* Copyright (C) Damien Churchill 2008 <damoxc@gmail.com>
|
||||||
|
*
|
||||||
Copyright:
|
* This program is free software; you can redistribute it and/or modify
|
||||||
Damien Churchill (c) 2008 <damoxc@gmail.com>
|
* 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.
|
||||||
|
*
|
||||||
|
|
||||||
|
|
||||||
Class: Deluge.Widgets.TorrentGrid
|
Class: Deluge.Widgets.TorrentGrid
|
||||||
|
|
|
@ -2,11 +2,25 @@
|
||||||
Script: deluge-ui.js
|
Script: deluge-ui.js
|
||||||
Ties all the other scripts together to build up the Deluge AJAX UI.
|
Ties all the other scripts together to build up the Deluge AJAX UI.
|
||||||
|
|
||||||
License:
|
*
|
||||||
General Public License v3
|
* Copyright (C) Damien Churchill 2008 <damoxc@gmail.com>
|
||||||
|
*
|
||||||
Copyright:
|
* This program is free software; you can redistribute it and/or modify
|
||||||
Damien Churchill (c) 2008 <damoxc@gmail.com>
|
* 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.
|
||||||
|
*
|
||||||
|
|
||||||
|
|
||||||
Object: Deluge.UI
|
Object: Deluge.UI
|
||||||
|
|
|
@ -2,8 +2,25 @@
|
||||||
* Script: deluge.js
|
* Script: deluge.js
|
||||||
* The core script for the deluge ajax ui
|
* The core script for the deluge ajax ui
|
||||||
*
|
*
|
||||||
* Copyright:
|
*
|
||||||
* Damien Churchill (c) 2008 <damoxc@gmail.com>
|
* Copyright (C) Damien Churchill 2008 <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.
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var Deluge = $empty;
|
var Deluge = $empty;
|
||||||
|
|
|
@ -3,8 +3,25 @@
|
||||||
* A script file that is run through the template renderer in order for
|
* A script file that is run through the template renderer in order for
|
||||||
* translated strings to be retrieved.
|
* translated strings to be retrieved.
|
||||||
*
|
*
|
||||||
* Copyright:
|
*
|
||||||
* Damien Churchill (c) 2008
|
* Copyright (C) Damien Churchill 2008 <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.
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
GetText = {
|
GetText = {
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -383,7 +383,6 @@ setup(
|
||||||
"i18n/*.pot",
|
"i18n/*.pot",
|
||||||
"i18n/*/LC_MESSAGES/*.mo",
|
"i18n/*/LC_MESSAGES/*.mo",
|
||||||
"ui/webui/scripts/*",
|
"ui/webui/scripts/*",
|
||||||
"ui/webui/ssl/*",
|
|
||||||
"ui/webui/static/*.css",
|
"ui/webui/static/*.css",
|
||||||
"ui/webui/static/*.js",
|
"ui/webui/static/*.js",
|
||||||
"ui/webui/static/images/*.png",
|
"ui/webui/static/images/*.png",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue