Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-196
[bpt/emacs.git] / lisp / url / url-ns.el
CommitLineData
8c8b8430 1;;; url-ns.el --- Various netscape-ish functions for proxy definitions
8c8b8430
SM
2;; Keywords: comm, data, processes, hypermedia
3
4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5;;; Copyright (c) 1997 - 1999 Free Software Foundation, Inc.
6;;;
7;;; This file is part of GNU Emacs.
8;;;
9;;; GNU Emacs is free software; you can redistribute it and/or modify
10;;; it under the terms of the GNU General Public License as published by
11;;; the Free Software Foundation; either version 2, or (at your option)
12;;; any later version.
13;;;
14;;; GNU Emacs is distributed in the hope that it will be useful,
15;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;;; GNU General Public License for more details.
18;;;
19;;; You should have received a copy of the GNU General Public License
20;;; along with GNU Emacs; see the file COPYING. If not, write to the
21;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22;;; Boston, MA 02111-1307, USA.
23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
24
25(require 'url-gw)
26
27;;;###autoload
28(defun isPlainHostName (host)
29 (not (string-match "\\." host)))
30
31;;;###autoload
32(defun dnsDomainIs (host dom)
33 (string-match (concat (regexp-quote dom) "$") host))
34
35;;;###autoload
36(defun dnsResolve (host)
37 (url-gateway-nslookup-host host))
38
39;;;###autoload
40(defun isResolvable (host)
41 (if (string-match "^[0-9.]+$" host)
42 t
43 (not (string= host (url-gateway-nslookup-host host)))))
44
45;;;###autoload
46(defun isInNet (ip net mask)
47 (let ((netc (split-string ip "\\."))
48 (ipc (split-string net "\\."))
49 (maskc (split-string mask "\\.")))
50 (if (or (/= (length netc) (length ipc))
51 (/= (length ipc) (length maskc)))
52 nil
53 (setq netc (mapcar 'string-to-int netc)
54 ipc (mapcar 'string-to-int ipc)
55 maskc (mapcar 'string-to-int maskc))
56 (and
57 (= (logand (nth 0 netc) (nth 0 maskc))
58 (logand (nth 0 ipc) (nth 0 maskc)))
59 (= (logand (nth 1 netc) (nth 1 maskc))
60 (logand (nth 1 ipc) (nth 1 maskc)))
61 (= (logand (nth 2 netc) (nth 2 maskc))
62 (logand (nth 2 ipc) (nth 2 maskc)))
63 (= (logand (nth 3 netc) (nth 3 maskc))
64 (logand (nth 3 ipc) (nth 3 maskc)))))))
65
66;; Netscape configuration file parsing
67(defvar url-ns-user-prefs nil
68 "Internal, do not use.")
69
70;;;###autoload
71(defun url-ns-prefs (&optional file)
72 (if (not file)
73 (setq file (expand-file-name "~/.netscape/preferences.js")))
74 (if (not (and (file-exists-p file)
75 (file-readable-p file)))
76 (message "Could not open %s for reading" file)
77 (save-excursion
78 (let ((false nil)
79 (true t))
80 (setq url-ns-user-prefs (make-hash-table :size 13 :test 'equal))
81 (set-buffer (get-buffer-create " *ns-parse*"))
82 (erase-buffer)
83 (insert-file-contents file)
84 (goto-char (point-min))
85 (while (re-search-forward "^//" nil t)
86 (replace-match ";;"))
87 (goto-char (point-min))
88 (while (re-search-forward "^user_pref(" nil t)
89 (replace-match "(url-ns-set-user-pref "))
90 (goto-char (point-min))
91 (while (re-search-forward "\"," nil t)
92 (replace-match "\""))
93 (goto-char (point-min))
94 (eval-buffer)))))
95
96(defun url-ns-set-user-pref (key val)
97 (puthash key val url-ns-user-prefs))
98
99;;;###autoload
100(defun url-ns-user-pref (key &optional default)
101 (gethash key url-ns-user-prefs default))
102
103(provide 'url-ns)
e5566bd5
MB
104
105;;; arch-tag: 69520992-cf97-40b4-9ad1-c866d3cae5bf