More routes.

This commit is contained in:
Adrian Lang 2009-02-22 13:31:50 +01:00 committed by Evan Prodromou
parent a90a8da5c3
commit fa82722e5a
1 changed files with 4 additions and 0 deletions

View File

@ -133,6 +133,7 @@ class Router
foreach (array('group', 'people', 'notice') as $s) {
$m->connect('search/'.$s, array('action' => $s.'search'));
$m->connect('search/'.$s.'?q=:q', array('action' => $s.'search'), array('q' => '.+'));
}
$m->connect('search/notice/rss', array('action' => 'noticesearchrss'));
@ -140,6 +141,9 @@ class Router
// notice
$m->connect('notice/new', array('action' => 'newnotice'));
$m->connect('notice/new?replyto=:replyto',
array('action' => 'newnotice'),
array('replyto' => '[A-Za-z0-9_-]+'));
$m->connect('notice/:notice',
array('action' => 'shownotice'),
array('notice' => '[0-9]+'));