/usr/share/perl5/HTML/CalendarMonth.pm is in libhtml-calendarmonth-perl 1.26-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 | package HTML::CalendarMonth;
{
$HTML::CalendarMonth::VERSION = '1.26';
}
use strict;
use warnings;
use Carp;
use HTML::ElementTable 1.18;
use HTML::CalendarMonth::Locale;
use HTML::CalendarMonth::DateTool;
use base qw( Class::Accessor HTML::ElementTable );
my %Objects;
# default complex attributes
my %Calmonth_Attrs = (
head_m => 1, # month heading mode
head_y => 1, # year heading mode
head_dow => 1, # DOW heading mode
head_week => 0, # weak of year
year_span => 2, # default col span of year
today => undef, # DOM, if not now
week_begin => 1, # what DOW (1-7) is the 1st DOW?
historic => 1, # if able to choose, use ncal/cal
# rather than Date::Calc, which
# blindly extrapolates Gregorian
alias => {}, # what gets displayed if not
# the default item
month => undef, # these will get initialized
year => undef,
locale => 'en_US',
full_days => 0,
full_months => 1,
datetool => undef,
enable_css => 1,
semantic_css => 0,
# internal muckety muck
_cal => undef,
_itoch => {},
_ctoih => {},
_caltool => undef,
_weeknums => undef,
_today => undef,
dow1st => undef,
lastday => undef,
loc => undef,
# deprecated
row_offset => undef,
col_offset => undef,
);
__PACKAGE__->mk_accessors(keys %Calmonth_Attrs);
# Class::Accessor overrides
sub set {
my($self, $key) = splice(@_, 0, 2);
if (@_ == 1) {
$Objects{$self}{$key} = $_[0];
}
elsif (@_ > 1) {
$Objects{$self}{$key} = [@_];
}
else {
Carp::confess("wrong number of arguments received");
}
}
sub get {
my $self = shift;
if (@_ == 1) {
return $Objects{$self}{$_[0]};
}
elsif ( @_ > 1 ) {
return @{$Objects{$self}{@_}};
}
else {
Carp::confess("wrong number of arguments received.");
}
}
sub _is_calmonth_attr { shift; exists $Calmonth_Attrs{shift()} }
sub _set_defaults {
my $self = shift;
foreach (keys %Calmonth_Attrs) {
$self->$_($Calmonth_Attrs{$_});
}
$self;
}
sub DESTROY { delete $Objects{shift()} }
# last dow col, first week row
use constant LDC => 6;
use constant FWR => 2;
# alias
sub item_alias {
my($self, $item) = splice(@_, 0, 2);
defined $item or croak "item name required";
$self->alias->{$item} = shift if @_;
$self->alias->{$item} || $item;
}
sub item_aliased {
my($self, $item) = splice(@_, 0, 2);
defined $item or croak "item name required.\n";
defined $self->alias->{$item};
}
# header toggles
sub _head {
# Set/test entire heading (month,year,and dow headers) (does not
# affect week number column). Return true if either heading active.
my $self = shift;
$self->head_m(@_) && $self->head_dow(@_) if @_;
$self->_head_my || $self->head_dow;
}
sub _head_my {
# Set/test month and year header mode
my($self, $mode) = splice(@_, 0, 2);
$self->head_m($mode) && $self->head_y($mode) if defined $mode;
$self->head_m || $self->head_y;
}
sub _initialized {
my $self = shift;
@_ ? $self->{_initialized} = shift : $self->{_initialized};
}
# circa interface
sub _date {
# set target month, year
my $self = shift;
if (@_) {
my ($month, $year) = @_;
$month && defined $year || croak "date method requires month and year";
croak "Date already set" if $self->_initialized();
# get rid of possible leading 0's
$month += 0;
$year += 0;
$month <= 12 && $month >= 1 or croak "Month $month out of range (1-12)\n";
$year > 0 or croak "Negative years are unacceptable\n";
$self->month($self->monthname($month));
$self->year($year);
$month = $self->monthnum($month);
# trigger _gencal...this should be the only place where this occurs
$self->_gencal;
}
return($self->month, $self->year);
}
# class factory access
use constant CLASS_HET => 'HTML::ElementTable';
use constant CLASS_DATETOOL => 'HTML::CalendarMonth::DateTool';
use constant CLASS_LOCALE => 'HTML::CalendarMonth::Locale';
sub _gencal {
# generate internal calendar representation
my $self = shift;
# new calendar...clobber day-specific settings
my $itoc = $self->_itoch({});
my $ctoi = $self->_ctoih({});
# figure out dow of 1st day of the month as well as last day of the
# month (uses date calculator backends)
$self->_anchor_month();
# row count for weeks in grid
my $wcnt = 0;
my ($dowc) = $self->dow1st;
my $skips = $self->_caltool->_skips;
# for each day
foreach (1 .. $self->lastday) {
next if $skips->{$_};
my $r = $wcnt + FWR;
my $c = $dowc;
# this is a bootstrap until we know the number of rows in the month.
$itoc->{$_} = [$r, $c];
$dowc = ++$dowc % 7;
++$wcnt unless $dowc || $_ == $self->lastday;
}
$self->{_week_rows} = $wcnt;
my $row_extent = $wcnt + FWR;
my $col_extent = LDC;
$col_extent += 1 if $self->head_week;
$self->SUPER::extent($row_extent, $col_extent);
# table can contain the days now, so replace our bootstrap coordinates
# with references to the actual elements.
foreach (keys %$itoc) {
my $cellref = $self->cell(@{$itoc->{$_}});
$self->_itoc($_, $cellref);
$self->_ctoi($cellref, $_);
}
# week num affects month/year spans
my $width = $self->head_week ? 8 : 7;
# month/year headers
my $cellref = $self->cell(0, 0);
$self->_itoc($self->month, $cellref);
$self->_ctoi($cellref, $self->month);
$cellref = $self->cell(0, $width - $self->year_span);
$self->_itoc($self->year, $cellref);
$self->_ctoi($cellref, $self->year);
$self->item($self->month)->replace_content($self->item_alias($self->month));
$self->item($self->year)->replace_content($self->item_alias($self->year));
if ($self->_head_my) {
if ($self->head_m && $self->head_y) {
$self->item($self->year) ->attr('colspan', $self->year_span);
$self->item($self->month)->attr('colspan', $width - $self->year_span);
}
elsif ($self->head_y) {
$self->item($self->month)->mask(1);
$self->item($self->year)->attr('colspan', $width);
}
elsif ($self->head_m) {
$self->item($self->year)->mask(1);
$self->item($self->month)->attr('colspan', $width);
}
}
else {
$self->row(0)->mask(1);
}
# DOW headers
my $trans;
my $days = $self->loc->days;
foreach (0..$#$days) {
# Transform for week_begin 1..7
$trans = ($_ + $self->week_begin - 1) % 7;
my $cellref = $self->cell(1, $_);
$self->_itoc($days->[$trans], $cellref);
$self->_ctoi($cellref, $days->[$trans]);
}
if ($self->head_dow) {
grep($self->item($_)->replace_content($self->item_alias($_)), @$days);
}
else {
$self->row(1)->mask(1);
}
# week number column
if ($self->head_week) {
# week nums can collide with days. Use "w" in front of the number
# for uniqueness, and automatically alias to just the number (unless
# already aliased, of course).
$self->_gen_week_nums();
my $ws;
my $row_count = FWR;
foreach ($self->_numeric_week_nums) {
$ws = "w$_";
$self->item_alias($ws, $_) unless $self->item_aliased($ws);
my $cellref = $self->cell($row_count, $self->last_col);
$self->_itoc($ws, $cellref);
$self->_ctoi($cellref, $ws);
$self->item($ws)->replace_content($self->item_alias($ws));
++$row_count;
}
}
# fill in days of the month
my $i;
foreach my $r (FWR .. $self->last_row) {
foreach my $c (0 .. LDC) {
$self->cell($r,$c)->replace_content($self->item_alias($i))
if ($i = $self->item_at($r,$c));
}
}
# css classes
if ($self->enable_css) {
$self->push_attr(class => 'hcm-table');
$self->item_row($self->dayheaders)->push_attr(class => 'hcm-day-head')
if $self->head_dow;
$self->item($self->year)->push_attr(class => 'hcm-year-head')
if $self->head_y;
$self->item($self->month)->push_attr(class => 'hcm-month-head')
if $self->head_m;
$self->item($self->week_nums) ->push_attr(class => 'hcm-week-head')
if $self->head_week;
}
if ($self->semantic_css) {
my $today = $self->today;
if ($today < 0) {
$self->item($self->days)->push_attr(class => 'hcm-past');
}
elsif ($today == 0) {
$self->item($self->days)->push_attr(class => 'hcm-future');
}
else {
for my $d ($self->days) {
if ($d < $today) {
$self->item($d)->push_attr(class => 'hcm-past');
}
elsif ($d > $today) {
$self->item($d)->push_attr(class => 'hcm-future');
}
else {
$self->item($d)->push_attr(class => 'hcm-today');
}
}
}
}
$self;
}
sub default_css {
my $hbgc = '#DDDDDD';
my $bc = '#888888';
my $str = <<__CSS;
<style type="text/css">
<!--
table.hcm-table {
border: thin solid $bc;
border-collapse: collapse;
text-align: right;
}
.hcm-table td, th {
padding-left: 2px;
padding-right: 2px;
}
.hcm-year-head {
text-align: right;
background-color: $hbgc;
}
.hcm-month-head {
text-align: left;
background-color: $hbgc;
}
.hcm-day-head {
text-align: right;
background-color: $hbgc;
border-bottom: thin solid $bc;
}
.hcm-week-head {
font-size: small;
background-color: $hbgc;
border-left: thin solid $bc;
}
-->
</style>
__CSS
}
sub _datetool {
my $self = shift;
my $ct;
if (! ($ct = $self->_caltool)) {
$ct = $self->_caltool(CLASS_DATETOOL->new(
year => $self->year,
month => $self->month,
weeknum => $self->head_week,
historic => $self->historic,
datetool => $self->datetool,
));
}
$ct;
}
sub _anchor_month {
# Figure out what our month grid looks like.
# Let HTML::CalendarMonth::DateTool determine which method is
# appropriate.
my $self = shift;
my $month = $self->monthnum($self->month);
my $year = $self->year;
my $tool = $self->_datetool;
my $dow1st = $tool->dow1st; # 0..6, starting with Sun
my $lastday = $tool->lastday;
# week_begin given as 1..7 starting with Sun
$dow1st = ($dow1st - ($self->week_begin - 1)) % 7;
$self->dow1st($dow1st);
$self->lastday($lastday);
$self;
}
sub _gen_week_nums {
# Generate week-of-the-year numbers. The first week is generally
# agreed upon to be the week that contains the 4th of January.
#
# For purposes of shenanigans with 'week_begin', we anchor the week
# number off of Thursday in each row.
my $self = shift;
my($year, $month, $lastday) = ($self->year, $self->monthnum, $self->lastday);
my $tool = $self->_caltool;
croak "Oops. " . ref $tool . " not set up for week of year calculations.\n"
unless $tool->can('week_of_year');
my $fdow = $self->dow1st;
my $delta = 4 - $fdow;
if ($delta < 0) {
$delta += 7;
}
my @ft = $tool->add_days($delta, 1);
my $ldow = $tool->dow($lastday);
$delta = 4 - $ldow;
if ($delta > 0) {
$delta -= 7;
}
my @lt = $tool->add_days($delta, $lastday);
my $fweek = $tool->week_of_year(@ft);
my $lweek = $tool->week_of_year(@lt);
my @wnums = $fweek > $lweek ? ($fweek, 1 .. $lweek) : ($fweek .. $lweek);
# do we have days above our first Thursday?
if ($self->row_of($ft[0]) != FWR) {
unshift(@wnums, $wnums[0] -1);
}
# do we have days below our last Thursday?
if ($self->row_of($lt[0]) != $self->last_row) {
push(@wnums, $wnums[-1] + 1);
}
# first visible week is from last year
if ($wnums[0] == 0) {
$wnums[0] = $tool->week_of_year($tool->add_days(-7, $ft[0]));
}
# last visible week is from subsequent year
if ($wnums[-1] > $lweek) {
$wnums[-1] = $tool->week_of_year($tool->add_days(7, $lt[0]));
}
$self->_weeknums(\@wnums);
}
# month hooks
sub row_items {
# given a list of items, return all items in rows shared by the
# provided items.
my $self = shift;
my %items;
foreach my $item (@_) {
my $row = ($self->coords_of($item))[0];
foreach my $col (0 .. $self->last_col) {
my $i = $self->item_at($row, $col) || next;
++$items{$i};
}
}
keys %items > 1 ? keys %items : (keys %items)[0];
}
sub col_items {
# return all item cells in the columns occupied by the provided list
# of items.
my $self = shift;
$self->_col_items(0, $self->last_row, @_);
}
sub daycol_items {
# same as col_items(), but excludes header cells.
my $self = shift;
$self->_col_items(FWR, $self->last_row, @_);
}
sub _col_items {
# given row bounds and a list of items, return all item elements
# in the columns occupied by the provided items. Does not return
# empty cells.
my($self, $rfirst, $rlast) = splice(@_, 0, 3);
my %items;
my($item, $row, $col, %i);
foreach my $item (@_) {
my $col = ($self->coords_of($item))[1];
foreach my $row ($rfirst .. $rlast) {
my $i = $self->item_at($row,$col) || next;
++$items{$i};
}
}
keys %items > 1 ? keys %items : (keys %items)[0];
}
sub daytime {
# return seconds since epoch for a given day
my($self, $day) = splice(@_, 0, 2);
$day or croak "must specify day of month";
croak "day does not exist" unless $self->_daycheck($day);
$self->_caltool->day_epoch($day);
}
sub week_nums {
# return list of all week number labels
my @wnums = map("w$_", shift->_numeric_week_nums);
wantarray ? @wnums : \@wnums;
}
sub _numeric_week_nums {
# return list of all week numbers as numbers
my $self = shift;
return unless $self->head_week;
wantarray ? @{$self->_weeknums} : $self->_weeknums;
}
sub days {
# return list of all days of the month (1..$c->lastday).
my $self = shift;
my $skips = $self->_caltool->_skips;
my @days = grep { !$skips->{$_} } (1 .. $self->lastday);
wantarray ? @days : \@days;
}
sub dayheaders {
# return list of all day headers (Su..Sa).
shift->loc->days;
}
sub headers {
# return list of all headers (month,year,dayheaders)
my $self = shift;
wantarray ? ($self->year, $self->month, $self->dayheaders)
: [$self->year, $self->month, $self->dayheaders];
}
sub items {
# return list of all items (days, headers)
my $self = shift;
wantarray ? ($self->headers, $self->days)
: [$self->headers, $self->days];
}
sub last_col {
# what's the max col of the calendar?
my $self = shift;
$self->head_week ? LDC + 1 : LDC;
}
sub last_day_col { LDC }
sub last_row {
# last row of the calendar
my $self = shift;
return ($self->coords_of($self->lastday))[0];
}
*last_week_row = \&last_row;
sub first_week_row { FWR };
sub past_days {
my $self = shift;
my $today = $self->_today;
if ($today < 0) {
return $self->days;
}
elsif ($today == 0) {
return;
}
return(1 .. $today);
}
sub future_days {
my $self = shift;
my $today = $self->_today;
if ($today < 0) {
return;
}
elsif ($today == 0) {
return $self->days;
}
return($today .. $self->last_day);
}
# custom glob interfaces
sub item {
# return TD elements containing items
my $self = shift;
@_ || croak "item(s) must be provided";
$self->cell(grep(defined $_, map($self->coords_of($_), @_)));
}
sub item_row {
# return a glob of the rows of a list of items, including empty cells.
my $self = shift;
$self->row(map { $self->row_of($_) } @_);
}
sub item_day_row {
# same as item_row, but excludes possible week number cells
my $self = shift;
return $self->item_row(@_) unless $self->head_week;
my(%rows, @coords);
for my $r (map { $self->row_of($_) } @_) {
next if ++$rows{$r} > 1;
for my $c (0 .. 6) {
push(@coords, ($r, $c));
}
}
$self->cell(@coords);
}
sub item_week_nums {
# glob of all week numbers
my $self = shift;
$self->item($self->week_nums);
}
sub item_col {
# return a glob of the cols of a list of items, including empty cells.
my $self = shift;
$self->_item_col(0, $self->last_row, @_);
}
sub item_daycol {
# same as item_col(), but excludes header cells.
my $self = shift;
$self->_item_col(2, $self->last_row, @_);
}
sub _item_col {
# given row bounds and a list of items, return a glob representing
# the cells in the columns occupied by the provided items, including
# empty cells.
my($self, $rfirst, $rlast) = splice(@_, 0, 3);
defined $rfirst && defined $rlast or Carp::confess "No items provided";
my(%seen, @coords);
foreach my $col (map { $self->col_of($_) } @_) {
next if ++$seen{$col} > 1;
foreach my $row ($rfirst .. $rlast) {
push(@coords, $row, $col);
}
}
$self->cell(@coords);
}
sub item_box {
# return a glob of the box defined by two items
my($self, $item1, $item2) = splice(@_, 0, 3);
defined $item1 && defined $item2 or croak "Two items required";
$self->box($self->coords_of($item1), $self->coords_of($item2));
}
sub all {
# return a glob of all calendar cells, including empty cells.
my $self = shift;
$self->box( 0,0 => $self->last_row, $self->last_col );
}
sub alldays {
# return a glob of all cells other than header cells
my $self = shift;
$self->box( 2, 0 => $self->last_row, 6 );
}
sub allheaders {
# return a glob of all header cells
my $self = shift;
$self->item($self->headers);
}
# transformation Methods
sub coords_of {
# convert an item into grid coordinates
my $self = shift;
croak "undefined value passed to coords_of()" if @_ && ! defined $_[0];
my $ref = $self->_itoc(@_);
my @pos = ref $ref ? $ref->position : ();
@pos ? (@pos[$#pos - 1, $#pos]) : ();
}
sub item_at {
# convert grid coords into item
my $self = shift;
$self->_ctoi($self->cell(@_));
}
sub _itoc {
# item to grid
my($self, $item, $ref) = splice(@_, 0, 3);
defined $item or croak "item required";
my $itoc = $self->_itoch;
if ($ref) {
croak "Reference required" unless ref $ref;
$itoc->{$item} = $ref;
}
$itoc->{$item};
}
sub _ctoi {
# cell reference to item
my($self, $refstring, $item) = splice(@_, 0, 3);
defined $refstring or croak "cell id required";
my $ctoi = $self->_ctoih;
if (defined $item) {
$ctoi->{$refstring} = $item;
}
$ctoi->{$refstring};
}
sub row_of {
my $self = shift;
($self->coords_of(@_))[0];
}
sub col_of {
my $self = shift;
($self->coords_of(@_))[1];
}
sub monthname {
# check/return month...returns name. Accepts month number or string.
my $self = shift;
return $self->month unless @_;
my $loc = $self->loc;
my @names;
for my $m (@_) {
$m = ($m - 1) % 12 if $m && $m =~ /^\d+$/;
$m = $loc->monthname($m) || croak "month not found " . join(', ', @_);
return $m if @_ == 1;
push(@names, $m);
}
@names;
}
sub monthnum {
# check/return month, returns number. Accepts month number or string.
my $self = shift;
my @months = @_ ? @_ : $self->month;
my $loc = $self->loc;
my @nums;
for my $m (@months) {
$m = ($m - 1) % 12 if $m && $m =~ /^\d+$/;
$m = $loc->monthnum($m);
croak "month not found ", join(', ', @_) unless defined $m;
$m += 1;
return $m if @_ == 1;
push(@nums, $m);
}
@nums;
}
sub dayname {
# check/return day...returns name. Accepts 1..7, or Su..Sa
my $self = shift;
@_ || croak "day string or num required";
my $loc = $self->loc;
my @names;
for my $d (@_) {
if ($d =~ /^\d+$/) {
$d = (($d - 1) % 7) + $self->week_begin - 1;
}
$d = $loc->dayname($d) || croak "day not found ", join(', ', @_);
return $d if @_ == 1;
push(@names, $d);
}
@names;
}
sub daynum {
# check/return day number 1..7, returns number. Accepts 1..7,
# or Su..Sa
my $self = shift;
@_ || croak "day string or num required";
my $loc = $self->loc;
my @nums;
for my $d (@_) {
if ($d =~ /^\d+$/) {
$d = (($d - 1) % 7) + $self->week_begin - 1;
}
$d = $loc->daynum($d);
croak "day not found ", join(', ', @_) unless defined $d;
$d += 1;
return $d if @_ == 1;
push(@nums, $d);
}
@nums;
}
# tests-n-checks
sub _dayheadcheck {
# test day head names
my($self, $name) = splice(@_, 0, 2);
$name or croak "name missing";
return if $name =~ /^\d+$/;
$self->daynum($name);
}
sub _daycheck {
# check if an item is a day of the month (1..31)
my($self, $item) = splice(@_, 0, 2);
croak "item required" unless $item;
# can't just invert _headcheck because coords_of() needs _daycheck,
# and _headcheck uses coords_of()
$item =~ /^\d{1,2}$/ && $item <= 31;
}
sub _headcheck {
# check if an item is a header
!_daycheck(@_);
}
# constructors/destructors
sub new {
my $class = shift;
my %parms = @_;
my(%attrs, %tattrs);
foreach (keys %parms) {
if (__PACKAGE__->_is_calmonth_attr($_)) {
$attrs{$_} = $parms{$_};
}
else {
$tattrs{$_} = $parms{$_};
}
}
my $self = CLASS_HET->new(%tattrs);
bless $self, $class;
# set defaults
$self->_set_defaults;
my $month = delete $attrs{month};
my $year = delete $attrs{year};
if (!$month || !$year) {
my ($nmonth,$nyear) = (localtime(time))[4,5];
++$nmonth; $nyear += 1900;
$month ||= $nmonth;
$year ||= $nyear;
}
$self->month($month);
$self->year($year);
# set overrides
for my $k (keys %attrs) {
$self->$k($attrs{$k}) if defined $attrs{$k};
}
my $loc = CLASS_LOCALE->new(
id => $self->locale,
full_days => $self->full_days,
full_months => $self->full_months,
) or croak "Problem creating locale " . $self->locale . "\n";
$self->loc($loc);
my $dt = CLASS_DATETOOL->new(
year => $self->year,
month => $self->month,
weeknum => $self->head_week,
historic => $self->historic,
datetool => $self->datetool,
);
$self->_caltool($dt);
$self->week_begin($loc->first_day_of_week + 1)
unless defined $attrs{week_begin};
my $dom_now = defined $attrs{today} ? $dt->_dom_now(delete $attrs{today})
: $dt->_dom_now;
$self->_today($dom_now);
$self->today($dom_now) if $dom_now > 0;
my $alias = $attrs{alias} || {};
if ($self->full_days < 0) {
my @full = $self->loc->days;
my @narrow = $self->loc->narrow_days;
for my $i (0 .. $#narrow) {
$alias->{$full[$i]} = $narrow[$i];
}
}
if ($self->full_months < 0) {
my @full = $self->loc->months;
my @narrow = $self->loc->narrow_months;
for my $i (0 .. $#narrow) {
$alias->{$full[$i]} = $narrow[$i];
}
}
$self->alias($alias) if keys %$alias;
# for now, this is the only time this will every happen for this
# object. It is now 'initialized'.
$self->_date($month, $year);
$self;
}
### overrides (our table is static)
sub extent { }
sub maxrow { shift->SUPER::maxrow }
sub maxcol { shift->SUPER::maxcol }
### deprecated
use constant row_offset => 0;
use constant col_offset => 0;
use constant first_col => 0;
use constant first_row => 0;
use constant first_week_col => 0;
use constant last_week_col => 6;
###
1;
__END__
=head1 NAME
HTML::CalendarMonth - Generate and manipulate HTML calendar months
=head1 SYNOPSIS
use HTML::CalendarMonth;
# Using regular HTML::Element creation
my $c = HTML::CalendarMonth->new( month => 8, year => 2010 );
print $c->as_HTML;
# Full locale support via DateTime::Locale
my $c2 = HTML::CalendarMonth->new(
month => 8,
year => 2010,
locale => 'zu_ZA'
);
print $c2->as_HTML;
# Full locale support via DateTime::Locale
$c3 = HTML::CalendarMonth->new( month => 8, year => 79, locale => 'fr' );
print $c3->as_HTML
# HTML-Tree integration
my $tree = HTML::TreeBuilder->parse_file('cal.html');
$tree->find_by_attribute(class => 'hcm-calendar')->replace_with($c);
print $tree->as_HTML;
# clean up if you're not done, HTML::Element structures must be
# manually destroyed
$c->delete; $c2->delete;
=head1 DESCRIPTION
HTML::CalendarMonth is a subclass of HTML::ElementTable. See
L<HTML::ElementTable(3)> for how that class works, for it affects this
module on many levels. Like HTML::ElementTable, HTML::CalendarMonth is
an enhanced HTML::Element with methods added to facilitate the
manipulation of the calendar table elements as a whole.
The primary interaction with HTML::CalendarMonth is through I<items>
rather than cell coordinates like HTML::ElementTable uses. An I<item> is
merely a string that represents the content of the cell of interest
within the calendar. For instance, the element representing the 14th day
of the month would be returned by C<$c-E<gt>item(14)>. Similarly, the
element representing the header for Monday would be returned by C<$c-
E<gt>item('Mo')>. If the year happened to by 2010, then C<$c-
E<gt>item(2010)> would return the cell representing the year. Since
years and particular months change frequently, it is probably more
useful to take advantage of the C<month()> and C<year()> methods, which
return their respective values. The following is therefore the same as
explicitly referencing the year: C<$c-E<gt>item($c- E<gt>year())>.
Multiple cells of the calendar can be manipulated as if they were a
single element. For instance, C<$c-E<gt>item(15)-E<gt>attr(class =E<gt>
'fancyday')> would alter the class of the cell representing the 15th. By
the same token, C<$c-E<gt>item(15, 16, 17,
23)-E<gt>attr(class =E<gt> 'fancyday')> would do the same thing for all
cells containing the days passed to the C<item()> method.
Underneath, the calendar is still nothing more than a table structure,
the same as provided by the HTML::ElementTable class. In addition to the
I<item> based access methods above, calendar cells can still be accessed
using row and column grid coordinates using the C<cell()> method
provided by the table class. All coordinate-based methods in the table
class are accessible to the calendar class.
The module includes support for week-of-the-year numbering, arbitrary
1st day of the week definitions, and locale support.
Dates that are beyond the range of the built-in time functions of perl
are handled either by the ncal/cal command, Date::Calc, DateTime, or
Date::Manip. The presence of any one of these utilities and modules will
suffice for these far flung date calculations. One of these utilities
(with the exception of 'cal') is also required if you want to use week-of-
year numbering.
Full locale support is offered via DateTime::Locale. For a full list of
supported locale id's, look at HTML::CalendarMonth::Locale->locales().
=head1 METHODS
All arguments appearing in [brackets] are optional, and do not represent
anonymous array references.
=head2 Constructor
=over
=item new()
With no arguments, the constructor will return a calendar object
representing the current month with a default appearance. The initial
configuration of the calendar is controlled by special attributes. Non-
calendar related attributes are passed along to HTML::ElementTable. Any
non-table related attributes left after that are passed to HTML::Element
while constructing the E<lt>tableE<gt> tag. See L<HTML::ElementTable> if
you are interested in attributes that can be passed along to that class.
Special Attributes for HTML::CalendarMonth:
=over
=item month
1-12, or Jan-Dec. Defaults to current month.
=item year
Four digit representation. Defaults to current year.
=item head_m
Specifies whether to display the month header. Default 1.
=item head_y
Specifies whether to display the year header. Default 1.
=item head_dow
Specifies whether to display days of the week header. Default 1.
=item head_week
Specifies whether to display the week-of-year numbering. Default 0.
=item locale
Specifies the id of the locale in which to render the calendar. Default
is 'en_US'. By default, this will also control determine which day is
considered to be the first day of the week. See
L<HTML::CalendarMonth::Locale> for more information. If for some reason
you prefer to use different labels than those provided by C<locale>, see
the C<alias> attribute below.
=item full_days
Specifies whether or not to use full day names or their abbreviated
names. Default is 0, use abbreviated names. Use -1 for 'narrow' mode,
the shortest (not guaranteed to be unique) abbreviations.
=item full_months
Specifies whether or not to use full month names or their abbreviated
names. Default is 1, use full names. Use -1 for 'narrow' mode, the
shortest (not guaranteed to be unique) abbreviations.
=item alias
Takes a hash reference mapping labels provided by C<locale> to any
custom label you prefer. Lookups, such as C<day('Sun')>, will still use
the locale string, but when the calendar is rendered the aliased value
will appear.
=item week_begin
Specify first day of the week, which can be 1..7, starting with Sunday.
In order to specify Monday, set this to 2, and so on. By default, this
is determined based on the locale.
=item enable_css
Set some handy CSS class attributes on elements, enabled by default.
Currently the classes are:
hcm-table Set on the <lt>table<gt> tag of the calendar
hcm-day-head Set on the day-of-week <lt>tr<gt> or <lt>td<gt> tags
hcm-year-head Set on the <lt>td<gt> tag for the year
hcm-month-head Set on the <lt>td<gt> tag for the month
hcm-week-head Set on the <lt>td<gt> tags for the week-of-year
=item semantic_css
Sets some additional CSS class attributes on elements, disabled by
default. The notion of 'today' is taken either from the system clock
(default) or from the 'today' parameter as provided to new(). Currently
these classes are:
hcm-today Set on the <lt>td<gt> tag for today, if present
hcm-past Set on the <lt>td<gt> tags for prior days, if present
hcm-future Set on the <lt>td<gt> tags for subsequent days, if present
=item today
Specify the value for 'today' if different from the local time as
reported by the system clock (the default). If specified as two or less
digits, it is assumed to be one of the days of the month in the current
calendar. If more than two digits, it is assumed to be a epoch time in
seconds. Otherwise it must be given as a string of the form 'YYYY-mm-
dd'. Note that the default value as determined by the system clock uses
localtime rather than gmtime.
=item historic
This option is ignored for dates that do not exceed the range of the built-
in perl time functions. For dates that B<do> exceed these ranges, this
option specifies the default calculation method. When set, if the 'ncal'
or 'cal' command is available on your system, that will be used rather
than the Date::Calc or Date::Manip modules. This can be an issue since
the date modules blindly extrapolate the Gregorian calendar, whereas
ncal/cal will revert to the Julian calendar during September 1752. If
either ncal or cal are not available on your system, this attribute is
meaningless. Defaults to 1.
=back
=back
=head2 Item Query Methods
The following methods return lists of item *symbols* (28, 29, 'Thu',
...) that are related in some way to the provided list of items. The
returned symbols may then be used as arguments to the glob methods
detailed further below.
=over
=item row_items(item1, [item2, ...])
Returns all item symbols in rows shared by the provided item symbols.
=item col_items(item1, [item2, ...])
Returns all item symbols in columns shared by the provided item symbols.
=item daycol_items(col_item1, [col_item2, ...])
Same as col_items(), but the returned item symbols are limited to those
that are not header items (month, year, day-of-week).
=item row_of(item1, [item2, ...])
Returns the row indices of rows containing the provided item symbols.
=item col_of(item1, [item2, ...])
Returns the column indices of columns containing the provided
item symbols.
=item lastday()
Returns the day number (symbol) of the last day of the month.
=item dow1st()
Returns the column index for the first day of the month.
=item days()
Returns a list of all days of the month as numbers.
=item week_nums()
Returns a list of week-of-year numbers for this month.
=item dayheaders()
Returns a list of all day headers (Su..Sa)
=item headers()
Returns a list of all headers (month, year, dayheaders)
=item items()
Returns a list of all item symbols (day number, header values) in
the calendar.
=item last_col()
Returns the index of the last column of the calendar (note that this
could be the week-of-year column if head_week is enabled).
=item last_day_col()
Returns the index of the last column of the calendar containing days of
the month (same as last_col() unless week-of-year is enabled).
=item first_week_row()
Returns the index of the first row of the calendar containing day items
(ie, the first week).
=item last_row()
Returns the index of the last row of the calendar.
=item today()
Returns the day of month for 'today', if present in the current
calendar.
=item past_days()
Returns a list of days prior to 'today'. If 'today' is in a future
month, all days are returned. If 'today' is in a past month, no days
are returned.
=item future_days()
Returns a list of days after 'today'. If 'today' is in a past
month, all days are returned. If 'today' is in a future month, no
days are returned.
=back
=head2 Glob Methods
Glob methods return references that are functionally equivalent to an
individual calendar cell. Mostly, they provide item based analogues to
the glob methods provided in HTML::ElementTable. In methods dealing with
rows, columns, and boxes, the globs include empty calendar cells (which
would otherwise need to be accessed through native HTML::ElementTable
methods). The row and column numbers returned by the item methods above
are compatible with the grid based methods in HTML::ElementTable.
For details on how these globs work, check out L<HTML::ElementTable> and
L<HTML::ElementGlob>.
=over
=item item(item1, [item2, ...])
Returns all cells containing the provided item symbols.
=item item_row(item1, [item2, ...])
Returns all cells in all rows occupied by the provided item symbols.
=item item_day_row(item1, [item2, ...])
Same as item_row() except excludes week-of-year cells, if present.
=item item_col(item1, [item2, ...])
Returns all cells in all columns occupied by the provided item symbols.
=item item_daycol(item1, [item2, ...])
Same as item_col() except limits the cells to non header cells.
=item item_week_nums()
Returns all week-of-year cells, if present.
=item item_box(item1a, item1b, [item2a, item2b, ...])
Returns all cells in the boxes defined by the item pairs provided.
=item allheaders()
Returns all header cells.
=item alldays()
Returns all non header cells, including empty cells.
=item all()
Returns all cells in the calendar, including empty cells.
=back
=head2 Transformation Methods
The following methods provide ways of translating between various item
symbols, coordinates, and other representations.
=over
=item coords_of(item)
Returns the row and column coordinates of the provided item symbol, for
use with the grid based methods in HTML::ElementTable.
=item item_at(row,column)
Returns the item symbol of the item at the provided coordinates, for use
with the item based methods of HTML::CalendarMonth.
=item monthname(monthnum)
Returns the name (item symbol) of the month number provided, where
I<monthnum> can be 1..12.
=item monthnum(monthname)
Returns the number (1..12) of the month name provided. Only a minimal
case-insensitive match on the month name is necessary; the proper item
symbol for the month will be determined from this match.
=item dayname(daynum)
Returns the name (item symbol) of the day of week header for a number of
a day of the week, where I<daynum> is 1..7.
=item daynum(dayname)
Returns the number of the day of the week given the symbolic name for
that day (Su..Sa).
=item daytime(day)
Returns the number in seconds since the epoch for a given day. The day
must be present in the current calendar.
=back
=head2 Other Methods
=over
=item default_css()
Returns a simple style sheet as a string that can be used in an HTML
document in conjunction with the classes assigned to elements when css
is enabled.
=back
=head1 REQUIRES
HTML::ElementTable
=head1 OPTIONAL
Date::Calc, DateTime, or Date::Manip (only if you want week-of-
year numbering or non-contemporary dates on a system without the
I<cal> command)
=head1 AUTHOR
Matthew P. Sisk, E<lt>F<sisk@mojotoad.com>E<gt>
=head1 COPYRIGHT
Copyright (c) 1998-2010 Matthew P. Sisk. All rights reserved. All wrongs
revenged. This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
=head1 SEE ALSO
A useful page of examples can be found at
http://www.mojotoad.com/sisk/projects/HTML-CalendarMonth.
For information on iso639 standards for abbreviations for language
names, see http://www.loc.gov/standards/iso639-2/englangn.html
HTML::ElementTable(3), HTML::Element(3), perl(1)
=for Pod::Coverage col_offset row_offset item_alias item_aliased last_week_row
|