org-archive.el 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565
  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 prefix argument FIND-DONE, find whole trees without any
  182. open TODO items and archive them (after getting confirmation from the user).
  183. If the cursor is not at a headline when this command is called, try all level
  184. 1 trees. If the cursor is on a headline, only try the direct children of
  185. this heading."
  186. (interactive "P")
  187. (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
  188. (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
  189. 'region-start-level 'region))
  190. org-loop-over-headlines-in-active-region)
  191. (org-map-entries
  192. `(progn (setq org-map-continue-from (progn (org-back-to-heading) (point)))
  193. (org-archive-subtree ,find-done))
  194. org-loop-over-headlines-in-active-region
  195. cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
  196. (if find-done
  197. (org-archive-all-done)
  198. ;; Save all relevant TODO keyword-relatex variables
  199. (let ((tr-org-todo-line-regexp org-todo-line-regexp) ; keep despite compiler
  200. (tr-org-todo-keywords-1 org-todo-keywords-1)
  201. (tr-org-todo-kwd-alist org-todo-kwd-alist)
  202. (tr-org-done-keywords org-done-keywords)
  203. (tr-org-todo-regexp org-todo-regexp)
  204. (tr-org-todo-line-regexp org-todo-line-regexp)
  205. (tr-org-odd-levels-only org-odd-levels-only)
  206. (this-buffer (current-buffer))
  207. ;; start of variables that will be used for saving context
  208. ;; The compiler complains about them - keep them anyway!
  209. (file (abbreviate-file-name
  210. (or (buffer-file-name (buffer-base-buffer))
  211. (error "No file associated to buffer"))))
  212. (olpath (mapconcat 'identity (org-get-outline-path) "/"))
  213. (time (format-time-string
  214. (substring (cdr org-time-stamp-formats) 1 -1)
  215. (current-time)))
  216. category todo priority ltags itags atags
  217. ;; end of variables that will be used for saving context
  218. location afile heading buffer level newfile-p infile-p visiting
  219. datetree-date datetree-subheading-p)
  220. ;; Find the local archive location
  221. (setq location (org-get-local-archive-location)
  222. afile (org-extract-archive-file location)
  223. heading (org-extract-archive-heading location)
  224. infile-p (equal file (abbreviate-file-name (or afile ""))))
  225. (unless afile
  226. (error "Invalid `org-archive-location'"))
  227. (if (> (length afile) 0)
  228. (setq newfile-p (not (file-exists-p afile))
  229. visiting (find-buffer-visiting afile)
  230. buffer (or visiting (find-file-noselect afile)))
  231. (setq buffer (current-buffer)))
  232. (unless buffer
  233. (error "Cannot access file \"%s\"" afile))
  234. (when (string-match "\\`datetree/" heading)
  235. ;; Replace with ***, to represent the 3 levels of headings the
  236. ;; datetree has.
  237. (setq heading (replace-regexp-in-string "\\`datetree/" "***" heading))
  238. (setq datetree-subheading-p (> (length heading) 3))
  239. (setq datetree-date (org-date-to-gregorian
  240. (or (org-entry-get nil "CLOSED" t) time))))
  241. (if (and (> (length heading) 0)
  242. (string-match "^\\*+" heading))
  243. (setq level (match-end 0))
  244. (setq heading nil level 0))
  245. (save-excursion
  246. (org-back-to-heading t)
  247. ;; Get context information that will be lost by moving the tree
  248. (setq category (org-get-category nil 'force-refresh)
  249. todo (and (looking-at org-todo-line-regexp)
  250. (match-string 2))
  251. priority (org-get-priority
  252. (if (match-end 3) (match-string 3) ""))
  253. ltags (org-get-tags)
  254. itags (org-delete-all ltags (org-get-tags-at))
  255. atags (org-get-tags-at))
  256. (setq ltags (mapconcat 'identity ltags " ")
  257. itags (mapconcat 'identity itags " "))
  258. ;; We first only copy, in case something goes wrong
  259. ;; we need to protect `this-command', to avoid kill-region sets it,
  260. ;; which would lead to duplication of subtrees
  261. (let (this-command) (org-copy-subtree 1 nil t))
  262. (set-buffer buffer)
  263. ;; Enforce org-mode for the archive buffer
  264. (if (not (derived-mode-p 'org-mode))
  265. ;; Force the mode for future visits.
  266. (let ((org-insert-mode-line-in-empty-file t)
  267. (org-inhibit-startup t))
  268. (call-interactively 'org-mode)))
  269. (when (and newfile-p org-archive-file-header-format)
  270. (goto-char (point-max))
  271. (insert (format org-archive-file-header-format
  272. (buffer-file-name this-buffer))))
  273. (when datetree-date
  274. (require 'org-datetree)
  275. (org-datetree-find-date-create datetree-date)
  276. (org-narrow-to-subtree))
  277. ;; Force the TODO keywords of the original buffer
  278. (let ((org-todo-line-regexp tr-org-todo-line-regexp)
  279. (org-todo-keywords-1 tr-org-todo-keywords-1)
  280. (org-todo-kwd-alist tr-org-todo-kwd-alist)
  281. (org-done-keywords tr-org-done-keywords)
  282. (org-todo-regexp tr-org-todo-regexp)
  283. (org-todo-line-regexp tr-org-todo-line-regexp)
  284. (org-odd-levels-only
  285. (if (local-variable-p 'org-odd-levels-only (current-buffer))
  286. org-odd-levels-only
  287. tr-org-odd-levels-only)))
  288. (goto-char (point-min))
  289. (show-all)
  290. (if (and heading (not (and datetree-date (not datetree-subheading-p))))
  291. (progn
  292. (if (re-search-forward
  293. (concat "^" (regexp-quote heading)
  294. (org-re "[ \t]*\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\($\\|\r\\)"))
  295. nil t)
  296. (goto-char (match-end 0))
  297. ;; Heading not found, just insert it at the end
  298. (goto-char (point-max))
  299. (or (bolp) (insert "\n"))
  300. ;; datetrees don't need too much spacing
  301. (insert (if datetree-date "" "\n") heading "\n")
  302. (end-of-line 0))
  303. ;; Make the subtree visible
  304. (show-subtree)
  305. (if org-archive-reversed-order
  306. (progn
  307. (org-back-to-heading t)
  308. (outline-next-heading))
  309. (org-end-of-subtree t))
  310. (skip-chars-backward " \t\r\n")
  311. (and (looking-at "[ \t\r\n]*")
  312. ;; datetree archives don't need so much spacing.
  313. (replace-match (if datetree-date "\n" "\n\n"))))
  314. ;; No specific heading, just go to end of file.
  315. (goto-char (point-max)) (unless datetree-date (insert "\n")))
  316. ;; Paste
  317. (org-paste-subtree (org-get-valid-level level (and heading 1)))
  318. ;; Shall we append inherited tags?
  319. (and itags
  320. (or (and (eq org-archive-subtree-add-inherited-tags 'infile)
  321. infile-p)
  322. (eq org-archive-subtree-add-inherited-tags t))
  323. (org-set-tags-to atags))
  324. ;; Mark the entry as done
  325. (when (and org-archive-mark-done
  326. (looking-at org-todo-line-regexp)
  327. (or (not (match-end 2))
  328. (not (member (match-string 2) org-done-keywords))))
  329. (let (org-log-done org-todo-log-states)
  330. (org-todo
  331. (car (or (member org-archive-mark-done org-done-keywords)
  332. org-done-keywords)))))
  333. ;; Add the context info
  334. (when org-archive-save-context-info
  335. (let ((l org-archive-save-context-info) e n v)
  336. (while (setq e (pop l))
  337. (when (and (setq v (symbol-value e))
  338. (stringp v) (string-match "\\S-" v))
  339. (setq n (concat "ARCHIVE_" (upcase (symbol-name e))))
  340. (org-entry-put (point) n v)))))
  341. (widen)
  342. ;; Save and kill the buffer, if it is not the same buffer.
  343. (when (not (eq this-buffer buffer))
  344. (save-buffer))))
  345. ;; Here we are back in the original buffer. Everything seems
  346. ;; to have worked. So now run hooks, cut the tree and finish
  347. ;; up.
  348. (run-hooks 'org-archive-hook)
  349. (let (this-command) (org-cut-subtree))
  350. (when (featurep 'org-inlinetask)
  351. (org-inlinetask-remove-END-maybe))
  352. (setq org-markers-to-move nil)
  353. (message "Subtree archived %s"
  354. (if (eq this-buffer buffer)
  355. (concat "under heading: " heading)
  356. (concat "in file: " (abbreviate-file-name afile))))))
  357. (org-reveal)
  358. (if (looking-at "^[ \t]*$")
  359. (outline-next-visible-heading 1))))
  360. ;;;###autoload
  361. (defun org-archive-to-archive-sibling ()
  362. "Archive the current heading by moving it under the archive sibling.
  363. The archive sibling is a sibling of the heading with the heading name
  364. `org-archive-sibling-heading' and an `org-archive-tag' tag. If this
  365. sibling does not exist, it will be created at the end of the subtree."
  366. (interactive)
  367. (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
  368. (let ((cl (when (eq org-loop-over-headlines-in-active-region 'start-level)
  369. 'region-start-level 'region))
  370. org-loop-over-headlines-in-active-region)
  371. (org-map-entries
  372. '(progn (setq org-map-continue-from
  373. (progn (org-back-to-heading)
  374. (if (looking-at (concat "^.*:" org-archive-tag ":.*$"))
  375. (org-end-of-subtree t)
  376. (point))))
  377. (when (org-at-heading-p)
  378. (org-archive-to-archive-sibling)))
  379. org-loop-over-headlines-in-active-region
  380. cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
  381. (save-restriction
  382. (widen)
  383. (let (b e pos leader level)
  384. (org-back-to-heading t)
  385. (looking-at org-outline-regexp)
  386. (setq leader (match-string 0)
  387. level (funcall outline-level))
  388. (setq pos (point))
  389. (condition-case nil
  390. (outline-up-heading 1 t)
  391. (error (setq e (point-max)) (goto-char (point-min))))
  392. (setq b (point))
  393. (unless e
  394. (condition-case nil
  395. (org-end-of-subtree t t)
  396. (error (goto-char (point-max))))
  397. (setq e (point)))
  398. (goto-char b)
  399. (unless (re-search-forward
  400. (concat "^" (regexp-quote leader)
  401. "[ \t]*"
  402. org-archive-sibling-heading
  403. "[ \t]*:"
  404. org-archive-tag ":") e t)
  405. (goto-char e)
  406. (or (bolp) (newline))
  407. (insert leader org-archive-sibling-heading "\n")
  408. (beginning-of-line 0)
  409. (org-toggle-tag org-archive-tag 'on))
  410. (beginning-of-line 1)
  411. (if org-archive-reversed-order
  412. (outline-next-heading)
  413. (org-end-of-subtree t t))
  414. (save-excursion
  415. (goto-char pos)
  416. (let ((this-command this-command)) (org-cut-subtree)))
  417. (org-paste-subtree (org-get-valid-level level 1))
  418. (org-set-property
  419. "ARCHIVE_TIME"
  420. (format-time-string
  421. (substring (cdr org-time-stamp-formats) 1 -1)
  422. (current-time)))
  423. (outline-up-heading 1 t)
  424. (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. (let ((re org-not-done-heading-regexp) re1
  436. (rea (concat ".*:" org-archive-tag ":"))
  437. (begm (make-marker))
  438. (endm (make-marker))
  439. (question (if tag "Set ARCHIVE tag (no open TODO items)? "
  440. "Move subtree to archive (no open TODO items)? "))
  441. beg end (cntarch 0))
  442. (if (org-at-heading-p)
  443. (progn
  444. (setq re1 (concat "^" (regexp-quote
  445. (make-string
  446. (+ (- (match-end 0) (match-beginning 0) 1)
  447. (if org-odd-levels-only 2 1))
  448. ?*))
  449. " "))
  450. (move-marker begm (point))
  451. (move-marker endm (org-end-of-subtree t)))
  452. (setq re1 "^* ")
  453. (move-marker begm (point-min))
  454. (move-marker endm (point-max)))
  455. (save-excursion
  456. (goto-char begm)
  457. (while (re-search-forward re1 endm t)
  458. (setq beg (match-beginning 0)
  459. end (save-excursion (org-end-of-subtree t) (point)))
  460. (goto-char beg)
  461. (if (re-search-forward re end t)
  462. (goto-char end)
  463. (goto-char beg)
  464. (if (and (or (not tag) (not (looking-at rea)))
  465. (y-or-n-p question))
  466. (progn
  467. (if tag
  468. (org-toggle-tag org-archive-tag 'on)
  469. (org-archive-subtree))
  470. (setq cntarch (1+ cntarch)))
  471. (goto-char end)))))
  472. (message "%d trees archived" cntarch)))
  473. ;;;###autoload
  474. (defun org-toggle-archive-tag (&optional find-done)
  475. "Toggle the archive tag for the current headline.
  476. With prefix ARG, check all children of current headline and offer tagging
  477. the children that do not contain any open TODO items."
  478. (interactive "P")
  479. (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
  480. (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
  481. 'region-start-level 'region))
  482. org-loop-over-headlines-in-active-region)
  483. (org-map-entries
  484. `(org-toggle-archive-tag ,find-done)
  485. org-loop-over-headlines-in-active-region
  486. cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
  487. (if find-done
  488. (org-archive-all-done 'tag)
  489. (let (set)
  490. (save-excursion
  491. (org-back-to-heading t)
  492. (setq set (org-toggle-tag org-archive-tag))
  493. (when set (hide-subtree)))
  494. (and set (beginning-of-line 1))
  495. (message "Subtree %s" (if set "archived" "unarchived"))))))
  496. (defun org-archive-set-tag ()
  497. "Set the ARCHIVE tag."
  498. (interactive)
  499. (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
  500. (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
  501. 'region-start-level 'region))
  502. org-loop-over-headlines-in-active-region)
  503. (org-map-entries
  504. 'org-archive-set-tag
  505. org-loop-over-headlines-in-active-region
  506. cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
  507. (org-toggle-tag org-archive-tag 'on)))
  508. ;;;###autoload
  509. (defun org-archive-subtree-default ()
  510. "Archive the current subtree with the default command.
  511. This command is set with the variable `org-archive-default-command'."
  512. (interactive)
  513. (call-interactively org-archive-default-command))
  514. ;;;###autoload
  515. (defun org-archive-subtree-default-with-confirmation ()
  516. "Archive the current subtree with the default command.
  517. This command is set with the variable `org-archive-default-command'."
  518. (interactive)
  519. (if (y-or-n-p "Archive this subtree or entry? ")
  520. (call-interactively org-archive-default-command)
  521. (error "Abort")))
  522. (provide 'org-archive)
  523. ;; Local variables:
  524. ;; generated-autoload-file: "org-loaddefs.el"
  525. ;; End:
  526. ;;; org-archive.el ends here