1 ;;; url-privacy.el --- Global history tracking for URL package
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
4 ;; 2005, 2006 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 2, or (at your option)
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; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
27 (eval-when-compile (require 'cl
))
30 (if (fboundp 'device-type
)
31 (defalias 'url-device-type
'device-type
)
32 (defun url-device-type (&optional device
) (or window-system
'tty
)))
35 (defun url-setup-privacy-info ()
36 "Setup variables that expose info about you and your system."
40 ((or (eq url-privacy-level
'paranoid
)
41 (and (listp url-privacy-level
)
42 (memq 'os url-privacy-level
)))
44 ;; First, we handle the inseparable OS/Windowing system
46 ((eq system-type
'Apple-Macintosh
) "Macintosh")
47 ((eq system-type
'next-mach
) "NeXT")
48 ((eq system-type
'windows-nt
) "Windows-NT; 32bit")
49 ((eq system-type
'ms-windows
) "Windows; 16bit")
50 ((eq system-type
'ms-dos
) "MS-DOS; 32bit")
51 ((memq (url-device-type) '(win32 w32
)) "Windows; 32bit")
52 ((eq (url-device-type) 'pm
) "OS/2; 32bit")
54 (case (url-device-type)
60 (setq url-personal-mail-address
(or url-personal-mail-address
62 (format "%s@%s" (user-real-login-name)
65 (if (or (memq url-privacy-level
'(paranoid high
))
66 (and (listp url-privacy-level
)
67 (memq 'email url-privacy-level
)))
68 (setq url-personal-mail-address nil
))
72 ((or (eq url-privacy-level
'paranoid
)
73 (and (listp url-privacy-level
)
74 (memq 'os url-privacy-level
)))
76 ((boundp 'system-configuration
) system-configuration
)
77 ((boundp 'system-type
) (symbol-name system-type
))
80 (provide 'url-privacy
)
82 ;; arch-tag: fdaf95e4-98f0-4680-94c3-f3eadafabe1d
83 ;;; url-privacy.el ends here