added handler for .int domains
This commit is contained in:
parent
71d33aa6b3
commit
a82f0930b8
4 changed files with 54 additions and 0 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
2005/11/07 David Saez <david@ols.es>
|
||||||
|
- added handler for .int domains
|
||||||
|
|
||||||
2005/11/06 David Saez <david@ols.es>
|
2005/11/06 David Saez <david@ols.es>
|
||||||
- added support & handler for .travel
|
- added support & handler for .travel
|
||||||
- showHTML made a bit more flexible
|
- showHTML made a bit more flexible
|
||||||
|
|
48
src/whois.int.php
Executable file
48
src/whois.int.php
Executable file
|
@ -0,0 +1,48 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
Whois.php PHP classes to conduct whois queries
|
||||||
|
|
||||||
|
Copyright (C)1999,2005 easyDNS Technologies Inc. & Mark Jeftovic
|
||||||
|
|
||||||
|
Maintained by David Saez (david@ols.es)
|
||||||
|
|
||||||
|
For the most recent version of this package visit:
|
||||||
|
|
||||||
|
http://www.phpwhois.org
|
||||||
|
|
||||||
|
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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (!defined('__INT_HANDLER__'))
|
||||||
|
define('__INT_HANDLER__', 1);
|
||||||
|
|
||||||
|
require_once('whois.gtld.iana.php');
|
||||||
|
|
||||||
|
class int_handler
|
||||||
|
{
|
||||||
|
|
||||||
|
function parse($data_str, $query)
|
||||||
|
{
|
||||||
|
$iana = new iana_handler();
|
||||||
|
|
||||||
|
$r['regrinfo'] = $iana->parse($data_str['rawdata'], $query);
|
||||||
|
|
||||||
|
$r['regyinfo']['referrer'] = 'http://www.iana.org/int-dom/int.htm';
|
||||||
|
$r['regyinfo']['registrar'] = 'Internet Assigned Numbers Authority';
|
||||||
|
return ($r);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
|
@ -50,6 +50,7 @@ $this->DATA = array(
|
||||||
'fm' => 'fm',
|
'fm' => 'fm',
|
||||||
'hu' => 'hu',
|
'hu' => 'hu',
|
||||||
'info' => 'info',
|
'info' => 'info',
|
||||||
|
'int' => 'int',
|
||||||
'is' => 'is',
|
'is' => 'is',
|
||||||
'li' => 'ch',
|
'li' => 'ch',
|
||||||
'lu' => 'lu',
|
'lu' => 'lu',
|
||||||
|
|
2
test.txt
2
test.txt
|
@ -61,10 +61,12 @@ aero nic.aero
|
||||||
biz neulevel.biz
|
biz neulevel.biz
|
||||||
coop sex.coop , nic.coop
|
coop sex.coop , nic.coop
|
||||||
info afilias.info
|
info afilias.info
|
||||||
|
int who.int
|
||||||
museum nic.museum
|
museum nic.museum
|
||||||
name peter.morgan.name
|
name peter.morgan.name
|
||||||
org example.org
|
org example.org
|
||||||
pro registrypro.pr
|
pro registrypro.pr
|
||||||
|
travel nic.travel
|
||||||
|
|
||||||
// IP whois
|
// IP whois
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue