fixed .se handler

This commit is contained in:
sparc 2007-04-17 09:17:59 +00:00
parent 7b7fcb3622
commit 50b863a35f
2 changed files with 8 additions and 4 deletions

View file

@ -1,6 +1,7 @@
2007/04/17
- allow easy plugin for new gtld handlers
- minor improvement to testsuite.php
- fixed .se handler
2007/04/16
- added basic support for .bz

View file

@ -40,10 +40,13 @@ class se_handler
function parse($data_str, $query)
{
$items = array(
'*domainname.name:' => 'domain.name',
'*domainname.status:' => 'domain.status',
'*domainname.date_to_delete:' => 'domain.expires',
' NS ' => 'domain.nserver.'
'domain' => 'domain.name',
'state:' => 'domain.status.',
'status:' => 'domain.status.',
'expires:' => 'domain.expires',
'created:' => 'domain.created',
'nserver:' => 'domain.nserver.',
'holder:' => 'owner.handle'
);
$r['regrinfo'] = generic_parser_b($data_str['rawdata'], $items, 'mdy', false);