org-archive.el 22 KB

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