app/urls.py
changeset 694 50ef790374da
parent 494 5e9c656a1b68
child 695 bc575b44755b
equal deleted inserted replaced
693:99081e8176b8 694:50ef790374da
    13 # limitations under the License.
    13 # limitations under the License.
    14 
    14 
    15 __authors__ = [
    15 __authors__ = [
    16   '"Augie Fackler" <durin42@gmail.com>',
    16   '"Augie Fackler" <durin42@gmail.com>',
    17   '"Todd Larsen" <tlarsen@google.com>',
    17   '"Todd Larsen" <tlarsen@google.com>',
       
    18   '"Lennard de Rijk" <rijk0214@gmail.com>',
    18   '"Pawel Solyga" <pawel.solyga@gmail.com>',
    19   '"Pawel Solyga" <pawel.solyga@gmail.com>',
    19   ]
    20   ]
    20 
    21 
    21 
    22 
    22 from soc.views.sitemap import build
    23 from soc.views.sitemap import build
    23 
    24 
    24 
    25 
    25 urlpatterns = build.getPatterns()
    26 urlpatterns = build.getPatterns()
       
    27 
       
    28 # define the error handlers
       
    29 handler404 = 'django.views.defaults.page_not_found'
       
    30 handler500 = 'django.views.defaults.server_error'