diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2009-12-30 14:29:12 +0100 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2009-12-30 14:29:12 +0100 |
commit | 958739d6b84d31402b01ec1b7048cd5ccb59f5e4 (patch) | |
tree | ced0b248384a5485a9ffc162753841c335bcc29f /template/default/library.js | |
parent | 15d999894118c71926b62b5968f08c0ac9f092d2 (diff) | |
download | vdradmin-am-3.6.5.tar.gz vdradmin-am-3.6.5.tar.bz2 |
2009-12-30: 3.6.5v3.6.5
- Changed: use HTTP::Date for HTTP date/time formatting (Ville Skyttä).
- Improved: Create fewer SVDRP connections (Ville Skyttä).
- Fixed: some jslint warnings in javascript files (Ville Skyttä).
- Improved: Config file read/write error handling (Ville Skyttä).
- Improved: Send Last-Modified header for static resources (Ville Skyttä).
- Added: "-l" and "--log" parameter.
- Changed: "-nf" option to "-n".
- Changed: Logging.
- Added: "--ssl" switch to accept https instead of http.
- Added: Find VDR 1.7.2+ TS recordings.
- Updated: Italian translation (Submitted by Diego Pierotto).
- Fixed: epgsearch uses seconds in aux field of timers, not minutes (Reported by Rincewind99 @vdr-portal.de).
- Fix bug #507 "EPGsearch custom categories no longer show".
- Fixed: Saving the config showed error message "1".
- Reworked: Spanish translation (Submitted by Manuel Gomez).
- Fixed: failing check whether the process with our pid is a vdradmind (Ville Skyttä)
- Fixed: always exit with status 1 from --kill if no processes were killed (Ville Skyttä)
- Improved: pid file error handling (Ville Skyttä)
- Added: autotimer schedule change tracking option in UI (Ville Skyttä)
- Fixed: use text/javascript for JavaScript in HTTP headers (Ville Skyttä)
- Updated: required Perl module documentation (Ville Skyttä)
- Improved: template caching options (stat ttl, default cache dir is now /var/cache/vdradmin) (Ville Skyttä)
- Improved: error message when binding the server socket fails (Ville Skyttä)
- Improved: warn if log file cannot be written to (Ville Skyttä)
- Fixed: don't try to delete pid file in non-daemon mode.
- Improved: include reason in pid file deletion error message (Ville Skyttä).
- Added: ability to log to syslog ("LOGFILE = syslog" in config) (Ville Skyttä).
- Changed: non-daemon mode (-nf) always turns on logging to stderr (Ville Skyttä).
Diffstat (limited to 'template/default/library.js')
-rw-r--r-- | template/default/library.js | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/template/default/library.js b/template/default/library.js index 29bbe42..ee9daf2 100644 --- a/template/default/library.js +++ b/template/default/library.js @@ -1,3 +1,5 @@ +/*jslint browser: true */ + // // this is part of VDR Admin // @@ -7,12 +9,16 @@ function open_help(url) { function del(message, suffix) { check=confirm(message); - if(check) window.location.href=suffix; + if(check) { + window.location.href=suffix; + } } function change(message, suffix) { check=confirm(message); - if(check) window.location.href=suffix; + if(check) { + window.location.href=suffix; + } } function mdel(but, message) { @@ -37,7 +43,8 @@ function AllMessages(myform) { for (var x = 0; x < myform.elements.length; x++) { var y = myform.elements[x]; - if (y.name != 'SELALL') - y.checked = myform.SELALL.checked; + if (y.name != 'SELALL') { + y.checked = myform.SELALL.checked; + } } } |