Mercurial > emacs
annotate lisp/url/url-about.el @ 92881:d6c8f902278a
(dired-warn-writable): Rename to `dired-perm-write'.
(dired-perm-write): Renamed from `dired-warn-writable'.
Change parent face from `font-lock-warning-face' to
`font-lock-comment-delimiter-face'.
(dired-warn-writable-face): Rename to `dired-perm-write-face'.
(dired-perm-write-face): Renamed from `dired-warn-writable-face'.
(dired-font-lock-keywords): Replace `dired-warn-writable-face'
with `dired-perm-write-face'.
author | Juri Linkov <juri@jurta.org> |
---|---|
date | Fri, 14 Mar 2008 01:01:36 +0000 |
parents | 107ccd98fa12 |
children | 8259d0d8e107 |
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 |
79720 | 3 ;; Copyright (C) 2001, 2004, 2005, 2006, 2007, 2008 |
4 ;; Free Software Foundation, Inc. | |
54791
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
5 |
54695 | 6 ;; Keywords: comm, data, processes, hypermedia |
7 | |
54791
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
8 ;; This file is part of GNU Emacs. |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
9 ;; |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
10 ;; 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
|
11 ;; 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
|
12 ;; 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
|
13 ;; any later version. |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
14 ;; |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
15 ;; 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
|
16 ;; 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
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
18 ;; GNU General Public License for more details. |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
19 ;; |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
20 ;; 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
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64084 | 22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
23 ;; Boston, MA 02110-1301, USA. | |
54791
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
24 |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
25 ;;; Commentary: |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
26 |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
27 ;;; Code: |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
28 |
54695 | 29 (require 'url-util) |
30 (require 'url-parse) | |
31 | |
32 (defun url-probe-protocols () | |
54791
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
33 "Return a list of all potential URL schemes." |
54695 | 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 | |
54791
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
48 (defvar url-scheme-registry) |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
49 |
54695 | 50 (defun url-about-protocols (url) |
51 (url-probe-protocols) | |
52 (insert "<html>\n" | |
53 " <head>\n" | |
54 " <title>Supported Protocols</title>\n" | |
55 " </head>\n" | |
56 " <body>\n" | |
57 " <h1>Supported Protocols - URL v" url-version "</h1>\n" | |
58 " <table width='100%' border='1'>\n" | |
59 " <tr>\n" | |
60 " <td>Protocol\n" | |
61 " <td>Properties\n" | |
62 " <td>Description\n" | |
63 " </tr>\n") | |
64 (mapc (lambda (k) | |
65 (if (string= k "proxy") | |
66 ;; Ignore the proxy setting... its magic! | |
67 nil | |
68 (insert " <tr>\n") | |
69 ;; The name of the protocol | |
70 (insert " <td valign=top>" (or (url-scheme-get-property k 'name) k) "\n") | |
71 | |
72 ;; Now the properties. Currently just asynchronous | |
73 ;; status, default port number, and proxy status. | |
74 (insert " <td valign=top>" | |
75 (if (url-scheme-get-property k 'asynchronous-p) "As" "S") | |
76 "ynchronous<br>\n" | |
77 (if (url-scheme-get-property k 'default-port) | |
78 (format "Default Port: %d<br>\n" | |
79 (url-scheme-get-property k 'default-port)) "") | |
80 (if (assoc k url-proxy-services) | |
81 (format "Proxy: %s<br>\n" (assoc k url-proxy-services)) "")) | |
82 ;; Now the description... | |
83 (insert " <td valign=top>" | |
84 (or (url-scheme-get-property k 'description) "N/A")))) | |
85 (sort (let (x) (maphash (lambda (k v) (push k x)) url-scheme-registry) x) 'string-lessp)) | |
86 (insert " </table>\n" | |
87 " </body>\n" | |
88 "</html>\n")) | |
89 | |
90 (defun url-about (url) | |
91 "Show internal URLs." | |
92 (let* ((item (downcase (url-filename url))) | |
93 (func (intern (format "url-about-%s" item)))) | |
94 (if (fboundp func) | |
95 (progn | |
96 (set-buffer (generate-new-buffer " *about-data*")) | |
54791
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
97 (insert "Content-type: text/plain\n\n") |
54695 | 98 (funcall func url) |
99 (current-buffer)) | |
100 (error "URL does not know about `%s'" item)))) | |
101 | |
102 (provide 'url-about) | |
54699 | 103 |
54791
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
104 ;; arch-tag: 65dd7fca-db3f-4cb1-8026-7dd37d4a460e |
04bb18c57fc6
(url-scheme-registry): Defvar.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
105 ;;; url-about.el ends here |