* Fix stupid bug in date matching, patch from Roland Mas. Closes: #381132

* Added many unit tests for pagespec_match.
master
joey 2006-08-02 15:33:26 +00:00
parent 3eea683d71
commit ee84ed3770
3 changed files with 15 additions and 6 deletions

View File

@ -599,16 +599,15 @@ sub match_backlink ($$) { #{{{
} #}}}
sub match_creation_day ($$) { #{{{
return if (gmtime($pagectime{shift()}))[3] == shift;
return ((gmtime($pagectime{shift()}))[3] == shift);
} #}}}
sub match_creation_month ($$) { #{{{
return if (gmtime($pagectime{shift()}))[4] + 1 == shift;
return ((gmtime($pagectime{shift()}))[4] + 1 == shift);
} #}}}
sub match_creation_year ($$) { #{{{
return if (gmtime($pagectime{shift()}))[5] + 1900 == shift;
return ((gmtime($pagectime{shift()}))[5] + 1900 == shift);
} #}}}
1

4
debian/changelog vendored
View File

@ -2,8 +2,10 @@ ikiwiki (1.14) UNRELEASED; urgency=low
* Memoize pagespec translation, this speeds up a build of the ikiwiki tree
by 10% or so.
* Fix stupid bug in date matching, patch from Roland Mas. Closes: #381132
* Added many unit tests for pagespec_match.
-- Joey Hess <joeyh@debian.org> Tue, 1 Aug 2006 23:35:13 -0400
-- Joey Hess <joeyh@debian.org> Wed, 2 Aug 2006 11:31:52 -0400
ikiwiki (1.13) unstable; urgency=low

View File

@ -1,7 +1,7 @@
#!/usr/bin/perl
use warnings;
use strict;
use Test::More tests => 25;
use Test::More tests => 31;
BEGIN { use_ok("IkiWiki"); }
@ -25,6 +25,14 @@ ok(! IkiWiki::pagespec_match("foo", "link(quux)"));
ok(IkiWiki::pagespec_match("bar", "backlink(foo)"));
ok(! IkiWiki::pagespec_match("quux", "backlink(foo)"));
$IkiWiki::pagectime{foo}=1154532692; # Wed Aug 2 11:26 EDT 2006
ok(IkiWiki::pagespec_match("foo", "creation_year(2006)"), "year");
ok(! IkiWiki::pagespec_match("foo", "creation_year(2005)"), "other year");
ok(IkiWiki::pagespec_match("foo", "creation_month(8)"), "month");
ok(! IkiWiki::pagespec_match("foo", "creation_month(9)"), "other month");
ok(IkiWiki::pagespec_match("foo", "creation_day(2)"), "day");
ok(! IkiWiki::pagespec_match("foo", "creation_day(3)"), "other day");
# old style globlists
ok(IkiWiki::pagespec_match("foo", "foo bar"), "simple list");
ok(IkiWiki::pagespec_match("bar", "foo bar"), "simple list 2");