+ 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
+