Fixed ending tag in all files

This commit is contained in:
sparc 2004-04-23 08:47:20 +00:00
parent a1e342e16c
commit 1bd417df68
23 changed files with 89 additions and 64 deletions

View file

@ -1,3 +1,6 @@
2004/04/23 David Saez <david@ols.es>
- Fixed ending tag in all files
2004/04/22 David Saez <david@ols.es>
- added handler for .us , thanx to
snguyen@mbaassociation.org

View file

@ -69,3 +69,4 @@ function parse ($data_str)
}
}
?>

View file

@ -57,3 +57,4 @@ class ascio extends gtld {
return($r);
}
}
?>

View file

@ -93,3 +93,4 @@ $r["regrinfo"]=$reg;
return($r);
}
}
?>

View file

@ -85,3 +85,4 @@ class benic extends Whois {
return($r);
}
}
?>

View file

@ -74,3 +74,4 @@ return $r;
}
}
?>

View file

@ -73,3 +73,4 @@ unset($r["domain"]["phone"]);
return($r);
}
}
?>

View file

@ -118,3 +118,4 @@ function parse ($data_str) {
}
}
?>

View file

@ -80,3 +80,4 @@ return($r);
}
}
?>

View file

@ -80,3 +80,4 @@ return($r);
}
}
?>

View file

@ -150,3 +150,4 @@ class denic extends Whois {
return($r);
}
}
?>

View file

@ -64,3 +64,4 @@ class domainbank extends gtld {
return($r);
}
}
?>

View file

@ -66,3 +66,4 @@ function parse ($data)
return($r);
}
}
?>

View file

@ -63,3 +63,4 @@ class dotregistrar extends gtld {
}
}
?>

View file

@ -62,3 +62,4 @@ function parse ($data_str)
}
}
?>

View file

@ -77,3 +77,4 @@ else
return $r;
}
?>

View file

@ -58,3 +58,4 @@ class godaddy extends gtld {
return($r);
}
}
?>

View file

@ -75,3 +75,4 @@ function parse ($data_str)
}
}
?>

View file

@ -77,3 +77,4 @@ return $r;
}
}
?>

View file

@ -101,3 +101,4 @@ function parse ($data_str) {
}
}
?>

View file

@ -1,64 +1,65 @@
<?php
/*
Whois2.php PHP classes to conduct whois queries
Copyright (C)1999,2000 easyDNS Technologies Inc. & Mark Jeftovic
Maintained by Mark Jeftovic <markjr@easydns.com>
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.
*/
/* NICLINE.whois 1.0 Carlos Galvez <cgalvez@espaciowww.com> */
/* Example "niclide.com" */
if(!defined("__NICLINE_HANDLER__")) define("__NICLINE_HANDLER__",1);
require_once("generic3.whois");
class nicline extends gtld {
function nicline($data) {
$this->result=$this->parse($data);
}
function parse ($data_str) {
$items = array( "owner" => "Registrant:",
"admin" => "Administrative contact:",
"tech" => "Technical contact:",
//"zone" => "Zone Contact",
"domain.name" => "Domain name:",
"domain.nserver." => "Domain servers in listed order:",
"domain.created" => "Created:",
"domain.expires" => "Expires:",
"domain.changed" => "Last updated:"
);
$r = get_blocks($data_str,$items);
$r["owner"] = get_contact($r["owner"]);
$r["admin"] = get_contact($r["admin"]);
$r["tech"] = get_contact($r["tech"]);
//$r["zone"] = get_contact($r["zone"]);
return($r);
}
}
<?php
/*
Whois2.php PHP classes to conduct whois queries
Copyright (C)1999,2000 easyDNS Technologies Inc. & Mark Jeftovic
Maintained by Mark Jeftovic <markjr@easydns.com>
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.
*/
/* NICLINE.whois 1.0 Carlos Galvez <cgalvez@espaciowww.com> */
/* Example "niclide.com" */
if(!defined("__NICLINE_HANDLER__")) define("__NICLINE_HANDLER__",1);
require_once("generic3.whois");
class nicline extends gtld {
function nicline($data) {
$this->result=$this->parse($data);
}
function parse ($data_str) {
$items = array( "owner" => "Registrant:",
"admin" => "Administrative contact:",
"tech" => "Technical contact:",
//"zone" => "Zone Contact",
"domain.name" => "Domain name:",
"domain.nserver." => "Domain servers in listed order:",
"domain.created" => "Created:",
"domain.expires" => "Expires:",
"domain.changed" => "Last updated:"
);
$r = get_blocks($data_str,$items);
$r["owner"] = get_contact($r["owner"]);
$r["admin"] = get_contact($r["admin"]);
$r["tech"] = get_contact($r["tech"]);
//$r["zone"] = get_contact($r["zone"]);
return($r);
}
}
?>

View file

@ -76,3 +76,4 @@ function parse ($data)
return($r);
}
}
?>

View file

@ -63,3 +63,4 @@ return $r;
}
}
?>