Exemplo n.º 1
0
 def vote(self,id=''):
     p = None
     if id != '' and id != None:
         id = urllib.unquote_plus(id)
     verb = request.environ['REQUEST_METHOD'].lower()
     if verb == 'get' and 'jsoncallback' in request.params:
         if ('poll_id' in request.params and 'q_id' in request.params \
             and 'options' in request.params):
             options = request.params['options']
             poll = Poll.saget(int(request.params['poll_id']))
             q = poll.get_question(int(request.params['q_id']))
             if c.user:
                 pollresponse = PollResponse(person_id=c.user.id)
             else:
                 pollresponse = PollResponse(person_id=0)
             oid = int(request.params['options'])
             a = PollAnswer(question_id=q.id,option_id=oid) #TODO make work for many answers
             pollresponse.answers.append(a)
             poll.responses.append(pollresponse)
             poll.save()
             poll.update_vote(pollresponse)
             htmlid = 'ds-poll-results-%s' % poll.id
             poll_html(poll)
             poll.save()
     
     data = {'success':True,'html':poll.results,'key':poll.key,'htmlid':htmlid}
     json = simplejson.dumps(data)
     response.headers['Content-Type'] = 'text/json'
     return '%s(%s)' % (request.params['jsoncallback'],json)
Exemplo n.º 2
0
 def display(self,id=''):
     p = Poll.by_key(0,id)
     if p == None or p.results == None:
         poll_html(p)
         p.save()
     data = {'success':True,'html':'%s %s' % (p.html,p.results)}
     json = simplejson.dumps(data)
     response.headers['Content-Type'] = 'text/json'
     return '%s(%s)' % (request.params['jsoncallback'],json)