Greetings Anonymous Monk,
From what you describe in your post, I think HTML::Calender::Simple would be perfect. The whole $type/$info thing for date events didn't work for me, so I ended up just writing a simple subroutine to handle the link creation myself, then passed that into the daily_info method.
use strict;
use warnings;
use CGI;
use HTML::Calendar::Simple;
my $cgi = CGI->new;
print $cgi->header;
my $cal = HTML::Calendar::Simple->new({
'month' => 6,
'year' => 2005,
});
sub _display_events {
my $events = shift;
return join('<br/>', map {
$cgi->a({ href => $_->[0] }, $_->[1])
} (@{$events}));
}
$cal->daily_info({
'day' => 21,
'events' => _display_events([
['http://perlmonks.org', 'PerlMonks'],
['http://whitepages.com', 'Whitepages']
]),
});
print $cal->calendar_month;
gryphon
Whitepages.com Development Manager (DSMS)
code('Perl') || die;
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|