diff options
author | arun <arun@nubati.net> | 2007-01-14 13:43:17 +0000 |
---|---|---|
committer | arun <arun> | 2007-01-14 13:43:17 +0000 |
commit | 97cd169690383b731eedeb13586e07788ee166ce (patch) | |
tree | 2638f7d0e0940de2e943dfad0bee7a2182989c48 | |
parent | 6e709fb780a236b6518653ac392c26a684204462 (diff) | |
download | e-DoKo-97cd169690383b731eedeb13586e07788ee166ce.tar.gz e-DoKo-97cd169690383b731eedeb13586e07788ee166ce.tar.bz2 e-DoKo-97cd169690383b731eedeb13586e07788ee166ce.zip |
added displau of revsion number
-rw-r--r-- | css/standard.css | 5 | ||||
-rw-r--r-- | index.php | 3 | ||||
-rw-r--r-- | output.php | 2 |
3 files changed, 10 insertions, 0 deletions
diff --git a/css/standard.css b/css/standard.css index 1e18e61..5867588 100644 --- a/css/standard.css +++ b/css/standard.css @@ -3,6 +3,11 @@ text-align:center; border-bottom:3px solid gray; } +.header p { + position:absolute; + right:0; + top:0; +} .card { position:absolute; @@ -1,6 +1,9 @@ <?php error_reporting(E_ALL); +global $REV; +$REV ="$Rev$"; + include_once("config.php"); include_once("output.php"); /* html output only */ include_once("db.php"); /* database only */ @@ -230,6 +230,7 @@ function output_home_page() function output_header() { + global $REV; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" @@ -267,6 +268,7 @@ function output_header() <body onload="high_last();"> <div class="header"> <h1> Welcome to E-Doko </h1> +<p> Revision: $REV</p> </div> <?php |