mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-28 11:43:25 +02:00
transmission: add menuentry to transmission webgui
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
5
config/menu/EX-transmission.menu
Normal file
5
config/menu/EX-transmission.menu
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
$subipfire->{'42.transmission'} = {'caption' => TransmissionBT,
|
||||||
|
'uri' => '/cgi-bin/transmission.cgi',
|
||||||
|
'title' => TransmissionBT,
|
||||||
|
'enabled' => 1,
|
||||||
|
};
|
||||||
@@ -123,6 +123,7 @@ var/ipfire/menu.d/70-log.menu
|
|||||||
#var/ipfire/menu.d/EX-mympd.menu
|
#var/ipfire/menu.d/EX-mympd.menu
|
||||||
#var/ipfire/menu.d/EX-samba.menu
|
#var/ipfire/menu.d/EX-samba.menu
|
||||||
#var/ipfire/menu.d/EX-tor.menu
|
#var/ipfire/menu.d/EX-tor.menu
|
||||||
|
#var/ipfire/menu.d/EX-transmission.menu
|
||||||
#var/ipfire/menu.d/EX-vdr.menu
|
#var/ipfire/menu.d/EX-vdr.menu
|
||||||
#var/ipfire/menu.d/EX-wio.menu
|
#var/ipfire/menu.d/EX-wio.menu
|
||||||
#var/ipfire/menu.d/EX-wlanap.menu
|
#var/ipfire/menu.d/EX-wlanap.menu
|
||||||
|
|||||||
@@ -79,6 +79,7 @@ srv/web/ipfire/cgi-bin/system.cgi
|
|||||||
srv/web/ipfire/cgi-bin/time.cgi
|
srv/web/ipfire/cgi-bin/time.cgi
|
||||||
#srv/web/ipfire/cgi-bin/tor.cgi
|
#srv/web/ipfire/cgi-bin/tor.cgi
|
||||||
srv/web/ipfire/cgi-bin/traffic.cgi
|
srv/web/ipfire/cgi-bin/traffic.cgi
|
||||||
|
#srv/web/ipfire/cgi-bin/transmission.cgi
|
||||||
srv/web/ipfire/cgi-bin/updatexlrator.cgi
|
srv/web/ipfire/cgi-bin/updatexlrator.cgi
|
||||||
srv/web/ipfire/cgi-bin/urlfilter.cgi
|
srv/web/ipfire/cgi-bin/urlfilter.cgi
|
||||||
#srv/web/ipfire/cgi-bin/vdr.cgi
|
#srv/web/ipfire/cgi-bin/vdr.cgi
|
||||||
|
|||||||
@@ -17,3 +17,5 @@ usr/share/transmission
|
|||||||
#usr/share/transmission/public_html/transmission-app.js
|
#usr/share/transmission/public_html/transmission-app.js
|
||||||
#usr/share/transmission/public_html/transmission-app.js.LEGAL.txt
|
#usr/share/transmission/public_html/transmission-app.js.LEGAL.txt
|
||||||
var/ipfire/backup/addons/includes/transmission
|
var/ipfire/backup/addons/includes/transmission
|
||||||
|
srv/web/ipfire/cgi-bin/transmission.cgi
|
||||||
|
var/ipfire/menu.d/EX-transmission.menu
|
||||||
|
|||||||
25
html/cgi-bin/transmission.cgi
Normal file
25
html/cgi-bin/transmission.cgi
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
#!/usr/bin/perl
|
||||||
|
###############################################################################
|
||||||
|
# #
|
||||||
|
# IPFire.org - A linux based firewall #
|
||||||
|
# Copyright (C) 2007-2024 IPFire Team <info@ipfire.org> #
|
||||||
|
# #
|
||||||
|
# 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 of the License, 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, see <http://www.gnu.org/licenses/>. #
|
||||||
|
# #
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
print "Status: 302 Moved Temporarily\n";
|
||||||
|
print "Location: http://$ENV{SERVER_ADDR}:9091\n\n";
|
||||||
|
|
||||||
|
exit (0);
|
||||||
@@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
|
|||||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||||
PROG = transmission
|
PROG = transmission
|
||||||
PAK_VER = 21
|
PAK_VER = 22
|
||||||
|
|
||||||
DEPS =
|
DEPS =
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user