openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 5bd4d38e9b87190740945e4e672124302c4ab221
parent 83ab2384143c3eb122064db2cd9ef024b4b1d6d3
Author: dankert <devnull@localhost>
Date:   Thu, 25 Sep 2003 21:26:27 +0200

*** empty log message ***

Diffstat:
themes/default/pages/html/frameset.tpl.php | 21+++++++++++++++++++++
themes/default/pages/html/frameset/main.tpl.php | 12++++++++++++
themes/default/pages/html/header.tpl.php | 63+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 96 insertions(+), 0 deletions(-)

diff --git a/themes/default/pages/html/frameset.tpl.php b/themes/default/pages/html/frameset.tpl.php @@ -0,0 +1,20 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN"> +<html> +<!-- $Id$ --> +<head> +<title><?php echo $title ?></title> +</head> + +<frameset rows="20,*" border="0" frameborder="5" framespacing="0" bordercolor="#000000"> + <frame src="<?php echo sid($frame_src_title) ?>" name="cms_title" marginheight="0" marginwidth="0" scrolling="no"> + <frameset cols="<?php echo $tree_width ?>,*" border="0" frameborder="0" framespacing="0" bordercolor="grey"> + <frameset rows="70,*" border="0" frameborder="0" framespacing="0" bordercolor="#000000"> + <frame src="<?php echo sid($frame_src_treemenu) ?>" name="cms_treemenu" marginheight="0" marginwidth="0" scrolling="no"> + + <frame src="<?php echo sid($frame_src_tree) ?>" name="cms_tree" marginheight="0" marginwidth="0" scrolling="auto"> + </frameset> + <frame src="<?php echo sid($frame_src_main) ?>" name="cms_main" marginheight="0" marginwidth="0" frameborder="0" scrolling="no"> + </frameset> +</frameset> + +</html>+ \ No newline at end of file diff --git a/themes/default/pages/html/frameset/main.tpl.php b/themes/default/pages/html/frameset/main.tpl.php @@ -0,0 +1,11 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN"> +<html> +<!-- $Id$ --> +<head> +<title></title> +</head> + <frameset rows="70,*" border="0" frameborder="0" framespacing="0"> + <frame src="<?php echo sid($frame_src_main_menu) ?>" name="cms_main_menu" marginheight="0" marginwidth="0" scrolling="no"> + <frame src="<?php echo sid($frame_src_main_main) ?>" name="cms_main_main" marginheight="0" marginwidth="0" scrolling="auto"> + </frameset> +</html>+ \ No newline at end of file diff --git a/themes/default/pages/html/header.tpl.php b/themes/default/pages/html/header.tpl.php @@ -0,0 +1,63 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> +<html> +<!-- $Id$ --> +<head> +<title><?php echo $cms_title ?></title> +<meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> +<meta name="MSSmartTagsPreventParsing" content="TRUE"> +<meta name="robots" content="noindex,nofollow"> +<meta http-equiv="expires" content="0"> +<meta http-equiv="cache-control" content="no-cache"> +<meta http-equiv="pragma" content="no-cache"> +<link rel="stylesheet" type="text/css" href="<?php echo $stylesheet ?>"> +<?php if (isset($request_timeout)) + { ?> +<meta http-equiv="refresh" content="<?php echo $refresh_timeout ?>;url=<?php echo $refresh_url ?>"> +<?php } ?> + +<?php if (isset($id)) + { +?> +<script language="JavaScript" type="text/javascript"> +<!-- +function mark( id ) +{ + if( (document.getElementById) && (top.cms_tree.document.getElementById( id )!=null) ) + { + var el = top.cms_tree.document.getElementById( id ); + + if ((el.style)&& (el.style.backgroundColor!=null)) + { + el.style.backgroundColor = "#7B9CBD"; + } + } +} +function unmark( id ) +{ + if( (document.getElementById) && (top.cms_tree.document.getElementById( id )!=null) ) + { + var el = top.cms_tree.document.getElementById( id ); + + if ((el.style)&& (el.style.backgroundColor!=null)) + { + el.style.backgroundColor = "#dad2b6"; + } + } +} +//--> +</script> +<?php } ?> + + +</head> + +<body<?php if($css_body_class!="")echo ' class="'.$css_body_class.'"' ?><?php if(isset($id)) echo ' onLoad="mark('."'".$id."'".')" onUnload="unmark('."'".$id."'".')"' ?>> + +<?php if ( $tree_refresh ) + { ?> +<script name="JavaScript"> +<!-- +top.cms_tree.location.href='tree.<?php echo $conf_php ?>?refresh=1&jo=1&<?php echo session_name() ?>=<?php echo session_id() ?>'; +//--> +</script> +<?php } ?>