comparison lisp/tm/tm-ftp.el @ 98:0d2f883870bc r20-1b1

Import from CVS: tag r20-1b1
author cvs
date Mon, 13 Aug 2007 09:13:56 +0200
parents c0c698873ce1
children
comparison
equal deleted inserted replaced
97:498bf5da1c90 98:0d2f883870bc
1 ;;; 1 ;;; tm-ftp.el --- tm-view internal method for anonymous ftp
2 ;;; tm-ftp: anonymous ftp processor for tm-view 2
3 ;;; 3 ;; Copyright (C) 1994,1995,1996,1997 Free Software Foundation, Inc.
4 ;;; by MASUTANI Yasuhiro <masutani@me.es.osaka-u.ac.jp> (1994/11/ 5) 4
5 ;;; 5 ;; Author: MASUTANI Yasuhiro <masutani@me.es.osaka-u.ac.jp>
6 ;;; modified by MORIOKA Tomohiko <morioka@jaist.ac.jp> (1994/11/ 8) 6 ;; MORIOKA Tomohiko <morioka@jaist.ac.jp>
7 ;;; and OKABE Yasuo <okabe@kudpc.kyoto-u.ac.jp> (1994/11/11) 7 ;; Created: 1994/11/5
8 ;;; 8 ;; Version: $Id: tm-ftp.el,v 1.3 1997/02/15 22:21:29 steve Exp $
9 ;;; $Id: tm-ftp.el,v 1.2 1996/12/28 21:03:14 steve Exp $ 9 ;; Keywords: anonymous ftp, MIME, multimedia, mail, news
10 ;;; 10
11 ;; This file is part of tm (Tools for MIME).
12
13 ;; This program is free software; you can redistribute it and/or
14 ;; modify it under the terms of the GNU General Public License as
15 ;; published by the Free Software Foundation; either version 2, or (at
16 ;; your option) any later version.
17
18 ;; This program is distributed in the hope that it will be useful, but
19 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 ;; General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
27
28 ;;; Code:
11 29
12 (require 'tm-view) 30 (require 'tm-view)
13 (require 'ange-ftp)
14 31
15 (defvar mime/dired-function 32 (defvar mime-view-ftp-module
33 (if (< emacs-major-version 19)
34 'ange-ftp)
35 "*Module for ftp file access.")
36
37 (and mime-view-ftp-module
38 (require mime-view-ftp-module)
39 )
40
41 (defvar mime-article/dired-function
16 (if mime/use-multi-frame 42 (if mime/use-multi-frame
17 (function dired-other-frame) 43 (function dired-other-frame)
18 (function dired) 44 (function mime-article/dired-function-for-one-frame)
19 )) 45 ))
20 46
21 (defun mime/decode-message/external-ftp (beg end cal) 47 (defun mime-article/dired-function-for-one-frame (dir)
22 (let ((access-type (cdr (assoc "access-type" cal))) 48 (let ((win (or (get-buffer-window mime::article/preview-buffer)
23 (site (cdr (assoc "site" cal))) 49 (get-largest-window))))
24 (directory (cdr (assoc "directory" cal))) 50 (select-window win)
25 (name (cdr (assoc "name" cal))) 51 (dired dir)
26 (mode (cdr (assoc "mode" cal))) 52 ))
27 (pathname)) 53
28 (setq pathname 54 (defun mime-article/decode-message/external-ftp (beg end cal)
29 (concat "/anonymous@" site ":" directory)) 55 (let* ((access-type (cdr (assoc "access-type" cal)))
30 (message (concat "Accessing " pathname "/" name "...")) 56 (site (cdr (assoc "site" cal)))
31 (switch-to-buffer mime::article/preview-buffer) 57 (directory (cdr (assoc "directory" cal)))
32 (funcall mime/dired-function pathname) 58 (name (cdr (assoc "name" cal)))
59 (mode (cdr (assoc "mode" cal)))
60 (pathname (concat "/anonymous@" site ":" directory))
61 )
62 (message (concat "Accessing " (expand-file-name name pathname) "..."))
63 (funcall mime-article/dired-function pathname)
33 (goto-char (point-min)) 64 (goto-char (point-min))
34 (search-forward name) 65 (search-forward name)
35 )) 66 ))
36 67
37 (set-atype 'mime/content-decoding-condition 68 (set-atype 'mime/content-decoding-condition
38 '((type . "message/external-body") 69 '((type . "message/external-body")
39 ("access-type" . "anon-ftp") 70 ("access-type" . "anon-ftp")
40 (method . mime/decode-message/external-ftp) 71 (method . mime-article/decode-message/external-ftp)
41 )) 72 ))
42 73
74
75 ;;; @ end
76 ;;;
77
43 (provide 'tm-ftp) 78 (provide 'tm-ftp)
79
80 ;;; tm-ftp.el ends here