On Thu, Sep 18, 2008 at 5:48 PM, Valery Khamenya <[EMAIL PROTECTED]> wrote:

> Hi all
>
> I got a strange issue with Django: 0.96.1
>
> During render_to_response() call against this 1-line template:
>
>  <img src="i" >
>
> I get a long error output (see below). Now the funniest. If I delete or
> change the symbol "i" then I get no error anymore.
> Namely, if instead of
>
> <img src="i" >
>
> I put
>
> <img src="" >
>
> or
>
> <img src="a" >
>
> then things are OK.
>
> I am puzzled. Any comments?
>

[snip]

What you describe above does not match the traceback below.  You say you are
doing a render_to_reponse but the traceback shows a 404 (page not found) is
being generated, that is indicated by these lines:

  File "/usr/lib/python2.5/site-packages/django/views/defaults.py", line 79,
> in page_not_found
>     return http.HttpResponseNotFound(t.render(RequestContext(request,
> {'request_path': request.path})))
>

However attempting to render your 404 template is raising an exception, this
is indicated here:


>
>   File "/usr/lib/python2.5/site-packages/django/template/__init__.py", line
> 733, in render_node
>     raise wrapped
> TemplateSyntaxError: Caught an exception while rendering: 'lng'
>
> Original Traceback (most recent call last):
>   File "/usr/lib/python2.5/site-packages/django/template/__init__.py", line
> 723, in render_node
>     result = node.render(context)
>   File "/usr/lib/python2.5/site-packages/django/templatetags/i18n.py", line
> 73, in render
>     result = translation.gettext(singular) % context
>   File "/usr/lib/python2.5/site-packages/django/template/context.py", line
> 40, in __getitem__
>     raise KeyError(key)
> KeyError: 'lng'
>

Based on where that error is coming from it appears your 404 template is
attempting to {% blocktrans %} a string including the variable 'lng'.
However, your 404 template is rendered with an empty context so the attempt
to lookup 'lng' in the context fails and generates the KeyError.  (The fix
for that is to code your 404 template so that it does not rely on anything
being in the context.)

(How all of this is connected to what you've got in your <img> tag is a bit
of a mystery.  The template you are mentioning, though, is not involved in
the error you have pasted, unless it's your 404 template.)

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