Template-Plugin-Calendar-Simple-0.02/0040775000076400007640000000000007775341541016343 5ustar jeffajeffaTemplate-Plugin-Calendar-Simple-0.02/MANIFEST0100664000076400007640000000006607720042636017464 0ustar jeffajeffaChanges Makefile.PL MANIFEST README Simple.pm test.pl Template-Plugin-Calendar-Simple-0.02/Changes0100664000076400007640000000033707775344643017644 0ustar jeffajeffaRevision history for Perl extension Template::Plugin::Calendar::Simple. 0.02 Jan 01 2004 - doc updates 0.01 Aug 17 2003 - original version; created by h2xs 1.21 with options -A -X Template::Plugin::Calendar::Simple Template-Plugin-Calendar-Simple-0.02/Makefile.PL0100664000076400007640000000033607720047226020305 0ustar jeffajeffause ExtUtils::MakeMaker; WriteMakefile( 'NAME' => 'Template::Plugin::Calendar::Simple', 'VERSION_FROM' => 'Simple.pm', 'PREREQ_PM' => { 'Template' => '2.00', 'Calendar::Simple' => '1.04', }, ); Template-Plugin-Calendar-Simple-0.02/README0100664000076400007640000000100407775344643017221 0ustar jeffajeffaNAME Template::Plugin::Calendar::Simple - TT plugin for Calendar::Simple INSTALL Installation as usual: perl Makefile.PL make make test make install DESCRIPTION See perldoc Template::Plugin::Calendar::Simple DEPENDENCIES This module requires these other modules and libraries: Template-Toolkit Calendar::Simple; AUTHOR Jeffrey Hayes Anderson COPYRIGHT Copyright (c) 2004 Jeffrey Hayes Anderson. See source POD for additional copyright information. Template-Plugin-Calendar-Simple-0.02/Simple.pm0100664000076400007640000000607407775344643020144 0ustar jeffajeffapackage Template::Plugin::Calendar::Simple; use strict; use warnings; use Calendar::Simple; use Template::Plugin; use Template::Iterator; use Template::Exception; use base qw( Template::Plugin ); our $VERSION = '0.02'; sub new { my ($class, $context, @arg) = @_; my @cal = Calendar::Simple::calendar(@arg); return bless { _CONTEXT => $context, rows => Template::Iterator->new([@cal]), days => [qw(Sun Mon Tue Wed Thu Fri Sat)], }, $class; } sub rows { my ($self) = @_; return $self->{rows}; } sub days { my ($self, $mon) = @_; my @day = @{$self->{days}}; push @day, shift @day if $mon; return [@day]; } 1; __END__ =head1 NAME Template::Plugin::Calendar::Simple - TT plugin for Calendar::Simple =head1 SYNOPSIS [% USE cal = Calendar.Simple %] [% FOREACH row = cal.rows %] [% FOREACH col = row %] [% END %] [% END %]
[% col || ' ' %]
=head1 DESCRIPTION This is a first stab at a Calendar::Simple plugin for Template Toolkit. =head1 METHODS =over 4 =item B [% FOREACH row = cal.rows %] Returns a Template::Iterator which contains the calendar rows. Each row, however, is simply an array. =item B [% FOREACH day = cal.days %] Most calendars have a header with the days - this method returns an array of abbreviated day names (currently only in English). If any argument is passed, then the week day starts with Monday instead of Sunday. =back =head1 BUGS If you have found a bug, typo, etc. please visit Best Practical Solution's CPAN bug tracker at http://rt.cpan.org: Ehttp://rt.cpan.org/NoAuth/Bugs.html?Dist=Template-Plugin-Calendar-SimpleE or send mail to Ebug-Template-Plugin-Calendar-Simple#rt.cpan.orgE (you got this far ... you can figure out how to make that a valid address ... and note that i won't respond to bugs sent to my personal address any longer) =head1 AUTHOR Jeffrey Hayes Anderson =head1 SEE ALSO L, L. =head1 COPYRIGHT Copyright (c) 2004 Jeffrey Hayes Anderson. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. =cut Template-Plugin-Calendar-Simple-0.02/test.pl0100664000076400007640000000011407720047226017641 0ustar jeffajeffause strict; use warnings; use Test::More tests => 1; require_ok('Simple');