Change the version boundaries for the disk space blocks to reflect
current SVN.
The backend returns the disk usage in MB, not GB.
+ Optionally show the input ID and channel number for recordings.
2007-01-20 Andrew Ruthven
Show the shows that will be deleted by the auto expirer, and their
- Brad MerManouelian & Glen Dragon - For sending me samples of multi-storage
area XML so I could add the Diskspace block.
- Ryan Steffes - For suggesting the Auto Expire block.
+ - Marc - For bug reports and suggesting outputting the encoder details for
+ recordings.
- The Debian translators - Especially the Portuguese guys - you rock!
- All the MythTV developers for working on a great bit of software
my $port = "6544";
my $description = undef;
my $episode = undef;
+my $encoder_details = undef;
my $colour = undef;
my %display;
my @email;
'c|colour|color' => \$colour,
'd|descripton' => \$description,
'e|episode' => \$episode,
+ 'encoder-details' => \$encoder_details,
'h|host=s' => \$host,
'p|port=i' => \$port,
'v|version' => \&print_version,
# Allow setting some defaults for the output blocks.
my %defaults = (
'schedule' => {
- 'attrs' => [ qw/title startTime NODE_TEXT subTitle channelName:.\/Channel[@channelName]/ ],
- 'template' => "__startTime__ - __title__"
+ 'attrs' => [ qw/title startTime NODE_TEXT subTitle channelName:.\/Channel[@channelName] chanNum:.\/Channel[@chanId] inputId:.\/Channel[@inputId]/ ],
+ 'template' => "__startTime__"
+ . (defined $encoder_details ? " - Enc: __inputId__, Chan: __chanNum__" : '')
+ . " - __title__"
. (defined $episode ? " - __subTitle__" : '')
. " (__channelName__)"
. (defined $description ? "\n__NODE_TEXT__" : ''),
the disk space in red (if using colour) or send an email if we're
in email mode with email only on warnings.
+=item B<--encoder-details>
+
+Display the input ID and channel name against the recording details.
+
=item B<-e, --episode>
Display the episode (subtitle) for the scheduled recordings.