voter.ipaddress =~ /^172\.[1-3]/
%>
<% w=nil
- if Cache and w=Cache.get("WHOIS:#{voter.ipaddress}")
- elsif Cache
+ if defined? Cache and w=Cache.get("WHOIS:#{voter.ipaddress}")
+ elsif defined? Cache
w= Whois::Whois.new(IPAddr.new(voter.ipaddress),true)
w.search_whois
Cache.set("WHOIS:#{voter.ipaddress}", w)
end
%>
- <%=h((w.host == nil or w.host.empty?) ? voter.ipaddress : w.host[-30..-1])%>
+ <%=h((w.host == nil or w.host.empty?) ? voter.ipaddress : w.host.reverse.slice(0,30).reverse)%>
</td>
<td>
<%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 %>