Hi,
you can download the latest release at http://andreas.vdr-developer.org/en
Have fun! Andreas
*** HISTORY *** 2006-09-29: 3.4.7 - Autosave now takes care of the number of lines to show in commands menu (Requested by Ronny Kornexl).
2006-09-06: 3.4.7beta - Fixed: Smaller bugs (see ChangeLog). - Changed: Hide select boxes for templates and skins if it contains only a single choice. - Fixed: Another fix for the refering pages problem(s). - Changed: Hide "AutoTimer" menu item unless $FEATURE{AUTOTIMER} is set. - Changed: Use date instead of empty subtitle in timers programed by AutoTimer with activated "Episode" option. - Fixed: Don't show outdated broadcast as search result. - Added: Display warning message if lists is empty. - Added: UTF8 locales patch by Zoolook (see Bug #124). - Fixed: AutoTimer test feature didn't find broadcasts if they were in vdradmind.done. - Removed: HTML::Template dependency. - Changed: Only use Template-Toolkit's Template.pm. - Fixed: Hide "switch" button in prog_summary2 if broadcast is not running (Based on suggestion by Hardy Flor). - Fixed: Initial display of rec_list was empty. - Added: New PLAY and EDIT actions in rec_list. - Added: Remember selected size and interval in TV. - Added: check for features available with VDR's SVDRP, disable missing ones and show them in about.html (ATM used for RENR). - Changed: handling of sorting in rec_list (should always keep the current sorting). - Changed: handling of sorting in at_timer_list (should always keep the current sorting). - New: option to autosave config on exit (also saves sorting state in lists and viewmode in prog_summary). - Added: Czech translation (Submitted by Karel Borkovec). - Changed: handling of sorting in timer_list (should always keep the current sorting). - Changed: Moved favicon.ico from a template's skin folder to the template's main folder.
You wrote on Friday, September 29, 2006 :
- Added: Czech translation (Submitted by Karel Borkovec).
Hmm,
you forgot to add the credits on
Browser --> vdradmin-am --> Über/Hilfe --> Übersetzungsteam
^^
The rest runs fine ;)
Cheers
/bin/joerg
Hi Jörg,
fixed in CVS, thanks!
Regards, Andreas
On Friday 29 September 2006 16:03, Jörg Bornkessel wrote:
You wrote on Friday, September 29, 2006 :
- Added: Czech translation (Submitted by Karel Borkovec).
Hmm,
you forgot to add the credits on
Browser --> vdradmin-am --> Über/Hilfe --> Übersetzungsteam
^^
The rest runs fine ;)
Cheers
/bin/joerg
Hi! For some reason vdradmin's 'Playing Today' and 'What's on Now?' screens doesn't fit to browser window regardless of window size (IE6 and Maxthon) and last button is half-visible.
Screenshots: http://kodu.neti.ee/~pa000t/files/Clipboard01.jpg http://kodu.neti.ee/~pa000t/files/Clipboard02.jpg
Regards, SK
Hi,
that's a known issue with Internet Explorer. I don't know how to fix this correctly. Other browsers (FireFox, Opera, Konqueror) do fine. You can take a look at contrib/user.css_example to find a workaround or use another browser ;)
Regards, Andreas
On Tuesday 10 October 2006 20:56, Suur Karu wrote:
Hi! For some reason vdradmin's 'Playing Today' and 'What's on Now?' screens doesn't fit to browser window regardless of window size (IE6 and Maxthon) and last button is half-visible.
Screenshots: http://kodu.neti.ee/~pa000t/files/Clipboard01.jpg http://kodu.neti.ee/~pa000t/files/Clipboard02.jpg
Regards, SK
vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Andreas Mair wrote:
that's a known issue with Internet Explorer. I don't know how to fix this correctly. Other browsers (FireFox, Opera, Konqueror) do fine. You can take a look at contrib/user.css_example to find a workaround or use another browser ;)
Thats one of the flaws of the IE layout engine. The page has automatic scrollbars in the frame that appear as soon as the content is longer than the browser window. The IE engine is not able to re-layout the page if the vertical scrollbar pops up. Since the vertical scroller needs some space, the frame gets smaller. Instead of re-flowing the content to the new width, IE just adds a horizontal scroller.
(Ever wondered why the IE main window vertical scroller (on no-frames pages) never hides, but gets disabled when not needed? Thats why.)
One workaround is to enforce the vertical scroller to be always visible. That way, the scroller space is static and will be taken into account.
Change the content frame to this: <html class="scroller">
Then add this to style.css: * html.scroller { overflow-y:scroll; }
The * html is a browser switch that will limit this ugly hack to IE browsers only.
Cheers,
Udo
Udo Richter wrote:
One workaround is to enforce the vertical scroller to be always visible. That way, the scroller space is static and will be taken into account.
Yeah, I "customized" this for IE by simple dirty hack.
SK
--- index.html.old 2006-08-31 14:42:56.000000000 +0300 +++ index.html 2006-10-12 09:26:55.000000000 +0300 @@ -12,10 +12,10 @@ <script type="text/javascript" language="JavaScript1.2" src="library.js"></script> </head>
-<frameset border="0" cols="155,*" frameborder="no" framespacing="0"> - <frame name="nav" noresize src="navigation.html" /> - <frame name="main" noresize src="<?% loginpage %?>" /> - +<frameset border="0" cols="15%,85%" frameborder="no" framespacing="0"> + <frame name="nav" noresize src="navigation.html" scrolling="no" /> + <frame name="main" noresize src="<?% loginpage %?>" scrolling="yes" /> + <noframes> <body> <p><?% gettext('Your Browser does not support frames!') %?></p>