1 ;;; url-about.el --- Show internal URLs
3 ;; Copyright (C) 2001, 2004, 2005, 2006, 2007, 2008, 2009
4 ;; 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/>.
30 (defun url-probe-protocols ()
31 "Return a list of all potential URL schemes."
32 (or (get 'url-extension-protocols
'probed
)
33 (mapc (lambda (s) (url-scheme-get-property s
'name
))
34 (or (get 'url-extension-protocols
'schemes
)
35 (let ((schemes '("info" "man" "rlogin" "telnet"
36 "tn3270" "data" "snews")))
39 (if (string-match "url-\\(.*\\).el$" f
)
40 (push (match-string 1 f
) schemes
)))
41 (directory-files d nil
"^url-.*\\.el$")))
43 (put 'url-extension-protocols
'schemes schemes
)
46 (defvar url-scheme-registry
)
48 (defun url-about-protocols (url)
52 " <title>Supported Protocols</title>\n"
55 " <h1>Supported Protocols - URL v" url-version
"</h1>\n"
56 " <table width='100%' border='1'>\n"
63 (if (string= k
"proxy")
64 ;; Ignore the proxy setting... its magic!
67 ;; The name of the protocol
68 (insert " <td valign=top>" (or (url-scheme-get-property k
'name
) k
) "\n")
70 ;; Now the properties. Currently just asynchronous
71 ;; status, default port number, and proxy status.
72 (insert " <td valign=top>"
73 (if (url-scheme-get-property k
'asynchronous-p
) "As" "S")
75 (if (url-scheme-get-property k
'default-port
)
76 (format "Default Port: %d<br>\n"
77 (url-scheme-get-property k
'default-port
)) "")
78 (if (assoc k url-proxy-services
)
79 (format "Proxy: %s<br>\n" (assoc k url-proxy-services
)) ""))
80 ;; Now the description...
81 (insert " <td valign=top>"
82 (or (url-scheme-get-property k
'description
) "N/A"))))
83 (sort (let (x) (maphash (lambda (k v
) (push k x
)) url-scheme-registry
) x
) 'string-lessp
))
88 (defun url-about (url)
90 (let* ((item (downcase (url-filename url
)))
91 (func (intern (format "url-about-%s" item
))))
94 (set-buffer (generate-new-buffer " *about-data*"))
95 (insert "Content-type: text/plain\n\n")
98 (error "URL does not know about `%s'" item
))))
102 ;; arch-tag: 65dd7fca-db3f-4cb1-8026-7dd37d4a460e
103 ;;; url-about.el ends here