]> git.eshelyaron.com Git - emacs.git/commitdiff
(whois-server-tld): Update server for .org.
authorRomain Francoise <romain@orebokech.com>
Mon, 26 Feb 2007 17:43:11 +0000 (17:43 +0000)
committerRomain Francoise <romain@orebokech.com>
Mon, 26 Feb 2007 17:43:11 +0000 (17:43 +0000)
(whois-server-list): Add whois.publicinterestregistry.net.
(whois-guess-server): Fix formatting in docstring.

lisp/ChangeLog
lisp/net/net-utils.el

index d563bbb5e5152bd4b1de6bd87684a9b9c86a4f3b..7fd5382e6dc3a756992b106b0fe22c70e14d4acb 100644 (file)
@@ -1,3 +1,9 @@
+2007-02-26  Romain Francoise  <romain@orebokech.com>
+
+       * net/net-utils.el (whois-server-tld): Update server for .org.
+       (whois-server-list): Add whois.publicinterestregistry.net.
+       (whois-guess-server): Fix formatting in docstring.
+
 2007-02-26  Kim F. Storm  <storm@cua.dk>
 
        * mouse.el (mouse-show-mark): Run hooks and perform command
index 86bab7b20c552bc7af572932a351853e589b5835..6a1c1bca8c043cef6dba7f0a63e23128c36d72b6 100644 (file)
@@ -674,6 +674,7 @@ queries of the form USER@HOST, and wants a query containing USER only."
 (defcustom whois-server-list
   '(("whois.arin.net")     ; Networks, ASN's, and related POC's (numbers)
     ("rs.internic.net")  ; domain related info
+    ("whois.publicinterestregistry.net")
     ("whois.abuse.net")
     ("whois.apnic.net")
     ("nic.ddn.mil")
@@ -684,9 +685,12 @@ queries of the form USER@HOST, and wants a query containing USER only."
   :group 'net-utils
   :type '(repeat (list string)))
 
+;; FIXME: modern whois clients include a much better tld <-> whois server
+;; list, Emacs should probably avoid specifying the server as the client
+;; will DTRT anyway... -rfr
 (defcustom whois-server-tld
   '(("rs.internic.net" . "com")
-    ("rs.internic.net" . "org")
+    ("whois.publicinterestregistry.net" . "org")
     ("whois.ripe.net" . "be")
     ("whois.ripe.net" . "de")
     ("whois.ripe.net" . "dk")
@@ -707,7 +711,7 @@ queries of the form USER@HOST, and wants a query containing USER only."
 (defcustom whois-guess-server t
   "If non-nil then whois will try to deduce the appropriate whois
 server from the query.  If the query doesn't look like a domain or hostname
-then the server named by whois-server-name is used."
+then the server named by `whois-server-name' is used."
   :group 'net-utils
   :type 'boolean)