]> code.delx.au - gnu-emacs/blob - lisp/url/url-about.el
Initial revision
[gnu-emacs] / lisp / url / url-about.el
1 ;;; url-about.el --- Show internal URLs
2 ;; Author: $Author: wmperry $
3 ;; Created: $Date: 2001/11/24 22:30:21 $
4 ;; Version: $Revision: 1.1 $
5 ;; Keywords: comm, data, processes, hypermedia
6
7 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8 ;;; Copyright (c) 2001 Free Software Foundation, Inc.
9 ;;;
10 ;;; This file is part of GNU Emacs.
11 ;;;
12 ;;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;;; it under the terms of the GNU General Public License as published by
14 ;;; the Free Software Foundation; either version 2, or (at your option)
15 ;;; any later version.
16 ;;;
17 ;;; GNU Emacs is distributed in the hope that it will be useful,
18 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;;; GNU General Public License for more details.
21 ;;;
22 ;;; You should have received a copy of the GNU General Public License
23 ;;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;;; Boston, MA 02111-1307, USA.
26 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
27 (eval-when-compile
28 (require 'cl))
29 (require 'url-util)
30 (require 'url-parse)
31
32 (defun url-probe-protocols ()
33 "Returns a list of all potential URL schemes."
34 (or (get 'url-extension-protocols 'probed)
35 (mapc (lambda (s) (url-scheme-get-property s 'name))
36 (or (get 'url-extension-protocols 'schemes)
37 (let ((schemes '("info" "man" "rlogin" "telnet"
38 "tn3270" "data" "snews")))
39 (mapc (lambda (d)
40 (mapc (lambda (f)
41 (if (string-match "url-\\(.*\\).el$" f)
42 (push (match-string 1 f) schemes)))
43 (directory-files d nil "^url-.*\\.el$")))
44 load-path)
45 (put 'url-extension-protocols 'schemes schemes)
46 schemes)))))
47
48 (defun url-about-protocols (url)
49 (url-probe-protocols)
50 (insert "<html>\n"
51 " <head>\n"
52 " <title>Supported Protocols</title>\n"
53 " </head>\n"
54 " <body>\n"
55 " <h1>Supported Protocols - URL v" url-version "</h1>\n"
56 " <table width='100%' border='1'>\n"
57 " <tr>\n"
58 " <td>Protocol\n"
59 " <td>Properties\n"
60 " <td>Description\n"
61 " </tr>\n")
62 (mapc (lambda (k)
63 (if (string= k "proxy")
64 ;; Ignore the proxy setting... its magic!
65 nil
66 (insert " <tr>\n")
67 ;; The name of the protocol
68 (insert " <td valign=top>" (or (url-scheme-get-property k 'name) k) "\n")
69
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")
74 "ynchronous<br>\n"
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))
84 (insert " </table>\n"
85 " </body>\n"
86 "</html>\n"))
87
88 (defun url-about (url)
89 "Show internal URLs."
90 (let* ((item (downcase (url-filename url)))
91 (func (intern (format "url-about-%s" item))))
92 (if (fboundp func)
93 (progn
94 (set-buffer (generate-new-buffer " *about-data*"))
95 (insert "Content-type: text/html\n\n")
96 (funcall func url)
97 (current-buffer))
98 (error "URL does not know about `%s'" item))))
99
100 (provide 'url-about)