| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 
 | Source: libcalendar-simple-perl
Section: perl
Priority: optional
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Krzysztof Krzyzaniak (eloy) <eloy@debian.org>,
 gregor herrmann <gregoa@debian.org>
Build-Depends: debhelper (>= 5), libmodule-build-perl
Build-Depends-Indep: perl (>= 5.8.0), libtest-pod-perl (>= 1.00),
 libtest-pod-coverage-perl, libdatetime-perl
Standards-Version: 3.7.3
Homepage: http://search.cpan.org/dist/Calendar-Simple/
Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libcalendar-simple-perl/
Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libcalendar-simple-perl/
Package: libcalendar-simple-perl
Architecture: all
Depends: ${perl:Depends}
Recommends: libdatetime-perl
Description: Perl extension to create simple calendars
 A very simple module that export one function called calendar(). This
 function returns a data structure representing the dates in a month. The data
 structure returned is an array of array references. The first level array
 represents the weeks in the month. The second level array contains the actual
 days. By default, each week starts on a Sunday and the value in the array is
 the date of that day. Any days at the beginning of the first week or the end
 of the last week that are from the previous or next month have the value
 undef.
 .
 If the month or year parameters are omitted then the current month or year are
 assumed.
 .
 A third, optional parameter, start_day, allows you to set the day each week
 starts with, with the same values as localtime sets for wday (namely, 0 for
 Sunday, 1 for Monday and so on).
 |