diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2006-01-18 12:13:36 +0100 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2006-01-18 12:13:36 +0100 |
commit | 34e86d2c14b20da21febb89614bbeb4522b481ef (patch) | |
tree | 64654f051628978f36d273648f618267c6326ea6 /template/default/help.html | |
parent | 4f4223794cd8d7efc2c4b95ba4742728eef5a103 (diff) | |
download | vdradmin-am-3.4.3rc.tar.gz vdradmin-am-3.4.3rc.tar.bz2 |
2006-01-17: 3.4.3rcv3.4.3rc
- Changed program name to VDRAdmin-AM to make clear it's a fork of VDRAdmin.
- Added "Help" and "About" to navigation bar at the left.
- Hide "Record" button if prog_detail is opened from timer_list.
- After clicking "Record" in prog_detail and leaving timer_new return to page where prog_detail has been opened (Reported by Ferdinand Grassmann).
- Timers were re-programmed every CheckTimers() call if setup option "do not add summary to timers" is active (Reported by Ferdinand Grassmann).
- Dropped sendEmail dependency. Now uses Net::SMTP modules (Patch by Ville Skyttä).
- Don't show EPG images for other events (Fixed by Ferdinand Grassmann).
- Changed GRAB so that it doesn't use temporary files for VDR >=1.3.38.
- VPS for timers (Requested by reibuehl).
- Made extension and mimetype for both live and recordings streaming configurable (Suggested at vdrportal.de).
- Understand format of VDR v1.3.38+ "lste" command (Thanks to Marcus Breitenstein).
- In skin "default": returning from timer_new didn't scroll to the line where "Rec" has been called in prog_list/prog_list2 (Reported by Foobar42)
- Fixed installing of missing Perl modules.
Diffstat (limited to 'template/default/help.html')
-rw-r--r-- | template/default/help.html | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/template/default/help.html b/template/default/help.html new file mode 100644 index 0000000..834235a --- /dev/null +++ b/template/default/help.html @@ -0,0 +1,44 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html> + +<head> + <meta http-equiv="content-type" content="text/html;<%! charset=ISO-8859-1 !%>" /> + <title><%! Help !%></title> + <script type="text/javascript" language="JavaScript1.2" src="library.js"></script> + <link href="style.css" rel="stylesheet" media="screen" type="text/css" /> + <tmpl_if usercss> + <link href="user.css" rel="stylesheet" media="screen" type="text/css" /> + </tmpl_if> +</head> + +<body id="rec_list" class="help" onload="window.focus()"> + <table width="100%" border="0" cellspacing="0" cellpadding="0" id="help" class="group"> + <tr class="heading"> + <td class="col_left"></td> + <td><h2><%! Getting Help and Reporting Bugs !%></h2></td> + <td class="col_right"></td> + </tr> + <tr class="row_spacer"> + <td class="col_left"></td> + <td></td> + <td class="col_right"></td> + </tr> + <tr class="row_even"> + <td class="col_left"></td> + <td> + <ul> + <li><%! If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src="bilder/help.gif"/>. !%></li> + <li><%! If this doesn't provide the information you need you can try to get help at <a href="http://www.vdrportal.de" target="_new">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for: !%> "[ANNOUNCE] <tmpl_var myversion>"</li> + <li><%! If you think you have found a bug please check that it's a new one and report it in the <a href="http://www.vdr-developer.org/mantisbt/main_page.php" target="_new">VDRAdmin-AM BugTracking system</a>. !%></li> + </td> + <td class="col_right"></td> + </tr> + <tr class="footer"> + <td class="col_left"></td> + <td></td> + <td class="col_right"></td> + </tr> + </table> +</body> + +</html> |