jdtoronto has asked for the wisdom of the Perl Monks concerning the following question:
I actually need to produce a small calendar and after happening upon Calendar Array I thought the maiden's prayer had at last been answered. Alas it was not to be the case!
The code, from rob_au's original was entered like this...
#!/usr/bin/perl -w use Data::Dumper; use Date::Calc qw/Day_of_Week Days_in_Month/; use strict; print STDOUT Dumper(&calendar_array); exit 0; sub calendar_array (;$$) { my $year = ($_[0] =~ /^\d{4}$/) ? $_[0] : (((localtime)[5]) + 1900 +); my $month = (($_[1] =~ /^\d+$/) && (($_[1] > 0) && ($_[1] < 13))) +? $_[1] : (((localtime)[4]) + 1); print "Year: $year : Month: $month \n"; my (@calendar, @output); my $day = 1 - Day_of_Week($year, $month, 1); while ($#calendar < 41) { push (@calendar, (($day <= 0) || ($day > Days_in_Month($year, +$month))) ? '' : $day); ++$day; } for (my $row = 0; $row < 6; $row++) { my @columns; for (my $col = 0; $col < 7; $col++) { push (@columns, { 'day' => $calendar[$row * 7 + $col], }); } push (@output, { 'row' => \@columns }); } return \@output; }
<table border="0" cellpadding="2" cellspacing="0" width="140"> <tr> <td align="left" colspan="1" rowspan="1" valign="middle" width +="20"><font color="#000000" face="Tahoma, Verdana, Arial" size="2"><b +>S</b></font></td> <td align="left" colspan="1" rowspan="1" valign="middle" width +="20"><font color="#000000" face="Tahoma, Verdana, Arial" size="2"><b +>M</b></font></td> <td align="left" colspan="1" rowspan="1" valign="middle" width +="20"><font color="#000000" face="Tahoma, Verdana, Arial" size="2"><b +>T</b></font></td> <td align="left" colspan="1" rowspan="1" valign="middle" width +="20"><font color="#000000" face="Tahoma, Verdana, Arial" size="2"><b +>W</b></font></td> <td align="left" colspan="1" rowspan="1" valign="middle" width +="20"><font color="#000000" face="Tahoma, Verdana, Arial" size="2"><b +>T</b></font></td> <td align="left" colspan="1" rowspan="1" valign="middle" width +="20"><font color="#000000" face="Tahoma, Verdana, Arial" size="2"><b +>F</b></font></td> <td align="left" colspan="1" rowspan="1" valign="middle" width +="20"><font color="#000000" face="Tahoma, Verdana, Arial" size="2"><b +>S</b></font></td> </tr> <tmpl_loop "row"> <tr><tmpl_loop "day"> <td align="left" colspan="1" rowspan="1" valign="middl +e" width="20"><font color="#333333" face="Tahoma, Verdana, Arial" siz +e="2"><tmpl_var "day"></font></td> </tmpl_loop></tr> </tmpl_loop> </table>
sub disp_cal { my $self = shift; my $form = $self->load_tmpl('calendar01.html', die_on_bad_params = +> 0); my $calendar = Calendar->calendar_array; print STDERR Dumper( $calendar ); $form->param( 'row' => $calendar ); my $output = $form->output; return $output; }
The OUTER loop ( row ) works, the HTML generated from the template has a single row of headings followed by SIX empty rows. WHY doesn't the inner loop ( day ) work?
Could somebody please put me out of my misery and tell me why?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Nested loops in HTML::Template
by Coruscate (Sexton) on Jan 20, 2004 at 06:28 UTC | |
by jdtoronto (Prior) on Jan 20, 2004 at 07:38 UTC | |
|
Re: Nested loops in HTML::Template
by Roger (Parson) on Jan 20, 2004 at 06:41 UTC |