I was thinking of a voting system without users, but I wanted to get your
opinions on what would be the best practice with this.
In melodigram.com I have grams that each have their one unique id's and
urls.  They will be voted on by anyone.
I imagine something like this:
--------------------------------
gram_id = request.args(0)
if session.__dict__[gram_id]:
    return dict(success = False)
session.__dict__[gram_id] = True
return dict(success = success)
--------------------------------
What do you think?  Good idea?
BR,
Jason Brower

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to