Schulze Method Results
-<%= render :partial => 'result', :object => @ssd_result %> +<%= render :partial => 'result', :object => @election.ssd_result %> -About the Schulze Method
The <%= link_to "Schulze method", @@ -47,9 +48,9 @@ Beatpath Winner, Path Voting, and Path Winner.
Plurality Results
-<%= render :partial => 'result', :object => @plurality_result %> +<%= render :partial => 'result', :object => @election.plurality_result %> -About Plurality Voting
<%= link_to "Plurality voting", @@ -67,9 +68,9 @@ voting.
Approval Result
(This algorithm assumes that top two choices are "approved.")
-<%= render :partial => 'result', :object => @approval_result %> +<%= render :partial => 'result', :object => @election.approval_result %> -About Approval Voting
<%= link_to "Approval voting", @@ -85,9 +86,9 @@ accept or not.
Simple Condorcet Results
-<%= render :partial => 'result', :object => @condorcet_result %> +<%= render :partial => 'result', :object => @election.condorcet_result %> -About Simple Cordorcet Voting
<%= link_to "Condorcet", @@ -105,9 +106,9 @@ another Condorcet system.
Borda Count Results
-<%= render :partial => 'result', :object => @borda_result %> +<%= render :partial => 'result', :object => @election.borda_result %> -About Borda Count
<%= link_to "Borda count", @@ -123,9 +124,8 @@ points is the winner.
Instant Runoff (IRV) Results
-<%= render :partial => 'result', :object => @runoff_result %> -About Instant Runoff Voting
<%= link_to "Instant runoff voting", @@ -145,19 +145,41 @@ by several other names.
-Voters
- +Voters <%= link_to "[Stalk Voters]", :controller => "quickvote", :action => "mapvoters", :id => @election.id %>
IP Address | -DNS/Host | +IP/Host | +Origin | Vote | |
---|---|---|---|---|---|
<%= voter.ipaddress %> | -<%= `host #{voter.ipaddress}`.sub(/^.*pointer (.*)\.$/, '\1') %> | +<% begin %> + <% raise ArgumentError.new, "Local Server" if voter.ipaddress == "127.0.0.1" %> + <% raise ArgumentError.new, "XML-RPC Voter" if voter.ipaddress == "XMLRPC Request" %> + <% w= Whois::Whois.new(IPAddr.new(voter.ipaddress).to_s,true)%> + <%=h((w.host == nil or w.host.empty?) ? voter.ipaddress : w.host)%> + | ++ <%w.search_whois%> + <%=h (w.all.grep(/^(OrgName|org-name)/)[0] or "").sub(/^(OrgName|org-name)\:/,'').strip -%> - <%= (w.all.grep(/^(NetName|netname)/)[0] or "").sub(/^(NetName|netname)\:/,'').strip %> + + <% rescue ArgumentError => err %> + <%=h err %> + | +<%=h err%> + <% end %> + | <%= voter.vote.votestring %> |
+<%= image_tag( graph_url( :action => 'borda_bar', :id => @election ) ) %>
+<%= image_tag( graph_url( :action => 'choices_positions', :id => @election ) ) %>
+<%= image_tag(graph_url( :action => 'plurality_pie', :id => @election ) )%>