forked from github/kensanata.oddmuse
Stefan Kamphausen provided a reason for liking the deprecated cal3 extension: he likes cal3 because it also displays the next and previous month as opposed to calendar.pl which only displays the current month. This commit allows users to get the same behaviour by setting $CalendarOnEveryPage to values greater than 1: 1 shows the current month on every page, but 2 shows the previous and the current month on every page, and 3 shows the previous, the current and the next month on every page.
66 lines
3.1 KiB
Perl
66 lines
3.1 KiB
Perl
# Copyright (C) 2006, 2007 Alex Schroeder <alex@emacswiki.org>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# 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 the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
require 't/test.pl';
|
|
package OddMuse;
|
|
use Test::More tests => 12;
|
|
|
|
my ($sec, $min, $hour, $mday, $mon, $year) = localtime($Now);
|
|
$mon++;
|
|
$year += 1900;
|
|
my $year_next = $year +1;
|
|
my $year_prev = $year -1;
|
|
my $today = sprintf("%d-%02d-%02d", $year, $mon, $mday);
|
|
$oday = $mday -1;
|
|
$oday += 2 if $oday < 1;
|
|
my $otherday = sprintf("%d-%02d-%02d", $year, $mon, $oday);
|
|
|
|
add_module('calendar.pl');
|
|
|
|
test_page(update_page("with_cal", "zulu\n\ncalendar:2006\n\nwarrior\n"),
|
|
'<p>zulu</p><p class="nav">',
|
|
'</pre></div><p>warrior</p></div><div class="wrapper close"></div></div><div class="footer">');
|
|
|
|
test_page(update_page("with_cal", "zulu\n\nmonth:2006-09\n\nwarrior\n"),
|
|
'<p>zulu</p><div class="cal"><div class="month"><pre>',
|
|
'</pre></div></div><p>warrior</p></div><div class="wrapper close"></div></div><div class="footer">');
|
|
|
|
test_page(update_page("with_cal", "zulu\n\nmonth:+0\n\nwarrior\n"),
|
|
'<p>zulu</p><div class="cal"><div class="month"><pre>',
|
|
'</pre></div></div><p>warrior</p></div><div class="wrapper close"></div></div><div class="footer">');
|
|
|
|
xpath_test(get_page('action=calendar'),
|
|
# yearly navigation
|
|
'//div[@class="content cal year"]/p[@class="nav"]/a[@href="http://localhost/wiki.pl?action=calendar;year=' . $year_prev . '"][text()="Previous"]/following-sibling::text()[string()=" | "]/following-sibling::a[@href="http://localhost/wiki.pl?action=calendar;year=' . $year_next . '"][text()="Next"]',
|
|
# monthly collection
|
|
'//div[contains(@class,"cal")]/div[@class="month"]/pre/span[@class="title"]/a[@class="local collection month"][@href="http://localhost/wiki.pl?action=collect;match=%5e' . sprintf("%d-%02d", $year, $mon) . '"]',
|
|
# today day edit
|
|
'//a[@class="edit today"][@href="http://localhost/wiki.pl?action=edit;id=' . $today . '"][normalize-space(text())="' . $mday . '"]',
|
|
# other day edit
|
|
'//a[@class="edit"][@href="http://localhost/wiki.pl?action=edit;id=' . $otherday . '"][normalize-space(text())="' . $oday . '"]',
|
|
);
|
|
|
|
update_page($today, "yadda");
|
|
|
|
xpath_test(get_page('action=calendar'),
|
|
# day exact match
|
|
'//a[@class="local exact today"][@href="http://localhost/wiki.pl/' . $today . '"][normalize-space(text())="' . $mday . '"]');
|
|
|
|
update_page("${today}_more", "more yadda");
|
|
|
|
xpath_test(get_page('action=calendar'),
|
|
# today exact match
|
|
'//a[@class="local collection today"][@href="http://localhost/wiki.pl?action=collect;match=%5e' . $today . '"][normalize-space(text())="' . $mday . '"]');
|