1 # Selectricity: Voting Machinery for the Masses
2 # Copyright (C) 2007, 2008 Benjamin Mako Hill <mako@atdot.cc>
3 # Copyright (C) 2007 Massachusetts Institute of Technology
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License as
7 # published by the Free Software Foundation, either version 3 of the
8 # License, or (at your option) any later version.
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Affero General Public License for more details.
15 # You should have received a copy of the GNU Affero General Public
16 # License along with this program. If not, see
17 # <http://www.gnu.org/licenses/>.
19 # Filters added to this controller will be run for all controllers in
20 # the application. Likewise, all the methods added will be available
21 # for all controllers.
23 class ApplicationController < ActionController::Base
24 include AuthenticatedSystem
26 require_dependency "user"
29 before_filter :add_stylesheets
30 #before_filter :use_sitealizer
36 # this is defined is a sketchy way in the sitealizer mixin
37 # initalize. since i'm overloading that, i'm calling it here
38 $visits = [] unless $visits
42 file = "#{Dir.pwd}/public/stylesheets/#{controller_name}.css"
44 @stylesheets << controller_name
48 #both election_controller and quickvote_controller need this method
51 @vote = Vote.find(params[:id])
53 @vote.rankings.each do |ranking|
54 ranking.rank = params['rankings-list'].index(ranking.candidate.id.to_s) + 1
57 render :nothing => true