diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-01-31 19:26:36 -0500 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-01-31 19:26:36 -0500 |
commit | 3b83e520182a83e4ae6c61ab7b360b0eb939469f (patch) | |
tree | 540e62579bb246a411d25fac866968605ee496f7 /t | |
parent | e5c8bc6222712fe9f465d4ac36350fd4ea729787 (diff) | |
download | ikiwiki-3b83e520182a83e4ae6c61ab7b360b0eb939469f.tar ikiwiki-3b83e520182a83e4ae6c61ab7b360b0eb939469f.tar.gz |
rename apache404 -> 404
This may already work with other web servers that have copied apache's
interface, and it should be easy to add support to it for web servers that
use some other interface. So, make the name more general.
Diffstat (limited to 't')
-rwxr-xr-x | t/404.t (renamed from t/apache404.t) | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/t/apache404.t b/t/404.t index 00fc35250..0bb3c6063 100755 --- a/t/apache404.t +++ b/t/404.t @@ -3,11 +3,10 @@ use warnings; use strict; use Test::More tests => 17; -BEGIN { use_ok("IkiWiki::Plugin::apache404"); } +BEGIN { use_ok("IkiWiki::Plugin::404"); } sub cgi_page_from_404 { - return IkiWiki::Plugin::apache404::cgi_page_from_404(shift, shift, - shift); + return IkiWiki::Plugin::404::cgi_page_from_404(shift, shift, shift); } $IkiWiki::config{htmlext} = 'html'; |