On Feb 28, 4:00 am, Malcolm Tredinnick <[EMAIL PROTECTED]>
wrote:
> On Tue, 2007-02-27 at 13:20 -0600, GaRaGeD Style wrote:
> > Hi all
>
> > I'm really not good at python, and hence not good at django, but I
> > really love both :)
>
> > I have spent a few hours trying to understand why this works:
> > ------------------
> > @login_required
> > def object_list(request, model, page):
> > try:
> > return list_detail.object_list(
> > request,
> > queryset = model.objects.all().order_by('name'),
> > template_name = 'base/%s_list.html' %
> > model.__name__.lower(),
> > paginate_by = 3,
> > page = page,
> > )
> > except:
> > return HttpResponseRedirect('/list/people/')
>
> > object_list =cache_page(object_list, 300)
> > ---------------------------------
>
> > And this doesnt:
> > -----------------------------
> > @cache(600)
> > @login_required
> > def object_list(request, model, page):
> > try:
> > return list_detail.object_list(
> > request,
> > queryset = model.objects.all().order_by('name'),
> > template_name = 'base/%s_list.html' %
> > model.__name__.lower(),
> > paginate_by = 3,
> > page = page,
> > )
> > except:
> > return HttpResponseRedirect('/list/people/')
> > ---------------------------------
>
> Assuming this is a cut-and-paste of your actual code, you have mispelt
> thedecoratorname, haven't you? It should be
>
> @cache_page(600)
>
Its a type, I didn't cut-pasted, I use @cache_page(600) format, and
the error I get is this:
Exception Value:
'function' object has no attribute 'method'
That is for
/usr/lib/python2.4/site-packages/django/middleware/cache.py in
process_request
if not request.method in ('GET', 'HEAD') or request.GET:
And I have no Idea on what is going on there, seems like the "request"
object is not passing correctly, but I don't know enough python to say
why.
Thanks for the help !
Max
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---