unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob e825df59df438793c06c65bc1cb558347301fe16 4320 bytes (raw)
name: emacs/notmuch-tagger.el 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
 
;; notmuch-tagger.el --- Library to show labels as links
;;
;; Copyright © Damien Cassou
;;
;; 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 <http://www.gnu.org/licenses/>.
;;
;; Authors: Damien Cassou <damien.cassou@gmail.com>
;;; Commentary:
;;
;;; Code:
;;

(require 'button)

(or (require 'header-button nil t)
    (let ((load-path
           (cons (expand-file-name
                  "fallback-libs"
                  (file-name-directory (or load-file-name buffer-file-name)))
                 load-path)))
      (require 'header-button)))

(defun notmuch-tagger-separate-elems (list sep)
  "Return a list with all elements of LIST separated by SEP."
  (let ((first t)
        (res nil))
    (dolist (elt (reverse list) res)
      (unless first
        (push sep res))
      (setq first nil)
      (push elt res))))

(defun notmuch-tagger-goto-target (target)
  "Show a `notmuch-search' buffer for the TARGET tag."
  (notmuch-search (concat "tag:" target)))

(defun notmuch-tagger-headerline-button-action (button)
  "Open `notmuch-search' for the tag referenced by BUTTON."
  (let ((tag (header-button-get button 'notmuch-tagger-tag)))
    (notmuch-tagger-goto-target tag)))

(defun notmuch-tagger-body-button-action (button)
  "Open `notmuch-search' for the tag referenced by BUTTON."
  (let ((tag (button-get button 'notmuch-tagger-tag)))
    (notmuch-tagger-goto-target tag)))

(define-button-type 'notmuch-tagger-headerline-button-type
  'supertype 'header
  'action    #'notmuch-tagger-headerline-button-action
  'follow-link t)

(define-button-type 'notmuch-tagger-body-button-type
  'action    #'notmuch-tagger-body-button-action
  'follow-link t)

(defun notmuch-tagger-make-headerline-link (target)
  "Return a property list that presents a link to TARGET.

TARGET is a notmuch tag.
The returned property list will only work in the header-line."
  (header-button-format
   target
   :type 'notmuch-tagger-headerline-button-type
   'notmuch-tagger-tag target
   'help-echo (format "%s: Search other messages like this" target)))

(defun notmuch-tagger-make-body-link (target)
  "Return a property list that presents a link to TARGET.

TARGET is a notmuch tag.
The returned property list will work everywhere except in the
header-line."
  (let ((button (copy-sequence target)))
    (make-text-button
     button nil
     'type 'notmuch-tagger-body-button-type
     'notmuch-tagger-tag target
     'help-echo (format "%s: Search other messages like this" target))
    button))

(defun notmuch-tagger-make-link (target headerline)
"Return a property list that presents a link to TARGET.

TARGET is a notmuch tag.

If HEADERLINE is non-nil the returned list will be ready for
inclusion in the buffer's header-line. HEADERLINE must be nil in
all other cases."
  (if headerline
      (notmuch-tagger-make-headerline-link target)
    (notmuch-tagger-make-body-link target)))

(defun notmuch-tagger-format-tags (tags &optional headerline)
  "Return a format list for TAGS suitable for use in header line.
See Info node `(elisp)Mode Line Format' for more information.

If HEADERLINE is non-nil the returned list will be ready for
inclusion in the buffer's header-line. HEADERLINE must be nil in
all other cases."
  (mapcar
   (lambda (tag) (notmuch-tagger-make-link tag headerline))
   tags))

(defun notmuch-tagger-present-tags (tags &optional headerline)
  "Return a property list which nicely presents all TAGS.

If HEADERLINE is non-nil the returned list will be ready for
inclusion in the buffer's header-line. HEADERLINE must be nil in
all other cases."
  (list
   "("
   (notmuch-tagger-separate-elems (notmuch-tagger-format-tags tags headerline) " ")
   ")"))

(provide 'notmuch-tagger)
;;; notmuch-tagger.el ends here

debug log:

solving e825df5 ...
found e825df5 in https://yhetil.org/notmuch/1352565719-12397-1-git-send-email-damien.cassou@gmail.com/

applying [1/1] https://yhetil.org/notmuch/1352565719-12397-1-git-send-email-damien.cassou@gmail.com/
diff --git a/emacs/notmuch-tagger.el b/emacs/notmuch-tagger.el
new file mode 100644
index 0000000..e825df5

Checking patch emacs/notmuch-tagger.el...
Applied patch emacs/notmuch-tagger.el cleanly.

index at:
100644 e825df59df438793c06c65bc1cb558347301fe16	emacs/notmuch-tagger.el

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).