Output alists with dotted pair notation in .dir-locals.el
[emacs.git] / lisp / url / url-privacy.el
blob92523a62cae88aae0f571696f6ed7646abb6696f
1 ;;; url-privacy.el --- Global history tracking for URL package
3 ;; Copyright (C) 1996-1999, 2004-2018 Free Software Foundation, Inc.
5 ;; Keywords: comm, data, processes, hypermedia
7 ;; This file is part of GNU Emacs.
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 3 of the License, or
12 ;; (at your option) any later version.
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.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
22 ;;; Code:
24 (require 'url-vars)
26 (defun url-device-type (&optional device)
27 (if (fboundp 'device-type)
28 (device-type device) ; XEmacs
29 (or window-system 'tty)))
31 ;;;###autoload
32 (defun url-setup-privacy-info ()
33 "Setup variables that expose info about you and your system."
34 (interactive)
35 (setq url-system-type
36 (cond
37 ((or (eq url-privacy-level 'paranoid)
38 (and (listp url-privacy-level)
39 (memq 'os url-privacy-level)))
40 nil)
41 ;; First, we handle the inseparable OS/Windowing system
42 ;; combinations
43 ((eq system-type 'windows-nt) "Windows-NT; 32bit")
44 ((eq system-type 'ms-dos) "MS-DOS; 32bit")
45 ((memq (url-device-type) '(win32 w32)) "Windows; 32bit")
47 (pcase (url-device-type)
48 (`x "X11")
49 (`ns "OpenStep")
50 (`tty "TTY")
51 (_ nil)))))
53 (setq url-personal-mail-address (or url-personal-mail-address
54 user-mail-address
55 (format "%s@%s" (user-real-login-name)
56 (system-name))))
58 (if (or (memq url-privacy-level '(paranoid high))
59 (and (listp url-privacy-level)
60 (memq 'email url-privacy-level)))
61 (setq url-personal-mail-address nil))
63 (setq url-os-type
64 (cond
65 ((or (eq url-privacy-level 'paranoid)
66 (and (listp url-privacy-level)
67 (memq 'os url-privacy-level)))
68 nil)
69 ((boundp 'system-configuration) system-configuration)
70 ((boundp 'system-type) (symbol-name system-type))
71 (t nil))))
73 (provide 'url-privacy)
75 ;;; url-privacy.el ends here