if election
voter = QuickVoter.new
voter.election = election
+ voter.ipaddress = "XMLRPC Request"
voter.session_id = "XMLRPC:#{voter_id}"
voter.vote=Vote.new
voter.vote.votes=vote_list[0]
result.candidate_names=candidates.values
result
end
-
+ def get_quickvote_votes(shortname)
+ qv=QuickVote.ident_to_quickvote(shortname)
+ votes=Array.new
+ unless qv
+ return result
+ end
+ qv.votes.each do |vote|
+ votes << VoteInfo.new(:voter_id => vote.voter.id, :voter_ipaddress => vote.voter.ipaddress, :vote_time => vote.time.to_i)
+ end
+ return votes
+ end
+
end