-
Notifications
You must be signed in to change notification settings - Fork 339
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First, added trackers tab to the WebUI. Second, now we can view all the trackers and view each: * status * number of peers * additional message Third, information about DHT, PeX and LSD is also added. closes: https://dev.deluge-torrent.org/ticket/1015
- Loading branch information
Showing
8 changed files
with
474 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- Generated with glade 3.22.1 --> | ||
<interface> | ||
<requires lib="gtk+" version="3.0"/> | ||
<object class="GtkImage" id="image1"> | ||
<property name="visible">True</property> | ||
<property name="can_focus">False</property> | ||
<property name="icon_name">list-add-symbolic</property> | ||
<property name="icon_size">1</property> | ||
</object> | ||
<object class="GtkMenu" id="menu_trackers_tab"> | ||
<property name="visible">True</property> | ||
<property name="can_focus">False</property> | ||
<child> | ||
<object class="GtkImageMenuItem" id="edit_trackers_menuitem"> | ||
<property name="label" translatable="yes">_Edit Trackers</property> | ||
<property name="visible">True</property> | ||
<property name="can_focus">False</property> | ||
<property name="tooltip_text" translatable="yes">Edit all trackers</property> | ||
<property name="use_underline">True</property> | ||
<property name="image">image1</property> | ||
<property name="use_stock">False</property> | ||
<signal name="activate" handler="on_menuitem_edit_trackers_activate" swapped="no"/> | ||
</object> | ||
</child> | ||
</object> | ||
</interface> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/** | ||
* Deluge.data.TrackerRecord.js | ||
* | ||
* Copyright (c) Damien Churchill 2009-2010 <[email protected]> | ||
* | ||
* 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. | ||
*/ | ||
Ext.namespace('Deluge.data'); | ||
|
||
/** | ||
* Deluge.data.Tracker record | ||
* | ||
* @author Damien Churchill <[email protected]> | ||
* @version 1.3 | ||
* | ||
* @class Deluge.data.Tracker | ||
* @extends Ext.data.Record | ||
* @constructor | ||
* @param {Object} data The tracker data | ||
*/ | ||
Deluge.data.Tracker = Ext.data.Record.create([ | ||
{ | ||
name: 'tracker', | ||
type: 'string', | ||
}, | ||
{ | ||
name: 'status', | ||
type: 'string', | ||
}, | ||
{ | ||
name: 'peers', | ||
type: 'int', | ||
}, | ||
{ | ||
name: 'message', | ||
type: 'string', | ||
}, | ||
]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.