1 ;;; url-about.el --- Show internal URLs
3 ;; Copyright (c) 2001, 2004 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 2, or (at your option)
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; 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.
33 (defun url-probe-protocols ()
34 "Return a list of all potential URL schemes."
35 (or (get 'url-extension-protocols
'probed
)
36 (mapc (lambda (s) (url-scheme-get-property s
'name
))
37 (or (get 'url-extension-protocols
'schemes
)
38 (let ((schemes '("info" "man" "rlogin" "telnet"
39 "tn3270" "data" "snews")))
42 (if (string-match "url-\\(.*\\).el$" f
)
43 (push (match-string 1 f
) schemes
)))
44 (directory-files d nil
"^url-.*\\.el$")))
46 (put 'url-extension-protocols
'schemes schemes
)
49 (defvar url-scheme-registry
)
51 (defun url-about-protocols (url)
55 " <title>Supported Protocols</title>\n"
58 " <h1>Supported Protocols - URL v" url-version
"</h1>\n"
59 " <table width='100%' border='1'>\n"
66 (if (string= k
"proxy")
67 ;; Ignore the proxy setting... its magic!
70 ;; The name of the protocol
71 (insert " <td valign=top>" (or (url-scheme-get-property k
'name
) k
) "\n")
73 ;; Now the properties. Currently just asynchronous
74 ;; status, default port number, and proxy status.
75 (insert " <td valign=top>"
76 (if (url-scheme-get-property k
'asynchronous-p
) "As" "S")
78 (if (url-scheme-get-property k
'default-port
)
79 (format "Default Port: %d<br>\n"
80 (url-scheme-get-property k
'default-port
)) "")
81 (if (assoc k url-proxy-services
)
82 (format "Proxy: %s<br>\n" (assoc k url-proxy-services
)) ""))
83 ;; Now the description...
84 (insert " <td valign=top>"
85 (or (url-scheme-get-property k
'description
) "N/A"))))
86 (sort (let (x) (maphash (lambda (k v
) (push k x
)) url-scheme-registry
) x
) 'string-lessp
))
91 (defun url-about (url)
93 (let* ((item (downcase (url-filename url
)))
94 (func (intern (format "url-about-%s" item
))))
97 (set-buffer (generate-new-buffer " *about-data*"))
98 (insert "Content-type: text/plain\n\n")
101 (error "URL does not know about `%s'" item
))))
105 ;; arch-tag: 65dd7fca-db3f-4cb1-8026-7dd37d4a460e
106 ;;; url-about.el ends here