Re: setting cookies following comment post

2009-01-11 Thread Eric Abrahamsen
Solving my own problem... This wasn't nearly as hard as I thought, here's the solution that worked for me: urls.py # from datetime import datetime, timedelta from django.conf.urls.defaults import * from django.contrib.comments.views import comments ...others... def remember_wrapper(fn):

setting cookies following comment post

2009-01-03 Thread Eric Abrahamsen
Hi there, I'm adding a "remember me" checkbox to comment forms, so that regular commenters can avoid having to enter their personal information, if they want. I was originally thinking of making this a function attached to the comment_was_posted signal, but it will have to be implemented