]> git.etc.gen.nz Git - spong.git/commitdiff
added support for setting title frame size in web interface in 3 frame mode
authorStephen L Johnson <sjohnson@monsters.org>
Wed, 15 Nov 2000 17:25:28 +0000 (17:25 +0000)
committerStephen L Johnson <sjohnson@monsters.org>
Wed, 15 Nov 2000 17:25:28 +0000 (17:25 +0000)
config/spong.conf-sample
config/spong.conf.in
src/www-spong.pl

index 6e0d52507c8d9bc70907c149828d6d718606c028..183e442f2bc4ce32318aab772bd9614082168051 100755 (executable)
@@ -1,7 +1,7 @@
 # ---------------------------------------------------------------------------
 # Generic SPONG settings, specifies where files are kept, etc...
 # ---------------------------------------------------------------------------
-# $Id: spong.conf-sample,v 1.1 2000/10/16 14:00:00 sljohnson Exp $
+# $Id: spong.conf-sample,v 1.2 2000/11/15 17:25:28 sljohnson Exp $
 
 $SPONGSLEEP           = 300;     # Sleep time between check cycles. Depreciated
 
@@ -33,6 +33,9 @@ $SPONG_SERVER_ALARM   = 10;  # Timeout for spong-server connection in seconds
 # Number of frames to use in Web Displays
 $WWWFRAMES = 3;      # Can be 2 or 3, defaults to 2
 
+# Title Frame Size (if $WWWFRAMES = 3) (In HTML Frame size specs)
+$WWW_TITLE_SIZE = "40";
+
 # Set to show long host names on Host Summary web display
 $WWW_FQDN = 1;
 
index a0f11a3eb25b5740c92f4930cdb68a2f9cc788fe..f21159a96032d0cdc3e64a497524a44476a8b382 100644 (file)
@@ -1,7 +1,7 @@
 # ---------------------------------------------------------------------------
 # Generic SPONG settings, specifies where files are kept, etc...
 # ---------------------------------------------------------------------------
-# $Id: spong.conf.in,v 1.1 2000/10/09 04:46:41 sljohnson Exp $
+# $Id: spong.conf.in,v 1.2 2000/11/15 17:25:28 sljohnson Exp $
 
 $SPONGSLEEP           = 300;     # Sleep time between check cycles. Depreciated
 
@@ -33,6 +33,9 @@ $SPONG_SERVER_ALARM   = 10;  # Timeout for spong-server connection in seconds
 # Number of frames to use in Web Displays
 $WWWFRAMES = 3;      # Can be 2 or 3, defaults to 2
 
+# Title Frame Size (if $WWWFRAMES = 3) (In HTML Frame size specs)
+$WWW_TITLE_SIZE = "40";
+
 # Set to show long host names on Host Summary web display
 $WWW_FQDN = 1;
 
index 70e87c4cbcd902575d0079e41ef9fe85b733b7fd..9cafc25a7c5f4fcf546e2943f0b27d3d53417d9b 100755 (executable)
@@ -12,7 +12,7 @@
 # (3) Re-did as a client which gets info from the spong-server (07/24/1997)
 # (4) Did a whole bunch of stuff (Ed Hill, 06/18/1998)
 #
-# $Id: www-spong.pl,v 1.17 2000/10/16 15:34:32 sljohnson Exp $
+# $Id: www-spong.pl,v 1.18 2000/11/15 17:25:29 sljohnson Exp $
 
 use Sys::Hostname;
 use Getopt::Long;
@@ -181,7 +181,7 @@ sub toplevel {
    print "Content-type: text/html\n\n";
    print "<html><head>\n";
    print "<title>Spong v$SPONGVER - System Status Monitor</title></head>\n";
-   print "<frameset rows=\"40,*\" border=5 frameboard=no>";
+   print "<frameset rows=\"$main::WWW_FRAME_SIZE,*\" border=5 frameboard=no>";
    print "<frame src=\"$main::WWWSPONG/title\" marginwidth=5 ";
    print "marginheight=5 noshade name=\"title\">\n";
    print "<frame src=\"";