added displau of revsion number
authorarun <arun@nubati.net>
Sun, 14 Jan 2007 13:43:17 +0000 (13:43 +0000)
committerarun <arun>
Sun, 14 Jan 2007 13:43:17 +0000 (13:43 +0000)
css/standard.css
index.php
output.php

index 1e18e613c17a67dd25e8846bc5ee9f99bbe13182..5867588e2b1d946dbfb2f76cfd649f09d7133b36 100644 (file)
@@ -3,6 +3,11 @@
   text-align:center;
   border-bottom:3px solid gray;
 }
+.header p { 
+  position:absolute;
+  right:0;
+  top:0;
+}
 
 .card { 
   position:absolute;
index cd404b3e7da1bef925975977fe9f39d47c75e944..cf6e94c8a1a12e7d6176f559e707631ef14cecba 100644 (file)
--- a/index.php
+++ b/index.php
@@ -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 */
index 32dbd7b86bce476577aae389e90696bc9125875e..911c1842c90f8ef79ff40001cbb40573ba2133b6 100644 (file)
@@ -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