*** empty log message ***
This commit is contained in:
parent
63ee21174a
commit
daef9b152e
22 changed files with 99 additions and 64 deletions
|
@ -18,7 +18,7 @@ function SearchForm_addRow()
|
|||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
function SearchForm_hideRow(row)
|
||||
{
|
|
@ -1,13 +1,5 @@
|
|||
{include file="library/search.js.tpl"}
|
||||
|
||||
|
||||
{literal}
|
||||
<style type="text/css">
|
||||
.dynformelement {
|
||||
width : 800px;
|
||||
}
|
||||
</style>
|
||||
{/literal}
|
||||
{include file="library/searchForm.js.tpl"}
|
||||
|
||||
<div id="searchform">
|
||||
{include file="sub/x.tpl"}
|
||||
<center>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
{*Smarty template*}
|
||||
|
||||
<div id="masterpanel">
|
||||
|
||||
{include file="statusbar.tpl"}
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<a href="{$UI_BROWSER}?id={$START.id}&act=SEARCH">[Search]</a>
|
||||
<a href="{$UI_BROWSER}?id={$START.id}&act=BROWSE">[Browse]</a>
|
||||
<a href="{$UI_BROWSER}?act=SCHEDULER">[Scheduler]</a>
|
||||
<a href="{$UI_BROWSER}?id={$START.id}&act=subjects">{tra 0='[User/Groups]'}</a>
|
||||
<a href="{$UI_BROWSER}?id={$START.id}&act=subjects">[User/Groups]</a>
|
||||
<!-- <a href="{$UI_BROWSER}?act=MetaDataValues&Main=1">[Metadata]</a> -->
|
||||
<a href="{$UI_BROWSER}?act=changeStationPrefs">[StationPrefs]</a>
|
||||
</div>
|
11
livesupport/modules/htmlUI/var/templates/playlist/deleteActive.tpl
Executable file
11
livesupport/modules/htmlUI/var/templates/playlist/deleteActive.tpl
Executable file
|
@ -0,0 +1,11 @@
|
|||
{include file="header.tpl"}
|
||||
|
||||
<center>
|
||||
<b>Are you sure to delete active Playlist?</b>
|
||||
<br>
|
||||
<input type="button" onClick="window.close()" value="Cancel">
|
||||
<input type="button" onClick="location.href='{$UI_HANDLER}?act=PL.deleteActive'" value="OK">
|
||||
</center>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -34,7 +34,7 @@
|
|||
{/if}
|
||||
|
||||
<tr style="background-color: {cycle values='#eeeeee, #dadada'}">
|
||||
<td><input type="checkbox" name="all" onClick="collector_switchAll('PL')"></th>
|
||||
<td><input type="checkbox" name="all" onClick="collector_switchAll('PL')"></td>
|
||||
<td align="center" colspan="2"><a href="#" onClick="collector_submit('PL', 'PL.removeItem')">[Remove Selected]</a></th>
|
||||
<td align="center" colspan="2"><a href="#" onClick="collector_clearAll('PL', 'PL.removeItem')">[Clear]</a></th>
|
||||
</tr>
|
||||
|
@ -44,6 +44,7 @@
|
|||
<td><input type="button" value="Revert" onClick="hpopup('{$UI_HANDLER}?act=PL.revert')"></td>
|
||||
<td><input type="button" value="Release" onClick="hpopup('{$UI_HANDLER}?act=PL.release')"></td>
|
||||
<td><input type="button" value="MData" onClick="location.href='{$UI_BROWSER}?act=PL.editMetaData'"></td>
|
||||
<td><input type="button" value="Delete" onClick="popup('{$UI_BROWSER}?popup[]=PL.deleteActive', 'PL.deleteActive', 400, 200)"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
onMouseOver="highlight()"
|
||||
onMouseOut="darklight()"
|
||||
onContextmenu="return menu('year={$_year}&month={$_month}&day={$_day}&hour={$_hour}', {$moreContextBefore} 'SCHEDULER.schedule' {$moreContextAfter})"
|
||||
|
||||
|
||||
{assign var="moreContextBefore" value=""}
|
||||
{assign var="moreContextAfter" value=""}
|
|
@ -16,7 +16,7 @@
|
|||
{assign var="_hour" value=$_Hour.hour}
|
||||
|
||||
<tr>
|
||||
<td {include file="scheduler/contextmenu.tpl"} bgcolor="#d4d0c8" height="50" valign="top">
|
||||
<td onContextmenu="return menu('year={$_year}&month={$_month}&day={$_day}&hour={$_hour}', 'SCHEDULER.addItem')" bgcolor="grey" height="50" valign="top">
|
||||
<a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&hour={$_Hour.hour}')">{$_Hour.hour}</a>
|
||||
</td>
|
||||
|
||||
|
@ -41,13 +41,11 @@
|
|||
|
||||
{foreach from=$_usage item="_entry"}
|
||||
{if $_entry.pos >= $_Hour.timestamp && $_entry.pos < $_Hour.timestamp+3600}
|
||||
<td rowspan="{$_entry.span}" valign="top" bgcolor="#ffcacb">
|
||||
<td rowspan="{$_entry.span}" onContextmenu="return menu('gunid={$_entry.id}', 'SCHEDULER.removeItem')" valign="top" bgcolor="#ffcacb">
|
||||
<b>{$_entry.title}</b>
|
||||
{$_entry.start|regex_replace:"/[0-9]+T/":""|truncate:5:""}-{$_entry.end|regex_replace:"/[0-9]+T/":""|truncate:5:""}
|
||||
<br>
|
||||
{$_entry.creator}
|
||||
<br>
|
||||
<a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.removeFromScheduleMethod&gunid={$_entry.id}');"><b>X</b></a>
|
||||
</td>
|
||||
{/if}
|
||||
{/foreach}
|
||||
|
|
11
livesupport/modules/htmlUI/var/templates/scheduler/removeItem.tpl
Executable file
11
livesupport/modules/htmlUI/var/templates/scheduler/removeItem.tpl
Executable file
|
@ -0,0 +1,11 @@
|
|||
{include file="header.tpl"}
|
||||
|
||||
<center>
|
||||
<b>Are you sure to remove this entry?</b>
|
||||
<br>
|
||||
<input type="button" onClick="window.close()" value="Cancel">
|
||||
<input type="button" onClick="location.href='{$UI_HANDLER}?act=SCHEDULER.removeItem&gunid={$gunid}'" value="OK">
|
||||
</center>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -35,7 +35,7 @@
|
|||
<table border="1" cellspacing="0" cellpadding="0">
|
||||
{foreach from=$_scale item="_hour"}
|
||||
<tr height="20" style="font-family: monospace;" valign="top">
|
||||
<td bgcolor="grey" {include file="scheduler/contextmenu.tpl"}>
|
||||
<td bgcolor="grey" onContextmenu="return menu('year={$_year}&month={$_month}&day={$_day}&hour={$_hour}', 'SCHEDULER.addItem')">
|
||||
<div style="padding: 1px">{$_hour|string_format:'%02d'}</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -55,9 +55,9 @@
|
|||
<tr height="{$SCHEDULER->_oneOrMore($i.length/$_divisor)}" style="font-family: monospace;" valign="top">
|
||||
{if is_array($i.entry)}
|
||||
{if $i.length/$_divisor > $_minwidth}
|
||||
<td bgcolor="#ffcacb" width="70"><div style="padding: 1px"><small><b>{$_title}</b><br>{$_period}<br>{$_creator}</small></div></td>
|
||||
<td bgcolor="#ffcacb" width="70" onContextmenu="return menu('gunid={$i.entry.id}', 'SCHEDULER.removeItem')"><div style="padding: 1px"><small><b>{$_title}</b><br>{$_period}<br>{$_creator}</small></div></td>
|
||||
{else}
|
||||
<td bgcolor="#ffcacb" width="70" onMouseover="mouseoverShow('<small><b>{$_title}</b><br>{$_period}<br>{$_creator}</small>')" onMouseout="mouseoverHide()"></td>
|
||||
<td bgcolor="#ffcacb" width="70" onContextmenu="return menu('gunid={$i.entry.id}', 'SCHEDULER.removeItem')" onMouseover="mouseoverShow('<small><b>{$_title}</b><br>{$_period}<br>{$_creator}</small>')" onMouseout="mouseoverHide()"></td>
|
||||
{/if}
|
||||
{else}
|
||||
<td bgcolor="#97bacf" width="70"></td>
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
{assign var="_PL_activeId" value=$PL->getActiveId()}
|
||||
|
||||
<div id="scratchpad">
|
||||
<center><b>%%ScratchPad%%</b>
|
||||
<center><b>ScratchPad</b>
|
||||
{if is_array($SCRATCHPAD)}
|
||||
<form name="SP">
|
||||
<input type="hidden" name="act">
|
||||
<table>
|
||||
<tr style="background-color: {cycle values='#eeeeee, #dadada'}">
|
||||
<th></th>
|
||||
<td align="center"><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SP.reOrder&by=title', 'order');">[{tra 0=Title}]</a></td>
|
||||
<td align="center"><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SP.reOrder&by=duration', 'order');">[{tra 0=Duration}]</a></td>
|
||||
<td align="center"><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SP.reOrder&by=type', 'order');">[{tra 0=Type}]</a></td>
|
||||
<td align="center"><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SP.reOrder&by=title', 'order');">[Title]</a></td>
|
||||
<td align="center"><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SP.reOrder&by=duration', 'order');">[Duration]</a></td>
|
||||
<td align="center"><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SP.reOrder&by=type', 'order');">[Type]</a></td>
|
||||
<td align="center">Remove</td>
|
||||
</tr>
|
||||
|
||||
|
|
|
@ -84,9 +84,12 @@ function menu(param) {
|
|||
menuHtml = menuHtml + "<tr><td><a class='menu' href='{/literal}{$UI_BROWSER}{literal}?act=fileList&id="+param+"'"+oF+"> List Folder </a></td></tr>";
|
||||
break;
|
||||
|
||||
case "SCHEDULER.schedule":
|
||||
menuHtml = menuHtml + "<tr><td><a class='menu' href='#' {/literal}onClick=\"hpopup('{$UI_HANDLER}?act=SCHEDULER.set&"+param+"'); popup('{$UI_BROWSER}?popup[]=SCHEDULER.schedule', 'Schedule', 600, 400)\"'){literal}"+oF+"> Schedule Playlist </a></td></tr>";
|
||||
case "SCHEDULER.addItem":
|
||||
menuHtml = menuHtml + "<tr><td><a class='menu' href='#' {/literal}onClick=\"hpopup('{$UI_HANDLER}?act=SCHEDULER.set&"+param+"'); popup('{$UI_BROWSER}?popup[]=SCHEDULER.addItem', 'Schedule', 600, 400)\"'){literal}"+oF+"> Insert Playlist here </a></td></tr>";
|
||||
break;
|
||||
|
||||
case "SCHEDULER.removeItem":
|
||||
menuHtml = menuHtml + "<tr><td><a class='menu' href='#' {/literal}onClick=\"popup('{$UI_BROWSER}?popup[]=SCHEDULER.removeItem&"+param+"', 'Schedule', 600, 400)\"'){literal}"+oF+"> Remove Playlist </a></td></tr>";
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,9 +3,9 @@
|
|||
{if $USER.userid}
|
||||
Login: {$USER.login}
|
||||
<br>
|
||||
<a href='javascript: popup("{$UI_BROWSER}?popup[]=logout", "name", "350", "100");'>[{tra 0=logout}]</a>
|
||||
<a href='javascript: popup("{$UI_BROWSER}?popup[]=signover_1", "name", "350", "160");'>[{tra 0='sign over'}]</a>
|
||||
<a href='javascript: popup("{$UI_BROWSER}?popup[]=logout", "name", "350", "100");'>[logout]</a>
|
||||
<a href='javascript: popup("{$UI_BROWSER}?popup[]=signover_1", "name", "350", "160");'>[sign over]</a>
|
||||
{else}
|
||||
<a href='javascript: popup("{$UI_BROWSER}?popup[]=login", "name", "350", "160");'>{tra 0=login}</a>
|
||||
<a href='javascript: popup("{$UI_BROWSER}?popup[]=login", "name", "350", "160");'>[login]</a>
|
||||
{/if}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue