[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [hobbit] Tables in hobbit
- To: hobbit (at) hswn.dk
- Subject: Re: [hobbit] Tables in hobbit
- From: Henrik Stoerner <henrik (at) hswn.dk>
- Date: Tue, 29 Jan 2008 15:53:06 +0100
- References: <4AC209E5463B744F9F34FA57C0DF51340891463F (at) PRVPVSMAIL09.corp.twcable.com>
- User-agent: Mutt/1.5.15+20070412 (2007-04-11)
On Tue, Jan 29, 2008 at 08:12:06AM -0500, Krause, Josh wrote:
> I am trying to find out how to get hobbit to display tables in my test
> column. I have a script I am throwing together and I am trying to find
> out how I would need to start off building the script to show tables.
Embed the HTML for your table in the status message. E.g.
$BB $BBDISP "status $MACHINE.mytest green `date`
<table border=1>
<tr><th>Heading 1</th><th>Heading 2</th></tr>
<tr><td>Value 1</td><td>Value 2</td></tr>
<tr><td>Line 2-1</td><td>Line 2-2</td></tr>
</table>
"
Henrik