# Copyright (C) 2007, 2008 Benjamin Mako Hill <mako@atdot.cc>
# Copyright (C) 2007 Massachusetts Institute of Technology
#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as
-# published by the Free Software Foundation, either version 3 of the
-# License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public
-# License along with this program. If not, see
-# <http://www.gnu.org/licenses/>.
+# This program is free software. Please see the COPYING file for
+# details.
class VoterController < ApplicationController
+ helper :sparklines
layout 'main'
require_dependency "voter"
require_dependency "vote"
if params[:election_id]
@election = Election.find(params[:election_id])
unless @election.authenticated?
- @voter = Voter.find(:all,
+ @voter = OpenVoter.find(:all,
:conditions => ["session_id = ? and election_id = ?",
session.session_id, @election.id])[0]
- @voter = Voter.new unless @voter
+ @voter = OpenVoter.new unless @voter
@voter.election = @election
@voter.session_id = session.session_id
@voter.vote = Vote.new
@voter.save
end
-
+
@voter.vote.set_defaults! if @voter.vote.rankings.empty?
# if the election is now finished
def details
if authenticate
@election = @voter.election
- @votes = @election.votes.select {|v| v.confirmed? }.randomize
- @voters = @votes.collect {|v| v.voter}.randomize
+ @votes = @election.votes.select {|v| v.confirmed? }.shuffle
+ @voters = @votes.collect {|v| v.voter}.shuffle
render :action => 'details'
else
redirect_to :action => 'index'
if password == "open"
election = Election.find(params[:format])
unless election.authenticated?
- @voter = Voter.find(:all,
+ @voter = OpenVoter.find(:all,
:conditions => ["session_id = ? and election_id = ?",
session.session_id, election.id])[0]
@password = "open." + election.id.to_s