org-archive.el 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. ;;; org-archive.el --- Archiving for Org-mode
  2. ;; Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 6.00pre-5
  7. ;;
  8. ;; This file is part of GNU Emacs.
  9. ;;
  10. ;; GNU Emacs is free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 3, or (at your option)
  13. ;; any later version.
  14. ;; GNU Emacs is distributed in the hope that it will be useful,
  15. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. ;; GNU General Public License for more details.
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs; see the file COPYING. If not, write to the
  20. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21. ;; Boston, MA 02110-1301, USA.
  22. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  23. ;;
  24. ;;; Commentary:
  25. ;; This file contains the face definitons for Org.
  26. ;;; Code:
  27. (require 'org)
  28. (defcustom org-archive-location "%s_archive::"
  29. "The location where subtrees should be archived.
  30. Otherwise, the value of this variable is a string, consisting of two
  31. parts, separated by a double-colon.
  32. The first part is a file name - when omitted, archiving happens in the same
  33. file. %s will be replaced by the current file name (without directory part).
  34. Archiving to a different file is useful to keep archived entries from
  35. contributing to the Org-mode Agenda.
  36. The part after the double colon is a headline. The archived entries will be
  37. filed under that headline. When omitted, the subtrees are simply filed away
  38. at the end of the file, as top-level entries.
  39. Here are a few examples:
  40. \"%s_archive::\"
  41. If the current file is Projects.org, archive in file
  42. Projects.org_archive, as top-level trees. This is the default.
  43. \"::* Archived Tasks\"
  44. Archive in the current file, under the top-level headline
  45. \"* Archived Tasks\".
  46. \"~/org/archive.org::\"
  47. Archive in file ~/org/archive.org (absolute path), as top-level trees.
  48. \"basement::** Finished Tasks\"
  49. Archive in file ./basement (relative path), as level 3 trees
  50. below the level 2 heading \"** Finished Tasks\".
  51. You may set this option on a per-file basis by adding to the buffer a
  52. line like
  53. #+ARCHIVE: basement::** Finished Tasks
  54. You may also define it locally for a subtree by setting an ARCHIVE property
  55. in the entry. If such a property is found in an entry, or anywhere up
  56. the hierarchy, it will be used."
  57. :group 'org-archive
  58. :type 'string)
  59. (defcustom org-archive-sibling-heading "Archive"
  60. "Name of the local archive sibling that is used to archive entries locally.
  61. Locally means: in the tree, under a sibling.
  62. See `org-archive-to-archive-sibling' for more information."
  63. :group 'org-archive
  64. :type 'string)
  65. (defcustom org-archive-mark-done t
  66. "Non-nil means, mark entries as DONE when they are moved to the archive file.
  67. This can be a string to set the keyword to use. When t, Org-mode will
  68. use the first keyword in its list that means done."
  69. :group 'org-archive
  70. :type '(choice
  71. (const :tag "No" nil)
  72. (const :tag "Yes" t)
  73. (string :tag "Use this keyword")))
  74. (defcustom org-archive-stamp-time t
  75. "Non-nil means, add a time stamp to entries moved to an archive file.
  76. This variable is obsolete and has no effect anymore, instead add ot remove
  77. `time' from the variablle `org-archive-save-context-info'."
  78. :group 'org-archive
  79. :type 'boolean)
  80. (defcustom org-archive-save-context-info '(time file olpath category todo itags)
  81. "Parts of context info that should be stored as properties when archiving.
  82. When a subtree is moved to an archive file, it looses information given by
  83. context, like inherited tags, the category, and possibly also the TODO
  84. state (depending on the variable `org-archive-mark-done').
  85. This variable can be a list of any of the following symbols:
  86. time The time of archiving.
  87. file The file where the entry originates.
  88. itags The local tags, in the headline of the subtree.
  89. ltags The tags the subtree inherits from further up the hierarchy.
  90. todo The pre-archive TODO state.
  91. category The category, taken from file name or #+CATEGORY lines.
  92. olpath The outline path to the item. These are all headlines above
  93. the current item, separated by /, like a file path.
  94. For each symbol present in the list, a property will be created in
  95. the archived entry, with a prefix \"PRE_ARCHIVE_\", to remember this
  96. information."
  97. :group 'org-archive
  98. :type '(set :greedy t
  99. (const :tag "Time" time)
  100. (const :tag "File" file)
  101. (const :tag "Category" category)
  102. (const :tag "TODO state" todo)
  103. (const :tag "TODO state" priority)
  104. (const :tag "Inherited tags" itags)
  105. (const :tag "Outline path" olpath)
  106. (const :tag "Local tags" ltags)))
  107. (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
  108. (defun org-archive-subtree (&optional find-done)
  109. "Move the current subtree to the archive.
  110. The archive can be a certain top-level heading in the current file, or in
  111. a different file. The tree will be moved to that location, the subtree
  112. heading be marked DONE, and the current time will be added.
  113. When called with prefix argument FIND-DONE, find whole trees without any
  114. open TODO items and archive them (after getting confirmation from the user).
  115. If the cursor is not at a headline when this comand is called, try all level
  116. 1 trees. If the cursor is on a headline, only try the direct children of
  117. this heading."
  118. (interactive "P")
  119. (if find-done
  120. (org-archive-all-done)
  121. ;; Save all relevant TODO keyword-relatex variables
  122. (let ((tr-org-todo-line-regexp org-todo-line-regexp) ; keep despite compiler
  123. (tr-org-todo-keywords-1 org-todo-keywords-1)
  124. (tr-org-todo-kwd-alist org-todo-kwd-alist)
  125. (tr-org-done-keywords org-done-keywords)
  126. (tr-org-todo-regexp org-todo-regexp)
  127. (tr-org-todo-line-regexp org-todo-line-regexp)
  128. (tr-org-odd-levels-only org-odd-levels-only)
  129. (this-buffer (current-buffer))
  130. (org-archive-location org-archive-location)
  131. (re "^#\\+ARCHIVE:[ \t]+\\(\\S-.*\\S-\\)[ \t]*$")
  132. ;; start of variables that will be used for saving context
  133. ;; The compiler complains about them - keep them anyway!
  134. (file (abbreviate-file-name (buffer-file-name)))
  135. (olpath (mapconcat 'identity (org-get-outline-path) "/"))
  136. (time (format-time-string
  137. (substring (cdr org-time-stamp-formats) 1 -1)
  138. (current-time)))
  139. afile heading buffer level newfile-p
  140. category todo priority
  141. ;; start of variables that will be used for savind context
  142. ltags itags prop)
  143. ;; Try to find a local archive location
  144. (save-excursion
  145. (save-restriction
  146. (widen)
  147. (setq prop (org-entry-get nil "ARCHIVE" 'inherit))
  148. (if (and prop (string-match "\\S-" prop))
  149. (setq org-archive-location prop)
  150. (if (or (re-search-backward re nil t)
  151. (re-search-forward re nil t))
  152. (setq org-archive-location (match-string 1))))))
  153. (if (string-match "\\(.*\\)::\\(.*\\)" org-archive-location)
  154. (progn
  155. (setq afile (format (match-string 1 org-archive-location)
  156. (file-name-nondirectory buffer-file-name))
  157. heading (match-string 2 org-archive-location)))
  158. (error "Invalid `org-archive-location'"))
  159. (if (> (length afile) 0)
  160. (setq newfile-p (not (file-exists-p afile))
  161. buffer (find-file-noselect afile))
  162. (setq buffer (current-buffer)))
  163. (unless buffer
  164. (error "Cannot access file \"%s\"" afile))
  165. (if (and (> (length heading) 0)
  166. (string-match "^\\*+" heading))
  167. (setq level (match-end 0))
  168. (setq heading nil level 0))
  169. (save-excursion
  170. (org-back-to-heading t)
  171. ;; Get context information that will be lost by moving the tree
  172. (org-refresh-category-properties)
  173. (setq category (org-get-category)
  174. todo (and (looking-at org-todo-line-regexp)
  175. (match-string 2))
  176. priority (org-get-priority
  177. (if (match-end 3) (match-string 3) ""))
  178. ltags (org-get-tags)
  179. itags (org-delete-all ltags (org-get-tags-at)))
  180. (setq ltags (mapconcat 'identity ltags " ")
  181. itags (mapconcat 'identity itags " "))
  182. ;; We first only copy, in case something goes wrong
  183. ;; we need to protect this-command, to avoid kill-region sets it,
  184. ;; which would lead to duplication of subtrees
  185. (let (this-command) (org-copy-subtree))
  186. (set-buffer buffer)
  187. ;; Enforce org-mode for the archive buffer
  188. (if (not (org-mode-p))
  189. ;; Force the mode for future visits.
  190. (let ((org-insert-mode-line-in-empty-file t)
  191. (org-inhibit-startup t))
  192. (call-interactively 'org-mode)))
  193. (when newfile-p
  194. (goto-char (point-max))
  195. (insert (format "\nArchived entries from file %s\n\n"
  196. (buffer-file-name this-buffer))))
  197. ;; Force the TODO keywords of the original buffer
  198. (let ((org-todo-line-regexp tr-org-todo-line-regexp)
  199. (org-todo-keywords-1 tr-org-todo-keywords-1)
  200. (org-todo-kwd-alist tr-org-todo-kwd-alist)
  201. (org-done-keywords tr-org-done-keywords)
  202. (org-todo-regexp tr-org-todo-regexp)
  203. (org-todo-line-regexp tr-org-todo-line-regexp)
  204. (org-odd-levels-only
  205. (if (local-variable-p 'org-odd-levels-only (current-buffer))
  206. org-odd-levels-only
  207. tr-org-odd-levels-only)))
  208. (goto-char (point-min))
  209. (show-all)
  210. (if heading
  211. (progn
  212. (if (re-search-forward
  213. (concat "^" (regexp-quote heading)
  214. (org-re "[ \t]*\\(:[[:alnum:]_@:]+:\\)?[ \t]*\\($\\|\r\\)"))
  215. nil t)
  216. (goto-char (match-end 0))
  217. ;; Heading not found, just insert it at the end
  218. (goto-char (point-max))
  219. (or (bolp) (insert "\n"))
  220. (insert "\n" heading "\n")
  221. (end-of-line 0))
  222. ;; Make the subtree visible
  223. (show-subtree)
  224. (org-end-of-subtree t)
  225. (skip-chars-backward " \t\r\n")
  226. (and (looking-at "[ \t\r\n]*")
  227. (replace-match "\n\n")))
  228. ;; No specific heading, just go to end of file.
  229. (goto-char (point-max)) (insert "\n"))
  230. ;; Paste
  231. (org-paste-subtree (org-get-valid-level level 1))
  232. ;; Mark the entry as done
  233. (when (and org-archive-mark-done
  234. (looking-at org-todo-line-regexp)
  235. (or (not (match-end 2))
  236. (not (member (match-string 2) org-done-keywords))))
  237. (let (org-log-done org-todo-log-states)
  238. (org-todo
  239. (car (or (member org-archive-mark-done org-done-keywords)
  240. org-done-keywords)))))
  241. ;; Add the context info
  242. (when org-archive-save-context-info
  243. (let ((l org-archive-save-context-info) e n v)
  244. (while (setq e (pop l))
  245. (when (and (setq v (symbol-value e))
  246. (stringp v) (string-match "\\S-" v))
  247. (setq n (concat "ARCHIVE_" (upcase (symbol-name e))))
  248. (org-entry-put (point) n v)))))
  249. ;; Save and kill the buffer, if it is not the same buffer.
  250. (if (not (eq this-buffer buffer))
  251. (progn (save-buffer) (kill-buffer buffer)))))
  252. ;; Here we are back in the original buffer. Everything seems to have
  253. ;; worked. So now cut the tree and finish up.
  254. (let (this-command) (org-cut-subtree))
  255. (if (and (not (eobp)) (looking-at "[ \t]*$")) (kill-line))
  256. (message "Subtree archived %s"
  257. (if (eq this-buffer buffer)
  258. (concat "under heading: " heading)
  259. (concat "in file: " (abbreviate-file-name afile)))))))
  260. (defun org-archive-to-archive-sibling ()
  261. "Archive the current heading by moving it under the archive sibling.
  262. The archive sibling is a sibling of the heading with the heading name
  263. `org-archive-sibling-heading' and an `org-archive-tag' tag. If this
  264. sibling does not exist, it will be created at the end of the subtree."
  265. (interactive)
  266. (save-restriction
  267. (widen)
  268. (let (b e pos leader level)
  269. (org-back-to-heading t)
  270. (looking-at outline-regexp)
  271. (setq leader (match-string 0)
  272. level (funcall outline-level))
  273. (setq pos (point))
  274. (condition-case nil
  275. (outline-up-heading 1 t)
  276. (error (goto-char (point-min))))
  277. (setq b (point))
  278. (condition-case nil
  279. (org-end-of-subtree t t)
  280. (error (goto-char (point-max))))
  281. (setq e (point))
  282. (goto-char b)
  283. (unless (re-search-forward
  284. (concat "^" (regexp-quote leader)
  285. "[ \t]*"
  286. org-archive-sibling-heading
  287. "[ \t]*:"
  288. org-archive-tag ":") e t)
  289. (goto-char e)
  290. (or (bolp) (newline))
  291. (insert leader org-archive-sibling-heading "\n")
  292. (beginning-of-line 0)
  293. (org-toggle-tag org-archive-tag 'on))
  294. (beginning-of-line 1)
  295. (org-end-of-subtree t t)
  296. (save-excursion
  297. (goto-char pos)
  298. (org-cut-subtree))
  299. (org-paste-subtree (org-get-valid-level level 1))
  300. (org-set-property
  301. "ARCHIVE_TIME"
  302. (format-time-string
  303. (substring (cdr org-time-stamp-formats) 1 -1)
  304. (current-time)))
  305. (outline-up-heading 1 t)
  306. (hide-subtree)
  307. (goto-char pos))))
  308. (defun org-archive-all-done (&optional tag)
  309. "Archive sublevels of the current tree without open TODO items.
  310. If the cursor is not on a headline, try all level 1 trees. If
  311. it is on a headline, try all direct children.
  312. When TAG is non-nil, don't move trees, but mark them with the ARCHIVE tag."
  313. (let ((re (concat "^\\*+ +" org-not-done-regexp)) re1
  314. (rea (concat ".*:" org-archive-tag ":"))
  315. (begm (make-marker))
  316. (endm (make-marker))
  317. (question (if tag "Set ARCHIVE tag (no open TODO items)? "
  318. "Move subtree to archive (no open TODO items)? "))
  319. beg end (cntarch 0))
  320. (if (org-on-heading-p)
  321. (progn
  322. (setq re1 (concat "^" (regexp-quote
  323. (make-string
  324. (1+ (- (match-end 0) (match-beginning 0) 1))
  325. ?*))
  326. " "))
  327. (move-marker begm (point))
  328. (move-marker endm (org-end-of-subtree t)))
  329. (setq re1 "^* ")
  330. (move-marker begm (point-min))
  331. (move-marker endm (point-max)))
  332. (save-excursion
  333. (goto-char begm)
  334. (while (re-search-forward re1 endm t)
  335. (setq beg (match-beginning 0)
  336. end (save-excursion (org-end-of-subtree t) (point)))
  337. (goto-char beg)
  338. (if (re-search-forward re end t)
  339. (goto-char end)
  340. (goto-char beg)
  341. (if (and (or (not tag) (not (looking-at rea)))
  342. (y-or-n-p question))
  343. (progn
  344. (if tag
  345. (org-toggle-tag org-archive-tag 'on)
  346. (org-archive-subtree))
  347. (setq cntarch (1+ cntarch)))
  348. (goto-char end)))))
  349. (message "%d trees archived" cntarch)))
  350. (defun org-toggle-archive-tag (&optional find-done)
  351. "Toggle the archive tag for the current headline.
  352. With prefix ARG, check all children of current headline and offer tagging
  353. the children that do not contain any open TODO items."
  354. (interactive "P")
  355. (if find-done
  356. (org-archive-all-done 'tag)
  357. (let (set)
  358. (save-excursion
  359. (org-back-to-heading t)
  360. (setq set (org-toggle-tag org-archive-tag))
  361. (when set (hide-subtree)))
  362. (and set (beginning-of-line 1))
  363. (message "Subtree %s" (if set "archived" "unarchived")))))
  364. (provide 'org-archive)
  365. ;;; org-archive.el ends here