2008-07-25 10:26:05 +02: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 10:28:35 +02:00
|
|
|
# Copyright (C) 2008 Céondo Ltd and contributors.
|
2008-07-25 10:26:05 +02:00
|
|
|
#
|
2008-07-25 10:28:35 +02:00
|
|
|
# InDefero is free software; you can redistribute it and/or modify
|
2008-07-25 10:26:05 +02: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 10:28:35 +02:00
|
|
|
# InDefero is distributed in the hope that it will be useful,
|
2008-07-25 10:26:05 +02: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 09:48:35 +02:00
|
|
|
'method' => 'login',
|
|
|
|
'name' => 'login_view');
|
2008-07-25 10:26:05 +02:00
|
|
|
|
2008-08-12 22:17:49 +02:00
|
|
|
$ctl[] = array('regex' => '#^/preferences/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_User',
|
|
|
|
'method' => 'myAccount');
|
|
|
|
|
|
|
|
$ctl[] = array('regex' => '#^/u/(.*)/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_User',
|
|
|
|
'method' => 'view');
|
|
|
|
|
2008-07-29 22:33:13 +02:00
|
|
|
$ctl[] = array('regex' => '#^/register/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views',
|
|
|
|
'method' => 'register');
|
|
|
|
|
2008-07-31 22:50:21 +02: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 10:26:05 +02: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 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/$#',
|
2008-07-25 10:26:05 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
2008-07-26 18:42:41 +02:00
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'home');
|
2008-07-25 10:26:05 +02:00
|
|
|
|
2008-11-14 15:41:51 +01:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/timeline/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'timeline');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/$#',
|
2008-07-25 10:26:05 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Issue',
|
|
|
|
'method' => 'index');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/search/$#',
|
2008-08-13 18:26:36 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Issue',
|
|
|
|
'method' => 'search');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/(\d+)/$#',
|
2008-07-25 10:26:05 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Issue',
|
|
|
|
'method' => 'view');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/(\d+)/star/$#',
|
2008-08-12 12:46:09 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Issue',
|
|
|
|
'method' => 'star');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/status/(\w+)/$#',
|
2008-07-25 10:26:05 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Issue',
|
|
|
|
'method' => 'listStatus');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/label/(\d+)/(\w+)/$#',
|
2008-07-25 10:26:05 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Issue',
|
|
|
|
'method' => 'listLabel');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/create/$#',
|
2008-07-25 10:26:05 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Issue',
|
|
|
|
'method' => 'create');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/my/(\w+)/$#',
|
2008-07-25 10:26:05 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Issue',
|
|
|
|
'method' => 'myIssues');
|
|
|
|
|
2008-11-12 20:40:58 +01:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/attachment/(\d+)/(.*)$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Issue',
|
|
|
|
'method' => 'getAttachment');
|
|
|
|
|
2008-08-29 19:50:10 +02:00
|
|
|
// ---------- SCM ----------------------------------------
|
2008-07-26 18:42:41 +02:00
|
|
|
|
2008-11-23 14:41:41 +01:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/tree/([^/]+)/$#',
|
2008-07-26 18:42:41 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Source',
|
|
|
|
'method' => 'treeBase');
|
|
|
|
|
2008-11-23 14:41:41 +01:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/tree/([^/]+)/(.*)$#',
|
2008-07-26 18:42:41 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Source',
|
|
|
|
'method' => 'tree');
|
|
|
|
|
2008-11-23 14:41:41 +01:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/changes/([^/]+)/$#',
|
2008-07-27 01:31:10 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Source',
|
|
|
|
'method' => 'changeLog');
|
|
|
|
|
2008-11-23 14:41:41 +01:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/commit/([^/]+)/$#',
|
2008-07-28 22:09:17 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Source',
|
|
|
|
'method' => 'commit');
|
|
|
|
|
2008-11-25 20:11:09 +01:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/ddiff/([^/]+)/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Source',
|
|
|
|
'method' => 'downloadDiff');
|
|
|
|
|
2008-11-23 14:41:41 +01:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/download/([^/]+)/$#',
|
2008-08-02 13:51:42 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Source',
|
|
|
|
'method' => 'download');
|
|
|
|
|
2008-11-23 14:41:41 +01:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/file/([^/]+)/(.*)$#',
|
2008-11-11 22:32:01 +01:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Source',
|
|
|
|
'method' => 'getFile');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/treerev/$#',
|
2008-08-29 19:50:10 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
2008-09-12 12:32:27 +02:00
|
|
|
'model' => 'IDF_Views_Source_Svn',
|
2008-08-29 19:50:10 +02:00
|
|
|
'method' => 'treeRev');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/changesrev/$#',
|
2008-08-29 19:50:10 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
2008-09-12 12:32:27 +02:00
|
|
|
'model' => 'IDF_Views_Source_Svn',
|
2008-08-29 19:50:10 +02:00
|
|
|
'method' => 'changelogRev');
|
|
|
|
|
2008-11-22 23:51:23 +01: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 20:32:33 +01:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/doc/search/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Wiki',
|
|
|
|
'method' => 'search');
|
|
|
|
|
2008-11-25 21:07:51 +01:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/doc/label/(\d+)/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Wiki',
|
|
|
|
'method' => 'listLabel');
|
|
|
|
|
2008-11-22 23:51:23 +01:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/doc/update/(.*)/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Wiki',
|
|
|
|
'method' => 'update');
|
|
|
|
|
2008-11-23 12:33:11 +01:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/doc/delrev/(\d+)/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Wiki',
|
|
|
|
'method' => 'deleteRev');
|
|
|
|
|
2008-11-22 23:51:23 +01:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/page/(.*)/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Wiki',
|
|
|
|
'method' => 'view');
|
|
|
|
|
2008-08-06 21:54:45 +02:00
|
|
|
// ---------- Downloads ------------------------------------
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/$#',
|
2008-08-04 00:42:05 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Download',
|
|
|
|
'method' => 'index');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/label/(\d+)/$#',
|
2008-08-06 21:54:45 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Download',
|
|
|
|
'method' => 'listLabel');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/(\d+)/$#',
|
2008-08-04 00:42:05 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Download',
|
|
|
|
'method' => 'view');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/(\d+)/get/$#',
|
2008-08-05 15:44:27 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Download',
|
|
|
|
'method' => 'download');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/create/$#',
|
2008-08-04 00:42:05 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Download',
|
|
|
|
'method' => 'submit');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/(\d+)/delete/$#',
|
2008-08-08 21:33:10 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Download',
|
|
|
|
'method' => 'delete');
|
|
|
|
|
2008-11-30 10:26:05 +01: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 18:42:41 +02:00
|
|
|
|
|
|
|
// ---------- ADMIN --------------------------------------
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/$#',
|
2008-07-25 10:26:05 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'admin');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/issues/$#',
|
2008-07-25 10:26:05 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'adminIssues');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/downloads/$#',
|
2008-08-04 00:42:05 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'adminDownloads');
|
|
|
|
|
2008-11-22 23:51:23 +01:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/wiki/$#',
|
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'adminWiki');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/source/$#',
|
2008-09-02 16:45:49 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'adminSource');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/members/$#',
|
2008-07-25 10:26:05 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'adminMembers');
|
|
|
|
|
2008-09-04 17:19:53 +02:00
|
|
|
$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/tabs/$#',
|
2008-08-07 15:35:03 +02:00
|
|
|
'base' => $base,
|
|
|
|
'priority' => 4,
|
|
|
|
'model' => 'IDF_Views_Project',
|
|
|
|
'method' => 'adminTabs');
|
|
|
|
|
2008-11-21 20:33:39 +01: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-07-25 10:26:05 +02:00
|
|
|
return $ctl;
|