owls

diff Includes/Header.inc.php @ 0:3021ce32ee14

begin of using hg for owls
author "Meillo r e t u r n s <meillo@marmaro.de>"
date Sun, 03 Dec 2006 22:32:13 +0100
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/Includes/Header.inc.php	Sun Dec 03 22:32:13 2006 +0100
     1.3 @@ -0,0 +1,71 @@
     1.4 +<?php
     1.5 +
     1.6 +  define('DB_PREFIX', 'rem__1_');
     1.7 +  define('TITLE', 'Owls');
     1.8 +
     1.9 +  require_once '../Db.inc.php';
    1.10 +  require_once 'Includes/Loginsys.class.php';
    1.11 +  include_once 'Includes/Bbcodeparser.inc.php';
    1.12 +
    1.13 +  $lsys = &new Loginsys();
    1.14 +
    1.15 +?>
    1.16 +<!--
    1.17 +
    1.18 +                       `Owls' - some kind of wiki system
    1.19 +
    1.20 +
    1.21 +                (c) Copyright  2006 &>  by Meillo  r e t u r n s
    1.22 +
    1.23 +         This program is free software; you can redistribute it and/or
    1.24 +          modify it under the terms of the GNU General Public License
    1.25 +         as published by the Free Software Foundation; either version 2
    1.26 +             of the License, or (at your option) any later version.
    1.27 +
    1.28 +        This program is distributed in the hope that it will be useful,
    1.29 +         but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.30 +         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.31 +                  GNU General Public License for more details.
    1.32 +
    1.33 +
    1.34 +                          http://prog.marmaro.de/owls/
    1.35 +
    1.36 +-->
    1.37 +
    1.38 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    1.39 +
    1.40 +<html xml:lang="de" xmlns="http://www.w3.org/1999/xhtml">
    1.41 +<head>
    1.42 +  <title><?php echo htmlentities(TITLE); ?></title>
    1.43 +  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    1.44 +  <link rel="shortcut icon" href="favicon.ico" />
    1.45 +  <link rel="stylesheet" type="text/css" href="Owls.css.php" />
    1.46 +  <script type="text/javascript">
    1.47 +  <!--
    1.48 +    function sureToDelete(id) {
    1.49 +      if (window.prompt("Type 'delete' to delete","") == "delete") {
    1.50 +        location.href = id +"d";
    1.51 +      }
    1.52 +    }
    1.53 +
    1.54 +    
    1.55 +    function toggleVisibility(boxId) {
    1.56 +      if (document.getElementById('node'+ boxId).style.display == 'none') {
    1.57 +        document.getElementById('node'+ boxId).style.display = "";
    1.58 +        document.getElementById('ctrl'+ boxId).firstChild.nodeValue = "-";
    1.59 +      } else{
    1.60 +        document.getElementById('node'+ boxId).style.display = "none";
    1.61 +        document.getElementById('ctrl'+ boxId).firstChild.nodeValue = "+";
    1.62 +      }
    1.63 +    }
    1.64 +    
    1.65 +  //-->  
    1.66 +  </script>
    1.67 +</head>
    1.68 +
    1.69 +<body>
    1.70 +<div id="websiteContainer">
    1.71 +
    1.72 +  <!-- Banner -->
    1.73 +  <img src="Banner.png" id="banner" alt="<?php echo htmlentities(TITLE); ?>" />
    1.74 +