diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2005-10-21 10:24:52 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2005-10-21 10:24:52 +0200 |
commit | 8ed70947cc069fb98d9a281927ba0f289b0a6115 (patch) | |
tree | ecf409e62d86fa44e99b85e137e2ead3423926eb /template/default/at_timer_list.html | |
parent | a935422b27fcfc8713c63033c419081b5731fcff (diff) | |
download | vdradmin-am-8ed70947cc069fb98d9a281927ba0f289b0a6115.tar.gz vdradmin-am-8ed70947cc069fb98d9a281927ba0f289b0a6115.tar.bz2 |
2005-10-21: 0.97-am3.4.2rcv0.97-am3.4.2rc
- Hopefully fixed browsing in "recordings" menu (if there are folders having the same name).
- Added new skin "default".
- Removed i18n.pl.
- Localization can be set in configuration again.
- Added "Transponder" and "CA-System" to tooltips in timer_list.
- Show recording's summary and subtitle in rec_edit (Requested by BigDiSt).
- Check for and shorten too long summary when programming timer.
- Check for too long commands sent to SVDRPort.
- Channel select box in TV.
- "Test" button in AutoTimer edit for showing results of current settings (Requested by Hardy Flor).
- Link from channel name in prog_list2 and timer_list to prog_list.
- Bring popups to the front (e.g. help, prog_detail...) (Based on a patch submitted by Ville Skyttä).
- Reuse existing TV, RC and help windows (Based on a patch submitted by Ville Skyttä).
- Send vdradmin.m3u when streaming.
- Tooltips in timer_list, prog_timeline and at_timer_list can be deactivated (Requested by Hardy Flor).
- Fixed wrong HTML tags in rec_detail (Reported by foobar42).
Diffstat (limited to 'template/default/at_timer_list.html')
-rw-r--r-- | template/default/at_timer_list.html | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/template/default/at_timer_list.html b/template/default/at_timer_list.html index 6064c8b..ba4b284 100644 --- a/template/default/at_timer_list.html +++ b/template/default/at_timer_list.html @@ -9,20 +9,25 @@ <link href="user.css" rel="stylesheet" media="screen" type="text/css"/> </tmpl_if> <script type="text/javascript" language="JavaScript1.2" src="library.js"></script> - <script type="text/javascript" language="JavaScript1.2" src="infobox.js"></script> + <?% IF config.AT_TOOLTIP %?> + <script type="text/javascript" language="JavaScript1.2" src="infobox.js"></script> + <?% END %?> </head> <body id="at_timer_list"> -<div id="infodiv" style="position:absolute; visibility:hidden; z-index:20; top:0px; left:0px;"></div> -<script language="JavaScript" type="text/javascript"> +<?% IF config.AT_TOOLTIP %?> + <div id="infodiv" style="position:absolute; visibility:hidden; z-index:20; top:0px; left:0px;"></div> + <script language="JavaScript" type="text/javascript"> <?% FOREACH timer = at_timer_loop2; %?> - maketip("VDR-<?% timer.id %?>", "<?% timer.pattern %?>", "<%! Priority: !%> <?% timer.prio %?><br /><%! Lifetime: !%> <?% timer.lft %?>"); + maketip("VDR-<?% timer.id %?>", "<?% timer.pattern %?>", "<%! Priority: !%> <?% timer.prio %?><br /><%! Lifetime: !%> <?% timer.lft %?>"); <?% END %?> -</script> + </script> +<?% END %?> + <form action="<tmpl_var url>" method="get" name="FormName0"> <table width="100%" border="0" cellspacing="0" cellpadding="0" id="heading"> <tr> @@ -146,7 +151,7 @@ <tmpl_if stop><tmpl_var stop><tmpl_else>-</tmpl_if> </div> </td> - <td class="col_name <tmpl_if sortbypattern>selected</tmpl_if>" onMouseOver="tip('VDR-<tmpl_var id>'); return true;" onMouseOut="untip(); return true;"> + <td class="col_name <tmpl_if sortbypattern>selected</tmpl_if>" <?% IF config.AT_TOOLTIP %?>onMouseOver="tip('VDR-<tmpl_var id>'); return true;" onMouseOut="untip(); return true;"<?% END %?>> <div> <tmpl_var pattern> </div> |