diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2006-06-23 12:00:58 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2006-06-23 12:00:58 +0200 |
commit | fea04122f6f8b7e4f4ca4c59dc43be6567290d03 (patch) | |
tree | b4b632a66d38a4d7f14b9e78b1802a9c60e3f331 /template/default/rec_list.html | |
parent | 9e8fe7b8ec42e928db062413ee824b7b4ec13132 (diff) | |
download | vdradmin-am-3.4.6beta3.tar.gz vdradmin-am-3.4.6beta3.tar.bz2 |
2006-06-23: 3.4.6beta3v3.4.6beta3
- Fixed: Crash in prog_detail if invalid EPG-ID (Bug #0000077, Reported by Reiner Buehl).
- Fixed: Bug #0000034 (Reported by The Unknown).
- Added: error page on internal vdradmind.pl errors.
- Changed: access_log.
- Removed: unused stuff in templates.
- Fixed: quote special characters in "find repeatings" URL (Reported by Hans-Joachim Gurt).
- Reworked: prog_timeline again (Fixes Bug #0000009, Reported by Georgius, Patch submitted by Torsten Herz).
- Fixed: correct sorting in prog_list2 selectbox at the end of a month (Reported by sirtobi).
- Changed: dates in prog_list2 selectbox now shows day and month (Requested by sirtobi).
- Changed: Removed tabs in configuration menu.
- Fixed: "Divide by 0" bug in prog_summary list view (Bug #0000072, Reported by djdagobert).
- Changed: Place folders in rec_list at the top (Patch submitted by Frank Jepsen).
- Fixed: Remember sorting after returning fom rec_rename (Bug #0000037, Reported by martind).
- Fixed: Canceling rec_rename does no longer rename the recording (Bug #0000036, Reported by martind).
- Fixed: VDRAdmin-AM didn't start if PID file was empty (Reported and fixed by Hirmke Michael).
- Fixed: In prog_list2 starting time also works for other days.
- Added: Icons to find repeatings and IMDb lookup in prog_list and prog_list2.
- Added: Each AutoTimer can have its own start/stop margins (Requested by many people at vdrportal.de). NOTE: vdradmind.at format changed!
Diffstat (limited to 'template/default/rec_list.html')
-rw-r--r-- | template/default/rec_list.html | 27 |
1 files changed, 1 insertions, 26 deletions
diff --git a/template/default/rec_list.html b/template/default/rec_list.html index 1cba17f..2235c76 100644 --- a/template/default/rec_list.html +++ b/template/default/rec_list.html @@ -14,7 +14,6 @@ <body id="rec_list"> <table width="100%" border="0" cellspacing="0" cellpadding="0" id="heading"> <tr> - <td class="col_left"></td> <td class="col_title"><h1><%! Recordings !%></h1></td> <td colspan="2" class="col_other"> <tmpl_if disk_total> @@ -27,7 +26,6 @@ <a href="javascript:open_help('<tmpl_var help_url>');"><img src="bilder/help.png" border="0" alt="help" title="<%! Help !%>" /></a> </td> </tmpl_if> - <td class="col_right"></td> </tr> </table> @@ -41,7 +39,6 @@ <table width="100%" border="0" cellspacing="0" cellpadding="0" id="content" class="list"> <!-- TODO: this breaks IE, but why? <colgroup> - <col class="col_left"/> <col class="col_date"/> <col class="col_time"/> <col class="col_name"/> @@ -51,10 +48,8 @@ <col class="col_stream"/> </tmpL_if> <col class="col_checkbox"/> - <col class="col_right"/> </colgroup>--> <tr class="heading"> - <td class="col_left"></td> <td class="col_date <tmpl_if sortbydate>selected</tmpl_if>"> <h2> <a href="<tmpl_var sortbydateurl>"><%! Date !%> @@ -94,20 +89,10 @@ <td class="col_stream"></td> </tmpl_if> <td class="col_checkbox"><input type="checkbox" name="SELALL" value="SELALL" onclick="AllMessages(this.form);" title="<%! Select all/none !%>" /></td> - <td class="col_right"></td> - </tr> - <tr class="row_spacer"> - <td class="col_left"></td> - <td class="col_date <tmpl_if sortbydate>selected</tmpl_if>"></td> - <td class="col_time <tmpl_if sortbytime>selected</tmpl_if>"></td> - <td class="col_name <tmpl_if sortbyname>selected</tmpl_if>"></td> - <td colspan="<tmpl_if stream_rec_on>4<tmpl_else>3</tmpl_if>"></td> - <td class="col_right"></td> </tr> <tmpl_loop recloop> <tr class="<tmpl_if __ODD__>row_odd<tmpl_else>row_even</tmpl_if>"> - <td class="col_left"></td> <td class="col_date <tmpl_if sortbydate>selected</tmpl_if>"> <span class="date"><tmpl_var date></span> <tmpl_if isfolder><span class="total"><%! Total !%></span></tmpl_if> @@ -133,7 +118,7 @@ </td> <td class="col_edit"> <tmpl_unless isfolder> - <a href="<tmpl_var editurl><tmpl_var cur_sorting>"><img src="bilder/edit.png" alt="rename" title="<%! Rename !%>" border="0" /></a> + <a href="<tmpl_var editurl><tmpl_var cur_sorting><tmpl_var referer>"><img src="bilder/edit.png" alt="rename" title="<%! Rename !%>" border="0" /></a> </tmpl_unless> </td> <td class="col_delete"> @@ -151,18 +136,8 @@ <td class="col_checkbox"> <tmpl_unless isfolder><input type="checkbox" name="xxxx_<tmpl_var id>" /></tmpl_unless> </td> - <td class="col_right"></td> </tr> </tmpl_loop> - - <tr class="footer"> - <td class="col_left"></td> - <td class="col_date <tmpl_if sortbydate>selected</tmpl_if>"></td> - <td class="col_time <tmpl_if sortbytime>selected</tmpl_if>"></td> - <td class="col_name <tmpl_if sortbyname>selected</tmpl_if>"></td> - <td colspan="<tmpl_if stream_rec_on>4<tmpl_else>3</tmpl_if>"></td> - <td class="col_right"></td> - </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0" id="buttons"> |