Remove useless puts calls; fix gmap api key for selectricity.org
[selectricity] / app / views / quickvote / list_voters.rhtml
index 695794fc3f536d4776897b845b0460b548ba4086..ea276d7b6a7d50570ae059e5348ba82ca6b8b2ab 100644 (file)
@@ -1,5 +1,5 @@
 <%= GMap.header %> 
-
+<%require('whois/whois') %>
 <div id="title-header">
     <span class="header">Quickvote</span>
       <span class="subheader">Voters</span>
             voter.ipaddress =~ /^172\.[1-3]/
             %>
             <% w=nil
-            puts "WHOIS #{voter.ipaddress}"
             if Cache and w=Cache.get("WHOIS:#{voter.ipaddress}")
             elsif Cache
-              puts "CREATE"
-              w= Whois::Whois.new(IPAddr.new(voter.ipaddress),false)
-              puts "SEARCH"
+              w= Whois::Whois.new(IPAddr.new(voter.ipaddress),true)
               w.search_whois
-              puts "DONE"
               Cache.set("WHOIS:#{voter.ipaddress}", w)
             else
-              w= Whois::Whois.new(IPAddr.new(voter.ipaddress),false)
+              w= Whois::Whois.new(IPAddr.new(voter.ipaddress),true)
               w.search_whois
             end
             
         <%=h((w.host == nil or w.host.empty?) ? voter.ipaddress : w.host)%>
       </td>
       <td>
-        <%=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 %>
+        <%org=(w.all.grep(/^(OrgName|org-name)/)[0] or "").sub(/^(OrgName|org-name)\:/,'').strip+" - "+ (w.all.grep(/^(NetName|netname)/)[0] or "").sub(/^(NetName|netname)\:/,'').strip %>
+        <% if org =~ /IANA/ %>
+          <%= "No additional information" %>
+        <% else %>
+          <%= h(org) %>
+        <% end %>
 
     <% rescue ArgumentError => err %>
       <%=h err %>

Benjamin Mako Hill || Want to submit a patch?