missing .app, .team. .training and others
Closed this issue · 1 comments
eliataylor commented
at a glance, it seems like we just need to add the missing files. For example, for .app:
I created whois.app.php
with:
<?php
require_once('whois.parser.php');
if (!defined('__APP_HANDLER__'))
define('__APP_HANDLER__', 1);
class app_handler
{
function parse($data, $query)
{
$r['regrinfo'] = generic_parser_b($data['rawdata']);
$r['regyinfo']['referrer'] = 'whois.nic.google';
$r['regyinfo']['registrar'] = 'Charleston Road Registry Inc.';
return $r;
}
}
?>
eliataylor commented
found answer in https://github.com/sparc/phpWhois.org/blob/master/Handlers.md