58 lines
2 KiB
Python
58 lines
2 KiB
Python
# -*- python -*-
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Debian Member Portfolio Service routing configuration
|
|
#
|
|
# Copyright © 2009-2014 Jan Dittberner <jan@dittberner.info>
|
|
#
|
|
# This file is part of the Debian Member Portfolio Service.
|
|
#
|
|
# Debian Member Portfolio Service is free software: you can redistribute it
|
|
# and/or modify it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the License,
|
|
# or (at your option) any later version.
|
|
#
|
|
# Debian Member Portfolio Service is distributed in the hope that it will be
|
|
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
# General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
#
|
|
"""
|
|
Routes configuration
|
|
|
|
The more specific and detailed routes should be defined first so they
|
|
may take precedent over the more generic routes. For more information
|
|
refer to the routes manual at https://routes.readthedocs.org/
|
|
|
|
"""
|
|
|
|
from routes import Mapper
|
|
|
|
|
|
def make_map(config):
|
|
"""
|
|
Create, configure and return the routes Mapper
|
|
|
|
"""
|
|
map = Mapper(directory=config['pylons.paths']['controllers'],
|
|
always_scan=config['debug'], explicit=True)
|
|
map.minimization = False
|
|
|
|
# The ErrorController route (handles 404/500 error pages); it should
|
|
# likely stay at the top, ensuring it can always be resolved
|
|
map.connect('/error/{action}', controller='error')
|
|
map.connect('/error/{action}/{id}', controller='error')
|
|
|
|
# CUSTOM ROUTES HERE
|
|
map.connect('/', controller='portfolio', action='index')
|
|
map.connect('/result', controller='portfolio', action='urllist')
|
|
map.connect('/htmlformhelper.js', controller='showformscripts',
|
|
action='index')
|
|
|
|
map.connect('/{controller}/{action}')
|
|
map.connect('/{controller}/{action}/{id}')
|
|
|
|
return map
|