Merge branch 'joey' into revert
authorPeter Gammie <peteg42@gmail.com>
Thu, 30 Sep 2010 06:13:56 +0000 (16:13 +1000)
committerPeter Gammie <peteg42@gmail.com>
Thu, 30 Sep 2010 06:13:56 +0000 (16:13 +1000)
debian/changelog
doc/plugins/contrib/imailhide.mdwn
t/pagespec_match.t

index a26a356173618bc29fd2e0c788fd69e225a6b93d..527dd788407d54f2e7031d9b9c747eed7ebfab94 100644 (file)
@@ -1,3 +1,9 @@
+ikiwiki (3.20100927) UNRELEASED; urgency=low
+
+  * Fix test suite failure on other side of date line.
+
+ -- Joey Hess <joeyh@debian.org>  Wed, 29 Sep 2010 11:58:23 -0400
+
 ikiwiki (3.20100926) unstable; urgency=low
 
   * meta: Ensure that the url specified by xrds-location is absolute.
index 3aacef57a1c3814c0fa6c4f79c2b8d0537e2d626..6009aa01261221bae3345a198995c7c5cc1e9804 100644 (file)
@@ -1,7 +1,7 @@
-[[!template id=plugin name=imailhide author="Peter Vizi"]]
+[[!template id=plugin name=imailhide author="Peter_Vizi"]]
 [[!tag type/widget type/html]]
 
-# Mailhide plugin for Ikiwiki
+# Mailhide Plugin for Ikiwiki
 
 This plugin provides the directive mailhide, that uses the [Mailhide
 API][1] to protect email addresses from spammers.
@@ -53,8 +53,13 @@ will result in `joh<a href="...">...</a>@example.com`.
 *Optional.* You can set the style parameter individually for each
  `mailhide` call. See `mailhide_default_style` for details.
 
+## Known Issues
+
+1. [opening new window when displaying email address][6]
+
 [1]: http://www.google.com/recaptcha/mailhide/
 [2]: http://search.cpan.org/perldoc?Captcha::reCAPTCHA::Mailhide
 [3]: http://github.com/petervizi/imailhide
 [4]: http://www.google.com/recaptcha/mailhide/apikey
 [5]: http://code.google.com/apis/recaptcha/docs/mailhideapi.html
+[6]: http://github.com/petervizi/imailhide/issues#issue/1
index fe9624370625a74a57146f8f7de80c56c6215a0b..a37b06e8e7480173df642782f96e35debd6b6922 100755 (executable)
@@ -101,6 +101,7 @@ ok(pagespec_match("ook", "link(blog/tags/foo)"), "link internal absolute success
 ok(pagespec_match("ook", "link(/blog/tags/foo)"), "link explicit absolute success");
 ok(pagespec_match("meh", "!link(done)"), "negated failing match is a success");
 
+$ENV{TZ}="GMT";
 $IkiWiki::pagectime{foo}=1154532692; # Wed Aug  2 11:26 EDT 2006
 $IkiWiki::pagectime{bar}=1154532695; # after
 ok(pagespec_match("foo", "created_before(bar)"));