mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-18 02:43:42 +02:00
yWeb 2.8.a.4
- updated nhttpd - Code clean up - changes to nhttpd.conf - some changes for logo display git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@416 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
@@ -54,7 +54,7 @@ start-block~nhttpd_save_settings
|
||||
{=ini-set:/var/tuxbox/config/nhttpd.conf;WebsiteMain.port;{=port=}~cache=}
|
||||
{=ini-set:/var/tuxbox/config/nhttpd.conf;webserver.threading;{=threading=}~cache=}
|
||||
{=ini-set:/var/tuxbox/config/nhttpd.conf;server.no_keep-alive_ips;{=no_keep_alive_ips=}~cache=}
|
||||
{=ini-set:/var/tuxbox/config/nhttpd.conf;Tuxbox.HostedDocumentRoot;{=HostedDocRoot=}~cache=}
|
||||
{=ini-set:/var/tuxbox/config/nhttpd.conf;WebsiteMain.hosted_directory;{=HostedDocRoot=}~cache=}
|
||||
{=ini-set:/var/tuxbox/config/nhttpd.conf;WebsiteMain.override_directory;{=override_directory=}~cache=}
|
||||
{=ini-set:/var/tuxbox/config/nhttpd.conf;mod_sendfile.mime_types;{=mod_sendfile_mime_types=}~cache=}
|
||||
{=ini-set:/var/tuxbox/config/nhttpd.conf;mod_sendfile.sendAll;{=mod_sendfile_sendAll=}~cache=}
|
||||
@@ -423,7 +423,7 @@ start-block~frame_live_epg
|
||||
</head>
|
||||
<frameset rows="100,*" frameborder="0" framespacing="0">
|
||||
<frame name="epg_info" src="Y_Live_EPG_Info.yhtm" scrolling="auto" frameborder="0" />
|
||||
<frame name="epg_list" src="Y_Live_EPG.yhtm?channel={=channel=}" scrolling="auto" frameborder="0" style="height:100%" />
|
||||
<frame name="epg_list" src="Y_Live_EPG.yhtm?channel={=channel=}&logoid={=logoid=}" scrolling="auto" frameborder="0" style="height:100%" />
|
||||
<noframes>
|
||||
<body>
|
||||
<p>Your Browser does not support Frames.</p>
|
||||
|
@@ -3,18 +3,14 @@
|
||||
<script type="text/javascript" src="/Y_Baselib.js"></script>
|
||||
<script type="text/javascript">
|
||||
//<![CDATA[
|
||||
function do_zap(channelid)
|
||||
{
|
||||
function do_zap(channelid) {
|
||||
dbox_zapto(channelid);
|
||||
window.location.reload();
|
||||
}
|
||||
function do_epg(channelid)
|
||||
{
|
||||
window.location.href="Y_Dyn_Pages.yhtm?page=frame_live_epg&channel="+channelid;
|
||||
// window.open("Y_Dyn_Pages.yhtm?page=frame_live_epg&channel="+channelid, "epg", "width=400");
|
||||
function do_epg(channelid,logoid) {
|
||||
window.location.href="Y_Dyn_Pages.yhtm?page=frame_live_epg&channel="+channelid+"&logoid="+logoid;
|
||||
}
|
||||
function do_streaminfo()
|
||||
{
|
||||
function do_streaminfo() {
|
||||
window.open("Y_StreamInfo.yhtm", "stream", "width=400");
|
||||
}
|
||||
//]]>
|
||||
|
@@ -50,11 +50,9 @@ function show_info(_index)
|
||||
}
|
||||
function check_logo()
|
||||
{
|
||||
{=if-equal:{=ini-get:/var/tuxbox/config/nhttpd.conf;ExtrasDocRoot=}~web~~
|
||||
var test = loadSyncURL("{=ini-get:/var/tuxbox/config/nhttpd.conf;ExtrasDocURL=}/logos/{=channel=}.gif");
|
||||
if(test != "")
|
||||
=}
|
||||
{=if-empty:{=logoid=}~~
|
||||
show_obj("logo",true);
|
||||
=}
|
||||
}
|
||||
function show_epg() {
|
||||
show_waitbox(true);
|
||||
@@ -108,7 +106,7 @@ function _show_epg()
|
||||
<table id="epglist" class="y_invisible_table" cellpadding="4" cellspacing="0" width="100%">
|
||||
<thead align="left">
|
||||
<tr>
|
||||
<th colspan="2"><img id="logo" src="{=ini-get:/var/tuxbox/config/nhttpd.conf;Tuxbox.LogosURL=}/{=channel=}.gif" style="visibility:hidden"> </th>
|
||||
<th colspan="2"><img id="logo" src="{=ini-get:/var/tuxbox/config/nhttpd.conf;Tuxbox.LogosURL=}/{=logoid=}.jpg" style="visibility:hidden"> </th>
|
||||
<th>{=L:date=}</th><th>{=L:from=}</th><th>{=L:to=}</th><th>{=L:program=}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
@@ -73,7 +73,7 @@ function do_submit()
|
||||
<tr>
|
||||
<td>{=L:alternate_web_folder=}</td>
|
||||
<td><input type="text" name="override_directory" size="20" value="{=ini-get:/var/tuxbox/config/nhttpd.conf;WebsiteMain.override_directory~cache=}" title="{=L:alternate_web_folder=}"/> {=L:active_after_boot=}
|
||||
<input type="hidden" name="HostedDocRoot" size="60" value="{=ini-get:/var/tuxbox/config/nhttpd.conf;Tuxbox.HostedDocumentRoot~cache=}" title="Root of hosted Web. Enter mount directory."/></td>
|
||||
<input type="hidden" name="HostedDocRoot" size="60" value="{=ini-get:/var/tuxbox/config/nhttpd.conf;WebsiteMain.hosted_directory~cache=}" title="Root of hosted Web. Enter mount directory."/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{=L:allowed_file_extensions=}</td>
|
||||
|
@@ -1,5 +1,5 @@
|
||||
version=2.8.a.3
|
||||
date=24.02.2010
|
||||
version=2.8.a.4
|
||||
date=25.02.2010
|
||||
type=Alpha
|
||||
info=Port Coolstream
|
||||
|
||||
|
Reference in New Issue
Block a user