On Mon, Jun 2, 2008 at 3:24 AM, shabda <[EMAIL PROTECTED]> wrote:

>
> I am trying to access an URL, and I get an error like this,
>

So if the ultimate error message isn't entirely helpful, the traceback can
often help...


> Traceback (most recent call last):
>
>  File "C:\Python25.1\lib\site-packages\django\core\servers
> \basehttp.py", line 277, in run
>    self.result = application(self.environ, self.start_response)
>
>  File "C:\Python25.1\lib\site-packages\django\core\servers
> \basehttp.py", line 631, in __call__
>    return self.application(environ, start_response)
>
>  File "C:\Python25.1\lib\site-packages\django\core\handlers\wsgi.py",
> line 205, in __call__
>    response = self.get_response(request)
>
>  File "C:\Python25.1\lib\site-packages\django\core\handlers\base.py",
> line 108, in get_response
>    return callback(request, **param_dict)
>
>  File "C:\Python25.1\lib\site-packages\django\views\defaults.py",
> line 80, in page_not_found
>    return http.HttpResponseNotFound(t.render(RequestContext(request,
> {'request_path': request.path})))
>

'page_not_found' sounds like a clue that the response Django is trying to
generate is an HTTP 404 Page Not Found.  To confirm take a brief look at the
code identified in the detail:

http://code.djangoproject.com/browser/django/trunk/django/views/defaults.py#L69

and you can see it's probably 404.html that Django is trying to render.


>  File "C:\Python25.1\lib\site-packages\django\template\__init__.py",
> line 176, in render
>    return self.nodelist.render(context)
>
>  File "C:\Python25.1\lib\site-packages\django\template\__init__.py",
> line 751, in render
>    bits.append(self.render_node(node, context))
>
>  File "C:\Python25.1\lib\site-packages\django\template\__init__.py",
> line 764, in render_node
>    return node.render(context)
>
>  File "C:\Python25.1\lib\site-packages\django\template
> \loader_tags.py", line 71, in render
>    compiled_parent = self.get_parent(context)
>
>  File "C:\Python25.1\lib\site-packages\django\template
> \loader_tags.py", line 66, in get_parent
>    raise TemplateSyntaxError, "Template %r cannot be extended,
> because it doesn't exist" % parent
>
> TemplateSyntaxError: Template u'base.html' cannot be extended, because
> it doesn't exist
>
> So I cannot understand which template is extending 'base.html', from
> the traceback. Also, he traceback shows up as raw traceback, not as
> the formatted page which Django shows!
>
>
Agreed the error message seems like it could be more helpful and identify
the template file that is trying to extend the non-existent file.  If you're
sufficiently motivated and have the time, etc. you could try for a patch and
submit it.

The raw traceback instead of the Django debug page may be due to this
ticket:

http://code.djangoproject.com/ticket/6094

Karen

--~--~---------~--~----~------------~-------~--~----~
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