anzeige detr svn version im titel

git-svn-id: svn://svn.cccv.de/engel-system@148 29ba0400-6e00-0410-a75a-ca02368028f8
This commit is contained in:
cookie 2006-08-31 05:22:05 +00:00
parent 6dd3e7e17e
commit 215bab4d4a
1 changed files with 16 additions and 1 deletions

View File

@ -35,7 +35,22 @@ echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n";
<HTML> <HTML>
<HEAD> <HEAD>
<?PHP <?PHP
echo "<TITLE>--- $title ---</TITLE>";
$Version = "";
if( is_readable( "./inc/.svn/entries"))
{
$file = fopen( "./inc/.svn/entries", "r");
while(!feof($file))
if( strpos( ($temp = fgets($file)) , "revision" ) ) $Version = $temp;
fclose( $file);
$start = strpos( $Version, "=\"")+2;
$len = strpos( $Version, "\"/") - $start;
$Version = "(r ". substr( $Version, $start, $len ). ")";
}
echo "<TITLE>--- $title $Version ---</TITLE>";
?> ?>
<meta name="keywords" content="Engel, Himmelsverwaltung"> <meta name="keywords" content="Engel, Himmelsverwaltung">
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">