Mercurial > emacs
annotate lisp/url/url-about.el @ 79519:1039328362ed
*** empty log message ***
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 01 Dec 2007 21:30:32 +0000 |
parents | 8932997d0b62 |
children | 9c0b3f269b92 01de702b1f49 |
rev | line source |
---|---|
54695 | 1 ;;; url-about.el --- Show internal URLs |
54791
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
2 |
75347 | 3 ;; Copyright (C) 2001, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. |
54791
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
4 |
54695 | 5 ;; Keywords: comm, data, processes, hypermedia |
6 | |
54791
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
7 ;; This file is part of GNU Emacs. |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
8 ;; |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
9 ;; GNU Emacs is free software; you can redistribute it and/or modify |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
10 ;; it under the terms of the GNU General Public License as published by |
78222
8932997d0b62
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75347
diff
changeset
|
11 ;; the Free Software Foundation; either version 3, or (at your option) |
54791
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
12 ;; any later version. |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
13 ;; |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
14 ;; GNU Emacs is distributed in the hope that it will be useful, |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
17 ;; GNU General Public License for more details. |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
18 ;; |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
19 ;; You should have received a copy of the GNU General Public License |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64084 | 21 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
22 ;; Boston, MA 02110-1301, USA. | |
54791
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
23 |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
24 ;;; Commentary: |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
25 |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
26 ;;; Code: |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
27 |
54695 | 28 (eval-when-compile |
29 (require 'cl)) | |
30 (require 'url-util) | |
31 (require 'url-parse) | |
32 | |
33 (defun url-probe-protocols () | |
54791
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
34 "Return a list of all potential URL schemes." |
54695 | 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"))) | |
40 (mapc (lambda (d) | |
41 (mapc (lambda (f) | |
42 (if (string-match "url-\\(.*\\).el$" f) | |
43 (push (match-string 1 f) schemes))) | |
44 (directory-files d nil "^url-.*\\.el$"))) | |
45 load-path) | |
46 (put 'url-extension-protocols 'schemes schemes) | |
47 schemes))))) | |
48 | |
54791
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
49 (defvar url-scheme-registry) |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
50 |
54695 | 51 (defun url-about-protocols (url) |
52 (url-probe-protocols) | |
53 (insert "<html>\n" | |
54 " <head>\n" | |
55 " <title>Supported Protocols</title>\n" | |
56 " </head>\n" | |
57 " <body>\n" | |
58 " <h1>Supported Protocols - URL v" url-version "</h1>\n" | |
59 " <table width='100%' border='1'>\n" | |
60 " <tr>\n" | |
61 " <td>Protocol\n" | |
62 " <td>Properties\n" | |
63 " <td>Description\n" | |
64 " </tr>\n") | |
65 (mapc (lambda (k) | |
66 (if (string= k "proxy") | |
67 ;; Ignore the proxy setting... its magic! | |
68 nil | |
69 (insert " <tr>\n") | |
70 ;; The name of the protocol | |
71 (insert " <td valign=top>" (or (url-scheme-get-property k 'name) k) "\n") | |
72 | |
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") | |
77 "ynchronous<br>\n" | |
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)) | |
87 (insert " </table>\n" | |
88 " </body>\n" | |
89 "</html>\n")) | |
90 | |
91 (defun url-about (url) | |
92 "Show internal URLs." | |
93 (let* ((item (downcase (url-filename url))) | |
94 (func (intern (format "url-about-%s" item)))) | |
95 (if (fboundp func) | |
96 (progn | |
97 (set-buffer (generate-new-buffer " *about-data*")) | |
54791
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
98 (insert "Content-type: text/plain\n\n") |
54695 | 99 (funcall func url) |
100 (current-buffer)) | |
101 (error "URL does not know about `%s'" item)))) | |
102 | |
103 (provide 'url-about) | |
54699 | 104 |
54791
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
105 ;; arch-tag: 65dd7fca-db3f-4cb1-8026-7dd37d4a460e |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
106 ;;; url-about.el ends here |