Except and properly handle Errors in view decorator
After the next release we can remove all try/except combinations that
are not customized and leave the handling of those exceptions to the
view decorator.
Patch by: Sverre Rabbelier
from django.conf.urls.defaults import *
urlpatterns = patterns('django.contrib.flatpages.views',
(r'^(?P<url>.*)$', 'flatpage'),
)