emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
blob 09ff911e57b64fb9b8ae502b6f12246444a155f2 3917 bytes (raw)
name: contrib/lisp/org-checklist.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
 
;;; org-checklist.el --- org functions for checklist handling
;;
;; ©2008 James TD Smith
;;
;; Author: James TD Smith (@ ahktenzero (. mohorovi cc))
;; Version: 1.0
;; Keywords: org, checklists
;;
;; This program 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, or (at your option)
;; any later version.
;;
;; This program 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 this program; if not, write to the Free Software
;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
;;
;;; Commentary:
;; This file provides some functions for handing repeated tasks which involve
;; checking off a list of items. By setting the RESET_CHECK_BOXES property in an
;; item, when the TODO state is set to done all checkboxes under that item are
;; cleared. If the LIST_EXPORT_BASENAME property is set, a file will be created
;; using the value of that property plus a timestamp, containing all the items
;; in the list which are not checked. Additionally the user will be prompted to
;; print the list.
;;
;; I use this for to keep track of stores of various things (food stores,
;; components etc) which I check periodically and use the exported list of items
;; which are not present as a shopping list.
;;
;;; Usage:
;; (require 'org-checklist)
;;
;; Set the RESET_CHECK_BOXES and LIST_EXPORT_BASENAME properties in items as
;; needed.
;;
;;; Code:
(require 'org)

(defvar export-time-format "%Y%m%d%H%M"
  "format of timestamp appended to export file")
(defvar export-function 'org-export-as-ascii
  "function used to prepare the export file for printing")

(defun org-reset-checkbox-state-maybe ()
  "Reset all checkboxes in an entry if the `RESET_CHECK_BOXES' property is set"
  (interactive "*")
  (if (org-entry-get (point) "RESET_CHECK_BOXES")
      (save-restriction
	(save-excursion
	  (org-narrow-to-subtree)
	  (org-show-subtree)
	  (goto-char (point-min))
	  (let ((end (point-max)))
	    (while (< (point) end)
	      (when (org-at-item-checkbox-p)
		(replace-match "[ ]" t t))
	      (beginning-of-line 2))))
	(org-update-checkbox-count-maybe))))

(defun org-make-checklist-export ()
  "Produce a checklist containing all unchecked items from a list
of checkbox items"
  (interactive "*")
  (if (org-entry-get (point) "LIST_EXPORT_BASENAME")
      (let* ((export-file (concat (org-entry-get (point) "LIST_EXPORT_BASENAME")
				  "-" (format-time-string export-time-format)
				  ".org"))
	     exported-lines
	     title)
	(save-restriction
	  (save-excursion
	    (org-narrow-to-subtree)
	    (org-show-subtree)
	    (goto-char (point-min))
	    (if (looking-at org-complex-heading-regexp)
		(setq title (match-string 4)))
	    (goto-char (point-min))
	    (let ((end (point-max)))
	      (while (< (point) end)
		(when (and (org-at-item-checkbox-p)
			   (or (string= (match-string 0) "[ ]")
			       (string= (match-string 0) "[-]")))
		  (add-to-list 'exported-lines (thing-at-point 'line) t))
		(beginning-of-line 2)))
	    (set-buffer (get-buffer-create export-file))
	    (org-insert-heading)
	    (insert (or title export-file) "\n")
	    (dolist (entry exported-lines) (insert entry))
	    (org-update-checkbox-count-maybe)
	    (write-file export-file)
	    (if (y-or-n-p "Print list? ")
		((funcall export-function)
		 (a2ps-buffer))))))))

(defun org-checklist ()
  (if (member state org-done-keywords)
      (org-make-checklist-export))
  (org-reset-checkbox-state-maybe))

(add-hook 'org-after-todo-state-change-hook 'org-checklist)

(provide 'org-checklist)

;;; org-elisp-symbol.el ends here

debug log:

solving 09ff911 ...
found 09ff911 in https://list.orgmode.org/orgmode/20080920210911.19759.63738.stgit@nyarlathotep.internal.mohorovi.cc/ ||
	https://list.orgmode.org/orgmode/20080724234634.23478.57487.stgit@nyarlathotep.internal.mohorovi.cc/

applying [1/1] https://list.orgmode.org/orgmode/20080920210911.19759.63738.stgit@nyarlathotep.internal.mohorovi.cc/
diff --git a/contrib/lisp/org-checklist.el b/contrib/lisp/org-checklist.el
new file mode 100644
index 0000000..09ff911

Checking patch contrib/lisp/org-checklist.el...
Applied patch contrib/lisp/org-checklist.el cleanly.

skipping https://list.orgmode.org/orgmode/20080724234634.23478.57487.stgit@nyarlathotep.internal.mohorovi.cc/ for 09ff911
index at:
100644 09ff911e57b64fb9b8ae502b6f12246444a155f2	contrib/lisp/org-checklist.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://git.savannah.gnu.org/cgit/emacs/org-mode.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).