1
0
Fork 0

initial commit

This commit is contained in:
fanir 2015-11-13 23:51:46 +01:00
commit 1cc4bf3572
254 changed files with 63622 additions and 0 deletions
htdocs/includes

View file

@ -0,0 +1,11 @@
<?php
// Define the routes
$routes = array(
'feed' => "/feed/(?'slug'[[:alnum:]\._-]+)/(?'contentType'page|diff)/(?'feedType'atom|rss)",
'feedInfo' => "/feed/(?'slug'[[:alnum:]\._-]+)(/info)?",
'home' => "/",
'create' => "/create",
'flatpage' => "/page/(?'slug'[[:alnum:]-\._]+)",
'announcement' => "/announcement/(?'id'[0-9]+)(/.*)?",
);