Add missing __init__.py file in taggable-mixin module.
[Melange.git] / app / urls.py
blob850b72d5c181cb9be009086a6de2426f6d20a4a8
1 # Copyright 2008 the Melange authors.
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
7 # http://www.apache.org/licenses/LICENSE-2.0
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
15 """Module containing Melange URL patterns definition.
16 """
18 __authors__ = [
19 '"Augie Fackler" <durin42@gmail.com>',
20 '"Todd Larsen" <tlarsen@google.com>',
21 '"Sverre Rabbelier" <sverre@rabbelier.nl>',
22 '"Lennard de Rijk" <ljvderijk@gmail.com>',
23 '"Pawel Solyga" <pawel.solyga@gmail.com>',
27 from soc.modules import callback
29 urlpatterns = callback.getCore().getPatterns()
31 # define the error handlers
32 handler404 = 'django.views.defaults.page_not_found'
33 handler500 = 'django.views.defaults.server_error'