#!/usr/local/bin/perl # list_periods.cgi # Display a list of all defined periods require './mon-lib.pl'; &ui_print_header(undef, $text{'periods_title'}, ""); $conf = &get_mon_config(); @periods = &find("period", $conf); print "
\n"; print "\n"; print " ", "\n"; $i = 0; foreach $p (@periods, { }) { local ($name, $value, $dfrom, $dto, $hfrom, $hto, $known); if ($p->{'value'} =~ /^\s*(\S+):\s*wd\s+{(\S+)-(\S+)}\s+hr\s+{(\S+)-(\S+)}\s*$/){ $name = $1; $dfrom = $2; $dto = $3; $hfrom = $4; $hto = $5; $known++; } elsif ($p->{'value'} =~ /^\s*(\S+):\s*wd\s+{(\S+)-(\S+)}\s*$/) { $name = $1; $dfrom = $2; $dto = $3; $known++; } elsif ($p->{'value'} =~ /^\s*(\S+):\s*hr\s+{(\S+)-(\S+)}\s*$/) { $name = $1; $hfrom = $2; $hto = $3; $known++; } elsif ($p->{'value'} =~ /^\s*(\S+):\s*(.*)$/) { $name = $1; $value = $2; } elsif (!$p->{'value'}) { $known++; } print "\n"; print "\n"; print "\n"; } else { # Allow any Time::Period string print "\n"; } print "\n"; $i++; } print "
$text{'periods_period'}$text{'periods_times'}
\n"; if ($known || !$p->{'name'}) { # Show friendly period inputs printf " %s\n", $dfrom ? "" : "checked", $text{'periods_alldays'}; printf "\n", $dfrom ? "checked" : ""; print &day_input("dfrom_$i", $dfrom)," - ", &day_input("dto_$i", $dto); print "   \n"; printf " %s\n", $hfrom ? "" : "checked", $text{'periods_allhours'}; printf "\n", $hfrom ? "checked" : ""; print " - ", "
\n"; print "
\n"; &ui_print_footer("", $text{'index_return'});