Xymon Mailing List Archive search

Next Hobbit Version

11 messages in this thread

list Geoff Hallford · Tue, 13 Mar 2007 19:07:18 -0400 ·
Hi Henrik,

I have been part of this list for quite a while now and have seen many
features discussed and suggested in that time. Some of them are great
features but since I run this at work to monitor about 6 organizations, I
cannot take advantage of these new features until a new stable version is
released.

Do you know approx. when the next stable version will be released?

Thanks again for the great product!

Geoff
list Henrik Størner · Wed, 14 Mar 2007 07:40:07 +0100 ·
Hi Geoff,
quoted from Geoff Hallford

On Tue, Mar 13, 2007 at 07:07:18PM -0400, Geoff Hallford wrote:
I have been part of this list for quite a while now and have seen many
features discussed and suggested in that time. Some of them are great
features but since I run this at work to monitor about 6 organizations, I
cannot take advantage of these new features until a new stable version is
released.

Do you know approx. when the next stable version will be released?
Unfortunately, the answer is "no".

My best guess right now is for late Spring / early Summer, but I've
been wrong before.


Regards,
Henrik
list Geoff Hallford · Wed, 14 Mar 2007 08:32:16 -0400 ·
Okay. I will wait patiently.

Thanks.
quoted from Henrik Størner

On 3/14/07, Henrik Stoerner <user-ce4a2c883f75@xymon.invalid> wrote:
Hi Geoff,

On Tue, Mar 13, 2007 at 07:07:18PM -0400, Geoff Hallford wrote:
I have been part of this list for quite a while now and have seen many
features discussed and suggested in that time. Some of them are great
features but since I run this at work to monitor about 6 organizations,
I
cannot take advantage of these new features until a new stable version
is
released.

Do you know approx. when the next stable version will be released?
Unfortunately, the answer is "no".

My best guess right now is for late Spring / early Summer, but I've
been wrong before.


Regards,
Henrik

list Steve Aiello · Thu, 15 Mar 2007 16:19:55 -0400 ·
Are there &keywords to access the other hobbit icons in reports ?  I
know &red will provide the red.gif.  But is there a & keyword that I can
get the red-recent.gif  or red-ack.gif icons ?
list Henrik Størner · Fri, 16 Mar 2007 08:00:13 +0100 ·
quoted from Steve Aiello
On Thu, Mar 15, 2007 at 04:19:55PM -0400, Aiello, Steve (GE, Corporate, consultant) wrote:
Are there &keywords to access the other hobbit icons in reports ?  I
know &red will provide the red.gif.  But is there a & keyword that I can
get the red-recent.gif  or red-ack.gif icons ?
No, but this patch should do it. Applies to 4.2.0 and current snapshots.
You can then use "&red-ack bla bla" or "&red-recent bla bla" in your
status messages.


Regards
Henrik

-------------- next part --------------
--- lib/htmllog.c	2006/11/17 14:50:01	1.53
+++ lib/htmllog.c	2007/03/16 06:58:57
@@ -93,26 +93,38 @@
 
 	restofmsg = msg;
 	do {
-		int color;
+		int color, acked, recent;
 
+		color = -1; acked = recent = 0;
 		p = strchr(restofmsg, '&');
 		if (p) {
 			*p = '\0';
 			fprintf(output, "%s", restofmsg);
 			*p = '&';
 
-			color = parse_color(p+1);
+			if (strncmp(p, "&red", 4) == 0) color = COL_RED;
+			else if (strncmp(p, "&yellow", 7) == 0) color = COL_YELLOW;
+			else if (strncmp(p, "&green", 6) == 0) color = COL_GREEN;
+			else if (strncmp(p, "&clear", 6) == 0) color = COL_CLEAR;
+			else if (strncmp(p, "&blue", 5) == 0) color = COL_BLUE;
+			else if (strncmp(p, "&purple", 7) == 0) color = COL_PURPLE;
• if (color == -1) {
 				fprintf(output, "&");
 				restofmsg = p+1;
 			}
 			else {
+				acked = (strncmp(p + 1 + strlen(colorname(color)), "-acked", 6) == 0);
+				recent = (strncmp(p + 1 + strlen(colorname(color)), "-recent", 7) == 0);
• fprintf(output, "<IMG SRC=\"%s/%s\" ALT=\"%s\" HEIGHT=\"%s\" WIDTH=\"%s\" BORDER=0>",
-                                                        xgetenv("BBSKIN"), dotgiffilename(color, 0, 0),
+                                                        xgetenv("BBSKIN"), dotgiffilename(color, acked, !recent),
 							colorname(color),
                                                         xgetenv("DOTHEIGHT"), xgetenv("DOTWIDTH"));
 
 				restofmsg = p+1+strlen(colorname(color));
+				if (acked) restofmsg += 6;
+				if (recent) restofmsg += 7;
 			}
 		}
 		else {
list Steve Aiello · Fri, 16 Mar 2007 08:03:24 -0400 ·
Thank you very much. This was needed for the migration to Hobbit project
I am working on. Normally migrating to Hobbit is cake (thank you for
that). My biggest hurdle is converting over all the customization and
special tests that were created using BigBrother. 
The keyword for ack icons is &red-acked not red-ack, not sure if you
meant this. &red-recent seems to just reference the red.gif, not the
red-recent.gif. Presently I do not need to access the -recent gifs, but
I figured I would let you know.

Speaking of Icons, I have created a new set of status icons. These icons
fit a corporate environment a little better.  I really don't understand
it, but some Execs do not find colorized faces humurous. My goal was to
create something that is simple, clean, good looking, and to not just
rely on color but different shapes for those color blind people. I have
also made all the -recent icons animate, to catch attention when
statuses have recently change (the amination is to pulse).

So if any are interested.. I am happy to share. It is still a work in
progress, I just redid the checkmark icons this morning. If you like,
this can be put up on the shire too.

 ~Steve
quoted from Henrik Størner
-----Original Message-----
From: Henrik Stoerner [mailto:user-ce4a2c883f75@xymon.invalid] Sent: Friday, March 16, 2007 2:00 AM
To: user-ae9b8668bcde@xymon.invalid
Subject: Re: [hobbit] Icon Keywords


On Thu, Mar 15, 2007 at 04:19:55PM -0400, Aiello, Steve (GE, Corporate, consultant) wrote:
Are there &keywords to access the other hobbit icons in reports ?  I > know &red will provide the red.gif.  But is there a & keyword that I > can get the red-recent.gif  or red-ack.gif icons ?
No, but this patch should do it. Applies to 4.2.0 and current snapshots. You can then use "&red-ack bla bla" or "&red-recent bla bla" in your status messages.


Regards
Henrik

list Johann Eggers · Fri, 16 Mar 2007 13:08:53 +0100 ·
-----Original Message-----
From: Aiello, Steve (GE, Corporate, consultant)
[mailto:user-49fae449733a@xymon.invalid]
Sent: Freitag, 16. März 2007 13:03
quoted from Steve Aiello
To: user-ae9b8668bcde@xymon.invalid
Subject: RE: [hobbit] Icon Keywords


Speaking of Icons, I have created a new set of status icons. These icons
fit a corporate environment a little better.  I really don't understand
it, but some Execs do not find colorized faces humurous. My goal was to
create something that is simple, clean, good looking, and to not just
rely on color but different shapes for those color blind people. I have
also made all the -recent icons animate, to catch attention when
statuses have recently change (the amination is to pulse).

So if any are interested.. I am happy to share. It is still a work in
progress, I just redid the checkmark icons this morning. If you like,
this can be put up on the shire too.

 ~Steve
Would be great if you'll put this on shire (or somewhere else...)
list Martin Flemming · Fri, 16 Mar 2007 13:10:51 +0100 (CET) ·
Hi, Steve !
this can be put up on the shire too.
I think this will be a good idea !

Cheers,
        Martin
quoted from Steve Aiello

From: Aiello, Steve (GE, Corporate, consultant)
Thank you very much. This was needed for the migration to Hobbit project
I am working on. Normally migrating to Hobbit is cake (thank you for
that). My biggest hurdle is converting over all the customization and
special tests that were created using BigBrother. 
The keyword for ack icons is &red-acked not red-ack, not sure if you
meant this. &red-recent seems to just reference the red.gif, not the
red-recent.gif. Presently I do not need to access the -recent gifs, but
I figured I would let you know.

Speaking of Icons, I have created a new set of status icons. These icons
fit a corporate environment a little better.  I really don't understand
it, but some Execs do not find colorized faces humurous. My goal was to
create something that is simple, clean, good looking, and to not just
rely on color but different shapes for those color blind people. I have
also made all the -recent icons animate, to catch attention when
statuses have recently change (the amination is to pulse).

So if any are interested.. I am happy to share. It is still a work in
progress, I just redid the checkmark icons this morning. If you like,
this can be put up on the shire too.

 ~Steve
-----Original Message-----
From: Henrik Stoerner [mailto:user-ce4a2c883f75@xymon.invalid] > Sent: Friday, March 16, 2007 2:00 AM
To: user-ae9b8668bcde@xymon.invalid
Subject: Re: [hobbit] Icon Keywords
On Thu, Mar 15, 2007 at 04:19:55PM -0400, Aiello, Steve (GE, > Corporate, consultant) wrote:
Are there &keywords to access the other hobbit icons in > reports ?  I > > know &red will provide the red.gif.  But is there a & > keyword that I > > can get the red-recent.gif  or red-ack.gif icons ?
No, but this patch should do it. Applies to 4.2.0 and current > snapshots. You can then use "&red-ack bla bla" or > "&red-recent bla bla" in your status messages.
Regards
Henrik
list Henrik Størner · Fri, 16 Mar 2007 13:17:08 +0100 ·
quoted from Martin Flemming
On Fri, Mar 16, 2007 at 08:03:24AM -0400, Aiello, Steve (GE, Corporate, consultant) wrote:
The keyword for ack icons is &red-acked not red-ack, not sure if you
meant this. &red-recent seems to just reference the red.gif, not the
red-recent.gif. Presently I do not need to access the -recent gifs, but
I figured I would let you know.
Thanks, yes the "red-acked" is indeed what it should be. My mail went
out a bit fast this morning.

The "recent" gifs apparently depend on a particular option being set
which is currently only manipulated by the bbgen utility, so it doesn't
kick in for the CGI utilities that show the status logs. I'll find some
way of tweaking that, e.g. is you reference the "abc-recent" icon then
it will make it work.
quoted from Martin Flemming
Speaking of Icons, I have created a new set of status icons. These icons
fit a corporate environment a little better.  I really don't understand
it, but some Execs do not find colorized faces humurous. My goal was to
create something that is simple, clean, good looking, and to not just
rely on color but different shapes for those color blind people. I have
also made all the -recent icons animate, to catch attention when
statuses have recently change (the amination is to pulse).
Please send them to me, and I'll include them with the Hobbit distro.
The current set of images were picked for one simple reason: I wanted
something that I could distribute without fear of copyright
infringement, and the current set of images were GPL released. So if
you're willing to make your icons available under GPL or some other OSS
license, that would be very welcome.


Regards,
Henrik
list Steve Aiello · Mon, 19 Mar 2007 09:51:55 -0400 ·
Henrik and Shire Mailing List where sent attachments of the icon set so
far. I haven't heard anything, so guessing email got lost in Spam
buckets. Just figured I would send out an FYI that they were emailed on
Friday.

 ~Steve
quoted from Martin Flemming
-----Original Message-----
From: Martin Flemming [mailto:user-f286aaa49a76@xymon.invalid] Sent: Friday, March 16, 2007 7:11 AM
To: user-ae9b8668bcde@xymon.invalid
Subject: RE: [hobbit] Icon Keywords


Hi, Steve !
this can be put up on the shire too.
I think this will be a good idea !

Cheers,
        Martin

From: Aiello, Steve (GE, Corporate, consultant)
Thank you very much. This was needed for the migration to Hobbit > project I am working on. Normally migrating to Hobbit is cake (thank > you for that). My biggest hurdle is converting over all the > customization and special tests that were created using BigBrother.
The keyword for ack icons is &red-acked not red-ack, not sure if you > meant this. &red-recent seems to just reference the red.gif, not the > red-recent.gif. Presently I do not need to access the -recent gifs, > but I figured I would let you know.
Speaking of Icons, I have created a new set of status icons. These > icons fit a corporate environment a little better.  I really don't > understand it, but some Execs do not find colorized faces humurous. My > goal was to create something that is simple, clean, good looking, and > to not just rely on color but different shapes for those color blind > people. I have also made all the -recent icons animate, to catch > attention when statuses have recently change (the amination is to > pulse).
So if any are interested.. I am happy to share. It is still a work in > progress, I just redid the checkmark icons this morning. If you like, > this can be put up on the shire too.
 ~Steve
-----Original Message-----
From: Henrik Stoerner [mailto:user-ce4a2c883f75@xymon.invalid]
Sent: Friday, March 16, 2007 2:00 AM
To: user-ae9b8668bcde@xymon.invalid
Subject: Re: [hobbit] Icon Keywords
On Thu, Mar 15, 2007 at 04:19:55PM -0400, Aiello, Steve (GE,
Corporate, consultant) wrote:
Are there &keywords to access the other hobbit icons in
reports ?  I
know &red will provide the red.gif.  But is there a &
keyword that I
can get the red-recent.gif  or red-ack.gif icons ?
No, but this patch should do it. Applies to 4.2.0 and current
snapshots. You can then use "&red-ack bla bla" or > > "&red-recent bla bla" in your status messages.
Regards
Henrik
list Henrik Størner · Mon, 19 Mar 2007 22:06:52 +0100 ·
quoted from Steve Aiello
On Mon, Mar 19, 2007 at 09:51:55AM -0400, Aiello, Steve (GE, Corporate, consultant) wrote:
Henrik and Shire Mailing List where sent attachments of the icon set so
far. I haven't heard anything, so guessing email got lost in Spam
buckets. Just figured I would send out an FYI that they were emailed on
Friday.
I did get it :-)


Regards,
Henrik