owls
annotate 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 |
rev | line source |
---|---|
meillo@0 | 1 <?php |
meillo@0 | 2 |
meillo@0 | 3 define('DB_PREFIX', 'rem__1_'); |
meillo@0 | 4 define('TITLE', 'Owls'); |
meillo@0 | 5 |
meillo@0 | 6 require_once '../Db.inc.php'; |
meillo@0 | 7 require_once 'Includes/Loginsys.class.php'; |
meillo@0 | 8 include_once 'Includes/Bbcodeparser.inc.php'; |
meillo@0 | 9 |
meillo@0 | 10 $lsys = &new Loginsys(); |
meillo@0 | 11 |
meillo@0 | 12 ?> |
meillo@0 | 13 <!-- |
meillo@0 | 14 |
meillo@0 | 15 `Owls' - some kind of wiki system |
meillo@0 | 16 |
meillo@0 | 17 |
meillo@0 | 18 (c) Copyright 2006 &> by Meillo r e t u r n s |
meillo@0 | 19 |
meillo@0 | 20 This program is free software; you can redistribute it and/or |
meillo@0 | 21 modify it under the terms of the GNU General Public License |
meillo@0 | 22 as published by the Free Software Foundation; either version 2 |
meillo@0 | 23 of the License, or (at your option) any later version. |
meillo@0 | 24 |
meillo@0 | 25 This program is distributed in the hope that it will be useful, |
meillo@0 | 26 but WITHOUT ANY WARRANTY; without even the implied warranty of |
meillo@0 | 27 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
meillo@0 | 28 GNU General Public License for more details. |
meillo@0 | 29 |
meillo@0 | 30 |
meillo@0 | 31 http://prog.marmaro.de/owls/ |
meillo@0 | 32 |
meillo@0 | 33 --> |
meillo@0 | 34 |
meillo@0 | 35 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
meillo@0 | 36 |
meillo@0 | 37 <html xml:lang="de" xmlns="http://www.w3.org/1999/xhtml"> |
meillo@0 | 38 <head> |
meillo@0 | 39 <title><?php echo htmlentities(TITLE); ?></title> |
meillo@0 | 40 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> |
meillo@0 | 41 <link rel="shortcut icon" href="favicon.ico" /> |
meillo@0 | 42 <link rel="stylesheet" type="text/css" href="Owls.css.php" /> |
meillo@0 | 43 <script type="text/javascript"> |
meillo@0 | 44 <!-- |
meillo@0 | 45 function sureToDelete(id) { |
meillo@0 | 46 if (window.prompt("Type 'delete' to delete","") == "delete") { |
meillo@0 | 47 location.href = id +"d"; |
meillo@0 | 48 } |
meillo@0 | 49 } |
meillo@0 | 50 |
meillo@0 | 51 |
meillo@0 | 52 function toggleVisibility(boxId) { |
meillo@0 | 53 if (document.getElementById('node'+ boxId).style.display == 'none') { |
meillo@0 | 54 document.getElementById('node'+ boxId).style.display = ""; |
meillo@0 | 55 document.getElementById('ctrl'+ boxId).firstChild.nodeValue = "-"; |
meillo@0 | 56 } else{ |
meillo@0 | 57 document.getElementById('node'+ boxId).style.display = "none"; |
meillo@0 | 58 document.getElementById('ctrl'+ boxId).firstChild.nodeValue = "+"; |
meillo@0 | 59 } |
meillo@0 | 60 } |
meillo@0 | 61 |
meillo@0 | 62 //--> |
meillo@0 | 63 </script> |
meillo@0 | 64 </head> |
meillo@0 | 65 |
meillo@0 | 66 <body> |
meillo@0 | 67 <div id="websiteContainer"> |
meillo@0 | 68 |
meillo@0 | 69 <!-- Banner --> |
meillo@0 | 70 <img src="Banner.png" id="banner" alt="<?php echo htmlentities(TITLE); ?>" /> |
meillo@0 | 71 |