2008-07-25 08:26:05 +00:00
|
|
|
<?php
|
|
|
|
/* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# This file is part of InDefero, an open source project management application.
|
2008-07-25 08:28:35 +00:00
|
|
|
# Copyright (C) 2008 Céondo Ltd and contributors.
|
2008-07-25 08:26:05 +00:00
|
|
|
#
|
2008-07-25 08:28:35 +00:00
|
|
|
# InDefero is free software; you can redistribute it and/or modify
|
2008-07-25 08:26:05 +00:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
2008-07-25 08:28:35 +00:00
|
|
|
# InDefero is distributed in the hope that it will be useful,
|
2008-07-25 08:26:05 +00:00
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
$ctl = array();
|
|
|
|
$base = Pluf::f('idf_base');
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views',
|
|
|
|
'method' => 'index');
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/login/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views',
|
2008-08-02 07:48:35 +00:00
|
|
|
'method' => 'login',
|
|
|
|
'name' => 'login_view');
|
2008-07-25 08:26:05 +00:00
|
|
|
|
2008-08-12 20:17:49 +00:00
|
|
|
$ctl[] = array('regex' => '#^/preferences/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_User',
|
|
|
|
'method' => 'myAccount');
|
|
|
|
|
2008-12-05 19:37:24 +00:00
|
|
|
$ctl[] = array('regex' => '#^/dashboard/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_User',
|
|
|
|
'method' => 'dashboard',
|
|
|
|
'name' => 'idf_dashboard');
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/dashboard/submitted/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_User',
|
|
|
|
'method' => 'dashboard',
|
|
|
|
'params' => false,
|
|
|
|
'name' => 'idf_dashboard_submit');
|
|
|
|
|
2008-08-12 20:17:49 +00:00
|
|
|
$ctl[] = array('regex' => '#^/u/(.*)/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_User',
|
|
|
|
'method' => 'view');
|
|
|
|
|
2008-07-29 20:33:13 +00:00
|
|
|
$ctl[] = array('regex' => '#^/register/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views',
|
|
|
|
'method' => 'register');
|
|
|
|
|
2008-07-31 20:50:21 +00:00
|
|
|
$ctl[] = array('regex' => '#^/register/k/(.*)/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views',
|
|
|
|
'method' => 'registerConfirmation');
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/register/ik/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views',
|
|
|
|
'method' => 'registerInputKey');
|
|
|
|
|
2008-07-25 08:26:05 +00:00
|
|
|
$ctl[] = array('regex' => '#^/logout/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views',
|
|
|
|
'method' => 'logout');
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/help/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views',
|
|
|
|
'method' => 'faq');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/$#',
|
2008-07-25 08:26:05 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
2008-07-26 16:42:41 +00:00
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'home');
|
2008-07-25 08:26:05 +00:00
|
|
|
|
2008-11-14 14:41:51 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/timeline/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'timeline');
|
|
|
|
|
2008-12-03 14:00:47 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/feed/timeline/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'timelineFeed',
|
|
|
|
'name' => 'idf_project_timeline_feed');
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/feed/timeline/token/(.*)/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'timelineFeed',
|
|
|
|
'name' => 'idf_project_timeline_feed_auth');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/$#',
|
2008-07-25 08:26:05 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Issue',
|
|
|
|
'method' => 'index');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/search/$#',
|
2008-08-13 16:26:36 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Issue',
|
|
|
|
'method' => 'search');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/(\d+)/$#',
|
2008-07-25 08:26:05 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Issue',
|
|
|
|
'method' => 'view');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/(\d+)/star/$#',
|
2008-08-12 10:46:09 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Issue',
|
|
|
|
'method' => 'star');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/status/(\w+)/$#',
|
2008-07-25 08:26:05 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Issue',
|
|
|
|
'method' => 'listStatus');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/label/(\d+)/(\w+)/$#',
|
2008-07-25 08:26:05 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Issue',
|
|
|
|
'method' => 'listLabel');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/create/$#',
|
2008-07-25 08:26:05 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Issue',
|
|
|
|
'method' => 'create');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/my/(\w+)/$#',
|
2008-07-25 08:26:05 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Issue',
|
|
|
|
'method' => 'myIssues');
|
|
|
|
|
2008-11-12 19:40:58 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/attachment/(\d+)/(.*)$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Issue',
|
|
|
|
'method' => 'getAttachment');
|
|
|
|
|
2008-08-29 17:50:10 +00:00
|
|
|
// ---------- SCM ----------------------------------------
|
2008-07-26 16:42:41 +00:00
|
|
|
|
2008-11-23 13:41:41 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/tree/([^/]+)/$#',
|
2008-07-26 16:42:41 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Source',
|
|
|
|
'method' => 'treeBase');
|
|
|
|
|
2008-11-23 13:41:41 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/tree/([^/]+)/(.*)$#',
|
2008-07-26 16:42:41 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Source',
|
|
|
|
'method' => 'tree');
|
|
|
|
|
2008-11-23 13:41:41 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/changes/([^/]+)/$#',
|
2008-07-26 23:31:10 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Source',
|
|
|
|
'method' => 'changeLog');
|
|
|
|
|
2008-11-23 13:41:41 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/commit/([^/]+)/$#',
|
2008-07-28 20:09:17 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Source',
|
|
|
|
'method' => 'commit');
|
|
|
|
|
2008-11-25 19:11:09 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/ddiff/([^/]+)/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Source',
|
|
|
|
'method' => 'downloadDiff');
|
|
|
|
|
2008-11-23 13:41:41 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/download/([^/]+)/$#',
|
2008-08-02 11:51:42 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Source',
|
|
|
|
'method' => 'download');
|
|
|
|
|
2008-11-23 13:41:41 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/file/([^/]+)/(.*)$#',
|
2008-11-11 21:32:01 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Source',
|
|
|
|
'method' => 'getFile');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/treerev/$#',
|
2008-08-29 17:50:10 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
2008-09-12 10:32:27 +00:00
|
|
|
'model' => 'IDF_Views_Source_Svn',
|
2008-08-29 17:50:10 +00:00
|
|
|
'method' => 'treeRev');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/changesrev/$#',
|
2008-08-29 17:50:10 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
2008-09-12 10:32:27 +00:00
|
|
|
'model' => 'IDF_Views_Source_Svn',
|
2008-08-29 17:50:10 +00:00
|
|
|
'method' => 'changelogRev');
|
|
|
|
|
2008-11-22 22:51:23 +00:00
|
|
|
// ---------- WIKI -----------------------------------------
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/doc/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Wiki',
|
|
|
|
'method' => 'index');
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/doc/create/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Wiki',
|
|
|
|
'method' => 'create');
|
|
|
|
|
2008-11-25 19:32:33 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/doc/search/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Wiki',
|
|
|
|
'method' => 'search');
|
|
|
|
|
2008-11-25 20:07:51 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/doc/label/(\d+)/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Wiki',
|
|
|
|
'method' => 'listLabel');
|
|
|
|
|
2008-11-22 22:51:23 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/doc/update/(.*)/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Wiki',
|
|
|
|
'method' => 'update');
|
|
|
|
|
2008-11-23 11:33:11 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/doc/delrev/(\d+)/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Wiki',
|
|
|
|
'method' => 'deleteRev');
|
|
|
|
|
2008-11-22 22:51:23 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/page/(.*)/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Wiki',
|
|
|
|
'method' => 'view');
|
|
|
|
|
2008-08-06 19:54:45 +00:00
|
|
|
// ---------- Downloads ------------------------------------
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/$#',
|
2008-08-03 22:42:05 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Download',
|
|
|
|
'method' => 'index');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/label/(\d+)/$#',
|
2008-08-06 19:54:45 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Download',
|
|
|
|
'method' => 'listLabel');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/(\d+)/$#',
|
2008-08-03 22:42:05 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Download',
|
|
|
|
'method' => 'view');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/(\d+)/get/$#',
|
2008-08-05 13:44:27 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Download',
|
|
|
|
'method' => 'download');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/create/$#',
|
2008-08-03 22:42:05 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Download',
|
|
|
|
'method' => 'submit');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/(\d+)/delete/$#',
|
2008-08-08 19:33:10 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Download',
|
|
|
|
'method' => 'delete');
|
|
|
|
|
2008-11-30 09:26:05 +00:00
|
|
|
// ---------- CODE REVIEW --------------------------------
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/review/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Review',
|
|
|
|
'method' => 'index');
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/review/(\d+)/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Review',
|
|
|
|
'method' => 'view');
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/review/create/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Review',
|
|
|
|
'method' => 'create');
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/review/getpatch/(\d+)/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Review',
|
|
|
|
'method' => 'getPatch');
|
|
|
|
|
2008-07-26 16:42:41 +00:00
|
|
|
|
|
|
|
// ---------- ADMIN --------------------------------------
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/$#',
|
2008-07-25 08:26:05 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'admin');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/issues/$#',
|
2008-07-25 08:26:05 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'adminIssues');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/downloads/$#',
|
2008-08-03 22:42:05 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'adminDownloads');
|
|
|
|
|
2008-11-22 22:51:23 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/wiki/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'adminWiki');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/source/$#',
|
2008-09-02 14:45:49 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'adminSource');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/members/$#',
|
2008-07-25 08:26:05 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'adminMembers');
|
|
|
|
|
2008-09-04 15:19:53 +00:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/tabs/$#',
|
2008-08-07 13:35:03 +00:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'adminTabs');
|
|
|
|
|
2008-11-21 19:33:39 +00:00
|
|
|
// ---------- API ----------------------------------------
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/help/api/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views',
|
|
|
|
'method' => 'faqApi');
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/api/p/([\-\w]+)/issues/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Api',
|
|
|
|
'method' => 'issuesIndex');
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/api/p/([\-\w]+)/issues/create/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Api',
|
|
|
|
'method' => 'issueCreate');
|
|
|
|
|
2008-11-30 23:36:27 +00:00
|
|
|
// ---------- FORGE ADMIN --------------------------------
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/admin/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Admin',
|
|
|
|
'method' => 'home');
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/admin/projects/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Admin',
|
|
|
|
'method' => 'projects');
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/admin/projects/(\d+)/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Admin',
|
|
|
|
'method' => 'projectUpdate');
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/admin/projects/create/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Admin',
|
|
|
|
'method' => 'projectCreate');
|
|
|
|
|
|
|
|
|
2008-07-25 08:26:05 +00:00
|
|
|
return $ctl;
|