Revision 1342
Added by Luisehahne over 15 years ago
| branches/2.8.x/CHANGELOG | ||
|---|---|---|
| 12 | 12 |
|
| 13 | 13 |
------------------------------------- 2.8.1 ------------------------------------- |
| 14 | 14 |
02-May-2010 Dietmar Woellbrink (Luisehahne) |
| 15 |
! remove some unneeded code in backend themes templates |
|
| 16 |
! see forum: JQuery und Backend-Theme |
|
| 17 |
02-May-2010 Dietmar Woellbrink (Luisehahne) |
|
| 15 | 18 |
! add lang variable for new userform |
| 16 | 19 |
02-May-2010 Dietmar Woellbrink (Luisehahne) |
| 17 | 20 |
! added IdKey to class secureForm |
| branches/2.8.x/wb/admin/interface/version.php | ||
|---|---|---|
| 52 | 52 |
|
| 53 | 53 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
| 54 | 54 |
if(!defined('VERSION')) define('VERSION', '2.8.x');
|
| 55 |
if(!defined('REVISION')) define('REVISION', '1341');
|
|
| 55 |
if(!defined('REVISION')) define('REVISION', '1342');
|
|
| 56 | 56 |
|
| 57 | 57 |
?> |
| branches/2.8.x/wb/framework/class.wb.php | ||
|---|---|---|
| 289 | 289 |
$tpl->set_var( 'REDIRECT', $redirect ); |
| 290 | 290 |
$tpl->set_var( 'REDIRECT_TIMER', $redirect_timer ); |
| 291 | 291 |
$tpl->set_var( 'NEXT', $TEXT['NEXT'] ); |
| 292 |
$tpl->set_var( 'BACK', $TEXT['BACK'] ); |
|
| 292 | 293 |
if ($redirect_timer == 0) {
|
| 293 | 294 |
$tpl->set_block( 'show_redirect', '' ); |
| 294 | 295 |
} |
| branches/2.8.x/wb/templates/wb_theme/templates/footer.htt | ||
|---|---|---|
| 13 | 13 |
</td> |
| 14 | 14 |
</tr> |
| 15 | 15 |
</table> |
| 16 |
<!-- full skip link functionality in webkit browsers --> |
|
| 17 |
|
|
| 18 |
<script src="{THEME_URL}/jquery/webkit-focusfix.js" type="text/javascript"></script>
|
|
| 19 |
|
|
| 20 |
|
|
| 21 | 16 |
{BACKEND_BODY_MODULE_JS}
|
| 22 | 17 |
</body> |
| 23 | 18 |
</html> |
| branches/2.8.x/wb/templates/wb_theme/templates/success.htt | ||
|---|---|---|
| 1 |
<!-- BEGIN main_block --> |
|
| 2 |
<center> |
|
| 3 |
|
|
| 4 |
{MESSAGE}
|
|
| 5 |
|
|
| 6 |
<script language="javascript" type="text/javascript"> |
|
| 7 |
setTimeout("location.href='{REDIRECT}'", {REDIRECT_TIMER});
|
|
| 8 |
</script> |
|
| 9 |
|
|
| 10 |
<noscript> |
|
| 11 |
<br /><br /> |
|
| 12 |
<a href="{REDIRECT}">{NEXT}</a>
|
|
| 13 |
</noscript> |
|
| 14 |
|
|
| 15 |
</center> |
|
| 1 |
<!-- BEGIN main_block --> |
|
| 2 |
<div class="error_box"> |
|
| 3 |
<p>{MESSAGE}</p>
|
|
| 4 |
<!-- BEGIN show_redirect_block --> |
|
| 5 |
<script language="javascript" type="text/javascript"> |
|
| 6 |
setTimeout("location.href='{REDIRECT}'", {REDIRECT_TIMER});
|
|
| 7 |
</script> |
|
| 8 |
<!-- END show_redirect_block --> |
|
| 9 |
<p><a href="{REDIRECT}" title="{NEXT}">{BACK}</a></p>
|
|
| 10 |
</div> |
|
| 16 | 11 |
<!-- END main_block --> |
| branches/2.8.x/wb/templates/argos_theme/templates/footer.htt | ||
|---|---|---|
| 15 | 15 |
</tr> |
| 16 | 16 |
</table> |
| 17 | 17 |
</div> |
| 18 |
<script src="{THEME_URL}/jquery/webkit-focusfix.js" type="text/javascript"></script>
|
|
| 19 | 18 |
{BACKEND_BODY_MODULE_JS}
|
| 20 | 19 |
</body> |
| 21 | 20 |
</html> |
| branches/2.8.x/wb/templates/argos_theme/templates/success.htt | ||
|---|---|---|
| 1 | 1 |
<!-- BEGIN main_block --> |
| 2 |
<center> |
|
| 3 |
|
|
| 4 |
{MESSAGE}
|
|
| 5 |
|
|
| 6 |
<script type="text/javascript"> |
|
| 7 |
setTimeout("location.href='{REDIRECT}'", {REDIRECT_TIMER});
|
|
| 8 |
</script> |
|
| 9 |
|
|
| 10 |
<noscript> |
|
| 11 |
<br /><br /> |
|
| 12 |
<a href="{REDIRECT}">{NEXT}</a>
|
|
| 13 |
</noscript> |
|
| 14 |
|
|
| 15 |
</center> |
|
| 2 |
<div class="error_box"> |
|
| 3 |
<p>{MESSAGE}</p>
|
|
| 4 |
<!-- BEGIN show_redirect_block --> |
|
| 5 |
<script language="javascript" type="text/javascript"> |
|
| 6 |
setTimeout("location.href='{REDIRECT}'", {REDIRECT_TIMER});
|
|
| 7 |
</script> |
|
| 8 |
<!-- END show_redirect_block --> |
|
| 9 |
<p><a href="{REDIRECT}" title="{NEXT}">{BACK}</a></p>
|
|
| 10 |
</div> |
|
| 16 | 11 |
<!-- END main_block --> |
| branches/2.8.x/wb/templates/argos_theme/templates/header.htt | ||
|---|---|---|
| 8 | 8 |
<meta name="description" content="{TEXT_ADMINISTRATION}" />
|
| 9 | 9 |
<meta name="keywords" content="{TEXT_ADMINISTRATION}" />
|
| 10 | 10 |
<link href="{THEME_URL}/theme.css" rel="stylesheet" type="text/css" />
|
| 11 |
<!-- |
|
| 12 |
<link href="{WB_URL}/include/jquery/jquery-ui.css" rel="stylesheet" type="text/css" />
|
|
| 13 |
--> |
|
| 14 | 11 |
{BACKEND_MODULE_CSS}
|
| 15 | 12 |
<script type="text/javascript"> |
| 16 | 13 |
var WB_URL = '{WB_URL}';
|
| ... | ... | |
| 56 | 53 |
<table cellpadding="0" cellspacing="0" border="0" width="900" align="center"> |
| 57 | 54 |
<tr> |
| 58 | 55 |
<td class="content"> |
| 59 |
<!-- END header_block --> |
|
| 56 |
<!-- END header_block --> |
|
Also available in: Unified diff
remove some unneeded code in backend themes templates
see forum: JQuery und Backend-Theme