1 ;;; mailcap.el --- MIME media types configuration
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: William M. Perry <wmperry@aventail.com>
7 ;; Lars Magne Ingebrigtsen <larsi@gnus.org>
8 ;; Keywords: news, mail, multimedia
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 3, or (at your option)
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
29 ;; Provides configuration of MIME media types from directly from Lisp
30 ;; and via the usual mailcap mechanism (RFC 1524). Deals with
31 ;; mime.types similarly.
35 (eval-when-compile (require 'cl
))
40 "Definition of viewers for MIME types."
44 (defvar mailcap-parse-args-syntax-table
45 (let ((table (copy-syntax-table emacs-lisp-mode-syntax-table
)))
46 (modify-syntax-entry ?
' "\"" table
)
47 (modify-syntax-entry ?
` "\"" table
)
48 (modify-syntax-entry ?
{ "(" table
)
49 (modify-syntax-entry ?
} ")" table
)
51 "A syntax table for parsing SGML attributes.")
54 (when (featurep 'xemacs
)
59 (defvar mailcap-print-command
61 (cons (if (boundp 'lpr-command
)
64 (when (boundp 'lpr-switches
)
65 (if (stringp lpr-switches
)
69 "Shell command (including switches) used to print Postscript files.")
71 ;; Postpone using defcustom for this as it's so big and we essentially
72 ;; have to have two copies of the data around then. Perhaps just
73 ;; customize the Lisp viewers and rely on the normal configuration
74 ;; files for the rest? -- fx
75 (defvar mailcap-mime-data
78 (viewer .
"gnumeric %s")
79 (test .
(getenv "DISPLAY"))
80 (type .
"application/vnd.ms-excel"))
82 (viewer . ssl-view-site-cert
)
83 (test .
(fboundp 'ssl-view-site-cert
))
84 (type .
"application/x-x509-ca-cert"))
86 (viewer . ssl-view-user-cert
)
87 (test .
(fboundp 'ssl-view-user-cert
))
88 (type .
"application/x-x509-user-cert"))
90 (viewer . mailcap-save-binary-file
)
92 (type .
"application/octet-stream"))
94 (viewer .
"xdvi -safer %s")
95 (test .
(eq window-system
'x
))
97 (type .
"application/dvi")
98 ("print" .
"dvips -qRP %s"))
100 (viewer .
"dvitty %s")
101 (test .
(not (getenv "DISPLAY")))
102 (type .
"application/dvi")
103 ("print" .
"dvips -qRP %s"))
105 (viewer . mailcap-maybe-eval
)
106 (type .
"application/emacs-lisp"))
108 (viewer . mailcap-maybe-eval
)
109 (type .
"application/x-emacs-lisp"))
111 (viewer . mailcap-save-binary-file
)
113 (type .
"application/x-tar"))
116 (test .
(fboundp 'tex-mode
))
117 (type .
"application/x-latex"))
120 (test .
(fboundp 'tex-mode
))
121 (type .
"application/x-tex"))
124 (test .
(fboundp 'tex-mode
))
125 (type .
"application/latex"))
128 (test .
(fboundp 'tex-mode
))
129 (type .
"application/tex"))
131 (viewer . texinfo-mode
)
132 (test .
(fboundp 'texinfo-mode
))
133 (type .
"application/tex"))
135 (viewer . mailcap-save-binary-file
)
137 (type .
"application/zip")
140 (viewer .
"gv -safer %s")
141 (type .
"application/pdf")
142 (test . window-system
)
143 ("print" .
,(concat "pdf2ps %s - | " mailcap-print-command
)))
146 (type .
"application/pdf")
147 ("print" .
,(concat "pdftops %s - | " mailcap-print-command
))
148 (test .
(eq window-system
'x
)))
151 (type .
"application/pdf")
152 ("print" .
,(concat "pdftops %s - | " mailcap-print-command
))
153 (test .
(eq window-system
'x
)))
155 (viewer .
,(concat "pdftotext %s -"))
156 (type .
"application/pdf")
157 ("print" .
,(concat "pdftops %s - | " mailcap-print-command
))
160 (viewer .
"gv -safer %s")
161 (type .
"application/postscript")
162 (test . window-system
)
163 ("print" .
,(concat mailcap-print-command
" %s"))
166 (viewer .
"ghostview -dSAFER %s")
167 (type .
"application/postscript")
168 (test .
(eq window-system
'x
))
169 ("print" .
,(concat mailcap-print-command
" %s"))
172 (viewer .
"ps2ascii %s")
173 (type .
"application/postscript")
174 (test .
(not (getenv "DISPLAY")))
175 ("print" .
,(concat mailcap-print-command
" %s"))
178 (viewer . sieve-mode
)
179 (test .
(fboundp 'sieve-mode
))
180 (type .
"application/sieve"))
182 (viewer .
"gpg --import --interactive --verbose")
183 (type .
"application/pgp-keys")
187 (viewer .
"maplay %s")
188 (type .
"audio/x-mpeg"))
190 (viewer .
"showaudio")
194 (viewer . mm-view-message
)
195 (test .
(and (featurep 'gnus
)
197 (type .
"message/rfc822"))
200 (test .
(fboundp 'vm-mode
))
201 (type .
"message/rfc822"))
204 (test .
(fboundp 'w3-mode
))
205 (type .
"message/rfc822"))
208 (type .
"message/rfc822")))
211 (viewer .
"xwud -in %s")
212 (type .
"image/x-xwd")
213 ("compose" .
"xwd -frame > %s")
214 (test .
(eq window-system
'x
))
217 (viewer .
"xwud -in %s")
218 (type .
"image/x-xwd")
219 ("compose" .
"xwd -frame > %s")
220 (test .
(eq window-system
'x
))
223 (viewer .
"xwud -in %s")
224 (type .
"image/x-xwd")
225 ("compose" .
"xwd -frame > %s")
226 (test .
(eq window-system
'x
))
229 (viewer .
"display %s")
231 (test .
(eq window-system
'x
))
236 (test .
(eq window-system
'x
))
241 (test .
(fboundp 'w3-mode
))
242 (type .
"text/plain"))
245 (test .
(fboundp 'view-mode
))
246 (type .
"text/plain"))
248 (viewer . fundamental-mode
)
249 (type .
"text/plain"))
251 (viewer . enriched-decode
)
252 (test .
(fboundp 'enriched-decode
))
253 (type .
"text/enriched"))
255 (viewer . mm-w3-prepare-buffer
)
256 (test .
(fboundp 'w3-prepare-buffer
))
257 (type .
"text/html")))
260 (viewer .
"mpeg_play %s")
261 (type .
"video/mpeg")
262 (test .
(eq window-system
'x
))
266 (viewer .
"webspace -remote %s -URL %u")
267 (type .
"x-world/x-vrml")
273 (type .
"archive/tar")
274 (test .
(fboundp 'tar-mode
)))))
275 "The mailcap structure is an assoc list of assoc lists.
276 1st assoc list is keyed on the major content-type
277 2nd assoc list is keyed on the minor content-type (which can be a regexp)
282 (\"postscript\" . <info>))
284 (\"plain\" . <info>)))
286 Where <info> is another assoc list of the various information
287 related to the mailcap RFC 1524. This is keyed on the lowercase
288 attribute name (viewer, test, etc). This looks like:
289 ((viewer . VIEWERINFO)
294 Where VIEWERINFO specifies how the content-type is viewed. Can be
295 a string, in which case it is run through a shell, with
296 appropriate parameters, or a symbol, in which case the symbol is
297 `funcall'ed, with the buffer as an argument.
299 TESTINFO is a test for the viewer's applicability, or nil. If nil, it
300 means the viewer is always valid. If it is a Lisp function, it is
301 called with a list of items from any extra fields from the
302 Content-Type header as argument to return a boolean value for the
303 validity. Otherwise, if it is a non-function Lisp symbol or list
304 whose car is a symbol, it is `eval'led to yield the validity. If it
305 is a string or list of strings, it represents a shell command to run
306 to return a true or false shell value for the validity.")
307 (put 'mailcap-mime-data
'risky-local-variable t
)
309 (defcustom mailcap-download-directory nil
310 "*Directory to which `mailcap-save-binary-file' downloads files by default.
311 nil means your home directory."
312 :type
'(choice (const :tag
"Home directory" nil
)
316 (defvar mailcap-poor-system-types
317 '(ms-dos ms-windows windows-nt win32 w32 mswindows
)
318 "Systems that don't have a Unix-like directory hierarchy.")
321 ;;; Utility functions
324 (defun mailcap-save-binary-file ()
325 (goto-char (point-min))
327 (let ((file (read-file-name
328 "Filename to save as: "
329 (or mailcap-download-directory
"~/")))
330 (require-final-newline nil
))
331 (write-region (point-min) (point-max) file
))
332 (kill-buffer (current-buffer))))
334 (defvar mailcap-maybe-eval-warning
337 This MIME part contains untrusted and possibly harmful content.
338 If you evaluate the Emacs Lisp code contained in it, a lot of nasty
339 things can happen. Please examine the code very carefully before you
340 instruct Emacs to evaluate it. You can browse the buffer containing
341 the code using \\[scroll-other-window].
343 If you are unsure what to do, please answer \"no\"."
344 "Text of warning message displayed by `mailcap-maybe-eval'.
345 Make sure that this text consists only of few text lines. Otherwise,
346 Gnus might fail to display all of it.")
348 (defun mailcap-maybe-eval ()
349 "Maybe evaluate a buffer of Emacs Lisp code."
350 (let ((lisp-buffer (current-buffer)))
351 (goto-char (point-min))
353 (save-window-excursion
354 (delete-other-windows)
355 (let ((buffer (get-buffer-create (generate-new-buffer-name
358 (with-current-buffer buffer
359 (insert (substitute-command-keys
360 mailcap-maybe-eval-warning
))
361 (goto-char (point-min))
362 (display-buffer buffer
)
363 (yes-or-no-p "This is potentially dangerous emacs-lisp code, evaluate it? "))
364 (kill-buffer buffer
))))
365 (eval-buffer (current-buffer)))
366 (when (buffer-live-p lisp-buffer
)
367 (with-current-buffer lisp-buffer
368 (emacs-lisp-mode)))))
372 ;;; The mailcap parser
375 (defun mailcap-replace-regexp (regexp to-string
)
376 ;; Quiet replace-regexp.
377 (goto-char (point-min))
378 (while (re-search-forward regexp nil t
)
379 (replace-match to-string t nil
)))
381 (defvar mailcap-parsed-p nil
)
383 (defun mailcap-parse-mailcaps (&optional path force
)
384 "Parse out all the mailcaps specified in a path string PATH.
385 Components of PATH are separated by the `path-separator' character
386 appropriate for this system. If FORCE, re-parse even if already
387 parsed. If PATH is omitted, use the value of environment variable
388 MAILCAPS if set; otherwise (on Unix) use the path from RFC 1524, plus
389 /usr/local/etc/mailcap."
390 (interactive (list nil t
))
391 (when (or (not mailcap-parsed-p
)
395 ((getenv "MAILCAPS") (setq path
(getenv "MAILCAPS")))
396 ((memq system-type mailcap-poor-system-types
)
397 (setq path
'("~/.mailcap" "~/mail.cap" "~/etc/mail.cap")))
399 ;; This is per RFC 1524, specifically
400 ;; with /usr before /usr/local.
401 '("~/.mailcap" "/etc/mailcap" "/usr/etc/mailcap"
402 "/usr/local/etc/mailcap"))))
403 (let ((fnames (reverse
405 (delete "" (split-string path path-separator
))
409 (setq fname
(car fnames
))
410 (if (and (file-readable-p fname
)
411 (file-regular-p fname
))
412 (mailcap-parse-mailcap fname
))
413 (setq fnames
(cdr fnames
))))
414 (setq mailcap-parsed-p t
)))
416 (defun mailcap-parse-mailcap (fname)
417 "Parse out the mailcap file specified by FNAME."
418 (let (major ; The major mime type (image/audio/etc)
419 minor
; The minor mime type (gif, basic, etc)
420 save-pos
; Misc saved positions used in parsing
421 viewer
; How to view this mime type
422 info
; Misc info about this mime type
425 (insert-file-contents fname
)
426 (set-syntax-table mailcap-parse-args-syntax-table
)
427 (mailcap-replace-regexp "#.*" "") ; Remove all comments
428 (mailcap-replace-regexp "\\\\[ \t]*\n" " ") ; And collapse spaces
429 (mailcap-replace-regexp "\n+" "\n") ; And blank lines
430 (goto-char (point-max))
431 (skip-chars-backward " \t\n")
432 (delete-region (point) (point-max))
434 (skip-chars-backward " \t\n")
436 (setq save-pos
(point)
438 (skip-chars-forward "^/; \t\n")
439 (downcase-region save-pos
(point))
440 (setq major
(buffer-substring save-pos
(point)))
441 (skip-chars-forward " \t")
443 (when (eq (char-after) ?
/)
445 (skip-chars-forward " \t")
446 (setq save-pos
(point))
447 (skip-chars-forward "^; \t\n")
448 (downcase-region save-pos
(point))
451 ((eq ?
* (or (char-after save-pos
) 0)) ".*")
452 ((= (point) save-pos
) ".*")
453 (t (regexp-quote (buffer-substring save-pos
(point)))))))
454 (skip-chars-forward " \t")
455 ;;; Got the major/minor chunks, now for the viewers/etc
456 ;;; The first item _must_ be a viewer, according to the
457 ;;; RFC for mailcap files (#1524)
459 (when (eq (char-after) ?\
;)
461 (skip-chars-forward " \t")
462 (setq save-pos
(point))
463 (skip-chars-forward "^;\n")
465 (while (eq (char-before) ?
\\)
466 (backward-delete-char 1)
468 (skip-chars-forward "^;\n"))
469 (if (eq (or (char-after save-pos
) 0) ?
')
471 (narrow-to-region (1+ save-pos
) (point))
472 (goto-char (point-min))
474 (read (current-buffer))
475 (goto-char (point-max))
477 (setq viewer
(buffer-substring save-pos
(point)))))
478 (setq save-pos
(point))
480 (unless (equal viewer
"")
481 (setq info
(nconc (list (cons 'viewer viewer
)
482 (cons 'type
(concat major
"/"
483 (if (string= minor
".*")
485 (mailcap-parse-mailcap-extras save-pos
(point))))
486 (mailcap-mailcap-entry-passes-test info
)
487 (mailcap-add-mailcap-entry major minor info
))
488 (beginning-of-line)))))
490 (defun mailcap-parse-mailcap-extras (st nd
)
491 "Grab all the extra stuff from a mailcap entry."
495 results
; Assoc list of results
496 name-pos
; Start of XXXX= position
497 val-pos
; Start of value position
498 done
; Found end of \'d ;s?
501 (narrow-to-region st nd
)
502 (goto-char (point-min))
503 (skip-chars-forward " \n\t;")
506 (setq name-pos
(point))
507 (skip-chars-forward "^ \n\t=;")
508 (downcase-region name-pos
(point))
509 (setq name
(buffer-substring name-pos
(point)))
510 (skip-chars-forward " \t\n")
511 (if (not (eq (char-after (point)) ?
=)) ; There is no value
513 (skip-chars-forward " \t\n=")
514 (setq val-pos
(point))
515 (if (memq (char-after val-pos
) '(?
\" ?
'))
517 (setq val-pos
(1+ val-pos
))
522 (error (goto-char (point-max)))))
524 (skip-chars-forward "^;")
525 (if (eq (char-after (1- (point))) ?
\\ )
527 (subst-char-in-region (1- (point)) (point) ?
\\ ?
)
528 (skip-chars-forward ";"))
530 (setq value
(buffer-substring val-pos
(point))))
531 ;; `test' as symbol, others like "copiousoutput" and "needsx11" as
533 (setq results
(cons (cons (if (string-equal name
"test")
537 (skip-chars-forward " \";\n\t"))
540 (defun mailcap-mailcap-entry-passes-test (info)
541 "Return non-nil if mailcap entry INFO passes its test clause.
542 Also return non-nil if no test clause is present."
543 (let ((test (assq 'test info
)) ; The test clause
545 (setq status
(and test
(split-string (cdr test
) " ")))
546 (if (and (or (assoc "needsterm" info
)
547 (assoc "needsterminal" info
)
548 (assoc "needsx11" info
))
549 (not (getenv "DISPLAY")))
552 ((and (equal (nth 0 status
) "test")
553 (equal (nth 1 status
) "-n")
554 (or (equal (nth 2 status
) "$DISPLAY")
555 (equal (nth 2 status
) "\"$DISPLAY\"")))
556 (setq status
(if (getenv "DISPLAY") t nil
)))
557 ((and (equal (nth 0 status
) "test")
558 (equal (nth 1 status
) "-z")
559 (or (equal (nth 2 status
) "$DISPLAY")
560 (equal (nth 2 status
) "\"$DISPLAY\"")))
561 (setq status
(if (getenv "DISPLAY") nil t
)))
564 (and test
(listp test
) (setcdr test status
))))
567 ;;; The action routines.
570 (defun mailcap-possible-viewers (major minor
)
571 "Return a list of possible viewers from MAJOR for minor type MINOR."
576 ((equal (car (car major
)) minor
)
577 (setq exact
(cons (cdr (car major
)) exact
)))
578 ((and minor
(string-match (concat "^" (car (car major
)) "$") minor
))
579 (setq wildcard
(cons (cdr (car major
)) wildcard
))))
580 (setq major
(cdr major
)))
581 (nconc exact wildcard
)))
583 (defun mailcap-unescape-mime-test (test type-info
)
584 (let (save-pos save-chr subst
)
586 ((symbolp test
) test
)
587 ((and (listp test
) (symbolp (car test
))) test
)
589 (and (listp test
) (stringp (car test
))
590 (setq test
(mapconcat 'identity test
" "))))
593 (goto-char (point-min))
595 (skip-chars-forward "^%")
597 (progn (skip-chars-backward "\\\\")
599 0) ; It is an escaped %
602 (skip-chars-forward "%."))
603 (setq save-pos
(point))
604 (skip-chars-forward "%")
605 (setq save-chr
(char-after (point)))
607 ;; %s: name of a file for the body data
609 ;; %{<parameter name}: value of parameter in mailcap entry
610 ;; %n: number of sub-parts for multipart content-type
611 ;; %F: a set of content-type/filename pairs for multiparts
613 ((null save-chr
) nil
)
615 (delete-region save-pos
(progn (forward-char 1) (point)))
616 (insert (or (cdr (assq 'type type-info
)) "\"\"")))
617 ((memq save-chr
'(?M ?n ?F
))
618 (delete-region save-pos
(progn (forward-char 1) (point)))
622 (skip-chars-forward "^}")
623 (downcase-region (+ 2 save-pos
) (point))
624 (setq subst
(buffer-substring (+ 2 save-pos
) (point)))
625 (delete-region save-pos
(1+ (point)))
626 (insert (or (cdr (assoc subst type-info
)) "\"\"")))
629 (t (error "Bad value to mailcap-unescape-mime-test: %s" test
)))))
631 (defvar mailcap-viewer-test-cache nil
)
633 (defun mailcap-viewer-passes-test (viewer-info type-info
)
634 "Return non-nil if viewer specified by VIEWER-INFO passes its test clause.
635 Also return non-nil if it has no test clause. TYPE-INFO is an argument
636 to supply to the test."
637 (let* ((test-info (assq 'test viewer-info
))
638 (test (cdr test-info
))
640 (viewer (cdr (assoc 'viewer viewer-info
)))
641 (default-directory (expand-file-name "~/"))
642 status parsed-test cache result
)
643 (cond ((setq cache
(assoc test mailcap-viewer-test-cache
))
645 ((not test-info
) t
) ; No test clause
650 ((not test
) nil
) ; Already failed test
651 ((eq test t
) t
) ; Already passed test
652 ((functionp test
) ; Lisp function as test
653 (funcall test type-info
))
654 ((and (symbolp test
) ; Lisp variable as test
657 ((and (listp test
) ; List to be eval'd
658 (symbolp (car test
)))
661 (setq test
(mailcap-unescape-mime-test test type-info
)
662 test
(list shell-file-name nil nil nil
663 shell-command-switch test
)
664 status
(apply 'call-process test
))
666 (push (list otest result
) mailcap-viewer-test-cache
)
669 (defun mailcap-add-mailcap-entry (major minor info
)
670 (let ((old-major (assoc major mailcap-mime-data
)))
671 (if (null old-major
) ; New major area
672 (setq mailcap-mime-data
673 (cons (cons major
(list (cons minor info
)))
675 (let ((cur-minor (assoc minor old-major
)))
677 ((or (null cur-minor
) ; New minor area, or
678 (assq 'test info
)) ; Has a test, insert at beginning
679 (setcdr old-major
(cons (cons minor info
) (cdr old-major
))))
680 ((and (not (assq 'test info
)) ; No test info, replace completely
681 (not (assq 'test cur-minor
))
682 (equal (assq 'viewer info
) ; Keep alternative viewer
683 (assq 'viewer cur-minor
)))
684 (setcdr cur-minor info
))
686 (setcdr old-major
(cons (cons minor info
) (cdr old-major
))))))
689 (defun mailcap-add (type viewer
&optional test
)
690 "Add VIEWER as a handler for TYPE.
691 If TEST is not given, it defaults to t."
692 (let ((tl (split-string type
"/")))
693 (when (or (not (car tl
))
695 (error "%s is not a valid MIME type" type
))
696 (mailcap-add-mailcap-entry
699 (test .
,(if test test t
))
706 (defun mailcap-viewer-lessp (x y
)
707 "Return t if viewer X is more desirable than viewer Y."
708 (let ((x-wild (string-match "[*?]" (or (cdr-safe (assq 'type x
)) "")))
709 (y-wild (string-match "[*?]" (or (cdr-safe (assq 'type y
)) "")))
710 (x-lisp (not (stringp (or (cdr-safe (assq 'viewer x
)) ""))))
711 (y-lisp (not (stringp (or (cdr-safe (assq 'viewer y
)) "")))))
713 ((and x-wild
(not y-wild
))
715 ((and (not x-wild
) y-wild
)
717 ((and (not y-lisp
) x-lisp
)
721 (defun mailcap-mime-info (string &optional request
)
722 "Get the MIME viewer command for STRING, return nil if none found.
723 Expects a complete content-type header line as its argument.
725 Second argument REQUEST specifies what information to return. If it is
726 nil or the empty string, the viewer (second field of the mailcap
727 entry) will be returned. If it is a string, then the mailcap field
728 corresponding to that string will be returned (print, description,
729 whatever). If a number, then all the information for this specific
730 viewer is returned. If `all', then all possible viewers for
731 this type is returned."
733 major
; Major encoding (text, etc)
734 minor
; Minor encoding (html, etc)
736 save-pos
; Misc. position during parse
737 major-info
; (assoc major mailcap-mime-data)
738 minor-info
; (assoc minor major-info)
739 test
; current test proc.
740 viewers
; Possible viewers
741 passed
; Viewers that passed the test
742 viewer
; The one and only viewer
745 (setq ctl
(mail-header-parse-content-type (or string
"text/plain")))
746 (setq major
(split-string (car ctl
) "/"))
747 (setq minor
(cadr major
)
749 (when (setq major-info
(cdr (assoc major mailcap-mime-data
)))
750 (when (setq viewers
(mailcap-possible-viewers major-info minor
))
751 (setq info
(mapcar (lambda (a) (cons (symbol-name (car a
))
755 (if (mailcap-viewer-passes-test (car viewers
) info
)
756 (setq passed
(cons (car viewers
) passed
)))
757 (setq viewers
(cdr viewers
)))
758 (setq passed
(sort passed
'mailcap-viewer-lessp
))
759 (setq viewer
(car passed
))))
760 (when (and (stringp (cdr (assq 'viewer viewer
)))
762 (setq viewer
(car passed
)))
764 ((and (null viewer
) (not (equal major
"default")) request
)
765 (mailcap-mime-info "default" request
))
766 ((or (null request
) (equal request
""))
767 (mailcap-unescape-mime-test (cdr (assq 'viewer viewer
)) info
))
769 (mailcap-unescape-mime-test
770 (cdr-safe (assoc request viewer
)) info
))
774 ;; MUST make a copy *sigh*, else we modify mailcap-mime-data
775 (setq viewer
(copy-sequence viewer
))
776 (let ((view (assq 'viewer viewer
))
777 (test (assq 'test viewer
)))
778 (if view
(setcdr view
(mailcap-unescape-mime-test (cdr view
) info
)))
779 (if test
(setcdr test
(mailcap-unescape-mime-test (cdr test
) info
))))
783 ;;; Experimental MIME-types parsing
786 (defvar mailcap-mime-extensions
787 '(("" .
"text/plain")
788 (".abs" .
"audio/x-mpeg")
789 (".aif" .
"audio/aiff")
790 (".aifc" .
"audio/aiff")
791 (".aiff" .
"audio/aiff")
792 (".ano" .
"application/x-annotator")
793 (".au" .
"audio/ulaw")
794 (".avi" .
"video/x-msvideo")
795 (".bcpio" .
"application/x-bcpio")
796 (".bin" .
"application/octet-stream")
797 (".cdf" .
"application/x-netcdr")
798 (".cpio" .
"application/x-cpio")
799 (".csh" .
"application/x-csh")
800 (".css" .
"text/css")
801 (".dvi" .
"application/x-dvi")
802 (".diff" .
"text/x-patch")
803 (".el" .
"application/emacs-lisp")
804 (".eps" .
"application/postscript")
805 (".etx" .
"text/x-setext")
806 (".exe" .
"application/octet-stream")
807 (".fax" .
"image/x-fax")
808 (".gif" .
"image/gif")
809 (".hdf" .
"application/x-hdf")
810 (".hqx" .
"application/mac-binhex40")
811 (".htm" .
"text/html")
812 (".html" .
"text/html")
813 (".icon" .
"image/x-icon")
814 (".ief" .
"image/ief")
815 (".jpg" .
"image/jpeg")
816 (".macp" .
"image/x-macpaint")
817 (".man" .
"application/x-troff-man")
818 (".me" .
"application/x-troff-me")
819 (".mif" .
"application/mif")
820 (".mov" .
"video/quicktime")
821 (".movie" .
"video/x-sgi-movie")
822 (".mp2" .
"audio/x-mpeg")
823 (".mp3" .
"audio/x-mpeg")
824 (".mp2a" .
"audio/x-mpeg2")
825 (".mpa" .
"audio/x-mpeg")
826 (".mpa2" .
"audio/x-mpeg2")
827 (".mpe" .
"video/mpeg")
828 (".mpeg" .
"video/mpeg")
829 (".mpega" .
"audio/x-mpeg")
830 (".mpegv" .
"video/mpeg")
831 (".mpg" .
"video/mpeg")
832 (".mpv" .
"video/mpeg")
833 (".ms" .
"application/x-troff-ms")
834 (".nc" .
"application/x-netcdf")
835 (".nc" .
"application/x-netcdf")
836 (".oda" .
"application/oda")
837 (".patch" .
"text/x-patch")
838 (".pbm" .
"image/x-portable-bitmap")
839 (".pdf" .
"application/pdf")
840 (".pgm" .
"image/portable-graymap")
841 (".pict" .
"image/pict")
842 (".png" .
"image/png")
843 (".pnm" .
"image/x-portable-anymap")
844 (".ppm" .
"image/portable-pixmap")
845 (".ps" .
"application/postscript")
846 (".qt" .
"video/quicktime")
847 (".ras" .
"image/x-raster")
848 (".rgb" .
"image/x-rgb")
849 (".rtf" .
"application/rtf")
850 (".rtx" .
"text/richtext")
851 (".sh" .
"application/x-sh")
852 (".sit" .
"application/x-stuffit")
853 (".siv" .
"application/sieve")
854 (".snd" .
"audio/basic")
855 (".src" .
"application/x-wais-source")
856 (".tar" .
"archive/tar")
857 (".tcl" .
"application/x-tcl")
858 (".tex" .
"application/x-tex")
859 (".texi" .
"application/texinfo")
860 (".tga" .
"image/x-targa")
861 (".tif" .
"image/tiff")
862 (".tiff" .
"image/tiff")
863 (".tr" .
"application/x-troff")
864 (".troff" .
"application/x-troff")
865 (".tsv" .
"text/tab-separated-values")
866 (".txt" .
"text/plain")
867 (".vbs" .
"video/mpeg")
868 (".vox" .
"audio/basic")
869 (".vrml" .
"x-world/x-vrml")
870 (".wav" .
"audio/x-wav")
871 (".xls" .
"application/vnd.ms-excel")
872 (".wrl" .
"x-world/x-vrml")
873 (".xbm" .
"image/xbm")
874 (".xpm" .
"image/xpm")
875 (".xwd" .
"image/windowdump")
876 (".zip" .
"application/zip")
877 (".ai" .
"application/postscript")
878 (".jpe" .
"image/jpeg")
879 (".jpeg" .
"image/jpeg"))
880 "An alist of file extensions and corresponding MIME content-types.
881 This exists for you to customize the information in Lisp. It is
882 merged with values from mailcap files by `mailcap-parse-mimetypes'.")
884 (defvar mailcap-mimetypes-parsed-p nil
)
886 (defun mailcap-parse-mimetypes (&optional path force
)
887 "Parse out all the mimetypes specified in a Unix-style path string PATH.
888 Components of PATH are separated by the `path-separator' character
889 appropriate for this system. If PATH is omitted, use the value of
890 environment variable MIMETYPES if set; otherwise use a default path.
891 If FORCE, re-parse even if already parsed."
892 (interactive (list nil t
))
893 (when (or (not mailcap-mimetypes-parsed-p
)
897 ((getenv "MIMETYPES") (setq path
(getenv "MIMETYPES")))
898 ((memq system-type mailcap-poor-system-types
)
899 (setq path
'("~/mime.typ" "~/etc/mime.typ")))
901 ;; mime.types seems to be the normal name, definitely so
902 ;; on current GNUish systems. The search order follows
906 "/usr/etc/mime.types"
907 "/usr/local/etc/mime.types"
908 "/usr/local/www/conf/mime.types"
911 "/usr/etc/mime-types"
912 "/usr/local/etc/mime-types"
913 "/usr/local/www/conf/mime-types"))))
914 (let ((fnames (reverse (if (stringp path
)
915 (delete "" (split-string path path-separator
))
919 (setq fname
(car fnames
))
920 (if (and (file-readable-p fname
))
921 (mailcap-parse-mimetype-file fname
))
922 (setq fnames
(cdr fnames
))))
923 (setq mailcap-mimetypes-parsed-p t
)))
925 (defun mailcap-parse-mimetype-file (fname)
926 "Parse out a mime-types file FNAME."
927 (let (type ; The MIME type for this line
928 extns
; The extensions for this line
929 save-pos
; Misc. saved buffer positions
932 (insert-file-contents fname
)
933 (mailcap-replace-regexp "#.*" "")
934 (mailcap-replace-regexp "\n+" "\n")
935 (mailcap-replace-regexp "[ \t]+$" "")
936 (goto-char (point-max))
937 (skip-chars-backward " \t\n")
938 (delete-region (point) (point-max))
939 (goto-char (point-min))
941 (skip-chars-forward " \t\n")
942 (setq save-pos
(point))
943 (skip-chars-forward "^ \t\n")
944 (downcase-region save-pos
(point))
945 (setq type
(buffer-substring save-pos
(point)))
947 (skip-chars-forward " \t")
948 (setq save-pos
(point))
949 (skip-chars-forward "^ \t\n")
950 (setq extns
(cons (buffer-substring save-pos
(point)) extns
)))
952 (setq mailcap-mime-extensions
954 (cons (if (= (string-to-char (car extns
)) ?.
)
956 (concat "." (car extns
))) type
)
957 mailcap-mime-extensions
)
958 extns
(cdr extns
)))))))
960 (defun mailcap-extension-to-mime (extn)
961 "Return the MIME content type of the file extensions EXTN."
962 (mailcap-parse-mimetypes)
963 (if (and (stringp extn
)
964 (not (eq (string-to-char extn
) ?.
)))
965 (setq extn
(concat "." extn
)))
966 (cdr (assoc (downcase extn
) mailcap-mime-extensions
)))
969 (defalias 'mailcap-command-p
'executable-find
)
971 (defun mailcap-mime-types ()
972 "Return a list of MIME media types."
973 (mailcap-parse-mimetypes)
974 (mm-delete-duplicates
976 (mapcar 'cdr mailcap-mime-extensions
)
984 (let ((type (cdr (assq 'type
(cdr m
)))))
985 (if (equal (cadr (split-string type
"/"))
990 mailcap-mime-data
)))))
994 ;;; arch-tag: 1fd4f9c9-c305-4d2e-9747-3a4d45baa0bd
995 ;;; mailcap.el ends here