Revision 9d551488
Von Sven Schöling vor etwa 14 Jahren hinzugefügt
bin/mozilla/kopf.pl | ||
---|---|---|
111 | 111 |
my $framesize = _calc_framesize(); # framesize calculation as in menu.pl is only a quick and dirty hack here |
112 | 112 |
# it would be better to use a global or config variable |
113 | 113 |
|
114 |
# is there any better solution then the JS-Link for Back? Possibly with the callback variable? |
|
115 |
|
|
116 | 114 |
print qq| |
117 | 115 |
<body bgcolor="#ffffff" text="#ffffff" link="#ffffff" vlink="#ffffff" alink="#ffffff" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" style="background-image: url('image/fade.png'); background-repeat:repeat-x;"> |
118 | 116 |
<script language='JavaScript' src='js/switchmenuframe.js'></script> |
119 | 117 |
<table border="0" width="100%" background="image/bg_titel.gif" cellpadding="0" cellspacing="0"> |
120 |
<tr>|; |
|
121 |
if ($framesize ne 240) { # only show the the links in case of "links" in $ENV{HTTP_USER_AGENT} (see sub _calc_framesize) |
|
122 |
print qq| |
|
123 |
<td style="color:white; font-family:verdana,arial,sans-serif; font-size: 12px;" nowrap> |
|
118 |
<tr> |
|
119 |
<td style="color:white; font-family:verdana,arial,sans-serif; font-size: 12px;" nowrap> |
|
124 | 120 |
[<a href="JavaScript:Switch_Menu(|.$framesize.qq|);" title="| . $locale->text('Switch Menu on / off') . qq|">| . $locale->text('Menu') . qq|</a>] |
125 | 121 |
[<a HREF="login.pl" target="_blank" title="| . $locale->text('Open a further Lx-Office Window or Tab') . qq|">| . $locale->text('New Win/Tab') . qq|</a>] |
126 | 122 |
[<a href="JavaScript:top.main_window.print();" title="| . $locale->text('Hardcopy') . qq|">| . $locale->text('Print') . qq|</a>] |
127 | 123 |
[<a href="Javascript:top.main_window.history.back();" title="| . $locale->text('Go one step back') . qq|">| . $locale->text('Back') . qq|</a>] |
128 | 124 |
[<a href="Javascript:top.main_window.history.forward();" title="| . $locale->text('Go one step forward') . qq|">| . $locale->text('Fwd') . qq|</a>] |
129 |
</td>|; |
|
130 |
} |
|
131 |
print qq| |
|
125 |
<!-- is there any better solution for Back? Possibly with the callback variable? --> |
|
126 |
</td> |
|
132 | 127 |
<td align="right" style="vertical-align:middle; color:white; font-family:verdana,arial,sans-serif; font-size: 12px;" nowrap>| |
133 | 128 |
. $login . $datum . qq| <script>writeclock()</script> |
134 | 129 |
</td> |
Auch abrufbar als: Unified diff
Revert "Das (linksseitige) HTML-Menü komaptibel zum Textbrowser Links gemacht."
This reverts commit d2d63d80de28c7356e81eb1143d729e4415cd1b4.
Das klappt so nicht. kopf.pl kann durchaus auch alleine aufgerufen werden ohne menu einzubinden, und selbst wenn darf framesize nicht einfach als globale Variable rumlungern. Siehe Dokumentation doc/INSTALL.fcgi (Entwicklungsaspekte) und Doku in SL/Dispatcher.pm Zeile 71.