aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRomain Francoise2007-02-26 17:43:11 +0000
committerRomain Francoise2007-02-26 17:43:11 +0000
commitda888ddfaf1dbe7b0235c54e94b3ae0a0f0fece8 (patch)
treebe9a11ac1a6b405a494be27821d4f2d8e9985c61 /lisp
parent1bc1f7ab78a7dfd11f12861462049d6a03186b72 (diff)
downloademacs-da888ddfaf1dbe7b0235c54e94b3ae0a0f0fece8.tar.gz
emacs-da888ddfaf1dbe7b0235c54e94b3ae0a0f0fece8.zip
(whois-server-tld): Update server for .org.
(whois-server-list): Add whois.publicinterestregistry.net. (whois-guess-server): Fix formatting in docstring.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/net/net-utils.el8
2 files changed, 12 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d563bbb5e51..7fd5382e6dc 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12007-02-26 Romain Francoise <romain@orebokech.com>
2
3 * net/net-utils.el (whois-server-tld): Update server for .org.
4 (whois-server-list): Add whois.publicinterestregistry.net.
5 (whois-guess-server): Fix formatting in docstring.
6
12007-02-26 Kim F. Storm <storm@cua.dk> 72007-02-26 Kim F. Storm <storm@cua.dk>
2 8
3 * mouse.el (mouse-show-mark): Run hooks and perform command 9 * mouse.el (mouse-show-mark): Run hooks and perform command
diff --git a/lisp/net/net-utils.el b/lisp/net/net-utils.el
index 86bab7b20c5..6a1c1bca8c0 100644
--- a/lisp/net/net-utils.el
+++ b/lisp/net/net-utils.el
@@ -674,6 +674,7 @@ queries of the form USER@HOST, and wants a query containing USER only."
674(defcustom whois-server-list 674(defcustom whois-server-list
675 '(("whois.arin.net") ; Networks, ASN's, and related POC's (numbers) 675 '(("whois.arin.net") ; Networks, ASN's, and related POC's (numbers)
676 ("rs.internic.net") ; domain related info 676 ("rs.internic.net") ; domain related info
677 ("whois.publicinterestregistry.net")
677 ("whois.abuse.net") 678 ("whois.abuse.net")
678 ("whois.apnic.net") 679 ("whois.apnic.net")
679 ("nic.ddn.mil") 680 ("nic.ddn.mil")
@@ -684,9 +685,12 @@ queries of the form USER@HOST, and wants a query containing USER only."
684 :group 'net-utils 685 :group 'net-utils
685 :type '(repeat (list string))) 686 :type '(repeat (list string)))
686 687
688;; FIXME: modern whois clients include a much better tld <-> whois server
689;; list, Emacs should probably avoid specifying the server as the client
690;; will DTRT anyway... -rfr
687(defcustom whois-server-tld 691(defcustom whois-server-tld
688 '(("rs.internic.net" . "com") 692 '(("rs.internic.net" . "com")
689 ("rs.internic.net" . "org") 693 ("whois.publicinterestregistry.net" . "org")
690 ("whois.ripe.net" . "be") 694 ("whois.ripe.net" . "be")
691 ("whois.ripe.net" . "de") 695 ("whois.ripe.net" . "de")
692 ("whois.ripe.net" . "dk") 696 ("whois.ripe.net" . "dk")
@@ -707,7 +711,7 @@ queries of the form USER@HOST, and wants a query containing USER only."
707(defcustom whois-guess-server t 711(defcustom whois-guess-server t
708 "If non-nil then whois will try to deduce the appropriate whois 712 "If non-nil then whois will try to deduce the appropriate whois
709server from the query. If the query doesn't look like a domain or hostname 713server from the query. If the query doesn't look like a domain or hostname
710then the server named by whois-server-name is used." 714then the server named by `whois-server-name' is used."
711 :group 'net-utils 715 :group 'net-utils
712 :type 'boolean) 716 :type 'boolean)
713 717