#! /usr/bin/perl #--------------------------------------------------------------------- # $Id: calendar.pl 1732 2007-04-04 23:27:18Z cjm $ # Copyright 2007 Christopher J. Madsen # # This program is free software; you can redistribute it and/or modify # it under the same terms as Perl itself. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either the # GNU General Public License or the Artistic License for more details. # # Generate a PostScript calendar #--------------------------------------------------------------------- use strict; use Getopt::Long 2.17 (); use PostScript::Calendar; #--------------------------------------------------------------------- # Parse arguments: #--------------------------------------------------------------------- Getopt::Long::Configure(qw(bundling no_getopt_compat)); my $output; Getopt::Long::GetOptions( 'output|o=s' => \$output, 'help|?' => \&usage, 'version' => \&usage ) or usage(); usage() if @ARGV < 2; $output = sprintf "%04d-%02d", @ARGV unless defined $output; sub usage { print "calendar.pl $PostScript::Calendar::VERSION\n", ; exit if $_[0] and $_[0] eq 'version'; print "\n" . <<''; Usage: calendar.pl [options] YEAR MONTH [PARAMETER VALUE ...] -o, --output=NAME Save calendar to NAME.ps (default YEAR-MONTH) -?, --help Display this usage information and exit --version Display version number and exit exit; } # end sub usage #--------------------------------------------------------------------- # Values surrounded by curly braces are Perl code to be eval'd: foreach (@ARGV) { if (/^\{(.+)\}\z/) { $_ = eval $1; } } # end foreach @ARGV #--------------------------------------------------------------------- my $cal = PostScript::Calendar->new(@ARGV); print "Saving $output.ps...\n"; $cal->output($output); __END__ =head1 NAME calendar.pl - Generate a monthly calendar in PostScript =head1 SYNOPSIS Usage: calendar.pl [options] YEAR MONTH [PARAMETER VALUE ...] -o, --output=NAME Save calendar to NAME.ps (default YEAR-MONTH) -?, --help Display this usage information and exit --version Display version number and exit =head1 DESCRIPTION calendar.pl generates generates printable calendars using L. The command line arguments are simply passed to PostScript::Calendar's C method. Any arguments that are surrounded by curly braces are evaluated as Perl code (after the braces are removed). This is necessary for passing in array references. Don't forget to quote the braces from the shell. Years must be fully specified (e.g., use 1990, not 90). Months range from 1 to 12. Days of the week can be specified as 0 to 7 (where Sunday is either 0 or 7, Monday is 1, etc.). All dimensions are specified in PostScript points (72 per inch). =head1 AUTHOR Christopher J. Madsen C<< >> Please report any bugs or feature requests to C<< >>, or through the web interface at L =head1 LICENSE AND COPYRIGHT Copyright 2007 Christopher J. Madsen. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L. =head1 DISCLAIMER OF WARRANTY BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENSE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.