org-archive.el 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609
  1. ;;; org-archive.el --- Archiving for Org-mode
  2. ;; Copyright (C) 2004-2014 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. ;;
  7. ;; This file is part of GNU Emacs.
  8. ;;
  9. ;; GNU Emacs is free software: you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation, either version 3 of the License, or
  12. ;; (at your option) any later version.
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;;
  21. ;;; Commentary:
  22. ;; This file contains the face definitions for Org.
  23. ;;; Code:
  24. (require 'org)
  25. (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
  26. (declare-function org-datetree-find-date-create "org-datetree" (date &optional keep-restriction))
  27. (defcustom org-archive-default-command 'org-archive-subtree
  28. "The default archiving command."
  29. :group 'org-archive
  30. :type '(choice
  31. (const org-archive-subtree)
  32. (const org-archive-to-archive-sibling)
  33. (const org-archive-set-tag)))
  34. (defcustom org-archive-reversed-order nil
  35. "Non-nil means make the tree first child under the archive heading, not last."
  36. :group 'org-archive
  37. :version "24.1"
  38. :type 'boolean)
  39. (defcustom org-archive-sibling-heading "Archive"
  40. "Name of the local archive sibling that is used to archive entries locally.
  41. Locally means: in the tree, under a sibling.
  42. See `org-archive-to-archive-sibling' for more information."
  43. :group 'org-archive
  44. :type 'string)
  45. (defcustom org-archive-mark-done nil
  46. "Non-nil means mark entries as DONE when they are moved to the archive file.
  47. This can be a string to set the keyword to use. When t, Org-mode will
  48. use the first keyword in its list that means done."
  49. :group 'org-archive
  50. :type '(choice
  51. (const :tag "No" nil)
  52. (const :tag "Yes" t)
  53. (string :tag "Use this keyword")))
  54. (defcustom org-archive-stamp-time t
  55. "Non-nil means add a time stamp to entries moved to an archive file.
  56. This variable is obsolete and has no effect anymore, instead add or remove
  57. `time' from the variable `org-archive-save-context-info'."
  58. :group 'org-archive
  59. :type 'boolean)
  60. (defcustom org-archive-file-header-format "\nArchived entries from file %s\n\n"
  61. "The header format string for newly created archive files.
  62. When nil, no header will be inserted.
  63. When a string, a %s formatter will be replaced by the file name."
  64. :group 'org-archive
  65. :version "24.4"
  66. :package-version '(Org . "8.0")
  67. :type 'string)
  68. (defcustom org-archive-subtree-add-inherited-tags 'infile
  69. "Non-nil means append inherited tags when archiving a subtree."
  70. :group 'org-archive
  71. :version "24.1"
  72. :type '(choice
  73. (const :tag "Never" nil)
  74. (const :tag "When archiving a subtree to the same file" infile)
  75. (const :tag "Always" t)))
  76. (defcustom org-archive-save-context-info '(time file olpath category todo itags)
  77. "Parts of context info that should be stored as properties when archiving.
  78. When a subtree is moved to an archive file, it loses information given by
  79. context, like inherited tags, the category, and possibly also the TODO
  80. state (depending on the variable `org-archive-mark-done').
  81. This variable can be a list of any of the following symbols:
  82. time The time of archiving.
  83. file The file where the entry originates.
  84. ltags The local tags, in the headline of the subtree.
  85. itags The tags the subtree inherits from further up the hierarchy.
  86. todo The pre-archive TODO state.
  87. category The category, taken from file name or #+CATEGORY lines.
  88. olpath The outline path to the item. These are all headlines above
  89. the current item, separated by /, like a file path.
  90. For each symbol present in the list, a property will be created in
  91. the archived entry, with a prefix \"ARCHIVE_\", to remember this
  92. information."
  93. :group 'org-archive
  94. :type '(set :greedy t
  95. (const :tag "Time" time)
  96. (const :tag "File" file)
  97. (const :tag "Category" category)
  98. (const :tag "TODO state" todo)
  99. (const :tag "Priority" priority)
  100. (const :tag "Inherited tags" itags)
  101. (const :tag "Outline path" olpath)
  102. (const :tag "Local tags" ltags)))
  103. (defvar org-archive-hook nil
  104. "Hook run after successfully archiving a subtree.
  105. Hook functions are called with point on the subtree in the
  106. original file. At this stage, the subtree has been added to the
  107. archive location, but not yet deleted from the original file.")
  108. (defun org-get-local-archive-location ()
  109. "Get the archive location applicable at point."
  110. (let ((re "^[ \t]*#\\+ARCHIVE:[ \t]+\\(\\S-.*\\S-\\)[ \t]*$")
  111. prop)
  112. (save-excursion
  113. (save-restriction
  114. (widen)
  115. (setq prop (org-entry-get nil "ARCHIVE" 'inherit))
  116. (cond
  117. ((and prop (string-match "\\S-" prop))
  118. prop)
  119. ((or (re-search-backward re nil t)
  120. (re-search-forward re nil t))
  121. (match-string 1))
  122. (t org-archive-location))))))
  123. ;;;###autoload
  124. (defun org-add-archive-files (files)
  125. "Splice the archive files into the list of files.
  126. This implies visiting all these files and finding out what the
  127. archive file is."
  128. (org-uniquify
  129. (apply
  130. 'append
  131. (mapcar
  132. (lambda (f)
  133. (if (not (file-exists-p f))
  134. nil
  135. (with-current-buffer (org-get-agenda-file-buffer f)
  136. (cons f (org-all-archive-files)))))
  137. files))))
  138. (defun org-all-archive-files ()
  139. "Get a list of all archive files used in the current buffer."
  140. (let (file files)
  141. (save-excursion
  142. (save-restriction
  143. (goto-char (point-min))
  144. (while (re-search-forward
  145. "^[ \t]*\\(#\\+\\|:\\)ARCHIVE:[ \t]+\\(.*\\)"
  146. nil t)
  147. (setq file (org-extract-archive-file
  148. (org-match-string-no-properties 2)))
  149. (and file (> (length file) 0) (file-exists-p file)
  150. (add-to-list 'files file)))))
  151. (setq files (nreverse files))
  152. (setq file (org-extract-archive-file))
  153. (and file (> (length file) 0) (file-exists-p file)
  154. (add-to-list 'files file))
  155. files))
  156. (defun org-extract-archive-file (&optional location)
  157. "Extract and expand the file name from archive LOCATION.
  158. if LOCATION is not given, the value of `org-archive-location' is used."
  159. (setq location (or location org-archive-location))
  160. (if (string-match "\\(.*\\)::\\(.*\\)" location)
  161. (if (= (match-beginning 1) (match-end 1))
  162. (buffer-file-name (buffer-base-buffer))
  163. (expand-file-name
  164. (format (match-string 1 location)
  165. (file-name-nondirectory
  166. (buffer-file-name (buffer-base-buffer))))))))
  167. (defun org-extract-archive-heading (&optional location)
  168. "Extract the heading from archive LOCATION.
  169. if LOCATION is not given, the value of `org-archive-location' is used."
  170. (setq location (or location org-archive-location))
  171. (if (string-match "\\(.*\\)::\\(.*\\)" location)
  172. (format (match-string 2 location)
  173. (file-name-nondirectory
  174. (buffer-file-name (buffer-base-buffer))))))
  175. ;;;###autoload
  176. (defun org-archive-subtree (&optional find-done)
  177. "Move the current subtree to the archive.
  178. The archive can be a certain top-level heading in the current file, or in
  179. a different file. The tree will be moved to that location, the subtree
  180. heading be marked DONE, and the current time will be added.
  181. When called with a single prefix argument FIND-DONE, find whole trees without any
  182. open TODO items and archive them (after getting confirmation from the user).
  183. When called with a double prefix argument, find whole trees with timestamps before
  184. today and archive them (after getting confirmation from the user).
  185. If the cursor is not at a headline when these commands are called, try all level
  186. 1 trees. If the cursor is on a headline, only try the direct children of
  187. this heading."
  188. (interactive "P")
  189. (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
  190. (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
  191. 'region-start-level 'region))
  192. org-loop-over-headlines-in-active-region)
  193. (org-map-entries
  194. `(progn (setq org-map-continue-from (progn (org-back-to-heading) (point)))
  195. (org-archive-subtree ,find-done))
  196. org-loop-over-headlines-in-active-region
  197. cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
  198. (cond
  199. ((equal find-done '(4)) (org-archive-all-done))
  200. ((equal find-done '(16)) (org-archive-all-old))
  201. (t
  202. ;; Save all relevant TODO keyword-relatex variables
  203. (let ((tr-org-todo-line-regexp org-todo-line-regexp) ; keep despite compiler
  204. (tr-org-todo-keywords-1 org-todo-keywords-1)
  205. (tr-org-todo-kwd-alist org-todo-kwd-alist)
  206. (tr-org-done-keywords org-done-keywords)
  207. (tr-org-todo-regexp org-todo-regexp)
  208. (tr-org-todo-line-regexp org-todo-line-regexp)
  209. (tr-org-odd-levels-only org-odd-levels-only)
  210. (this-buffer (current-buffer))
  211. ;; start of variables that will be used for saving context
  212. ;; The compiler complains about them - keep them anyway!
  213. (file (abbreviate-file-name
  214. (or (buffer-file-name (buffer-base-buffer))
  215. (error "No file associated to buffer"))))
  216. (olpath (mapconcat 'identity (org-get-outline-path) "/"))
  217. (time (format-time-string
  218. (substring (cdr org-time-stamp-formats) 1 -1)
  219. (current-time)))
  220. category todo priority ltags itags atags
  221. ;; end of variables that will be used for saving context
  222. location afile heading buffer level newfile-p infile-p visiting
  223. datetree-date datetree-subheading-p)
  224. ;; Find the local archive location
  225. (setq location (org-get-local-archive-location)
  226. afile (org-extract-archive-file location)
  227. heading (org-extract-archive-heading location)
  228. infile-p (equal file (abbreviate-file-name (or afile ""))))
  229. (unless afile
  230. (error "Invalid `org-archive-location'"))
  231. (if (> (length afile) 0)
  232. (setq newfile-p (not (file-exists-p afile))
  233. visiting (find-buffer-visiting afile)
  234. buffer (or visiting (find-file-noselect afile)))
  235. (setq buffer (current-buffer)))
  236. (unless buffer
  237. (error "Cannot access file \"%s\"" afile))
  238. (when (string-match "\\`datetree/" heading)
  239. ;; Replace with ***, to represent the 3 levels of headings the
  240. ;; datetree has.
  241. (setq heading (replace-regexp-in-string "\\`datetree/" "***" heading))
  242. (setq datetree-subheading-p (> (length heading) 3))
  243. (setq datetree-date (org-date-to-gregorian
  244. (or (org-entry-get nil "CLOSED" t) time))))
  245. (if (and (> (length heading) 0)
  246. (string-match "^\\*+" heading))
  247. (setq level (match-end 0))
  248. (setq heading nil level 0))
  249. (save-excursion
  250. (org-back-to-heading t)
  251. ;; Get context information that will be lost by moving the tree
  252. (setq category (org-get-category nil 'force-refresh)
  253. todo (and (looking-at org-todo-line-regexp)
  254. (match-string 2))
  255. priority (org-get-priority
  256. (if (match-end 3) (match-string 3) ""))
  257. ltags (org-get-tags)
  258. itags (org-delete-all ltags (org-get-tags-at))
  259. atags (org-get-tags-at))
  260. (setq ltags (mapconcat 'identity ltags " ")
  261. itags (mapconcat 'identity itags " "))
  262. ;; We first only copy, in case something goes wrong
  263. ;; we need to protect `this-command', to avoid kill-region sets it,
  264. ;; which would lead to duplication of subtrees
  265. (let (this-command) (org-copy-subtree 1 nil t))
  266. (set-buffer buffer)
  267. ;; Enforce org-mode for the archive buffer
  268. (if (not (derived-mode-p 'org-mode))
  269. ;; Force the mode for future visits.
  270. (let ((org-insert-mode-line-in-empty-file t)
  271. (org-inhibit-startup t))
  272. (call-interactively 'org-mode)))
  273. (when (and newfile-p org-archive-file-header-format)
  274. (goto-char (point-max))
  275. (insert (format org-archive-file-header-format
  276. (buffer-file-name this-buffer))))
  277. (when datetree-date
  278. (require 'org-datetree)
  279. (org-datetree-find-date-create datetree-date)
  280. (org-narrow-to-subtree))
  281. ;; Force the TODO keywords of the original buffer
  282. (let ((org-todo-line-regexp tr-org-todo-line-regexp)
  283. (org-todo-keywords-1 tr-org-todo-keywords-1)
  284. (org-todo-kwd-alist tr-org-todo-kwd-alist)
  285. (org-done-keywords tr-org-done-keywords)
  286. (org-todo-regexp tr-org-todo-regexp)
  287. (org-todo-line-regexp tr-org-todo-line-regexp)
  288. (org-odd-levels-only
  289. (if (local-variable-p 'org-odd-levels-only (current-buffer))
  290. org-odd-levels-only
  291. tr-org-odd-levels-only)))
  292. (goto-char (point-min))
  293. (show-all)
  294. (if (and heading (not (and datetree-date (not datetree-subheading-p))))
  295. (progn
  296. (if (re-search-forward
  297. (concat "^" (regexp-quote heading)
  298. (org-re "[ \t]*\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\($\\|\r\\)"))
  299. nil t)
  300. (goto-char (match-end 0))
  301. ;; Heading not found, just insert it at the end
  302. (goto-char (point-max))
  303. (or (bolp) (insert "\n"))
  304. ;; datetrees don't need too much spacing
  305. (insert (if datetree-date "" "\n") heading "\n")
  306. (end-of-line 0))
  307. ;; Make the subtree visible
  308. (show-subtree)
  309. (if org-archive-reversed-order
  310. (progn
  311. (org-back-to-heading t)
  312. (outline-next-heading))
  313. (org-end-of-subtree t))
  314. (skip-chars-backward " \t\r\n")
  315. (and (looking-at "[ \t\r\n]*")
  316. ;; datetree archives don't need so much spacing.
  317. (replace-match (if datetree-date "\n" "\n\n"))))
  318. ;; No specific heading, just go to end of file.
  319. (goto-char (point-max)) (unless datetree-date (insert "\n")))
  320. ;; Paste
  321. (org-paste-subtree (org-get-valid-level level (and heading 1)))
  322. ;; Shall we append inherited tags?
  323. (and itags
  324. (or (and (eq org-archive-subtree-add-inherited-tags 'infile)
  325. infile-p)
  326. (eq org-archive-subtree-add-inherited-tags t))
  327. (org-set-tags-to atags))
  328. ;; Mark the entry as done
  329. (when (and org-archive-mark-done
  330. (looking-at org-todo-line-regexp)
  331. (or (not (match-end 2))
  332. (not (member (match-string 2) org-done-keywords))))
  333. (let (org-log-done org-todo-log-states)
  334. (org-todo
  335. (car (or (member org-archive-mark-done org-done-keywords)
  336. org-done-keywords)))))
  337. ;; Add the context info
  338. (when org-archive-save-context-info
  339. (let ((l org-archive-save-context-info) e n v)
  340. (while (setq e (pop l))
  341. (when (and (setq v (symbol-value e))
  342. (stringp v) (string-match "\\S-" v))
  343. (setq n (concat "ARCHIVE_" (upcase (symbol-name e))))
  344. (org-entry-put (point) n v)))))
  345. (widen)
  346. ;; Save and kill the buffer, if it is not the same buffer.
  347. (when (not (eq this-buffer buffer))
  348. (save-buffer))))
  349. ;; Here we are back in the original buffer. Everything seems
  350. ;; to have worked. So now run hooks, cut the tree and finish
  351. ;; up.
  352. (run-hooks 'org-archive-hook)
  353. (let (this-command) (org-cut-subtree))
  354. (when (featurep 'org-inlinetask)
  355. (org-inlinetask-remove-END-maybe))
  356. (setq org-markers-to-move nil)
  357. (message "Subtree archived %s"
  358. (if (eq this-buffer buffer)
  359. (concat "under heading: " heading)
  360. (concat "in file: " (abbreviate-file-name afile)))))))
  361. (org-reveal)
  362. (if (looking-at "^[ \t]*$")
  363. (outline-next-visible-heading 1))))
  364. ;;;###autoload
  365. (defun org-archive-to-archive-sibling ()
  366. "Archive the current heading by moving it under the archive sibling.
  367. The archive sibling is a sibling of the heading with the heading name
  368. `org-archive-sibling-heading' and an `org-archive-tag' tag. If this
  369. sibling does not exist, it will be created at the end of the subtree."
  370. (interactive)
  371. (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
  372. (let ((cl (when (eq org-loop-over-headlines-in-active-region 'start-level)
  373. 'region-start-level 'region))
  374. org-loop-over-headlines-in-active-region)
  375. (org-map-entries
  376. '(progn (setq org-map-continue-from
  377. (progn (org-back-to-heading)
  378. (if (looking-at (concat "^.*:" org-archive-tag ":.*$"))
  379. (org-end-of-subtree t)
  380. (point))))
  381. (when (org-at-heading-p)
  382. (org-archive-to-archive-sibling)))
  383. org-loop-over-headlines-in-active-region
  384. cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
  385. (save-restriction
  386. (widen)
  387. (let (b e pos leader level)
  388. (org-back-to-heading t)
  389. (looking-at org-outline-regexp)
  390. (setq leader (match-string 0)
  391. level (funcall outline-level))
  392. (setq pos (point))
  393. (condition-case nil
  394. (outline-up-heading 1 t)
  395. (error (setq e (point-max)) (goto-char (point-min))))
  396. (setq b (point))
  397. (unless e
  398. (condition-case nil
  399. (org-end-of-subtree t t)
  400. (error (goto-char (point-max))))
  401. (setq e (point)))
  402. (goto-char b)
  403. (unless (re-search-forward
  404. (concat "^" (regexp-quote leader)
  405. "[ \t]*"
  406. org-archive-sibling-heading
  407. "[ \t]*:"
  408. org-archive-tag ":") e t)
  409. (goto-char e)
  410. (or (bolp) (newline))
  411. (insert leader org-archive-sibling-heading "\n")
  412. (beginning-of-line 0)
  413. (org-toggle-tag org-archive-tag 'on))
  414. (beginning-of-line 1)
  415. (if org-archive-reversed-order
  416. (outline-next-heading)
  417. (org-end-of-subtree t t))
  418. (save-excursion
  419. (goto-char pos)
  420. (let ((this-command this-command)) (org-cut-subtree)))
  421. (org-paste-subtree (org-get-valid-level level 1))
  422. (org-set-property
  423. "ARCHIVE_TIME"
  424. (format-time-string
  425. (substring (cdr org-time-stamp-formats) 1 -1)
  426. (current-time)))
  427. (outline-up-heading 1 t)
  428. (hide-subtree)
  429. (org-cycle-show-empty-lines 'folded)
  430. (goto-char pos)))
  431. (org-reveal)
  432. (if (looking-at "^[ \t]*$")
  433. (outline-next-visible-heading 1))))
  434. (defun org-archive-all-done (&optional tag)
  435. "Archive sublevels of the current tree without open TODO items.
  436. If the cursor is not on a headline, try all level 1 trees. If
  437. it is on a headline, try all direct children.
  438. When TAG is non-nil, don't move trees, but mark them with the ARCHIVE tag."
  439. (org-archive-all-matches
  440. (lambda (beg end)
  441. (unless (re-search-forward org-not-done-heading-regexp end t)
  442. "no open TODO items"))
  443. tag))
  444. (defun org-archive-all-old (&optional tag)
  445. "Archive sublevels of the current tree with timestamps prior to today.
  446. If the cursor is not on a headline, try all level 1 trees. If
  447. it is on a headline, try all direct children.
  448. When TAG is non-nil, don't move trees, but mark them with the ARCHIVE tag."
  449. (org-archive-all-matches
  450. (lambda (beg end)
  451. (let (ts)
  452. (and (re-search-forward org-ts-regexp end t)
  453. (setq ts (match-string 0))
  454. (< (org-time-stamp-to-now ts) 0)
  455. (if (not (looking-at
  456. (concat "--\\(" org-ts-regexp "\\)")))
  457. (concat "old timestamp " ts)
  458. (setq ts (concat "old timestamp " ts (match-string 0)))
  459. (and (< (org-time-stamp-to-now (match-string 1)) 0)
  460. ts)))))
  461. tag))
  462. (defun org-archive-all-matches (predicate &optional tag)
  463. "Archive sublevels of the current tree that match PREDICATE.
  464. PREDICATE is a function of two arguments, BEG and END, which
  465. specify the beginning and end of the headline being considered.
  466. It is called with point positioned at BEG. The headline will be
  467. archived if PREDICATE returns non-nil. If the return value of
  468. PREDICATE is a string, it should describe the reason for
  469. archiving the heading.
  470. If the cursor is not on a headline, try all level 1 trees. If it
  471. is on a headline, try all direct children. When TAG is non-nil,
  472. don't move trees, but mark them with the ARCHIVE tag."
  473. (let ((rea (concat ".*:" org-archive-tag ":")) re1
  474. (begm (make-marker))
  475. (endm (make-marker))
  476. (question (if tag "Set ARCHIVE tag? "
  477. "Move subtree to archive? "))
  478. reason beg end (cntarch 0))
  479. (if (org-at-heading-p)
  480. (progn
  481. (setq re1 (concat "^" (regexp-quote
  482. (make-string
  483. (+ (- (match-end 0) (match-beginning 0) 1)
  484. (if org-odd-levels-only 2 1))
  485. ?*))
  486. " "))
  487. (move-marker begm (point))
  488. (move-marker endm (org-end-of-subtree t)))
  489. (setq re1 "^* ")
  490. (move-marker begm (point-min))
  491. (move-marker endm (point-max)))
  492. (save-excursion
  493. (goto-char begm)
  494. (while (re-search-forward re1 endm t)
  495. (setq beg (match-beginning 0)
  496. end (save-excursion (org-end-of-subtree t) (point)))
  497. (goto-char beg)
  498. (if (not (setq reason (funcall predicate beg end)))
  499. (goto-char end)
  500. (goto-char beg)
  501. (if (and (or (not tag) (not (looking-at rea)))
  502. (y-or-n-p
  503. (if (stringp reason)
  504. (concat question "(" reason ")")
  505. question)))
  506. (progn
  507. (if tag
  508. (org-toggle-tag org-archive-tag 'on)
  509. (org-archive-subtree))
  510. (setq cntarch (1+ cntarch)))
  511. (goto-char end)))))
  512. (message "%d trees archived" cntarch)))
  513. ;;;###autoload
  514. (defun org-toggle-archive-tag (&optional find-done)
  515. "Toggle the archive tag for the current headline.
  516. With prefix ARG, check all children of current headline and offer tagging
  517. the children that do not contain any open TODO items."
  518. (interactive "P")
  519. (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
  520. (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
  521. 'region-start-level 'region))
  522. org-loop-over-headlines-in-active-region)
  523. (org-map-entries
  524. `(org-toggle-archive-tag ,find-done)
  525. org-loop-over-headlines-in-active-region
  526. cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
  527. (if find-done
  528. (org-archive-all-done 'tag)
  529. (let (set)
  530. (save-excursion
  531. (org-back-to-heading t)
  532. (setq set (org-toggle-tag org-archive-tag))
  533. (when set (hide-subtree)))
  534. (and set (beginning-of-line 1))
  535. (message "Subtree %s" (if set "archived" "unarchived"))))))
  536. (defun org-archive-set-tag ()
  537. "Set the ARCHIVE tag."
  538. (interactive)
  539. (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
  540. (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
  541. 'region-start-level 'region))
  542. org-loop-over-headlines-in-active-region)
  543. (org-map-entries
  544. 'org-archive-set-tag
  545. org-loop-over-headlines-in-active-region
  546. cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
  547. (org-toggle-tag org-archive-tag 'on)))
  548. ;;;###autoload
  549. (defun org-archive-subtree-default ()
  550. "Archive the current subtree with the default command.
  551. This command is set with the variable `org-archive-default-command'."
  552. (interactive)
  553. (call-interactively org-archive-default-command))
  554. ;;;###autoload
  555. (defun org-archive-subtree-default-with-confirmation ()
  556. "Archive the current subtree with the default command.
  557. This command is set with the variable `org-archive-default-command'."
  558. (interactive)
  559. (if (y-or-n-p "Archive this subtree or entry? ")
  560. (call-interactively org-archive-default-command)
  561. (error "Abort")))
  562. (provide 'org-archive)
  563. ;; Local variables:
  564. ;; generated-autoload-file: "org-loaddefs.el"
  565. ;; End:
  566. ;;; org-archive.el ends here