61 lines
2.9 KiB
Python
61 lines
2.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
|
|
|
|
###############################################################################
|
|
# ScribeEngine - Open Source Blog Software #
|
|
# --------------------------------------------------------------------------- #
|
|
# Copyright (c) 2010 Raoul Snyman #
|
|
# --------------------------------------------------------------------------- #
|
|
# This program is free software; you can redistribute it and/or modify it #
|
|
# under the terms of the GNU General Public License as published by the Free #
|
|
# Software Foundation; version 2 of the License. #
|
|
# #
|
|
# This program 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 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., 59 #
|
|
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
|
###############################################################################
|
|
|
|
"""
|
|
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 http://routes.groovie.org/docs/
|
|
"""
|
|
from pylons import config
|
|
from routes import Mapper
|
|
|
|
def make_map():
|
|
"""Create, configure and return the routes Mapper"""
|
|
map = Mapper(directory=config['pylons.paths']['controllers'],
|
|
always_scan=config['debug'])
|
|
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('/archive/{year}', controller='blog', action='archive')
|
|
map.connect('/archive/{year}/{month}', controller='blog', action='archive')
|
|
map.connect('/archive/{year}/{month}/{day}', controller='blog', action='archive')
|
|
map.connect('/archive/{year}/{month}/{day}/{url}', controller='blog', action='view')
|
|
|
|
map.connect('/search', controller='blog', action='search')
|
|
|
|
map.connect('/tag/{id}', controller='blog', action='tag')
|
|
|
|
map.connect('/{controller}/{action}')
|
|
map.connect('/{controller}/{action}/{id}')
|
|
|
|
map.connect('/', controller='blog', action='index')
|
|
|
|
return map
|