comparison lisp/tm/tm-ftp.el @ 18:d95e72db5c07 r19-15b92

Import from CVS: tag r19-15b92
author cvs
date Mon, 13 Aug 2007 08:49:43 +0200
parents 49a24b4fd526
children 8fc7fe29b841
comparison
equal deleted inserted replaced
17:4579af9d8826 18:d95e72db5c07
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.4 1997/02/04 02:36:06 steve Exp $
9 ;;; $Id: tm-ftp.el,v 1.3 1996/12/29 00:15:13 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) 31 (require 'ange-ftp)
14 32
15 (defvar mime/dired-function 33 (defvar mime-article/dired-function
16 (if mime/use-multi-frame 34 (if mime/use-multi-frame
17 (function dired-other-frame) 35 (function dired-other-frame)
18 (function dired) 36 (function mime-article/dired-function-for-one-frame)
19 )) 37 ))
20 38
21 (defun mime/decode-message/external-ftp (beg end cal) 39 (defun mime-article/dired-function-for-one-frame (dir)
22 (let ((access-type (cdr (assoc "access-type" cal))) 40 (let ((win (or (get-buffer-window mime::article/preview-buffer)
23 (site (cdr (assoc "site" cal))) 41 (get-largest-window))))
24 (directory (cdr (assoc "directory" cal))) 42 (select-window win)
25 (name (cdr (assoc "name" cal))) 43 (dired dir)
26 (mode (cdr (assoc "mode" cal))) 44 ))
27 (pathname)) 45
28 (setq pathname 46 (defun mime-article/decode-message/external-ftp (beg end cal)
29 (concat "/anonymous@" site ":" directory)) 47 (let* ((access-type (cdr (assoc "access-type" cal)))
30 (message (concat "Accessing " pathname "/" name "...")) 48 (site (cdr (assoc "site" cal)))
31 (switch-to-buffer mime::article/preview-buffer) 49 (directory (cdr (assoc "directory" cal)))
32 (funcall mime/dired-function pathname) 50 (name (cdr (assoc "name" cal)))
51 (mode (cdr (assoc "mode" cal)))
52 (pathname (concat "/anonymous@" site ":" directory))
53 )
54 (message (concat "Accessing " (expand-file-name name pathname) "..."))
55 (funcall mime-article/dired-function pathname)
33 (goto-char (point-min)) 56 (goto-char (point-min))
34 (search-forward name) 57 (search-forward name)
35 )) 58 ))
36 59
37 (set-atype 'mime/content-decoding-condition 60 (set-atype 'mime/content-decoding-condition
38 '((type . "message/external-body") 61 '((type . "message/external-body")
39 ("access-type" . "anon-ftp") 62 ("access-type" . "anon-ftp")
40 (method . mime/decode-message/external-ftp) 63 (method . mime-article/decode-message/external-ftp)
41 )) 64 ))
42 65
66
67 ;;; @ end
68 ;;;
69
43 (provide 'tm-ftp) 70 (provide 'tm-ftp)
71
72 ;;; tm-ftp.el ends here