From 8d1bd8d05ba3f4aab10bee875236e2fe629340fc Mon Sep 17 00:00:00 2001 From: Andrew Ruthven Date: Thu, 31 Jul 2008 12:36:25 +1200 Subject: [PATCH] A few minor tweaks to the logic for generating HTML messages. --- bin/mythtv-status | 24 +++++++----------------- 1 file changed, 7 insertions(+), 17 deletions(-) diff --git a/bin/mythtv-status b/bin/mythtv-status index db2aa07..bf91e8c 100755 --- a/bin/mythtv-status +++ b/bin/mythtv-status @@ -158,7 +158,6 @@ my @blocks = ( # All the one liners together { 'name' => 'One Liners', - 'name_html' => 'One Liners', 'type' => 'sub', 'template' => '', 'template_html' => '', @@ -168,7 +167,6 @@ my @blocks = ( # Date/Time from server { 'name' => 'Status', - 'name_html' => 'Status', 'type' => 'xpath', 'xpath' => "//Status", 'attrs' => [ qw/time date/ ], @@ -180,7 +178,6 @@ my @blocks = ( # Info about the encoders. { 'name' => 'Encoders', - 'name_html' => '

Encoders

', 'type' => 'xpath', 'xpath' => "//Status/Encoders/Encoder", 'attrs' => [ qw/hostname id state connected/ ], @@ -202,7 +199,6 @@ my @blocks = ( # What programs (if any) are being recorded right now? { 'name' => 'Recording Now', - 'name_html' => '

Recording Now

', 'type' => 'xpath', 'xpath' => "//Status/Encoders/Encoder/Program", 'hide' => 'after', @@ -222,7 +218,6 @@ my @blocks = ( # The upcoming recordings. { 'name' => 'Scheduled Recordings', - 'name_html' => '

Scheduled Recordings

', 'type' => 'xpath', 'xpath' => '//Status/Scheduled/Program', 'defaults' => 'schedule', @@ -264,7 +259,6 @@ my @blocks = ( # Diskspace, before storage groups { 'name' => 'Total Disk Space', - 'name_html' => 'Total Disk Space', 'type' => 'xpath', 'xpath' => '//Status/MachineInfo/Storage', 'protocol_version' => [ "<= 31" ], @@ -284,7 +278,6 @@ my @blocks = ( # Diskspace, with storage groups { 'name' => 'Total Disk Space', - 'name_html' => 'Total Disk Space', 'type' => 'xpath', 'xpath' => '//Status/MachineInfo/Storage', 'protocol_version' => [ ">= 32" ], @@ -305,7 +298,6 @@ my @blocks = ( # Diskspace, with storage groups and sensible XML layout. { 'name' => 'Total Disk Space', - 'name_html' => 'Total Disk Space', 'type' => 'xpath', 'xpath' => '//Status/MachineInfo/Storage/Group[@id="total"]', 'protocol_version' => [ ">= 39" ], @@ -325,7 +317,6 @@ my @blocks = ( # Diskspace, with storage groups and sensible XML layout. { 'name' => 'Disk Space', - 'name_html' => 'Total Disk Space', 'type' => 'xpath', 'xpath' => '//Status/MachineInfo/Storage/Group', 'protocol_version' => [ ">= 39" ], @@ -351,7 +342,6 @@ my @blocks = ( # How many hours till the next recording. { 'name' => 'Next Recording In', - 'name_html' => 'Next Recording In', 'type' => 'sub', 'format' => 'one line', 'template' => '__next_time__', @@ -389,7 +379,6 @@ my @blocks = ( # Check how much Guide data we have { 'name' => 'Guide Data', - 'name_html' => 'Guide Data', 'format' => 'one line', 'type' => 'xpath', 'xpath' => '//Status/MachineInfo/Guide[@guideDays]', @@ -461,9 +450,8 @@ my %version; my $exit_value = 0; my $title = "MythTV status for $host"; -my $title_html = "

MythTV status for $host


"; my $output = "$title\n"; -my $html = "$title_html\n"; +my $html = "

$title

\n"; $output .= '=' x length($title) . "\n"; for my $block (@blocks) { @@ -523,9 +511,9 @@ for my $block (@blocks) { if (defined $result_html && $result_html ne '' && ! defined $hide) { $exit_value ||= $warn_present; if ($block->{'format'} eq 'one line') { - push @oneliners_html, [ $block->{'name_html'}, $result_html ]; + push @oneliners_html, [ "$block->{'name'}", $result_html ]; } else { - $html .= "$block->{'name_html'}\n"; + $html .= "

$block->{'name'}

\n"; $html .= $result_html . "\n\n"; } } @@ -573,7 +561,7 @@ if (scalar(@oneliners_html) > 0) { $oneliners_html .= $oneliners_html_post; # What a hacky way of putting the one liners where I want them... - $html =~ s/^One Liners\nPlace holder\n/$oneliners_html/m; + $html =~ s/^Place holder$/$oneliners_html/m; } # Either print the status out, or email it. @@ -888,7 +876,7 @@ sub substitute_vars { if defined $block->{'commify'}; my $template = $block->{'template'}; - my $template_html = defined $block->{'template_html'} ? $block->{'template_html'} : undef ; + my $template_html = $block->{'template_html'} || $block->{'template'}; my $skip = undef; my ($key, $value); while (($key, $value) = (each %{ $vars })) { @@ -940,6 +928,8 @@ sub substitute_vars { $template =~ s/__${name}__/$value/g if defined $value; + $template_html =~ s/__${name}__/$value/g + if defined $value; } return (defined $skip ? undef : $template, $template_html ); -- 2.30.2