comparison lisp/gnus/mm-view.el @ 112390:1b25cd6a6e36

mm-decode.el (mm-inline-media-tests): Add text/x-sh. gnus-art.el (gnus-mime-inline-part): Use mm-display-inline rather than mm-insert-inline to insert inline part: this respect mm-inline-media-tests displayers. mm-view.el (mm-display-shell-script-inline): New function. mm-decode.el (mm-inline-media-tests): Add x-shellscript and x-sh. mm-uu.el (mm-uu-type-alist): Add org block. (mm-uu-org-src-code-block-extract): New function. mm-view.el (mm-display-org-inline): New function. mm-decode.el (mm-automatic-display): Add text/org. mailcap.el (mailcap-mime-extensions): Add .org.
author Katsumi Yamaoka <yamaoka@jpl.org>
date Thu, 20 Jan 2011 23:43:27 +0000
parents 52100bac91db
children
comparison
equal deleted inserted replaced
112389:75fb060ecbc3 112390:1b25cd6a6e36
630 (mm-display-inline-fontify handle 'emacs-lisp-mode)) 630 (mm-display-inline-fontify handle 'emacs-lisp-mode))
631 631
632 (defun mm-display-dns-inline (handle) 632 (defun mm-display-dns-inline (handle)
633 (mm-display-inline-fontify handle 'dns-mode)) 633 (mm-display-inline-fontify handle 'dns-mode))
634 634
635 (defun mm-display-org-inline (handle)
636 "Show an Org mode text from HANDLE inline."
637 (mm-display-inline-fontify handle 'org-mode))
638
639 (defun mm-display-shell-script-inline (handle)
640 "Show an shell script from HANDLE inline."
641 (mm-display-inline-fontify handle 'shell-script-mode))
642
635 ;; id-signedData OBJECT IDENTIFIER ::= { iso(1) member-body(2) 643 ;; id-signedData OBJECT IDENTIFIER ::= { iso(1) member-body(2)
636 ;; us(840) rsadsi(113549) pkcs(1) pkcs7(7) 2 } 644 ;; us(840) rsadsi(113549) pkcs(1) pkcs7(7) 2 }
637 (defvar mm-pkcs7-signed-magic 645 (defvar mm-pkcs7-signed-magic
638 "\x30\x5c\x28\x80\x5c\x7c\x81\x2e\x5c\x7c\x82\x2e\x2e\x5c\x7c\x83\x2e\x2e\ 646 "\x30\x5c\x28\x80\x5c\x7c\x81\x2e\x5c\x7c\x82\x2e\x2e\x5c\x7c\x83\x2e\x2e\
639 \x2e\x5c\x29\x06\x09\x5c\x2a\x86\x48\x86\xf7\x0d\x01\x07\x02") 647 \x2e\x5c\x29\x06\x09\x5c\x2a\x86\x48\x86\xf7\x0d\x01\x07\x02")