aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/calendar.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2010-05-08 12:45:21 -0400
committerJoey Hess <joey@kitenet.net>2010-05-08 12:45:21 -0400
commit0f778849c6df237f2219de6e1fa237cf2bc9955f (patch)
tree52d489aff59f212394de02960a5842b6458cda3f /IkiWiki/Plugin/calendar.pm
parentf0914b386b026035d0055812a43dbd4a6ae528f7 (diff)
downloadikiwiki-0f778849c6df237f2219de6e1fa237cf2bc9955f.tar
ikiwiki-0f778849c6df237f2219de6e1fa237cf2bc9955f.tar.gz
calendar: Allow negative month to be specified. -1 is last month, etc. (And also negaitve years.)
Diffstat (limited to 'IkiWiki/Plugin/calendar.pm')
-rw-r--r--IkiWiki/Plugin/calendar.pm27
1 files changed, 23 insertions, 4 deletions
diff --git a/IkiWiki/Plugin/calendar.pm b/IkiWiki/Plugin/calendar.pm
index aeb5f3d29..02f41070e 100644
--- a/IkiWiki/Plugin/calendar.pm
+++ b/IkiWiki/Plugin/calendar.pm
@@ -386,8 +386,19 @@ sub preprocess (@) {
$params{year} = $thisyear unless defined $params{year};
$params{month} = $thismonth unless defined $params{month};
+ my $relativemonth=0;
+ if ($params{month} < 1) {
+ $params{month}=$thismonth+$params{month};
+ $relativemonth=1;
+ }
+ my $relativeyear=0;
+ if ($params{year} < 1) {
+ $params{year}=$thisyear+$params{year};
+ $relativeyear=1;
+ }
+
$params{month} = sprintf("%02d", $params{month});
-
+
if ($params{type} eq 'month' && $params{year} == $thisyear
&& $params{month} == $thismonth) {
# calendar for current month, updates next midnight
@@ -404,8 +415,11 @@ sub preprocess (@) {
$pagestate{$params{destpage}}{calendar}{nextchange}=
timelocal(0, 0, 0, 1, $params{month}-1, $params{year});
}
- elsif ($params{type} eq 'year' && $params{year} == $thisyear) {
- # calendar for current year, updates 1st of next month
+ elsif (($params{type} eq 'year' && $params{year} == $thisyear) ||
+ $relativemonth) {
+ # Calendar for current year updates 1st of next month.
+ # Any calendar relative to the current month also updates
+ # then.
if ($thismonth < 12) {
$pagestate{$params{destpage}}{calendar}{nextchange}=
timelocal(0, 0, 0, 1, $thismonth+1-1, $params{year});
@@ -415,6 +429,12 @@ sub preprocess (@) {
timelocal(0, 0, 0, 1, 1-1, $params{year}+1);
}
}
+ elsif ($relativeyear) {
+ # Any calendar relative to the current year updates 1st
+ # of next year.
+ $pagestate{$params{destpage}}{calendar}{nextchange}=
+ timelocal(0, 0, 0, 1, 1-1, $thisyear+1);
+ }
elsif ($params{type} eq 'year' && $params{year} > $thisyear) {
# calendar for upcoming year, updates 1st of that year
$pagestate{$params{destpage}}{calendar}{nextchange}=
@@ -426,7 +446,6 @@ sub preprocess (@) {
delete $pagestate{$params{destpage}}{calendar};
}
- # Calculate month names for next month, and previous months
my $calendar="";
if ($params{type} eq 'month') {
$calendar=format_month(%params);