(latexenc-find-file-coding-system): Don't inherit the EOL part of the
[emacs.git] / lisp / url / url-dired.el
blob41d81df677ebfc41dcc0a86d36725e9b0264c805
1 ;;; url-dired.el --- URL Dired minor mode
3 ;; Copyright (c) 1996 - 1999 Free Software Foundation, Inc.
5 ;; Keywords: comm, files
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)
12 ;; any later version.
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.
24 ;;; Code:
26 (autoload 'w3-fetch "w3")
27 (autoload 'w3-open-local "w3")
28 (autoload 'dired-get-filename "dired")
30 (defvar url-dired-minor-mode-map
31 (let ((map (make-sparse-keymap)))
32 (define-key map "\C-m" 'url-dired-find-file)
33 (if (featurep 'xemacs)
34 (define-key map [button2] 'url-dired-find-file-mouse)
35 (define-key map [mouse-2] 'url-dired-find-file-mouse))
36 map)
37 "Keymap used when browsing directories.")
39 (defvar url-dired-minor-mode nil
40 "Whether we are in url-dired-minor-mode")
42 (make-variable-buffer-local 'url-dired-minor-mode)
44 (defun url-dired-find-file ()
45 "In dired, visit the file or directory named on this line, using Emacs-W3."
46 (interactive)
47 (let ((filename (dired-get-filename)))
48 (cond ((string-match "/\\(.*@.*\\):\\(/.*\\)" filename)
49 (w3-fetch (concat "file://" (match-string 1 filename) (match-string 2 filename))))
51 (w3-open-local filename)))))
53 (defun url-dired-find-file-mouse (event)
54 "In dired, visit the file or directory name you click on, using Emacs-W3."
55 (interactive "@e")
56 (mouse-set-point event)
57 (url-dired-find-file))
59 (defun url-dired-minor-mode (&optional arg)
60 "Minor mode for directory browsing with Emacs-W3."
61 (interactive "P")
62 (cond
63 ((null arg)
64 (setq url-dired-minor-mode (not url-dired-minor-mode)))
65 ((equal 0 arg)
66 (setq url-dired-minor-mode nil))
68 (setq url-dired-minor-mode t))))
70 (if (not (fboundp 'add-minor-mode))
71 (defun add-minor-mode (toggle name &optional keymap after toggle-fun)
72 "Add a minor mode to `minor-mode-alist' and `minor-mode-map-alist'.
73 TOGGLE is a symbol which is used as the variable which toggle the minor mode,
74 NAME is the name that should appear in the modeline (it should be a string
75 beginning with a space), KEYMAP is a keymap to make active when the minor
76 mode is active, and AFTER is the toggling symbol used for another minor
77 mode. If AFTER is non-nil, then it is used to position the new mode in the
78 minor-mode alists. TOGGLE-FUN specifies an interactive function that
79 is called to toggle the mode on and off; this affects what appens when
80 button2 is pressed on the mode, and when button3 is pressed somewhere
81 in the list of modes. If TOGGLE-FUN is nil and TOGGLE names an
82 interactive function, TOGGLE is used as the toggle function.
84 Example: (add-minor-mode 'view-minor-mode \" View\" view-mode-map)"
85 (if (not (assq toggle minor-mode-alist))
86 (setq minor-mode-alist (cons (list toggle name) minor-mode-alist)))
87 (if (and keymap (not (assq toggle minor-mode-map-alist)))
88 (setq minor-mode-map-alist (cons (cons toggle keymap)
89 minor-mode-map-alist)))))
91 (add-minor-mode 'url-dired-minor-mode " URL" url-dired-minor-mode-map)
93 (defun url-find-file-dired (dir)
94 "\"Edit\" directory DIR, but with additional URL-friendly bindings."
95 (interactive "DURL Dired (directory): ")
96 (find-file dir)
97 (url-dired-minor-mode t))
99 (provide 'url-dired)
101 ;;; arch-tag: 2694f21a-43e1-4391-b3cb-cf6e5349f15f
102 ;;; url-dired.el ends here