Invoke pylint from build script.
[Melange.git] / app / urls.py
blob2d780fb9ac5df9194db0f00fa7ccddc7fce4168e
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 '"Lennard de Rijk" <ljvderijk@gmail.com>',
22 '"Pawel Solyga" <pawel.solyga@gmail.com>',
26 from soc.views.sitemap import build
29 urlpatterns = build.getPatterns()
31 # define the error handlers
32 handler404 = 'django.views.defaults.page_not_found'
33 handler500 = 'django.views.defaults.server_error'