1 ;;; org-datetree.el --- Create date entries in a tree
3 ;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
27 ;; This file contains code to create entries in a tree where the top-level
28 ;; nodes represent years, the level 2 nodes represent the months, and the
29 ;; level 1 entries days.
35 (defvar org-datetree-base-level
1
36 "The level at which years should be placed in the date tree.
37 This is normally one, but if the buffer has an entry with a DATE_TREE
38 property (any value), the date tree will become a subtree under that entry,
39 so the base level will be properly adjusted.")
42 (defun org-datetree-find-date-create (date &optional keep-restriction
)
43 "Find or create an entry for DATE.
44 If KEEP-RESTRICTION is non-nil, do not widen the buffer.
45 When it is nil, the buffer will be widened to make sure an existing date
47 (let ((year (nth 2 date
))
50 (org-set-local 'org-datetree-base-level
1)
51 (or keep-restriction
(widen))
52 (goto-char (point-min))
54 (when (re-search-forward "^[ \t]*:DATE_TREE:[ \t]+\\S-" nil t
)
55 (org-back-to-heading t
)
56 (org-set-local 'org-datetree-base-level
57 (org-get-valid-level (funcall outline-level
) 1))
58 (org-narrow-to-subtree))
59 (goto-char (point-min))
60 (org-datetree-find-year-create year
)
61 (org-datetree-find-month-create year month
)
62 (org-datetree-find-day-create year month day
)
63 (goto-char (prog1 (point) (widen))))))
65 (defun org-datetree-find-year-create (year)
66 (let ((re "^\\*+[ \t]+\\([12][0-9][0-9][0-9]\\)$")
68 (goto-char (point-min))
69 (while (and (setq match
(re-search-forward re nil t
))
70 (goto-char (match-beginning 1))
71 (< (string-to-number (match-string 1)) year
)))
74 (goto-char (point-max))
76 (org-datetree-insert-line year
))
77 ((= (string-to-number (match-string 1)) year
)
78 (goto-char (point-at-bol)))
81 (org-datetree-insert-line year
)))))
83 (defun org-datetree-find-month-create (year month
)
84 (org-narrow-to-subtree)
85 (let ((re (format "^\\*+[ \t]+%d-\\([01][0-9]\\) \\w+$" year
))
87 (goto-char (point-min))
88 (while (and (setq match
(re-search-forward re nil t
))
89 (goto-char (match-beginning 1))
90 (< (string-to-number (match-string 1)) month
)))
93 (goto-char (point-max))
95 (org-datetree-insert-line year month
))
96 ((= (string-to-number (match-string 1)) month
)
97 (goto-char (point-at-bol)))
100 (org-datetree-insert-line year month
)))))
102 (defun org-datetree-find-day-create (year month day
)
103 (org-narrow-to-subtree)
104 (let ((re (format "^\\*+[ \t]+%d-%02d-\\([0123][0-9]\\) \\w+$" year month
))
106 (goto-char (point-min))
107 (while (and (setq match
(re-search-forward re nil t
))
108 (goto-char (match-beginning 1))
109 (< (string-to-number (match-string 1)) day
)))
112 (goto-char (point-max))
113 (or (bolp) (newline))
114 (org-datetree-insert-line year month day
))
115 ((= (string-to-number (match-string 1)) day
)
116 (goto-char (point-at-bol)))
118 (beginning-of-line 1)
119 (org-datetree-insert-line year month day
)))))
121 (defun org-datetree-insert-line (year &optional month day
)
123 (skip-chars-backward " \t\n")
124 (delete-region (point) pos
)
125 (insert "\n" (make-string org-datetree-base-level ?
*) " \n")
127 (if month
(org-do-demote))
128 (if day
(org-do-demote))
129 (insert (format "%d" year
))
131 (insert (format "-%02d" month
))
133 (insert (format "-%02d %s"
134 day
(format-time-string
135 "%A" (encode-time 0 0 0 day month year
))))
136 (insert (format " %s"
138 "%B" (encode-time 0 0 0 1 month year
))))))
139 (beginning-of-line 1)))
141 (defun org-datetree-file-entry-under (txt date
)
142 "Insert a node TXT into the date tree under DATE."
143 (org-datetree-find-date-create date
)
144 (let ((level (org-get-valid-level (funcall outline-level
) 1)))
145 (org-end-of-subtree t t
)
146 (org-back-over-empty-lines)
147 (org-paste-subtree level txt
)))
149 (defun org-datetree-cleanup ()
150 "Make sure all entries in the current tree are under the correct date.
151 It may be useful to restrict the buffer to the applicable portion
152 before running this command, even though the command tries to be smart."
154 (goto-char (point-min))
155 (let ((dre (concat "\\<" org-deadline-string
"\\>[ \t]*\\'"))
156 (sre (concat "\\<" org-scheduled-string
"\\>[ \t]*\\'"))
157 dct ts tmp date year month day pos hdl-pos
)
158 (while (re-search-forward org-ts-regexp nil t
)
160 (setq ts
(match-string 0))
161 (setq tmp
(buffer-substring
162 (max (point-at-bol) (- (match-beginning 0)
163 org-ds-keyword-length
))
164 (match-beginning 0)))
165 (if (or (string-match "-\\'" tmp
)
166 (string-match dre tmp
)
167 (string-match sre tmp
))
169 (setq dct
(decode-time (org-time-string-to-time (match-string 0)))
170 date
(list (nth 4 dct
) (nth 3 dct
) (nth 5 dct
))
175 (org-back-to-heading t
)
176 (setq hdl-pos
(point))
177 (unless (org-up-heading-safe)
178 ;; No parent, we are not in a date tree
181 (unless (looking-at "\\*+[ \t]+[0-9]+-[0-1][0-9]-[0-3][0-9]")
182 ;; Parent looks wrong, we are not in a date tree
185 (when (looking-at (format "\\*+[ \t]+%d-%02d-%02d" year month day
))
186 ;; At correct date already, do nothing
187 (progn (goto-char pos
) (throw 'next nil
)))
188 ;; OK, we need to refile this entry
193 (org-datetree-file-entry-under (current-kill 0) date
)))))))
195 (provide 'org-datetree
)
197 ;;; org-datetree.el ends here