Xymon Mailing List Archive search

Background GIFs Improperly Displayed on Host-Service Pages

4 messages in this thread

list Jonathan B. Horen · Thu, 24 Mar 2011 12:28:34 -0800 ·
I configured, compiled, and installed xymon-4.3.0 according to the
directions in docs/upgrade-to-430.txt (I've been running xymon-4.3.0beta2
for the past 15 months... with no problems).

Everything works fine... except that the backgrounds displayed on the pages
generated for host-service tests appear to be displayed improperly. Rather
than having a single vertical stripe of color on the left-hand side of the
page, which changes to black over an approximately inch-wide gradient, the
vertical stripe-and-gradient are displayed over and over, across the width
of the page... like waves. It's horribly disconcerting, and I cannot believe
that this is by-design.

Any ideas on what's-what?


-- 
JONATHAN B. HOREN     ARSC/LSI     Systems Administrator
WRRB/008-001     T: (XXX) XXX-XXXX     E: user-12d4882938ba@xymon.invalid
*"After Tuesday, even the calendar says W T F!!"*
list Craig Whilding · Thu, 24 Mar 2011 21:34:43 +0000 ·
This happened to me today updating a 4.2.3 server but the update script also didn't correct the xymonserver.cfg because if my proxying setup changes so I moved the directory out of the way instead and redid the install then did a diff on the configuration files. Before that my cgi directories hadn't worked either. 
quoted from Jonathan B. Horen
On 24 Mar 2011, at 20:29, "Jonathan B. Horen" <user-12d4882938ba@xymon.invalid> wrote:
I configured, compiled, and installed xymon-4.3.0 according to the directions in docs/upgrade-to-430.txt (I've been running xymon-4.3.0beta2 for the past 15 months... with no problems).

Everything works fine... except that the backgrounds displayed on the pages generated for host-service tests appear to be displayed improperly. Rather than having a single vertical stripe of color on the left-hand side of the page, which changes to black over an approximately inch-wide gradient, the vertical stripe-and-gradient are displayed over and over, across the width of the page... like waves. It's horribly disconcerting, and I cannot believe that this is by-design.

Any ideas on what's-what?


-- 
JONATHAN B. HOREN     ARSC/LSI     Systems Administrator
WRRB/008-001     T: (XXX) XXX-XXXX     E: user-12d4882938ba@xymon.invalid
"After Tuesday, even the calendar says W T F!!"

list Jonathan B. Horen · Thu, 24 Mar 2011 13:55:33 -0800 ·
quoted from Jonathan B. Horen
On Thu, Mar 24, 2011 at 12:28 PM, Jonathan B. Horen <user-12d4882938ba@xymon.invalid>wrote:
I configured, compiled, and installed xymon-4.3.0 according to the
directions in docs/upgrade-to-430.txt (I've been running xymon-4.3.0beta2
for the past 15 months... with no problems).

Everything works fine... except that the backgrounds displayed on the pages
generated for host-service tests appear to be displayed improperly. Rather
than having a single vertical stripe of color on the left-hand side of the
page, which changes to black over an approximately inch-wide gradient, the
vertical stripe-and-gradient are displayed over and over, across the width
of the page... like waves. It's horribly disconcerting, and I cannot believe
that this is by-design.

Any ideas on what's-what?
Looking at the page source from the main page and a host-service-test page,
I see that the main page calls for the use of a style sheet:

<!-- Styles for the Xymon body  -->
<link rel="stylesheet" type="text/css" href="/xymon/gifs/xymonbody.css">

while the host-service-test pages do not (setting the background
statically):

<BODY BGCOLOR="green" BACKGROUND="/xymon/gifs/bkg-green.gif"
TEXT="#D8D8BF" LINK="#00FFAA" VLINK="#FFFF44">
list Jonathan B. Horen · Thu, 24 Mar 2011 14:55:57 -0800 ·
quoted from Jonathan B. Horen
On Thu, Mar 24, 2011 at 1:55 PM, Jonathan B. Horen <user-12d4882938ba@xymon.invalid>wrote:
On Thu, Mar 24, 2011 at 12:28 PM, Jonathan B. Horen <user-12d4882938ba@xymon.invalid>wrote:
I configured, compiled, and installed xymon-4.3.0 according to the
directions in docs/upgrade-to-430.txt (I've been running xymon-4.3.0beta2
for the past 15 months... with no problems).

Everything works fine... except that the backgrounds displayed on the
pages generated for host-service tests appear to be displayed improperly.
Rather than having a single vertical stripe of color on the left-hand side
of the page, which changes to black over an approximately inch-wide
gradient, the vertical stripe-and-gradient are displayed over and over,
across the width of the page... like waves. It's horribly disconcerting, and
I cannot believe that this is by-design.

Any ideas on what's-what?
Looking at the page source from the main page and a host-service-test page,
I see that the main page calls for the use of a style sheet:

<!-- Styles for the Xymon body  -->

<link rel="stylesheet" type="text/css" href="/xymon/gifs/xymonbody.css">

while the host-service-test pages do not (setting the background
statically):

<BODY BGCOLOR="green" BACKGROUND="/xymon/gifs/bkg-green.gif" TEXT="#D8D8BF" LINK="#00FFAA" VLINK="#FFFF44">

FIXED!

I edited $XYMONHOME/web/hostsvc_header as follows:

<!-- Styles for the Xymon body  -->
<link rel="stylesheet" type="text/css" href="/xymon/gifs/xymonbody.css">

<!-- The favicon image -->
<link rel="shortcut icon" href="&BBSKIN/favicon-&BBBACKGROUND.ico">
</HEAD>

<BODY class="&BBBACKGROUND">

<BODY BGCOLOR="&BBBACKGROUND" BACKGROUND="&BBSKIN/bkg-&BBBACKGROUND.gif"
TEXT="#D8D8BF" LINK="#00FFAA" VLINK="#FFFF44">

(added what's in blue, and deleted what's in red)