From: Manuel Penschuck Date: Tue, 29 Jan 2013 20:25:01 +0000 (+0100) Subject: Additional information in index-page X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=19269e296692a560198a045780b9070c11a8608a;p=daqtools.git Additional information in index-page --- diff --git a/web/htdocs/index.html b/web/htdocs/index.html old mode 100644 new mode 100755 index 551937d..aab7872 --- a/web/htdocs/index.html +++ b/web/htdocs/index.html @@ -1,3 +1,13 @@ +#!/usr/bin/env perl + +use CGI qw/:standard/; +print "HTTP/1.0 200 OK\n"; +print header("text/html"); + +my $dn = $ENV{'PWD'}; +my $daqop = $ENV{'DAQOPSERVER'}; + +print <<"HTML_DOCUMENT" @@ -33,5 +43,21 @@ The main documentation of the network can be found in these two documents:
  • Network Map + +

    Server Details

    +
    + + + + + + + + + +
    Location
    $dn
    DAQ OP Server
    $daqop
    +
    - \ No newline at end of file + +HTML_DOCUMENT +; \ No newline at end of file diff --git a/web/htdocs/layout/styles.css b/web/htdocs/layout/styles.css index d566560..aef2778 100644 --- a/web/htdocs/layout/styles.css +++ b/web/htdocs/layout/styles.css @@ -232,5 +232,12 @@ table#content.map td + td + td + td + td{width:120px;} margin-top:3px; } +table#server-details td.label { + padding-right: 10px; +} +table#server-details pre { + display: inline; +} +