diff options
| author | Romain Francoise | 2007-02-26 17:43:11 +0000 |
|---|---|---|
| committer | Romain Francoise | 2007-02-26 17:43:11 +0000 |
| commit | da888ddfaf1dbe7b0235c54e94b3ae0a0f0fece8 (patch) | |
| tree | be9a11ac1a6b405a494be27821d4f2d8e9985c61 /lisp | |
| parent | 1bc1f7ab78a7dfd11f12861462049d6a03186b72 (diff) | |
| download | emacs-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/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/net/net-utils.el | 8 |
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 @@ | |||
| 1 | 2007-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 | |||
| 1 | 2007-02-26 Kim F. Storm <storm@cua.dk> | 7 | 2007-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 |
| 709 | server from the query. If the query doesn't look like a domain or hostname | 713 | server from the query. If the query doesn't look like a domain or hostname |
| 710 | then the server named by whois-server-name is used." | 714 | then 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 | ||