added gtld handler for nominalia
This commit is contained in:
parent
a0e3ced48f
commit
b8b56e5af0
5 changed files with 63 additions and 0 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
2006/03/06 David Saez <david@ols.es>
|
||||||
|
- added gtld handler for nominalia
|
||||||
|
|
||||||
2006/03/05 David Saez <david@ols.es>
|
2006/03/05 David Saez <david@ols.es>
|
||||||
- fixed .de handler
|
- fixed .de handler
|
||||||
- .ca handler fixed and updated
|
- .ca handler fixed and updated
|
||||||
|
|
|
@ -84,6 +84,7 @@ class gtld_handler extends WhoisClient
|
||||||
'MONIKER ONLINE SERVICES, INC.' => 'moniker',
|
'MONIKER ONLINE SERVICES, INC.' => 'moniker',
|
||||||
'NETWORK SOLUTIONS, INC.' => 'netsol',
|
'NETWORK SOLUTIONS, INC.' => 'netsol',
|
||||||
'NETWORK SOLUTIONS, LLC.' => 'netsol',
|
'NETWORK SOLUTIONS, LLC.' => 'netsol',
|
||||||
|
'NOMINALIA INTERNET S.L.' => 'nominalia',
|
||||||
'REGISTER.COM, INC.' => 'registercom',
|
'REGISTER.COM, INC.' => 'registercom',
|
||||||
'RESERVED-INTERNET ASSIGNED NUMBERS AUTHORITY' => 'iana',
|
'RESERVED-INTERNET ASSIGNED NUMBERS AUTHORITY' => 'iana',
|
||||||
'SCHLUND+PARTNER AG' => 'schlund',
|
'SCHLUND+PARTNER AG' => 'schlund',
|
||||||
|
|
|
@ -356,6 +356,7 @@ $items = array (
|
||||||
'phone-' => 'phone',
|
'phone-' => 'phone',
|
||||||
'phone -' => 'phone',
|
'phone -' => 'phone',
|
||||||
'email:' => 'email',
|
'email:' => 'email',
|
||||||
|
'e-mail:' => 'email',
|
||||||
'company name:' => 'organization',
|
'company name:' => 'organization',
|
||||||
'first name:' => 'name.first',
|
'first name:' => 'name.first',
|
||||||
'last name:' => 'name.last',
|
'last name:' => 'name.last',
|
||||||
|
|
1
test.txt
1
test.txt
|
@ -51,6 +51,7 @@ inwwcom inww.com
|
||||||
moniker moniker.com
|
moniker moniker.com
|
||||||
netsol networksolutions.com
|
netsol networksolutions.com
|
||||||
nicline nicline.com
|
nicline nicline.com
|
||||||
|
nominalia nominalia.com
|
||||||
opensrsnet tucows.com
|
opensrsnet tucows.com
|
||||||
registercom register.com
|
registercom register.com
|
||||||
schlund schlund.com
|
schlund schlund.com
|
||||||
|
|
57
whois.gtld.nominalia.php
Executable file
57
whois.gtld.nominalia.php
Executable file
|
@ -0,0 +1,57 @@
|
||||||
|
<?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('__NOMINALIA_HANDLER__'))
|
||||||
|
define('__NOMINALIA_HANDLER__', 1);
|
||||||
|
|
||||||
|
require_once('whois.parser.php');
|
||||||
|
|
||||||
|
class nominalia_handler
|
||||||
|
{
|
||||||
|
|
||||||
|
function parse($data_str, $query)
|
||||||
|
{
|
||||||
|
|
||||||
|
$items = array(
|
||||||
|
'owner' => 'Registrant:',
|
||||||
|
'admin' => 'Administrative contact:',
|
||||||
|
'tech' => 'Technical contact',
|
||||||
|
'domain.name' => 'Domain name:',
|
||||||
|
'domain.nserver.' => 'Domain Servers in listed order:',
|
||||||
|
'domain.created' => 'Record created on',
|
||||||
|
'domain.expires' => 'Record expires on'
|
||||||
|
);
|
||||||
|
|
||||||
|
$r = get_blocks($data_str, $items);
|
||||||
|
$r['owner'] = get_contact($r['owner']);
|
||||||
|
$r['admin'] = get_contact($r['admin']);
|
||||||
|
$r['tech'] = get_contact($r['tech']);
|
||||||
|
format_dates($r, 'ymd');
|
||||||
|
return ($r);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
Loading…
Reference in a new issue