Hi,

It's not a "copy/paste" code. As I told you, it comes from the admin
view. The self correspond to a more complex construct in the admin.

You can find the full code here:
\django\contrib\admin\views\main.py line 712
But it's not easy to understand at first sight.

But I think the problem is that you are programming a view, don't you?
In that case I think you can not simply return a QuerySet. You must
return a render_to_response or something like that. Try to pass a
render_to_response with your results in the context dictionary,
something like:
return render_to_response('blog/detail.html', {
            'search': other_qs,
             }

Hope it helps.

G

On 6/27/06, Kristoffer <[EMAIL PROTECTED]> wrote:
>
> Thank you, I have upgraded to 0.9.5 now.
> Still can't get it to work, though. What does "self" refer to in
> "other_qs = QuerySet(self.model)" ?
> I changed it to Document, my class that represents an article:
>
> def search(request):
>
>        query = request.POST['query']
>        or_query=Q()
>        search_fields = ['title', 'body']
>
>        if query:
>                for bit in query.split():
>                        or_queries = [Q(**{'%s__icontains' % field_name: bit}) 
> for
> field_name in search_fields]
>                        other_qs = QuerySet(Document)
>                        other_qs = other_qs.filter(reduce(operator.or_, 
> or_queries))
>        return other_qs
>
> This gives me the following traceback:
>
> Traceback (most recent call last):
>
>  File
> "/usr/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/core/servers/basehttp.py",
> line 272, in run
>    self.result = application(self.environ, self.start_response)
>
>  File
> "/usr/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/core/servers/basehttp.py",
> line 615, in __call__
>    return self.application(environ, start_response)
>
>  File
> "/usr/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/core/handlers/wsgi.py",
> line 150, in __call__
>    response = middleware_method(request, response)
>
>  File
> "/usr/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/contrib/sessions/middleware.py",
> line 74, in process_response
>    patch_vary_headers(response, ('Cookie',))
>
>  File
> "/usr/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/utils/cache.py",
> line 104, in patch_vary_headers
>    if response.has_header('Vary'):
>
> AttributeError: 'QuerySet' object has no attribute 'has_header'
>
> Any suggestions?
> Thanks,
> Kristoffer
>
>
> >
>

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

Reply via email to