X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/ce1489ae318bfe129070ecaf4e5c422015572caf..9e16ee781aefadbe9b1e92baa47fccf6be7a8405:/app/views/quickvote/list_voters.rhtml?ds=sidebyside diff --git a/app/views/quickvote/list_voters.rhtml b/app/views/quickvote/list_voters.rhtml index be11290..b0dc6dd 100644 --- a/app/views/quickvote/list_voters.rhtml +++ b/app/views/quickvote/list_voters.rhtml @@ -27,14 +27,10 @@ voter.ipaddress =~ /^172\.[1-3]/ %> <% w=nil - puts "WHOIS #{voter.ipaddress}" - if Cache and w=Cache.get("WHOIS:#{voter.ipaddress}") - elsif Cache - puts "CREATE" + if defined? Cache and w=Cache.get("WHOIS:#{voter.ipaddress}") + elsif defined? Cache w= Whois::Whois.new(IPAddr.new(voter.ipaddress),true) - puts "SEARCH" w.search_whois - puts "DONE" Cache.set("WHOIS:#{voter.ipaddress}", w) else w= Whois::Whois.new(IPAddr.new(voter.ipaddress),true) @@ -42,11 +38,11 @@ end %> - <%=h((w.host == nil or w.host.empty?) ? voter.ipaddress : w.host)%> + <%=h((w.host == nil or w.host.empty?) ? voter.ipaddress : w.host.reverse.slice(0,30).reverse)%>