Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 883ED40DDCF for ; Fri, 12 Nov 2010 04:55:20 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -1.9 X-Spam-Level: X-Spam-Status: No, score=-1.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, RCVD_IN_DNSWL_NONE=-0.0001] autolearn=ham Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7Op59phRvHJB for ; Fri, 12 Nov 2010 04:55:08 -0800 (PST) Received: from mail-ww0-f45.google.com (mail-ww0-f45.google.com [74.125.82.45]) by olra.theworths.org (Postfix) with ESMTP id 8F8A24196F0 for ; Fri, 12 Nov 2010 04:55:08 -0800 (PST) Received: by wwb39 with SMTP id 39so28016wwb.2 for ; Fri, 12 Nov 2010 04:55:07 -0800 (PST) Received: by 10.216.28.15 with SMTP id f15mr3816609wea.39.1289566496478; Fri, 12 Nov 2010 04:54:56 -0800 (PST) Received: from ut.hh.sledj.net (host81-149-164-25.in-addr.btopenworld.com [81.149.164.25]) by mx.google.com with ESMTPS id p4sm2116657wej.28.2010.11.12.04.54.53 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 12 Nov 2010 04:54:54 -0800 (PST) Received: by ut.hh.sledj.net (Postfix, from userid 1000) id 7EB1C59405B; Fri, 12 Nov 2010 12:53:09 +0000 (GMT) From: David Edmondson To: notmuch@notmuchmail.org Subject: =?UTF-8?q?=5BPATCH=5D=20emacs=3A=20Improved=20printing=20support=2E?= Date: Fri, 12 Nov 2010 12:53:08 +0000 Message-Id: <1289566388-24300-1-git-send-email-dme@dme.org> X-Mailer: git-send-email 1.7.2.3 In-Reply-To: <87sjz8yq5a.fsf@ut.hh.sledj.net> References: <87sjz8yq5a.fsf@ut.hh.sledj.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Nov 2010 12:55:20 -0000 --- More usable (I'm trying 'muttprint then evince'). emacs/Makefile.local | 3 +- emacs/notmuch-print.el | 75 ++++++++++++++++++++++++++++++++++++++++++++++++ emacs/notmuch-show.el | 51 ++++++++++++++++++++++++++++++++ 3 files changed, 128 insertions(+), 1 deletions(-) create mode 100644 emacs/notmuch-print.el diff --git a/emacs/Makefile.local b/emacs/Makefile.local index c5280f1..df87427 100644 --- a/emacs/Makefile.local +++ b/emacs/Makefile.local @@ -13,7 +13,8 @@ emacs_sources := \ $(dir)/notmuch-maildir-fcc.el \ $(dir)/notmuch-message.el \ $(dir)/coolj.el \ - $(dir)/notmuch-lkml.el + $(dir)/notmuch-lkml.el \ + $(dir)/notmuch-print.el emacs_images := \ $(dir)/notmuch-logo.png diff --git a/emacs/notmuch-print.el b/emacs/notmuch-print.el new file mode 100644 index 0000000..62e380c --- /dev/null +++ b/emacs/notmuch-print.el @@ -0,0 +1,75 @@ +;; notmuch-print.el --- printing messages from notmuch. +;; +;; Copyright © David Edmondson +;; +;; This file is part of Notmuch. +;; +;; Notmuch is free software: you can redistribute it and/or modify it +;; under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. +;; +;; Notmuch is distributed in the hope that it will be useful, but +;; WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;; General Public License for more details. +;; +;; You should have received a copy of the GNU General Public License +;; along with Notmuch. If not, see . +;; +;; Authors: David Edmondson + +(defcustom notmuch-print-mechanism 'notmuch-print-lpr + "How should printing be done?" + :group 'notmuch + :type '(choice + (function :tag "Use lpr" notmuch-print-lpr) + (function :tag "Use ps-print" notmuch-print-ps-print) + (function :tag "Use ps-print then evince" notmuch-print-ps-print/evince) + (function :tag "Use muttprint" notmuch-print-muttprint) + (function :tag "Use muttprint then evince" notmuch-print-muttprint/evince) + (function :tag "Using a custom function"))) + +(defmacro notmuch-print-with-file (filename &rest body) + `(with-temp-buffer + (insert-file-contents ,filename) + (setq buffer-modified-p nil) + ,@body)) + +(defun notmuch-print-lpr (filename) + (notmuch-print-with-file filename + (lpr-buffer))) + +(defun notmuch-print-ps-print (filename) + (notmuch-print-with-file filename + (ps-print-buffer))) + +(defun notmuch-print-ps-print/evince (filename) + (let ((ps-file (make-temp-file "notmuch"))) + (notmuch-print-with-file filename + (ps-print-buffer ps-file) + (async-shell-command (concat "evince " ps-file))))) + +(defun notmuch-print-muttprint (filename) + (shell-command + (concat "muttprint " + "--file " (shell-quote-argument filename) " " + ;; Show the tags. + "--printed-headers Date_To_From_CC_Newsgroups_*Subject*_/Tags/ "))) + +(defun notmuch-print-muttprint/evince (filename) + (let ((ps-file (make-temp-file "notmuch"))) + (call-process-shell-command + (concat "muttprint " + "--file " (shell-quote-argument filename) " " + ;; Show the tags. + "--printed-headers Date_To_From_CC_Newsgroups_*Subject*_/Tags/ " + "--printer \"TO_FILE:" (shell-quote-argument ps-file) "\"")) + (async-shell-command (concat "evince " ps-file)))) + +(defun notmuch-print-message (filename) + (funcall notmuch-print-mechanism filename)) + +;; + +(provide 'notmuch-print) diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index aa89cfd..002c2fd 100644 --- a/emacs/notmuch-show.el +++ b/emacs/notmuch-show.el @@ -32,6 +32,7 @@ (require 'notmuch-query) (require 'notmuch-wash) (require 'notmuch-mua) +(require 'notmuch-print) (declare-function notmuch-call-notmuch-process "notmuch" (&rest args)) (declare-function notmuch-fontify-headers "notmuch" nil) @@ -174,6 +175,51 @@ Set `notmuch-show-address-simplication' to: mm-handle (> (notmuch-count-attachments mm-handle) 1)))) (message "Done")) +(defun notmuch-show-with-message-as-text (fn) + "Apply function `fn' to a text representation of the current +message." + + ;; Remake the header to ensure that all information is available. + (let* ((to (notmuch-show-get-to)) + (cc (notmuch-show-get-cc)) + (from (notmuch-show-get-from)) + (subject (notmuch-show-get-subject)) + (date (notmuch-show-get-date)) + (tags (notmuch-show-get-tags)) + (depth (notmuch-show-get-depth)) + + (header (concat + "Subject: " subject "\n" + "To: " to "\n" + (if (not (string= cc "")) + (concat "Cc: " cc "\n") + "") + "From: " from "\n" + "Date: " date "\n" + (if tags + (concat "Tags: " + (mapconcat '(lambda (tag) tag) tags ", ") "\n") + ""))) + (all (buffer-substring (notmuch-show-message-top) + (notmuch-show-message-bottom))) + + (file (make-temp-file "notmuch"))) + (with-temp-file file + (insert all) + (indent-rigidly (point-min) (point-max) (- depth)) + ;; Remove the original header. + (goto-char (point-min)) + (re-search-forward "^$" (point-max) nil) + (delete-region (point-min) (point)) + (insert header)) + (funcall fn file) + (delete-file file))) + +(defun notmuch-show-print-message () + "Print the current message." + (interactive) + (notmuch-show-with-message-as-text 'notmuch-print-message)) + (defun notmuch-show-fontify-header () (let ((face (cond ((looking-at "[Tt]o:") @@ -530,6 +576,8 @@ current buffer, if possible." (plist-put msg :message-invis-spec message-invis-spec) (overlay-put (make-overlay body-start body-end) 'invisible message-invis-spec) + (plist-put msg :depth depth) + ;; Save the properties for this message. Currently this saves the ;; entire message (augmented it with other stuff), which seems ;; like overkill. We might save a reduced subset (for example, not @@ -831,6 +879,9 @@ All currently available key bindings: (defun notmuch-show-get-to () (notmuch-show-get-header :To)) +(defun notmuch-show-get-depth () + (notmuch-show-get-prop :depth)) + (defun notmuch-show-set-tags (tags) "Set the tags of the current message." (notmuch-show-set-prop :tags tags) -- 1.7.2.3