From 05b5b421b24810c17b05c7aaca08a93c4ececad5 Mon Sep 17 00:00:00 2001 From: John Dong Date: Thu, 16 Aug 2007 16:33:40 -0400 Subject: [PATCH] Add ability to parse RIPE WHOIS too --- app/views/quickvote/results.rhtml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/views/quickvote/results.rhtml b/app/views/quickvote/results.rhtml index a2b1206..b82d5e3 100644 --- a/app/views/quickvote/results.rhtml +++ b/app/views/quickvote/results.rhtml @@ -160,8 +160,9 @@ by several other names.

<% w= Whois::Whois.new(IPAddr.new(voter.ipaddress).to_s,true)%> <%=(w.host == nil or w.host.empty?) ? "Unknown voter" : w.host%> - - <%= w.search_whois.grep(/^OrgName/)[0].sub(/^OrgName\:/,'').strip %> + + <%w.search_whois%> + <%= (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 %> <%= err %> -- 2.30.2