X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/e565b1cd14149c5edc0106407f79e4ae12b56f10..1fcd2d064dfef0dff9b07a40d0f5d30e662d1d86:/app/views/quickvote/results.rhtml diff --git a/app/views/quickvote/results.rhtml b/app/views/quickvote/results.rhtml index fe2b09a..3d5468c 100644 --- a/app/views/quickvote/results.rhtml +++ b/app/views/quickvote/results.rhtml @@ -1,9 +1,10 @@ <% %> +<%require 'whois/whois' %>

Results

<% if @election.shortdesc %>

Description:

-
<%= @election.shortdesc %> +
<%=h @election.shortdesc %> <% if @election.longdesc -%>
<%= h(@election.longdesc) -%> @@ -15,22 +16,22 @@
    <% for candidate in @election.candidates.sort %> -
  1. <%= candidate.name.capitalize %>
  2. +
  3. <%=h candidate.name.capitalize %>
  4. <% end %>

Number of voters:

- <%= @election.voters.length %> (see below for details) + <%= @election.voters.reject {|v| not v.voted? }.length %> (see below for details)

Winners

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

- - + + <% for voter in @election.voters %> + <% next unless voter.voted? %> - - + + + <% end %>
IP AddressDNS/HostIP/HostOrigin 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 %>
+ +<%= render :partial => 'pref_tables' %> + +<%=image_tag( graph_url( :action => 'votes_per_interval', :id => @election ))%> +
+<%= 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 ) )%>