• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/gnus/

Lines Matching refs:handle

87 (defun mm-inline-image-emacs (handle)
90 (put-image (mm-get-image handle) b)
92 (mm-handle-set-undisplayer
93 handle
100 (defun mm-inline-image-xemacs (handle)
103 (let ((annot (make-annotation (mm-get-image handle) nil 'text))
105 (mm-handle-set-undisplayer
106 handle
130 (defun mm-inline-text-html-render-with-w3 (handle)
132 (let ((text (mm-get-part handle))
138 (url-generic-parse-url (format "cid:%s" (mm-handle-id handle))))
141 (mm-handle-type handle) 'charset)))
177 (mm-handle-type handle) 'charset)))
182 (mm-insert-part handle)
184 (insert (mm-decode-string (mm-get-part handle)
188 (mm-handle-set-undisplayer
189 handle
214 (defun mm-w3m-cid-retrieve-1 (url handle)
215 (dolist (elem handle)
217 (when (equal url (mm-handle-id elem))
219 (throw 'found-handle (mm-handle-media-type elem)))
221 (equal "multipart" (mm-handle-media-supertype elem)))
227 (or (catch 'found-handle
236 (defun mm-inline-text-html-render-with-w3m (handle)
239 (let ((text (mm-get-part handle))
241 (charset (or (mail-content-type-get (mm-handle-type handle) 'charset)
263 (mm-handle-set-undisplayer
264 handle
302 (defun mm-inline-text-html-render-with-w3m-standalone (handle)
305 (let ((source (mm-get-part handle))
306 (charset (or (mail-content-type-get (mm-handle-type handle)
317 handle
328 (mm-inline-render-with-stdin handle nil "w3m" "-dump" "-T" "text/html")))
354 (defun mm-inline-render-with-file (handle post-func cmd &rest args)
355 (let ((source (mm-get-part handle)))
357 handle
363 (defun mm-inline-render-with-stdin (handle post-func cmd &rest args)
364 (let ((source (mm-get-part handle)))
366 handle
372 (defun mm-inline-render-with-function (handle func &rest args)
373 (let ((source (mm-get-part handle))
374 (charset (or (mail-content-type-get (mm-handle-type handle) 'charset)
377 handle
385 (defun mm-inline-text-html (handle)
393 (funcall func handle))
395 (apply (car func) handle (cdr func))))))
397 (defun mm-inline-text-vcard (handle)
400 handle
404 (vcard-pretty-print (mm-get-part handle))
406 (vcard-parse-string (mm-get-part handle)
409 (defun mm-inline-text (handle)
411 (type (mm-handle-media-subtype handle))
413 (mm-handle-type handle) 'charset))
421 (mm-insert-part handle)
423 (insert (mm-decode-string (mm-get-part handle) charset)))
426 (equal (cdr (assoc 'format (mm-handle-type handle)))
440 (mm-handle-set-undisplayer
441 handle
447 (defun mm-insert-inline (handle text)
451 (mm-handle-set-undisplayer
452 handle
458 (defun mm-inline-audio (handle)
485 (defun mm-inline-message (handle)
489 (mm-handle-type handle) 'charset))
499 (mm-insert-part handle)
506 (let ((gnus-original-article-buffer (mm-handle-buffer handle)))
520 (mm-handle-set-undisplayer
521 handle
532 (defun mm-display-inline-fontify (handle mode)
543 (mm-insert-part handle)
565 (mm-insert-inline handle text)))
572 (defun mm-display-patch-inline (handle)
573 (mm-display-inline-fontify handle 'diff-mode))
575 (defun mm-display-elisp-inline (handle)
576 (mm-display-inline-fontify handle 'emacs-lisp-mode))
600 (defun mm-view-pkcs7-get-type (handle)
602 (mm-insert-part handle)
610 (defun mm-view-pkcs7 (handle)
611 (case (mm-view-pkcs7-get-type handle)
612 (enveloped (mm-view-pkcs7-decrypt handle))
613 (signed (mm-view-pkcs7-verify handle))
616 (defun mm-view-pkcs7-verify (handle)
618 (mm-insert-part handle)
634 (defun mm-view-pkcs7-decrypt (handle)
635 (insert-buffer-substring (mm-handle-buffer handle))