1 ;;; url-ns.el --- Various netscape-ish functions for proxy definitions
3 ;; Copyright (C) 1997, 1998, 1999, 2004, 2005,
4 ;; 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Keywords: comm, data, processes, hypermedia
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28 (defun isPlainHostName (host)
29 (not (string-match "\\." host
)))
32 (defun dnsDomainIs (host dom
)
33 (string-match (concat (regexp-quote dom
) "$") host
))
36 (defun dnsResolve (host)
37 (url-gateway-nslookup-host host
))
40 (defun isResolvable (host)
41 (if (string-match "^[0-9.]+$" host
)
43 (not (string= host
(url-gateway-nslookup-host host
)))))
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
)))
53 (setq netc
(mapcar 'string-to-number netc
)
54 ipc
(mapcar 'string-to-number ipc
)
55 maskc
(mapcar 'string-to-number maskc
))
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
)))))))
66 ;; Netscape configuration file parsing
67 (defvar url-ns-user-prefs nil
68 "Internal, do not use.")
71 (defun url-ns-prefs (&optional 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
)
80 (setq url-ns-user-prefs
(make-hash-table :size
13 :test
'equal
))
81 (set-buffer (get-buffer-create " *ns-parse*"))
83 (insert-file-contents file
)
84 (goto-char (point-min))
85 (while (re-search-forward "^//" nil t
)
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
)
93 (goto-char (point-min))
96 (defun url-ns-set-user-pref (key val
)
97 (puthash key val url-ns-user-prefs
))
100 (defun url-ns-user-pref (key &optional default
)
101 (gethash key url-ns-user-prefs default
))
105 ;; arch-tag: 69520992-cf97-40b4-9ad1-c866d3cae5bf
106 ;;; url-ns.el ends here