summaryrefslogtreecommitdiffstats
path: root/lib/Narwhal.pm
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-02-17 21:41:31 -0600
committerJesse Luehrs <doy@tozt.net>2011-02-17 21:41:31 -0600
commita0c5a7ce958bf1f619b95f7b5235b1fddd43e961 (patch)
tree9fb5cdb459dfba46ba8036b70954f91d76fd9d71 /lib/Narwhal.pm
parent224898fb1fd3046fcb82461610d5dd3ff0d0b01f (diff)
downloadnarwhal-a0c5a7ce958bf1f619b95f7b5235b1fddd43e961.tar.gz
narwhal-a0c5a7ce958bf1f619b95f7b5235b1fddd43e961.zip
actually, only edit needs the special http method thing
Diffstat (limited to 'lib/Narwhal.pm')
-rw-r--r--lib/Narwhal.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Narwhal.pm b/lib/Narwhal.pm
index 333ba89..aae8a25 100644
--- a/lib/Narwhal.pm
+++ b/lib/Narwhal.pm
@@ -12,7 +12,7 @@ config template_root => sub {
component Redirect => 'Narwhal::Component::Redirect';
-component WikiPage => 'Narwhal::Component::Wiki::Page', (
+component Wiki => 'Narwhal::Component::Wiki', (
kioku => depends_on('/Component/Kioku'),
tt => depends_on('/Component/TT'),
);
@@ -36,7 +36,7 @@ router as {
route '/' => 'redirect.permanent', (
to => '/page/main',
);
- route '/page/:page_name' => 'page', (
+ route '/page/:page_name' => 'wiki.page', (
page_name => { isa => 'Str' },
);
route '/edit/:page_name' => 'edit', (
@@ -44,7 +44,7 @@ router as {
);
}, (
redirect => depends_on('/Component/Redirect'),
- page => depends_on('/Component/WikiPage'),
+ wiki => depends_on('/Component/Wiki'),
edit => depends_on('/Component/WikiEdit'),
);