# Is a warning present?
my $warn_present = 0;
-# would be good to have these in the defaults structure. I'll try that later
-my $oneliners_html_pre = "<table>";
-my $oneliners_html_post = "</table>";
-
# Allow setting some defaults for the output blocks.
my %defaults = (
'schedule' => {
# All the one liners together
{
'name' => 'One Liners',
+ 'hide_name' => 1,
'type' => 'sub',
'template' => '',
'template_html' => '',
- 'sub' => sub { return 'Place holder' },
+ 'template_html_pre' => '<table>',
+ 'template_html_post' => '</table>',
+ 'sub' => sub { return 'One Liners Place holder' },
},
# Date/Time from server
} elsif ($block->{'type'} eq 'sub') {
if (defined $block->{'sub'}) {
- $result = &{ $block->{'sub'} }($block);
- $result_html = &{ $block->{'sub'} }($block) if (defined $block->{'template_html'});
+ ($result, $result_html) = &{ $block->{'sub'} }($block);
+ $result_html ||= $result;
}
}
if ($block->{'format'} eq 'one line') {
push @oneliners, [ $block->{'name'}, $result ];
} else {
- $output .= "$block->{'name'}:\n";
+ $output .= "$block->{'name'}:\n"
+ unless defined $block->{'hide_name'};
$output .= $result . "\n\n";
}
}
if (defined $result_html && $result_html ne '' && ! defined $hide) {
$exit_value ||= $warn_present;
+
+ $result_html =
+ ($block->{'template_html_pre'} ? $block->{'template_html_pre'} : '')
+ . $result_html
+ . ($block->{'template_html_post'} ? $block->{'template_html_post'} : '');
+
if ($block->{'format'} eq 'one line') {
push @oneliners_html, [ "<tr><th>$block->{'name'}</th>", $result_html ];
} else {
- $html .= "<h2>$block->{'name'}</h2>\n";
+ $html .= "<h2>$block->{'name'}</h2>\n"
+ unless defined $block->{'hide_name'};
$html .= $result_html . "\n\n";
}
}
}
# What a hacky way of putting the one liners where I want them...
- $output =~ s/^One Liners:\nPlace holder\n/$oneliners/m;
+ $output =~ s/^One Liners Place holder\n/$oneliners/m;
}
# Deal with the one liners for html - this should probably be a sub now
if (scalar(@oneliners_html) > 0) {
-
- # Find the longest header
- $length = 0;
- for $line (@oneliners_html) {
- if (length($line->[0]) > $length) {
- $length = length($line->[0]);
- }
- }
-
- # Put the one liners together, with leading dots to the colon.
my $oneliners_html = "";
- $oneliners_html .= $oneliners_html_pre;
for $line (@oneliners_html) {
$oneliners_html .= "$line->[0] $line->[1]\n";
}
- $oneliners_html .= $oneliners_html_post;
# What a hacky way of putting the one liners where I want them...
- $html =~ s/^Place holder$/$oneliners_html/m;
+ $html =~ s/One Liners Place holder/$oneliners_html/m;
}
# Either print the status out, or email it.
my @lines;
my @lines_html;
- if (defined $block->{'template_html_pre'}) {push @lines_html, $block->{'template_html_pre'};}
-
for my $item (@{ $items }) {
my %vars;
for my $key (@{ $block->{'attrs'} }) {
}
- if (defined $block->{'template_html_post'}) {push @lines_html, $block->{'template_html_post'};}
-
return ( join("\n", @lines) , join("\n", @lines_html) );
-
}
sub process_conflicts {