For the most recent version of this package: http://www.easydns.com/~markjr/whois2/ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* atnic.whois 2.00 David Saez */ /* atnic.whois 0.99 Martin Pircher */ /* dedicated to klopfer, *24.07.1999, +21.01.2001 */ /* based upon brnic.whois by Marcelo Sanches msanches@sitebox.com.br */ if(!defined("__ATNIC_HANDLER__")) define("__ATNIC_HANDLER__",1); include_once("generic.whois"); class atnic extends Whois { function atnic($data) { $this->result=$this->parse($data); } function parse ($data_str) { $r["regrinfo"]=generic_whois($data_str["rawdata"]); $r["rawdata"]=$data_str["rawdata"]; $r["regyinfo"]=array("whois"=>"whois.nic.at","referer"=>"www.nic.at","registrar"=>"NIC-AT"); $reg=generic_whois($data_str["rawdata"]); unset($reg["remarks"]); while (list($key,$val)=each($reg["owner"]["address"])) { $v=trim(substr(strstr($val,":"),1)); if (strstr($val,"[organization]:")) $reg["owner"]["organization"]=$v; if (strstr($val,"[phone]:")) { $reg["owner"]["phone"]=$v; unset($reg["owner"]["address"][$key]); continue; } if (strstr($val,"[fax-no]:")) { $reg["owner"]["fax"]=$v; unset($reg["owner"]["address"][$key]); continue; } if (strstr($val,"[e-mail]:")) { $reg["owner"]["email"]=$v; unset($reg["owner"]["address"][$key]); continue; } $reg["owner"]["address"][$key]=$v; } $r["regrinfo"]=$reg; return($r); } }