*** empty log message ***

This commit is contained in:
sebastian 2005-04-04 17:11:18 +00:00
parent b47a4ba129
commit be6371aa55
9 changed files with 760 additions and 821 deletions

File diff suppressed because it is too large Load diff

View file

@ -150,7 +150,7 @@ $mask = array(
'element' => 'ls:year', 'element' => 'ls:year',
'type' => 'select', 'type' => 'select',
'label' => 'Year', 'label' => 'Year',
'options' => _getNumArr(1900, date('Y')+5), #'options' => _getNumArr(1900, date('Y')+5),
'id3' => 'Year' 'id3' => 'Year'
), ),
array( array(
@ -208,14 +208,14 @@ $mask = array(
'element' => 'ls:track_num', 'element' => 'ls:track_num',
'type' => 'select', 'type' => 'select',
'label' => 'Track number', 'label' => 'Track number',
'options' => _getNumArr(0, 99), #'options' => _getNumArr(0, 99),
'id3' => 'Track' 'id3' => 'Track'
), ),
array( array(
'element' => 'ls:disc_num', 'element' => 'ls:disc_num',
'type' => 'select', 'type' => 'select',
'label' => 'Disc number', 'label' => 'Disc number',
'options' => _getNumArr(0, 20), #'options' => _getNumArr(0, 20),
'id3' => 'Disk' 'id3' => 'Disk'
), ),
array( array(

View file

@ -43,6 +43,14 @@ form { font-size: 12px;
width: 100px; width: 100px;
} }
.button_wide { font-size: 12px;
font-weight: bold;
color: #666;
background-color: #F7F9FB;
padding: 0 25px 0 25px;
cursor: pointer;
width: 150px;
}
.button_large { font-size: 12px; .button_large { font-size: 12px;
font-weight: bold; font-weight: bold;
color: #666; color: #666;

View file

@ -86,7 +86,7 @@ class Display {
} }
$html .= "<input name='data[$nr][key]' type='hidden' value=\"$displKey\">"; $html .= "<input name='data[$nr][key]' type='hidden' value=\"$displKey\">";
$html .= "<input name='data[$nr][value]' type='text' size='50' value=\"$insval\">"; $html .= "<input name='data[$nr][value]' type='text' size='100' value=\"$insval\">";
$html .= "</td><td>\n"; $html .= "</td><td>\n";
if ($target[Id] == _DEFAULT_LANG_) { // default language => can change keys if ($target[Id] == _DEFAULT_LANG_) { // default language => can change keys

View file

@ -10,9 +10,9 @@
<h1>##Playlist Editor##</h1> <h1>##Playlist Editor##</h1>
<p>&nbsp;</p> <p>&nbsp;</p>
{if $PL->reportLookedPL()} {if $PL->reportLookedPL()}
<input type="button" value="##Open last Playlist##" onClick="hpopup('{$UI_HANDLER}?act=PL.unlook')"> <input type="button" value="##Open last Playlist##" onClick="hpopup('{$UI_HANDLER}?act=PL.unlook')" class="button_wide">
{else} {else}
<input type="button" value="##New empty Playlist##" onClick="hpopup('{$UI_HANDLER}?act=PL.create')"> <input type="button" value="##New empty Playlist##" onClick="hpopup('{$UI_HANDLER}?act=PL.create')" class="button_wide">
{/if} {/if}
</div> </div>
{/if} {/if}

View file

@ -9,8 +9,7 @@
<li><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&view=day')">##Day##</a></li> <li><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&view=day')">##Day##</a></li>
<li><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&view=week')">##Week##</a></li> <li><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&view=week')">##Week##</a></li>
<li><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&view=month')">##Month##</a></li> <li><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&view=month')">##Month##</a></li>
<!-- <input type="button" onClick="popup('{$UI_BROWSER}?popup[]=SCHEDULER.schedule', 'Schedule', 600, 400)" value="Schedule"> --> <li><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&view=day&today=1')">##Today##</a></li>
<li><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&today=1')">##Today##</a></li>
</ul> </ul>
</div> </div>
<!-- end calendar tabs --> <!-- end calendar tabs -->
@ -22,25 +21,22 @@
<table class="calender_overview_table"> <table class="calender_overview_table">
<tr> <tr>
<td><a href="#" onCLick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&month=--')"><<</a></td> <td><a href="#" onCLick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&month=--')"><<</a></td>
<td colspan=4> <td colspan=6>
<form name="calendar_month" style="margin: 2;"> <form name="calendar" style="margin: 2;">
<select id="month" style="margin-top: 0;font-size:9px;" name="month" onChange="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&month=' + document.forms['calendar_month'].month.value)"> <select id="month" style="margin-top: 0;font-size:9px;" name="month" onChange="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&month=' + document.forms['calendar'].month.value)">
{foreach from=$SCHEDULER->Year item="_Month"} {foreach from=$SCHEDULER->Year item="_Month"}
<option value="{$_Month.month}">{$_Month.label.full}</option> <option value="{$_Month.month}">{$_Month.label.full}</option>
{/foreach} {/foreach}
</select> </select>
</form> &nbsp;&nbsp;&nbsp;
</td> <select id="year" style="margin-top: 0;font-size:9px;" name="year" onChange="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&year=' + document.forms['calendar'].year.value)">
<td colspan=2>
<form name="calendar_year" style="margin: 2;">
<select id="year" style="margin-top: 0;font-size:9px;" name="year" onChange="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&year=' + document.forms['calendar_year'].year.value)">
{foreach from=$SCHEDULER->Decade item="_Year"} {foreach from=$SCHEDULER->Decade item="_Year"}
<option value="{$_Year.year}" {if $_Year.isSelected}selected{/if}>{$_Year.year}</option> <option value="{$_Year.year}" {if $_Year.isSelected}selected{/if}>{$_Year.year}</option>
{/foreach} {/foreach}
</select> </select>
<script type="text/javascript"> <script type="text/javascript">
document.forms['calendar_month'].month.value = '{$SCHEDULER->curr.month}'; document.forms['calendar'].month.value = '{$SCHEDULER->curr.month}';
document.forms['calendar_year'].year.value = '{$SCHEDULER->curr.year}'; document.forms['calendar'].year.value = '{$SCHEDULER->curr.year}';
</script> </script>
</form> </form>
</td> </td>
@ -71,9 +67,9 @@
<td class="nothing"> <td class="nothing">
{/if} {/if}
{if $_Day.isSelected} {if $_Day.isSelected}
<a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&day={$_Day.day}&month={$_Day.month}&year={$_Day.year}')" class="full">{$_Day.day}</a> <a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&view=day&day={$_Day.day}&month={$_Day.month}&year={$_Day.year}')" class="full">{$_Day.day}</a>
{else} {else}
<a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&day={$_Day.day}&month={$_Day.month}&year={$_Day.year}')">{$_Day.day}</a> <a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&view=day&day={$_Day.day}&month={$_Day.month}&year={$_Day.year}')">{$_Day.day}</a>
{/if} {/if}
</td> </td>
@ -86,68 +82,3 @@
</div> </div>
</div> </div>
<!-- end calendar navigation --> <!-- end calendar navigation -->
{*
<table border=1>
<tr><th colspan="8">{$SCHEDULER->curr.year}-{$SCHEDULER->curr.month}-{$SCHEDULER->curr.day}</th></tr>
<tr>
<th><a href="#" onCLick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&month=--')"><<</a></th>
<th colspan="4">
<form name="calendar_month">
<select name="month" onChange="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&month=' + document.forms['calendar_month'].month.value)">
{foreach from=$SCHEDULER->Year item="_Month"}
<option value="{$_Month.month}">{$_Month.label.full}</option>
{/foreach}
</select>
</form>
</th>
<th colspan="2">
<form name="calendar_year">
<select name="year" onChange="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&year=' + document.forms['calendar_year'].year.value)">
{foreach from=$SCHEDULER->Decade item="_Year"}
<option value="{$_Year.year}" {if $_Year.isSelected}selected{/if}>{$_Year.year}</option>
{/foreach}
</select>
</form>
<script type="text/javascript">
document.forms['calendar_month'].month.value = '{$SCHEDULER->curr.month}';
document.forms['calendar_year'].year.value = '{$SCHEDULER->curr.year}';
</script>
</th>
<th><a href="#" onCLick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&month=%2B%2B')">>></a></th>
</tr>
{foreach from=$SCHEDULER->Month item="_Day"}
{if $_Day.isFirst}
<tr>
<th><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&view=week&day={$_Day.day}&month={$_Day.month}')">{$_Day.week}</a></th>
{/if}
<td>
{if $_Day.isEmpty}
<div>
{elseif $_Day.isToday}
<div style="background-color: grey">
{elseif $_Day.isCurrent}
<div style="background-color: lightblue">
{else}
<div style="background-color: white">
{/if}
{if $_Day.isSelected}
<b><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&day={$_Day.day}&month={$_Day.month}&year={$_Day.year}')">{$_Day.day}</a></b>
{else}
<a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&day={$_Day.day}&month={$_Day.month}&year={$_Day.year}')">{$_Day.day}</a>
{/if}
</div>
</td>
{if $_Day.isLast}
</tr>
{/if}
{/foreach}
</table>
*}

View file

@ -1 +0,0 @@
<small><b>{$_title}</b><br>{$_period}<br>{$_creator}</small>

View file

@ -25,10 +25,12 @@
{/if} {/if}
<td {if $_Day.isToday} class="today"{/if}> <td {if $_Day.isToday} class="today"{/if}>
<p><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&view=day&year={$_Day.year}&month={$_Day.month}&day={$_Day.day}')">{$_Day.day}</a></p> <a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&view=day&year={$_Day.year}&month={$_Day.month}&day={$_Day.day}')">
<p>{$_Day.day}</p>
<div class="scala"> <div class="scala">
<div class="scala_in" style="width: {$percentage}px;"></div> <!-- fullsize 96px, multiple of 24 --> <div class="scala_in" style="width: {$percentage}px;"></div> <!-- fullsize 96px, multiple of 24 -->
</div> </div>
</a>
</td> </td>
{if $_Day.isLast} {if $_Day.isLast}

View file

@ -14,7 +14,7 @@
*} *}
<div class="clearer">&nbsp;</div> <div class="clearer">&nbsp;</div>
<p>{$SCHEDULER->curr.week}. ##KW## {$SCHEDULER->curr.year}</p> <p>{$SCHEDULER->curr.week}. ##calendar week## {$SCHEDULER->curr.year}</p>
<table class="scheduler_week"> <table class="scheduler_week">
<tr> <tr>