Hi,

it must be some kind of unhandled exception, but I fail to see where
it might occur. I now boiled down the app to a single URL pattern and
a single view:

# urls.py:
urlpatterns = patterns('myproject.myapp.views',
       (r'^test/$', 'test'),
)

# views.py:
def test(request):
    raise Http404

When I rename the template 500.html to something else, this is
printed:

...

File "/Library/Python/2.5/site-packages/django/core/handlers/base.py",
line 116, in get_response
    return self.handle_uncaught_exception(request, resolver,
sys.exc_info())

  File "/Library/Python/2.5/site-packages/django/core/handlers/
base.py", line 158, in handle_uncaught_exception
    return callback(request, **param_dict)

  File "/Library/Python/2.5/site-packages/django/views/defaults.py",
line 88, in server_error
    t = loader.get_template(template_name) # You need to create a
500.html template.

...

So there is indeed an uncaught exception which makes Django use the
500.html. It must be something that happens after Http404 is raised,
and my whole app/project are not involved anymore (except for
providing the template for the 404 page).

Kind regards,
Jan

On 28 Okt., 16:33, Thomas Guettler <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I guess that you get 500 because there is an unhandled exception. Can
> you see
> a traceback in your error log?
>
> What happens if you write "return django.http.HttpResponse('OK')"
> instead of raise Http404?
>
>  Thomas
>
> janedenoneschrieb:
>
>
>
> > Hi,
>
> > I use the following simple view
>
> > def index(request, page_id, current_subpage=1):
> >    try:
> >            current_page = get_object_or_404(Page, pk=page_id)
> >    except:
> >            # if anything else goes wrong, display the 404 anway
> >            raise Http404
>
> > In debug mode, my app returns the detailed 'page not found' page for
> > non-existing pages, but as soon as I switch debug to false, the
> > 500 template is shown. I can, however, display render and return the
> > 404 template manually.
>
> > What could possibly go wrong when a Http404 exception is raised, i.e.
> > why does Django use the 500 template in this case?
>
> --
> Thomas Guettler,http://www.thomas-guettler.de/
> E-Mail: guettli (*) thomas-guettler + de
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to