diff options
Diffstat (limited to 'htdocs/index.php')
-rw-r--r-- | htdocs/index.php | 27 |
1 files changed, 2 insertions, 25 deletions
diff --git a/htdocs/index.php b/htdocs/index.php index 150b14a..397696f 100644 --- a/htdocs/index.php +++ b/htdocs/index.php @@ -2,28 +2,5 @@ require_once __DIR__.'/../init.php'; -$r = (new Router()) - // route handler input - // ----- ------- ----- - ->add('/', 'index') - ->add('contacts/', 'contacts') - ->add('projects.html', 'projects') - ->add('blog/(\d+)/', 'post_id id=$(1)') - ->add('([a-z0-9-]+)/', 'auto name=$(1)') - - ->add('feed.rss', 'RSS') - ->add('rss/', 'RSS') - - ->add('admin/', 'admin/index') - ->add('admin/{login,logout,log}/', 'admin/${1}') - - ->add('([a-z0-9-]+)/{delete,edit}/', 'admin/auto_${1} short_name=$(1)') - ->add('([a-z0-9-]+)/create/', 'admin/page_add short_name=$(1)') - ->add('write/', 'admin/post_add') - ->add('admin/markdown-preview.ajax', 'admin/markdown_preview') - - ->add('uploads/', 'admin/uploads') - ->add('uploads/{edit_note,delete}/(\d+)/','admin/upload_${1} id=$(1)') -; - -(new RequestDispatcher($r))->dispatch();
\ No newline at end of file +router_init(); +dispatch_request(); |