org-e-latex: Fix bug when exporting empty items
[org-mode.git] / lisp / org-agenda.el
blobc6efa19eacff7141275e41cc1d63163d5d3ca1f4
1 ;;; org-agenda.el --- Dynamic task and appointment lists for Org
3 ;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
8 ;;
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
25 ;;; Commentary:
27 ;; This file contains the code for creating and using the Agenda for Org-mode.
29 ;; The functions `org-batch-agenda', `org-batch-agenda-csv', and
30 ;; `org-batch-store-agenda-views' are implemented as macros to provide
31 ;; a convenient way for extracting agenda information from the command
32 ;; line. The Lisp does not evaluate parameters of a macro call; thus
33 ;; it is not necessary to quote the parameters passed to one of those
34 ;; functions. E.g. you can write:
36 ;; emacs -batch -l ~/.emacs -eval '(org-batch-agenda "a" org-agenda-span 7)'
38 ;; To export an agenda spanning 7 days. If `org-batch-agenda' would
39 ;; have been implemented as a regular function you'd have to quote the
40 ;; symbol org-agenda-span. Moreover: To use a symbol as parameter
41 ;; value you would have to double quote the symbol.
43 ;; This is a hack, but it works even when running Org byte-compiled.
46 ;;; Code:
48 (require 'org)
49 (require 'org-macs)
50 (eval-when-compile
51 (require 'cl))
53 (declare-function diary-add-to-list "diary-lib"
54 (date string specifier &optional marker globcolor literal))
55 (declare-function calendar-absolute-from-iso "cal-iso" (date))
56 (declare-function calendar-astro-date-string "cal-julian" (&optional date))
57 (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
58 (declare-function calendar-chinese-date-string "cal-china" (&optional date))
59 (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
60 (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
61 (declare-function calendar-french-date-string "cal-french" (&optional date))
62 (declare-function calendar-goto-date "cal-move" (date))
63 (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
64 (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
65 (declare-function calendar-iso-date-string "cal-iso" (&optional date))
66 (declare-function calendar-iso-from-absolute "cal-iso" (date))
67 (declare-function calendar-julian-date-string "cal-julian" (&optional date))
68 (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
69 (declare-function calendar-persian-date-string "cal-persia" (&optional date))
70 (declare-function calendar-check-holidays "holidays" (date))
72 (declare-function org-datetree-find-date-create "org-datetree"
73 (date &optional keep-restriction))
74 (declare-function org-columns-quit "org-colview" ())
75 (declare-function diary-date-display-form "diary-lib" (&optional type))
76 (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
77 (declare-function org-habit-insert-consistency-graphs
78 "org-habit" (&optional line))
79 (declare-function org-is-habit-p "org-habit" (&optional pom))
80 (declare-function org-habit-parse-todo "org-habit" (&optional pom))
81 (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
82 (declare-function org-pop-to-buffer-same-window "org-compat"
83 (&optional buffer-or-name norecord label))
84 (declare-function org-agenda-columns "org-colview" ())
85 (declare-function org-add-archive-files "org-archive" (files))
87 (defvar calendar-mode-map)
88 (defvar org-clock-current-task) ; defined in org-clock.el
89 (defvar org-mobile-force-id-on-agenda-items) ; defined in org-mobile.el
90 (defvar org-habit-show-habits)
91 (defvar org-habit-show-habits-only-for-today)
92 (defvar org-habit-show-all-today nil)
94 ;; Defined somewhere in this file, but used before definition.
95 (defvar org-agenda-buffer-name)
96 (defvar org-agenda-overriding-header)
97 (defvar org-agenda-title-append nil)
98 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
99 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
100 (defvar org-agenda-undo-list)
101 (defvar org-agenda-pending-undo-list)
102 (defvar original-date) ; dynamically scoped, calendar.el does scope this
104 (defcustom org-agenda-confirm-kill 1
105 "When set, remote killing from the agenda buffer needs confirmation.
106 When t, a confirmation is always needed. When a number N, confirmation is
107 only needed when the text to be killed contains more than N non-white lines."
108 :group 'org-agenda
109 :type '(choice
110 (const :tag "Never" nil)
111 (const :tag "Always" t)
112 (integer :tag "When more than N lines")))
114 (defcustom org-agenda-compact-blocks nil
115 "Non-nil means make the block agenda more compact.
116 This is done globally by leaving out lines like the agenda span
117 name and week number or the separator lines."
118 :group 'org-agenda
119 :type 'boolean)
121 (defcustom org-agenda-block-separator ?=
122 "The separator between blocks in the agenda.
123 If this is a string, it will be used as the separator, with a newline added.
124 If it is a character, it will be repeated to fill the window width.
125 If nil the separator is disabled. In `org-agenda-custom-commands' this
126 addresses the separator between the current and the previous block."
127 :group 'org-agenda
128 :type '(choice
129 (const :tag "Disabled" nil)
130 (character)
131 (string)))
133 (defgroup org-agenda-export nil
134 "Options concerning exporting agenda views in Org-mode."
135 :tag "Org Agenda Export"
136 :group 'org-agenda)
138 (defcustom org-agenda-with-colors t
139 "Non-nil means use colors in agenda views."
140 :group 'org-agenda-export
141 :type 'boolean)
143 (defcustom org-agenda-exporter-settings nil
144 "Alist of variable/value pairs that should be active during agenda export.
145 This is a good place to set options for ps-print and for htmlize.
146 Note that the way this is implemented, the values will be evaluated
147 before assigned to the variables. So make sure to quote values you do
148 *not* want evaluated, for example
150 (setq org-agenda-exporter-settings
151 '((ps-print-color-p 'black-white)))"
152 :group 'org-agenda-export
153 :type '(repeat
154 (list
155 (variable)
156 (sexp :tag "Value"))))
158 (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
159 "Hook run in temporary buffer before writing it to an export file.
160 A useful function is `org-agenda-add-entry-text'."
161 :group 'org-agenda-export
162 :type 'hook
163 :options '(org-agenda-add-entry-text))
165 (defcustom org-agenda-add-entry-text-maxlines 0
166 "Maximum number of entry text lines to be added to agenda.
167 This is only relevant when `org-agenda-add-entry-text' is part of
168 `org-agenda-before-write-hook', which it is by default.
169 When this is 0, nothing will happen. When it is greater than 0, it
170 specifies the maximum number of lines that will be added for each entry
171 that is listed in the agenda view.
173 Note that this variable is not used during display, only when exporting
174 the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
175 and `org-agenda-entry-text-maxlines'."
176 :group 'org-agenda
177 :type 'integer)
179 (defcustom org-agenda-add-entry-text-descriptive-links t
180 "Non-nil means export org-links as descriptive links in agenda added text.
181 This variable applies to the text added to the agenda when
182 `org-agenda-add-entry-text-maxlines' is larger than 0.
183 When this variable nil, the URL will (also) be shown."
184 :group 'org-agenda
185 :type 'boolean)
187 (defcustom org-agenda-export-html-style ""
188 "The style specification for exported HTML Agenda files.
189 If this variable contains a string, it will replace the default <style>
190 section as produced by `htmlize'.
191 Since there are different ways of setting style information, this variable
192 needs to contain the full HTML structure to provide a style, including the
193 surrounding HTML tags. The style specifications should include definitions
194 the fonts used by the agenda, here is an example:
196 <style type=\"text/css\">
197 p { font-weight: normal; color: gray; }
198 .org-agenda-structure {
199 font-size: 110%;
200 color: #003399;
201 font-weight: 600;
203 .org-todo {
204 color: #cc6666;
205 font-weight: bold;
207 .org-agenda-done {
208 color: #339933;
210 .org-done {
211 color: #339933;
213 .title { text-align: center; }
214 .todo, .deadline { color: red; }
215 .done { color: green; }
216 </style>
218 or, if you want to keep the style in a file,
220 <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
222 As the value of this option simply gets inserted into the HTML <head> header,
223 you can \"misuse\" it to also add other text to the header. However,
224 <style>...</style> is required, if not present the variable will be ignored."
225 :group 'org-agenda-export
226 :group 'org-export-html
227 :type 'string)
229 (defcustom org-agenda-persistent-filter nil
230 "When set, keep filters from one agenda view to the next."
231 :group 'org-agenda
232 :type 'boolean)
234 (defgroup org-agenda-custom-commands nil
235 "Options concerning agenda views in Org-mode."
236 :tag "Org Agenda Custom Commands"
237 :group 'org-agenda)
239 (defconst org-sorting-choice
240 '(choice
241 (const time-up) (const time-down)
242 (const category-keep) (const category-up) (const category-down)
243 (const tag-down) (const tag-up)
244 (const priority-up) (const priority-down)
245 (const todo-state-up) (const todo-state-down)
246 (const effort-up) (const effort-down)
247 (const habit-up) (const habit-down)
248 (const alpha-up) (const alpha-down)
249 (const user-defined-up) (const user-defined-down))
250 "Sorting choices.")
252 ;; Keep custom values for `org-agenda-filter-preset' compatible with
253 ;; the new variable `org-agenda-tag-filter-preset'.
254 (if (fboundp 'defvaralias)
255 (defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
256 (defvaralias 'org-agenda-filter 'org-agenda-tag-filter))
258 (defconst org-agenda-custom-commands-local-options
259 `(repeat :tag "Local settings for this command. Remember to quote values"
260 (choice :tag "Setting"
261 (list :tag "Heading for this block"
262 (const org-agenda-overriding-header)
263 (string :tag "Headline"))
264 (list :tag "Files to be searched"
265 (const org-agenda-files)
266 (list
267 (const :format "" quote)
268 (repeat (file))))
269 (list :tag "Sorting strategy"
270 (const org-agenda-sorting-strategy)
271 (list
272 (const :format "" quote)
273 (repeat
274 ,org-sorting-choice)))
275 (list :tag "Prefix format"
276 (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
277 (string))
278 (list :tag "Number of days in agenda"
279 (const org-agenda-span)
280 (choice (const :tag "Day" 'day)
281 (const :tag "Week" 'week)
282 (const :tag "Month" 'month)
283 (const :tag "Year" 'year)
284 (integer :tag "Custom")))
285 (list :tag "Fixed starting date"
286 (const org-agenda-start-day)
287 (string :value "2007-11-01"))
288 (list :tag "Start on day of week"
289 (const org-agenda-start-on-weekday)
290 (choice :value 1
291 (const :tag "Today" nil)
292 (integer :tag "Weekday No.")))
293 (list :tag "Include data from diary"
294 (const org-agenda-include-diary)
295 (boolean))
296 (list :tag "Deadline Warning days"
297 (const org-deadline-warning-days)
298 (integer :value 1))
299 (list :tag "Category filter preset"
300 (const org-agenda-category-filter-preset)
301 (list
302 (const :format "" quote)
303 (repeat
304 (string :tag "+category or -category"))))
305 (list :tag "Tags filter preset"
306 (const org-agenda-tag-filter-preset)
307 (list
308 (const :format "" quote)
309 (repeat
310 (string :tag "+tag or -tag"))))
311 (list :tag "Set daily/weekly entry types"
312 (const org-agenda-entry-types)
313 (list
314 (const :format "" quote)
315 (set :greedy t :value (:deadline :scheduled :timestamp :sexp)
316 (const :deadline)
317 (const :scheduled)
318 (const :timestamp)
319 (const :sexp))))
320 (list :tag "Standard skipping condition"
321 :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
322 (const org-agenda-skip-function)
323 (list
324 (const :format "" quote)
325 (list
326 (choice
327 :tag "Skipping range"
328 (const :tag "Skip entry" org-agenda-skip-entry-if)
329 (const :tag "Skip subtree" org-agenda-skip-subtree-if))
330 (repeat :inline t :tag "Conditions for skipping"
331 (choice
332 :tag "Condition type"
333 (list :tag "Regexp matches" :inline t (const :format "" 'regexp) (regexp))
334 (list :tag "Regexp does not match" :inline t (const :format "" 'notregexp) (regexp))
335 (list :tag "TODO state is" :inline t
336 (const 'todo)
337 (choice
338 (const :tag "any not-done state" 'todo)
339 (const :tag "any done state" 'done)
340 (const :tag "any state" 'any)
341 (list :tag "Keyword list"
342 (const :format "" quote)
343 (repeat (string :tag "Keyword")))))
344 (list :tag "TODO state is not" :inline t
345 (const 'nottodo)
346 (choice
347 (const :tag "any not-done state" 'todo)
348 (const :tag "any done state" 'done)
349 (const :tag "any state" 'any)
350 (list :tag "Keyword list"
351 (const :format "" quote)
352 (repeat (string :tag "Keyword")))))
353 (const :tag "scheduled" 'scheduled)
354 (const :tag "not scheduled" 'notscheduled)
355 (const :tag "deadline" 'deadline)
356 (const :tag "no deadline" 'notdeadline)
357 (const :tag "timestamp" 'timestamp)
358 (const :tag "no timestamp" 'nottimestamp))))))
359 (list :tag "Non-standard skipping condition"
360 :value (org-agenda-skip-function)
361 (const org-agenda-skip-function)
362 (sexp :tag "Function or form (quoted!)"))
363 (list :tag "Any variable"
364 (variable :tag "Variable")
365 (sexp :tag "Value (sexp)"))))
366 "Selection of examples for agenda command settings.
367 This will be spliced into the custom type of
368 `org-agenda-custom-commands'.")
371 (defcustom org-agenda-custom-commands '(("n" "Agenda and all TODO's"
372 ((agenda "") (alltodo))))
373 "Custom commands for the agenda.
374 These commands will be offered on the splash screen displayed by the
375 agenda dispatcher \\[org-agenda]. Each entry is a list like this:
377 (key desc type match settings files)
379 key The key (one or more characters as a string) to be associated
380 with the command.
381 desc A description of the command, when omitted or nil, a default
382 description is built using MATCH.
383 type The command type, any of the following symbols:
384 agenda The daily/weekly agenda.
385 todo Entries with a specific TODO keyword, in all agenda files.
386 search Entries containing search words entry or headline.
387 tags Tags/Property/TODO match in all agenda files.
388 tags-todo Tags/P/T match in all agenda files, TODO entries only.
389 todo-tree Sparse tree of specific TODO keyword in *current* file.
390 tags-tree Sparse tree with all tags matches in *current* file.
391 occur-tree Occur sparse tree for *current* file.
392 ... A user-defined function.
393 match What to search for:
394 - a single keyword for TODO keyword searches
395 - a tags match expression for tags searches
396 - a word search expression for text searches.
397 - a regular expression for occur searches
398 For all other commands, this should be the empty string.
399 settings A list of option settings, similar to that in a let form, so like
400 this: ((opt1 val1) (opt2 val2) ...). The values will be
401 evaluated at the moment of execution, so quote them when needed.
402 files A list of files file to write the produced agenda buffer to
403 with the command `org-store-agenda-views'.
404 If a file name ends in \".html\", an HTML version of the buffer
405 is written out. If it ends in \".ps\", a postscript version is
406 produced. Otherwise, only the plain text is written to the file.
408 You can also define a set of commands, to create a composite agenda buffer.
409 In this case, an entry looks like this:
411 (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
413 where
415 desc A description string to be displayed in the dispatcher menu.
416 cmd An agenda command, similar to the above. However, tree commands
417 are not allowed, but instead you can get agenda and global todo list.
418 So valid commands for a set are:
419 (agenda \"\" settings)
420 (alltodo \"\" settings)
421 (stuck \"\" settings)
422 (todo \"match\" settings files)
423 (search \"match\" settings files)
424 (tags \"match\" settings files)
425 (tags-todo \"match\" settings files)
427 Each command can carry a list of options, and another set of options can be
428 given for the whole set of commands. Individual command options take
429 precedence over the general options.
431 When using several characters as key to a command, the first characters
432 are prefix commands. For the dispatcher to display useful information, you
433 should provide a description for the prefix, like
435 (setq org-agenda-custom-commands
436 '((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
437 (\"hl\" tags \"+HOME+Lisa\")
438 (\"hp\" tags \"+HOME+Peter\")
439 (\"hk\" tags \"+HOME+Kim\")))"
440 :group 'org-agenda-custom-commands
441 :type `(repeat
442 (choice :value ("x" "Describe command here" tags "" nil)
443 (list :tag "Single command"
444 (string :tag "Access Key(s) ")
445 (option (string :tag "Description"))
446 (choice
447 (const :tag "Agenda" agenda)
448 (const :tag "TODO list" alltodo)
449 (const :tag "Search words" search)
450 (const :tag "Stuck projects" stuck)
451 (const :tag "Tags/Property match (all agenda files)" tags)
452 (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
453 (const :tag "TODO keyword search (all agenda files)" todo)
454 (const :tag "Tags sparse tree (current buffer)" tags-tree)
455 (const :tag "TODO keyword tree (current buffer)" todo-tree)
456 (const :tag "Occur tree (current buffer)" occur-tree)
457 (sexp :tag "Other, user-defined function"))
458 (string :tag "Match (only for some commands)")
459 ,org-agenda-custom-commands-local-options
460 (option (repeat :tag "Export" (file :tag "Export to"))))
461 (list :tag "Command series, all agenda files"
462 (string :tag "Access Key(s)")
463 (string :tag "Description ")
464 (repeat :tag "Component"
465 (choice
466 (list :tag "Agenda"
467 (const :format "" agenda)
468 (const :tag "" :format "" "")
469 ,org-agenda-custom-commands-local-options)
470 (list :tag "TODO list (all keywords)"
471 (const :format "" alltodo)
472 (const :tag "" :format "" "")
473 ,org-agenda-custom-commands-local-options)
474 (list :tag "Search words"
475 (const :format "" search)
476 (string :tag "Match")
477 ,org-agenda-custom-commands-local-options)
478 (list :tag "Stuck projects"
479 (const :format "" stuck)
480 (const :tag "" :format "" "")
481 ,org-agenda-custom-commands-local-options)
482 (list :tag "Tags search"
483 (const :format "" tags)
484 (string :tag "Match")
485 ,org-agenda-custom-commands-local-options)
486 (list :tag "Tags search, TODO entries only"
487 (const :format "" tags-todo)
488 (string :tag "Match")
489 ,org-agenda-custom-commands-local-options)
490 (list :tag "TODO keyword search"
491 (const :format "" todo)
492 (string :tag "Match")
493 ,org-agenda-custom-commands-local-options)
494 (list :tag "Other, user-defined function"
495 (symbol :tag "function")
496 (string :tag "Match")
497 ,org-agenda-custom-commands-local-options)))
499 (repeat :tag "Settings for entire command set"
500 (list (variable :tag "Any variable")
501 (sexp :tag "Value")))
502 (option (repeat :tag "Export" (file :tag "Export to"))))
503 (cons :tag "Prefix key documentation"
504 (string :tag "Access Key(s)")
505 (string :tag "Description ")))))
507 (defcustom org-agenda-query-register ?o
508 "The register holding the current query string.
509 The purpose of this is that if you construct a query string interactively,
510 you can then use it to define a custom command."
511 :group 'org-agenda-custom-commands
512 :type 'character)
514 (defcustom org-stuck-projects
515 '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
516 "How to identify stuck projects.
517 This is a list of four items:
518 1. A tags/todo/property matcher string that is used to identify a project.
519 See the manual for a description of tag and property searches.
520 The entire tree below a headline matched by this is considered one project.
521 2. A list of TODO keywords identifying non-stuck projects.
522 If the project subtree contains any headline with one of these todo
523 keywords, the project is considered to be not stuck. If you specify
524 \"*\" as a keyword, any TODO keyword will mark the project unstuck.
525 3. A list of tags identifying non-stuck projects.
526 If the project subtree contains any headline with one of these tags,
527 the project is considered to be not stuck. If you specify \"*\" as
528 a tag, any tag will mark the project unstuck. Note that this is about
529 the explicit presence of a tag somewhere in the subtree, inherited
530 tags to not count here. If inherited tags make a project not stuck,
531 use \"-TAG\" in the tags part of the matcher under (1.) above.
532 4. An arbitrary regular expression matching non-stuck projects.
534 If the project turns out to be not stuck, search continues also in the
535 subtree to see if any of the subtasks have project status.
537 See also the variable `org-tags-match-list-sublevels' which applies
538 to projects matched by this search as well.
540 After defining this variable, you may use \\[org-agenda-list-stuck-projects]
541 or `C-c a #' to produce the list."
542 :group 'org-agenda-custom-commands
543 :type '(list
544 (string :tag "Tags/TODO match to identify a project")
545 (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
546 (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
547 (regexp :tag "Projects are *not* stuck if this regexp matches inside the subtree")))
549 (defcustom org-agenda-filter-effort-default-operator "<"
550 "The default operator for effort estimate filtering.
551 If you select an effort estimate limit without first pressing an operator,
552 this one will be used."
553 :group 'org-agenda-custom-commands
554 :type '(choice (const :tag "less or equal" "<")
555 (const :tag "greater or equal"">")
556 (const :tag "equal" "=")))
558 (defgroup org-agenda-skip nil
559 "Options concerning skipping parts of agenda files."
560 :tag "Org Agenda Skip"
561 :group 'org-agenda)
563 (defcustom org-agenda-skip-function-global nil
564 "Function to be called at each match during agenda construction.
565 If this function returns nil, the current match should not be skipped.
566 If the function decided to skip an agenda match, is must return the
567 buffer position from which the search should be continued.
568 This may also be a Lisp form, which will be evaluated.
570 This variable will be applied to every agenda match, including
571 tags/property searches and TODO lists. So try to make the test function
572 do its checking as efficiently as possible. To implement a skipping
573 condition just for specific agenda commands, use the variable
574 `org-agenda-skip-function' which can be set in the options section
575 of custom agenda commands."
576 :group 'org-agenda-skip
577 :type 'sexp)
579 (defgroup org-agenda-daily/weekly nil
580 "Options concerning the daily/weekly agenda."
581 :tag "Org Agenda Daily/Weekly"
582 :group 'org-agenda)
583 (defgroup org-agenda-todo-list nil
584 "Options concerning the global todo list agenda view."
585 :tag "Org Agenda Todo List"
586 :group 'org-agenda)
587 (defgroup org-agenda-match-view nil
588 "Options concerning the general tags/property/todo match agenda view."
589 :tag "Org Agenda Match View"
590 :group 'org-agenda)
591 (defgroup org-agenda-search-view nil
592 "Options concerning the general tags/property/todo match agenda view."
593 :tag "Org Agenda Match View"
594 :group 'org-agenda)
596 (defvar org-agenda-archives-mode nil
597 "Non-nil means the agenda will include archived items.
598 If this is the symbol `trees', trees in the selected agenda scope
599 that are marked with the ARCHIVE tag will be included anyway. When this is
600 t, also all archive files associated with the current selection of agenda
601 files will be included.")
603 (defcustom org-agenda-skip-comment-trees t
604 "Non-nil means skip trees that start with the COMMENT keyword.
605 When nil, these trees are also scanned by agenda commands."
606 :group 'org-agenda-skip
607 :type 'boolean)
609 (defcustom org-agenda-todo-list-sublevels t
610 "Non-nil means check also the sublevels of a TODO entry for TODO entries.
611 When nil, the sublevels of a TODO entry are not checked, resulting in
612 potentially much shorter TODO lists."
613 :group 'org-agenda-skip
614 :group 'org-agenda-todo-list
615 :type 'boolean)
617 (defcustom org-agenda-todo-ignore-with-date nil
618 "Non-nil means don't show entries with a date in the global todo list.
619 You can use this if you prefer to mark mere appointments with a TODO keyword,
620 but don't want them to show up in the TODO list.
621 When this is set, it also covers deadlines and scheduled items, the settings
622 of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
623 will be ignored.
624 See also the variable `org-agenda-tags-todo-honor-ignore-options'."
625 :group 'org-agenda-skip
626 :group 'org-agenda-todo-list
627 :type 'boolean)
629 (defcustom org-agenda-todo-ignore-timestamp nil
630 "Non-nil means don't show entries with a timestamp.
631 This applies when creating the global todo list.
632 Valid values are:
634 past Don't show entries for today or in the past.
636 future Don't show entries with a timestamp in the future.
637 The idea behind this is that if it has a future
638 timestamp, you don't want to think about it until the
639 date.
641 all Don't show any entries with a timestamp in the global todo list.
642 The idea behind this is that by setting a timestamp, you
643 have already \"taken care\" of this item.
645 This variable can also have an integer as a value. If positive (N),
646 todos with a timestamp N or more days in the future will be ignored. If
647 negative (-N), todos with a timestamp N or more days in the past will be
648 ignored. If 0, todos with a timestamp either today or in the future will
649 be ignored. For example, a value of -1 will exclude todos with a
650 timestamp in the past (yesterday or earlier), while a value of 7 will
651 exclude todos with a timestamp a week or more in the future.
653 See also `org-agenda-todo-ignore-with-date'.
654 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
655 to make his option also apply to the tags-todo list."
656 :group 'org-agenda-skip
657 :group 'org-agenda-todo-list
658 :version "24.1"
659 :type '(choice
660 (const :tag "Ignore future timestamp todos" future)
661 (const :tag "Ignore past or present timestamp todos" past)
662 (const :tag "Ignore all timestamp todos" all)
663 (const :tag "Show timestamp todos" nil)
664 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
666 (defcustom org-agenda-todo-ignore-scheduled nil
667 "Non-nil means, ignore some scheduled TODO items when making TODO list.
668 This applies when creating the global todo list.
669 Valid values are:
671 past Don't show entries scheduled today or in the past.
673 future Don't show entries scheduled in the future.
674 The idea behind this is that by scheduling it, you don't want to
675 think about it until the scheduled date.
677 all Don't show any scheduled entries in the global todo list.
678 The idea behind this is that by scheduling it, you have already
679 \"taken care\" of this item.
681 t Same as `all', for backward compatibility.
683 This variable can also have an integer as a value. See
684 `org-agenda-todo-ignore-timestamp' for more details.
686 See also `org-agenda-todo-ignore-with-date'.
687 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
688 to make his option also apply to the tags-todo list."
689 :group 'org-agenda-skip
690 :group 'org-agenda-todo-list
691 :type '(choice
692 (const :tag "Ignore future-scheduled todos" future)
693 (const :tag "Ignore past- or present-scheduled todos" past)
694 (const :tag "Ignore all scheduled todos" all)
695 (const :tag "Ignore all scheduled todos (compatibility)" t)
696 (const :tag "Show scheduled todos" nil)
697 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
699 (defcustom org-agenda-todo-ignore-deadlines nil
700 "Non-nil means ignore some deadlined TODO items when making TODO list.
701 There are different motivations for using different values, please think
702 carefully when configuring this variable.
704 This applies when creating the global todo list.
705 Valid values are:
707 near Don't show near deadline entries. A deadline is near when it is
708 closer than `org-deadline-warning-days' days. The idea behind this
709 is that such items will appear in the agenda anyway.
711 far Don't show TODO entries where a deadline has been defined, but
712 the deadline is not near. This is useful if you don't want to
713 use the todo list to figure out what to do now.
715 past Don't show entries with a deadline timestamp for today or in the past.
717 future Don't show entries with a deadline timestamp in the future, not even
718 when they become `near' ones. Use it with caution.
720 all Ignore all TODO entries that do have a deadline.
722 t Same as `near', for backward compatibility.
724 This variable can also have an integer as a value. See
725 `org-agenda-todo-ignore-timestamp' for more details.
727 See also `org-agenda-todo-ignore-with-date'.
728 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
729 to make his option also apply to the tags-todo list."
730 :group 'org-agenda-skip
731 :group 'org-agenda-todo-list
732 :type '(choice
733 (const :tag "Ignore near deadlines" near)
734 (const :tag "Ignore near deadlines (compatibility)" t)
735 (const :tag "Ignore far deadlines" far)
736 (const :tag "Ignore all TODOs with a deadlines" all)
737 (const :tag "Show all TODOs, even if they have a deadline" nil)
738 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
740 (defcustom org-agenda-tags-todo-honor-ignore-options nil
741 "Non-nil means honor todo-list ...ignore options also in tags-todo search.
742 The variables
743 `org-agenda-todo-ignore-with-date',
744 `org-agenda-todo-ignore-timestamp',
745 `org-agenda-todo-ignore-scheduled',
746 `org-agenda-todo-ignore-deadlines'
747 make the global TODO list skip entries that have time stamps of certain
748 kinds. If this option is set, the same options will also apply for the
749 tags-todo search, which is the general tags/property matcher
750 restricted to unfinished TODO entries only."
751 :group 'org-agenda-skip
752 :group 'org-agenda-todo-list
753 :group 'org-agenda-match-view
754 :type 'boolean)
756 (defcustom org-agenda-skip-scheduled-if-done nil
757 "Non-nil means don't show scheduled items in agenda when they are done.
758 This is relevant for the daily/weekly agenda, not for the TODO list. And
759 it applies only to the actual date of the scheduling. Warnings about
760 an item with a past scheduling dates are always turned off when the item
761 is DONE."
762 :group 'org-agenda-skip
763 :group 'org-agenda-daily/weekly
764 :type 'boolean)
766 (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
767 "Non-nil means skip scheduling line if same entry shows because of deadline.
768 In the agenda of today, an entry can show up multiple times because
769 it is both scheduled and has a nearby deadline, and maybe a plain time
770 stamp as well.
771 When this variable is t, then only the deadline is shown and the fact that
772 the entry is scheduled today or was scheduled previously is not shown.
773 When this variable is nil, the entry will be shown several times. When
774 the variable is the symbol `not-today', then skip scheduled previously,
775 but not scheduled today."
776 :group 'org-agenda-skip
777 :group 'org-agenda-daily/weekly
778 :type '(choice
779 (const :tag "Never" nil)
780 (const :tag "Always" t)
781 (const :tag "Not when scheduled today" not-today)))
783 (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
784 "Non-nil means skip timestamp line if same entry shows because of deadline.
785 In the agenda of today, an entry can show up multiple times
786 because it has both a plain timestamp and has a nearby deadline.
787 When this variable is t, then only the deadline is shown and the
788 fact that the entry has a timestamp for or including today is not
789 shown. When this variable is nil, the entry will be shown
790 several times."
791 :group 'org-agenda-skip
792 :group 'org-agenda-daily/weekly
793 :version "24.1"
794 :type '(choice
795 (const :tag "Never" nil)
796 (const :tag "Always" t)))
798 (defcustom org-agenda-skip-deadline-if-done nil
799 "Non-nil means don't show deadlines when the corresponding item is done.
800 When nil, the deadline is still shown and should give you a happy feeling.
801 This is relevant for the daily/weekly agenda. And it applied only to the
802 actually date of the deadline. Warnings about approaching and past-due
803 deadlines are always turned off when the item is DONE."
804 :group 'org-agenda-skip
805 :group 'org-agenda-daily/weekly
806 :type 'boolean)
808 (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
809 "Non-nil means skip deadline prewarning when entry is also scheduled.
810 This will apply on all days where a prewarning for the deadline would
811 be shown, but not at the day when the entry is actually due. On that day,
812 the deadline will be shown anyway.
813 This variable may be set to nil, t, or a number which will then give
814 the number of days before the actual deadline when the prewarnings
815 should resume.
816 This can be used in a workflow where the first showing of the deadline will
817 trigger you to schedule it, and then you don't want to be reminded of it
818 because you will take care of it on the day when scheduled."
819 :group 'org-agenda-skip
820 :group 'org-agenda-daily/weekly
821 :version "24.1"
822 :type '(choice
823 (const :tag "Alwas show prewarning" nil)
824 (const :tag "Remove prewarning if entry is scheduled" t)
825 (integer :tag "Restart prewarning N days before deadline")))
827 (defcustom org-agenda-skip-additional-timestamps-same-entry nil
828 "When nil, multiple same-day timestamps in entry make multiple agenda lines.
829 When non-nil, after the search for timestamps has matched once in an
830 entry, the rest of the entry will not be searched."
831 :group 'org-agenda-skip
832 :type 'boolean)
834 (defcustom org-agenda-skip-timestamp-if-done nil
835 "Non-nil means don't select item by timestamp or -range if it is DONE."
836 :group 'org-agenda-skip
837 :group 'org-agenda-daily/weekly
838 :type 'boolean)
840 (defcustom org-agenda-dim-blocked-tasks t
841 "Non-nil means dim blocked tasks in the agenda display.
842 This causes some overhead during agenda construction, but if you
843 have turned on `org-enforce-todo-dependencies',
844 `org-enforce-todo-checkbox-dependencies', or any other blocking
845 mechanism, this will create useful feedback in the agenda.
847 Instead of t, this variable can also have the value `invisible'.
848 Then blocked tasks will be invisible and only become visible when
849 they become unblocked. An exemption to this behavior is when a task is
850 blocked because of unchecked checkboxes below it. Since checkboxes do
851 not show up in the agenda views, making this task invisible you remove any
852 trace from agenda views that there is something to do. Therefore, a task
853 that is blocked because of checkboxes will never be made invisible, it
854 will only be dimmed."
855 :group 'org-agenda-daily/weekly
856 :group 'org-agenda-todo-list
857 :type '(choice
858 (const :tag "Do not dim" nil)
859 (const :tag "Dim to a gray face" t)
860 (const :tag "Make invisible" invisible)))
862 (defcustom org-timeline-show-empty-dates 3
863 "Non-nil means `org-timeline' also shows dates without an entry.
864 When nil, only the days which actually have entries are shown.
865 When t, all days between the first and the last date are shown.
866 When an integer, show also empty dates, but if there is a gap of more than
867 N days, just insert a special line indicating the size of the gap."
868 :group 'org-agenda-skip
869 :type '(choice
870 (const :tag "None" nil)
871 (const :tag "All" t)
872 (integer :tag "at most")))
874 (defgroup org-agenda-startup nil
875 "Options concerning initial settings in the Agenda in Org Mode."
876 :tag "Org Agenda Startup"
877 :group 'org-agenda)
879 (defcustom org-agenda-menu-show-matcher t
880 "Non-nil means show the match string in the agenda dispatcher menu.
881 When nil, the matcher string is not shown, but is put into the help-echo
882 property so than moving the mouse over the command shows it.
883 Setting it to nil is good if matcher strings are very long and/or if
884 you want to use two-columns display (see `org-agenda-menu-two-columns')."
885 :group 'org-agenda
886 :version "24.1"
887 :type 'boolean)
889 (make-obsolete-variable 'org-agenda-menu-two-column 'org-agenda-menu-two-columns "24.3")
891 (defcustom org-agenda-menu-two-columns nil
892 "Non-nil means, use two columns to show custom commands in the dispatcher.
893 If you use this, you probably want to set `org-agenda-menu-show-matcher'
894 to nil."
895 :group 'org-agenda
896 :version "24.1"
897 :type 'boolean)
899 (defcustom org-finalize-agenda-hook nil
900 "Hook run just before displaying an agenda buffer."
901 :group 'org-agenda-startup
902 :type 'hook)
904 (defcustom org-agenda-mouse-1-follows-link nil
905 "Non-nil means mouse-1 on a link will follow the link in the agenda.
906 A longer mouse click will still set point. Does not work on XEmacs.
907 Needs to be set before org.el is loaded."
908 :group 'org-agenda-startup
909 :type 'boolean)
911 (defcustom org-agenda-start-with-follow-mode nil
912 "The initial value of follow mode in a newly created agenda window."
913 :group 'org-agenda-startup
914 :type 'boolean)
916 (defcustom org-agenda-follow-indirect nil
917 "Non-nil means `org-agenda-follow-mode' displays only the
918 current item's tree, in an indirect buffer."
919 :group 'org-agenda
920 :version "24.1"
921 :type 'boolean)
923 (defcustom org-agenda-show-outline-path t
924 "Non-nil means show outline path in echo area after line motion."
925 :group 'org-agenda-startup
926 :type 'boolean)
928 (defcustom org-agenda-start-with-entry-text-mode nil
929 "The initial value of entry-text-mode in a newly created agenda window."
930 :group 'org-agenda-startup
931 :type 'boolean)
933 (defcustom org-agenda-entry-text-maxlines 5
934 "Number of text lines to be added when `E' is pressed in the agenda.
936 Note that this variable only used during agenda display. Add add entry text
937 when exporting the agenda, configure the variable
938 `org-agenda-add-entry-ext-maxlines'."
939 :group 'org-agenda
940 :type 'integer)
942 (defcustom org-agenda-entry-text-exclude-regexps nil
943 "List of regular expressions to clean up entry text.
944 The complete matches of all regular expressions in this list will be
945 removed from entry text before it is shown in the agenda."
946 :group 'org-agenda
947 :type '(repeat (regexp)))
949 (defvar org-agenda-entry-text-cleanup-hook nil
950 "Hook that is run after basic cleanup of entry text to be shown in agenda.
951 This cleanup is done in a temporary buffer, so the function may inspect and
952 change the entire buffer.
953 Some default stuff like drawers and scheduling/deadline dates will already
954 have been removed when this is called, as will any matches for regular
955 expressions listed in `org-agenda-entry-text-exclude-regexps'.")
957 (defvar org-agenda-include-inactive-timestamps nil
958 "Non-nil means include inactive time stamps in agenda and timeline.
959 Dynamically scoped.")
961 (defgroup org-agenda-windows nil
962 "Options concerning the windows used by the Agenda in Org Mode."
963 :tag "Org Agenda Windows"
964 :group 'org-agenda)
966 (defcustom org-agenda-window-setup 'reorganize-frame
967 "How the agenda buffer should be displayed.
968 Possible values for this option are:
970 current-window Show agenda in the current window, keeping all other windows.
971 other-window Use `switch-to-buffer-other-window' to display agenda.
972 reorganize-frame Show only two windows on the current frame, the current
973 window and the agenda.
974 other-frame Use `switch-to-buffer-other-frame' to display agenda.
975 Also, when exiting the agenda, kill that frame.
976 See also the variable `org-agenda-restore-windows-after-quit'."
977 :group 'org-agenda-windows
978 :type '(choice
979 (const current-window)
980 (const other-frame)
981 (const other-window)
982 (const reorganize-frame)))
984 (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
985 "The min and max height of the agenda window as a fraction of frame height.
986 The value of the variable is a cons cell with two numbers between 0 and 1.
987 It only matters if `org-agenda-window-setup' is `reorganize-frame'."
988 :group 'org-agenda-windows
989 :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
991 (defcustom org-agenda-restore-windows-after-quit nil
992 "Non-nil means restore window configuration upon exiting agenda.
993 Before the window configuration is changed for displaying the agenda,
994 the current status is recorded. When the agenda is exited with
995 `q' or `x' and this option is set, the old state is restored. If
996 `org-agenda-window-setup' is `other-frame', the value of this
997 option will be ignored."
998 :group 'org-agenda-windows
999 :type 'boolean)
1001 (defcustom org-agenda-ndays nil
1002 "Number of days to include in overview display.
1003 Should be 1 or 7.
1004 Obsolete, see `org-agenda-span'."
1005 :group 'org-agenda-daily/weekly
1006 :type 'integer)
1008 (make-obsolete-variable 'org-agenda-ndays 'org-agenda-span "24.1")
1010 (defcustom org-agenda-span 'week
1011 "Number of days to include in overview display.
1012 Can be day, week, month, year, or any number of days.
1013 Custom commands can set this variable in the options section."
1014 :group 'org-agenda-daily/weekly
1015 :type '(choice (const :tag "Day" day)
1016 (const :tag "Week" week)
1017 (const :tag "Month" month)
1018 (const :tag "Year" year)
1019 (integer :tag "Custom")))
1021 (defcustom org-agenda-start-on-weekday 1
1022 "Non-nil means start the overview always on the specified weekday.
1023 0 denotes Sunday, 1 denotes Monday etc.
1024 When nil, always start on the current day.
1025 Custom commands can set this variable in the options section."
1026 :group 'org-agenda-daily/weekly
1027 :type '(choice (const :tag "Today" nil)
1028 (integer :tag "Weekday No.")))
1030 (defcustom org-agenda-show-all-dates t
1031 "Non-nil means `org-agenda' shows every day in the selected range.
1032 When nil, only the days which actually have entries are shown."
1033 :group 'org-agenda-daily/weekly
1034 :type 'boolean)
1036 (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
1037 "Format string for displaying dates in the agenda.
1038 Used by the daily/weekly agenda and by the timeline. This should be
1039 a format string understood by `format-time-string', or a function returning
1040 the formatted date as a string. The function must take a single argument,
1041 a calendar-style date list like (month day year)."
1042 :group 'org-agenda-daily/weekly
1043 :type '(choice
1044 (string :tag "Format string")
1045 (function :tag "Function")))
1047 (defun org-agenda-format-date-aligned (date)
1048 "Format a date string for display in the daily/weekly agenda, or timeline.
1049 This function makes sure that dates are aligned for easy reading."
1050 (require 'cal-iso)
1051 (let* ((dayname (calendar-day-name date))
1052 (day (cadr date))
1053 (day-of-week (calendar-day-of-week date))
1054 (month (car date))
1055 (monthname (calendar-month-name month))
1056 (year (nth 2 date))
1057 (iso-week (org-days-to-iso-week
1058 (calendar-absolute-from-gregorian date)))
1059 (weekyear (cond ((and (= month 1) (>= iso-week 52))
1060 (1- year))
1061 ((and (= month 12) (<= iso-week 1))
1062 (1+ year))
1063 (t year)))
1064 (weekstring (if (= day-of-week 1)
1065 (format " W%02d" iso-week)
1066 "")))
1067 (format "%-10s %2d %s %4d%s"
1068 dayname day monthname year weekstring)))
1070 (defcustom org-agenda-time-leading-zero nil
1071 "Non-nil means use leading zero for military times in agenda.
1072 For example, 9:30am would become 09:30 rather than 9:30."
1073 :group 'org-agenda-daily/weekly
1074 :version "24.1"
1075 :type 'boolean)
1077 (defcustom org-agenda-timegrid-use-ampm nil
1078 "When set, show AM/PM style timestamps on the timegrid."
1079 :group 'org-agenda
1080 :version "24.1"
1081 :type 'boolean)
1083 (defun org-agenda-time-of-day-to-ampm (time)
1084 "Convert TIME of a string like '13:45' to an AM/PM style time string."
1085 (let* ((hour-number (string-to-number (substring time 0 -3)))
1086 (minute (substring time -2))
1087 (ampm "am"))
1088 (cond
1089 ((equal hour-number 12)
1090 (setq ampm "pm"))
1091 ((> hour-number 12)
1092 (setq ampm "pm")
1093 (setq hour-number (- hour-number 12))))
1094 (concat
1095 (if org-agenda-time-leading-zero
1096 (format "%02d" hour-number)
1097 (format "%02s" (number-to-string hour-number)))
1098 ":" minute ampm)))
1100 (defun org-agenda-time-of-day-to-ampm-maybe (time)
1101 "Conditionally convert TIME to AM/PM format
1102 based on `org-agenda-timegrid-use-ampm'"
1103 (if org-agenda-timegrid-use-ampm
1104 (org-agenda-time-of-day-to-ampm time)
1105 time))
1107 (defcustom org-agenda-weekend-days '(6 0)
1108 "Which days are weekend?
1109 These days get the special face `org-agenda-date-weekend' in the agenda
1110 and timeline buffers."
1111 :group 'org-agenda-daily/weekly
1112 :type '(set :greedy t
1113 (const :tag "Monday" 1)
1114 (const :tag "Tuesday" 2)
1115 (const :tag "Wednesday" 3)
1116 (const :tag "Thursday" 4)
1117 (const :tag "Friday" 5)
1118 (const :tag "Saturday" 6)
1119 (const :tag "Sunday" 0)))
1121 (defcustom org-agenda-move-date-from-past-immediately-to-today t
1122 "Non-nil means jump to today when moving a past date forward in time.
1123 When using S-right in the agenda to move a a date forward, and the date
1124 stamp currently points to the past, the first key press will move it
1125 to today. WHen nil, just move one day forward even if the date stays
1126 in the past."
1127 :group 'org-agenda-daily/weekly
1128 :version "24.1"
1129 :type 'boolean)
1131 (defcustom org-agenda-include-diary nil
1132 "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
1133 Custom commands can set this variable in the options section."
1134 :group 'org-agenda-daily/weekly
1135 :type 'boolean)
1137 (defcustom org-agenda-include-deadlines t
1138 "If non-nil, include entries within their deadline warning period.
1139 Custom commands can set this variable in the options section."
1140 :group 'org-agenda-daily/weekly
1141 :version "24.1"
1142 :type 'boolean)
1144 (defcustom org-agenda-repeating-timestamp-show-all t
1145 "Non-nil means show all occurrences of a repeating stamp in the agenda.
1146 When set to a list of strings, only show occurrences of repeating
1147 stamps for these TODO keywords. When nil, only one occurrence is
1148 shown, either today or the nearest into the future."
1149 :group 'org-agenda-daily/weekly
1150 :type '(choice
1151 (const :tag "Show repeating stamps" t)
1152 (repeat :tag "Show repeating stamps for these TODO keywords"
1153 (string :tag "TODO Keyword"))
1154 (const :tag "Don't show repeating stamps" nil)))
1156 (defcustom org-scheduled-past-days 10000
1157 "No. of days to continue listing scheduled items that are not marked DONE.
1158 When an item is scheduled on a date, it shows up in the agenda on this
1159 day and will be listed until it is marked done for the number of days
1160 given here."
1161 :group 'org-agenda-daily/weekly
1162 :type 'integer)
1164 (defcustom org-agenda-log-mode-items '(closed clock)
1165 "List of items that should be shown in agenda log mode.
1166 This list may contain the following symbols:
1168 closed Show entries that have been closed on that day.
1169 clock Show entries that have received clocked time on that day.
1170 state Show all logged state changes.
1171 Note that instead of changing this variable, you can also press `C-u l' in
1172 the agenda to display all available LOG items temporarily."
1173 :group 'org-agenda-daily/weekly
1174 :type '(set :greedy t (const closed) (const clock) (const state)))
1176 (defcustom org-agenda-clock-consistency-checks
1177 '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
1178 :gap-ok-around ("4:00")
1179 :default-face ((:background "DarkRed") (:foreground "white"))
1180 :overlap-face nil :gap-face nil :no-end-time-face nil
1181 :long-face nil :short-face nil)
1182 "This is a property list, with the following keys:
1184 :max-duration Mark clocking chunks that are longer than this time.
1185 This is a time string like \"HH:MM\", or the number
1186 of minutes as an integer.
1188 :min-duration Mark clocking chunks that are shorter that this.
1189 This is a time string like \"HH:MM\", or the number
1190 of minutes as an integer.
1192 :max-gap Mark gaps between clocking chunks that are longer than
1193 this duration. A number of minutes, or a string
1194 like \"HH:MM\".
1196 :gap-ok-around List of times during the day which are usually not working
1197 times. When a gap is detected, but the gap contains any
1198 of these times, the gap is *not* reported. For example,
1199 if this is (\"4:00\" \"13:00\") then gaps that contain
1200 4:00 in the morning (i.e. the night) and 13:00
1201 (i.e. a typical lunch time) do not cause a warning.
1202 You should have at least one time during the night in this
1203 list, or otherwise the first task each morning will trigger
1204 a warning because it follows a long gap.
1206 Furthermore, the following properties can be used to define faces for
1207 issue display.
1209 :default-face the default face, if the specific face is undefined
1210 :overlap-face face for overlapping clocks
1211 :gap-face face for gaps between clocks
1212 :no-end-time-face face for incomplete clocks
1213 :long-face face for clock intervals that are too long
1214 :short-face face for clock intervals that are too short"
1215 :group 'org-agenda-daily/weekly
1216 :group 'org-clock
1217 :version "24.1"
1218 :type 'plist)
1220 (defcustom org-agenda-log-mode-add-notes t
1221 "Non-nil means add first line of notes to log entries in agenda views.
1222 If a log item like a state change or a clock entry is associated with
1223 notes, the first line of these notes will be added to the entry in the
1224 agenda display."
1225 :group 'org-agenda-daily/weekly
1226 :type 'boolean)
1228 (defcustom org-agenda-start-with-log-mode nil
1229 "The initial value of log-mode in a newly created agenda window.
1230 See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
1231 explanations on the possible values."
1232 :group 'org-agenda-startup
1233 :group 'org-agenda-daily/weekly
1234 :type '(choice (const :tag "Don't show log items" nil)
1235 (const :tag "Show only log items" 'only)
1236 (const :tag "Show all possible log items" 'clockcheck)
1237 (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
1238 (choice (const :tag "Show closed log items" 'closed)
1239 (const :tag "Show clocked log items" 'clock)
1240 (const :tag "Show all logged state changes" 'state)))))
1242 (defcustom org-agenda-start-with-clockreport-mode nil
1243 "The initial value of clockreport-mode in a newly created agenda window."
1244 :group 'org-agenda-startup
1245 :group 'org-agenda-daily/weekly
1246 :type 'boolean)
1248 (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
1249 "Property list with parameters for the clocktable in clockreport mode.
1250 This is the display mode that shows a clock table in the daily/weekly
1251 agenda, the properties for this dynamic block can be set here.
1252 The usual clocktable parameters are allowed here, but you cannot set
1253 the properties :name, :tstart, :tend, :block, and :scope - these will
1254 be overwritten to make sure the content accurately reflects the
1255 current display in the agenda."
1256 :group 'org-agenda-daily/weekly
1257 :type 'plist)
1259 (defcustom org-agenda-search-view-always-boolean nil
1260 "Non-nil means the search string is interpreted as individual parts.
1262 The search string for search view can either be interpreted as a phrase,
1263 or as a list of snippets that define a boolean search for a number of
1264 strings.
1266 When this is non-nil, the string will be split on whitespace, and each
1267 snippet will be searched individually, and all must match in order to
1268 select an entry. A snippet is then a single string of non-white
1269 characters, or a string in double quotes, or a regexp in {} braces.
1270 If a snippet is preceded by \"-\", the snippet must *not* match.
1271 \"+\" is syntactic sugar for positive selection. Each snippet may
1272 be found as a full word or a partial word, but see the variable
1273 `org-agenda-search-view-force-full-words'.
1275 When this is nil, search will look for the entire search phrase as one,
1276 with each space character matching any amount of whitespace, including
1277 line breaks.
1279 Even when this is nil, you can still switch to Boolean search dynamically
1280 by preceding the first snippet with \"+\" or \"-\". If the first snippet
1281 is a regexp marked with braces like \"{abc}\", this will also switch to
1282 boolean search."
1283 :group 'org-agenda-search-view
1284 :version "24.1"
1285 :type 'boolean)
1287 (if (fboundp 'defvaralias)
1288 (defvaralias 'org-agenda-search-view-search-words-only
1289 'org-agenda-search-view-always-boolean))
1291 (defcustom org-agenda-search-view-force-full-words nil
1292 "Non-nil means, search words must be matches as complete words.
1293 When nil, they may also match part of a word."
1294 :group 'org-agenda-search-view
1295 :version "24.1"
1296 :type 'boolean)
1298 (defgroup org-agenda-time-grid nil
1299 "Options concerning the time grid in the Org-mode Agenda."
1300 :tag "Org Agenda Time Grid"
1301 :group 'org-agenda)
1303 (defcustom org-agenda-search-headline-for-time t
1304 "Non-nil means search headline for a time-of-day.
1305 If the headline contains a time-of-day in one format or another, it will
1306 be used to sort the entry into the time sequence of items for a day.
1307 Some people have time stamps in the headline that refer to the creation
1308 time or so, and then this produces an unwanted side effect. If this is
1309 the case for your, use this variable to turn off searching the headline
1310 for a time."
1311 :group 'org-agenda-time-grid
1312 :type 'boolean)
1314 (defcustom org-agenda-use-time-grid t
1315 "Non-nil means show a time grid in the agenda schedule.
1316 A time grid is a set of lines for specific times (like every two hours between
1317 8:00 and 20:00). The items scheduled for a day at specific times are
1318 sorted in between these lines.
1319 For details about when the grid will be shown, and what it will look like, see
1320 the variable `org-agenda-time-grid'."
1321 :group 'org-agenda-time-grid
1322 :type 'boolean)
1324 (defcustom org-agenda-time-grid
1325 '((daily today require-timed)
1326 "----------------"
1327 (800 1000 1200 1400 1600 1800 2000))
1329 "The settings for time grid for agenda display.
1330 This is a list of three items. The first item is again a list. It contains
1331 symbols specifying conditions when the grid should be displayed:
1333 daily if the agenda shows a single day
1334 weekly if the agenda shows an entire week
1335 today show grid on current date, independent of daily/weekly display
1336 require-timed show grid only if at least one item has a time specification
1338 The second item is a string which will be placed behind the grid time.
1340 The third item is a list of integers, indicating the times that should have
1341 a grid line."
1342 :group 'org-agenda-time-grid
1343 :type
1344 '(list
1345 (set :greedy t :tag "Grid Display Options"
1346 (const :tag "Show grid in single day agenda display" daily)
1347 (const :tag "Show grid in weekly agenda display" weekly)
1348 (const :tag "Always show grid for today" today)
1349 (const :tag "Show grid only if any timed entries are present"
1350 require-timed)
1351 (const :tag "Skip grid times already present in an entry"
1352 remove-match))
1353 (string :tag "Grid String")
1354 (repeat :tag "Grid Times" (integer :tag "Time"))))
1356 (defcustom org-agenda-show-current-time-in-grid t
1357 "Non-nil means show the current time in the time grid."
1358 :group 'org-agenda-time-grid
1359 :version "24.1"
1360 :type 'boolean)
1362 (defcustom org-agenda-current-time-string
1363 "now - - - - - - - - - - - - - - - - - - - - - - - - -"
1364 "The string for the current time marker in the agenda."
1365 :group 'org-agenda-time-grid
1366 :version "24.1"
1367 :type 'string)
1369 (defgroup org-agenda-sorting nil
1370 "Options concerning sorting in the Org-mode Agenda."
1371 :tag "Org Agenda Sorting"
1372 :group 'org-agenda)
1374 (defcustom org-agenda-sorting-strategy
1375 '((agenda habit-down time-up priority-down category-keep)
1376 (todo priority-down category-keep)
1377 (tags priority-down category-keep)
1378 (search category-keep))
1379 "Sorting structure for the agenda items of a single day.
1380 This is a list of symbols which will be used in sequence to determine
1381 if an entry should be listed before another entry. The following
1382 symbols are recognized:
1384 time-up Put entries with time-of-day indications first, early first
1385 time-down Put entries with time-of-day indications first, late first
1386 category-keep Keep the default order of categories, corresponding to the
1387 sequence in `org-agenda-files'.
1388 category-up Sort alphabetically by category, A-Z.
1389 category-down Sort alphabetically by category, Z-A.
1390 tag-up Sort alphabetically by last tag, A-Z.
1391 tag-down Sort alphabetically by last tag, Z-A.
1392 priority-up Sort numerically by priority, high priority last.
1393 priority-down Sort numerically by priority, high priority first.
1394 todo-state-up Sort by todo state, tasks that are done last.
1395 todo-state-down Sort by todo state, tasks that are done first.
1396 effort-up Sort numerically by estimated effort, high effort last.
1397 effort-down Sort numerically by estimated effort, high effort first.
1398 user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
1399 user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
1400 habit-up Put entries that are habits first
1401 habit-down Put entries that are habits last
1402 alpha-up Sort headlines alphabetically
1403 alpha-down Sort headlines alphabetically, reversed
1405 The different possibilities will be tried in sequence, and testing stops
1406 if one comparison returns a \"not-equal\". For example, the default
1407 '(time-up category-keep priority-down)
1408 means: Pull out all entries having a specified time of day and sort them,
1409 in order to make a time schedule for the current day the first thing in the
1410 agenda listing for the day. Of the entries without a time indication, keep
1411 the grouped in categories, don't sort the categories, but keep them in
1412 the sequence given in `org-agenda-files'. Within each category sort by
1413 priority.
1415 Leaving out `category-keep' would mean that items will be sorted across
1416 categories by priority.
1418 Instead of a single list, this can also be a set of list for specific
1419 contents, with a context symbol in the car of the list, any of
1420 `agenda', `todo', `tags', `search' for the corresponding agenda views.
1422 Custom commands can bind this variable in the options section."
1423 :group 'org-agenda-sorting
1424 :type `(choice
1425 (repeat :tag "General" ,org-sorting-choice)
1426 (list :tag "Individually"
1427 (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
1428 (repeat ,org-sorting-choice))
1429 (cons (const :tag "Strategy for TODO lists" todo)
1430 (repeat ,org-sorting-choice))
1431 (cons (const :tag "Strategy for Tags matches" tags)
1432 (repeat ,org-sorting-choice))
1433 (cons (const :tag "Strategy for search matches" search)
1434 (repeat ,org-sorting-choice)))))
1436 (defcustom org-agenda-cmp-user-defined nil
1437 "A function to define the comparison `user-defined'.
1438 This function must receive two arguments, agenda entry a and b.
1439 If a>b, return +1. If a<b, return -1. If they are equal as seen by
1440 the user comparison, return nil.
1441 When this is defined, you can make `user-defined-up' and `user-defined-down'
1442 part of an agenda sorting strategy."
1443 :group 'org-agenda-sorting
1444 :type 'symbol)
1446 (defcustom org-sort-agenda-notime-is-late t
1447 "Non-nil means items without time are considered late.
1448 This is only relevant for sorting. When t, items which have no explicit
1449 time like 15:30 will be considered as 99:01, i.e. later than any items which
1450 do have a time. When nil, the default time is before 0:00. You can use this
1451 option to decide if the schedule for today should come before or after timeless
1452 agenda entries."
1453 :group 'org-agenda-sorting
1454 :type 'boolean)
1456 (defcustom org-sort-agenda-noeffort-is-high t
1457 "Non-nil means items without effort estimate are sorted as high effort.
1458 This also applies when filtering an agenda view with respect to the
1459 < or > effort operator. Then, tasks with no effort defined will be treated
1460 as tasks with high effort.
1461 When nil, such items are sorted as 0 minutes effort."
1462 :group 'org-agenda-sorting
1463 :type 'boolean)
1465 (defgroup org-agenda-line-format nil
1466 "Options concerning the entry prefix in the Org-mode agenda display."
1467 :tag "Org Agenda Line Format"
1468 :group 'org-agenda)
1470 (defcustom org-agenda-prefix-format
1471 '((agenda . " %i %-12:c%?-12t% s")
1472 (timeline . " % s")
1473 (todo . " %i %-12:c")
1474 (tags . " %i %-12:c")
1475 (search . " %i %-12:c"))
1476 "Format specifications for the prefix of items in the agenda views.
1477 An alist with five entries, each for the different agenda types. The
1478 keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
1479 The values are format strings.
1481 This format works similar to a printf format, with the following meaning:
1483 %c the category of the item, \"Diary\" for entries from the diary,
1484 or as given by the CATEGORY keyword or derived from the file name
1485 %e the effort required by the item
1486 %i the icon category of the item, see `org-agenda-category-icon-alist'
1487 %T the last tag of the item (ignore inherited tags, which come first)
1488 %t the HH:MM time-of-day specification if one applies to the entry
1489 %s Scheduling/Deadline information, a short string
1490 %(expression) Eval EXPRESSION and replace the control string
1491 by the result
1493 All specifiers work basically like the standard `%s' of printf, but may
1494 contain two additional characters: a question mark just after the `%'
1495 and a whitespace/punctuation character just before the final letter.
1497 If the first character after `%' is a question mark, the entire field
1498 will only be included if the corresponding value applies to the current
1499 entry. This is useful for fields which should have fixed width when
1500 present, but zero width when absent. For example, \"%?-12t\" will
1501 result in a 12 character time field if a time of the day is specified,
1502 but will completely disappear in entries which do not contain a time.
1504 If there is punctuation or whitespace character just before the final
1505 format letter, this character will be appended to the field value if
1506 the value is not empty. For example, the format \"%-12:c\" leads to
1507 \"Diary: \" if the category is \"Diary\". If the category were be
1508 empty, no additional colon would be inserted.
1510 The default value for the agenda sublist is \" %-12:c%?-12t% s\",
1511 which means:
1513 - Indent the line with two space characters
1514 - Give the category a 12 chars wide field, padded with whitespace on
1515 the right (because of `-'). Append a colon if there is a category
1516 (because of `:').
1517 - If there is a time-of-day, put it into a 12 chars wide field. If no
1518 time, don't put in an empty field, just skip it (because of '?').
1519 - Finally, put the scheduling information.
1521 See also the variables `org-agenda-remove-times-when-in-prefix' and
1522 `org-agenda-remove-tags'.
1524 Custom commands can set this variable in the options section."
1525 :type '(choice
1526 (string :tag "General format")
1527 (list :greedy t :tag "View dependent"
1528 (cons (const agenda) (string :tag "Format"))
1529 (cons (const timeline) (string :tag "Format"))
1530 (cons (const todo) (string :tag "Format"))
1531 (cons (const tags) (string :tag "Format"))
1532 (cons (const search) (string :tag "Format"))))
1533 :group 'org-agenda-line-format)
1535 (defvar org-prefix-format-compiled nil
1536 "The compiled prefix format and associated variables.
1537 This is a list where first element is a list of variable bindings, and second
1538 element is the compiled format expression. See the variable
1539 `org-agenda-prefix-format'.")
1541 (defcustom org-agenda-todo-keyword-format "%-1s"
1542 "Format for the TODO keyword in agenda lines.
1543 Set this to something like \"%-12s\" if you want all TODO keywords
1544 to occupy a fixed space in the agenda display."
1545 :group 'org-agenda-line-format
1546 :type 'string)
1548 (defcustom org-agenda-diary-sexp-prefix nil
1549 "A regexp that matches part of a diary sexp entry
1550 which should be treated as scheduling/deadline information in
1551 `org-agenda'.
1553 For example, you can use this to extract the `diary-remind-message' from
1554 `diary-remind' entries."
1555 :group 'org-agenda-line-format
1556 :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
1558 (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
1559 "Text preceding timerange entries in the agenda view.
1560 This is a list with two strings. The first applies when the range
1561 is entirely on one day. The second applies if the range spans several days.
1562 The strings may have two \"%d\" format specifiers which will be filled
1563 with the sequence number of the days, and the total number of days in the
1564 range, respectively."
1565 :group 'org-agenda-line-format
1566 :type '(list
1567 (string :tag "Deadline today ")
1568 (choice :tag "Deadline relative"
1569 (string :tag "Format string")
1570 (function))))
1572 (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
1573 "Text preceding scheduled items in the agenda view.
1574 This is a list with two strings. The first applies when the item is
1575 scheduled on the current day. The second applies when it has been scheduled
1576 previously, it may contain a %d indicating that this is the nth time that
1577 this item is scheduled, due to automatic rescheduling of unfinished items
1578 for the following day. So this number is one larger than the number of days
1579 that passed since this item was scheduled first."
1580 :group 'org-agenda-line-format
1581 :type '(list
1582 (string :tag "Scheduled today ")
1583 (string :tag "Scheduled previously")))
1585 (defcustom org-agenda-inactive-leader "["
1586 "Text preceding item pulled into the agenda by inactive time stamps.
1587 These entries are added to the agenda when pressing \"[\"."
1588 :group 'org-agenda-line-format
1589 :version "24.1"
1590 :type '(list
1591 (string :tag "Scheduled today ")
1592 (string :tag "Scheduled previously")))
1594 (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: ")
1595 "Text preceding deadline items in the agenda view.
1596 This is a list with two strings. The first applies when the item has its
1597 deadline on the current day. The second applies when it is in the past or
1598 in the future, it may contain %d to capture how many days away the deadline
1599 is (was)."
1600 :group 'org-agenda-line-format
1601 :type '(list
1602 (string :tag "Deadline today ")
1603 (choice :tag "Deadline relative"
1604 (string :tag "Format string")
1605 (function))))
1607 (defcustom org-agenda-remove-times-when-in-prefix t
1608 "Non-nil means remove duplicate time specifications in agenda items.
1609 When the format `org-agenda-prefix-format' contains a `%t' specifier, a
1610 time-of-day specification in a headline or diary entry is extracted and
1611 placed into the prefix. If this option is non-nil, the original specification
1612 \(a timestamp or -range, or just a plain time(range) specification like
1613 11:30-4pm) will be removed for agenda display. This makes the agenda less
1614 cluttered.
1615 The option can be t or nil. It may also be the symbol `beg', indicating
1616 that the time should only be removed when it is located at the beginning of
1617 the headline/diary entry."
1618 :group 'org-agenda-line-format
1619 :type '(choice
1620 (const :tag "Always" t)
1621 (const :tag "Never" nil)
1622 (const :tag "When at beginning of entry" beg)))
1624 (defcustom org-agenda-remove-timeranges-from-blocks nil
1625 "Non-nil means remove time ranges specifications in agenda
1626 items that span on several days."
1627 :group 'org-agenda-line-format
1628 :version "24.1"
1629 :type 'boolean)
1631 (defcustom org-agenda-default-appointment-duration nil
1632 "Default duration for appointments that only have a starting time.
1633 When nil, no duration is specified in such cases.
1634 When non-nil, this must be the number of minutes, e.g. 60 for one hour."
1635 :group 'org-agenda-line-format
1636 :type '(choice
1637 (integer :tag "Minutes")
1638 (const :tag "No default duration")))
1640 (defcustom org-agenda-show-inherited-tags t
1641 "Non-nil means show inherited tags in each agenda line."
1642 :group 'org-agenda-line-format
1643 :type 'boolean)
1645 (defcustom org-agenda-hide-tags-regexp nil
1646 "Regular expression used to filter away specific tags in agenda views.
1647 This means that these tags will be present, but not be shown in the agenda
1648 line. Secondary filtering will still work on the hidden tags.
1649 Nil means don't hide any tags."
1650 :group 'org-agenda-line-format
1651 :type '(choice
1652 (const :tag "Hide none" nil)
1653 (string :tag "Regexp ")))
1655 (defcustom org-agenda-remove-tags nil
1656 "Non-nil means remove the tags from the headline copy in the agenda.
1657 When this is the symbol `prefix', only remove tags when
1658 `org-agenda-prefix-format' contains a `%T' specifier."
1659 :group 'org-agenda-line-format
1660 :type '(choice
1661 (const :tag "Always" t)
1662 (const :tag "Never" nil)
1663 (const :tag "When prefix format contains %T" prefix)))
1665 (if (fboundp 'defvaralias)
1666 (defvaralias 'org-agenda-remove-tags-when-in-prefix
1667 'org-agenda-remove-tags))
1669 (defcustom org-agenda-tags-column (if (featurep 'xemacs) -79 -80)
1670 "Shift tags in agenda items to this column.
1671 If this number is positive, it specifies the column. If it is negative,
1672 it means that the tags should be flushright to that column. For example,
1673 -80 works well for a normal 80 character screen."
1674 :group 'org-agenda-line-format
1675 :type 'integer)
1677 (if (fboundp 'defvaralias)
1678 (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column))
1680 (defcustom org-agenda-fontify-priorities 'cookies
1681 "Non-nil means highlight low and high priorities in agenda.
1682 When t, the highest priority entries are bold, lowest priority italic.
1683 However, settings in `org-priority-faces' will overrule these faces.
1684 When this variable is the symbol `cookies', only fontify the
1685 cookies, not the entire task.
1686 This may also be an association list of priority faces, whose
1687 keys are the character values of `org-highest-priority',
1688 `org-default-priority', and `org-lowest-priority' (the default values
1689 are ?A, ?B, and ?C, respectively). The face may be a named face, a
1690 color as a string, or a list like `(:background \"Red\")'.
1691 If it is a color, the variable `org-faces-easy-properties'
1692 determines if it is a foreground or a background color."
1693 :group 'org-agenda-line-format
1694 :type '(choice
1695 (const :tag "Never" nil)
1696 (const :tag "Defaults" t)
1697 (const :tag "Cookies only" cookies)
1698 (repeat :tag "Specify"
1699 (list (character :tag "Priority" :value ?A)
1700 (choice :tag "Face "
1701 (string :tag "Color")
1702 (sexp :tag "Face"))))))
1704 (defcustom org-agenda-day-face-function nil
1705 "Function called to determine what face should be used to display a day.
1706 The only argument passed to that function is the day. It should
1707 returns a face, or nil if does not want to specify a face and let
1708 the normal rules apply."
1709 :group 'org-agenda-line-format
1710 :version "24.1"
1711 :type 'function)
1713 (defcustom org-agenda-category-icon-alist nil
1714 "Alist of category icon to be displayed in agenda views.
1716 Each entry should have the following format:
1718 (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
1720 Where CATEGORY-REGEXP is a regexp matching the categories where
1721 the icon should be displayed.
1722 FILE-OR-DATA either a file path or a string containing image data.
1724 The other fields can be omitted safely if not needed:
1725 TYPE indicates the image type.
1726 DATA-P is a boolean indicating whether the FILE-OR-DATA string is
1727 image data.
1728 PROPS are additional image attributes to assign to the image,
1729 like, e.g. `:ascent center'.
1731 (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
1733 If you want to set the display properties yourself, just put a
1734 list as second element:
1736 (CATEGORY-REGEXP (MY PROPERTY LIST))
1738 For example, to display a 16px horizontal space for Emacs
1739 category, you can use:
1741 (\"Emacs\" '(space . (:width (16))))"
1742 :group 'org-agenda-line-format
1743 :version "24.1"
1744 :type '(alist :key-type (string :tag "Regexp matching category")
1745 :value-type (choice (list :tag "Icon"
1746 (string :tag "File or data")
1747 (symbol :tag "Type")
1748 (boolean :tag "Data?")
1749 (repeat :tag "Extra image properties" :inline t symbol))
1750 (list :tag "Display properties" sexp))))
1752 (defgroup org-agenda-column-view nil
1753 "Options concerning column view in the agenda."
1754 :tag "Org Agenda Column View"
1755 :group 'org-agenda)
1757 (defcustom org-agenda-columns-show-summaries t
1758 "Non-nil means show summaries for columns displayed in the agenda view."
1759 :group 'org-agenda-column-view
1760 :type 'boolean)
1762 (defcustom org-agenda-columns-compute-summary-properties t
1763 "Non-nil means recompute all summary properties before column view.
1764 When column view in the agenda is listing properties that have a summary
1765 operator, it can go to all relevant buffers and recompute the summaries
1766 there. This can mean overhead for the agenda column view, but is necessary
1767 to have thing up to date.
1768 As a special case, a CLOCKSUM property also makes sure that the clock
1769 computations are current."
1770 :group 'org-agenda-column-view
1771 :type 'boolean)
1773 (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
1774 "Non-nil means the duration of an appointment will add to day effort.
1775 The property to which appointment durations will be added is the one given
1776 in the option `org-effort-property'. If an appointment does not have
1777 an end time, `org-agenda-default-appointment-duration' will be used. If that
1778 is not set, an appointment without end time will not contribute to the time
1779 estimate."
1780 :group 'org-agenda-column-view
1781 :type 'boolean)
1783 (defcustom org-agenda-auto-exclude-function nil
1784 "A function called with a tag to decide if it is filtered on '/ RET'.
1785 The sole argument to the function, which is called once for each
1786 possible tag, is a string giving the name of the tag. The
1787 function should return either nil if the tag should be included
1788 as normal, or \"-<TAG>\" to exclude the tag.
1789 Note that for the purpose of tag filtering, only the lower-case version of
1790 all tags will be considered, so that this function will only ever see
1791 the lower-case version of all tags."
1792 :group 'org-agenda
1793 :type 'function)
1795 (defcustom org-agenda-bulk-custom-functions nil
1796 "Alist of characters and custom functions for bulk actions.
1797 For example, this value makes those two functions available:
1799 '((?R set-category)
1800 (?C bulk-cut))
1802 With selected entries in an agenda buffer, `B R' will call
1803 the custom function `set-category' on the selected entries.
1804 Note that functions in this alist don't need to be quoted."
1805 :type 'alist
1806 :version "24.1"
1807 :group 'org-agenda)
1809 (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
1810 "Execute BODY with point at location given by `org-hd-marker' property.
1811 If STRING is non-nil, the text property will be fetched from position 0
1812 in that string. If STRING is nil, it will be fetched from the beginning
1813 of the current line."
1814 (org-with-gensyms (marker)
1815 `(let ((,marker (get-text-property (if string 0 (point-at-bol))
1816 'org-hd-marker ,string)))
1817 (with-current-buffer (marker-buffer ,marker)
1818 (save-excursion
1819 (goto-char ,marker)
1820 ,@body)))))
1821 (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
1823 (defun org-add-agenda-custom-command (entry)
1824 "Replace or add a command in `org-agenda-custom-commands'.
1825 This is mostly for hacking and trying a new command - once the command
1826 works you probably want to add it to `org-agenda-custom-commands' for good."
1827 (let ((ass (assoc (car entry) org-agenda-custom-commands)))
1828 (if ass
1829 (setcdr ass (cdr entry))
1830 (push entry org-agenda-custom-commands))))
1832 ;;; Define the org-agenda-mode
1834 (defvar org-agenda-mode-map (make-sparse-keymap)
1835 "Keymap for `org-agenda-mode'.")
1836 (if (fboundp 'defvaralias)
1837 (defvaralias 'org-agenda-keymap 'org-agenda-mode-map))
1839 (defvar org-agenda-menu) ; defined later in this file.
1840 (defvar org-agenda-restrict) ; defined later in this file.
1841 (defvar org-agenda-follow-mode nil)
1842 (defvar org-agenda-entry-text-mode nil)
1843 (defvar org-agenda-clockreport-mode nil)
1844 (defvar org-agenda-show-log nil)
1845 (defvar org-agenda-redo-command nil)
1846 (defvar org-agenda-query-string nil)
1847 (defvar org-agenda-mode-hook nil
1848 "Hook for `org-agenda-mode', run after the mode is turned on.")
1849 (defvar org-agenda-type nil)
1850 (defvar org-agenda-force-single-file nil)
1851 (defvar org-agenda-bulk-marked-entries) ;; Defined further down in this file
1854 ;;; Multiple agenda buffers support
1856 (defcustom org-agenda-sticky nil
1857 "Non-nil means agenda q key will bury agenda buffers.
1858 Agenda commands will then show existing buffer instead of generating new ones.
1859 When nil, `q' will kill the single agenda buffer."
1860 :group 'org-agenda
1861 :type 'boolean
1862 :set (lambda (var val)
1863 (if (boundp var)
1864 (org-toggle-sticky-agenda (if val 1 0))
1865 (set var val))))
1867 (defun org-toggle-sticky-agenda (&optional arg)
1868 "Toggle `org-agenda-sticky'."
1869 (interactive "P")
1870 (let ((new-value (if arg
1871 (> (prefix-numeric-value arg) 0)
1872 (not org-agenda-sticky))))
1873 (if (equal new-value org-agenda-sticky)
1874 (and (org-called-interactively-p 'interactive)
1875 (message "Sticky agenda was already %s"
1876 (if org-agenda-sticky "enabled" "disabled")))
1877 (setq org-agenda-sticky new-value)
1878 (org-agenda-kill-all-agenda-buffers)
1879 (and (org-called-interactively-p 'interactive)
1880 (message "Sticky agenda was %s"
1881 (if org-agenda-sticky "enabled" "disabled"))))))
1883 (defvar org-agenda-buffer nil
1884 "Agenda buffer currently being generated.")
1886 (defvar org-agenda-last-prefix-arg nil)
1887 (defvar org-agenda-this-buffer-name nil)
1888 (defvar org-agenda-doing-sticky-redo nil)
1889 (defvar org-agenda-this-buffer-is-sticky nil)
1891 (defconst org-agenda-local-vars
1892 '(org-agenda-this-buffer-name
1893 org-agenda-undo-list
1894 org-agenda-pending-undo-list
1895 org-agenda-follow-mode
1896 org-agenda-entry-text-mode
1897 org-agenda-clockreport-mode
1898 org-agenda-show-log
1899 org-agenda-redo-command
1900 org-agenda-query-string
1901 org-agenda-type
1902 org-agenda-bulk-marked-entries
1903 org-agenda-undo-has-started-in
1904 org-agenda-last-arguments
1905 org-agenda-info
1906 org-agenda-tag-filter-overlays
1907 org-agenda-cat-filter-overlays
1908 org-pre-agenda-window-conf
1909 org-agenda-columns-active
1910 org-agenda-tag-filter
1911 org-agenda-category-filter
1912 org-agenda-markers
1913 org-agenda-last-search-view-search-was-boolean
1914 org-agenda-filtered-by-category
1915 org-agenda-filter-form
1916 org-agenda-show-window
1917 org-agenda-cycle-counter
1918 org-agenda-last-prefix-arg)
1919 "Variables that must be local in agenda buffers to allow multiple buffers.")
1921 (defun org-agenda-mode ()
1922 "Mode for time-sorted view on action items in Org-mode files.
1924 The following commands are available:
1926 \\{org-agenda-mode-map}"
1927 (interactive)
1928 (cond (org-agenda-doing-sticky-redo
1929 ;; Refreshing sticky agenda-buffer
1931 ;; Preserve the value of `org-agenda-local-vars' variables,
1932 ;; while letting `kill-all-local-variables' kill the rest
1933 (let ((save (buffer-local-variables)))
1934 (kill-all-local-variables)
1935 (mapc 'make-local-variable org-agenda-local-vars)
1936 (dolist (elem save)
1937 (let ((var (car elem))
1938 (val (cdr elem)))
1939 (when (and val
1940 (member var org-agenda-local-vars))
1941 (set var val)))))
1942 (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
1943 (org-agenda-sticky
1944 ;; Creating a sticky Agenda buffer for the first time
1945 (kill-all-local-variables)
1946 (mapc 'make-local-variable org-agenda-local-vars)
1947 (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
1949 ;; Creating a non-sticky agenda buffer
1950 (kill-all-local-variables)
1951 (set (make-local-variable 'org-agenda-this-buffer-is-sticky) nil)))
1952 (setq org-agenda-undo-list nil
1953 org-agenda-pending-undo-list nil
1954 org-agenda-bulk-marked-entries nil)
1955 (setq major-mode 'org-agenda-mode)
1956 ;; Keep global-font-lock-mode from turning on font-lock-mode
1957 (org-set-local 'font-lock-global-modes (list 'not major-mode))
1958 (setq mode-name "Org-Agenda")
1959 (use-local-map org-agenda-mode-map)
1960 (easy-menu-add org-agenda-menu)
1961 (if org-startup-truncated (setq truncate-lines t))
1962 (org-set-local 'line-move-visual nil)
1963 (org-add-hook 'post-command-hook 'org-agenda-post-command-hook nil 'local)
1964 (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
1965 ;; Make sure properties are removed when copying text
1966 (make-local-variable 'filter-buffer-substring-functions)
1967 (add-hook 'filter-buffer-substring-functions
1968 (lambda (fun start end delete)
1969 (substring-no-properties (funcall fun start end delete))))
1970 (unless org-agenda-keep-modes
1971 (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
1972 org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
1973 org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode
1974 org-agenda-show-log org-agenda-start-with-log-mode))
1976 (easy-menu-change
1977 '("Agenda") "Agenda Files"
1978 (append
1979 (list
1980 (vector
1981 (if (get 'org-agenda-files 'org-restrict)
1982 "Restricted to single file"
1983 "Edit File List")
1984 '(org-edit-agenda-file-list)
1985 (not (get 'org-agenda-files 'org-restrict)))
1986 "--")
1987 (mapcar 'org-file-menu-entry (org-agenda-files))))
1988 (org-agenda-set-mode-name)
1989 (apply
1990 (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
1991 (list 'org-agenda-mode-hook)))
1993 (substitute-key-definition 'undo 'org-agenda-undo
1994 org-agenda-mode-map global-map)
1995 (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
1996 (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
1997 (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
1998 (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
1999 (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
2000 (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
2001 (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
2002 (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
2003 (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
2004 (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
2005 (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
2006 (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
2007 (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
2008 (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
2009 (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
2010 (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
2011 (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
2012 (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
2013 (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
2014 (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
2015 (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
2016 (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
2017 (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
2018 (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
2019 (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
2020 (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
2021 (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
2022 (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
2023 (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
2024 (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
2025 (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
2026 (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
2027 (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
2028 (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
2029 (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
2030 (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
2031 (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
2032 (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
2033 (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
2034 (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
2035 (org-defkey org-agenda-mode-map "k" 'org-agenda-action)
2036 (org-defkey org-agenda-mode-map "\C-c\C-x\C-k" 'org-agenda-action)
2037 (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
2038 (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
2039 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
2040 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
2042 (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
2043 (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
2044 (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
2045 (let ((l '(1 2 3 4 5 6 7 8 9 0)))
2046 (while l (org-defkey org-agenda-mode-map
2047 (int-to-string (pop l)) 'digit-argument)))
2049 (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
2050 (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
2051 (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
2052 (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
2053 (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
2054 (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
2055 (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
2056 (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
2057 (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
2058 (org-defkey org-agenda-mode-map "g" 'org-agenda-redo)
2059 (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
2060 (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
2061 (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
2062 'org-clock-modify-effort-estimate)
2063 (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
2064 (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
2065 (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
2066 (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
2067 (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
2068 (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
2069 (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
2070 (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
2071 (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
2072 (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
2073 (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
2074 (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
2075 (substitute-key-definition 'next-line 'org-agenda-next-line
2076 org-agenda-mode-map global-map)
2077 (substitute-key-definition 'previous-line 'org-agenda-previous-line
2078 org-agenda-mode-map global-map)
2079 (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
2080 (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
2081 (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
2082 (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
2083 (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-show-priority)
2084 (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
2085 (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
2086 (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
2087 (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
2088 (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
2089 (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
2090 (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
2091 (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
2092 (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
2093 (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
2094 (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
2095 (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
2096 (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
2097 (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
2098 (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
2099 (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
2100 (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
2101 (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
2102 (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
2103 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
2104 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
2105 (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
2106 (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
2107 (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
2108 (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
2110 (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
2111 (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
2112 (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
2113 (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
2114 (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
2115 (org-defkey org-agenda-mode-map "\\" 'org-agenda-filter-by-tag-refine)
2116 (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
2117 (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-category)
2118 (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
2119 (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
2120 (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
2121 (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
2123 (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
2124 (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
2125 (when org-agenda-mouse-1-follows-link
2126 (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
2127 (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
2128 '("Agenda"
2129 ("Agenda Files")
2130 "--"
2131 ("Agenda Dates"
2132 ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
2133 ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
2134 ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
2135 ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
2136 "--"
2137 ("View"
2138 ["Day View" org-agenda-day-view
2139 :active (org-agenda-check-type nil 'agenda)
2140 :style radio :selected (eq org-agenda-current-span 'day)
2141 :keys "v d (or just d)"]
2142 ["Week View" org-agenda-week-view
2143 :active (org-agenda-check-type nil 'agenda)
2144 :style radio :selected (eq org-agenda-current-span 'week)
2145 :keys "v w (or just w)"]
2146 ["Month View" org-agenda-month-view
2147 :active (org-agenda-check-type nil 'agenda)
2148 :style radio :selected (eq org-agenda-current-span 'month)
2149 :keys "v m"]
2150 ["Year View" org-agenda-year-view
2151 :active (org-agenda-check-type nil 'agenda)
2152 :style radio :selected (eq org-agenda-current-span 'year)
2153 :keys "v y"]
2154 "--"
2155 ["Include Diary" org-agenda-toggle-diary
2156 :style toggle :selected org-agenda-include-diary
2157 :active (org-agenda-check-type nil 'agenda)]
2158 ["Include Deadlines" org-agenda-toggle-deadlines
2159 :style toggle :selected org-agenda-include-deadlines
2160 :active (org-agenda-check-type nil 'agenda)]
2161 ["Use Time Grid" org-agenda-toggle-time-grid
2162 :style toggle :selected org-agenda-use-time-grid
2163 :active (org-agenda-check-type nil 'agenda)]
2164 "--"
2165 ["Show clock report" org-agenda-clockreport-mode
2166 :style toggle :selected org-agenda-clockreport-mode
2167 :active (org-agenda-check-type nil 'agenda)]
2168 ["Show some entry text" org-agenda-entry-text-mode
2169 :style toggle :selected org-agenda-entry-text-mode
2170 :active t]
2171 "--"
2172 ["Show Logbook entries" org-agenda-log-mode
2173 :style toggle :selected org-agenda-show-log
2174 :active (org-agenda-check-type nil 'agenda 'timeline)
2175 :keys "v l (or just l)"]
2176 ["Include archived trees" org-agenda-archives-mode
2177 :style toggle :selected org-agenda-archives-mode :active t
2178 :keys "v a"]
2179 ["Include archive files" (org-agenda-archives-mode t)
2180 :style toggle :selected (eq org-agenda-archives-mode t) :active t
2181 :keys "v A"]
2182 "--"
2183 ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
2184 ["Write view to file" org-agenda-write t]
2185 ["Rebuild buffer" org-agenda-redo t]
2186 ["Save all Org-mode Buffers" org-save-all-org-buffers t]
2187 "--"
2188 ["Show original entry" org-agenda-show t]
2189 ["Go To (other window)" org-agenda-goto t]
2190 ["Go To (this window)" org-agenda-switch-to t]
2191 ["Follow Mode" org-agenda-follow-mode
2192 :style toggle :selected org-agenda-follow-mode :active t]
2193 ; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
2194 "--"
2195 ("TODO"
2196 ["Cycle TODO" org-agenda-todo t]
2197 ["Next TODO set" org-agenda-todo-nextset t]
2198 ["Previous TODO set" org-agenda-todo-previousset t]
2199 ["Add note" org-agenda-add-note t])
2200 ("Archive/Refile/Delete"
2201 ["Archive default" org-agenda-archive-default t]
2202 ["Archive default" org-agenda-archive-default-with-confirmation t]
2203 ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
2204 ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
2205 ["Archive subtree" org-agenda-archive t]
2206 "--"
2207 ["Refile" org-agenda-refile t]
2208 "--"
2209 ["Delete subtree" org-agenda-kill t])
2210 ("Bulk action"
2211 ["Mark entry" org-agenda-bulk-mark t]
2212 ["Mark all" org-agenda-bulk-mark-all t]
2213 ["Mark matching regexp" org-agenda-bulk-mark-regexp t]
2214 ["Unmark entry" org-agenda-bulk-unmark t]
2215 ["Unmark all entries" org-agenda-bulk-unmark-all :active t :keys "C-u s"])
2216 ["Act on all marked" org-agenda-bulk-action t]
2217 "--"
2218 ("Tags and Properties"
2219 ["Show all Tags" org-agenda-show-tags t]
2220 ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
2221 ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
2222 "--"
2223 ["Column View" org-columns t])
2224 ("Deadline/Schedule"
2225 ["Schedule" org-agenda-schedule t]
2226 ["Set Deadline" org-agenda-deadline t]
2227 "--"
2228 ["Mark item" org-agenda-action :active t :keys "k m"]
2229 ["Show mark item" org-agenda-action :active t :keys "k v"]
2230 ["Schedule marked item" org-agenda-action :active t :keys "k s"]
2231 ["Set Deadline for marked item" org-agenda-action :active t :keys "k d"]
2232 "--"
2233 ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
2234 ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
2235 ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
2236 ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
2237 ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
2238 ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
2239 ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
2240 ("Clock and Effort"
2241 ["Clock in" org-agenda-clock-in t]
2242 ["Clock out" org-agenda-clock-out t]
2243 ["Clock cancel" org-agenda-clock-cancel t]
2244 ["Goto running clock" org-clock-goto t]
2245 "--"
2246 ["Set Effort" org-agenda-set-effort t]
2247 ["Change clocked effort" org-clock-modify-effort-estimate
2248 (org-clock-is-active)])
2249 ("Priority"
2250 ["Set Priority" org-agenda-priority t]
2251 ["Increase Priority" org-agenda-priority-up t]
2252 ["Decrease Priority" org-agenda-priority-down t]
2253 ["Show Priority" org-agenda-show-priority t])
2254 ("Calendar/Diary"
2255 ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
2256 ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
2257 ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
2258 ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
2259 ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
2260 ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
2261 "--"
2262 ["Create iCalendar File" org-export-icalendar-combine-agenda-files t])
2263 "--"
2264 ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
2265 "--"
2266 ("MobileOrg"
2267 ["Push Files and Views" org-mobile-push t]
2268 ["Get Captured and Flagged" org-mobile-pull t]
2269 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
2270 ["Show note / unflag" org-agenda-show-the-flagging-note t]
2271 "--"
2272 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
2273 "--"
2274 ["Quit" org-agenda-quit t]
2275 ["Exit and Release Buffers" org-agenda-exit t]
2278 ;;; Agenda undo
2280 (defvar org-agenda-allow-remote-undo t
2281 "Non-nil means allow remote undo from the agenda buffer.")
2282 (defvar org-agenda-undo-list nil
2283 "List of undoable operations in the agenda since last refresh.")
2284 (defvar org-agenda-undo-has-started-in nil
2285 "Buffers that have already seen `undo-start' in the current undo sequence.")
2286 (defvar org-agenda-pending-undo-list nil
2287 "In a series of undo commands, this is the list of remaining undo items.")
2289 (defun org-agenda-undo ()
2290 "Undo a remote editing step in the agenda.
2291 This undoes changes both in the agenda buffer and in the remote buffer
2292 that have been changed along."
2293 (interactive)
2294 (or org-agenda-allow-remote-undo
2295 (error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
2296 (if (not (eq this-command last-command))
2297 (setq org-agenda-undo-has-started-in nil
2298 org-agenda-pending-undo-list org-agenda-undo-list))
2299 (if (not org-agenda-pending-undo-list)
2300 (error "No further undo information"))
2301 (let* ((entry (pop org-agenda-pending-undo-list))
2302 buf line cmd rembuf)
2303 (setq cmd (pop entry) line (pop entry))
2304 (setq rembuf (nth 2 entry))
2305 (org-with-remote-undo rembuf
2306 (while (bufferp (setq buf (pop entry)))
2307 (if (pop entry)
2308 (with-current-buffer buf
2309 (let ((last-undo-buffer buf)
2310 (inhibit-read-only t))
2311 (unless (memq buf org-agenda-undo-has-started-in)
2312 (push buf org-agenda-undo-has-started-in)
2313 (make-local-variable 'pending-undo-list)
2314 (undo-start))
2315 (while (and pending-undo-list
2316 (listp pending-undo-list)
2317 (not (car pending-undo-list)))
2318 (pop pending-undo-list))
2319 (undo-more 1))))))
2320 (org-goto-line line)
2321 (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
2323 (defun org-verify-change-for-undo (l1 l2)
2324 "Verify that a real change occurred between the undo lists L1 and L2."
2325 (while (and l1 (listp l1) (null (car l1))) (pop l1))
2326 (while (and l2 (listp l2) (null (car l2))) (pop l2))
2327 (not (eq l1 l2)))
2329 ;;; Agenda dispatch
2331 (defvar org-agenda-restrict nil)
2332 (defvar org-agenda-restrict-begin (make-marker))
2333 (defvar org-agenda-restrict-end (make-marker))
2334 (defvar org-agenda-last-dispatch-buffer nil)
2335 (defvar org-agenda-overriding-restriction nil)
2337 ;;;###autoload
2338 (defun org-agenda (&optional arg keys restriction)
2339 "Dispatch agenda commands to collect entries to the agenda buffer.
2340 Prompts for a command to execute. Any prefix arg will be passed
2341 on to the selected command. The default selections are:
2343 a Call `org-agenda-list' to display the agenda for current day or week.
2344 t Call `org-todo-list' to display the global todo list.
2345 T Call `org-todo-list' to display the global todo list, select only
2346 entries with a specific TODO keyword (the user gets a prompt).
2347 m Call `org-tags-view' to display headlines with tags matching
2348 a condition (the user is prompted for the condition).
2349 M Like `m', but select only TODO entries, no ordinary headlines.
2350 L Create a timeline for the current buffer.
2351 e Export views to associated files.
2352 s Search entries for keywords.
2353 / Multi occur across all agenda files and also files listed
2354 in `org-agenda-text-search-extra-files'.
2355 < Restrict agenda commands to buffer, subtree, or region.
2356 Press several times to get the desired effect.
2357 > Remove a previous restriction.
2358 # List \"stuck\" projects.
2359 ! Configure what \"stuck\" means.
2360 C Configure custom agenda commands.
2362 More commands can be added by configuring the variable
2363 `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
2364 searches can be pre-defined in this way.
2366 If the current buffer is in Org-mode and visiting a file, you can also
2367 first press `<' once to indicate that the agenda should be temporarily
2368 \(until the next use of \\[org-agenda]) restricted to the current file.
2369 Pressing `<' twice means to restrict to the current subtree or region
2370 \(if active)."
2371 (interactive "P")
2372 (catch 'exit
2373 (let* ((prefix-descriptions nil)
2374 (org-agenda-buffer-name org-agenda-buffer-name)
2375 (org-agenda-window-setup (if (equal (buffer-name)
2376 org-agenda-buffer-name)
2377 'current-window
2378 org-agenda-window-setup))
2379 (org-agenda-custom-commands-orig org-agenda-custom-commands)
2380 (org-agenda-custom-commands
2381 ;; normalize different versions
2382 (delq nil
2383 (mapcar
2384 (lambda (x)
2385 (cond ((stringp (cdr x))
2386 (push x prefix-descriptions)
2387 nil)
2388 ((stringp (nth 1 x)) x)
2389 ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
2390 (t (cons (car x) (cons "" (cdr x))))))
2391 org-agenda-custom-commands)))
2392 (buf (current-buffer))
2393 (bfn (buffer-file-name (buffer-base-buffer)))
2394 entry key type match lprops ans)
2395 ;; Turn off restriction unless there is an overriding one,
2396 (unless org-agenda-overriding-restriction
2397 (unless (org-bound-and-true-p org-agenda-keep-restricted-file-list)
2398 ;; There is a request to keep the file list in place
2399 (put 'org-agenda-files 'org-restrict nil))
2400 (setq org-agenda-restrict nil)
2401 (move-marker org-agenda-restrict-begin nil)
2402 (move-marker org-agenda-restrict-end nil))
2403 ;; Delete old local properties
2404 (put 'org-agenda-redo-command 'org-lprops nil)
2405 ;; Delete previously set last-arguments
2406 (put 'org-agenda-redo-command 'last-args nil)
2407 ;; Remember where this call originated
2408 (setq org-agenda-last-dispatch-buffer (current-buffer))
2409 (unless keys
2410 (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
2411 keys (car ans)
2412 restriction (cdr ans)))
2413 ;; If we have sticky agenda buffers, set a name for the buffer,
2414 ;; depending on the invoking keys. The user may still set this
2415 ;; as a command option, which will overwrite what we do here.
2416 (if org-agenda-sticky
2417 (setq org-agenda-buffer-name (format "*Org Agenda(%s)*" keys)))
2418 ;; Establish the restriction, if any
2419 (when (and (not org-agenda-overriding-restriction) restriction)
2420 (put 'org-agenda-files 'org-restrict (list bfn))
2421 (cond
2422 ((eq restriction 'region)
2423 (setq org-agenda-restrict t)
2424 (move-marker org-agenda-restrict-begin (region-beginning))
2425 (move-marker org-agenda-restrict-end (region-end)))
2426 ((eq restriction 'subtree)
2427 (save-excursion
2428 (setq org-agenda-restrict t)
2429 (org-back-to-heading t)
2430 (move-marker org-agenda-restrict-begin (point))
2431 (move-marker org-agenda-restrict-end
2432 (progn (org-end-of-subtree t)))))))
2434 ;; For example the todo list should not need it (but does...)
2435 (cond
2436 ((setq entry (assoc keys org-agenda-custom-commands))
2437 (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
2438 (progn
2439 (setq type (nth 2 entry) match (eval (nth 3 entry))
2440 lprops (nth 4 entry))
2441 (put 'org-agenda-redo-command 'org-lprops lprops)
2442 (cond
2443 ((eq type 'agenda)
2444 (org-let lprops '(org-agenda-list current-prefix-arg)))
2445 ((eq type 'alltodo)
2446 (org-let lprops '(org-todo-list current-prefix-arg)))
2447 ((eq type 'search)
2448 (org-let lprops '(org-search-view current-prefix-arg match nil)))
2449 ((eq type 'stuck)
2450 (org-let lprops '(org-agenda-list-stuck-projects
2451 current-prefix-arg)))
2452 ((eq type 'tags)
2453 (org-let lprops '(org-tags-view current-prefix-arg match)))
2454 ((eq type 'tags-todo)
2455 (org-let lprops '(org-tags-view '(4) match)))
2456 ((eq type 'todo)
2457 (org-let lprops '(org-todo-list match)))
2458 ((eq type 'tags-tree)
2459 (org-check-for-org-mode)
2460 (org-let lprops '(org-match-sparse-tree current-prefix-arg match)))
2461 ((eq type 'todo-tree)
2462 (org-check-for-org-mode)
2463 (org-let lprops
2464 '(org-occur (concat "^" org-outline-regexp "[ \t]*"
2465 (regexp-quote match) "\\>"))))
2466 ((eq type 'occur-tree)
2467 (org-check-for-org-mode)
2468 (org-let lprops '(org-occur match)))
2469 ((functionp type)
2470 (org-let lprops '(funcall type match)))
2471 ((fboundp type)
2472 (org-let lprops '(funcall type match)))
2473 (t (error "Invalid custom agenda command type %s" type))))
2474 (org-agenda-run-series (nth 1 entry) (cddr entry))))
2475 ((equal keys "C")
2476 (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
2477 (customize-variable 'org-agenda-custom-commands))
2478 ((equal keys "a") (call-interactively 'org-agenda-list))
2479 ((equal keys "s") (call-interactively 'org-search-view))
2480 ((equal keys "t") (call-interactively 'org-todo-list))
2481 ((equal keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
2482 ((equal keys "m") (call-interactively 'org-tags-view))
2483 ((equal keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
2484 ((equal keys "e") (call-interactively 'org-store-agenda-views))
2485 ((equal keys "?") (org-tags-view nil "+FLAGGED")
2486 (org-add-hook
2487 'post-command-hook
2488 (lambda ()
2489 (unless (current-message)
2490 (let* ((m (org-agenda-get-any-marker))
2491 (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
2492 (when note
2493 (message (concat
2494 "FLAGGING-NOTE ([?] for more info): "
2495 (org-add-props
2496 (replace-regexp-in-string
2497 "\\\\n" "//"
2498 (copy-sequence note))
2499 nil 'face 'org-warning)))))))
2500 t t))
2501 ((equal keys "L")
2502 (unless (derived-mode-p 'org-mode)
2503 (error "This is not an Org-mode file"))
2504 (unless restriction
2505 (put 'org-agenda-files 'org-restrict (list bfn))
2506 (org-call-with-arg 'org-timeline arg)))
2507 ((equal keys "#") (call-interactively 'org-agenda-list-stuck-projects))
2508 ((equal keys "/") (call-interactively 'org-occur-in-agenda-files))
2509 ((equal keys "!") (customize-variable 'org-stuck-projects))
2510 (t (error "Invalid agenda key"))))))
2512 (defun org-agenda-append-agenda ()
2513 "Append another agenda view to the current one.
2514 This function allows interactive building of block agendas.
2515 Agenda views are separated by `org-agenda-block-separator'."
2516 (interactive)
2517 (unless (string= (buffer-name) org-agenda-buffer-name)
2518 (error "Can only append from within agenda buffer"))
2519 (let ((org-agenda-multi t))
2520 (org-agenda)
2521 (widen)))
2523 (defun org-agenda-normalize-custom-commands (cmds)
2524 (delq nil
2525 (mapcar
2526 (lambda (x)
2527 (cond ((stringp (cdr x)) nil)
2528 ((stringp (nth 1 x)) x)
2529 ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
2530 (t (cons (car x) (cons "" (cdr x))))))
2531 cmds)))
2533 (defun org-agenda-get-restriction-and-command (prefix-descriptions)
2534 "The user interface for selecting an agenda command."
2535 (catch 'exit
2536 (let* ((bfn (buffer-file-name (buffer-base-buffer)))
2537 (restrict-ok (and bfn (derived-mode-p 'org-mode)))
2538 (region-p (org-region-active-p))
2539 (custom org-agenda-custom-commands)
2540 (selstring "")
2541 restriction second-time
2542 c entry key type match prefixes rmheader header-end custom1 desc
2543 line lines left right n n1)
2544 (save-window-excursion
2545 (delete-other-windows)
2546 (org-switch-to-buffer-other-window " *Agenda Commands*")
2547 (erase-buffer)
2548 (insert (eval-when-compile
2549 (let ((header
2550 "Press key for an agenda command: < Buffer, subtree/region restriction
2551 -------------------------------- > Remove restriction
2552 a Agenda for current week or day e Export agenda views
2553 t List of all TODO entries T Entries with special TODO kwd
2554 m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
2555 L Timeline for current buffer # List stuck projects (!=configure)
2556 s Search for keywords * Toggle sticky agenda views
2557 / Multi-occur ? Find :FLAGGED: entries
2558 C Configure custom agenda commands
2560 (start 0))
2561 (while (string-match
2562 "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
2563 header start)
2564 (setq start (match-end 0))
2565 (add-text-properties (match-beginning 2) (match-end 2)
2566 '(face bold) header))
2567 header)))
2568 (setq header-end (move-marker (make-marker) (point)))
2569 (while t
2570 (setq custom1 custom)
2571 (when (eq rmheader t)
2572 (org-goto-line 1)
2573 (re-search-forward ":" nil t)
2574 (delete-region (match-end 0) (point-at-eol))
2575 (forward-char 1)
2576 (looking-at "-+")
2577 (delete-region (match-end 0) (point-at-eol))
2578 (move-marker header-end (match-end 0)))
2579 (goto-char header-end)
2580 (delete-region (point) (point-max))
2582 ;; Produce all the lines that describe custom commands and prefixes
2583 (setq lines nil)
2584 (while (setq entry (pop custom1))
2585 (setq key (car entry) desc (nth 1 entry)
2586 type (nth 2 entry)
2587 match (nth 3 entry))
2588 (if (> (length key) 1)
2589 (add-to-list 'prefixes (string-to-char key))
2590 (setq line
2591 (format
2592 "%-4s%-14s"
2593 (org-add-props (copy-sequence key)
2594 '(face bold))
2595 (cond
2596 ((string-match "\\S-" desc) desc)
2597 ((eq type 'agenda) "Agenda for current week or day")
2598 ((eq type 'alltodo) "List of all TODO entries")
2599 ((eq type 'search) "Word search")
2600 ((eq type 'stuck) "List of stuck projects")
2601 ((eq type 'todo) "TODO keyword")
2602 ((eq type 'tags) "Tags query")
2603 ((eq type 'tags-todo) "Tags (TODO)")
2604 ((eq type 'tags-tree) "Tags tree")
2605 ((eq type 'todo-tree) "TODO kwd tree")
2606 ((eq type 'occur-tree) "Occur tree")
2607 ((functionp type) (if (symbolp type)
2608 (symbol-name type)
2609 "Lambda expression"))
2610 (t "???"))))
2611 (if org-agenda-menu-show-matcher
2612 (setq line
2613 (concat line ": "
2614 (cond
2615 ((stringp match)
2616 (setq match (copy-sequence match))
2617 (org-add-props match nil 'face 'org-warning))
2618 (match
2619 (format "set of %d commands" (length match)))
2620 (t ""))))
2621 (if (org-string-nw-p match)
2622 (add-text-properties
2623 0 (length line) (list 'help-echo
2624 (concat "Matcher: "match)) line)))
2625 (push line lines)))
2626 (setq lines (nreverse lines))
2627 (when prefixes
2628 (mapc (lambda (x)
2629 (push
2630 (format "%s %s"
2631 (org-add-props (char-to-string x)
2632 nil 'face 'bold)
2633 (or (cdr (assoc (concat selstring
2634 (char-to-string x))
2635 prefix-descriptions))
2636 "Prefix key"))
2637 lines))
2638 prefixes))
2640 ;; Check if we should display in two columns
2641 (if org-agenda-menu-two-columns
2642 (progn
2643 (setq n (length lines)
2644 n1 (+ (/ n 2) (mod n 2))
2645 right (nthcdr n1 lines)
2646 left (copy-sequence lines))
2647 (setcdr (nthcdr (1- n1) left) nil))
2648 (setq left lines right nil))
2649 (while left
2650 (insert "\n" (pop left))
2651 (when right
2652 (if (< (current-column) 40)
2653 (move-to-column 40 t)
2654 (insert " "))
2655 (insert (pop right))))
2657 ;; Make the window the right size
2658 (goto-char (point-min))
2659 (if second-time
2660 (if (not (pos-visible-in-window-p (point-max)))
2661 (org-fit-window-to-buffer))
2662 (setq second-time t)
2663 (org-fit-window-to-buffer))
2665 ;; Ask for selection
2666 (message "Press key for agenda command%s:"
2667 (if (or restrict-ok org-agenda-overriding-restriction)
2668 (if org-agenda-overriding-restriction
2669 " (restriction lock active)"
2670 (if restriction
2671 (format " (restricted to %s)" restriction)
2672 " (unrestricted)"))
2673 ""))
2674 (setq c (read-char-exclusive))
2675 (message "")
2676 (cond
2677 ((assoc (char-to-string c) custom)
2678 (setq selstring (concat selstring (char-to-string c)))
2679 (throw 'exit (cons selstring restriction)))
2680 ((memq c prefixes)
2681 (setq selstring (concat selstring (char-to-string c))
2682 prefixes nil
2683 rmheader (or rmheader t)
2684 custom (delq nil (mapcar
2685 (lambda (x)
2686 (if (or (= (length (car x)) 1)
2687 (/= (string-to-char (car x)) c))
2689 (cons (substring (car x) 1) (cdr x))))
2690 custom))))
2691 ((eq c ?*)
2692 (call-interactively 'org-toggle-sticky-agenda)
2693 (sit-for 2))
2694 ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
2695 (message "Restriction is only possible in Org-mode buffers")
2696 (ding) (sit-for 1))
2697 ((eq c ?1)
2698 (org-agenda-remove-restriction-lock 'noupdate)
2699 (setq restriction 'buffer))
2700 ((eq c ?0)
2701 (org-agenda-remove-restriction-lock 'noupdate)
2702 (setq restriction (if region-p 'region 'subtree)))
2703 ((eq c ?<)
2704 (org-agenda-remove-restriction-lock 'noupdate)
2705 (setq restriction
2706 (cond
2707 ((eq restriction 'buffer)
2708 (if region-p 'region 'subtree))
2709 ((memq restriction '(subtree region))
2710 nil)
2711 (t 'buffer))))
2712 ((eq c ?>)
2713 (org-agenda-remove-restriction-lock 'noupdate)
2714 (setq restriction nil))
2715 ((and (equal selstring "") (memq c '(?s ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
2716 (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
2717 ((and (> (length selstring) 0) (eq c ?\d))
2718 (delete-window)
2719 (org-agenda-get-restriction-and-command prefix-descriptions))
2721 ((equal c ?q) (error "Abort"))
2722 (t (error "Invalid key %c" c))))))))
2724 (defvar org-agenda-overriding-arguments nil) ; dynamically scoped parameter
2725 (defvar org-agenda-last-arguments nil
2726 "The arguments of the previous call to `org-agenda'.")
2727 (defun org-agenda-run-series (name series)
2728 (org-let (nth 1 series) '(org-prepare-agenda name))
2729 ;; We need to reset agenda markers here, because when constructing a
2730 ;; block agenda, the individual blocks do not do that.
2731 (org-agenda-reset-markers)
2732 (let* ((org-agenda-multi t)
2733 (redo (list 'org-agenda-run-series name (list 'quote series)))
2734 (org-agenda-overriding-arguments
2735 (or org-agenda-overriding-arguments
2736 (unless (null (delq nil (get 'org-agenda-redo-command 'last-args)))
2737 (get 'org-agenda-redo-command 'last-args))))
2738 (cmds (car series))
2739 (gprops (nth 1 series))
2740 match ;; The byte compiler incorrectly complains about this. Keep it!
2741 cmd type lprops)
2742 (while (setq cmd (pop cmds))
2743 (setq type (car cmd) match (eval (nth 1 cmd)) lprops (nth 2 cmd))
2744 (cond
2745 ((eq type 'agenda)
2746 (org-let2 gprops lprops
2747 '(call-interactively 'org-agenda-list)))
2748 ((eq type 'alltodo)
2749 (org-let2 gprops lprops
2750 '(call-interactively 'org-todo-list)))
2751 ((eq type 'search)
2752 (org-let2 gprops lprops
2753 '(org-search-view current-prefix-arg match nil)))
2754 ((eq type 'stuck)
2755 (org-let2 gprops lprops
2756 '(call-interactively 'org-agenda-list-stuck-projects)))
2757 ((eq type 'tags)
2758 (org-let2 gprops lprops
2759 '(org-tags-view current-prefix-arg match)))
2760 ((eq type 'tags-todo)
2761 (org-let2 gprops lprops
2762 '(org-tags-view '(4) match)))
2763 ((eq type 'todo)
2764 (org-let2 gprops lprops
2765 '(org-todo-list match)))
2766 ((fboundp type)
2767 (org-let2 gprops lprops
2768 '(funcall type match)))
2769 (t (error "Invalid type in command series"))))
2770 (widen)
2771 (setq org-agenda-redo-command redo)
2772 (put 'org-agenda-redo-command 'last-args org-agenda-last-arguments)
2773 (goto-char (point-min)))
2774 (org-fit-agenda-window)
2775 (org-let (nth 1 series) '(org-finalize-agenda)))
2777 ;;;###autoload
2778 (defmacro org-batch-agenda (cmd-key &rest parameters)
2779 "Run an agenda command in batch mode and send the result to STDOUT.
2780 If CMD-KEY is a string of length 1, it is used as a key in
2781 `org-agenda-custom-commands' and triggers this command. If it is a
2782 longer string it is used as a tags/todo match string.
2783 Parameters are alternating variable names and values that will be bound
2784 before running the agenda command."
2785 (org-eval-in-environment (org-make-parameter-alist parameters)
2786 (if (> (length cmd-key) 2)
2787 (org-tags-view nil cmd-key)
2788 (org-agenda nil cmd-key)))
2789 (set-buffer org-agenda-buffer-name)
2790 (princ (buffer-string)))
2791 (def-edebug-spec org-batch-agenda (form &rest sexp))
2793 (defvar org-agenda-info nil)
2795 ;;;###autoload
2796 (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
2797 "Run an agenda command in batch mode and send the result to STDOUT.
2798 If CMD-KEY is a string of length 1, it is used as a key in
2799 `org-agenda-custom-commands' and triggers this command. If it is a
2800 longer string it is used as a tags/todo match string.
2801 Parameters are alternating variable names and values that will be bound
2802 before running the agenda command.
2804 The output gives a line for each selected agenda item. Each
2805 item is a list of comma-separated values, like this:
2807 category,head,type,todo,tags,date,time,extra,priority-l,priority-n
2809 category The category of the item
2810 head The headline, without TODO kwd, TAGS and PRIORITY
2811 type The type of the agenda entry, can be
2812 todo selected in TODO match
2813 tagsmatch selected in tags match
2814 diary imported from diary
2815 deadline a deadline on given date
2816 scheduled scheduled on given date
2817 timestamp entry has timestamp on given date
2818 closed entry was closed on given date
2819 upcoming-deadline warning about deadline
2820 past-scheduled forwarded scheduled item
2821 block entry has date block including g. date
2822 todo The todo keyword, if any
2823 tags All tags including inherited ones, separated by colons
2824 date The relevant date, like 2007-2-14
2825 time The time, like 15:00-16:50
2826 extra Sting with extra planning info
2827 priority-l The priority letter if any was given
2828 priority-n The computed numerical priority
2829 agenda-day The day in the agenda where this is listed"
2830 (org-eval-in-environment (append '((org-agenda-remove-tags t))
2831 (org-make-parameter-alist parameters))
2832 (if (> (length cmd-key) 2)
2833 (org-tags-view nil cmd-key)
2834 (org-agenda nil cmd-key)))
2835 (set-buffer org-agenda-buffer-name)
2836 (let* ((lines (org-split-string (buffer-string) "\n"))
2837 line)
2838 (while (setq line (pop lines))
2839 (catch 'next
2840 (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
2841 (setq org-agenda-info
2842 (org-fix-agenda-info (text-properties-at 0 line)))
2843 (princ
2844 (mapconcat 'org-agenda-export-csv-mapper
2845 '(org-category txt type todo tags date time extra
2846 priority-letter priority agenda-day)
2847 ","))
2848 (princ "\n")))))
2849 (def-edebug-spec org-batch-agenda-csv (form &rest sexp))
2851 (defun org-fix-agenda-info (props)
2852 "Make sure all properties on an agenda item have a canonical form.
2853 This ensures the export commands can easily use it."
2854 (let (tmp re)
2855 (when (setq tmp (plist-get props 'tags))
2856 (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
2857 (when (setq tmp (plist-get props 'date))
2858 (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
2859 (let ((calendar-date-display-form '(year "-" month "-" day)))
2860 '((format "%4d, %9s %2s, %4s" dayname monthname day year))
2862 (setq tmp (calendar-date-string tmp)))
2863 (setq props (plist-put props 'date tmp)))
2864 (when (setq tmp (plist-get props 'day))
2865 (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
2866 (let ((calendar-date-display-form '(year "-" month "-" day)))
2867 (setq tmp (calendar-date-string tmp)))
2868 (setq props (plist-put props 'day tmp))
2869 (setq props (plist-put props 'agenda-day tmp)))
2870 (when (setq tmp (plist-get props 'txt))
2871 (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
2872 (plist-put props 'priority-letter (match-string 1 tmp))
2873 (setq tmp (replace-match "" t t tmp)))
2874 (when (and (setq re (plist-get props 'org-todo-regexp))
2875 (setq re (concat "\\`\\.*" re " ?"))
2876 (string-match re tmp))
2877 (plist-put props 'todo (match-string 1 tmp))
2878 (setq tmp (replace-match "" t t tmp)))
2879 (plist-put props 'txt tmp)))
2880 props)
2882 (defun org-agenda-export-csv-mapper (prop)
2883 (let ((res (plist-get org-agenda-info prop)))
2884 (setq res
2885 (cond
2886 ((not res) "")
2887 ((stringp res) res)
2888 (t (prin1-to-string res))))
2889 (while (string-match "," res)
2890 (setq res (replace-match ";" t t res)))
2891 (org-trim res)))
2893 ;;;###autoload
2894 (defun org-store-agenda-views (&rest parameters)
2895 (interactive)
2896 (eval (list 'org-batch-store-agenda-views)))
2898 ;;;###autoload
2899 (defmacro org-batch-store-agenda-views (&rest parameters)
2900 "Run all custom agenda commands that have a file argument."
2901 (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
2902 (pop-up-frames nil)
2903 (dir default-directory)
2904 (pars (org-make-parameter-alist parameters))
2905 cmd thiscmdkey files opts cmd-or-set bufname)
2906 (save-window-excursion
2907 (while cmds
2908 (setq cmd (pop cmds)
2909 thiscmdkey (car cmd)
2910 bufname (if org-agenda-sticky (format "*Org Agenda(%s)*" thiscmdkey)
2911 org-agenda-buffer-name)
2912 cmd-or-set (nth 2 cmd)
2913 opts (nth (if (listp cmd-or-set) 3 4) cmd)
2914 files (nth (if (listp cmd-or-set) 4 5) cmd))
2915 (if (stringp files) (setq files (list files)))
2916 (when files
2917 (org-eval-in-environment (append org-agenda-exporter-settings
2918 opts pars)
2919 (org-agenda nil thiscmdkey))
2920 (set-buffer bufname)
2921 (while files
2922 (org-eval-in-environment (append org-agenda-exporter-settings
2923 opts pars)
2924 (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
2925 (and (get-buffer bufname)
2926 (kill-buffer bufname)))))))
2927 (def-edebug-spec org-batch-store-agenda-views (&rest sexp))
2929 (defun org-agenda-mark-header-line (pos)
2930 "Mark the line at POS as an agenda structure header."
2931 (save-excursion
2932 (goto-char pos)
2933 (put-text-property (point-at-bol) (point-at-eol)
2934 'org-agenda-structural-header t)
2935 (when org-agenda-title-append
2936 (put-text-property (point-at-bol) (point-at-eol)
2937 'org-agenda-title-append org-agenda-title-append))))
2939 (defvar org-mobile-creating-agendas)
2940 (defvar org-agenda-write-buffer-name "Agenda View")
2941 (defun org-agenda-write (file &optional open nosettings agenda-bufname)
2942 "Write the current buffer (an agenda view) as a file.
2943 Depending on the extension of the file name, plain text (.txt),
2944 HTML (.html or .htm) or Postscript (.ps) is produced.
2945 If the extension is .ics, run icalendar export over all files used
2946 to construct the agenda and limit the export to entries listed in the
2947 agenda now.
2948 With prefix argument OPEN, open the new file immediately.
2949 If NOSETTINGS is given, do not scope the settings of
2950 `org-agenda-exporter-settings' into the export commands. This is used when
2951 the settings have already been scoped and we do not wish to overrule other,
2952 higher priority settings.
2953 If AGENDA-BUFFER-NAME, use this as the buffer name for the agenda to write."
2954 (interactive "FWrite agenda to file: \nP")
2955 (if (not (file-writable-p file))
2956 (error "Cannot write agenda to file %s" file))
2957 (org-let (if nosettings nil org-agenda-exporter-settings)
2958 '(save-excursion
2959 (save-window-excursion
2960 (org-agenda-mark-filtered-text)
2961 (let ((bs (copy-sequence (buffer-string))) beg)
2962 (org-agenda-unmark-filtered-text)
2963 (with-temp-buffer
2964 (rename-buffer org-agenda-write-buffer-name t)
2965 (set-buffer-modified-p nil)
2966 (insert bs)
2967 (org-agenda-remove-marked-text 'org-filtered)
2968 (while (setq beg (text-property-any (point-min) (point-max)
2969 'org-filtered t))
2970 (delete-region
2971 beg (or (next-single-property-change beg 'org-filtered)
2972 (point-max))))
2973 (run-hooks 'org-agenda-before-write-hook)
2974 (cond
2975 ((org-bound-and-true-p org-mobile-creating-agendas)
2976 (org-mobile-write-agenda-for-mobile file))
2977 ((string-match "\\.html?\\'" file)
2978 (require 'htmlize)
2979 (set-buffer (htmlize-buffer (current-buffer)))
2980 (when (and org-agenda-export-html-style
2981 (string-match "<style>" org-agenda-export-html-style))
2982 ;; replace <style> section with org-agenda-export-html-style
2983 (goto-char (point-min))
2984 (kill-region (- (search-forward "<style") 6)
2985 (search-forward "</style>"))
2986 (insert org-agenda-export-html-style))
2987 (write-file file)
2988 (kill-buffer (current-buffer))
2989 (message "HTML written to %s" file))
2990 ((string-match "\\.ps\\'" file)
2991 (require 'ps-print)
2992 (ps-print-buffer-with-faces file)
2993 (message "Postscript written to %s" file))
2994 ((string-match "\\.pdf\\'" file)
2995 (require 'ps-print)
2996 (ps-print-buffer-with-faces
2997 (concat (file-name-sans-extension file) ".ps"))
2998 (call-process "ps2pdf" nil nil nil
2999 (expand-file-name
3000 (concat (file-name-sans-extension file) ".ps"))
3001 (expand-file-name file))
3002 (delete-file (concat (file-name-sans-extension file) ".ps"))
3003 (message "PDF written to %s" file))
3004 ((string-match "\\.ics\\'" file)
3005 (require 'org-icalendar)
3006 (let ((org-agenda-marker-table
3007 (org-create-marker-find-array
3008 (org-agenda-collect-markers)))
3009 (org-icalendar-verify-function 'org-check-agenda-marker-table)
3010 (org-combined-agenda-icalendar-file file))
3011 (apply 'org-export-icalendar 'combine
3012 (org-agenda-files nil 'ifmode))))
3014 (let ((bs (buffer-string)))
3015 (find-file file)
3016 (erase-buffer)
3017 (insert bs)
3018 (save-buffer 0)
3019 (kill-buffer (current-buffer))
3020 (message "Plain text written to %s" file))))))))
3021 (set-buffer (or agenda-bufname
3022 (and (called-interactively-p 'any) (buffer-name))
3023 org-agenda-buffer-name)))
3024 (when open (org-open-file file)))
3026 (defvar org-agenda-tag-filter-overlays nil)
3027 (defvar org-agenda-cat-filter-overlays nil)
3029 (defun org-agenda-mark-filtered-text ()
3030 "Mark all text hidden by filtering with a text property."
3031 (let ((inhibit-read-only t))
3032 (mapc
3033 (lambda (o)
3034 (when (equal (overlay-buffer o) (current-buffer))
3035 (put-text-property
3036 (overlay-start o) (overlay-end o)
3037 'org-filtered t)))
3038 (append org-agenda-tag-filter-overlays
3039 org-agenda-cat-filter-overlays))))
3041 (defun org-agenda-unmark-filtered-text ()
3042 "Remove the filtering text property."
3043 (let ((inhibit-read-only t))
3044 (remove-text-properties (point-min) (point-max) '(org-filtered t))))
3046 (defun org-agenda-remove-marked-text (property &optional value)
3047 "Delete all text marked with VALUE of PROPERTY.
3048 VALUE defaults to t."
3049 (let (beg)
3050 (setq value (or value t))
3051 (while (setq beg (text-property-any (point-min) (point-max)
3052 property value))
3053 (delete-region
3054 beg (or (next-single-property-change beg 'org-filtered)
3055 (point-max))))))
3057 (defun org-agenda-add-entry-text ()
3058 "Add entry text to agenda lines.
3059 This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
3060 entry text following headings shown in the agenda.
3061 Drawers will be excluded, also the line with scheduling/deadline info."
3062 (when (and (> org-agenda-add-entry-text-maxlines 0)
3063 (not (org-bound-and-true-p org-mobile-creating-agendas)))
3064 (let (m txt)
3065 (goto-char (point-min))
3066 (while (not (eobp))
3067 (if (not (setq m (org-get-at-bol 'org-hd-marker)))
3068 (beginning-of-line 2)
3069 (setq txt (org-agenda-get-some-entry-text
3070 m org-agenda-add-entry-text-maxlines " > "))
3071 (end-of-line 1)
3072 (if (string-match "\\S-" txt)
3073 (insert "\n" txt)
3074 (or (eobp) (forward-char 1))))))))
3076 (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
3077 &rest keep)
3078 "Extract entry text from MARKER, at most N-LINES lines.
3079 This will ignore drawers etc, just get the text.
3080 If INDENT is given, prefix every line with this string. If KEEP is
3081 given, it is a list of symbols, defining stuff that should not be
3082 removed from the entry content. Currently only `planning' is allowed here."
3083 (let (txt drawer-re kwd-time-re ind)
3084 (save-excursion
3085 (with-current-buffer (marker-buffer marker)
3086 (if (not (derived-mode-p 'org-mode))
3087 (setq txt "")
3088 (save-excursion
3089 (save-restriction
3090 (widen)
3091 (goto-char marker)
3092 (end-of-line 1)
3093 (setq txt (buffer-substring
3094 (min (1+ (point)) (point-max))
3095 (progn (outline-next-heading) (point)))
3096 drawer-re org-drawer-regexp
3097 kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
3098 ".*\n?"))
3099 (with-temp-buffer
3100 (insert txt)
3101 (when org-agenda-add-entry-text-descriptive-links
3102 (goto-char (point-min))
3103 (while (org-activate-bracket-links (point-max))
3104 (add-text-properties (match-beginning 0) (match-end 0)
3105 '(face org-link))))
3106 (goto-char (point-min))
3107 (while (re-search-forward org-bracket-link-regexp (point-max) t)
3108 (set-text-properties (match-beginning 0) (match-end 0)
3109 nil))
3110 (goto-char (point-min))
3111 (while (re-search-forward drawer-re nil t)
3112 (delete-region
3113 (match-beginning 0)
3114 (progn (re-search-forward
3115 "^[ \t]*:END:.*\n?" nil 'move)
3116 (point))))
3117 (unless (member 'planning keep)
3118 (goto-char (point-min))
3119 (while (re-search-forward kwd-time-re nil t)
3120 (replace-match "")))
3121 (goto-char (point-min))
3122 (when org-agenda-entry-text-exclude-regexps
3123 (let ((re-list org-agenda-entry-text-exclude-regexps) re)
3124 (while (setq re (pop re-list))
3125 (goto-char (point-min))
3126 (while (re-search-forward re nil t)
3127 (replace-match "")))))
3128 (goto-char (point-max))
3129 (skip-chars-backward " \t\n")
3130 (if (looking-at "[ \t\n]+\\'") (replace-match ""))
3132 ;; find and remove min common indentation
3133 (goto-char (point-min))
3134 (untabify (point-min) (point-max))
3135 (setq ind (org-get-indentation))
3136 (while (not (eobp))
3137 (unless (looking-at "[ \t]*$")
3138 (setq ind (min ind (org-get-indentation))))
3139 (beginning-of-line 2))
3140 (goto-char (point-min))
3141 (while (not (eobp))
3142 (unless (looking-at "[ \t]*$")
3143 (move-to-column ind)
3144 (delete-region (point-at-bol) (point)))
3145 (beginning-of-line 2))
3147 (run-hooks 'org-agenda-entry-text-cleanup-hook)
3149 (goto-char (point-min))
3150 (when indent
3151 (while (and (not (eobp)) (re-search-forward "^" nil t))
3152 (replace-match indent t t)))
3153 (goto-char (point-min))
3154 (while (looking-at "[ \t]*\n") (replace-match ""))
3155 (goto-char (point-max))
3156 (when (> (org-current-line)
3157 n-lines)
3158 (org-goto-line (1+ n-lines))
3159 (backward-char 1))
3160 (setq txt (buffer-substring (point-min) (point)))))))))
3161 txt))
3163 (defun org-agenda-collect-markers ()
3164 "Collect the markers pointing to entries in the agenda buffer."
3165 (let (m markers)
3166 (save-excursion
3167 (goto-char (point-min))
3168 (while (not (eobp))
3169 (when (setq m (or (org-get-at-bol 'org-hd-marker)
3170 (org-get-at-bol 'org-marker)))
3171 (push m markers))
3172 (beginning-of-line 2)))
3173 (nreverse markers)))
3175 (defun org-create-marker-find-array (marker-list)
3176 "Create a alist of files names with all marker positions in that file."
3177 (let (f tbl m a p)
3178 (while (setq m (pop marker-list))
3179 (setq p (marker-position m)
3180 f (buffer-file-name (or (buffer-base-buffer
3181 (marker-buffer m))
3182 (marker-buffer m))))
3183 (if (setq a (assoc f tbl))
3184 (push (marker-position m) (cdr a))
3185 (push (list f p) tbl)))
3186 (mapcar (lambda (x) (setcdr x (sort (copy-sequence (cdr x)) '<)) x)
3187 tbl)))
3189 (defvar org-agenda-marker-table nil) ; dynamically scoped parameter
3190 (defun org-check-agenda-marker-table ()
3191 "Check of the current entry is on the marker list."
3192 (let ((file (buffer-file-name (or (buffer-base-buffer) (current-buffer))))
3194 (and (setq a (assoc file org-agenda-marker-table))
3195 (save-match-data
3196 (save-excursion
3197 (org-back-to-heading t)
3198 (member (point) (cdr a)))))))
3200 (defun org-check-for-org-mode ()
3201 "Make sure current buffer is in org-mode. Error if not."
3202 (or (derived-mode-p 'org-mode)
3203 (error "Cannot execute org-mode agenda command on buffer in %s"
3204 major-mode)))
3206 (defun org-fit-agenda-window ()
3207 "Fit the window to the buffer size."
3208 (and (memq org-agenda-window-setup '(reorganize-frame))
3209 (fboundp 'fit-window-to-buffer)
3210 (org-fit-window-to-buffer
3212 (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
3213 (floor (* (frame-height) (car org-agenda-window-frame-fractions))))))
3215 ;;; Agenda prepare and finalize
3217 (defvar org-agenda-multi nil) ; dynamically scoped
3218 (defvar org-agenda-buffer-name "*Org Agenda*")
3219 (defvar org-pre-agenda-window-conf nil)
3220 (defvar org-agenda-columns-active nil)
3221 (defvar org-agenda-name nil)
3222 (defvar org-agenda-tag-filter nil)
3223 (defvar org-agenda-category-filter nil)
3224 (defvar org-agenda-top-category-filter nil)
3225 (defvar org-agenda-tag-filter-while-redo nil)
3226 (defvar org-agenda-tag-filter-preset nil
3227 "A preset of the tags filter used for secondary agenda filtering.
3228 This must be a list of strings, each string must be a single tag preceded
3229 by \"+\" or \"-\".
3230 This variable should not be set directly, but agenda custom commands can
3231 bind it in the options section. The preset filter is a global property of
3232 the entire agenda view. In a block agenda, it will not work reliably to
3233 define a filter for one of the individual blocks. You need to set it in
3234 the global options and expect it to be applied to the entire view.")
3236 (defvar org-agenda-category-filter-preset nil
3237 "A preset of the category filter used for secondary agenda filtering.
3238 This must be a list of strings, each string must be a single category
3239 preceded by \"+\" or \"-\".
3240 This variable should not be set directly, but agenda custom commands can
3241 bind it in the options section. The preset filter is a global property of
3242 the entire agenda view. In a block agenda, it will not work reliably to
3243 define a filter for one of the individual blocks. You need to set it in
3244 the global options and expect it to be applied to the entire view.")
3247 (defun org-agenda-use-sticky-p ()
3248 "Return non-nil if an agenda buffer named
3249 `org-agenda-buffer-name' exists and should be shown instead of
3250 generating a new one."
3251 (and
3252 ;; turned off by user
3253 org-agenda-sticky
3254 ;; For multi-agenda buffer already exists
3255 (not org-agenda-multi)
3256 ;; buffer found
3257 (get-buffer org-agenda-buffer-name)
3258 ;; C-u parameter is same as last call
3259 (with-current-buffer (get-buffer org-agenda-buffer-name)
3260 (and
3261 (equal current-prefix-arg
3262 org-agenda-last-prefix-arg)
3263 ;; In case user turned stickiness on, while having existing
3264 ;; Agenda buffer active, don't reuse that buffer, because it
3265 ;; does not have org variables local
3266 org-agenda-this-buffer-is-sticky))))
3268 (defun org-prepare-agenda-window (abuf)
3269 "Setup agenda buffer in the window."
3270 (let* ((awin (get-buffer-window abuf))
3271 wconf)
3272 (cond
3273 ((equal (current-buffer) abuf) nil)
3274 (awin (select-window awin))
3275 ((not (setq wconf (current-window-configuration))))
3276 ((equal org-agenda-window-setup 'current-window)
3277 (org-pop-to-buffer-same-window abuf))
3278 ((equal org-agenda-window-setup 'other-window)
3279 (org-switch-to-buffer-other-window abuf))
3280 ((equal org-agenda-window-setup 'other-frame)
3281 (switch-to-buffer-other-frame abuf))
3282 ((equal org-agenda-window-setup 'reorganize-frame)
3283 (delete-other-windows)
3284 (org-switch-to-buffer-other-window abuf)))
3285 ;; additional test in case agenda is invoked from within agenda
3286 ;; buffer via elisp link
3287 (unless (equal (current-buffer) abuf)
3288 (org-pop-to-buffer-same-window abuf))
3289 (setq org-pre-agenda-window-conf wconf)))
3291 (defun org-prepare-agenda (&optional name)
3292 (if (org-agenda-use-sticky-p)
3293 (progn
3294 ;; Popup existing buffer
3295 (org-prepare-agenda-window (get-buffer org-agenda-buffer-name))
3296 (message "Sticky Agenda buffer, use `r' to refresh")
3297 (throw 'exit nil))
3298 (setq org-todo-keywords-for-agenda nil)
3299 (setq org-drawers-for-agenda nil)
3300 (unless org-agenda-persistent-filter
3301 (setq org-agenda-tag-filter nil
3302 org-agenda-category-filter nil))
3303 (put 'org-agenda-tag-filter :preset-filter
3304 org-agenda-tag-filter-preset)
3305 (put 'org-agenda-category-filter :preset-filter
3306 org-agenda-category-filter-preset)
3307 (if org-agenda-multi
3308 (progn
3309 (setq buffer-read-only nil)
3310 (goto-char (point-max))
3311 (unless (or (bobp) org-agenda-compact-blocks
3312 (not org-agenda-block-separator))
3313 (insert "\n"
3314 (if (stringp org-agenda-block-separator)
3315 org-agenda-block-separator
3316 (make-string (window-width) org-agenda-block-separator))
3317 "\n"))
3318 (narrow-to-region (point) (point-max)))
3319 (setq org-done-keywords-for-agenda nil)
3321 ;; Setting any org variables that are in org-agenda-local-vars
3322 ;; list need to be done after the prepare call
3323 (org-prepare-agenda-window (get-buffer-create org-agenda-buffer-name))
3324 (setq buffer-read-only nil)
3325 (org-agenda-reset-markers)
3326 (let ((inhibit-read-only t)) (erase-buffer))
3327 (org-agenda-mode)
3328 (setq org-agenda-buffer (current-buffer))
3329 (setq org-agenda-contributing-files nil)
3330 (setq org-agenda-columns-active nil)
3331 (org-prepare-agenda-buffers (org-agenda-files nil 'ifmode))
3332 (setq org-todo-keywords-for-agenda
3333 (org-uniquify org-todo-keywords-for-agenda))
3334 (setq org-done-keywords-for-agenda
3335 (org-uniquify org-done-keywords-for-agenda))
3336 (setq org-drawers-for-agenda (org-uniquify org-drawers-for-agenda))
3337 (setq org-agenda-last-prefix-arg current-prefix-arg)
3338 (setq org-agenda-this-buffer-name org-agenda-buffer-name)
3339 (and name (not org-agenda-name)
3340 (org-set-local 'org-agenda-name name)))
3341 (setq buffer-read-only nil)))
3343 (defvar org-agenda-overriding-columns-format) ; From org-colview.el
3344 (defun org-finalize-agenda ()
3345 "Finishing touch for the agenda buffer, called just before displaying it."
3346 (unless org-agenda-multi
3347 (save-excursion
3348 (let ((inhibit-read-only t))
3349 (goto-char (point-min))
3350 (while (org-activate-bracket-links (point-max))
3351 (add-text-properties (match-beginning 0) (match-end 0)
3352 '(face org-link)))
3353 (org-agenda-align-tags)
3354 (unless org-agenda-with-colors
3355 (remove-text-properties (point-min) (point-max) '(face nil))))
3356 (if (and (boundp 'org-agenda-overriding-columns-format)
3357 org-agenda-overriding-columns-format)
3358 (org-set-local 'org-agenda-overriding-columns-format
3359 org-agenda-overriding-columns-format))
3360 (if (and (boundp 'org-agenda-view-columns-initially)
3361 org-agenda-view-columns-initially)
3362 (org-agenda-columns))
3363 (when org-agenda-fontify-priorities
3364 (org-agenda-fontify-priorities))
3365 (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
3366 (org-agenda-dim-blocked-tasks))
3367 (org-agenda-mark-clocking-task)
3368 (when org-agenda-entry-text-mode
3369 (org-agenda-entry-text-hide)
3370 (org-agenda-entry-text-show))
3371 (if (functionp 'org-habit-insert-consistency-graphs)
3372 (org-habit-insert-consistency-graphs))
3373 (run-hooks 'org-finalize-agenda-hook)
3374 (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
3375 (when (or org-agenda-tag-filter (get 'org-agenda-tag-filter :preset-filter))
3376 (org-agenda-filter-apply org-agenda-tag-filter 'tag))
3377 (when (or org-agenda-category-filter (get 'org-agenda-category-filter :preset-filter))
3378 (org-agenda-filter-apply org-agenda-category-filter 'category))
3379 (org-add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)
3382 (defun org-agenda-mark-clocking-task ()
3383 "Mark the current clock entry in the agenda if it is present."
3384 (mapc (lambda (o)
3385 (if (eq (overlay-get o 'type) 'org-agenda-clocking)
3386 (delete-overlay o)))
3387 (overlays-in (point-min) (point-max)))
3388 (when (marker-buffer org-clock-hd-marker)
3389 (save-excursion
3390 (goto-char (point-min))
3391 (let (s ov)
3392 (while (setq s (next-single-property-change (point) 'org-hd-marker))
3393 (goto-char s)
3394 (when (equal (org-get-at-bol 'org-hd-marker)
3395 org-clock-hd-marker)
3396 (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
3397 (overlay-put ov 'type 'org-agenda-clocking)
3398 (overlay-put ov 'face 'org-agenda-clocking)
3399 (overlay-put ov 'help-echo
3400 "The clock is running in this item")))))))
3402 (defun org-agenda-fontify-priorities ()
3403 "Make highest priority lines bold, and lowest italic."
3404 (interactive)
3405 (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
3406 (delete-overlay o)))
3407 (overlays-in (point-min) (point-max)))
3408 (save-excursion
3409 (let ((inhibit-read-only t)
3410 b e p ov h l)
3411 (goto-char (point-min))
3412 (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
3413 (setq h (or (get-char-property (point) 'org-highest-priority)
3414 org-highest-priority)
3415 l (or (get-char-property (point) 'org-lowest-priority)
3416 org-lowest-priority)
3417 p (string-to-char (match-string 1))
3418 b (match-beginning 0)
3419 e (if (eq org-agenda-fontify-priorities 'cookies)
3420 (match-end 0)
3421 (point-at-eol))
3422 ov (make-overlay b e))
3423 (overlay-put
3424 ov 'face
3425 (cond ((org-face-from-face-or-color
3426 'priority nil
3427 (cdr (assoc p org-priority-faces))))
3428 ((and (listp org-agenda-fontify-priorities)
3429 (org-face-from-face-or-color
3430 'priority nil
3431 (cdr (assoc p org-agenda-fontify-priorities)))))
3432 ((equal p l) 'italic)
3433 ((equal p h) 'bold)))
3434 (overlay-put ov 'org-type 'org-priority)))))
3436 (defun org-agenda-dim-blocked-tasks ()
3437 "Dim currently blocked TODO's in the agenda display."
3438 (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-blocked-todo)
3439 (delete-overlay o)))
3440 (overlays-in (point-min) (point-max)))
3441 (save-excursion
3442 (let ((inhibit-read-only t)
3443 (org-depend-tag-blocked nil)
3444 (invis (eq org-agenda-dim-blocked-tasks 'invisible))
3445 org-blocked-by-checkboxes
3446 invis1 b e p ov h l)
3447 (goto-char (point-min))
3448 (while (let ((pos (next-single-property-change (point) 'todo-state)))
3449 (and pos (goto-char (1+ pos))))
3450 (setq org-blocked-by-checkboxes nil invis1 invis)
3451 (let ((marker (org-get-at-bol 'org-hd-marker)))
3452 (when (and marker
3453 (with-current-buffer (marker-buffer marker)
3454 (save-excursion (goto-char marker)
3455 (org-entry-blocked-p))))
3456 (if org-blocked-by-checkboxes (setq invis1 nil))
3457 (setq b (if invis1
3458 (max (point-min) (1- (point-at-bol)))
3459 (point-at-bol))
3460 e (point-at-eol)
3461 ov (make-overlay b e))
3462 (if invis1
3463 (overlay-put ov 'invisible t)
3464 (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
3465 (overlay-put ov 'org-type 'org-blocked-todo)))))))
3467 (defvar org-agenda-skip-function nil
3468 "Function to be called at each match during agenda construction.
3469 If this function returns nil, the current match should not be skipped.
3470 Otherwise, the function must return a position from where the search
3471 should be continued.
3472 This may also be a Lisp form, it will be evaluated.
3473 Never set this variable using `setq' or so, because then it will apply
3474 to all future agenda commands. If you do want a global skipping condition,
3475 use the option `org-agenda-skip-function-global' instead.
3476 The correct usage for `org-agenda-skip-function' is to bind it with
3477 `let' to scope it dynamically into the agenda-constructing command.
3478 A good way to set it is through options in `org-agenda-custom-commands'.")
3480 (defun org-agenda-skip ()
3481 "Throw to `:skip' in places that should be skipped.
3482 Also moves point to the end of the skipped region, so that search can
3483 continue from there."
3484 (let ((p (point-at-bol)) to)
3485 (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
3486 (get-text-property p :org-archived)
3487 (org-end-of-subtree t)
3488 (throw :skip t))
3489 (and org-agenda-skip-comment-trees
3490 (get-text-property p :org-comment)
3491 (org-end-of-subtree t)
3492 (throw :skip t))
3493 (if (equal (char-after p) ?#) (throw :skip t))
3494 (when (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
3495 (org-agenda-skip-eval org-agenda-skip-function)))
3496 (goto-char to)
3497 (throw :skip t))))
3499 (defun org-agenda-skip-eval (form)
3500 "If FORM is a function or a list, call (or eval) is and return result.
3501 `save-excursion' and `save-match-data' are wrapped around the call, so point
3502 and match data are returned to the previous state no matter what these
3503 functions do."
3504 (let (fp)
3505 (and form
3506 (or (setq fp (functionp form))
3507 (consp form))
3508 (save-excursion
3509 (save-match-data
3510 (if fp
3511 (funcall form)
3512 (eval form)))))))
3514 (defvar org-agenda-markers nil
3515 "List of all currently active markers created by `org-agenda'.")
3516 (defvar org-agenda-last-marker-time (org-float-time)
3517 "Creation time of the last agenda marker.")
3519 (defun org-agenda-new-marker (&optional pos)
3520 "Return a new agenda marker.
3521 Org-mode keeps a list of these markers and resets them when they are
3522 no longer in use."
3523 (let ((m (copy-marker (or pos (point)))))
3524 (setq org-agenda-last-marker-time (org-float-time))
3525 (if org-agenda-buffer
3526 (with-current-buffer org-agenda-buffer
3527 (push m org-agenda-markers))
3528 (push m org-agenda-markers))
3531 (defun org-agenda-reset-markers ()
3532 "Reset markers created by `org-agenda'."
3533 (while org-agenda-markers
3534 (move-marker (pop org-agenda-markers) nil)))
3536 (defun org-agenda-save-markers-for-cut-and-paste (beg end)
3537 "Save relative positions of markers in region.
3538 This check for agenda markers in all agenda buffers currently active."
3539 (dolist (buf (buffer-list))
3540 (with-current-buffer buf
3541 (when (eq major-mode 'org-agenda-mode)
3542 (mapc (lambda (m) (org-check-and-save-marker m beg end))
3543 org-agenda-markers)))))
3545 ;;; Entry text mode
3547 (defun org-agenda-entry-text-show-here ()
3548 "Add some text from the entry as context to the current line."
3549 (let (m txt o)
3550 (setq m (org-get-at-bol 'org-hd-marker))
3551 (unless (marker-buffer m)
3552 (error "No marker points to an entry here"))
3553 (setq txt (concat "\n" (org-no-properties
3554 (org-agenda-get-some-entry-text
3555 m org-agenda-entry-text-maxlines " > "))))
3556 (when (string-match "\\S-" txt)
3557 (setq o (make-overlay (point-at-bol) (point-at-eol)))
3558 (overlay-put o 'evaporate t)
3559 (overlay-put o 'org-overlay-type 'agenda-entry-content)
3560 (overlay-put o 'after-string txt))))
3562 (defun org-agenda-entry-text-show ()
3563 "Add entry context for all agenda lines."
3564 (interactive)
3565 (save-excursion
3566 (goto-char (point-max))
3567 (beginning-of-line 1)
3568 (while (not (bobp))
3569 (when (org-get-at-bol 'org-hd-marker)
3570 (org-agenda-entry-text-show-here))
3571 (beginning-of-line 0))))
3573 (defun org-agenda-entry-text-hide ()
3574 "Remove any shown entry context."
3575 (delq nil
3576 (mapcar (lambda (o)
3577 (if (eq (overlay-get o 'org-overlay-type)
3578 'agenda-entry-content)
3579 (progn (delete-overlay o) t)))
3580 (overlays-in (point-min) (point-max)))))
3582 (defun org-agenda-get-day-face (date)
3583 "Return the face DATE should be displayed with."
3584 (or (and (functionp org-agenda-day-face-function)
3585 (funcall org-agenda-day-face-function date))
3586 (cond ((org-agenda-todayp date)
3587 'org-agenda-date-today)
3588 ((member (calendar-day-of-week date) org-agenda-weekend-days)
3589 'org-agenda-date-weekend)
3590 (t 'org-agenda-date))))
3592 ;;; Agenda timeline
3594 (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
3596 (defun org-timeline (&optional dotodo)
3597 "Show a time-sorted view of the entries in the current org file.
3598 Only entries with a time stamp of today or later will be listed. With
3599 \\[universal-argument] prefix, all unfinished TODO items will also be shown,
3600 under the current date.
3601 If the buffer contains an active region, only check the region for
3602 dates."
3603 (interactive "P")
3604 (let* ((dopast t)
3605 (org-agenda-show-log-scoped org-agenda-show-log)
3606 (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
3607 (current-buffer))))
3608 (date (calendar-current-date))
3609 (beg (if (org-region-active-p) (region-beginning) (point-min)))
3610 (end (if (org-region-active-p) (region-end) (point-max)))
3611 (day-numbers (org-get-all-dates
3612 beg end 'no-ranges
3613 t org-agenda-show-log-scoped ; always include today
3614 org-timeline-show-empty-dates))
3615 (org-deadline-warning-days 0)
3616 (org-agenda-only-exact-dates t)
3617 (today (org-today))
3618 (past t)
3619 args
3620 s e rtn d emptyp)
3621 (setq org-agenda-redo-command
3622 (list 'progn
3623 (list 'org-switch-to-buffer-other-window (current-buffer))
3624 (list 'org-timeline (list 'quote dotodo))))
3625 (if (not dopast)
3626 ;; Remove past dates from the list of dates.
3627 (setq day-numbers (delq nil (mapcar (lambda(x)
3628 (if (>= x today) x nil))
3629 day-numbers))))
3630 (org-prepare-agenda (concat "Timeline " (file-name-nondirectory entry)))
3631 (org-compile-prefix-format 'timeline)
3632 (org-set-sorting-strategy 'timeline)
3633 (if org-agenda-show-log-scoped (push :closed args))
3634 (push :timestamp args)
3635 (push :deadline args)
3636 (push :scheduled args)
3637 (push :sexp args)
3638 (if dotodo (push :todo args))
3639 (insert "Timeline of file " entry "\n")
3640 (add-text-properties (point-min) (point)
3641 (list 'face 'org-agenda-structure))
3642 (org-agenda-mark-header-line (point-min))
3643 (while (setq d (pop day-numbers))
3644 (if (and (listp d) (eq (car d) :omitted))
3645 (progn
3646 (setq s (point))
3647 (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
3648 (put-text-property s (1- (point)) 'face 'org-agenda-structure))
3649 (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
3650 (if (and (>= d today)
3651 dopast
3652 past)
3653 (progn
3654 (setq past nil)
3655 (insert (make-string 79 ?-) "\n")))
3656 (setq date (calendar-gregorian-from-absolute d))
3657 (setq s (point))
3658 (setq rtn (and (not emptyp)
3659 (apply 'org-agenda-get-day-entries entry
3660 date args)))
3661 (if (or rtn (equal d today) org-timeline-show-empty-dates)
3662 (progn
3663 (insert
3664 (if (stringp org-agenda-format-date)
3665 (format-time-string org-agenda-format-date
3666 (org-time-from-absolute date))
3667 (funcall org-agenda-format-date date))
3668 "\n")
3669 (put-text-property s (1- (point)) 'face
3670 (org-agenda-get-day-face date))
3671 (put-text-property s (1- (point)) 'org-date-line t)
3672 (put-text-property s (1- (point)) 'org-agenda-date-header t)
3673 (if (equal d today)
3674 (put-text-property s (1- (point)) 'org-today t))
3675 (and rtn (insert (org-finalize-agenda-entries rtn) "\n"))
3676 (put-text-property s (1- (point)) 'day d)))))
3677 (goto-char (point-min))
3678 (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
3679 (point-min)))
3680 (add-text-properties (point-min) (point-max) '(org-agenda-type timeline))
3681 (org-finalize-agenda)
3682 (setq buffer-read-only t)))
3684 (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
3685 "Return a list of all relevant day numbers from BEG to END buffer positions.
3686 If NO-RANGES is non-nil, include only the start and end dates of a range,
3687 not every single day in the range. If FORCE-TODAY is non-nil, make
3688 sure that TODAY is included in the list. If INACTIVE is non-nil, also
3689 inactive time stamps (those in square brackets) are included.
3690 When EMPTY is non-nil, also include days without any entries."
3691 (let ((re (concat
3692 (if pre-re pre-re "")
3693 (if inactive org-ts-regexp-both org-ts-regexp)))
3694 dates dates1 date day day1 day2 ts1 ts2 pos)
3695 (if force-today
3696 (setq dates (list (org-today))))
3697 (save-excursion
3698 (goto-char beg)
3699 (while (re-search-forward re end t)
3700 (setq day (time-to-days (org-time-string-to-time
3701 (substring (match-string 1) 0 10)
3702 (current-buffer) (match-beginning 0))))
3703 (or (memq day dates) (push day dates)))
3704 (unless no-ranges
3705 (goto-char beg)
3706 (while (re-search-forward org-tr-regexp end t)
3707 (setq pos (match-beginning 0))
3708 (setq ts1 (substring (match-string 1) 0 10)
3709 ts2 (substring (match-string 2) 0 10)
3710 day1 (time-to-days (org-time-string-to-time
3711 ts1 (current-buffer) pos))
3712 day2 (time-to-days (org-time-string-to-time
3713 ts2 (current-buffer) pos)))
3714 (while (< (setq day1 (1+ day1)) day2)
3715 (or (memq day1 dates) (push day1 dates)))))
3716 (setq dates (sort dates '<))
3717 (when empty
3718 (while (setq day (pop dates))
3719 (setq day2 (car dates))
3720 (push day dates1)
3721 (when (and day2 empty)
3722 (if (or (eq empty t)
3723 (and (numberp empty) (<= (- day2 day) empty)))
3724 (while (< (setq day (1+ day)) day2)
3725 (push (list day) dates1))
3726 (push (cons :omitted (- day2 day)) dates1))))
3727 (setq dates (nreverse dates1)))
3728 dates)))
3730 ;;; Agenda Daily/Weekly
3732 (defvar org-agenda-start-day nil ; dynamically scoped parameter
3733 "Start day for the agenda view.
3734 Custom commands can set this variable in the options section.")
3735 (defvar org-starting-day nil) ; local variable in the agenda buffer
3736 (defvar org-agenda-current-span nil
3737 "The current span used in the agenda view.") ; local variable in the agenda buffer
3738 (defvar org-arg-loc nil) ; local variable
3740 (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
3741 "List of types searched for when creating the daily/weekly agenda.
3742 This variable is a list of symbols that controls the types of
3743 items that appear in the daily/weekly agenda. Allowed symbols in this
3744 list are are
3746 :timestamp List items containing a date stamp or date range matching
3747 the selected date. This includes sexp entries in
3748 angular brackets.
3750 :sexp List entries resulting from plain diary-like sexps.
3752 :deadline List deadline due on that date. When the date is today,
3753 also list any deadlines past due, or due within
3754 `org-deadline-warning-days'. `:deadline' must appear before
3755 `:scheduled' if the setting of
3756 `org-agenda-skip-scheduled-if-deadline-is-shown' is to have
3757 any effect.
3759 :scheduled List all items which are scheduled for the given date.
3760 The diary for *today* also contains items which were
3761 scheduled earlier and are not yet marked DONE.
3763 By default, all four types are turned on.
3765 Never set this variable globally using `setq', because then it
3766 will apply to all future agenda commands. Instead, bind it with
3767 `let' to scope it dynamically into the agenda-constructing
3768 command. A good way to set it is through options in
3769 `org-agenda-custom-commands'. For a more flexible (though
3770 somewhat less efficient) way of determining what is included in
3771 the daily/weekly agenda, see `org-agenda-skip-function'.")
3773 ;;;###autoload
3774 (defun org-agenda-list (&optional arg start-day span)
3775 "Produce a daily/weekly view from all files in variable `org-agenda-files'.
3776 The view will be for the current day or week, but from the overview buffer
3777 you will be able to go to other days/weeks.
3779 With a numeric prefix argument in an interactive call, the agenda will
3780 span ARG days. Lisp programs should instead specify SPAN to change
3781 the number of days. SPAN defaults to `org-agenda-span'.
3783 START-DAY defaults to TODAY, or to the most recent match for the weekday
3784 given in `org-agenda-start-on-weekday'."
3785 (interactive "P")
3786 (if (and (integerp arg) (> arg 0))
3787 (setq span arg arg nil))
3788 (org-prepare-agenda "Day/Week")
3789 (setq start-day (or start-day org-agenda-start-day))
3790 (if org-agenda-overriding-arguments
3791 (setq arg (car org-agenda-overriding-arguments)
3792 start-day (nth 1 org-agenda-overriding-arguments)
3793 span (nth 2 org-agenda-overriding-arguments)))
3794 (if (stringp start-day)
3795 ;; Convert to an absolute day number
3796 (setq start-day (time-to-days (org-read-date nil t start-day))))
3797 (setq org-agenda-last-arguments (list arg start-day span))
3798 (org-compile-prefix-format 'agenda)
3799 (org-set-sorting-strategy 'agenda)
3800 (let* ((span (org-agenda-ndays-to-span
3801 (or span org-agenda-ndays org-agenda-span)))
3802 (today (org-today))
3803 (sd (or start-day today))
3804 (ndays (org-agenda-span-to-ndays span sd))
3805 (org-agenda-start-on-weekday
3806 (if (eq ndays 7)
3807 org-agenda-start-on-weekday))
3808 (thefiles (org-agenda-files nil 'ifmode))
3809 (files thefiles)
3810 (start (if (or (null org-agenda-start-on-weekday)
3811 (< ndays 7))
3813 (let* ((nt (calendar-day-of-week
3814 (calendar-gregorian-from-absolute sd)))
3815 (n1 org-agenda-start-on-weekday)
3816 (d (- nt n1)))
3817 (- sd (+ (if (< d 0) 7 0) d)))))
3818 (day-numbers (list start))
3819 (day-cnt 0)
3820 (inhibit-redisplay (not debug-on-error))
3821 (org-agenda-show-log-scoped org-agenda-show-log)
3822 s e rtn rtnall file date d start-pos end-pos todayp
3823 clocktable-start clocktable-end filter)
3824 (setq org-agenda-redo-command
3825 (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span)))
3826 (dotimes (n (1- ndays))
3827 (push (1+ (car day-numbers)) day-numbers))
3828 (setq day-numbers (nreverse day-numbers))
3829 (setq clocktable-start (car day-numbers)
3830 clocktable-end (1+ (or (org-last day-numbers) 0)))
3831 (org-set-local 'org-starting-day (car day-numbers))
3832 (org-set-local 'org-arg-loc arg)
3833 (org-set-local 'org-agenda-current-span (org-agenda-ndays-to-span span))
3834 (unless org-agenda-compact-blocks
3835 (let* ((d1 (car day-numbers))
3836 (d2 (org-last day-numbers))
3837 (w1 (org-days-to-iso-week d1))
3838 (w2 (org-days-to-iso-week d2)))
3839 (setq s (point))
3840 (if org-agenda-overriding-header
3841 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
3842 nil 'face 'org-agenda-structure) "\n")
3843 (insert (org-agenda-span-name span)
3844 "-agenda"
3845 (if (< (- d2 d1) 350)
3846 (if (= w1 w2)
3847 (format " (W%02d)" w1)
3848 (format " (W%02d-W%02d)" w1 w2))
3850 ":\n")))
3851 (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
3852 'org-date-line t))
3853 (org-agenda-mark-header-line s))
3854 (while (setq d (pop day-numbers))
3855 (setq date (calendar-gregorian-from-absolute d)
3856 s (point))
3857 (if (or (setq todayp (= d today))
3858 (and (not start-pos) (= d sd)))
3859 (setq start-pos (point))
3860 (if (and start-pos (not end-pos))
3861 (setq end-pos (point))))
3862 (setq files thefiles
3863 rtnall nil)
3864 (while (setq file (pop files))
3865 (catch 'nextfile
3866 (org-check-agenda-file file)
3867 (let ((org-agenda-entry-types org-agenda-entry-types))
3868 (unless org-agenda-include-deadlines
3869 (setq org-agenda-entry-types
3870 (delq :deadline org-agenda-entry-types)))
3871 (cond
3872 ((memq org-agenda-show-log-scoped '(only clockcheck))
3873 (setq rtn (org-agenda-get-day-entries
3874 file date :closed)))
3875 (org-agenda-show-log-scoped
3876 (setq rtn (apply 'org-agenda-get-day-entries
3877 file date
3878 (append '(:closed) org-agenda-entry-types))))
3880 (setq rtn (apply 'org-agenda-get-day-entries
3881 file date
3882 org-agenda-entry-types)))))
3883 (setq rtnall (append rtnall rtn)))) ;; all entries
3884 (if org-agenda-include-diary
3885 (let ((org-agenda-search-headline-for-time t))
3886 (require 'diary-lib)
3887 (setq rtn (org-get-entries-from-diary date))
3888 (setq rtnall (append rtnall rtn))))
3889 (if (or rtnall org-agenda-show-all-dates)
3890 (progn
3891 (setq day-cnt (1+ day-cnt))
3892 (insert
3893 (if (stringp org-agenda-format-date)
3894 (format-time-string org-agenda-format-date
3895 (org-time-from-absolute date))
3896 (funcall org-agenda-format-date date))
3897 "\n")
3898 (put-text-property s (1- (point)) 'face
3899 (org-agenda-get-day-face date))
3900 (put-text-property s (1- (point)) 'org-date-line t)
3901 (put-text-property s (1- (point)) 'org-agenda-date-header t)
3902 (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
3903 (when todayp
3904 (put-text-property s (1- (point)) 'org-today t))
3905 (setq rtnall
3906 (org-agenda-add-time-grid-maybe rtnall ndays todayp))
3907 (if rtnall (insert ;; all entries
3908 (org-finalize-agenda-entries rtnall)
3909 "\n"))
3910 (put-text-property s (1- (point)) 'day d)
3911 (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
3912 (when (and org-agenda-clockreport-mode clocktable-start)
3913 (let ((org-agenda-files (org-agenda-files nil 'ifmode))
3914 ;; the above line is to ensure the restricted range!
3915 (p (copy-sequence org-agenda-clockreport-parameter-plist))
3916 tbl)
3917 (setq p (org-plist-delete p :block))
3918 (setq p (plist-put p :tstart clocktable-start))
3919 (setq p (plist-put p :tend clocktable-end))
3920 (setq p (plist-put p :scope 'agenda))
3921 (when (and (eq org-agenda-clockreport-mode 'with-filter)
3922 (setq filter (or org-agenda-tag-filter-while-redo
3923 (get 'org-agenda-tag-filter :preset-filter))))
3924 (setq p (plist-put p :tags (mapconcat (lambda (x)
3925 (if (string-match "[<>=]" x)
3928 filter ""))))
3929 (setq tbl (apply 'org-get-clocktable p))
3930 (insert tbl)))
3931 (goto-char (point-min))
3932 (or org-agenda-multi (org-fit-agenda-window))
3933 (unless (and (pos-visible-in-window-p (point-min))
3934 (pos-visible-in-window-p (point-max)))
3935 (goto-char (1- (point-max)))
3936 (recenter -1)
3937 (if (not (pos-visible-in-window-p (or start-pos 1)))
3938 (progn
3939 (goto-char (or start-pos 1))
3940 (recenter 1))))
3941 (goto-char (or start-pos 1))
3942 (add-text-properties (point-min) (point-max) '(org-agenda-type agenda))
3943 (if (eq org-agenda-show-log-scoped 'clockcheck)
3944 (org-agenda-show-clocking-issues))
3945 (org-finalize-agenda)
3946 (setq buffer-read-only t)
3947 (message "")))
3949 (defun org-agenda-ndays-to-span (n)
3950 "Return a span symbol for a span of N days, or N if none matches."
3951 (cond ((symbolp n) n)
3952 ((= n 1) 'day)
3953 ((= n 7) 'week)
3954 (t n)))
3956 (defun org-agenda-span-to-ndays (span start-day)
3957 "Return ndays from SPAN starting at START-DAY."
3958 (cond ((numberp span) span)
3959 ((eq span 'day) 1)
3960 ((eq span 'week) 7)
3961 ((eq span 'month)
3962 (let ((date (calendar-gregorian-from-absolute start-day)))
3963 (calendar-last-day-of-month (car date) (caddr date))))
3964 ((eq span 'year)
3965 (let ((date (calendar-gregorian-from-absolute start-day)))
3966 (if (calendar-leap-year-p (caddr date)) 366 365)))))
3968 (defun org-agenda-span-name (span)
3969 "Return a SPAN name."
3970 (if (null span)
3972 (if (symbolp span)
3973 (capitalize (symbol-name span))
3974 (format "%d days" span))))
3976 ;;; Agenda word search
3978 (defvar org-agenda-search-history nil)
3979 (defvar org-todo-only nil)
3981 (defvar org-search-syntax-table nil
3982 "Special syntax table for org-mode search.
3983 In this table, we have single quotes not as word constituents, to
3984 that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
3986 (defvar org-mode-syntax-table) ; From org.el
3987 (defun org-search-syntax-table ()
3988 (unless org-search-syntax-table
3989 (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
3990 (modify-syntax-entry ?' "." org-search-syntax-table)
3991 (modify-syntax-entry ?` "." org-search-syntax-table))
3992 org-search-syntax-table)
3994 (defvar org-agenda-last-search-view-search-was-boolean nil)
3996 ;;;###autoload
3997 (defun org-search-view (&optional todo-only string edit-at)
3998 "Show all entries that contain a phrase or words or regular expressions.
4000 With optional prefix argument TODO-ONLY, only consider entries that are
4001 TODO entries. The argument STRING can be used to pass a default search
4002 string into this function. If EDIT-AT is non-nil, it means that the
4003 user should get a chance to edit this string, with cursor at position
4004 EDIT-AT.
4006 The search string can be viewed either as a phrase that should be found as
4007 is, or it can be broken into a number of snippets, each of which must match
4008 in a Boolean way to select an entry. The default depends on the variable
4009 `org-agenda-search-view-always-boolean'.
4010 Even if this is turned off (the default) you can always switch to
4011 Boolean search dynamically by preceding the first word with \"+\" or \"-\".
4013 The default is a direct search of the whole phrase, where each space in
4014 the search string can expand to an arbitrary amount of whitespace,
4015 including newlines.
4017 If using a Boolean search, the search string is split on whitespace and
4018 each snippet is searched separately, with logical AND to select an entry.
4019 Words prefixed with a minus must *not* occur in the entry. Words without
4020 a prefix or prefixed with a plus must occur in the entry. Matching is
4021 case-insensitive. Words are enclosed by word delimiters (i.e. they must
4022 match whole words, not parts of a word) if
4023 `org-agenda-search-view-force-full-words' is set (default is nil).
4025 Boolean search snippets enclosed by curly braces are interpreted as
4026 regular expressions that must or (when preceded with \"-\") must not
4027 match in the entry. Snippets enclosed into double quotes will be taken
4028 as a whole, to include whitespace.
4030 - If the search string starts with an asterisk, search only in headlines.
4031 - If (possibly after the leading star) the search string starts with an
4032 exclamation mark, this also means to look at TODO entries only, an effect
4033 that can also be achieved with a prefix argument.
4034 - If (possibly after star and exclamation mark) the search string starts
4035 with a colon, this will mean that the (non-regexp) snippets of the
4036 Boolean search must match as full words.
4038 This command searches the agenda files, and in addition the files listed
4039 in `org-agenda-text-search-extra-files'."
4040 (interactive "P")
4041 (org-prepare-agenda "SEARCH")
4042 (org-compile-prefix-format 'search)
4043 (org-set-sorting-strategy 'search)
4044 (let* ((props (list 'face nil
4045 'done-face 'org-agenda-done
4046 'org-not-done-regexp org-not-done-regexp
4047 'org-todo-regexp org-todo-regexp
4048 'org-complex-heading-regexp org-complex-heading-regexp
4049 'mouse-face 'highlight
4050 'help-echo (format "mouse-2 or RET jump to location")))
4051 (full-words org-agenda-search-view-force-full-words)
4052 (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
4053 regexp rtn rtnall files file pos
4054 marker category category-pos tags c neg re boolean
4055 ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
4056 (unless (and (not edit-at)
4057 (stringp string)
4058 (string-match "\\S-" string))
4059 (setq string (read-string
4060 (if org-agenda-search-view-always-boolean
4061 "[+-]Word/{Regexp} ...: "
4062 "Phrase, or [+-]Word/{Regexp} ...: ")
4063 (cond
4064 ((integerp edit-at) (cons string edit-at))
4065 (edit-at string))
4066 'org-agenda-search-history)))
4067 (org-set-local 'org-todo-only todo-only)
4068 (setq org-agenda-redo-command
4069 (list 'org-search-view (if todo-only t nil) string
4070 '(if current-prefix-arg 1 nil)))
4071 (setq org-agenda-query-string string)
4073 (if (equal (string-to-char string) ?*)
4074 (setq hdl-only t
4075 words (substring string 1))
4076 (setq words string))
4077 (when (equal (string-to-char words) ?!)
4078 (setq todo-only t
4079 words (substring words 1)))
4080 (when (equal (string-to-char words) ?:)
4081 (setq full-words t
4082 words (substring words 1)))
4083 (if (or org-agenda-search-view-always-boolean
4084 (member (string-to-char words) '(?- ?+ ?\{)))
4085 (setq boolean t))
4086 (setq words (org-split-string words))
4087 (let (www w)
4088 (while (setq w (pop words))
4089 (while (and (string-match "\\\\\\'" w) words)
4090 (setq w (concat (substring w 0 -1) " " (pop words))))
4091 (push w www))
4092 (setq words (nreverse www) www nil)
4093 (while (setq w (pop words))
4094 (when (and (string-match "\\`[-+]?{" w)
4095 (not (string-match "}\\'" w)))
4096 (while (and words (not (string-match "}\\'" (car words))))
4097 (setq w (concat w " " (pop words))))
4098 (setq w (concat w " " (pop words))))
4099 (push w www))
4100 (setq words (nreverse www)))
4101 (setq org-agenda-last-search-view-search-was-boolean boolean)
4102 (when boolean
4103 (let (wds w)
4104 (while (setq w (pop words))
4105 (if (or (equal (substring w 0 1) "\"")
4106 (and (> (length w) 1)
4107 (member (substring w 0 1) '("+" "-"))
4108 (equal (substring w 1 2) "\"")))
4109 (while (and words (not (equal (substring w -1) "\"")))
4110 (setq w (concat w " " (pop words)))))
4111 (and (string-match "\\`\\([-+]?\\)\"" w)
4112 (setq w (replace-match "\\1" nil nil w)))
4113 (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
4114 (push w wds))
4115 (setq words (nreverse wds))))
4116 (if boolean
4117 (mapc (lambda (w)
4118 (setq c (string-to-char w))
4119 (if (equal c ?-)
4120 (setq neg t w (substring w 1))
4121 (if (equal c ?+)
4122 (setq neg nil w (substring w 1))
4123 (setq neg nil)))
4124 (if (string-match "\\`{.*}\\'" w)
4125 (setq re (substring w 1 -1))
4126 (if full-words
4127 (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
4128 (setq re (regexp-quote (downcase w)))))
4129 (if neg (push re regexps-) (push re regexps+)))
4130 words)
4131 (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
4132 regexps+))
4133 (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
4134 (if (not regexps+)
4135 (setq regexp org-outline-regexp-bol)
4136 (setq regexp (pop regexps+))
4137 (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
4138 regexp))))
4139 (setq files (org-agenda-files nil 'ifmode))
4140 (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
4141 (pop org-agenda-text-search-extra-files)
4142 (setq files (org-add-archive-files files)))
4143 (setq files (append files org-agenda-text-search-extra-files)
4144 rtnall nil)
4145 (while (setq file (pop files))
4146 (setq ee nil)
4147 (catch 'nextfile
4148 (org-check-agenda-file file)
4149 (setq buffer (if (file-exists-p file)
4150 (org-get-agenda-file-buffer file)
4151 (error "No such file %s" file)))
4152 (if (not buffer)
4153 ;; If file does not exist, make sure an error message is sent
4154 (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
4155 file))))
4156 (with-current-buffer buffer
4157 (with-syntax-table (org-search-syntax-table)
4158 (unless (derived-mode-p 'org-mode)
4159 (error "Agenda file %s is not in `org-mode'" file))
4160 (let ((case-fold-search t))
4161 (save-excursion
4162 (save-restriction
4163 (if org-agenda-restrict
4164 (narrow-to-region org-agenda-restrict-begin
4165 org-agenda-restrict-end)
4166 (widen))
4167 (goto-char (point-min))
4168 (unless (or (org-at-heading-p)
4169 (outline-next-heading))
4170 (throw 'nextfile t))
4171 (goto-char (max (point-min) (1- (point))))
4172 (while (re-search-forward regexp nil t)
4173 (org-back-to-heading t)
4174 (skip-chars-forward "* ")
4175 (setq beg (point-at-bol)
4176 beg1 (point)
4177 end (progn (outline-next-heading) (point)))
4178 (catch :skip
4179 (goto-char beg)
4180 (org-agenda-skip)
4181 (setq str (buffer-substring-no-properties
4182 (point-at-bol)
4183 (if hdl-only (point-at-eol) end)))
4184 (mapc (lambda (wr) (when (string-match wr str)
4185 (goto-char (1- end))
4186 (throw :skip t)))
4187 regexps-)
4188 (mapc (lambda (wr) (unless (string-match wr str)
4189 (goto-char (1- end))
4190 (throw :skip t)))
4191 (if todo-only
4192 (cons (concat "^\*+[ \t]+" org-not-done-regexp)
4193 regexps+)
4194 regexps+))
4195 (goto-char beg)
4196 (setq marker (org-agenda-new-marker (point))
4197 category (org-get-category)
4198 category-pos (get-text-property (point) 'org-category-position)
4199 tags (org-get-tags-at (point))
4200 txt (org-agenda-format-item
4202 (buffer-substring-no-properties
4203 beg1 (point-at-eol))
4204 category tags))
4205 (org-add-props txt props
4206 'org-marker marker 'org-hd-marker marker
4207 'org-todo-regexp org-todo-regexp
4208 'org-complex-heading-regexp org-complex-heading-regexp
4209 'priority 1000 'org-category category
4210 'org-category-position category-pos
4211 'type "search")
4212 (push txt ee)
4213 (goto-char (1- end))))))))))
4214 (setq rtn (nreverse ee))
4215 (setq rtnall (append rtnall rtn)))
4216 (if org-agenda-overriding-header
4217 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4218 nil 'face 'org-agenda-structure) "\n")
4219 (insert "Search words: ")
4220 (add-text-properties (point-min) (1- (point))
4221 (list 'face 'org-agenda-structure))
4222 (setq pos (point))
4223 (insert string "\n")
4224 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
4225 (setq pos (point))
4226 (unless org-agenda-multi
4227 (insert "Press `[', `]' to add/sub word, `{', `}' to add/sub regexp, `C-u r' to edit\n")
4228 (add-text-properties pos (1- (point))
4229 (list 'face 'org-agenda-structure))))
4230 (org-agenda-mark-header-line (point-min))
4231 (when rtnall
4232 (insert (org-finalize-agenda-entries rtnall) "\n"))
4233 (goto-char (point-min))
4234 (or org-agenda-multi (org-fit-agenda-window))
4235 (add-text-properties (point-min) (point-max) '(org-agenda-type search))
4236 (org-finalize-agenda)
4237 (setq buffer-read-only t)))
4239 ;;; Agenda TODO list
4241 (defvar org-select-this-todo-keyword nil)
4242 (defvar org-last-arg nil)
4244 ;;;###autoload
4245 (defun org-todo-list (arg)
4246 "Show all (not done) TODO entries from all agenda file in a single list.
4247 The prefix arg can be used to select a specific TODO keyword and limit
4248 the list to these. When using \\[universal-argument], you will be prompted
4249 for a keyword. A numeric prefix directly selects the Nth keyword in
4250 `org-todo-keywords-1'."
4251 (interactive "P")
4252 (org-prepare-agenda "TODO")
4253 (org-compile-prefix-format 'todo)
4254 (org-set-sorting-strategy 'todo)
4255 (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
4256 (let* ((today (org-today))
4257 (date (calendar-gregorian-from-absolute today))
4258 (kwds org-todo-keywords-for-agenda)
4259 (completion-ignore-case t)
4260 (org-select-this-todo-keyword
4261 (if (stringp arg) arg
4262 (and arg (integerp arg) (> arg 0)
4263 (nth (1- arg) kwds))))
4264 rtn rtnall files file pos)
4265 (when (equal arg '(4))
4266 (setq org-select-this-todo-keyword
4267 (org-icompleting-read "Keyword (or KWD1|K2D2|...): "
4268 (mapcar 'list kwds) nil nil)))
4269 (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
4270 (org-set-local 'org-last-arg arg)
4271 (setq org-agenda-redo-command
4272 '(org-todo-list (or current-prefix-arg org-last-arg)))
4273 (setq files (org-agenda-files nil 'ifmode)
4274 rtnall nil)
4275 (while (setq file (pop files))
4276 (catch 'nextfile
4277 (org-check-agenda-file file)
4278 (setq rtn (org-agenda-get-day-entries file date :todo))
4279 (setq rtnall (append rtnall rtn))))
4280 (if org-agenda-overriding-header
4281 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4282 nil 'face 'org-agenda-structure) "\n")
4283 (insert "Global list of TODO items of type: ")
4284 (add-text-properties (point-min) (1- (point))
4285 (list 'face 'org-agenda-structure
4286 'short-heading
4287 (concat "ToDo: "
4288 (or org-select-this-todo-keyword "ALL"))))
4289 (org-agenda-mark-header-line (point-min))
4290 (setq pos (point))
4291 (insert (or org-select-this-todo-keyword "ALL") "\n")
4292 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
4293 (setq pos (point))
4294 (unless org-agenda-multi
4295 (insert "Available with `N r': (0)ALL")
4296 (let ((n 0) s)
4297 (mapc (lambda (x)
4298 (setq s (format "(%d)%s" (setq n (1+ n)) x))
4299 (if (> (+ (current-column) (string-width s) 1) (frame-width))
4300 (insert "\n "))
4301 (insert " " s))
4302 kwds))
4303 (insert "\n"))
4304 (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
4305 (org-agenda-mark-header-line (point-min))
4306 (when rtnall
4307 (insert (org-finalize-agenda-entries rtnall) "\n"))
4308 (goto-char (point-min))
4309 (or org-agenda-multi (org-fit-agenda-window))
4310 (add-text-properties (point-min) (point-max) '(org-agenda-type todo))
4311 (org-finalize-agenda)
4312 (setq buffer-read-only t)))
4314 ;;; Agenda tags match
4316 ;;;###autoload
4317 (defun org-tags-view (&optional todo-only match)
4318 "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
4319 The prefix arg TODO-ONLY limits the search to TODO entries."
4320 (interactive "P")
4321 (let* ((org-tags-match-list-sublevels
4322 org-tags-match-list-sublevels)
4323 (completion-ignore-case t)
4324 rtn rtnall files file pos matcher
4325 buffer)
4326 (when (and (stringp match) (not (string-match "\\S-" match)))
4327 (setq match nil))
4328 (setq matcher (org-make-tags-matcher match)
4329 match (car matcher) matcher (cdr matcher))
4330 (org-prepare-agenda (concat "TAGS " match))
4331 (org-compile-prefix-format 'tags)
4332 (org-set-sorting-strategy 'tags)
4333 (setq org-agenda-query-string match)
4334 (setq org-agenda-redo-command
4335 (list 'org-tags-view (list 'quote todo-only)
4336 (list 'if 'current-prefix-arg nil 'org-agenda-query-string)))
4337 (setq files (org-agenda-files nil 'ifmode)
4338 rtnall nil)
4339 (while (setq file (pop files))
4340 (catch 'nextfile
4341 (org-check-agenda-file file)
4342 (setq buffer (if (file-exists-p file)
4343 (org-get-agenda-file-buffer file)
4344 (error "No such file %s" file)))
4345 (if (not buffer)
4346 ;; If file does not exist, error message to agenda
4347 (setq rtn (list
4348 (format "ORG-AGENDA-ERROR: No such org-file %s" file))
4349 rtnall (append rtnall rtn))
4350 (with-current-buffer buffer
4351 (unless (derived-mode-p 'org-mode)
4352 (error "Agenda file %s is not in `org-mode'" file))
4353 (save-excursion
4354 (save-restriction
4355 (if org-agenda-restrict
4356 (narrow-to-region org-agenda-restrict-begin
4357 org-agenda-restrict-end)
4358 (widen))
4359 (setq rtn (org-scan-tags 'agenda matcher todo-only))
4360 (setq rtnall (append rtnall rtn))))))))
4361 (if org-agenda-overriding-header
4362 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4363 nil 'face 'org-agenda-structure) "\n")
4364 (insert "Headlines with TAGS match: ")
4365 (add-text-properties (point-min) (1- (point))
4366 (list 'face 'org-agenda-structure
4367 'short-heading
4368 (concat "Match: " match)))
4369 (setq pos (point))
4370 (insert match "\n")
4371 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
4372 (setq pos (point))
4373 (unless org-agenda-multi
4374 (insert "Press `C-u r' to search again with new search string\n"))
4375 (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
4376 (org-agenda-mark-header-line (point-min))
4377 (when rtnall
4378 (insert (org-finalize-agenda-entries rtnall) "\n"))
4379 (goto-char (point-min))
4380 (or org-agenda-multi (org-fit-agenda-window))
4381 (add-text-properties (point-min) (point-max) '(org-agenda-type tags))
4382 (org-finalize-agenda)
4383 (setq buffer-read-only t)))
4385 ;;; Agenda Finding stuck projects
4387 (defvar org-agenda-skip-regexp nil
4388 "Regular expression used in skipping subtrees for the agenda.
4389 This is basically a temporary global variable that can be set and then
4390 used by user-defined selections using `org-agenda-skip-function'.")
4392 (defvar org-agenda-overriding-header nil
4393 "When set during agenda, todo and tags searches it replaces the header.
4394 This variable should not be set directly, but custom commands can bind it
4395 in the options section.")
4397 (defun org-agenda-skip-entry-when-regexp-matches ()
4398 "Check if the current entry contains match for `org-agenda-skip-regexp'.
4399 If yes, it returns the end position of this entry, causing agenda commands
4400 to skip the entry but continuing the search in the subtree. This is a
4401 function that can be put into `org-agenda-skip-function' for the duration
4402 of a command."
4403 (let ((end (save-excursion (org-end-of-subtree t)))
4404 skip)
4405 (save-excursion
4406 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4407 (and skip end)))
4409 (defun org-agenda-skip-subtree-when-regexp-matches ()
4410 "Check if the current subtree contains match for `org-agenda-skip-regexp'.
4411 If yes, it returns the end position of this tree, causing agenda commands
4412 to skip this subtree. This is a function that can be put into
4413 `org-agenda-skip-function' for the duration of a command."
4414 (let ((end (save-excursion (org-end-of-subtree t)))
4415 skip)
4416 (save-excursion
4417 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4418 (and skip end)))
4420 (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
4421 "Check if the current subtree contains match for `org-agenda-skip-regexp'.
4422 If yes, it returns the end position of the current entry (NOT the tree),
4423 causing agenda commands to skip the entry but continuing the search in
4424 the subtree. This is a function that can be put into
4425 `org-agenda-skip-function' for the duration of a command. An important
4426 use of this function is for the stuck project list."
4427 (let ((end (save-excursion (org-end-of-subtree t)))
4428 (entry-end (save-excursion (outline-next-heading) (1- (point))))
4429 skip)
4430 (save-excursion
4431 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4432 (and skip entry-end)))
4434 (defun org-agenda-skip-entry-if (&rest conditions)
4435 "Skip entry if any of CONDITIONS is true.
4436 See `org-agenda-skip-if' for details."
4437 (org-agenda-skip-if nil conditions))
4439 (defun org-agenda-skip-subtree-if (&rest conditions)
4440 "Skip entry if any of CONDITIONS is true.
4441 See `org-agenda-skip-if' for details."
4442 (org-agenda-skip-if t conditions))
4444 (defun org-agenda-skip-if (subtree conditions)
4445 "Checks current entity for CONDITIONS.
4446 If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
4447 the entry (i.e. the text before the next heading) is checked.
4449 CONDITIONS is a list of symbols, boolean OR is used to combine the results
4450 from different tests. Valid conditions are:
4452 scheduled Check if there is a scheduled cookie
4453 notscheduled Check if there is no scheduled cookie
4454 deadline Check if there is a deadline
4455 notdeadline Check if there is no deadline
4456 timestamp Check if there is a timestamp (also deadline or scheduled)
4457 nottimestamp Check if there is no timestamp (also deadline or scheduled)
4458 regexp Check if regexp matches
4459 notregexp Check if regexp does not match.
4460 todo Check if TODO keyword matches
4461 nottodo Check if TODO keyword does not match
4463 The regexp is taken from the conditions list, it must come right after
4464 the `regexp' or `notregexp' element.
4466 `todo' and `nottodo' accept as an argument a list of todo
4467 keywords, which may include \"*\" to match any todo keyword.
4469 (org-agenda-skip-entry-if 'todo '(\"TODO\" \"WAITING\"))
4471 would skip all entries with \"TODO\" or \"WAITING\" keywords.
4473 Instead of a list, a keyword class may be given. For example:
4475 (org-agenda-skip-entry-if 'nottodo 'done)
4477 would skip entries that haven't been marked with any of \"DONE\"
4478 keywords. Possible classes are: `todo', `done', `any'.
4480 If any of these conditions is met, this function returns the end point of
4481 the entity, causing the search to continue from there. This is a function
4482 that can be put into `org-agenda-skip-function' for the duration of a command."
4483 (let (beg end m)
4484 (org-back-to-heading t)
4485 (setq beg (point)
4486 end (if subtree
4487 (progn (org-end-of-subtree t) (point))
4488 (progn (outline-next-heading) (1- (point)))))
4489 (goto-char beg)
4490 (and
4492 (and (memq 'scheduled conditions)
4493 (re-search-forward org-scheduled-time-regexp end t))
4494 (and (memq 'notscheduled conditions)
4495 (not (re-search-forward org-scheduled-time-regexp end t)))
4496 (and (memq 'deadline conditions)
4497 (re-search-forward org-deadline-time-regexp end t))
4498 (and (memq 'notdeadline conditions)
4499 (not (re-search-forward org-deadline-time-regexp end t)))
4500 (and (memq 'timestamp conditions)
4501 (re-search-forward org-ts-regexp end t))
4502 (and (memq 'nottimestamp conditions)
4503 (not (re-search-forward org-ts-regexp end t)))
4504 (and (setq m (memq 'regexp conditions))
4505 (stringp (nth 1 m))
4506 (re-search-forward (nth 1 m) end t))
4507 (and (setq m (memq 'notregexp conditions))
4508 (stringp (nth 1 m))
4509 (not (re-search-forward (nth 1 m) end t)))
4510 (and (or
4511 (setq m (memq 'nottodo conditions))
4512 (setq m (memq 'todo-unblocked conditions))
4513 (setq m (memq 'nottodo-unblocked conditions))
4514 (setq m (memq 'todo conditions)))
4515 (org-agenda-skip-if-todo m end)))
4516 end)))
4518 (defun org-agenda-skip-if-todo (args end)
4519 "Helper function for `org-agenda-skip-if', do not use it directly.
4520 ARGS is a list with first element either `todo', `nottodo',
4521 `todo-unblocked' or `nottodo-unblocked'. The remainder is either
4522 a list of TODO keywords, or a state symbol `todo' or `done' or
4523 `any'."
4524 (let ((kw (car args))
4525 (arg (cadr args))
4526 todo-wds todo-re)
4527 (setq todo-wds
4528 (org-uniquify
4529 (cond
4530 ((listp arg) ;; list of keywords
4531 (if (member "*" arg)
4532 (mapcar 'substring-no-properties org-todo-keywords-1)
4533 arg))
4534 ((symbolp arg) ;; keyword class name
4535 (cond
4536 ((eq arg 'todo)
4537 (org-delete-all org-done-keywords
4538 (mapcar 'substring-no-properties
4539 org-todo-keywords-1)))
4540 ((eq arg 'done) org-done-keywords)
4541 ((eq arg 'any)
4542 (mapcar 'substring-no-properties org-todo-keywords-1)))))))
4543 (setq todo-re
4544 (concat "^\\*+[ \t]+\\<\\("
4545 (mapconcat 'identity todo-wds "\\|")
4546 "\\)\\>"))
4547 (cond
4548 ((eq kw 'todo) (re-search-forward todo-re end t))
4549 ((eq kw 'nottodo) (not (re-search-forward todo-re end t)))
4550 ((eq kw 'todo-unblocked)
4551 (catch 'unblocked
4552 (while (re-search-forward todo-re end t)
4553 (or (org-entry-blocked-p) (throw 'unblocked t)))
4554 nil))
4555 ((eq kw 'nottodo-unblocked)
4556 (catch 'unblocked
4557 (while (re-search-forward todo-re end t)
4558 (or (org-entry-blocked-p) (throw 'unblocked nil)))
4562 ;;;###autoload
4563 (defun org-agenda-list-stuck-projects (&rest ignore)
4564 "Create agenda view for projects that are stuck.
4565 Stuck projects are project that have no next actions. For the definitions
4566 of what a project is and how to check if it stuck, customize the variable
4567 `org-stuck-projects'."
4568 (interactive)
4569 (let* ((org-agenda-skip-function
4570 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
4571 ;; We could have used org-agenda-skip-if here.
4572 (org-agenda-overriding-header
4573 (or org-agenda-overriding-header "List of stuck projects: "))
4574 (matcher (nth 0 org-stuck-projects))
4575 (todo (nth 1 org-stuck-projects))
4576 (todo-wds (if (member "*" todo)
4577 (progn
4578 (org-prepare-agenda-buffers (org-agenda-files
4579 nil 'ifmode))
4580 (org-delete-all
4581 org-done-keywords-for-agenda
4582 (copy-sequence org-todo-keywords-for-agenda)))
4583 todo))
4584 (todo-re (concat "^\\*+[ \t]+\\("
4585 (mapconcat 'identity todo-wds "\\|")
4586 "\\)\\>"))
4587 (tags (nth 2 org-stuck-projects))
4588 (tags-re (if (member "*" tags)
4589 (concat org-outline-regexp-bol
4590 (org-re ".*:[[:alnum:]_@#%]+:[ \t]*$"))
4591 (if tags
4592 (concat org-outline-regexp-bol
4593 ".*:\\("
4594 (mapconcat 'identity tags "\\|")
4595 (org-re "\\):[[:alnum:]_@#%:]*[ \t]*$")))))
4596 (gen-re (nth 3 org-stuck-projects))
4597 (re-list
4598 (delq nil
4599 (list
4600 (if todo todo-re)
4601 (if tags tags-re)
4602 (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
4603 gen-re)))))
4604 (setq org-agenda-skip-regexp
4605 (if re-list
4606 (mapconcat 'identity re-list "\\|")
4607 (error "No information how to identify unstuck projects")))
4608 (org-tags-view nil matcher)
4609 (with-current-buffer org-agenda-buffer-name
4610 (setq org-agenda-redo-command
4611 '(org-agenda-list-stuck-projects
4612 (or current-prefix-arg org-last-arg))))))
4614 ;;; Diary integration
4616 (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
4617 (defvar diary-list-entries-hook)
4618 (defvar diary-time-regexp)
4619 (defun org-get-entries-from-diary (date)
4620 "Get the (Emacs Calendar) diary entries for DATE."
4621 (require 'diary-lib)
4622 (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
4623 (diary-display-hook '(fancy-diary-display))
4624 (diary-display-function 'fancy-diary-display)
4625 (pop-up-frames nil)
4626 (diary-list-entries-hook
4627 (cons 'org-diary-default-entry diary-list-entries-hook))
4628 (diary-file-name-prefix-function nil) ; turn this feature off
4629 (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
4630 entries
4631 (org-disable-agenda-to-diary t))
4632 (save-excursion
4633 (save-window-excursion
4634 (funcall (if (fboundp 'diary-list-entries)
4635 'diary-list-entries 'list-diary-entries)
4636 date 1)))
4637 (if (not (get-buffer diary-fancy-buffer))
4638 (setq entries nil)
4639 (with-current-buffer diary-fancy-buffer
4640 (setq buffer-read-only nil)
4641 (if (zerop (buffer-size))
4642 ;; No entries
4643 (setq entries nil)
4644 ;; Omit the date and other unnecessary stuff
4645 (org-agenda-cleanup-fancy-diary)
4646 ;; Add prefix to each line and extend the text properties
4647 (if (zerop (buffer-size))
4648 (setq entries nil)
4649 (setq entries (buffer-substring (point-min) (- (point-max) 1)))
4650 (setq entries
4651 (with-temp-buffer
4652 (insert entries) (goto-char (point-min))
4653 (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
4654 (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
4655 (replace-match (concat "; " (match-string 1)))))
4656 (buffer-string)))))
4657 (set-buffer-modified-p nil)
4658 (kill-buffer diary-fancy-buffer)))
4659 (when entries
4660 (setq entries (org-split-string entries "\n"))
4661 (setq entries
4662 (mapcar
4663 (lambda (x)
4664 (setq x (org-agenda-format-item "" x "Diary" nil 'time))
4665 ;; Extend the text properties to the beginning of the line
4666 (org-add-props x (text-properties-at (1- (length x)) x)
4667 'type "diary" 'date date 'face 'org-agenda-diary))
4668 entries)))))
4670 (defvar org-agenda-cleanup-fancy-diary-hook nil
4671 "Hook run when the fancy diary buffer is cleaned up.")
4673 (defun org-agenda-cleanup-fancy-diary ()
4674 "Remove unwanted stuff in buffer created by `fancy-diary-display'.
4675 This gets rid of the date, the underline under the date, and
4676 the dummy entry installed by `org-mode' to ensure non-empty diary for each
4677 date. It also removes lines that contain only whitespace."
4678 (goto-char (point-min))
4679 (if (looking-at ".*?:[ \t]*")
4680 (progn
4681 (replace-match "")
4682 (re-search-forward "\n=+$" nil t)
4683 (replace-match "")
4684 (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
4685 (re-search-forward "\n=+$" nil t)
4686 (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
4687 (goto-char (point-min))
4688 (while (re-search-forward "^ +\n" nil t)
4689 (replace-match ""))
4690 (goto-char (point-min))
4691 (if (re-search-forward "^Org-mode dummy\n?" nil t)
4692 (replace-match ""))
4693 (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
4695 ;; Make sure entries from the diary have the right text properties.
4696 (eval-after-load "diary-lib"
4697 '(if (boundp 'diary-modify-entry-list-string-function)
4698 ;; We can rely on the hook, nothing to do
4700 ;; Hook not available, must use advice to make this work
4701 (defadvice add-to-diary-list (before org-mark-diary-entry activate)
4702 "Make the position visible."
4703 (if (and org-disable-agenda-to-diary ;; called from org-agenda
4704 (stringp string)
4705 buffer-file-name)
4706 (setq string (org-modify-diary-entry-string string))))))
4708 (defun org-modify-diary-entry-string (string)
4709 "Add text properties to string, allowing org-mode to act on it."
4710 (org-add-props string nil
4711 'mouse-face 'highlight
4712 'help-echo (if buffer-file-name
4713 (format "mouse-2 or RET jump to diary file %s"
4714 (abbreviate-file-name buffer-file-name))
4716 'org-agenda-diary-link t
4717 'org-marker (org-agenda-new-marker (point-at-bol))))
4719 (defun org-diary-default-entry ()
4720 "Add a dummy entry to the diary.
4721 Needed to avoid empty dates which mess up holiday display."
4722 ;; Catch the error if dealing with the new add-to-diary-alist
4723 (when org-disable-agenda-to-diary
4724 (condition-case nil
4725 (org-add-to-diary-list original-date "Org-mode dummy" "")
4726 (error
4727 (org-add-to-diary-list original-date "Org-mode dummy" "" nil)))))
4729 (defun org-add-to-diary-list (&rest args)
4730 (if (fboundp 'diary-add-to-list)
4731 (apply 'diary-add-to-list args)
4732 (apply 'add-to-diary-list args)))
4734 (defvar org-diary-last-run-time nil)
4736 ;;;###autoload
4737 (defun org-diary (&rest args)
4738 "Return diary information from org files.
4739 This function can be used in a \"sexp\" diary entry in the Emacs calendar.
4740 It accesses org files and extracts information from those files to be
4741 listed in the diary. The function accepts arguments specifying what
4742 items should be listed. For a list of arguments allowed here, see the
4743 variable `org-agenda-entry-types'.
4745 The call in the diary file should look like this:
4747 &%%(org-diary) ~/path/to/some/orgfile.org
4749 Use a separate line for each org file to check. Or, if you omit the file name,
4750 all files listed in `org-agenda-files' will be checked automatically:
4752 &%%(org-diary)
4754 If you don't give any arguments (as in the example above), the default
4755 arguments (:deadline :scheduled :timestamp :sexp) are used.
4756 So the example above may also be written as
4758 &%%(org-diary :deadline :timestamp :sexp :scheduled)
4760 The function expects the lisp variables `entry' and `date' to be provided
4761 by the caller, because this is how the calendar works. Don't use this
4762 function from a program - use `org-agenda-get-day-entries' instead."
4763 (when (> (- (org-float-time)
4764 org-agenda-last-marker-time)
4766 ;; I am not sure if this works with sticky agendas, because the marker
4767 ;; list is then no longer a global variable.
4768 (org-agenda-reset-markers))
4769 ;; Prevent `org-compile-prefix-format' to fail when there is no agenda
4770 (when (buffer-live-p org-agenda-buffer)
4771 (org-compile-prefix-format 'agenda))
4772 (org-set-sorting-strategy 'agenda)
4773 (setq args (or args '(:deadline :scheduled :timestamp :sexp)))
4774 (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
4775 (list entry)
4776 (org-agenda-files t)))
4777 (time (org-float-time))
4778 file rtn results)
4779 (when (or (not org-diary-last-run-time)
4780 (> (- time
4781 org-diary-last-run-time)
4783 (org-prepare-agenda-buffers files))
4784 (setq org-diary-last-run-time time)
4785 ;; If this is called during org-agenda, don't return any entries to
4786 ;; the calendar. Org Agenda will list these entries itself.
4787 (if org-disable-agenda-to-diary (setq files nil))
4788 (while (setq file (pop files))
4789 (setq rtn (apply 'org-agenda-get-day-entries file date args))
4790 (setq results (append results rtn)))
4791 (if results
4792 (concat (org-finalize-agenda-entries results) "\n"))))
4794 ;;; Agenda entry finders
4796 (defun org-agenda-get-day-entries (file date &rest args)
4797 "Does the work for `org-diary' and `org-agenda'.
4798 FILE is the path to a file to be checked for entries. DATE is date like
4799 the one returned by `calendar-current-date'. ARGS are symbols indicating
4800 which kind of entries should be extracted. For details about these, see
4801 the documentation of `org-diary'."
4802 (setq args (or args '(:deadline :scheduled :timestamp :sexp)))
4803 (let* ((org-startup-folded nil)
4804 (org-startup-align-all-tables nil)
4805 (buffer (if (file-exists-p file)
4806 (org-get-agenda-file-buffer file)
4807 (error "No such file %s" file)))
4808 arg results rtn deadline-results)
4809 (if (not buffer)
4810 ;; If file does not exist, make sure an error message ends up in diary
4811 (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
4812 (with-current-buffer buffer
4813 (unless (derived-mode-p 'org-mode)
4814 (error "Agenda file %s is not in `org-mode'" file))
4815 (let ((case-fold-search nil))
4816 (save-excursion
4817 (save-restriction
4818 (if org-agenda-restrict
4819 (narrow-to-region org-agenda-restrict-begin
4820 org-agenda-restrict-end)
4821 (widen))
4822 ;; The way we repeatedly append to `results' makes it O(n^2) :-(
4823 (while (setq arg (pop args))
4824 (cond
4825 ((and (eq arg :todo)
4826 (equal date (calendar-gregorian-from-absolute
4827 (org-today))))
4828 (setq rtn (org-agenda-get-todos))
4829 (setq results (append results rtn)))
4830 ((eq arg :timestamp)
4831 (setq rtn (org-agenda-get-blocks))
4832 (setq results (append results rtn))
4833 (setq rtn (org-agenda-get-timestamps deadline-results))
4834 (setq results (append results rtn)))
4835 ((eq arg :sexp)
4836 (setq rtn (org-agenda-get-sexps))
4837 (setq results (append results rtn)))
4838 ((eq arg :scheduled)
4839 (setq rtn (org-agenda-get-scheduled deadline-results))
4840 (setq results (append results rtn)))
4841 ((eq arg :closed)
4842 (setq rtn (org-agenda-get-progress))
4843 (setq results (append results rtn)))
4844 ((eq arg :deadline)
4845 (setq rtn (org-agenda-get-deadlines))
4846 (setq deadline-results (copy-sequence rtn))
4847 (setq results (append results rtn))))))))
4848 results))))
4850 (defvar org-heading-keyword-regexp-format) ; defined in org.el
4851 (defun org-agenda-get-todos ()
4852 "Return the TODO information for agenda display."
4853 (let* ((props (list 'face nil
4854 'done-face 'org-agenda-done
4855 'org-not-done-regexp org-not-done-regexp
4856 'org-todo-regexp org-todo-regexp
4857 'org-complex-heading-regexp org-complex-heading-regexp
4858 'mouse-face 'highlight
4859 'help-echo
4860 (format "mouse-2 or RET jump to org file %s"
4861 (abbreviate-file-name buffer-file-name))))
4862 (regexp (format org-heading-keyword-regexp-format
4863 (cond
4864 ((and org-select-this-todo-keyword
4865 (equal org-select-this-todo-keyword "*"))
4866 org-todo-regexp)
4867 (org-select-this-todo-keyword
4868 (concat "\\("
4869 (mapconcat 'identity
4870 (org-split-string
4871 org-select-this-todo-keyword
4872 "|")
4873 "\\|") "\\)"))
4874 (t org-not-done-regexp))))
4875 marker priority category category-pos tags todo-state
4876 ee txt beg end)
4877 (goto-char (point-min))
4878 (while (re-search-forward regexp nil t)
4879 (catch :skip
4880 (save-match-data
4881 (beginning-of-line)
4882 (org-agenda-skip)
4883 (setq beg (point) end (save-excursion (outline-next-heading) (point)))
4884 (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
4885 (goto-char (1+ beg))
4886 (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
4887 (throw :skip nil)))
4888 (goto-char (match-beginning 2))
4889 (setq marker (org-agenda-new-marker (match-beginning 0))
4890 category (org-get-category)
4891 category-pos (get-text-property (point) 'org-category-position)
4892 txt (org-trim
4893 (buffer-substring (match-beginning 2) (match-end 0)))
4894 tags (org-get-tags-at (point))
4895 txt (org-agenda-format-item "" txt category tags)
4896 priority (1+ (org-get-priority txt))
4897 todo-state (org-get-todo-state))
4898 (org-add-props txt props
4899 'org-marker marker 'org-hd-marker marker
4900 'priority priority 'org-category category
4901 'org-category-position category-pos
4902 'type "todo" 'todo-state todo-state)
4903 (push txt ee)
4904 (if org-agenda-todo-list-sublevels
4905 (goto-char (match-end 2))
4906 (org-end-of-subtree 'invisible))))
4907 (nreverse ee)))
4909 (defun org-agenda-todo-custom-ignore-p (time n)
4910 "Check whether timestamp is farther away then n number of days.
4911 This function is invoked if `org-agenda-todo-ignore-deadlines',
4912 `org-agenda-todo-ignore-scheduled' or
4913 `org-agenda-todo-ignore-timestamp' is set to an integer."
4914 (let ((days (org-days-to-time time)))
4915 (if (>= n 0)
4916 (>= days n)
4917 (<= days n))))
4919 ;;;###autoload
4920 (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4921 (&optional end)
4922 "Do we have a reason to ignore this TODO entry because it has a time stamp?"
4923 (when (or org-agenda-todo-ignore-with-date
4924 org-agenda-todo-ignore-scheduled
4925 org-agenda-todo-ignore-deadlines
4926 org-agenda-todo-ignore-timestamp)
4927 (setq end (or end (save-excursion (outline-next-heading) (point))))
4928 (save-excursion
4929 (or (and org-agenda-todo-ignore-with-date
4930 (re-search-forward org-ts-regexp end t))
4931 (and org-agenda-todo-ignore-scheduled
4932 (re-search-forward org-scheduled-time-regexp end t)
4933 (cond
4934 ((eq org-agenda-todo-ignore-scheduled 'future)
4935 (> (org-days-to-time (match-string 1)) 0))
4936 ((eq org-agenda-todo-ignore-scheduled 'past)
4937 (<= (org-days-to-time (match-string 1)) 0))
4938 ((numberp org-agenda-todo-ignore-scheduled)
4939 (org-agenda-todo-custom-ignore-p
4940 (match-string 1) org-agenda-todo-ignore-scheduled))
4941 (t)))
4942 (and org-agenda-todo-ignore-deadlines
4943 (re-search-forward org-deadline-time-regexp end t)
4944 (cond
4945 ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
4946 ((eq org-agenda-todo-ignore-deadlines 'far)
4947 (not (org-deadline-close (match-string 1))))
4948 ((eq org-agenda-todo-ignore-deadlines 'future)
4949 (> (org-days-to-time (match-string 1)) 0))
4950 ((eq org-agenda-todo-ignore-deadlines 'past)
4951 (<= (org-days-to-time (match-string 1)) 0))
4952 ((numberp org-agenda-todo-ignore-deadlines)
4953 (org-agenda-todo-custom-ignore-p
4954 (match-string 1) org-agenda-todo-ignore-deadlines))
4955 (t (org-deadline-close (match-string 1)))))
4956 (and org-agenda-todo-ignore-timestamp
4957 (let ((buffer (current-buffer))
4958 (regexp
4959 (concat
4960 org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
4961 (start (point)))
4962 ;; Copy current buffer into a temporary one
4963 (with-temp-buffer
4964 (insert-buffer-substring buffer start end)
4965 (goto-char (point-min))
4966 ;; Delete SCHEDULED and DEADLINE items
4967 (while (re-search-forward regexp end t)
4968 (delete-region (match-beginning 0) (match-end 0)))
4969 (goto-char (point-min))
4970 ;; No search for timestamp left
4971 (when (re-search-forward org-ts-regexp nil t)
4972 (cond
4973 ((eq org-agenda-todo-ignore-timestamp 'future)
4974 (> (org-days-to-time (match-string 1)) 0))
4975 ((eq org-agenda-todo-ignore-timestamp 'past)
4976 (<= (org-days-to-time (match-string 1)) 0))
4977 ((numberp org-agenda-todo-ignore-timestamp)
4978 (org-agenda-todo-custom-ignore-p
4979 (match-string 1) org-agenda-todo-ignore-timestamp))
4980 (t))))))))))
4982 (defconst org-agenda-no-heading-message
4983 "No heading for this item in buffer or region.")
4985 (defun org-agenda-get-timestamps (&optional deadline-results)
4986 "Return the date stamp information for agenda display."
4987 (let* ((props (list 'face 'org-agenda-calendar-event
4988 'org-not-done-regexp org-not-done-regexp
4989 'org-todo-regexp org-todo-regexp
4990 'org-complex-heading-regexp org-complex-heading-regexp
4991 'mouse-face 'highlight
4992 'help-echo
4993 (format "mouse-2 or RET jump to org file %s"
4994 (abbreviate-file-name buffer-file-name))))
4995 (d1 (calendar-absolute-from-gregorian date))
4997 (deadline-position-alist
4998 (mapcar (lambda (a) (and (setq mm (get-text-property
4999 0 'org-hd-marker a))
5000 (cons (marker-position mm) a)))
5001 deadline-results))
5002 (remove-re org-ts-regexp)
5003 (regexp
5004 (concat
5005 (if org-agenda-include-inactive-timestamps "[[<]" "<")
5006 (regexp-quote
5007 (substring
5008 (format-time-string
5009 (car org-time-stamp-formats)
5010 (apply 'encode-time ; DATE bound by calendar
5011 (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
5012 1 11))
5013 "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
5014 "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
5015 marker hdmarker deadlinep scheduledp clockp closedp inactivep
5016 donep tmp priority category category-pos ee txt timestr tags
5017 b0 b3 e3 head todo-state end-of-match show-all warntime)
5018 (goto-char (point-min))
5019 (while (setq end-of-match (re-search-forward regexp nil t))
5020 (setq b0 (match-beginning 0)
5021 b3 (match-beginning 3) e3 (match-end 3)
5022 todo-state (save-match-data (ignore-errors (org-get-todo-state)))
5023 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
5024 (member todo-state
5025 org-agenda-repeating-timestamp-show-all)))
5026 (catch :skip
5027 (and (org-at-date-range-p) (throw :skip nil))
5028 (org-agenda-skip)
5029 (if (and (match-end 1)
5030 (not (= d1 (org-time-string-to-absolute
5031 (match-string 1) d1 nil show-all
5032 (current-buffer) b0))))
5033 (throw :skip nil))
5034 (if (and e3
5035 (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
5036 (throw :skip nil))
5037 (setq tmp (buffer-substring (max (point-min)
5038 (- b0 org-ds-keyword-length))
5040 timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
5041 inactivep (= (char-after b0) ?\[)
5042 deadlinep (string-match org-deadline-regexp tmp)
5043 scheduledp (string-match org-scheduled-regexp tmp)
5044 closedp (and org-agenda-include-inactive-timestamps
5045 (string-match org-closed-string tmp))
5046 clockp (and org-agenda-include-inactive-timestamps
5047 (or (string-match org-clock-string tmp)
5048 (string-match "]-+\\'" tmp)))
5049 warntime (org-entry-get (point) "APPT_WARNTIME")
5050 donep (member todo-state org-done-keywords))
5051 (if (or scheduledp deadlinep closedp clockp
5052 (and donep org-agenda-skip-timestamp-if-done))
5053 (throw :skip t))
5054 (if (string-match ">" timestr)
5055 ;; substring should only run to end of time stamp
5056 (setq timestr (substring timestr 0 (match-end 0))))
5057 (setq marker (org-agenda-new-marker b0)
5058 category (org-get-category b0)
5059 category-pos (get-text-property b0 'org-category-position))
5060 (save-excursion
5061 (if (not (re-search-backward org-outline-regexp-bol nil t))
5062 (setq txt org-agenda-no-heading-message)
5063 (goto-char (match-beginning 0))
5064 (if (and (eq t org-agenda-skip-timestamp-if-deadline-is-shown)
5065 (assoc (point) deadline-position-alist))
5066 (throw :skip nil))
5067 (setq hdmarker (org-agenda-new-marker)
5068 tags (org-get-tags-at))
5069 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
5070 (setq head (or (match-string 1) ""))
5071 (setq txt (org-agenda-format-item
5072 (if inactivep org-agenda-inactive-leader nil)
5073 head category tags timestr
5074 remove-re)))
5075 (setq priority (org-get-priority txt))
5076 (org-add-props txt props
5077 'org-marker marker 'org-hd-marker hdmarker)
5078 (org-add-props txt nil 'priority priority
5079 'org-category category 'date date
5080 'org-category-position category-pos
5081 'todo-state todo-state
5082 'warntime warntime
5083 'type "timestamp")
5084 (push txt ee))
5085 (if org-agenda-skip-additional-timestamps-same-entry
5086 (outline-next-heading)
5087 (goto-char end-of-match))))
5088 (nreverse ee)))
5090 (defun org-agenda-get-sexps ()
5091 "Return the sexp information for agenda display."
5092 (require 'diary-lib)
5093 (let* ((props (list 'face 'org-agenda-calendar-sexp
5094 'mouse-face 'highlight
5095 'help-echo
5096 (format "mouse-2 or RET jump to org file %s"
5097 (abbreviate-file-name buffer-file-name))))
5098 (regexp "^&?%%(")
5099 marker category extra category-pos ee txt tags entry
5100 result beg b sexp sexp-entry todo-state warntime)
5101 (goto-char (point-min))
5102 (while (re-search-forward regexp nil t)
5103 (catch :skip
5104 (org-agenda-skip)
5105 (setq beg (match-beginning 0))
5106 (goto-char (1- (match-end 0)))
5107 (setq b (point))
5108 (forward-sexp 1)
5109 (setq sexp (buffer-substring b (point)))
5110 (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
5111 (org-trim (match-string 1))
5112 ""))
5113 (setq result (org-diary-sexp-entry sexp sexp-entry date))
5114 (when result
5115 (setq marker (org-agenda-new-marker beg)
5116 category (org-get-category beg)
5117 category-pos (get-text-property beg 'org-category-position)
5118 tags (save-excursion (org-backward-heading-same-level 0)
5119 (org-get-tags-at))
5120 todo-state (org-get-todo-state)
5121 warntime (org-entry-get (point) "APPT_WARNTIME"))
5123 (dolist (r (if (stringp result)
5124 (list result)
5125 result)) ;; we expect a list here
5126 (when (and org-agenda-diary-sexp-prefix
5127 (string-match org-agenda-diary-sexp-prefix r))
5128 (setq extra (match-string 0 r)
5129 r (replace-match "" nil nil r)))
5130 (if (string-match "\\S-" r)
5131 (setq txt r)
5132 (setq txt "SEXP entry returned empty string"))
5134 (setq txt (org-agenda-format-item
5135 extra txt category tags 'time))
5136 (org-add-props txt props 'org-marker marker)
5137 (org-add-props txt nil
5138 'org-category category 'date date 'todo-state todo-state
5139 'org-category-position category-pos 'tags tags
5140 'type "sexp" 'warntime warntime)
5141 (push txt ee)))))
5142 (nreverse ee)))
5144 ;; Calendar sanity: define some functions that are independent of
5145 ;; `calendar-date-style'.
5146 ;; Normally I would like to use ISO format when calling the diary functions,
5147 ;; but to make sure we still have Emacs 22 compatibility we bind
5148 ;; also `european-calendar-style' and use european format
5149 (defun org-anniversary (year month day &optional mark)
5150 "Like `diary-anniversary', but with fixed (ISO) order of arguments."
5151 (org-no-warnings
5152 (let ((calendar-date-style 'european) (european-calendar-style t))
5153 (diary-anniversary day month year mark))))
5154 (defun org-cyclic (N year month day &optional mark)
5155 "Like `diary-cyclic', but with fixed (ISO) order of arguments."
5156 (org-no-warnings
5157 (let ((calendar-date-style 'european) (european-calendar-style t))
5158 (diary-cyclic N day month year mark))))
5159 (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
5160 "Like `diary-block', but with fixed (ISO) order of arguments."
5161 (org-no-warnings
5162 (let ((calendar-date-style 'european) (european-calendar-style t))
5163 (diary-block D1 M1 Y1 D2 M2 Y2 mark))))
5164 (defun org-date (year month day &optional mark)
5165 "Like `diary-date', but with fixed (ISO) order of arguments."
5166 (org-no-warnings
5167 (let ((calendar-date-style 'european) (european-calendar-style t))
5168 (diary-date day month year mark))))
5169 (defalias 'org-float 'diary-float)
5171 ;; Define the` org-class' function
5172 (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
5173 "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
5174 DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
5175 SKIP-WEEKS is any number of ISO weeks in the block period for which the
5176 item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
5177 `holidays', then any date that is known by the Emacs calendar to be a
5178 holiday will also be skipped."
5179 (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
5180 (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
5181 (d (calendar-absolute-from-gregorian date)))
5182 (and
5183 (<= date1 d)
5184 (<= d date2)
5185 (= (calendar-day-of-week date) dayname)
5186 (or (not skip-weeks)
5187 (progn
5188 (require 'cal-iso)
5189 (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
5190 (not (and (memq 'holidays skip-weeks)
5191 (calendar-check-holidays date)))
5192 entry)))
5194 (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname &rest skip-weeks)
5195 "Like `org-class', but honor `calendar-date-style'.
5196 The order of the first 2 times 3 arguments depends on the variable
5197 `calendar-date-style' or, if that is not defined, on `european-calendar-style'.
5198 So for American calendars, give this as MONTH DAY YEAR, for European as
5199 DAY MONTH YEAR, and for ISO as YEAR MONTH DAY.
5200 DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
5201 is any number of ISO weeks in the block period for which the item should
5202 be skipped.
5204 This function is here only for backward compatibility and it is deprecated,
5205 please use `org-class' instead."
5206 (let* ((date1 (org-order-calendar-date-args m1 d1 y1))
5207 (date2 (org-order-calendar-date-args m2 d2 y2)))
5208 (org-class
5209 (nth 2 date1) (car date1) (nth 1 date1)
5210 (nth 2 date2) (car date2) (nth 1 date2)
5211 dayname skip-weeks)))
5212 (make-obsolete 'org-diary-class 'org-class "")
5214 (defvar org-agenda-show-log-scoped) ;; dynamically scope in ̀org-timeline' or`org-agenda-list'
5215 (defalias 'org-get-closed 'org-agenda-get-progress)
5216 (defun org-agenda-get-progress ()
5217 "Return the logged TODO entries for agenda display."
5218 (let* ((props (list 'mouse-face 'highlight
5219 'org-not-done-regexp org-not-done-regexp
5220 'org-todo-regexp org-todo-regexp
5221 'org-complex-heading-regexp org-complex-heading-regexp
5222 'help-echo
5223 (format "mouse-2 or RET jump to org file %s"
5224 (abbreviate-file-name buffer-file-name))))
5225 (items (if (consp org-agenda-show-log-scoped)
5226 org-agenda-show-log-scoped
5227 (if (eq org-agenda-show-log-scoped 'clockcheck)
5228 '(clock)
5229 org-agenda-log-mode-items)))
5230 (parts
5231 (delq nil
5232 (list
5233 (if (memq 'closed items) (concat "\\<" org-closed-string))
5234 (if (memq 'clock items) (concat "\\<" org-clock-string))
5235 (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
5236 (parts-re (if parts (mapconcat 'identity parts "\\|")
5237 (error "`org-agenda-log-mode-items' is empty")))
5238 (regexp (concat
5239 "\\(" parts-re "\\)"
5240 " *\\["
5241 (regexp-quote
5242 (substring
5243 (format-time-string
5244 (car org-time-stamp-formats)
5245 (apply 'encode-time ; DATE bound by calendar
5246 (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
5247 1 11))))
5248 (org-agenda-search-headline-for-time nil)
5249 marker hdmarker priority category category-pos tags closedp
5250 statep clockp state ee txt extra timestr rest clocked)
5251 (goto-char (point-min))
5252 (while (re-search-forward regexp nil t)
5253 (catch :skip
5254 (org-agenda-skip)
5255 (setq marker (org-agenda-new-marker (match-beginning 0))
5256 closedp (equal (match-string 1) org-closed-string)
5257 statep (equal (string-to-char (match-string 1)) ?-)
5258 clockp (not (or closedp statep))
5259 state (and statep (match-string 2))
5260 category (org-get-category (match-beginning 0))
5261 category-pos (get-text-property (match-beginning 0) 'org-category-position)
5262 timestr (buffer-substring (match-beginning 0) (point-at-eol)))
5263 (when (string-match "\\]" timestr)
5264 ;; substring should only run to end of time stamp
5265 (setq rest (substring timestr (match-end 0))
5266 timestr (substring timestr 0 (match-end 0)))
5267 (if (and (not closedp) (not statep)
5268 (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
5269 rest))
5270 (progn (setq timestr (concat (substring timestr 0 -1)
5271 "-" (match-string 1 rest) "]"))
5272 (setq clocked (match-string 2 rest)))
5273 (setq clocked "-")))
5274 (save-excursion
5275 (setq extra
5276 (cond
5277 ((not org-agenda-log-mode-add-notes) nil)
5278 (statep
5279 (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
5280 (match-string 1)))
5281 (clockp
5282 (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
5283 (match-string 1)))))
5284 (if (not (re-search-backward org-outline-regexp-bol nil t))
5285 (setq txt org-agenda-no-heading-message)
5286 (goto-char (match-beginning 0))
5287 (setq hdmarker (org-agenda-new-marker)
5288 tags (org-get-tags-at))
5289 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
5290 (setq txt (match-string 1))
5291 (when extra
5292 (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
5293 (setq txt (concat (substring txt 0 (match-beginning 1))
5294 " - " extra " " (match-string 2 txt)))
5295 (setq txt (concat txt " - " extra))))
5296 (setq txt (org-agenda-format-item
5297 (cond
5298 (closedp "Closed: ")
5299 (statep (concat "State: (" state ")"))
5300 (t (concat "Clocked: (" clocked ")")))
5301 txt category tags timestr)))
5302 (setq priority 100000)
5303 (org-add-props txt props
5304 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
5305 'priority priority 'org-category category
5306 'org-category-position category-pos
5307 'type "closed" 'date date
5308 'undone-face 'org-warning 'done-face 'org-agenda-done)
5309 (push txt ee))
5310 (goto-char (point-at-eol))))
5311 (nreverse ee)))
5313 (defun org-agenda-show-clocking-issues ()
5314 "Add overlays, showing issues with clocking.
5315 See also the user option `org-agenda-clock-consistency-checks'."
5316 (interactive)
5317 (let* ((pl org-agenda-clock-consistency-checks)
5318 (re (concat "^[ \t]*"
5319 org-clock-string
5320 "[ \t]+"
5321 "\\(\\[.*?\\]\\)" ; group 1 is first stamp
5322 "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
5323 (tlstart 0.)
5324 (tlend 0.)
5325 (maxtime (org-hh:mm-string-to-minutes
5326 (or (plist-get pl :max-duration) "24:00")))
5327 (mintime (org-hh:mm-string-to-minutes
5328 (or (plist-get pl :min-duration) 0)))
5329 (maxgap (org-hh:mm-string-to-minutes
5330 ;; default 30:00 means never complain
5331 (or (plist-get pl :max-gap) "30:00")))
5332 (gapok (mapcar 'org-hh:mm-string-to-minutes
5333 (plist-get pl :gap-ok-around)))
5334 (def-face (or (plist-get pl :default-face)
5335 '((:background "DarkRed") (:foreground "white"))))
5336 issue face m te ts dt ov)
5337 (goto-char (point-min))
5338 (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
5339 (setq issue nil face def-face)
5340 (catch 'next
5341 (setq m (org-get-at-bol 'org-marker)
5342 te nil ts nil)
5343 (unless (and m (markerp m))
5344 (setq issue "No valid clock line") (throw 'next t))
5345 (org-with-point-at m
5346 (save-excursion
5347 (goto-char (point-at-bol))
5348 (unless (looking-at re)
5349 (error "No valid Clock line")
5350 (throw 'next t))
5351 (unless (match-end 3)
5352 (setq issue "No end time"
5353 face (or (plist-get pl :no-end-time-face) face))
5354 (throw 'next t))
5355 (setq ts (match-string 1)
5356 te (match-string 3)
5357 ts (org-float-time
5358 (apply 'encode-time (org-parse-time-string ts)))
5359 te (org-float-time
5360 (apply 'encode-time (org-parse-time-string te)))
5361 dt (- te ts))))
5362 (cond
5363 ((> dt (* 60 maxtime))
5364 ;; a very long clocking chunk
5365 (setq issue (format "Clocking interval is very long: %s"
5366 (org-minutes-to-hh:mm-string
5367 (floor (/ (float dt) 60.))))
5368 face (or (plist-get pl :long-face) face)))
5369 ((< dt (* 60 mintime))
5370 ;; a very short clocking chunk
5371 (setq issue (format "Clocking interval is very short: %s"
5372 (org-minutes-to-hh:mm-string
5373 (floor (/ (float dt) 60.))))
5374 face (or (plist-get pl :short-face) face)))
5375 ((and (> tlend 0) (< ts tlend))
5376 ;; Two clock entries are overlapping
5377 (setq issue (format "Clocking overlap: %d minutes"
5378 (/ (- tlend ts) 60))
5379 face (or (plist-get pl :overlap-face) face)))
5380 ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
5381 ;; There is a gap, lets see if we need to report it
5382 (unless (org-agenda-check-clock-gap tlend ts gapok)
5383 (setq issue (format "Clocking gap: %d minutes"
5384 (/ (- ts tlend) 60))
5385 face (or (plist-get pl :gap-face) face))))
5386 (t nil)))
5387 (setq tlend (or te tlend) tlstart (or ts tlstart))
5388 (when issue
5389 ;; OK, there was some issue, add an overlay to show the issue
5390 (setq ov (make-overlay (point-at-bol) (point-at-eol)))
5391 (overlay-put ov 'before-string
5392 (concat
5393 (org-add-props
5394 (format "%-43s" (concat " " issue))
5396 'face face)
5397 "\n"))
5398 (overlay-put ov 'evaporate t)))))
5400 (defun org-agenda-check-clock-gap (t1 t2 ok-list)
5401 "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
5402 (catch 'exit
5403 (unless ok-list
5404 ;; there are no OK times for gaps...
5405 (throw 'exit nil))
5406 (if (> (- (/ t2 36000) (/ t1 36000)) 24)
5407 ;; This is more than 24 hours, so it is OK.
5408 ;; because we have at least one OK time, that must be in the
5409 ;; 24 hour interval.
5410 (throw 'exit t))
5411 ;; We have a shorter gap.
5412 ;; Now we have to get the minute of the day when these times are
5413 (let* ((t1dec (decode-time (seconds-to-time t1)))
5414 (t2dec (decode-time (seconds-to-time t2)))
5415 ;; compute the minute on the day
5416 (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
5417 (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
5418 (when (< min2 min1)
5419 ;; if min2 is smaller than min1, this means it is on the next day.
5420 ;; Wrap it to after midnight.
5421 (setq min2 (+ min2 1440)))
5422 ;; Now check if any of the OK times is in the gap
5423 (mapc (lambda (x)
5424 ;; Wrap the time to after midnight if necessary
5425 (if (< x min1) (setq x (+ x 1440)))
5426 ;; Check if in interval
5427 (and (<= min1 x) (>= min2 x) (throw 'exit t)))
5428 ok-list)
5429 ;; Nope, this gap is not OK
5430 nil)))
5432 (defun org-agenda-get-deadlines ()
5433 "Return the deadline information for agenda display."
5434 (let* ((props (list 'mouse-face 'highlight
5435 'org-not-done-regexp org-not-done-regexp
5436 'org-todo-regexp org-todo-regexp
5437 'org-complex-heading-regexp org-complex-heading-regexp
5438 'help-echo
5439 (format "mouse-2 or RET jump to org file %s"
5440 (abbreviate-file-name buffer-file-name))))
5441 (regexp org-deadline-time-regexp)
5442 (todayp (org-agenda-todayp date)) ; DATE bound by calendar
5443 (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
5444 d2 diff dfrac wdays pos pos1 category category-pos
5445 tags suppress-prewarning ee txt head face s todo-state
5446 show-all upcomingp donep timestr warntime)
5447 (goto-char (point-min))
5448 (while (re-search-forward regexp nil t)
5449 (setq suppress-prewarning nil)
5450 (catch :skip
5451 (org-agenda-skip)
5452 (when (and org-agenda-skip-deadline-prewarning-if-scheduled
5453 (save-match-data
5454 (string-match org-scheduled-time-regexp
5455 (buffer-substring (point-at-bol)
5456 (point-at-eol)))))
5457 (setq suppress-prewarning
5458 (if (integerp org-agenda-skip-deadline-prewarning-if-scheduled)
5459 org-agenda-skip-deadline-prewarning-if-scheduled
5460 0)))
5461 (setq s (match-string 1)
5462 txt nil
5463 pos (1- (match-beginning 1))
5464 todo-state (save-match-data (org-get-todo-state))
5465 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
5466 (member todo-state
5467 org-agenda-repeating-timestamp-show-all))
5468 d2 (org-time-string-to-absolute
5469 (match-string 1) d1 'past show-all
5470 (current-buffer) pos)
5471 diff (- d2 d1)
5472 wdays (if suppress-prewarning
5473 (let ((org-deadline-warning-days suppress-prewarning))
5474 (org-get-wdays s))
5475 (org-get-wdays s))
5476 dfrac (- 1 (/ (* 1.0 diff) (max wdays 1)))
5477 upcomingp (and todayp (> diff 0)))
5478 ;; When to show a deadline in the calendar:
5479 ;; If the expiration is within wdays warning time.
5480 ;; Past-due deadlines are only shown on the current date
5481 (if (and (or (and (<= diff wdays)
5482 (and todayp (not org-agenda-only-exact-dates)))
5483 (= diff 0)))
5484 (save-excursion
5485 ;; (setq todo-state (org-get-todo-state))
5486 (setq donep (member todo-state org-done-keywords))
5487 (if (and donep
5488 (or org-agenda-skip-deadline-if-done
5489 (not (= diff 0))))
5490 (setq txt nil)
5491 (setq category (org-get-category)
5492 warntime (org-entry-get (point) "APPT_WARNTIME")
5493 category-pos (get-text-property (point) 'org-category-position))
5494 (if (not (re-search-backward "^\\*+[ \t]+" nil t))
5495 (setq txt org-agenda-no-heading-message)
5496 (goto-char (match-end 0))
5497 (setq pos1 (match-beginning 0))
5498 (setq tags (org-get-tags-at pos1))
5499 (setq head (buffer-substring-no-properties
5500 (point)
5501 (progn (skip-chars-forward "^\r\n")
5502 (point))))
5503 (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
5504 (setq timestr
5505 (concat (substring s (match-beginning 1)) " "))
5506 (setq timestr 'time))
5507 (setq txt (org-agenda-format-item
5508 (if (= diff 0)
5509 (car org-agenda-deadline-leaders)
5510 (if (functionp
5511 (nth 1 org-agenda-deadline-leaders))
5512 (funcall
5513 (nth 1 org-agenda-deadline-leaders)
5514 diff date)
5515 (format (nth 1 org-agenda-deadline-leaders)
5516 diff)))
5517 head category tags
5518 (if (not (= diff 0)) nil timestr)))))
5519 (when txt
5520 (setq face (org-agenda-deadline-face dfrac))
5521 (org-add-props txt props
5522 'org-marker (org-agenda-new-marker pos)
5523 'warntime warntime
5524 'org-hd-marker (org-agenda-new-marker pos1)
5525 'priority (+ (- diff)
5526 (org-get-priority txt))
5527 'org-category category
5528 'org-category-position category-pos
5529 'todo-state todo-state
5530 'type (if upcomingp "upcoming-deadline" "deadline")
5531 'date (if upcomingp date d2)
5532 'face (if donep 'org-agenda-done face)
5533 'undone-face face 'done-face 'org-agenda-done)
5534 (push txt ee))))))
5535 (nreverse ee)))
5537 (defun org-agenda-deadline-face (fraction)
5538 "Return the face to displaying a deadline item.
5539 FRACTION is what fraction of the head-warning time has passed."
5540 (let ((faces org-agenda-deadline-faces) f)
5541 (catch 'exit
5542 (while (setq f (pop faces))
5543 (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
5545 (defun org-agenda-get-scheduled (&optional deadline-results)
5546 "Return the scheduled information for agenda display."
5547 (let* ((props (list 'org-not-done-regexp org-not-done-regexp
5548 'org-todo-regexp org-todo-regexp
5549 'org-complex-heading-regexp org-complex-heading-regexp
5550 'done-face 'org-agenda-done
5551 'mouse-face 'highlight
5552 'help-echo
5553 (format "mouse-2 or RET jump to org file %s"
5554 (abbreviate-file-name buffer-file-name))))
5555 (regexp org-scheduled-time-regexp)
5556 (todayp (org-agenda-todayp date)) ; DATE bound by calendar
5557 (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
5559 (deadline-position-alist
5560 (mapcar (lambda (a) (and (setq mm (get-text-property
5561 0 'org-hd-marker a))
5562 (cons (marker-position mm) a)))
5563 deadline-results))
5564 d2 diff pos pos1 category category-pos tags donep
5565 ee txt head pastschedp todo-state face timestr s habitp show-all
5566 did-habit-check-p warntime)
5567 (goto-char (point-min))
5568 (while (re-search-forward regexp nil t)
5569 (catch :skip
5570 (org-agenda-skip)
5571 (setq s (match-string 1)
5572 txt nil
5573 pos (1- (match-beginning 1))
5574 todo-state (save-match-data (org-get-todo-state))
5575 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
5576 (member todo-state
5577 org-agenda-repeating-timestamp-show-all))
5578 d2 (org-time-string-to-absolute
5579 (match-string 1) d1 'past show-all
5580 (current-buffer) pos)
5581 diff (- d2 d1)
5582 warntime (org-entry-get (point) "APPT_WARNTIME"))
5583 (setq pastschedp (and todayp (< diff 0)))
5584 (setq did-habit-check-p nil)
5585 ;; When to show a scheduled item in the calendar:
5586 ;; If it is on or past the date.
5587 (when (or (and (< diff 0)
5588 (< (abs diff) org-scheduled-past-days)
5589 (and todayp (not org-agenda-only-exact-dates)))
5590 (= diff 0)
5591 ;; org-is-habit-p uses org-entry-get, which is expansive
5592 ;; so we go extra mile to only call it once
5593 (and todayp
5594 org-habit-show-all-today
5595 (setq did-habit-check-p t)
5596 (setq habitp (and (functionp 'org-is-habit-p)
5597 (org-is-habit-p)))))
5598 (save-excursion
5599 (setq donep (member todo-state org-done-keywords))
5600 (if (and donep
5601 (or org-agenda-skip-scheduled-if-done
5602 (not (= diff 0))
5603 (and (functionp 'org-is-habit-p)
5604 (org-is-habit-p))))
5605 (setq txt nil)
5606 (setq habitp (if did-habit-check-p habitp
5607 (and (functionp 'org-is-habit-p)
5608 (org-is-habit-p))))
5609 (setq category (org-get-category)
5610 category-pos (get-text-property (point) 'org-category-position))
5611 (if (not (re-search-backward "^\\*+[ \t]+" nil t))
5612 (setq txt org-agenda-no-heading-message)
5613 (goto-char (match-end 0))
5614 (setq pos1 (match-beginning 0))
5615 (if habitp
5616 (if (or (not org-habit-show-habits)
5617 (and (not todayp)
5618 org-habit-show-habits-only-for-today))
5619 (throw :skip nil))
5620 (if (and
5621 (or (eq t org-agenda-skip-scheduled-if-deadline-is-shown)
5622 (and org-agenda-skip-scheduled-if-deadline-is-shown
5623 pastschedp))
5624 (setq mm (assoc pos1 deadline-position-alist)))
5625 (throw :skip nil)))
5626 (setq tags (org-get-tags-at))
5627 (setq head (buffer-substring-no-properties
5628 (point)
5629 (progn (skip-chars-forward "^\r\n") (point))))
5630 (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
5631 (setq timestr
5632 (concat (substring s (match-beginning 1)) " "))
5633 (setq timestr 'time))
5634 (setq txt (org-agenda-format-item
5635 (if (= diff 0)
5636 (car org-agenda-scheduled-leaders)
5637 (format (nth 1 org-agenda-scheduled-leaders)
5638 (- 1 diff)))
5639 head category tags
5640 (if (not (= diff 0)) nil timestr)
5641 nil habitp))))
5642 (when txt
5643 (setq face
5644 (cond
5645 ((and (not habitp) pastschedp)
5646 'org-scheduled-previously)
5647 (todayp 'org-scheduled-today)
5648 (t 'org-scheduled))
5649 habitp (and habitp (org-habit-parse-todo)))
5650 (org-add-props txt props
5651 'undone-face face
5652 'face (if donep 'org-agenda-done face)
5653 'org-marker (org-agenda-new-marker pos)
5654 'org-hd-marker (org-agenda-new-marker pos1)
5655 'type (if pastschedp "past-scheduled" "scheduled")
5656 'date (if pastschedp d2 date)
5657 'warntime warntime
5658 'priority (if habitp
5659 (org-habit-get-priority habitp)
5660 (+ 94 (- 5 diff) (org-get-priority txt)))
5661 'org-category category
5662 'category-position category-pos
5663 'org-habit-p habitp
5664 'todo-state todo-state)
5665 (push txt ee))))))
5666 (nreverse ee)))
5668 (defun org-agenda-get-blocks ()
5669 "Return the date-range information for agenda display."
5670 (let* ((props (list 'face nil
5671 'org-not-done-regexp org-not-done-regexp
5672 'org-todo-regexp org-todo-regexp
5673 'org-complex-heading-regexp org-complex-heading-regexp
5674 'mouse-face 'highlight
5675 'help-echo
5676 (format "mouse-2 or RET jump to org file %s"
5677 (abbreviate-file-name buffer-file-name))))
5678 (regexp org-tr-regexp)
5679 (d0 (calendar-absolute-from-gregorian date))
5680 marker hdmarker ee txt d1 d2 s1 s2 category category-pos
5681 todo-state tags pos head donep)
5682 (goto-char (point-min))
5683 (while (re-search-forward regexp nil t)
5684 (catch :skip
5685 (org-agenda-skip)
5686 (setq pos (point))
5687 (let ((start-time (match-string 1))
5688 (end-time (match-string 2)))
5689 (setq s1 (match-string 1)
5690 s2 (match-string 2)
5691 d1 (time-to-days (org-time-string-to-time s1 (current-buffer) pos))
5692 d2 (time-to-days (org-time-string-to-time s2 (current-buffer) pos)))
5693 (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
5694 ;; Only allow days between the limits, because the normal
5695 ;; date stamps will catch the limits.
5696 (save-excursion
5697 (setq todo-state (org-get-todo-state))
5698 (setq donep (member todo-state org-done-keywords))
5699 (if (and donep org-agenda-skip-timestamp-if-done)
5700 (throw :skip t))
5701 (setq marker (org-agenda-new-marker (point)))
5702 (setq category (org-get-category)
5703 category-pos (get-text-property (point) 'org-category-position))
5704 (if (not (re-search-backward org-outline-regexp-bol nil t))
5705 (setq txt org-agenda-no-heading-message)
5706 (goto-char (match-beginning 0))
5707 (setq hdmarker (org-agenda-new-marker (point)))
5708 (setq tags (org-get-tags-at))
5709 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
5710 (setq head (match-string 1))
5711 (let ((remove-re
5712 (if org-agenda-remove-timeranges-from-blocks
5713 (concat
5714 "<" (regexp-quote s1) ".*?>"
5715 "--"
5716 "<" (regexp-quote s2) ".*?>")
5717 nil)))
5718 (setq txt (org-agenda-format-item
5719 (format
5720 (nth (if (= d1 d2) 0 1)
5721 org-agenda-timerange-leaders)
5722 (1+ (- d0 d1)) (1+ (- d2 d1)))
5723 head category tags
5724 (cond ((and (= d1 d0) (= d2 d0))
5725 (concat "<" start-time ">--<" end-time ">"))
5726 ((= d1 d0)
5727 (concat "<" start-time ">"))
5728 ((= d2 d0)
5729 (concat "<" end-time ">")))
5730 remove-re))))
5731 (org-add-props txt props
5732 'org-marker marker 'org-hd-marker hdmarker
5733 'type "block" 'date date
5734 'todo-state todo-state
5735 'priority (org-get-priority txt) 'org-category category
5736 'org-category-position category-pos)
5737 (push txt ee))))
5738 (goto-char pos)))
5739 ;; Sort the entries by expiration date.
5740 (nreverse ee)))
5742 ;;; Agenda presentation and sorting
5744 (defvar org-prefix-has-time nil
5745 "A flag, set by `org-compile-prefix-format'.
5746 The flag is set if the currently compiled format contains a `%t'.")
5747 (defvar org-prefix-has-tag nil
5748 "A flag, set by `org-compile-prefix-format'.
5749 The flag is set if the currently compiled format contains a `%T'.")
5750 (defvar org-prefix-has-effort nil
5751 "A flag, set by `org-compile-prefix-format'.
5752 The flag is set if the currently compiled format contains a `%e'.")
5753 (defvar org-prefix-category-length nil
5754 "Used by `org-compile-prefix-format' to remember the category field width.")
5755 (defvar org-prefix-category-max-length nil
5756 "Used by `org-compile-prefix-format' to remember the category field width.")
5758 (defun org-agenda-get-category-icon (category)
5759 "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
5760 (dolist (entry org-agenda-category-icon-alist)
5761 (when (org-string-match-p (car entry) category)
5762 (if (listp (cadr entry))
5763 (return (cadr entry))
5764 (return (apply 'create-image (cdr entry)))))))
5766 (defun org-agenda-format-item (extra txt &optional category tags dotime
5767 remove-re habitp)
5768 "Format TXT to be inserted into the agenda buffer.
5769 In particular, it adds the prefix and corresponding text properties. EXTRA
5770 must be a string and replaces the `%s' specifier in the prefix format.
5771 CATEGORY (string, symbol or nil) may be used to overrule the default
5772 category taken from local variable or file name. It will replace the `%c'
5773 specifier in the format. DOTIME, when non-nil, indicates that a
5774 time-of-day should be extracted from TXT for sorting of this entry, and for
5775 the `%t' specifier in the format. When DOTIME is a string, this string is
5776 searched for a time before TXT is. TAGS can be the tags of the headline.
5777 Any match of REMOVE-RE will be removed from TXT."
5778 ;; We keep the org-prefix-* variable values along with a compiled
5779 ;; formatter, so that multiple agendas existing at the same time, do
5780 ;; not step on each other toes.
5782 ;; It was inconvenient to make these variables buffer local in
5783 ;; Agenda buffers, because this function expects to be called with
5784 ;; the buffer where item comes from being current, and not agenda
5785 ;; buffer
5786 (let* ((bindings (car org-prefix-format-compiled))
5787 (formatter (cadr org-prefix-format-compiled)))
5788 (loop for (var value) in bindings
5789 do (set var value))
5790 (save-match-data
5791 ;; Diary entries sometimes have extra whitespace at the beginning
5792 (if (string-match "^ +" txt) (setq txt (replace-match "" nil nil txt)))
5794 ;; Fix the tags part in txt
5795 (setq txt (org-agenda-fix-displayed-tags
5796 txt tags
5797 org-agenda-show-inherited-tags
5798 org-agenda-hide-tags-regexp))
5799 (let* ((category (or category
5800 (if (stringp org-category)
5801 org-category
5802 (and org-category (symbol-name org-category)))
5803 (if buffer-file-name
5804 (file-name-sans-extension
5805 (file-name-nondirectory buffer-file-name))
5806 "")))
5807 (category-icon (org-agenda-get-category-icon category))
5808 (category-icon (if category-icon
5809 (propertize " " 'display category-icon)
5810 ""))
5811 ;; time, tag, effort are needed for the eval of the prefix format
5812 (tag (if tags (nth (1- (length tags)) tags) ""))
5813 time effort neffort
5814 (ts (if dotime (concat
5815 (if (stringp dotime) dotime "")
5816 (and org-agenda-search-headline-for-time txt))))
5817 (time-of-day (and dotime (org-get-time-of-day ts)))
5818 stamp plain s0 s1 s2 rtn srp l
5819 duration thecategory)
5820 (and (derived-mode-p 'org-mode) buffer-file-name
5821 (add-to-list 'org-agenda-contributing-files buffer-file-name))
5822 (when (and dotime time-of-day)
5823 ;; Extract starting and ending time and move them to prefix
5824 (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
5825 (setq plain (string-match org-plain-time-of-day-regexp ts)))
5826 (setq s0 (match-string 0 ts)
5827 srp (and stamp (match-end 3))
5828 s1 (match-string (if plain 1 2) ts)
5829 s2 (match-string (if plain 8 (if srp 4 6)) ts))
5831 ;; If the times are in TXT (not in DOTIMES), and the prefix will list
5832 ;; them, we might want to remove them there to avoid duplication.
5833 ;; The user can turn this off with a variable.
5834 (if (and org-prefix-has-time
5835 org-agenda-remove-times-when-in-prefix (or stamp plain)
5836 (string-match (concat (regexp-quote s0) " *") txt)
5837 (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
5838 (if (eq org-agenda-remove-times-when-in-prefix 'beg)
5839 (= (match-beginning 0) 0)
5841 (setq txt (replace-match "" nil nil txt))))
5842 ;; Normalize the time(s) to 24 hour
5843 (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
5844 (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
5846 ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
5847 (when (and s1 (not s2) org-agenda-default-appointment-duration)
5848 (setq s2
5849 (org-minutes-to-hh:mm-string
5850 (+ (org-hh:mm-string-to-minutes s1) org-agenda-default-appointment-duration))))
5852 ;; Compute the duration
5853 (when s2
5854 (setq duration (- (org-hh:mm-string-to-minutes s2)
5855 (org-hh:mm-string-to-minutes s1)))))
5857 (when (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
5858 txt)
5859 ;; Tags are in the string
5860 (if (or (eq org-agenda-remove-tags t)
5861 (and org-agenda-remove-tags
5862 org-prefix-has-tag))
5863 (setq txt (replace-match "" t t txt))
5864 (setq txt (replace-match
5865 (concat (make-string (max (- 50 (length txt)) 1) ?\ )
5866 (match-string 2 txt))
5867 t t txt))))
5868 (when (derived-mode-p 'org-mode)
5869 (setq effort
5870 (condition-case nil
5871 (org-get-effort
5872 (or (get-text-property 0 'org-hd-marker txt)
5873 (get-text-property 0 'org-marker txt)))
5874 (error nil)))
5875 (when effort
5876 (setq neffort (org-duration-string-to-minutes effort)
5877 effort (setq effort (concat "[" effort "]")))))
5878 ;; prevent erroring out with %e format when there is no effort
5879 (or effort (setq effort ""))
5881 (when remove-re
5882 (while (string-match remove-re txt)
5883 (setq txt (replace-match "" t t txt))))
5885 ;; Set org-heading property on `txt' to mark the start of the
5886 ;; heading.
5887 (add-text-properties 0 (length txt) '(org-heading t) txt)
5889 ;; Prepare the variables needed in the eval of the compiled format
5890 (setq time (cond (s2 (concat
5891 (org-agenda-time-of-day-to-ampm-maybe s1)
5892 "-" (org-agenda-time-of-day-to-ampm-maybe s2)
5893 (if org-agenda-timegrid-use-ampm " ")))
5894 (s1 (concat
5895 (org-agenda-time-of-day-to-ampm-maybe s1)
5896 (if org-agenda-timegrid-use-ampm
5897 "........ "
5898 "......")))
5899 (t ""))
5900 extra (or (and (not habitp) extra) "")
5901 category (if (symbolp category) (symbol-name category) category)
5902 thecategory (copy-sequence category))
5903 (if (string-match org-bracket-link-regexp category)
5904 (progn
5905 (setq l (if (match-end 3)
5906 (- (match-end 3) (match-beginning 3))
5907 (- (match-end 1) (match-beginning 1))))
5908 (when (< l (or org-prefix-category-length 0))
5909 (setq category (copy-sequence category))
5910 (org-add-props category nil
5911 'extra-space (make-string
5912 (- org-prefix-category-length l 1) ?\ ))))
5913 (if (and org-prefix-category-max-length
5914 (>= (length category) org-prefix-category-max-length))
5915 (setq category (substring category 0 (1- org-prefix-category-max-length)))))
5916 ;; Evaluate the compiled format
5917 (setq rtn (concat (eval formatter) txt))
5919 ;; And finally add the text properties
5920 (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
5921 (org-add-props rtn nil
5922 'org-category (if thecategory (downcase thecategory) category)
5923 'tags (mapcar 'org-downcase-keep-props tags)
5924 'org-highest-priority org-highest-priority
5925 'org-lowest-priority org-lowest-priority
5926 'time-of-day time-of-day
5927 'duration duration
5928 'effort effort
5929 'effort-minutes neffort
5930 'txt txt
5931 'time time
5932 'extra extra
5933 'format org-prefix-format-compiled
5934 'dotime dotime)))))
5936 (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
5937 "Remove tags string from TXT, and add a modified list of tags.
5938 The modified list may contain inherited tags, and tags matched by
5939 `org-agenda-hide-tags-regexp' will be removed."
5940 (when (or add-inherited hide-re)
5941 (if (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") txt)
5942 (setq txt (substring txt 0 (match-beginning 0))))
5943 (setq tags
5944 (delq nil
5945 (mapcar (lambda (tg)
5946 (if (or (and hide-re (string-match hide-re tg))
5947 (and (not add-inherited)
5948 (get-text-property 0 'inherited tg)))
5950 tg))
5951 tags)))
5952 (when tags
5953 (let ((have-i (get-text-property 0 'inherited (car tags)))
5955 (setq txt (concat txt " :"
5956 (mapconcat
5957 (lambda (x)
5958 (setq i (get-text-property 0 'inherited x))
5959 (if (and have-i (not i))
5960 (progn
5961 (setq have-i nil)
5962 (concat ":" x))
5964 tags ":")
5965 (if have-i "::" ":"))))))
5966 txt)
5968 (defun org-downcase-keep-props (s)
5969 (let ((props (text-properties-at 0 s)))
5970 (setq s (downcase s))
5971 (add-text-properties 0 (length s) props s)
5974 (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
5975 (defvar org-agenda-sorting-strategy-selected nil)
5977 (defun org-agenda-add-time-grid-maybe (list ndays todayp)
5978 (catch 'exit
5979 (cond ((not org-agenda-use-time-grid) (throw 'exit list))
5980 ((and todayp (member 'today (car org-agenda-time-grid))))
5981 ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
5982 ((member 'weekly (car org-agenda-time-grid)))
5983 (t (throw 'exit list)))
5984 (let* ((have (delq nil (mapcar
5985 (lambda (x) (get-text-property 1 'time-of-day x))
5986 list)))
5987 (string (nth 1 org-agenda-time-grid))
5988 (gridtimes (nth 2 org-agenda-time-grid))
5989 (req (car org-agenda-time-grid))
5990 (remove (member 'remove-match req))
5991 new time)
5992 (if (and (member 'require-timed req) (not have))
5993 ;; don't show empty grid
5994 (throw 'exit list))
5995 (while (setq time (pop gridtimes))
5996 (unless (and remove (member time have))
5997 (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
5998 (push (org-agenda-format-item
5999 nil string "" nil
6000 (concat (substring time 0 -2) ":" (substring time -2)))
6001 new)
6002 (put-text-property
6003 2 (length (car new)) 'face 'org-time-grid (car new))))
6004 (when (and todayp org-agenda-show-current-time-in-grid)
6005 (push (org-agenda-format-item
6007 org-agenda-current-time-string
6008 "" nil
6009 (format-time-string "%H:%M "))
6010 new)
6011 (put-text-property
6012 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
6014 (if (member 'time-up org-agenda-sorting-strategy-selected)
6015 (append new list)
6016 (append list new)))))
6018 (defun org-compile-prefix-format (key)
6019 "Compile the prefix format into a Lisp form that can be evaluated.
6020 The resulting form and associated variable bindings is returned
6021 and stored in the variable `org-prefix-format-compiled'."
6022 (setq org-prefix-has-time nil org-prefix-has-tag nil
6023 org-prefix-category-length nil
6024 org-prefix-has-effort nil)
6025 (let ((s (cond
6026 ((stringp org-agenda-prefix-format)
6027 org-agenda-prefix-format)
6028 ((assq key org-agenda-prefix-format)
6029 (cdr (assq key org-agenda-prefix-format)))
6030 (t " %-12:c%?-12t% s")))
6031 (start 0)
6032 varform vars var e c f opt)
6033 (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([ctsei]\\|(.+)\\)"
6034 s start)
6035 (setq var (or (cdr (assoc (match-string 4 s)
6036 '(("c" . category) ("t" . time) ("s" . extra)
6037 ("i" . category-icon) ("T" . tag) ("e" . effort))))
6038 'eval)
6039 c (or (match-string 3 s) "")
6040 opt (match-beginning 1)
6041 start (1+ (match-beginning 0)))
6042 (if (equal var 'time) (setq org-prefix-has-time t))
6043 (if (equal var 'tag) (setq org-prefix-has-tag t))
6044 (if (equal var 'effort) (setq org-prefix-has-effort t))
6045 (setq f (concat "%" (match-string 2 s) "s"))
6046 (when (equal var 'category)
6047 (setq org-prefix-category-length
6048 (floor (abs (string-to-number (match-string 2 s)))))
6049 (setq org-prefix-category-max-length
6050 (let ((x (match-string 2 s)))
6051 (save-match-data
6052 (if (string-match "\\.[0-9]+" x)
6053 (string-to-number (substring (match-string 0 x) 1)))))))
6054 (if (eq var 'eval)
6055 (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
6056 (if opt
6057 (setq varform
6058 `(if (equal "" ,var)
6060 (format ,f (if (equal "" ,var) "" (concat ,var ,c)))))
6061 (setq varform `(format ,f (if (equal ,var "") "" (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
6062 (setq s (replace-match "%s" t nil s))
6063 (push varform vars))
6064 (setq vars (nreverse vars))
6065 (with-current-buffer org-agenda-buffer
6066 (setq org-prefix-format-compiled
6067 (list
6068 `((org-prefix-has-time ,org-prefix-has-time)
6069 (org-prefix-has-tag ,org-prefix-has-tag)
6070 (org-prefix-category-length ,org-prefix-category-length)
6071 (org-prefix-has-effort ,org-prefix-has-effort))
6072 `(format ,s ,@vars))))))
6074 (defun org-set-sorting-strategy (key)
6075 (if (symbolp (car org-agenda-sorting-strategy))
6076 ;; the old format
6077 (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
6078 (setq org-agenda-sorting-strategy-selected
6079 (or (cdr (assq key org-agenda-sorting-strategy))
6080 (cdr (assq 'agenda org-agenda-sorting-strategy))
6081 '(time-up category-keep priority-down)))))
6083 (defun org-get-time-of-day (s &optional string mod24)
6084 "Check string S for a time of day.
6085 If found, return it as a military time number between 0 and 2400.
6086 If not found, return nil.
6087 The optional STRING argument forces conversion into a 5 character wide string
6088 HH:MM."
6089 (save-match-data
6090 (when
6091 (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
6092 (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
6093 (let* ((h (string-to-number (match-string 1 s)))
6094 (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
6095 (ampm (if (match-end 4) (downcase (match-string 4 s))))
6096 (am-p (equal ampm "am"))
6097 (h1 (cond ((not ampm) h)
6098 ((= h 12) (if am-p 0 12))
6099 (t (+ h (if am-p 0 12)))))
6100 (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
6101 (mod h1 24) h1))
6102 (t0 (+ (* 100 h2) m))
6103 (t1 (concat (if (>= h1 24) "+" " ")
6104 (if (and org-agenda-time-leading-zero
6105 (< t0 1000)) "0" "")
6106 (if (< t0 100) "0" "")
6107 (if (< t0 10) "0" "")
6108 (int-to-string t0))))
6109 (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
6111 (defvar org-agenda-before-sorting-filter-function nil
6112 "Function to be applied to agenda items prior to sorting.
6113 Prior to sorting also means just before they are inserted into the agenda.
6115 To aid sorting, you may revisit the original entries and add more text
6116 properties which will later be used by the sorting functions.
6118 The function should take a string argument, an agenda line.
6119 It has access to the text properties in that line, which contain among
6120 other things, the property `org-hd-marker' that points to the entry
6121 where the line comes from. Note that not all lines going into the agenda
6122 have this property, only most.
6124 The function should return the modified string. It is probably best
6125 to ONLY change text properties.
6127 You can also use this function as a filter, by returning nil for lines
6128 you don't want to have in the agenda at all. For this application, you
6129 could bind the variable in the options section of a custom command.")
6131 (defun org-finalize-agenda-entries (list &optional nosort)
6132 "Sort and concatenate the agenda items."
6133 (setq list (mapcar 'org-agenda-highlight-todo list))
6134 (if nosort
6135 list
6136 (when org-agenda-before-sorting-filter-function
6137 (setq list (delq nil (mapcar org-agenda-before-sorting-filter-function list))))
6138 (mapconcat 'identity (sort list 'org-entries-lessp) "\n")))
6140 (defun org-agenda-highlight-todo (x)
6141 (let ((org-done-keywords org-done-keywords-for-agenda)
6142 (case-fold-search nil)
6144 (if (eq x 'line)
6145 (save-excursion
6146 (beginning-of-line 1)
6147 (setq re (org-get-at-bol 'org-todo-regexp))
6148 (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
6149 (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
6150 (add-text-properties (match-beginning 0) (match-end 1)
6151 (list 'face (org-get-todo-face 1)))
6152 (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
6153 (delete-region (match-beginning 1) (1- (match-end 0)))
6154 (goto-char (match-beginning 1))
6155 (insert (format org-agenda-todo-keyword-format s)))))
6156 (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
6157 (setq re (get-text-property 0 'org-todo-regexp x))
6158 (when (and re
6159 ;; Test `pl' because if there's no heading content,
6160 ;; there's no point matching to highlight. Note
6161 ;; that if we didn't test `pl' first, and there
6162 ;; happened to be no keyword from `org-todo-regexp'
6163 ;; on this heading line, then the `equal' comparison
6164 ;; afterwards would spuriously succeed in the case
6165 ;; where `pl' is nil -- causing an args-out-of-range
6166 ;; error when we try to add text properties to text
6167 ;; that isn't there.
6169 (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
6170 x pl) pl))
6171 (add-text-properties
6172 (or (match-end 1) (match-end 0)) (match-end 0)
6173 (list 'face (org-get-todo-face (match-string 2 x)))
6175 (when (match-end 1)
6176 (setq x (concat (substring x 0 (match-end 1))
6177 (format org-agenda-todo-keyword-format
6178 (match-string 2 x))
6179 (org-add-props " " (text-properties-at 0 x))
6180 (substring x (match-end 3)))))))
6181 x)))
6183 (defsubst org-cmp-priority (a b)
6184 "Compare the priorities of string A and B."
6185 (let ((pa (or (get-text-property 1 'priority a) 0))
6186 (pb (or (get-text-property 1 'priority b) 0)))
6187 (cond ((> pa pb) +1)
6188 ((< pa pb) -1))))
6190 (defsubst org-cmp-effort (a b)
6191 "Compare the effort values of string A and B."
6192 (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
6193 (ea (or (get-text-property 1 'effort-minutes a) def))
6194 (eb (or (get-text-property 1 'effort-minutes b) def)))
6195 (cond ((> ea eb) +1)
6196 ((< ea eb) -1))))
6198 (defsubst org-cmp-category (a b)
6199 "Compare the string values of categories of strings A and B."
6200 (let ((ca (or (get-text-property 1 'org-category a) ""))
6201 (cb (or (get-text-property 1 'org-category b) "")))
6202 (cond ((string-lessp ca cb) -1)
6203 ((string-lessp cb ca) +1))))
6205 (defsubst org-cmp-todo-state (a b)
6206 "Compare the todo states of strings A and B."
6207 (let* ((ma (or (get-text-property 1 'org-marker a)
6208 (get-text-property 1 'org-hd-marker a)))
6209 (mb (or (get-text-property 1 'org-marker b)
6210 (get-text-property 1 'org-hd-marker b)))
6211 (fa (and ma (marker-buffer ma)))
6212 (fb (and mb (marker-buffer mb)))
6213 (todo-kwds
6214 (or (and fa (with-current-buffer fa org-todo-keywords-1))
6215 (and fb (with-current-buffer fb org-todo-keywords-1))))
6216 (ta (or (get-text-property 1 'todo-state a) ""))
6217 (tb (or (get-text-property 1 'todo-state b) ""))
6218 (la (- (length (member ta todo-kwds))))
6219 (lb (- (length (member tb todo-kwds))))
6220 (donepa (member ta org-done-keywords-for-agenda))
6221 (donepb (member tb org-done-keywords-for-agenda)))
6222 (cond ((and donepa (not donepb)) -1)
6223 ((and (not donepa) donepb) +1)
6224 ((< la lb) -1)
6225 ((< lb la) +1))))
6227 (defsubst org-cmp-alpha (a b)
6228 "Compare the headlines, alphabetically."
6229 (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
6230 (plb (text-property-any 0 (length b) 'org-heading t b))
6231 (ta (and pla (substring a pla)))
6232 (tb (and plb (substring b plb))))
6233 (when pla
6234 (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
6235 "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
6236 (setq ta (substring ta (match-end 0))))
6237 (setq ta (downcase ta)))
6238 (when plb
6239 (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
6240 "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
6241 (setq tb (substring tb (match-end 0))))
6242 (setq tb (downcase tb)))
6243 (cond ((not ta) +1)
6244 ((not tb) -1)
6245 ((string-lessp ta tb) -1)
6246 ((string-lessp tb ta) +1))))
6248 (defsubst org-cmp-tag (a b)
6249 "Compare the string values of the first tags of A and B."
6250 (let ((ta (car (last (get-text-property 1 'tags a))))
6251 (tb (car (last (get-text-property 1 'tags b)))))
6252 (cond ((not ta) +1)
6253 ((not tb) -1)
6254 ((string-lessp ta tb) -1)
6255 ((string-lessp tb ta) +1))))
6257 (defsubst org-cmp-time (a b)
6258 "Compare the time-of-day values of strings A and B."
6259 (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
6260 (ta (or (get-text-property 1 'time-of-day a) def))
6261 (tb (or (get-text-property 1 'time-of-day b) def)))
6262 (cond ((< ta tb) -1)
6263 ((< tb ta) +1))))
6265 (defsubst org-cmp-habit-p (a b)
6266 "Compare the todo states of strings A and B."
6267 (let ((ha (get-text-property 1 'org-habit-p a))
6268 (hb (get-text-property 1 'org-habit-p b)))
6269 (cond ((and ha (not hb)) -1)
6270 ((and (not ha) hb) +1))))
6272 (defsubst org-em (x y list) (or (memq x list) (memq y list)))
6274 (defun org-entries-lessp (a b)
6275 "Predicate for sorting agenda entries."
6276 ;; The following variables will be used when the form is evaluated.
6277 ;; So even though the compiler complains, keep them.
6278 (let* ((ss org-agenda-sorting-strategy-selected)
6279 (time-up (and (org-em 'time-up 'time-down ss)
6280 (org-cmp-time a b)))
6281 (time-down (if time-up (- time-up) nil))
6282 (priority-up (and (org-em 'priority-up 'priority-down ss)
6283 (org-cmp-priority a b)))
6284 (priority-down (if priority-up (- priority-up) nil))
6285 (effort-up (and (org-em 'effort-up 'effort-down ss)
6286 (org-cmp-effort a b)))
6287 (effort-down (if effort-up (- effort-up) nil))
6288 (category-up (and (or (org-em 'category-up 'category-down ss)
6289 (memq 'category-keep ss))
6290 (org-cmp-category a b)))
6291 (category-down (if category-up (- category-up) nil))
6292 (category-keep (if category-up +1 nil))
6293 (tag-up (and (org-em 'tag-up 'tag-down ss)
6294 (org-cmp-tag a b)))
6295 (tag-down (if tag-up (- tag-up) nil))
6296 (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
6297 (org-cmp-todo-state a b)))
6298 (todo-state-down (if todo-state-up (- todo-state-up) nil))
6299 (habit-up (and (org-em 'habit-up 'habit-down ss)
6300 (org-cmp-habit-p a b)))
6301 (habit-down (if habit-up (- habit-up) nil))
6302 (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
6303 (org-cmp-alpha a b)))
6304 (alpha-down (if alpha-up (- alpha-up) nil))
6305 (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
6306 user-defined-up user-defined-down)
6307 (if (and need-user-cmp org-agenda-cmp-user-defined
6308 (functionp org-agenda-cmp-user-defined))
6309 (setq user-defined-up
6310 (funcall org-agenda-cmp-user-defined a b)
6311 user-defined-down (if user-defined-up (- user-defined-up) nil)))
6312 (cdr (assoc
6313 (eval (cons 'or org-agenda-sorting-strategy-selected))
6314 '((-1 . t) (1 . nil) (nil . nil))))))
6316 ;;; Agenda restriction lock
6318 (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
6319 "Overlay to mark the headline to which agenda commands are restricted.")
6320 (overlay-put org-agenda-restriction-lock-overlay
6321 'face 'org-agenda-restriction-lock)
6322 (overlay-put org-agenda-restriction-lock-overlay
6323 'help-echo "Agendas are currently limited to this subtree.")
6324 (org-detach-overlay org-agenda-restriction-lock-overlay)
6326 (defun org-agenda-set-restriction-lock (&optional type)
6327 "Set restriction lock for agenda, to current subtree or file.
6328 Restriction will be the file if TYPE is `file', or if type is the
6329 universal prefix '(4), or if the cursor is before the first headline
6330 in the file. Otherwise, restriction will be to the current subtree."
6331 (interactive "P")
6332 (and (equal type '(4)) (setq type 'file))
6333 (setq type (cond
6334 (type type)
6335 ((org-at-heading-p) 'subtree)
6336 ((condition-case nil (org-back-to-heading t) (error nil))
6337 'subtree)
6338 (t 'file)))
6339 (if (eq type 'subtree)
6340 (progn
6341 (setq org-agenda-restrict t)
6342 (setq org-agenda-overriding-restriction 'subtree)
6343 (put 'org-agenda-files 'org-restrict
6344 (list (buffer-file-name (buffer-base-buffer))))
6345 (org-back-to-heading t)
6346 (move-overlay org-agenda-restriction-lock-overlay (point) (point-at-eol))
6347 (move-marker org-agenda-restrict-begin (point))
6348 (move-marker org-agenda-restrict-end
6349 (save-excursion (org-end-of-subtree t)))
6350 (message "Locking agenda restriction to subtree"))
6351 (put 'org-agenda-files 'org-restrict
6352 (list (buffer-file-name (buffer-base-buffer))))
6353 (setq org-agenda-restrict nil)
6354 (setq org-agenda-overriding-restriction 'file)
6355 (move-marker org-agenda-restrict-begin nil)
6356 (move-marker org-agenda-restrict-end nil)
6357 (message "Locking agenda restriction to file"))
6358 (setq current-prefix-arg nil)
6359 (org-agenda-maybe-redo))
6361 (defun org-agenda-remove-restriction-lock (&optional noupdate)
6362 "Remove the agenda restriction lock."
6363 (interactive "P")
6364 (org-detach-overlay org-agenda-restriction-lock-overlay)
6365 (org-detach-overlay org-speedbar-restriction-lock-overlay)
6366 (setq org-agenda-overriding-restriction nil)
6367 (setq org-agenda-restrict nil)
6368 (put 'org-agenda-files 'org-restrict nil)
6369 (move-marker org-agenda-restrict-begin nil)
6370 (move-marker org-agenda-restrict-end nil)
6371 (setq current-prefix-arg nil)
6372 (message "Agenda restriction lock removed")
6373 (or noupdate (org-agenda-maybe-redo)))
6375 (defun org-agenda-maybe-redo ()
6376 "If there is any window showing the agenda view, update it."
6377 (let ((w (get-buffer-window org-agenda-buffer-name t))
6378 (w0 (selected-window)))
6379 (when w
6380 (select-window w)
6381 (org-agenda-redo)
6382 (select-window w0)
6383 (if org-agenda-overriding-restriction
6384 (message "Agenda view shifted to new %s restriction"
6385 org-agenda-overriding-restriction)
6386 (message "Agenda restriction lock removed")))))
6388 ;;; Agenda commands
6390 (defun org-agenda-check-type (error &rest types)
6391 "Check if agenda buffer is of allowed type.
6392 If ERROR is non-nil, throw an error, otherwise just return nil."
6393 (if (not org-agenda-type)
6394 (error "No Org agenda currently displayed")
6395 (if (memq org-agenda-type types)
6397 (if error
6398 (error "Not allowed in %s-type agenda buffers" org-agenda-type)
6399 nil))))
6401 (defun org-agenda-Quit (&optional arg)
6402 "Exit agenda by removing the window or the buffer."
6403 (interactive)
6404 (if org-agenda-columns-active
6405 (org-columns-quit)
6406 (let ((buf (current-buffer)))
6407 (if (eq org-agenda-window-setup 'other-frame)
6408 (progn
6409 (org-agenda-reset-markers)
6410 (kill-buffer buf)
6411 (org-columns-remove-overlays)
6412 (setq org-agenda-archives-mode nil)
6413 (delete-frame))
6414 (and (not (eq org-agenda-window-setup 'current-window))
6415 (not (one-window-p))
6416 (delete-window))
6417 (org-agenda-reset-markers)
6418 (kill-buffer buf)
6419 (org-columns-remove-overlays)
6420 (setq org-agenda-archives-mode nil)))
6421 ;; Maybe restore the pre-agenda window configuration.
6422 (and org-agenda-restore-windows-after-quit
6423 (not (eq org-agenda-window-setup 'other-frame))
6424 org-pre-agenda-window-conf
6425 (set-window-configuration org-pre-agenda-window-conf))))
6427 (defun org-agenda-quit ()
6428 "Exit agenda by killing agenda buffer or burying it when
6429 `org-agenda-sticky' is non-NIL"
6430 (interactive)
6431 (if org-agenda-columns-active
6432 (org-columns-quit)
6433 (if org-agenda-sticky
6434 (let ((buf (current-buffer)))
6435 (if (eq org-agenda-window-setup 'other-frame)
6436 (progn
6437 (delete-frame))
6438 (and (not (eq org-agenda-window-setup 'current-window))
6439 (not (one-window-p))
6440 (delete-window)))
6441 (with-current-buffer buf
6442 (bury-buffer)
6443 ;; Maybe restore the pre-agenda window configuration.
6444 (and org-agenda-restore-windows-after-quit
6445 (not (eq org-agenda-window-setup 'other-frame))
6446 org-pre-agenda-window-conf
6447 (set-window-configuration org-pre-agenda-window-conf))))
6448 (org-agenda-Quit))))
6450 (defun org-agenda-exit ()
6451 "Exit agenda by removing the window or the buffer.
6452 Also kill all Org-mode buffers which have been loaded by `org-agenda'.
6453 Org-mode buffers visited directly by the user will not be touched."
6454 (interactive)
6455 (org-release-buffers org-agenda-new-buffers)
6456 (setq org-agenda-new-buffers nil)
6457 (org-agenda-Quit))
6459 (defun org-agenda-kill-all-agenda-buffers ()
6460 "Kill all buffers in `org-agena-mode'.
6461 This is used when toggling sticky agendas. You can also explicitly invoke it
6462 with `C-c a C-k'."
6463 (interactive)
6464 (let (blist)
6465 (dolist (buf (buffer-list))
6466 (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
6467 (push buf blist)))
6468 (mapc 'kill-buffer blist)))
6470 (defun org-agenda-execute (arg)
6471 "Execute another agenda command, keeping same window.
6472 So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
6473 in the agenda."
6474 (interactive "P")
6475 (let ((org-agenda-window-setup 'current-window))
6476 (org-agenda arg)))
6478 (defun org-agenda-redo ()
6479 "Rebuild Agenda.
6480 When this is the global TODO list, a prefix argument will be interpreted."
6481 (interactive)
6482 (let* ((org-agenda-doing-sticky-redo org-agenda-sticky)
6483 (org-agenda-sticky nil)
6484 (org-agenda-buffer-name (or org-agenda-this-buffer-name
6485 org-agenda-buffer-name))
6486 (org-agenda-keep-modes t)
6487 (tag-filter org-agenda-tag-filter)
6488 (tag-preset (get 'org-agenda-tag-filter :preset-filter))
6489 (top-cat-filter org-agenda-top-category-filter)
6490 (cat-filter org-agenda-category-filter)
6491 (cat-preset (get 'org-agenda-category-filter :preset-filter))
6492 (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
6493 (cols org-agenda-columns-active)
6494 (line (org-current-line))
6495 (window-line (- line (org-current-line (window-start))))
6496 (lprops (get 'org-agenda-redo-command 'org-lprops)))
6497 (put 'org-agenda-tag-filter :preset-filter nil)
6498 (put 'org-agenda-category-filter :preset-filter nil)
6499 (and cols (org-columns-quit))
6500 (message "Rebuilding agenda buffer...")
6501 (org-let lprops '(eval org-agenda-redo-command))
6502 (setq org-agenda-undo-list nil
6503 org-agenda-pending-undo-list nil)
6504 (message "Rebuilding agenda buffer...done")
6505 (put 'org-agenda-tag-filter :preset-filter tag-preset)
6506 (put 'org-agenda-category-filter :preset-filter cat-preset)
6507 (and (or tag-filter tag-preset) (org-agenda-filter-apply tag-filter 'tag))
6508 (and (or cat-filter cat-preset) (org-agenda-filter-apply cat-filter 'category))
6509 (and top-cat-filter (org-agenda-filter-top-category-apply top-cat-filter))
6510 (and cols (org-called-interactively-p 'any) (org-agenda-columns))
6511 (org-goto-line line)
6512 (recenter window-line)))
6514 (defvar org-global-tags-completion-table nil)
6515 (defvar org-agenda-filter-form nil)
6516 (defvar org-agenda-filtered-by-category nil)
6518 (defun org-agenda-filter-by-category (strip)
6519 "Keep only those lines in the agenda buffer that have a specific category.
6520 The category is that of the current line."
6521 (interactive "P")
6522 (if (and org-agenda-filtered-by-category
6523 org-agenda-category-filter)
6524 (org-agenda-filter-show-all-cat)
6525 (let ((cat (org-no-properties (get-text-property (point) 'org-category))))
6526 (if cat (org-agenda-filter-apply
6527 (list (concat (if strip "-" "+") cat)) 'category)
6528 (error "No category at point")))))
6530 (defun org-find-top-category (&optional pos)
6531 (save-excursion
6532 (with-current-buffer (if pos (marker-buffer pos) (current-buffer))
6533 (if pos (goto-char pos))
6534 ;; Skip up to the topmost parent
6535 (while (ignore-errors (outline-up-heading 1) t))
6536 (ignore-errors
6537 (nth 4 (org-heading-components))))))
6539 (defvar org-agenda-filtered-by-top-category nil)
6541 (defun org-agenda-filter-by-top-category (strip)
6542 "Keep only those lines in the agenda buffer that have a specific category.
6543 The category is that of the current line."
6544 (interactive "P")
6545 (if org-agenda-filtered-by-top-category
6546 (progn
6547 (setq org-agenda-filtered-by-top-category nil
6548 org-agenda-top-category-filter nil)
6549 (org-agenda-filter-show-all-cat))
6550 (let ((cat (org-find-top-category (org-get-at-bol 'org-hd-marker))))
6551 (if cat (org-agenda-filter-top-category-apply cat strip)
6552 (error "No top-level category at point")))))
6554 (defun org-agenda-filter-by-tag (strip &optional char narrow)
6555 "Keep only those lines in the agenda buffer that have a specific tag.
6556 The tag is selected with its fast selection letter, as configured.
6557 With prefix argument STRIP, remove all lines that do have the tag.
6558 A lisp caller can specify CHAR. NARROW means that the new tag should be
6559 used to narrow the search - the interactive user can also press `-' or `+'
6560 to switch to narrowing."
6561 (interactive "P")
6562 (let* ((alist org-tag-alist-for-agenda)
6563 (tag-chars (mapconcat
6564 (lambda (x) (if (and (not (symbolp (car x)))
6565 (cdr x))
6566 (char-to-string (cdr x))
6567 ""))
6568 alist ""))
6569 (efforts (org-split-string
6570 (or (cdr (assoc (concat org-effort-property "_ALL")
6571 org-global-properties))
6572 "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
6573 "")))
6574 (effort-op org-agenda-filter-effort-default-operator)
6575 (effort-prompt "")
6576 (inhibit-read-only t)
6577 (current org-agenda-tag-filter)
6578 maybe-refresh a n tag)
6579 (unless char
6580 (message
6581 "%s by tag [%s ], [TAB], %s[/]:off, [+-]:narrow, [>=<?]:effort: "
6582 (if narrow "Narrow" "Filter") tag-chars
6583 (if org-agenda-auto-exclude-function "[RET], " ""))
6584 (setq char (read-char-exclusive)))
6585 (when (member char '(?+ ?-))
6586 ;; Narrowing down
6587 (cond ((equal char ?-) (setq strip t narrow t))
6588 ((equal char ?+) (setq strip nil narrow t)))
6589 (message
6590 "Narrow by tag [%s ], [TAB], [/]:off, [>=<]:effort: " tag-chars)
6591 (setq char (read-char-exclusive)))
6592 (when (member char '(?< ?> ?= ??))
6593 ;; An effort operator
6594 (setq effort-op (char-to-string char))
6595 (setq alist nil) ; to make sure it will be interpreted as effort.
6596 (unless (equal char ??)
6597 (loop for i from 0 to 9 do
6598 (setq effort-prompt
6599 (concat
6600 effort-prompt " ["
6601 (if (= i 9) "0" (int-to-string (1+ i)))
6602 "]" (nth i efforts))))
6603 (message "Effort%s: %s " effort-op effort-prompt)
6604 (setq char (read-char-exclusive))
6605 (when (or (< char ?0) (> char ?9))
6606 (error "Need 1-9,0 to select effort"))))
6607 (when (equal char ?\t)
6608 (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
6609 (org-set-local 'org-global-tags-completion-table
6610 (org-global-tags-completion-table)))
6611 (let ((completion-ignore-case t))
6612 (setq tag (org-icompleting-read
6613 "Tag: " org-global-tags-completion-table))))
6614 (cond
6615 ((equal char ?\r)
6616 (org-agenda-filter-show-all-tag)
6617 (when org-agenda-auto-exclude-function
6618 (setq org-agenda-tag-filter '())
6619 (dolist (tag (org-agenda-get-represented-tags))
6620 (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
6621 (if modifier
6622 (push modifier org-agenda-tag-filter))))
6623 (if (not (null org-agenda-tag-filter))
6624 (org-agenda-filter-apply org-agenda-tag-filter 'tag)))
6625 (setq maybe-refresh t))
6626 ((equal char ?/)
6627 (org-agenda-filter-show-all-tag)
6628 (when (get 'org-agenda-tag-filter :preset-filter)
6629 (org-agenda-filter-apply org-agenda-tag-filter 'tag))
6630 (setq maybe-refresh t))
6631 ((equal char ?. )
6632 (setq org-agenda-tag-filter
6633 (mapcar (lambda(tag) (concat "+" tag))
6634 (org-get-at-bol 'tags)))
6635 (org-agenda-filter-apply org-agenda-tag-filter 'tag)
6636 (setq maybe-refresh t))
6637 ((or (equal char ?\ )
6638 (setq a (rassoc char alist))
6639 (and (>= char ?0) (<= char ?9)
6640 (setq n (if (= char ?0) 9 (- char ?0 1))
6641 tag (concat effort-op (nth n efforts))
6642 a (cons tag nil)))
6643 (and (= char ??)
6644 (setq tag "?eff")
6645 a (cons tag nil))
6646 (and tag (setq a (cons tag nil))))
6647 (org-agenda-filter-show-all-tag)
6648 (setq tag (car a))
6649 (setq org-agenda-tag-filter
6650 (cons (concat (if strip "-" "+") tag)
6651 (if narrow current nil)))
6652 (org-agenda-filter-apply org-agenda-tag-filter 'tag)
6653 (setq maybe-refresh t))
6654 (t (error "Invalid tag selection character %c" char)))
6655 (when (and maybe-refresh
6656 (eq org-agenda-clockreport-mode 'with-filter))
6657 (org-agenda-redo))))
6659 (defun org-agenda-get-represented-tags ()
6660 "Get a list of all tags currently represented in the agenda."
6661 (let (p tags)
6662 (save-excursion
6663 (goto-char (point-min))
6664 (while (setq p (next-single-property-change (point) 'tags))
6665 (goto-char p)
6666 (mapc (lambda (x) (add-to-list 'tags x))
6667 (get-text-property (point) 'tags))))
6668 tags))
6670 (defun org-agenda-filter-by-tag-refine (strip &optional char)
6671 "Refine the current filter. See `org-agenda-filter-by-tag'."
6672 (interactive "P")
6673 (org-agenda-filter-by-tag strip char 'refine))
6675 (defun org-agenda-filter-make-matcher ()
6676 "Create the form that tests a line for agenda filter."
6677 (let (f f1)
6678 ;; first compute the tag-filter matcher
6679 (dolist (x (delete-dups
6680 (append (get 'org-agenda-tag-filter
6681 :preset-filter) org-agenda-tag-filter)))
6682 (if (member x '("-" "+"))
6683 (setq f1 (if (equal x "-") 'tags '(not tags)))
6684 (if (string-match "[<=>?]" x)
6685 (setq f1 (org-agenda-filter-effort-form x))
6686 (setq f1 (list 'member (downcase (substring x 1)) 'tags)))
6687 (if (equal (string-to-char x) ?-)
6688 (setq f1 (list 'not f1))))
6689 (push f1 f))
6690 ;; then compute the category-filter matcher
6691 (dolist (x (delete-dups
6692 (append (get 'org-agenda-category-filter
6693 :preset-filter) org-agenda-category-filter)))
6694 (if (equal "-" (substring x 0 1))
6695 (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
6696 (setq f1 (list 'equal (substring x 1) 'cat)))
6697 (push f1 f))
6698 (cons 'and (nreverse f))))
6700 (defun org-agenda-filter-effort-form (e)
6701 "Return the form to compare the effort of the current line with what E says.
6702 E looks like \"+<2:25\"."
6703 (let (op)
6704 (setq e (substring e 1))
6705 (setq op (string-to-char e) e (substring e 1))
6706 (setq op (cond ((equal op ?<) '<=)
6707 ((equal op ?>) '>=)
6708 ((equal op ??) op)
6709 (t '=)))
6710 (list 'org-agenda-compare-effort (list 'quote op)
6711 (org-duration-string-to-minutes e))))
6713 (defun org-agenda-compare-effort (op value)
6714 "Compare the effort of the current line with VALUE, using OP.
6715 If the line does not have an effort defined, return nil."
6716 (let ((eff (org-get-at-bol 'effort-minutes)))
6717 (if (equal op ??)
6718 (not eff)
6719 (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 0))
6720 value))))
6722 (defun org-agenda-filter-apply (filter type)
6723 "Set FILTER as the new agenda filter and apply it."
6724 (let (tags cat)
6725 (if (eq type 'tag)
6726 (setq org-agenda-tag-filter filter)
6727 (setq org-agenda-category-filter filter))
6728 (setq org-agenda-filter-form (org-agenda-filter-make-matcher))
6729 (if (and (eq type 'category)
6730 (not (equal (substring (car filter) 0 1) "-")))
6731 ;; Only set `org-agenda-filtered-by-category' to t
6732 ;; when a unique category is used as the filter
6733 (setq org-agenda-filtered-by-category t))
6734 (org-agenda-set-mode-name)
6735 (save-excursion
6736 (goto-char (point-min))
6737 (while (not (eobp))
6738 (if (org-get-at-bol 'org-marker)
6739 (progn
6740 (setq tags (org-get-at-bol 'tags) ; used in eval
6741 cat (get-text-property (point) 'org-category))
6742 (if (not (eval org-agenda-filter-form))
6743 (org-agenda-filter-hide-line type))
6744 (beginning-of-line 2))
6745 (beginning-of-line 2))))
6746 (if (get-char-property (point) 'invisible)
6747 (ignore-errors (org-agenda-previous-line)))))
6749 (defun org-agenda-filter-top-category-apply (category &optional negative)
6750 "Set FILTER as the new agenda filter and apply it."
6751 (org-agenda-set-mode-name)
6752 (save-excursion
6753 (goto-char (point-min))
6754 (while (not (eobp))
6755 (let* ((pos (org-get-at-bol 'org-hd-marker))
6756 (topcat (and pos (org-find-top-category pos))))
6757 (if (and topcat (funcall (if negative 'identity 'not)
6758 (string= category topcat)))
6759 (org-agenda-filter-hide-line 'category)))
6760 (beginning-of-line 2)))
6761 (if (get-char-property (point) 'invisible)
6762 (org-agenda-previous-line))
6763 (setq org-agenda-top-category-filter category
6764 org-agenda-filtered-by-top-category t))
6766 (defun org-agenda-filter-hide-line (type)
6767 (let (ov)
6768 (setq ov (make-overlay (max (point-min) (1- (point-at-bol)))
6769 (point-at-eol)))
6770 (overlay-put ov 'invisible t)
6771 (overlay-put ov 'type type)
6772 (if (eq type 'tag)
6773 (push ov org-agenda-tag-filter-overlays)
6774 (push ov org-agenda-cat-filter-overlays))))
6776 (defun org-agenda-fix-tags-filter-overlays-at (&optional pos)
6777 (setq pos (or pos (point)))
6778 (save-excursion
6779 (dolist (ov (overlays-at pos))
6780 (when (and (overlay-get ov 'invisible)
6781 (eq (overlay-get ov 'type) 'tag))
6782 (goto-char pos)
6783 (if (< (overlay-start ov) (point-at-eol))
6784 (move-overlay ov (point-at-eol)
6785 (overlay-end ov)))))))
6787 (defun org-agenda-filter-show-all-tag nil
6788 (mapc 'delete-overlay org-agenda-tag-filter-overlays)
6789 (setq org-agenda-tag-filter-overlays nil
6790 org-agenda-tag-filter nil
6791 org-agenda-filter-form nil)
6792 (org-agenda-set-mode-name))
6794 (defun org-agenda-filter-show-all-cat nil
6795 (mapc 'delete-overlay org-agenda-cat-filter-overlays)
6796 (setq org-agenda-cat-filter-overlays nil
6797 org-agenda-filtered-by-category nil
6798 org-agenda-category-filter nil
6799 org-agenda-filter-form nil)
6800 (org-agenda-set-mode-name))
6802 (defun org-agenda-manipulate-query-add ()
6803 "Manipulate the query by adding a search term with positive selection.
6804 Positive selection means the term must be matched for selection of an entry."
6805 (interactive)
6806 (org-agenda-manipulate-query ?\[))
6807 (defun org-agenda-manipulate-query-subtract ()
6808 "Manipulate the query by adding a search term with negative selection.
6809 Negative selection means term must not be matched for selection of an entry."
6810 (interactive)
6811 (org-agenda-manipulate-query ?\]))
6812 (defun org-agenda-manipulate-query-add-re ()
6813 "Manipulate the query by adding a search regexp with positive selection.
6814 Positive selection means the regexp must match for selection of an entry."
6815 (interactive)
6816 (org-agenda-manipulate-query ?\{))
6817 (defun org-agenda-manipulate-query-subtract-re ()
6818 "Manipulate the query by adding a search regexp with negative selection.
6819 Negative selection means regexp must not match for selection of an entry."
6820 (interactive)
6821 (org-agenda-manipulate-query ?\}))
6822 (defun org-agenda-manipulate-query (char)
6823 (cond
6824 ((memq org-agenda-type '(timeline agenda))
6825 (let ((org-agenda-include-inactive-timestamps t))
6826 (org-agenda-redo))
6827 (message "Display now includes inactive timestamps as well"))
6828 ((eq org-agenda-type 'search)
6829 (org-add-to-string
6830 'org-agenda-query-string
6831 (if org-agenda-last-search-view-search-was-boolean
6832 (cdr (assoc char '((?\[ . " +") (?\] . " -")
6833 (?\{ . " +{}") (?\} . " -{}"))))
6834 " "))
6835 (setq org-agenda-redo-command
6836 (list 'org-search-view
6837 org-todo-only
6838 org-agenda-query-string
6839 (+ (length org-agenda-query-string)
6840 (if (member char '(?\{ ?\})) 0 1))))
6841 (set-register org-agenda-query-register org-agenda-query-string)
6842 (org-agenda-redo))
6843 (t (error "Cannot manipulate query for %s-type agenda buffers"
6844 org-agenda-type))))
6846 (defun org-add-to-string (var string)
6847 (set var (concat (symbol-value var) string)))
6849 (defun org-agenda-goto-date (date)
6850 "Jump to DATE in agenda."
6851 (interactive (list (let ((org-read-date-prefer-future
6852 (eval org-agenda-jump-prefer-future)))
6853 (org-read-date))))
6854 (org-agenda-list nil date))
6856 (defun org-agenda-goto-today ()
6857 "Go to today."
6858 (interactive)
6859 (org-agenda-check-type t 'timeline 'agenda)
6860 (let ((tdpos (text-property-any (point-min) (point-max) 'org-today t)))
6861 (cond
6862 (tdpos (goto-char tdpos))
6863 ((eq org-agenda-type 'agenda)
6864 (let* ((sd (org-agenda-compute-starting-span
6865 (org-today) (or org-agenda-current-span org-agenda-ndays org-agenda-span)))
6866 (org-agenda-overriding-arguments org-agenda-last-arguments))
6867 (setf (nth 1 org-agenda-overriding-arguments) sd)
6868 (org-agenda-redo)
6869 (org-agenda-find-same-or-today-or-agenda)))
6870 (t (error "Cannot find today")))))
6872 (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
6873 (goto-char
6874 (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
6875 (text-property-any (point-min) (point-max) 'org-today t)
6876 (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
6877 (point-min))))
6879 (defun org-agenda-later (arg)
6880 "Go forward in time by thee current span.
6881 With prefix ARG, go forward that many times the current span."
6882 (interactive "p")
6883 (org-agenda-check-type t 'agenda)
6884 (let* ((span org-agenda-current-span)
6885 (sd org-starting-day)
6886 (greg (calendar-gregorian-from-absolute sd))
6887 (cnt (org-get-at-bol 'org-day-cnt))
6888 greg2)
6889 (cond
6890 ((eq span 'day)
6891 (setq sd (+ arg sd)))
6892 ((eq span 'week)
6893 (setq sd (+ (* 7 arg) sd)))
6894 ((eq span 'month)
6895 (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
6896 sd (calendar-absolute-from-gregorian greg2))
6897 (setcar greg2 (1+ (car greg2))))
6898 ((eq span 'year)
6899 (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
6900 sd (calendar-absolute-from-gregorian greg2))
6901 (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
6903 (setq sd (+ (* span arg) sd))))
6904 (let ((org-agenda-overriding-arguments
6905 (list (car org-agenda-last-arguments) sd span t)))
6906 (org-agenda-redo)
6907 (org-agenda-find-same-or-today-or-agenda cnt))))
6909 (defun org-agenda-earlier (arg)
6910 "Go backward in time by the current span.
6911 With prefix ARG, go backward that many times the current span."
6912 (interactive "p")
6913 (org-agenda-later (- arg)))
6915 (defun org-agenda-view-mode-dispatch ()
6916 "Call one of the view mode commands."
6917 (interactive)
6918 (message "View: [d]ay [w]eek [m]onth [y]ear [SPC]reset [q]uit/abort
6919 time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
6920 [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
6921 (let ((a (read-char-exclusive)))
6922 (case a
6923 (?\ (call-interactively 'org-agenda-reset-view))
6924 (?d (call-interactively 'org-agenda-day-view))
6925 (?w (call-interactively 'org-agenda-week-view))
6926 (?m (call-interactively 'org-agenda-month-view))
6927 (?y (call-interactively 'org-agenda-year-view))
6928 (?l (call-interactively 'org-agenda-log-mode))
6929 (?L (org-agenda-log-mode '(4)))
6930 (?c (org-agenda-log-mode 'clockcheck))
6931 ((?F ?f) (call-interactively 'org-agenda-follow-mode))
6932 (?a (call-interactively 'org-agenda-archives-mode))
6933 (?A (org-agenda-archives-mode 'files))
6934 ((?R ?r) (call-interactively 'org-agenda-clockreport-mode))
6935 ((?E ?e) (call-interactively 'org-agenda-entry-text-mode))
6936 (?G (call-interactively 'org-agenda-toggle-time-grid))
6937 (?D (call-interactively 'org-agenda-toggle-diary))
6938 (?\! (call-interactively 'org-agenda-toggle-deadlines))
6939 (?\[ (let ((org-agenda-include-inactive-timestamps t))
6940 (org-agenda-check-type t 'timeline 'agenda)
6941 (org-agenda-redo))
6942 (message "Display now includes inactive timestamps as well"))
6943 (?q (message "Abort"))
6944 (otherwise (error "Invalid key" )))))
6946 (defun org-agenda-reset-view ()
6947 "Switch to default view for agenda."
6948 (interactive)
6949 (org-agenda-change-time-span (or org-agenda-ndays org-agenda-span)))
6950 (defun org-agenda-day-view (&optional day-of-year)
6951 "Switch to daily view for agenda.
6952 With argument DAY-OF-YEAR, switch to that day of the year."
6953 (interactive "P")
6954 (org-agenda-change-time-span 'day day-of-year))
6955 (defun org-agenda-week-view (&optional iso-week)
6956 "Switch to daily view for agenda.
6957 With argument ISO-WEEK, switch to the corresponding ISO week.
6958 If ISO-WEEK has more then 2 digits, only the last two encode the
6959 week. Any digits before this encode a year. So 200712 means
6960 week 12 of year 2007. Years in the range 1938-2037 can also be
6961 written as 2-digit years."
6962 (interactive "P")
6963 (org-agenda-change-time-span 'week iso-week))
6964 (defun org-agenda-month-view (&optional month)
6965 "Switch to monthly view for agenda.
6966 With argument MONTH, switch to that month."
6967 (interactive "P")
6968 (org-agenda-change-time-span 'month month))
6969 (defun org-agenda-year-view (&optional year)
6970 "Switch to yearly view for agenda.
6971 With argument YEAR, switch to that year.
6972 If MONTH has more then 2 digits, only the last two encode the
6973 month. Any digits before this encode a year. So 200712 means
6974 December year 2007. Years in the range 1938-2037 can also be
6975 written as 2-digit years."
6976 (interactive "P")
6977 (when year
6978 (setq year (org-small-year-to-year year)))
6979 (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
6980 (org-agenda-change-time-span 'year year)
6981 (error "Abort")))
6983 (defun org-agenda-change-time-span (span &optional n)
6984 "Change the agenda view to SPAN.
6985 SPAN may be `day', `week', `month', `year'."
6986 (org-agenda-check-type t 'agenda)
6987 (if (and (not n) (equal org-agenda-current-span span))
6988 (error "Viewing span is already \"%s\"" span))
6989 (let* ((sd (or (org-get-at-bol 'day)
6990 org-starting-day))
6991 (sd (org-agenda-compute-starting-span sd span n))
6992 (org-agenda-overriding-arguments
6993 (or org-agenda-overriding-arguments
6994 (list (car org-agenda-last-arguments) sd span t))))
6995 (org-agenda-redo)
6996 (org-agenda-find-same-or-today-or-agenda))
6997 (org-agenda-set-mode-name)
6998 (message "Switched to %s view" span))
7000 (defun org-agenda-compute-starting-span (sd span &optional n)
7001 "Compute starting date for agenda.
7002 SPAN may be `day', `week', `month', `year'. The return value
7003 is a cons cell with the starting date and the number of days,
7004 so that the date SD will be in that range."
7005 (let* ((greg (calendar-gregorian-from-absolute sd))
7006 (dg (nth 1 greg))
7007 (mg (car greg))
7008 (yg (nth 2 greg)))
7009 (cond
7010 ((eq span 'day)
7011 (when n
7012 (setq sd (+ (calendar-absolute-from-gregorian
7013 (list mg 1 yg))
7014 n -1))))
7015 ((eq span 'week)
7016 (let* ((nt (calendar-day-of-week
7017 (calendar-gregorian-from-absolute sd)))
7018 (d (if org-agenda-start-on-weekday
7019 (- nt org-agenda-start-on-weekday)
7022 (setq sd (- sd (+ (if (< d 0) 7 0) d)))
7023 (when n
7024 (require 'cal-iso)
7025 (when (> n 99)
7026 (setq y1 (org-small-year-to-year (/ n 100))
7027 n (mod n 100)))
7028 (setq sd
7029 (calendar-absolute-from-iso
7030 (list n 1
7031 (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
7032 ((eq span 'month)
7033 (let (y1)
7034 (when (and n (> n 99))
7035 (setq y1 (org-small-year-to-year (/ n 100))
7036 n (mod n 100)))
7037 (setq sd (calendar-absolute-from-gregorian
7038 (list (or n mg) 1 (or y1 yg))))))
7039 ((eq span 'year)
7040 (setq sd (calendar-absolute-from-gregorian
7041 (list 1 1 (or n yg))))))
7042 sd))
7044 (defun org-agenda-next-date-line (&optional arg)
7045 "Jump to the next line indicating a date in agenda buffer."
7046 (interactive "p")
7047 (org-agenda-check-type t 'agenda 'timeline)
7048 (beginning-of-line 1)
7049 ;; This does not work if user makes date format that starts with a blank
7050 (if (looking-at "^\\S-") (forward-char 1))
7051 (if (not (re-search-forward "^\\S-" nil t arg))
7052 (progn
7053 (backward-char 1)
7054 (error "No next date after this line in this buffer")))
7055 (goto-char (match-beginning 0)))
7057 (defun org-agenda-previous-date-line (&optional arg)
7058 "Jump to the previous line indicating a date in agenda buffer."
7059 (interactive "p")
7060 (org-agenda-check-type t 'agenda 'timeline)
7061 (beginning-of-line 1)
7062 (if (not (re-search-backward "^\\S-" nil t arg))
7063 (error "No previous date before this line in this buffer")))
7065 ;; Initialize the highlight
7066 (defvar org-hl (make-overlay 1 1))
7067 (overlay-put org-hl 'face 'highlight)
7069 (defun org-highlight (begin end &optional buffer)
7070 "Highlight a region with overlay."
7071 (move-overlay org-hl begin end (or buffer (current-buffer))))
7073 (defun org-unhighlight ()
7074 "Detach overlay INDEX."
7075 (org-detach-overlay org-hl))
7077 ;; FIXME this is currently not used.
7078 (defun org-highlight-until-next-command (beg end &optional buffer)
7079 "Move the highlight overlay to BEG/END, remove it before the next command."
7080 (org-highlight beg end buffer)
7081 (add-hook 'pre-command-hook 'org-unhighlight-once))
7082 (defun org-unhighlight-once ()
7083 "Remove the highlight from its position, and this function from the hook."
7084 (remove-hook 'pre-command-hook 'org-unhighlight-once)
7085 (org-unhighlight))
7087 (defun org-agenda-follow-mode ()
7088 "Toggle follow mode in an agenda buffer."
7089 (interactive)
7090 (setq org-agenda-follow-mode (not org-agenda-follow-mode))
7091 (org-agenda-set-mode-name)
7092 (org-agenda-do-context-action)
7093 (message "Follow mode is %s"
7094 (if org-agenda-follow-mode "on" "off")))
7096 (defun org-agenda-entry-text-mode (&optional arg)
7097 "Toggle entry text mode in an agenda buffer."
7098 (interactive "P")
7099 (setq org-agenda-entry-text-mode (or (integerp arg)
7100 (not org-agenda-entry-text-mode)))
7101 (org-agenda-entry-text-hide)
7102 (and org-agenda-entry-text-mode
7103 (let ((org-agenda-entry-text-maxlines
7104 (if (integerp arg) arg org-agenda-entry-text-maxlines)))
7105 (org-agenda-entry-text-show)))
7106 (org-agenda-set-mode-name)
7107 (message "Entry text mode is %s. Maximum number of lines is %d"
7108 (if org-agenda-entry-text-mode "on" "off")
7109 (if (integerp arg) arg org-agenda-entry-text-maxlines)))
7111 (defun org-agenda-clockreport-mode (&optional with-filter)
7112 "Toggle clocktable mode in an agenda buffer.
7113 With prefix arg WITH-FILTER, make the clocktable respect the current
7114 agenda filter."
7115 (interactive "P")
7116 (org-agenda-check-type t 'agenda)
7117 (if with-filter
7118 (setq org-agenda-clockreport-mode 'with-filter)
7119 (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode)))
7120 (org-agenda-set-mode-name)
7121 (org-agenda-redo)
7122 (message "Clocktable mode is %s"
7123 (if org-agenda-clockreport-mode "on" "off")))
7125 (defun org-agenda-log-mode (&optional special)
7126 "Toggle log mode in an agenda buffer.
7127 With argument SPECIAL, show all possible log items, not only the ones
7128 configured in `org-agenda-log-mode-items'.
7129 With a double `C-u' prefix arg, show *only* log items, nothing else."
7130 (interactive "P")
7131 (org-agenda-check-type t 'agenda 'timeline)
7132 (setq org-agenda-show-log
7133 (cond
7134 ((equal special '(16)) 'only)
7135 ((eq special 'clockcheck)
7136 (if (eq org-agenda-show-log 'clockcheck)
7137 nil 'clockcheck))
7138 (special '(closed clock state))
7139 (t (not org-agenda-show-log))))
7140 (org-agenda-set-mode-name)
7141 (org-agenda-redo)
7142 (message "Log mode is %s"
7143 (if org-agenda-show-log "on" "off")))
7145 (defun org-agenda-archives-mode (&optional with-files)
7146 "Toggle inclusion of items in trees marked with :ARCHIVE:.
7147 When called with a prefix argument, include all archive files as well."
7148 (interactive "P")
7149 (setq org-agenda-archives-mode
7150 (if with-files t (if org-agenda-archives-mode nil 'trees)))
7151 (org-agenda-set-mode-name)
7152 (org-agenda-redo)
7153 (message
7154 "%s"
7155 (cond
7156 ((eq org-agenda-archives-mode nil)
7157 "No archives are included")
7158 ((eq org-agenda-archives-mode 'trees)
7159 (format "Trees with :%s: tag are included" org-archive-tag))
7160 ((eq org-agenda-archives-mode t)
7161 (format "Trees with :%s: tag and all active archive files are included"
7162 org-archive-tag)))))
7164 (defun org-agenda-toggle-diary ()
7165 "Toggle diary inclusion in an agenda buffer."
7166 (interactive)
7167 (org-agenda-check-type t 'agenda)
7168 (setq org-agenda-include-diary (not org-agenda-include-diary))
7169 (org-agenda-redo)
7170 (org-agenda-set-mode-name)
7171 (message "Diary inclusion turned %s"
7172 (if org-agenda-include-diary "on" "off")))
7174 (defun org-agenda-toggle-deadlines ()
7175 "Toggle inclusion of entries with a deadline in an agenda buffer."
7176 (interactive)
7177 (org-agenda-check-type t 'agenda)
7178 (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
7179 (org-agenda-redo)
7180 (org-agenda-set-mode-name)
7181 (message "Deadlines inclusion turned %s"
7182 (if org-agenda-include-deadlines "on" "off")))
7184 (defun org-agenda-toggle-time-grid ()
7185 "Toggle time grid in an agenda buffer."
7186 (interactive)
7187 (org-agenda-check-type t 'agenda)
7188 (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
7189 (org-agenda-redo)
7190 (org-agenda-set-mode-name)
7191 (message "Time-grid turned %s"
7192 (if org-agenda-use-time-grid "on" "off")))
7194 (defun org-agenda-set-mode-name ()
7195 "Set the mode name to indicate all the small mode settings."
7196 (setq mode-name
7197 (list "Org-Agenda"
7198 (if (get 'org-agenda-files 'org-restrict) " []" "")
7200 '(:eval (org-agenda-span-name org-agenda-current-span))
7201 (if org-agenda-follow-mode " Follow" "")
7202 (if org-agenda-entry-text-mode " ETxt" "")
7203 (if org-agenda-include-diary " Diary" "")
7204 (if org-agenda-include-deadlines " Ddl" "")
7205 (if org-agenda-use-time-grid " Grid" "")
7206 (if (and (boundp 'org-habit-show-habits)
7207 org-habit-show-habits) " Habit" "")
7208 (cond
7209 ((consp org-agenda-show-log) " LogAll")
7210 ((eq org-agenda-show-log 'clockcheck) " ClkCk")
7211 (org-agenda-show-log " Log")
7212 (t ""))
7213 (if (or org-agenda-category-filter (get 'org-agenda-category-filter
7214 :preset-filter))
7215 '(:eval (org-propertize
7216 (concat " <"
7217 (mapconcat
7218 'identity
7219 (append
7220 (get 'org-agenda-category-filter :preset-filter)
7221 org-agenda-category-filter)
7223 ">")
7224 'face 'org-agenda-filter-category
7225 'help-echo "Category used in filtering"))
7227 (if (or org-agenda-tag-filter (get 'org-agenda-tag-filter
7228 :preset-filter))
7229 '(:eval (org-propertize
7230 (concat " {"
7231 (mapconcat
7232 'identity
7233 (append
7234 (get 'org-agenda-tag-filter :preset-filter)
7235 org-agenda-tag-filter)
7237 "}")
7238 'face 'org-agenda-filter-tags
7239 'help-echo "Tags used in filtering"))
7241 (if org-agenda-archives-mode
7242 (if (eq org-agenda-archives-mode t)
7243 " Archives"
7244 (format " :%s:" org-archive-tag))
7246 (if org-agenda-clockreport-mode
7247 (if (eq org-agenda-clockreport-mode 'with-filter)
7248 " Clock{}" " Clock")
7249 "")))
7250 (force-mode-line-update))
7252 (defun org-agenda-post-command-hook ()
7253 (setq org-agenda-type
7254 (or (get-text-property (point) 'org-agenda-type)
7255 (get-text-property (max (point-min) (1- (point)))
7256 'org-agenda-type))))
7258 (defun org-agenda-next-line ()
7259 "Move cursor to the next line, and show if follow mode is active."
7260 (interactive)
7261 (call-interactively 'next-line)
7262 (org-agenda-do-context-action))
7264 (defun org-agenda-previous-line ()
7265 "Move cursor to the previous line, and show if follow-mode is active."
7266 (interactive)
7267 (call-interactively 'previous-line)
7268 (org-agenda-do-context-action))
7270 (defun org-agenda-next-item (n)
7271 "Move cursor to next agenda item."
7272 (interactive "p")
7273 (let ((col (current-column)))
7274 (dotimes (c n)
7275 (when (next-single-property-change (point-at-eol) 'org-marker)
7276 (move-end-of-line 1)
7277 (goto-char (next-single-property-change (point) 'org-marker))))
7278 (org-move-to-column col))
7279 (org-agenda-do-context-action))
7281 (defun org-agenda-previous-item (n)
7282 "Move cursor to next agenda item."
7283 (interactive "p")
7284 (dotimes (c n)
7285 (let ((col (current-column))
7286 (goto (save-excursion
7287 (move-end-of-line 0)
7288 (previous-single-property-change (point) 'org-marker))))
7289 (if goto (goto-char goto))
7290 (org-move-to-column col)))
7291 (org-agenda-do-context-action))
7293 (defun org-agenda-do-context-action ()
7294 "Show outline path and, maybe, follow mode window."
7295 (let ((m (org-get-at-bol 'org-marker)))
7296 (when (and (markerp m) (marker-buffer m))
7297 (and org-agenda-follow-mode
7298 (if org-agenda-follow-indirect
7299 (org-agenda-tree-to-indirect-buffer)
7300 (org-agenda-show)))
7301 (and org-agenda-show-outline-path
7302 (org-with-point-at m (org-display-outline-path t))))))
7304 (defun org-agenda-show-priority ()
7305 "Show the priority of the current item.
7306 This priority is composed of the main priority given with the [#A] cookies,
7307 and by additional input from the age of a schedules or deadline entry."
7308 (interactive)
7309 (let* ((pri (org-get-at-bol 'priority)))
7310 (message "Priority is %d" (if pri pri -1000))))
7312 (defun org-agenda-show-tags ()
7313 "Show the tags applicable to the current item."
7314 (interactive)
7315 (let* ((tags (org-get-at-bol 'tags)))
7316 (if tags
7317 (message "Tags are :%s:"
7318 (org-no-properties (mapconcat 'identity tags ":")))
7319 (message "No tags associated with this line"))))
7321 (defun org-agenda-goto (&optional highlight)
7322 "Go to the Org-mode file which contains the item at point."
7323 (interactive)
7324 (let* ((marker (or (org-get-at-bol 'org-marker)
7325 (org-agenda-error)))
7326 (buffer (marker-buffer marker))
7327 (pos (marker-position marker)))
7328 (switch-to-buffer-other-window buffer)
7329 (widen)
7330 (push-mark)
7331 (goto-char pos)
7332 (when (derived-mode-p 'org-mode)
7333 (org-show-context 'agenda)
7334 (save-excursion
7335 (and (outline-next-heading)
7336 (org-flag-heading nil)))) ; show the next heading
7337 (when (outline-invisible-p)
7338 (show-entry)) ; display invisible text
7339 (recenter (/ (window-height) 2))
7340 (run-hooks 'org-agenda-after-show-hook)
7341 (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
7343 (defvar org-agenda-after-show-hook nil
7344 "Normal hook run after an item has been shown from the agenda.
7345 Point is in the buffer where the item originated.")
7347 (defun org-agenda-kill ()
7348 "Kill the entry or subtree belonging to the current agenda entry."
7349 (interactive)
7350 (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
7351 (let* ((marker (or (org-get-at-bol 'org-marker)
7352 (org-agenda-error)))
7353 (buffer (marker-buffer marker))
7354 (pos (marker-position marker))
7355 (type (org-get-at-bol 'type))
7356 dbeg dend (n 0) conf)
7357 (org-with-remote-undo buffer
7358 (with-current-buffer buffer
7359 (save-excursion
7360 (goto-char pos)
7361 (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
7362 (setq dbeg (progn (org-back-to-heading t) (point))
7363 dend (org-end-of-subtree t t))
7364 (setq dbeg (point-at-bol)
7365 dend (min (point-max) (1+ (point-at-eol)))))
7366 (goto-char dbeg)
7367 (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
7368 (setq conf (or (eq t org-agenda-confirm-kill)
7369 (and (numberp org-agenda-confirm-kill)
7370 (> n org-agenda-confirm-kill))))
7371 (and conf
7372 (not (y-or-n-p
7373 (format "Delete entry with %d lines in buffer \"%s\"? "
7374 n (buffer-name buffer))))
7375 (error "Abort"))
7376 (org-remove-subtree-entries-from-agenda buffer dbeg dend)
7377 (with-current-buffer buffer (delete-region dbeg dend))
7378 (message "Agenda item and source killed"))))
7380 (defvar org-archive-default-command)
7381 (defun org-agenda-archive-default ()
7382 "Archive the entry or subtree belonging to the current agenda entry."
7383 (interactive)
7384 (require 'org-archive)
7385 (org-agenda-archive-with org-archive-default-command))
7387 (defun org-agenda-archive-default-with-confirmation ()
7388 "Archive the entry or subtree belonging to the current agenda entry."
7389 (interactive)
7390 (require 'org-archive)
7391 (org-agenda-archive-with org-archive-default-command 'confirm))
7393 (defun org-agenda-archive ()
7394 "Archive the entry or subtree belonging to the current agenda entry."
7395 (interactive)
7396 (org-agenda-archive-with 'org-archive-subtree))
7398 (defun org-agenda-archive-to-archive-sibling ()
7399 "Move the entry to the archive sibling."
7400 (interactive)
7401 (org-agenda-archive-with 'org-archive-to-archive-sibling))
7403 (defun org-agenda-archive-with (cmd &optional confirm)
7404 "Move the entry to the archive sibling."
7405 (interactive)
7406 (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
7407 (let* ((marker (or (org-get-at-bol 'org-marker)
7408 (org-agenda-error)))
7409 (buffer (marker-buffer marker))
7410 (pos (marker-position marker)))
7411 (org-with-remote-undo buffer
7412 (with-current-buffer buffer
7413 (if (derived-mode-p 'org-mode)
7414 (if (and confirm
7415 (not (y-or-n-p "Archive this subtree or entry? ")))
7416 (error "Abort")
7417 (save-excursion
7418 (goto-char pos)
7419 (org-remove-subtree-entries-from-agenda)
7420 (org-back-to-heading t)
7421 (funcall cmd)))
7422 (error "Archiving works only in Org-mode files"))))))
7424 (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
7425 "Remove all lines in the agenda that correspond to a given subtree.
7426 The subtree is the one in buffer BUF, starting at BEG and ending at END.
7427 If this information is not given, the function uses the tree at point."
7428 (let ((buf (or buf (current-buffer))) m p)
7429 (save-excursion
7430 (unless (and beg end)
7431 (org-back-to-heading t)
7432 (setq beg (point))
7433 (org-end-of-subtree t)
7434 (setq end (point)))
7435 (set-buffer (get-buffer org-agenda-buffer-name))
7436 (save-excursion
7437 (goto-char (point-max))
7438 (beginning-of-line 1)
7439 (while (not (bobp))
7440 (when (and (setq m (org-get-at-bol 'org-marker))
7441 (equal buf (marker-buffer m))
7442 (setq p (marker-position m))
7443 (>= p beg)
7444 (< p end))
7445 (let ((inhibit-read-only t))
7446 (delete-region (point-at-bol) (1+ (point-at-eol)))))
7447 (beginning-of-line 0))))))
7449 (defun org-agenda-refile (&optional goto rfloc no-update)
7450 "Refile the item at point."
7451 (interactive "P")
7452 (if (equal goto '(16))
7453 (org-refile-goto-last-stored)
7454 (let* ((marker (or (org-get-at-bol 'org-hd-marker)
7455 (org-agenda-error)))
7456 (buffer (marker-buffer marker))
7457 (pos (marker-position marker))
7458 (rfloc (or rfloc
7459 (org-refile-get-location
7460 (if goto "Goto" "Refile to") buffer
7461 org-refile-allow-creating-parent-nodes))))
7462 (with-current-buffer buffer
7463 (save-excursion
7464 (save-restriction
7465 (widen)
7466 (goto-char marker)
7467 (org-remove-subtree-entries-from-agenda)
7468 (org-refile goto buffer rfloc)))))
7469 (unless no-update (org-agenda-redo))))
7471 (defun org-agenda-open-link (&optional arg)
7472 "Follow the link in the current line, if any.
7473 This looks for a link in the displayed line in the agenda. It also looks
7474 at the text of the entry itself."
7475 (interactive "P")
7476 (let* ((marker (or (org-get-at-bol 'org-hd-marker)
7477 (org-get-at-bol 'org-marker)))
7478 (buffer (and marker (marker-buffer marker)))
7479 (prefix (buffer-substring
7480 (point-at-bol) (point-at-eol))))
7481 (cond
7482 (buffer
7483 (with-current-buffer buffer
7484 (save-excursion
7485 (save-restriction
7486 (widen)
7487 (goto-char marker)
7488 (org-offer-links-in-entry arg prefix)))))
7489 ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
7490 (save-excursion
7491 (beginning-of-line 1)
7492 (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
7493 (org-open-link-from-string (match-string 1)))
7494 (t (error "No link to open here")))))
7496 (defun org-agenda-copy-local-variable (var)
7497 "Get a variable from a referenced buffer and install it here."
7498 (let ((m (org-get-at-bol 'org-marker)))
7499 (when (and m (buffer-live-p (marker-buffer m)))
7500 (org-set-local var (with-current-buffer (marker-buffer m)
7501 (symbol-value var))))))
7503 (defun org-agenda-switch-to (&optional delete-other-windows)
7504 "Go to the Org-mode file which contains the item at point."
7505 (interactive)
7506 (if (and org-return-follows-link
7507 (not (org-get-at-bol 'org-marker))
7508 (org-in-regexp org-bracket-link-regexp))
7509 (org-open-link-from-string (match-string 0))
7510 (let* ((marker (or (org-get-at-bol 'org-marker)
7511 (org-agenda-error)))
7512 (buffer (marker-buffer marker))
7513 (pos (marker-position marker)))
7514 (org-pop-to-buffer-same-window buffer)
7515 (and delete-other-windows (delete-other-windows))
7516 (widen)
7517 (goto-char pos)
7518 (when (derived-mode-p 'org-mode)
7519 (org-show-context 'agenda)
7520 (save-excursion
7521 (and (outline-next-heading)
7522 (org-flag-heading nil))) ; show the next heading
7523 (when (outline-invisible-p)
7524 (show-entry)) ; display invisible text
7525 (run-hooks 'org-agenda-after-show-hook)))))
7527 (defun org-agenda-goto-mouse (ev)
7528 "Go to the Org-mode file which contains the item at the mouse click."
7529 (interactive "e")
7530 (mouse-set-point ev)
7531 (org-agenda-goto))
7533 (defun org-agenda-show (&optional full-entry)
7534 "Display the Org-mode file which contains the item at point.
7535 With prefix argument FULL-ENTRY, make the entire entry visible
7536 if it was hidden in the outline."
7537 (interactive "P")
7538 (let ((win (selected-window)))
7539 (if full-entry
7540 (let ((org-show-entry-below t))
7541 (org-agenda-goto t))
7542 (org-agenda-goto t))
7543 (select-window win)))
7545 (defvar org-agenda-show-window nil)
7546 (defun org-agenda-show-and-scroll-up (&optional arg)
7547 "Display the Org-mode file which contains the item at point.
7548 When called repeatedly, scroll the window that is displaying the buffer.
7549 With a \\[universal-argument] prefix, use `org-show-entry' instead of
7550 `show-subtree' to display the item, so that drawers and logbooks stay
7551 folded."
7552 (interactive "P")
7553 (let ((win (selected-window)))
7554 (if (and (window-live-p org-agenda-show-window)
7555 (eq this-command last-command))
7556 (progn
7557 (select-window org-agenda-show-window)
7558 (ignore-errors (scroll-up)))
7559 (org-agenda-goto t)
7560 (if arg (org-show-entry) (show-subtree))
7561 (setq org-agenda-show-window (selected-window)))
7562 (select-window win)))
7564 (defun org-agenda-show-scroll-down ()
7565 "Scroll down the window showing the agenda."
7566 (interactive)
7567 (let ((win (selected-window)))
7568 (when (window-live-p org-agenda-show-window)
7569 (select-window org-agenda-show-window)
7570 (ignore-errors (scroll-down))
7571 (select-window win))))
7573 (defun org-agenda-show-1 (&optional more)
7574 "Display the Org-mode file which contains the item at point.
7575 The prefix arg selects the amount of information to display:
7577 0 hide the subtree
7578 1 just show the entry according to defaults.
7579 2 show the children view
7580 3 show the subtree view
7581 4 show the entire subtree and any LOGBOOK drawers
7582 5 show the entire subtree and any drawers
7583 With prefix argument FULL-ENTRY, make the entire entry visible
7584 if it was hidden in the outline."
7585 (interactive "p")
7586 (let ((win (selected-window)))
7587 (org-agenda-goto t)
7588 (org-recenter-heading 1)
7589 (cond
7590 ((= more 0)
7591 (hide-subtree)
7592 (save-excursion
7593 (org-back-to-heading)
7594 (run-hook-with-args 'org-cycle-hook 'folded))
7595 (message "Remote: FOLDED"))
7596 ((and (org-called-interactively-p 'any) (= more 1))
7597 (message "Remote: show with default settings"))
7598 ((= more 2)
7599 (show-entry)
7600 (show-children)
7601 (save-excursion
7602 (org-back-to-heading)
7603 (run-hook-with-args 'org-cycle-hook 'children))
7604 (message "Remote: CHILDREN"))
7605 ((= more 3)
7606 (show-subtree)
7607 (save-excursion
7608 (org-back-to-heading)
7609 (run-hook-with-args 'org-cycle-hook 'subtree))
7610 (message "Remote: SUBTREE"))
7611 ((= more 4)
7612 (let* ((org-drawers (delete "LOGBOOK" (copy-sequence org-drawers)))
7613 (org-drawer-regexp
7614 (concat "^[ \t]*:\\("
7615 (mapconcat 'regexp-quote org-drawers "\\|")
7616 "\\):[ \t]*$")))
7617 (show-subtree)
7618 (save-excursion
7619 (org-back-to-heading)
7620 (org-cycle-hide-drawers 'subtree)))
7621 (message "Remote: SUBTREE AND LOGBOOK"))
7622 ((> more 4)
7623 (show-subtree)
7624 (message "Remote: SUBTREE AND ALL DRAWERS")))
7625 (select-window win)))
7627 (defun org-recenter-heading (n)
7628 (save-excursion
7629 (org-back-to-heading)
7630 (recenter n)))
7632 (defvar org-agenda-cycle-counter nil)
7633 (defun org-agenda-cycle-show (&optional n)
7634 "Show the current entry in another window, with default settings.
7635 Default settings are taken from `org-show-hierarchy-above' and siblings.
7636 When use repeatedly in immediate succession, the remote entry will cycle
7637 through visibility
7639 children -> subtree -> folded
7641 When called with a numeric prefix arg, that arg will be passed through to
7642 `org-agenda-show-1'. For the interpretation of that argument, see the
7643 docstring of `org-agenda-show-1'."
7644 (interactive "P")
7645 (if (integerp n)
7646 (setq org-agenda-cycle-counter n)
7647 (if (not (eq last-command this-command))
7648 (setq org-agenda-cycle-counter 1)
7649 (if (equal org-agenda-cycle-counter 0)
7650 (setq org-agenda-cycle-counter 2)
7651 (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
7652 (if (> org-agenda-cycle-counter 3)
7653 (setq org-agenda-cycle-counter 0)))))
7654 (org-agenda-show-1 org-agenda-cycle-counter))
7656 (defun org-agenda-recenter (arg)
7657 "Display the Org-mode file which contains the item at point and recenter."
7658 (interactive "P")
7659 (let ((win (selected-window)))
7660 (org-agenda-goto t)
7661 (recenter arg)
7662 (select-window win)))
7664 (defun org-agenda-show-mouse (ev)
7665 "Display the Org-mode file which contains the item at the mouse click."
7666 (interactive "e")
7667 (mouse-set-point ev)
7668 (org-agenda-show))
7670 (defun org-agenda-check-no-diary ()
7671 "Check if the entry is a diary link and abort if yes."
7672 (if (org-get-at-bol 'org-agenda-diary-link)
7673 (org-agenda-error)))
7675 (defun org-agenda-error ()
7676 (error "Command not allowed in this line"))
7678 (defun org-agenda-tree-to-indirect-buffer ()
7679 "Show the subtree corresponding to the current entry in an indirect buffer.
7680 This calls the command `org-tree-to-indirect-buffer' from the original
7681 Org-mode buffer.
7682 With numerical prefix arg ARG, go up to this level and then take that tree.
7683 With a \\[universal-argument] prefix, make a separate frame for this tree (i.e. don't
7684 use the dedicated frame)."
7685 (interactive)
7686 (if (and current-prefix-arg (listp current-prefix-arg))
7687 (org-agenda-do-tree-to-indirect-buffer)
7688 (let ((agenda-window (selected-window))
7689 (indirect-window
7690 (and org-last-indirect-buffer
7691 (get-buffer-window org-last-indirect-buffer))))
7692 (save-window-excursion (org-agenda-do-tree-to-indirect-buffer))
7693 (unwind-protect
7694 (progn
7695 (unless (and indirect-window (window-live-p indirect-window))
7696 (setq indirect-window (split-window agenda-window)))
7697 (select-window indirect-window)
7698 (switch-to-buffer org-last-indirect-buffer :norecord)
7699 (fit-window-to-buffer indirect-window))
7700 (select-window (get-buffer-window org-agenda-buffer-name))))))
7702 (defun org-agenda-do-tree-to-indirect-buffer ()
7703 "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
7704 (org-agenda-check-no-diary)
7705 (let* ((marker (or (org-get-at-bol 'org-marker)
7706 (org-agenda-error)))
7707 (buffer (marker-buffer marker))
7708 (pos (marker-position marker)))
7709 (with-current-buffer buffer
7710 (save-excursion
7711 (goto-char pos)
7712 (call-interactively 'org-tree-to-indirect-buffer)))))
7714 (defvar org-last-heading-marker (make-marker)
7715 "Marker pointing to the headline that last changed its TODO state
7716 by a remote command from the agenda.")
7718 (defun org-agenda-todo-nextset ()
7719 "Switch TODO entry to next sequence."
7720 (interactive)
7721 (org-agenda-todo 'nextset))
7723 (defun org-agenda-todo-previousset ()
7724 "Switch TODO entry to previous sequence."
7725 (interactive)
7726 (org-agenda-todo 'previousset))
7728 (defun org-agenda-todo (&optional arg)
7729 "Cycle TODO state of line at point, also in Org-mode file.
7730 This changes the line at point, all other lines in the agenda referring to
7731 the same tree node, and the headline of the tree node in the Org-mode file."
7732 (interactive "P")
7733 (org-agenda-check-no-diary)
7734 (let* ((col (current-column))
7735 (marker (or (org-get-at-bol 'org-marker)
7736 (org-agenda-error)))
7737 (buffer (marker-buffer marker))
7738 (pos (marker-position marker))
7739 (hdmarker (org-get-at-bol 'org-hd-marker))
7740 (todayp (org-agenda-todayp (org-get-at-bol 'day)))
7741 (inhibit-read-only t)
7742 org-agenda-headline-snapshot-before-repeat newhead just-one)
7743 (org-with-remote-undo buffer
7744 (with-current-buffer buffer
7745 (widen)
7746 (goto-char pos)
7747 (org-show-context 'agenda)
7748 (save-excursion
7749 (and (outline-next-heading)
7750 (org-flag-heading nil))) ; show the next heading
7751 (let ((current-prefix-arg arg))
7752 (call-interactively 'org-todo))
7753 (and (bolp) (forward-char 1))
7754 (setq newhead (org-get-heading))
7755 (when (and (org-bound-and-true-p
7756 org-agenda-headline-snapshot-before-repeat)
7757 (not (equal org-agenda-headline-snapshot-before-repeat
7758 newhead))
7759 todayp)
7760 (setq newhead org-agenda-headline-snapshot-before-repeat
7761 just-one t))
7762 (save-excursion
7763 (org-back-to-heading)
7764 (move-marker org-last-heading-marker (point))))
7765 (beginning-of-line 1)
7766 (save-excursion
7767 (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
7768 (org-move-to-column col))))
7770 (defun org-agenda-add-note (&optional arg)
7771 "Add a time-stamped note to the entry at point."
7772 (interactive "P")
7773 (org-agenda-check-no-diary)
7774 (let* ((marker (or (org-get-at-bol 'org-marker)
7775 (org-agenda-error)))
7776 (buffer (marker-buffer marker))
7777 (pos (marker-position marker))
7778 (hdmarker (org-get-at-bol 'org-hd-marker))
7779 (inhibit-read-only t))
7780 (with-current-buffer buffer
7781 (widen)
7782 (goto-char pos)
7783 (org-show-context 'agenda)
7784 (save-excursion
7785 (and (outline-next-heading)
7786 (org-flag-heading nil))) ; show the next heading
7787 (org-add-note))))
7789 (defun org-agenda-change-all-lines (newhead hdmarker
7790 &optional fixface just-this)
7791 "Change all lines in the agenda buffer which match HDMARKER.
7792 The new content of the line will be NEWHEAD (as modified by
7793 `org-agenda-format-item'). HDMARKER is checked with
7794 `equal' against all `org-hd-marker' text properties in the file.
7795 If FIXFACE is non-nil, the face of each item is modified according to
7796 the new TODO state.
7797 If JUST-THIS is non-nil, change just the current line, not all.
7798 If FORCE-TAGS is non nil, the car of it returns the new tags."
7799 (let* ((inhibit-read-only t)
7800 (line (org-current-line))
7801 (org-agenda-buffer (current-buffer))
7802 (thetags (with-current-buffer (marker-buffer hdmarker)
7803 (save-excursion (save-restriction (widen)
7804 (goto-char hdmarker)
7805 (org-get-tags-at)))))
7806 props m pl undone-face done-face finish new dotime cat tags)
7807 (save-excursion
7808 (goto-char (point-max))
7809 (beginning-of-line 1)
7810 (while (not finish)
7811 (setq finish (bobp))
7812 (when (and (setq m (org-get-at-bol 'org-hd-marker))
7813 (or (not just-this) (= (org-current-line) line))
7814 (equal m hdmarker))
7815 (setq props (text-properties-at (point))
7816 dotime (org-get-at-bol 'dotime)
7817 cat (org-get-at-bol 'org-category)
7818 tags thetags
7820 (let ((org-prefix-format-compiled
7821 (or (get-text-property (point) 'format)
7822 org-prefix-format-compiled))
7823 (extra (org-get-at-bol 'extra)))
7824 (with-current-buffer (marker-buffer hdmarker)
7825 (save-excursion
7826 (save-restriction
7827 (widen)
7828 (org-agenda-format-item extra newhead cat tags dotime)))))
7829 pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
7830 undone-face (org-get-at-bol 'undone-face)
7831 done-face (org-get-at-bol 'done-face))
7832 (beginning-of-line 1)
7833 (cond
7834 ((equal new "")
7835 (and (looking-at ".*\n?") (replace-match "")))
7836 ((looking-at ".*")
7837 (replace-match new t t)
7838 (beginning-of-line 1)
7839 (add-text-properties (point-at-bol) (point-at-eol) props)
7840 (when fixface
7841 (add-text-properties
7842 (point-at-bol) (point-at-eol)
7843 (list 'face
7844 (if org-last-todo-state-is-todo
7845 undone-face done-face))))
7846 (org-agenda-highlight-todo 'line)
7847 (beginning-of-line 1))
7848 (t (error "Line update did not work"))))
7849 (beginning-of-line 0)))
7850 (org-finalize-agenda)))
7852 (defun org-agenda-align-tags (&optional line)
7853 "Align all tags in agenda items to `org-agenda-tags-column'."
7854 (let ((inhibit-read-only t) l c)
7855 (save-excursion
7856 (goto-char (if line (point-at-bol) (point-min)))
7857 (while (re-search-forward (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
7858 (if line (point-at-eol) nil) t)
7859 (add-text-properties
7860 (match-beginning 2) (match-end 2)
7861 (list 'face (delq nil (let ((prop (get-text-property
7862 (match-beginning 2) 'face)))
7863 (or (listp prop) (setq prop (list prop)))
7864 (if (memq 'org-tag prop)
7865 prop
7866 (cons 'org-tag prop))))))
7867 (setq l (- (match-end 2) (match-beginning 2))
7868 c (if (< org-agenda-tags-column 0)
7869 (- (abs org-agenda-tags-column) l)
7870 org-agenda-tags-column))
7871 (delete-region (match-beginning 1) (match-end 1))
7872 (goto-char (match-beginning 1))
7873 (insert (org-add-props
7874 (make-string (max 1 (- c (current-column))) ?\ )
7875 (plist-put (copy-sequence (text-properties-at (point)))
7876 'face nil))))
7877 (goto-char (point-min))
7878 (org-font-lock-add-tag-faces (point-max)))))
7880 (defun org-agenda-priority-up ()
7881 "Increase the priority of line at point, also in Org-mode file."
7882 (interactive)
7883 (org-agenda-priority 'up))
7885 (defun org-agenda-priority-down ()
7886 "Decrease the priority of line at point, also in Org-mode file."
7887 (interactive)
7888 (org-agenda-priority 'down))
7890 (defun org-agenda-priority (&optional force-direction)
7891 "Set the priority of line at point, also in Org-mode file.
7892 This changes the line at point, all other lines in the agenda referring to
7893 the same tree node, and the headline of the tree node in the Org-mode file."
7894 (interactive)
7895 (unless org-enable-priority-commands
7896 (error "Priority commands are disabled"))
7897 (org-agenda-check-no-diary)
7898 (let* ((marker (or (org-get-at-bol 'org-marker)
7899 (org-agenda-error)))
7900 (hdmarker (org-get-at-bol 'org-hd-marker))
7901 (buffer (marker-buffer hdmarker))
7902 (pos (marker-position hdmarker))
7903 (inhibit-read-only t)
7904 newhead)
7905 (org-with-remote-undo buffer
7906 (with-current-buffer buffer
7907 (widen)
7908 (goto-char pos)
7909 (org-show-context 'agenda)
7910 (save-excursion
7911 (and (outline-next-heading)
7912 (org-flag-heading nil))) ; show the next heading
7913 (funcall 'org-priority force-direction)
7914 (end-of-line 1)
7915 (setq newhead (org-get-heading)))
7916 (org-agenda-change-all-lines newhead hdmarker)
7917 (beginning-of-line 1))))
7919 ;; FIXME: should fix the tags property of the agenda line.
7920 (defun org-agenda-set-tags (&optional tag onoff)
7921 "Set tags for the current headline."
7922 (interactive)
7923 (org-agenda-check-no-diary)
7924 (if (and (org-region-active-p) (org-called-interactively-p 'any))
7925 (call-interactively 'org-change-tag-in-region)
7926 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
7927 (org-agenda-error)))
7928 (buffer (marker-buffer hdmarker))
7929 (pos (marker-position hdmarker))
7930 (inhibit-read-only t)
7931 newhead)
7932 (org-with-remote-undo buffer
7933 (with-current-buffer buffer
7934 (widen)
7935 (goto-char pos)
7936 (save-excursion
7937 (org-show-context 'agenda))
7938 (save-excursion
7939 (and (outline-next-heading)
7940 (org-flag-heading nil))) ; show the next heading
7941 (goto-char pos)
7942 (if tag
7943 (org-toggle-tag tag onoff)
7944 (call-interactively 'org-set-tags))
7945 (end-of-line 1)
7946 (setq newhead (org-get-heading)))
7947 (org-agenda-change-all-lines newhead hdmarker)
7948 (beginning-of-line 1)))))
7950 (defun org-agenda-set-property ()
7951 "Set a property for the current headline."
7952 (interactive)
7953 (org-agenda-check-no-diary)
7954 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
7955 (org-agenda-error)))
7956 (buffer (marker-buffer hdmarker))
7957 (pos (marker-position hdmarker))
7958 (inhibit-read-only t)
7959 newhead)
7960 (org-with-remote-undo buffer
7961 (with-current-buffer buffer
7962 (widen)
7963 (goto-char pos)
7964 (save-excursion
7965 (org-show-context 'agenda))
7966 (save-excursion
7967 (and (outline-next-heading)
7968 (org-flag-heading nil))) ; show the next heading
7969 (goto-char pos)
7970 (call-interactively 'org-set-property)))))
7972 (defun org-agenda-set-effort ()
7973 "Set the effort property for the current headline."
7974 (interactive)
7975 (org-agenda-check-no-diary)
7976 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
7977 (org-agenda-error)))
7978 (buffer (marker-buffer hdmarker))
7979 (pos (marker-position hdmarker))
7980 (inhibit-read-only t)
7981 newhead)
7982 (org-with-remote-undo buffer
7983 (with-current-buffer buffer
7984 (widen)
7985 (goto-char pos)
7986 (save-excursion
7987 (org-show-context 'agenda))
7988 (save-excursion
7989 (and (outline-next-heading)
7990 (org-flag-heading nil))) ; show the next heading
7991 (goto-char pos)
7992 (call-interactively 'org-set-effort)
7993 (end-of-line 1)
7994 (setq newhead (org-get-heading)))
7995 (org-agenda-change-all-lines newhead hdmarker))))
7997 (defun org-agenda-toggle-archive-tag ()
7998 "Toggle the archive tag for the current entry."
7999 (interactive)
8000 (org-agenda-check-no-diary)
8001 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
8002 (org-agenda-error)))
8003 (buffer (marker-buffer hdmarker))
8004 (pos (marker-position hdmarker))
8005 (inhibit-read-only t)
8006 newhead)
8007 (org-with-remote-undo buffer
8008 (with-current-buffer buffer
8009 (widen)
8010 (goto-char pos)
8011 (org-show-context 'agenda)
8012 (save-excursion
8013 (and (outline-next-heading)
8014 (org-flag-heading nil))) ; show the next heading
8015 (call-interactively 'org-toggle-archive-tag)
8016 (end-of-line 1)
8017 (setq newhead (org-get-heading)))
8018 (org-agenda-change-all-lines newhead hdmarker)
8019 (beginning-of-line 1))))
8021 (defun org-agenda-do-date-later (arg)
8022 (interactive "P")
8023 (cond
8024 ((or (equal arg '(16))
8025 (memq last-command
8026 '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
8027 (setq this-command 'org-agenda-date-later-minutes)
8028 (org-agenda-date-later-minutes 1))
8029 ((or (equal arg '(4))
8030 (memq last-command
8031 '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
8032 (setq this-command 'org-agenda-date-later-hours)
8033 (org-agenda-date-later-hours 1))
8035 (org-agenda-date-later (prefix-numeric-value arg)))))
8037 (defun org-agenda-do-date-earlier (arg)
8038 (interactive "P")
8039 (cond
8040 ((or (equal arg '(16))
8041 (memq last-command
8042 '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
8043 (setq this-command 'org-agenda-date-earlier-minutes)
8044 (org-agenda-date-earlier-minutes 1))
8045 ((or (equal arg '(4))
8046 (memq last-command
8047 '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
8048 (setq this-command 'org-agenda-date-earlier-hours)
8049 (org-agenda-date-earlier-hours 1))
8051 (org-agenda-date-earlier (prefix-numeric-value arg)))))
8053 (defun org-agenda-date-later (arg &optional what)
8054 "Change the date of this item to ARG day(s) later."
8055 (interactive "p")
8056 (org-agenda-check-type t 'agenda 'timeline)
8057 (org-agenda-check-no-diary)
8058 (let* ((marker (or (org-get-at-bol 'org-marker)
8059 (org-agenda-error)))
8060 (buffer (marker-buffer marker))
8061 (pos (marker-position marker))
8062 cdate today)
8063 (org-with-remote-undo buffer
8064 (with-current-buffer buffer
8065 (widen)
8066 (goto-char pos)
8067 (if (not (org-at-timestamp-p))
8068 (error "Cannot find time stamp"))
8069 (when (and org-agenda-move-date-from-past-immediately-to-today
8070 (equal arg 1)
8071 (or (not what) (eq what 'day))
8072 (not (save-match-data (org-at-date-range-p))))
8073 (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
8074 cdate (calendar-absolute-from-gregorian
8075 (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
8076 today (org-today))
8077 (if (> today cdate)
8078 ;; immediately shift to today
8079 (setq arg (- today cdate))))
8080 (org-timestamp-change arg (or what 'day))
8081 (when (and (org-at-date-range-p)
8082 (re-search-backward org-tr-regexp-both (point-at-bol)))
8083 (let ((end org-last-changed-timestamp))
8084 (org-timestamp-change arg (or what 'day))
8085 (setq org-last-changed-timestamp
8086 (concat org-last-changed-timestamp "--" end)))))
8087 (org-agenda-show-new-time marker org-last-changed-timestamp))
8088 (message "Time stamp changed to %s" org-last-changed-timestamp)))
8090 (defun org-agenda-date-earlier (arg &optional what)
8091 "Change the date of this item to ARG day(s) earlier."
8092 (interactive "p")
8093 (org-agenda-date-later (- arg) what))
8095 (defun org-agenda-date-later-minutes (arg)
8096 "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
8097 (interactive "p")
8098 (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
8099 (org-agenda-date-later arg 'minute))
8101 (defun org-agenda-date-earlier-minutes (arg)
8102 "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
8103 (interactive "p")
8104 (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
8105 (org-agenda-date-earlier arg 'minute))
8107 (defun org-agenda-date-later-hours (arg)
8108 "Change the time of this item, in hour steps."
8109 (interactive "p")
8110 (org-agenda-date-later arg 'hour))
8112 (defun org-agenda-date-earlier-hours (arg)
8113 "Change the time of this item, in hour steps."
8114 (interactive "p")
8115 (org-agenda-date-earlier arg 'hour))
8117 (defun org-agenda-show-new-time (marker stamp &optional prefix)
8118 "Show new date stamp via text properties."
8119 ;; We use text properties to make this undoable
8120 (let ((inhibit-read-only t)
8121 (buffer-invisibility-spec))
8122 (setq stamp (concat " " prefix " => " stamp))
8123 (save-excursion
8124 (goto-char (point-max))
8125 (while (not (bobp))
8126 (when (equal marker (org-get-at-bol 'org-marker))
8127 (org-move-to-column (- (window-width) (length stamp)) t)
8128 (org-agenda-fix-tags-filter-overlays-at (point))
8129 (if (featurep 'xemacs)
8130 ;; Use `duplicable' property to trigger undo recording
8131 (let ((ex (make-extent nil nil))
8132 (gl (make-glyph stamp)))
8133 (set-glyph-face gl 'secondary-selection)
8134 (set-extent-properties
8135 ex (list 'invisible t 'end-glyph gl 'duplicable t))
8136 (insert-extent ex (1- (point)) (point-at-eol)))
8137 (add-text-properties
8138 (1- (point)) (point-at-eol)
8139 (list 'display (org-add-props stamp nil
8140 'face 'secondary-selection))))
8141 (beginning-of-line 1))
8142 (beginning-of-line 0)))))
8144 (defun org-agenda-date-prompt (arg)
8145 "Change the date of this item. Date is prompted for, with default today.
8146 The prefix ARG is passed to the `org-time-stamp' command and can therefore
8147 be used to request time specification in the time stamp."
8148 (interactive "P")
8149 (org-agenda-check-type t 'agenda 'timeline)
8150 (org-agenda-check-no-diary)
8151 (let* ((marker (or (org-get-at-bol 'org-marker)
8152 (org-agenda-error)))
8153 (buffer (marker-buffer marker))
8154 (pos (marker-position marker)))
8155 (org-with-remote-undo buffer
8156 (with-current-buffer buffer
8157 (widen)
8158 (goto-char pos)
8159 (if (not (org-at-timestamp-p t))
8160 (error "Cannot find time stamp"))
8161 (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
8162 (org-agenda-show-new-time marker org-last-changed-timestamp))
8163 (message "Time stamp changed to %s" org-last-changed-timestamp)))
8165 (defun org-agenda-schedule (arg &optional time)
8166 "Schedule the item at point.
8167 ARG is passed through to `org-schedule'."
8168 (interactive "P")
8169 (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
8170 (org-agenda-check-no-diary)
8171 (let* ((marker (or (org-get-at-bol 'org-marker)
8172 (org-agenda-error)))
8173 (type (marker-insertion-type marker))
8174 (buffer (marker-buffer marker))
8175 (pos (marker-position marker))
8176 (org-insert-labeled-timestamps-at-point nil)
8178 (set-marker-insertion-type marker t)
8179 (org-with-remote-undo buffer
8180 (with-current-buffer buffer
8181 (widen)
8182 (goto-char pos)
8183 (setq ts (org-schedule arg time)))
8184 (org-agenda-show-new-time marker ts "S"))
8185 (message "Item scheduled for %s" ts)))
8187 (defun org-agenda-deadline (arg &optional time)
8188 "Schedule the item at point.
8189 ARG is passed through to `org-deadline'."
8190 (interactive "P")
8191 (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
8192 (org-agenda-check-no-diary)
8193 (let* ((marker (or (org-get-at-bol 'org-marker)
8194 (org-agenda-error)))
8195 (buffer (marker-buffer marker))
8196 (pos (marker-position marker))
8197 (org-insert-labeled-timestamps-at-point nil)
8199 (org-with-remote-undo buffer
8200 (with-current-buffer buffer
8201 (widen)
8202 (goto-char pos)
8203 (setq ts (org-deadline arg time)))
8204 (org-agenda-show-new-time marker ts "D"))
8205 (message "Deadline for this item set to %s" ts)))
8207 (defun org-agenda-action ()
8208 "Select entry for agenda action, or execute an agenda action.
8209 This command prompts for another letter. Valid inputs are:
8211 m Mark the entry at point for an agenda action
8212 s Schedule the marked entry to the date at the cursor
8213 d Set the deadline of the marked entry to the date at the cursor
8214 r Call `org-remember' with cursor date as the default date
8215 c Call `org-capture' with cursor date as the default date
8216 SPC Show marked entry in other window
8217 TAB Visit marked entry in other window
8219 The cursor may be at a date in the calendar, or in the Org agenda."
8220 (interactive)
8221 (let (ans)
8222 (message "Select action: [m]ark | [s]chedule [d]eadline [r]emember [c]apture [ ]show")
8223 (setq ans (read-char-exclusive))
8224 (cond
8225 ((equal ans ?m)
8226 ;; Mark this entry
8227 (if (eq major-mode 'org-agenda-mode)
8228 (let ((m (or (org-get-at-bol 'org-hd-marker)
8229 (org-get-at-bol 'org-marker))))
8230 (if m
8231 (progn
8232 (move-marker org-agenda-action-marker
8233 (marker-position m) (marker-buffer m))
8234 (message "Entry marked for action; press `k' at desired date in agenda or calendar"))
8235 (error "Don't know which entry to mark")))
8236 (error "This command works only in the agenda")))
8237 ((equal ans ?s)
8238 (org-agenda-do-action '(org-schedule nil org-overriding-default-time)))
8239 ((equal ans ?d)
8240 (org-agenda-do-action '(org-deadline nil org-overriding-default-time)))
8241 ((equal ans ?r)
8242 (org-agenda-do-action '(org-remember) t))
8243 ((equal ans ?c)
8244 (org-agenda-do-action '(org-capture) t))
8245 ((equal ans ?\ )
8246 (let ((cw (selected-window)))
8247 (org-switch-to-buffer-other-window
8248 (marker-buffer org-agenda-action-marker))
8249 (goto-char org-agenda-action-marker)
8250 (org-show-context 'agenda)
8251 (select-window cw)))
8252 ((equal ans ?\C-i)
8253 (org-switch-to-buffer-other-window
8254 (marker-buffer org-agenda-action-marker))
8255 (goto-char org-agenda-action-marker)
8256 (org-show-context 'agenda))
8257 (t (error "Invalid agenda action %c" ans)))))
8259 (defun org-agenda-do-action (form &optional current-buffer)
8260 "Evaluate FORM at the entry pointed to by `org-agenda-action-marker'."
8261 (let ((org-overriding-default-time (org-get-cursor-date)))
8262 (if current-buffer
8263 (eval form)
8264 (if (not (marker-buffer org-agenda-action-marker))
8265 (error "No entry has been selected for agenda action")
8266 (with-current-buffer (marker-buffer org-agenda-action-marker)
8267 (save-excursion
8268 (save-restriction
8269 (widen)
8270 (goto-char org-agenda-action-marker)
8271 (eval form))))))))
8273 (defun org-agenda-clock-in (&optional arg)
8274 "Start the clock on the currently selected item."
8275 (interactive "P")
8276 (org-agenda-check-no-diary)
8277 (if (equal arg '(4))
8278 (org-clock-in arg)
8279 (let* ((marker (or (org-get-at-bol 'org-marker)
8280 (org-agenda-error)))
8281 (hdmarker (or (org-get-at-bol 'org-hd-marker)
8282 marker))
8283 (pos (marker-position marker))
8284 newhead)
8285 (org-with-remote-undo (marker-buffer marker)
8286 (with-current-buffer (marker-buffer marker)
8287 (widen)
8288 (goto-char pos)
8289 (org-show-context 'agenda)
8290 (org-show-entry)
8291 (org-cycle-hide-drawers 'children)
8292 (org-clock-in arg)
8293 (setq newhead (org-get-heading)))
8294 (org-agenda-change-all-lines newhead hdmarker)))))
8296 (defun org-agenda-clock-out ()
8297 "Stop the currently running clock."
8298 (interactive)
8299 (unless (marker-buffer org-clock-marker)
8300 (error "No running clock"))
8301 (let ((marker (make-marker)) newhead)
8302 (org-with-remote-undo (marker-buffer org-clock-marker)
8303 (with-current-buffer (marker-buffer org-clock-marker)
8304 (save-excursion
8305 (save-restriction
8306 (widen)
8307 (goto-char org-clock-marker)
8308 (org-back-to-heading t)
8309 (move-marker marker (point))
8310 (org-clock-out)
8311 (setq newhead (org-get-heading))))))
8312 (org-agenda-change-all-lines newhead marker)
8313 (move-marker marker nil)))
8315 (defun org-agenda-clock-cancel (&optional arg)
8316 "Cancel the currently running clock."
8317 (interactive "P")
8318 (unless (marker-buffer org-clock-marker)
8319 (error "No running clock"))
8320 (org-with-remote-undo (marker-buffer org-clock-marker)
8321 (org-clock-cancel)))
8323 (defun org-agenda-clock-goto ()
8324 "Jump to the currently clocked in task within the agenda.
8325 If the currently clocked in task is not listed in the agenda
8326 buffer, display it in another window."
8327 (interactive)
8328 (let (pos)
8329 (mapc (lambda (o)
8330 (if (eq (overlay-get o 'type) 'org-agenda-clocking)
8331 (setq pos (overlay-start o))))
8332 (overlays-in (point-min) (point-max)))
8333 (cond (pos (goto-char pos))
8334 ;; If the currently clocked entry is not in the agenda
8335 ;; buffer, we visit it in another window:
8336 (org-clock-current-task
8337 (org-switch-to-buffer-other-window (org-clock-goto)))
8338 (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
8340 (defun org-agenda-diary-entry-in-org-file ()
8341 "Make a diary entry in the file `org-agenda-diary-file'."
8342 (let (d1 d2 char (text "") dp1 dp2)
8343 (if (equal (buffer-name) "*Calendar*")
8344 (setq d1 (calendar-cursor-to-date t)
8345 d2 (car calendar-mark-ring))
8346 (setq dp1 (get-text-property (point-at-bol) 'day))
8347 (unless dp1 (error "No date defined in current line"))
8348 (setq d1 (calendar-gregorian-from-absolute dp1)
8349 d2 (and (ignore-errors (mark))
8350 (save-excursion
8351 (goto-char (mark))
8352 (setq dp2 (get-text-property (point-at-bol) 'day)))
8353 (calendar-gregorian-from-absolute dp2))))
8354 (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
8355 (setq char (read-char-exclusive))
8356 (cond
8357 ((equal char ?d)
8358 (setq text (read-string "Day entry: "))
8359 (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
8360 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
8361 ((equal char ?a)
8362 (setq d1 (list (car d1) (nth 1 d1)
8363 (read-number (format "Reference year [%d]: " (nth 2 d1))
8364 (nth 2 d1))))
8365 (setq text (read-string "Anniversary (use %d to show years): "))
8366 (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
8367 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
8368 ((equal char ?b)
8369 (setq text (read-string "Block entry: "))
8370 (unless (and d1 d2 (not (equal d1 d2)))
8371 (error "No block of days selected"))
8372 (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
8373 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
8374 ((equal char ?j)
8375 (org-switch-to-buffer-other-window
8376 (find-file-noselect org-agenda-diary-file))
8377 (require 'org-datetree)
8378 (org-datetree-find-date-create d1)
8379 (org-reveal t))
8380 (t (error "Invalid selection character `%c'" char)))))
8382 (defcustom org-agenda-insert-diary-strategy 'date-tree
8383 "Where in `org-agenda-diary-file' should new entries be added?
8384 Valid values:
8386 date-tree in the date tree, as child of the date
8387 top-level as top-level entries at the end of the file."
8388 :group 'org-agenda
8389 :type '(choice
8390 (const :tag "in a date tree" date-tree)
8391 (const :tag "as top level at end of file" top-level)))
8393 (defcustom org-agenda-insert-diary-extract-time nil
8394 "Non-nil means extract any time specification from the diary entry."
8395 :group 'org-agenda
8396 :version "24.1"
8397 :type 'boolean)
8399 (defcustom org-agenda-bulk-mark-char ">"
8400 "A single-character string to be used as the bulk mark."
8401 :group 'org-agenda
8402 :version "24.1"
8403 :type 'string)
8405 (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
8406 "Add a diary entry with TYPE to `org-agenda-diary-file'.
8407 If TEXT is not empty, it will become the headline of the new entry, and
8408 the resulting entry will not be shown. When TEXT is empty, switch to
8409 `org-agenda-diary-file' and let the user finish the entry there."
8410 (let ((cw (current-window-configuration)))
8411 (org-switch-to-buffer-other-window
8412 (find-file-noselect org-agenda-diary-file))
8413 (widen)
8414 (goto-char (point-min))
8415 (cond
8416 ((eq type 'anniversary)
8417 (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
8418 (progn
8419 (or (org-at-heading-p t)
8420 (progn
8421 (outline-next-heading)
8422 (insert "* Anniversaries\n\n")
8423 (beginning-of-line -1)))))
8424 (outline-next-heading)
8425 (org-back-over-empty-lines)
8426 (backward-char 1)
8427 (insert "\n")
8428 (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
8429 (nth 2 d1) (car d1) (nth 1 d1) text)))
8430 ((eq type 'day)
8431 (let ((org-prefix-has-time t)
8432 (org-agenda-time-leading-zero t)
8433 fmt time time2)
8434 (if org-agenda-insert-diary-extract-time
8435 ;; Use org-agenda-format-item to parse text for a time-range and
8436 ;; remove it. FIXME: This is a hack, we should refactor
8437 ;; that function to make time extraction available separately
8438 (setq fmt (org-agenda-format-item nil text nil nil t)
8439 time (get-text-property 0 'time fmt)
8440 time2 (if (> (length time) 0)
8441 ;; split-string removes trailing ...... if
8442 ;; no end time given. First space
8443 ;; separates time from date.
8444 (concat " " (car (split-string time "\\.")))
8445 nil)
8446 text (get-text-property 0 'txt fmt)))
8447 (if (eq org-agenda-insert-diary-strategy 'top-level)
8448 (org-agenda-insert-diary-as-top-level text)
8449 (require 'org-datetree)
8450 (org-datetree-find-date-create d1)
8451 (org-agenda-insert-diary-make-new-entry text))
8452 (org-insert-time-stamp (org-time-from-absolute
8453 (calendar-absolute-from-gregorian d1))
8454 nil nil nil nil time2))
8455 (end-of-line 0))
8456 ((eq type 'block)
8457 (if (> (calendar-absolute-from-gregorian d1)
8458 (calendar-absolute-from-gregorian d2))
8459 (setq d1 (prog1 d2 (setq d2 d1))))
8460 (if (eq org-agenda-insert-diary-strategy 'top-level)
8461 (org-agenda-insert-diary-as-top-level text)
8462 (require 'org-datetree)
8463 (org-datetree-find-date-create d1)
8464 (org-agenda-insert-diary-make-new-entry text))
8465 (org-insert-time-stamp (org-time-from-absolute
8466 (calendar-absolute-from-gregorian d1)))
8467 (insert "--")
8468 (org-insert-time-stamp (org-time-from-absolute
8469 (calendar-absolute-from-gregorian d2)))
8470 (end-of-line 0)))
8471 (if (string-match "\\S-" text)
8472 (progn
8473 (set-window-configuration cw)
8474 (message "%s entry added to %s"
8475 (capitalize (symbol-name type))
8476 (abbreviate-file-name org-agenda-diary-file)))
8477 (org-reveal t)
8478 (message "Please finish entry here"))))
8480 (defun org-agenda-insert-diary-as-top-level (text)
8481 "Make new entry as a top-level entry at the end of the file.
8482 Add TEXT as headline, and position the cursor in the second line so that
8483 a timestamp can be added there."
8484 (widen)
8485 (goto-char (point-max))
8486 (or (bolp) (insert "\n"))
8487 (insert "* " text "\n")
8488 (if org-adapt-indentation (org-indent-to-column 2)))
8490 (defun org-agenda-insert-diary-make-new-entry (text)
8491 "Make new entry as last child of current entry.
8492 Add TEXT as headline, and position the cursor in the second line so that
8493 a timestamp can be added there."
8494 (let ((org-show-following-heading t)
8495 (org-show-siblings t)
8496 (org-show-hierarchy-above t)
8497 (org-show-entry-below t)
8498 col)
8499 (outline-next-heading)
8500 (org-back-over-empty-lines)
8501 (or (looking-at "[ \t]*$")
8502 (progn (insert "\n") (backward-char 1)))
8503 (org-insert-heading nil t)
8504 (org-do-demote)
8505 (setq col (current-column))
8506 (insert text "\n")
8507 (if org-adapt-indentation (org-indent-to-column col))
8508 (let ((org-show-following-heading t)
8509 (org-show-siblings t)
8510 (org-show-hierarchy-above t)
8511 (org-show-entry-below t))
8512 (org-show-context))))
8514 (defun org-agenda-diary-entry ()
8515 "Make a diary entry, like the `i' command from the calendar.
8516 All the standard commands work: block, weekly etc.
8517 When `org-agenda-diary-file' points to a file,
8518 `org-agenda-diary-entry-in-org-file' is called instead to create
8519 entries in that Org-mode file."
8520 (interactive)
8521 (org-agenda-check-type t 'agenda 'timeline)
8522 (if (not (eq org-agenda-diary-file 'diary-file))
8523 (org-agenda-diary-entry-in-org-file)
8524 (require 'diary-lib)
8525 (let* ((char (progn
8526 (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
8527 (read-char-exclusive)))
8528 (cmd (cdr (assoc char
8529 '((?d . insert-diary-entry)
8530 (?w . insert-weekly-diary-entry)
8531 (?m . insert-monthly-diary-entry)
8532 (?y . insert-yearly-diary-entry)
8533 (?a . insert-anniversary-diary-entry)
8534 (?b . insert-block-diary-entry)
8535 (?c . insert-cyclic-diary-entry)))))
8536 (oldf (symbol-function 'calendar-cursor-to-date))
8537 ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
8538 (point (point))
8539 (mark (or (mark t) (point))))
8540 (unless cmd
8541 (error "No command associated with <%c>" char))
8542 (unless (and (get-text-property point 'day)
8543 (or (not (equal ?b char))
8544 (get-text-property mark 'day)))
8545 (error "Don't know which date to use for diary entry"))
8546 ;; We implement this by hacking the `calendar-cursor-to-date' function
8547 ;; and the `calendar-mark-ring' variable. Saves a lot of code.
8548 (let ((calendar-mark-ring
8549 (list (calendar-gregorian-from-absolute
8550 (or (get-text-property mark 'day)
8551 (get-text-property point 'day))))))
8552 (unwind-protect
8553 (progn
8554 (fset 'calendar-cursor-to-date
8555 (lambda (&optional error dummy)
8556 (calendar-gregorian-from-absolute
8557 (get-text-property point 'day))))
8558 (call-interactively cmd))
8559 (fset 'calendar-cursor-to-date oldf))))))
8561 (defun org-agenda-execute-calendar-command (cmd)
8562 "Execute a calendar command from the agenda, with the date associated to
8563 the cursor position."
8564 (org-agenda-check-type t 'agenda 'timeline)
8565 (require 'diary-lib)
8566 (unless (get-text-property (point) 'day)
8567 (error "Don't know which date to use for calendar command"))
8568 (let* ((oldf (symbol-function 'calendar-cursor-to-date))
8569 (point (point))
8570 (date (calendar-gregorian-from-absolute
8571 (get-text-property point 'day)))
8572 ;; the following 2 vars are needed in the calendar
8573 (displayed-month (car date))
8574 (displayed-year (nth 2 date)))
8575 (unwind-protect
8576 (progn
8577 (fset 'calendar-cursor-to-date
8578 (lambda (&optional error dummy)
8579 (calendar-gregorian-from-absolute
8580 (get-text-property point 'day))))
8581 (call-interactively cmd))
8582 (fset 'calendar-cursor-to-date oldf))))
8584 (defun org-agenda-phases-of-moon ()
8585 "Display the phases of the moon for the 3 months around the cursor date."
8586 (interactive)
8587 (org-agenda-execute-calendar-command 'calendar-phases-of-moon))
8589 (defun org-agenda-holidays ()
8590 "Display the holidays for the 3 months around the cursor date."
8591 (interactive)
8592 (org-agenda-execute-calendar-command 'list-calendar-holidays))
8594 (defvar calendar-longitude)
8595 (defvar calendar-latitude)
8596 (defvar calendar-location-name)
8598 (defun org-agenda-sunrise-sunset (arg)
8599 "Display sunrise and sunset for the cursor date.
8600 Latitude and longitude can be specified with the variables
8601 `calendar-latitude' and `calendar-longitude'. When called with prefix
8602 argument, latitude and longitude will be prompted for."
8603 (interactive "P")
8604 (require 'solar)
8605 (let ((calendar-longitude (if arg nil calendar-longitude))
8606 (calendar-latitude (if arg nil calendar-latitude))
8607 (calendar-location-name
8608 (if arg "the given coordinates" calendar-location-name)))
8609 (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
8611 (defun org-agenda-goto-calendar ()
8612 "Open the Emacs calendar with the date at the cursor."
8613 (interactive)
8614 (org-agenda-check-type t 'agenda 'timeline)
8615 (let* ((day (or (get-text-property (point) 'day)
8616 (error "Don't know which date to open in calendar")))
8617 (date (calendar-gregorian-from-absolute day))
8618 (calendar-move-hook nil)
8619 (calendar-view-holidays-initially-flag nil)
8620 (calendar-view-diary-initially-flag nil))
8621 (calendar)
8622 (calendar-goto-date date)))
8624 ;;;###autoload
8625 (defun org-calendar-goto-agenda ()
8626 "Compute the Org-mode agenda for the calendar date displayed at the cursor.
8627 This is a command that has to be installed in `calendar-mode-map'."
8628 (interactive)
8629 (org-agenda-list nil (calendar-absolute-from-gregorian
8630 (calendar-cursor-to-date))
8631 nil))
8633 (defun org-agenda-convert-date ()
8634 (interactive)
8635 (org-agenda-check-type t 'agenda 'timeline)
8636 (let ((day (get-text-property (point) 'day))
8637 date s)
8638 (unless day
8639 (error "Don't know which date to convert"))
8640 (setq date (calendar-gregorian-from-absolute day))
8641 (setq s (concat
8642 "Gregorian: " (calendar-date-string date) "\n"
8643 "ISO: " (calendar-iso-date-string date) "\n"
8644 "Day of Yr: " (calendar-day-of-year-string date) "\n"
8645 "Julian: " (calendar-julian-date-string date) "\n"
8646 "Astron. JD: " (calendar-astro-date-string date)
8647 " (Julian date number at noon UTC)\n"
8648 "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
8649 "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
8650 "French: " (calendar-french-date-string date) "\n"
8651 "Baha'i: " (calendar-bahai-date-string date) " (until sunset)\n"
8652 "Mayan: " (calendar-mayan-date-string date) "\n"
8653 "Coptic: " (calendar-coptic-date-string date) "\n"
8654 "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
8655 "Persian: " (calendar-persian-date-string date) "\n"
8656 "Chinese: " (calendar-chinese-date-string date) "\n"))
8657 (with-output-to-temp-buffer "*Dates*"
8658 (princ s))
8659 (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
8661 ;;; Bulk commands
8663 (defvar org-agenda-bulk-marked-entries nil
8664 "List of markers that refer to marked entries in the agenda.")
8666 (defun org-agenda-bulk-marked-p ()
8667 (eq (get-char-property (point-at-bol) 'type)
8668 'org-marked-entry-overlay))
8670 (defun org-agenda-bulk-mark (&optional arg)
8671 "Mark the entry at point for future bulk action."
8672 (interactive "p")
8673 (dotimes (i (or arg 1))
8674 (unless (org-get-at-bol 'org-agenda-diary-link)
8675 (let* ((m (org-get-at-bol 'org-hd-marker))
8677 (unless (org-agenda-bulk-marked-p)
8678 (unless m (error "Nothing to mark at point"))
8679 (push m org-agenda-bulk-marked-entries)
8680 (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
8681 (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
8682 (org-get-todo-face "TODO")
8683 'evaporate)
8684 (overlay-put ov 'type 'org-marked-entry-overlay))
8685 (beginning-of-line 2)
8686 (while (and (get-char-property (point) 'invisible) (not (eobp)))
8687 (beginning-of-line 2))
8688 (message "%d entries marked for bulk action"
8689 (length org-agenda-bulk-marked-entries))))))
8691 (defun org-agenda-bulk-mark-all ()
8692 "Mark all entries for future agenda bulk action."
8693 (interactive)
8694 (org-agenda-bulk-mark-regexp "."))
8696 (defun org-agenda-bulk-mark-regexp (regexp)
8697 "Mark entries matching REGEXP for future agenda bulk action."
8698 (interactive "sMark entries matching regexp: ")
8699 (let ((entries-marked 0))
8700 (save-excursion
8701 (goto-char (point-min))
8702 (goto-char (next-single-property-change (point) 'txt))
8703 (while (re-search-forward regexp nil t)
8704 (when (string-match regexp (get-text-property (point) 'txt))
8705 (setq entries-marked (1+ entries-marked))
8706 (call-interactively 'org-agenda-bulk-mark))))
8707 (if (not entries-marked)
8708 (message "No entry matching this regexp."))))
8710 (defun org-agenda-bulk-unmark (&optional arg)
8711 "Unmark the entry at point for future bulk action."
8712 (interactive "P")
8713 (if arg
8714 (org-agenda-bulk-unmark-all)
8715 (cond ((org-agenda-bulk-marked-p)
8716 (org-agenda-bulk-remove-overlays
8717 (point-at-bol) (+ 2 (point-at-bol)))
8718 (setq org-agenda-bulk-marked-entries
8719 (delete (org-get-at-bol 'org-hd-marker)
8720 org-agenda-bulk-marked-entries))
8721 (beginning-of-line 2)
8722 (while (and (get-char-property (point) 'invisible) (not (eobp)))
8723 (beginning-of-line 2))
8724 (message "%d entries left marked for bulk action"
8725 (length org-agenda-bulk-marked-entries)))
8726 (t (message "No entry to unmark here")))))
8728 (defun org-agenda-bulk-toggle ()
8729 "Toggle marking the entry at point for bulk action."
8730 (interactive)
8731 (if (org-agenda-bulk-marked-p)
8732 (org-agenda-bulk-unmark)
8733 (org-agenda-bulk-mark)))
8735 (defun org-agenda-bulk-remove-overlays (&optional beg end)
8736 "Remove the mark overlays between BEG and END in the agenda buffer.
8737 BEG and END default to the buffer limits.
8739 This only removes the overlays, it does not remove the markers
8740 from the list in `org-agenda-bulk-marked-entries'."
8741 (interactive)
8742 (mapc (lambda (ov)
8743 (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
8744 (delete-overlay ov)))
8745 (overlays-in (or beg (point-min)) (or end (point-max)))))
8747 (defun org-agenda-bulk-unmark-all ()
8748 "Remove all marks in the agenda buffer.
8749 This will remove the markers and the overlays."
8750 (interactive)
8751 (if (null org-agenda-bulk-marked-entries)
8752 (message "No entry to unmark")
8753 (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
8754 (setq org-agenda-bulk-marked-entries nil)
8755 (org-agenda-bulk-remove-overlays (point-min) (point-max))))
8757 (defcustom org-agenda-persistent-marks nil
8758 "Non-nil means marked items will stay marked after a bulk action.
8759 You can toggle this interactively by typing `p' when prompted for a
8760 bulk action."
8761 :group 'org-agenda
8762 :version "24.1"
8763 :type 'boolean)
8765 (defun org-agenda-bulk-action (&optional arg)
8766 "Execute an remote-editing action on all marked entries.
8767 The prefix arg is passed through to the command if possible."
8768 (interactive "P")
8769 ;; Make sure we have markers, and only valid ones
8770 (unless org-agenda-bulk-marked-entries (error "No entries are marked"))
8771 (mapc
8772 (lambda (m)
8773 (unless (and (markerp m)
8774 (marker-buffer m)
8775 (buffer-live-p (marker-buffer m))
8776 (marker-position m))
8777 (error "Marker %s for bulk command is invalid" m)))
8778 org-agenda-bulk-marked-entries)
8780 ;; Prompt for the bulk command
8781 (let* ((msg (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")))
8782 (message (concat msg "[r]efile [$]arch [A]rch->sib [t]odo"
8783 " [+/-]tag [s]chd [S]catter [d]eadline [f]unction "
8784 (when org-agenda-bulk-custom-functions
8785 (concat " Custom: ["
8786 (mapconcat (lambda(f) (char-to-string (car f)))
8787 org-agenda-bulk-custom-functions "")
8788 "]"))))
8789 (catch 'exit
8790 (let* ((action (read-char-exclusive))
8791 (org-log-refile (if org-log-refile 'time nil))
8792 (entries (reverse org-agenda-bulk-marked-entries))
8793 redo-at-end
8794 cmd rfloc state e tag pos (cnt 0) (cntskip 0))
8795 (cond
8796 ((equal action ?p)
8797 (let ((org-agenda-persistent-marks
8798 (not org-agenda-persistent-marks)))
8799 (org-agenda-bulk-action)
8800 (throw 'exit nil)))
8802 ((equal action ?$)
8803 (setq cmd '(org-agenda-archive)))
8805 ((equal action ?A)
8806 (setq cmd '(org-agenda-archive-to-archive-sibling)))
8808 ((member action '(?r ?w))
8809 (setq rfloc (org-refile-get-location
8810 "Refile to"
8811 (marker-buffer (car org-agenda-bulk-marked-entries))
8812 org-refile-allow-creating-parent-nodes))
8813 (if (nth 3 rfloc)
8814 (setcar (nthcdr 3 rfloc)
8815 (move-marker (make-marker) (nth 3 rfloc)
8816 (or (get-file-buffer (nth 1 rfloc))
8817 (find-buffer-visiting (nth 1 rfloc))
8818 (error "This should not happen")))))
8820 (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
8821 redo-at-end t))
8823 ((equal action ?t)
8824 (setq state (org-icompleting-read
8825 "Todo state: "
8826 (with-current-buffer (marker-buffer (car entries))
8827 (mapcar 'list org-todo-keywords-1))))
8828 (setq cmd `(let ((org-inhibit-blocking t)
8829 (org-inhibit-logging 'note))
8830 (org-agenda-todo ,state))))
8832 ((memq action '(?- ?+))
8833 (setq tag (org-icompleting-read
8834 (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
8835 (with-current-buffer (marker-buffer (car entries))
8836 (delq nil
8837 (mapcar (lambda (x)
8838 (if (stringp (car x)) x)) org-tag-alist)))))
8839 (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
8841 ((memq action '(?s ?d))
8842 (let* ((date (unless arg
8843 (org-read-date
8844 nil nil nil
8845 (if (eq action ?s) "(Re)Schedule to" "Set Deadline to"))))
8846 (ans (if arg nil org-read-date-final-answer))
8847 (c1 (if (eq action ?s) 'org-agenda-schedule 'org-agenda-deadline)))
8848 (setq cmd `(let* ((bound (fboundp 'read-string))
8849 (old (and bound (symbol-function 'read-string))))
8850 (unwind-protect
8851 (progn
8852 (fset 'read-string (lambda (&rest ignore) ,ans))
8853 (eval '(,c1 arg)))
8854 (if bound
8855 (fset 'read-string old)
8856 (fmakunbound 'read-string)))))))
8858 ((equal action ?S)
8859 (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
8860 (error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
8861 (let ((days (read-number
8862 (format "Scatter tasks across how many %sdays: "
8863 (if arg "week" "")) 7)))
8864 (setq cmd
8865 `(let ((distance (1+ (random ,days))))
8866 (if arg
8867 (let ((dist distance)
8868 (day-of-week
8869 (calendar-day-of-week
8870 (calendar-gregorian-from-absolute (org-today)))))
8871 (dotimes (i (1+ dist))
8872 (while (member day-of-week org-agenda-weekend-days)
8873 (incf distance)
8874 (incf day-of-week)
8875 (if (= day-of-week 7)
8876 (setq day-of-week 0)))
8877 (incf day-of-week)
8878 (if (= day-of-week 7)
8879 (setq day-of-week 0)))))
8880 ;; silently fail when try to replan a sexp entry
8881 (condition-case nil
8882 (let* ((date (calendar-gregorian-from-absolute
8883 (+ (org-today) distance)))
8884 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
8885 (nth 2 date))))
8886 (org-agenda-schedule nil time))
8887 (error nil)))))))
8889 ((assoc action org-agenda-bulk-custom-functions)
8890 (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
8891 redo-at-end t))
8893 ((equal action ?f)
8894 (setq cmd (list (intern
8895 (org-icompleting-read "Function: "
8896 obarray 'fboundp t nil nil)))))
8898 (t (error "Invalid bulk action")))
8900 ;; Sort the markers, to make sure that parents are handled before children
8901 (setq entries (sort entries
8902 (lambda (a b)
8903 (cond
8904 ((equal (marker-buffer a) (marker-buffer b))
8905 (< (marker-position a) (marker-position b)))
8907 (string< (buffer-name (marker-buffer a))
8908 (buffer-name (marker-buffer b))))))))
8910 ;; Now loop over all markers and apply cmd
8911 (while (setq e (pop entries))
8912 (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
8913 (if (not pos)
8914 (progn (message "Skipping removed entry at %s" e)
8915 (setq cntskip (1+ cntskip)))
8916 (goto-char pos)
8917 (let (org-loop-over-headlines-in-active-region)
8918 (eval cmd))
8919 (when (not org-agenda-persistent-marks)
8920 (setq org-agenda-bulk-marked-entries
8921 (delete e org-agenda-bulk-marked-entries)))
8922 (setq cnt (1+ cnt))))
8923 (when (not org-agenda-persistent-marks)
8924 (org-agenda-bulk-unmark-all))
8925 (when redo-at-end (org-agenda-redo))
8926 (message "Acted on %d entries%s%s"
8928 (if (= cntskip 0)
8930 (format ", skipped %d (disappeared before their turn)"
8931 cntskip))
8932 (if (not org-agenda-persistent-marks)
8933 "" " (kept marked)"))))))
8935 ;;; Flagging notes
8937 (defun org-agenda-show-the-flagging-note ()
8938 "Display the flagging note in the other window.
8939 When called a second time in direct sequence, offer to remove the FLAGGING
8940 tag and (if present) the flagging note."
8941 (interactive)
8942 (let ((hdmarker (org-get-at-bol 'org-hd-marker))
8943 (win (selected-window))
8944 note heading newhead)
8945 (unless hdmarker
8946 (error "No linked entry at point"))
8947 (if (and (eq this-command last-command)
8948 (y-or-n-p "Unflag and remove any flagging note? "))
8949 (progn
8950 (org-agenda-remove-flag hdmarker)
8951 (let ((win (get-buffer-window "*Flagging Note*")))
8952 (and win (delete-window win)))
8953 (message "Entry unflagged"))
8954 (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
8955 (unless note
8956 (error "No flagging note"))
8957 (org-kill-new note)
8958 (org-switch-to-buffer-other-window "*Flagging Note*")
8959 (erase-buffer)
8960 (insert note)
8961 (goto-char (point-min))
8962 (while (re-search-forward "\\\\n" nil t)
8963 (replace-match "\n" t t))
8964 (goto-char (point-min))
8965 (select-window win)
8966 (message "Flagging note pushed to kill ring. Press [?] again to remove tag and note"))))
8968 (defun org-agenda-remove-flag (marker)
8969 "Remove the FLAGGED tag and any flagging note in the entry."
8970 (let (newhead)
8971 (org-with-point-at marker
8972 (org-toggle-tag "FLAGGED" 'off)
8973 (org-entry-delete nil "THEFLAGGINGNOTE")
8974 (setq newhead (org-get-heading)))
8975 (org-agenda-change-all-lines newhead marker)
8976 (message "Entry unflagged")))
8978 (defun org-agenda-get-any-marker (&optional pos)
8979 (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
8980 (get-text-property (or pos (point-at-bol)) 'org-marker)))
8982 ;;; Appointment reminders
8984 (defvar appt-time-msg-list)
8986 ;;;###autoload
8987 (defun org-agenda-to-appt (&optional refresh filter &rest args)
8988 "Activate appointments found in `org-agenda-files'.
8989 With a \\[universal-argument] prefix, refresh the list of
8990 appointments.
8992 If FILTER is t, interactively prompt the user for a regular
8993 expression, and filter out entries that don't match it.
8995 If FILTER is a string, use this string as a regular expression
8996 for filtering entries out.
8998 If FILTER is a function, filter out entries against which
8999 calling the function returns nil. This function takes one
9000 argument: an entry from `org-agenda-get-day-entries'.
9002 FILTER can also be an alist with the car of each cell being
9003 either 'headline or 'category. For example:
9005 '((headline \"IMPORTANT\")
9006 (category \"Work\"))
9008 will only add headlines containing IMPORTANT or headlines
9009 belonging to the \"Work\" category.
9011 ARGS are symbols indicating what kind of entries to consider.
9012 By default `org-agenda-to-appt' will use :deadline, :scheduled
9013 and :timestamp entries. See the docstring of `org-diary' for
9014 details and examples.
9016 If an entry as a APPT_WARNTIME property, its value will be used
9017 to override `appt-message-warning-time'."
9018 (interactive "P")
9019 (if refresh (setq appt-time-msg-list nil))
9020 (if (eq filter t)
9021 (setq filter (read-from-minibuffer "Regexp filter: ")))
9022 (let* ((cnt 0) ; count added events
9023 (scope (or args '(:deadline :scheduled :timestamp)))
9024 (org-agenda-new-buffers nil)
9025 (org-deadline-warning-days 0)
9026 ;; Do not use `org-today' here because appt only takes
9027 ;; time and without date as argument, so it may pass wrong
9028 ;; information otherwise
9029 (today (org-date-to-gregorian
9030 (time-to-days (current-time))))
9031 (org-agenda-restrict nil)
9032 (files (org-agenda-files 'unrestricted)) entries file
9033 (org-agenda-buffer nil))
9034 ;; Get all entries which may contain an appt
9035 (org-prepare-agenda-buffers files)
9036 (while (setq file (pop files))
9037 (setq entries
9038 (delq nil
9039 (append entries
9040 (apply 'org-agenda-get-day-entries
9041 file today scope)))))
9042 ;; Map thru entries and find if we should filter them out
9043 (mapc
9044 (lambda(x)
9045 (let* ((evt (org-trim (or (get-text-property 1 'txt x) "")))
9046 (cat (get-text-property 1 'org-category x))
9047 (tod (get-text-property 1 'time-of-day x))
9048 (ok (or (null filter)
9049 (and (stringp filter) (string-match filter evt))
9050 (and (functionp filter) (funcall filter x))
9051 (and (listp filter)
9052 (let ((cat-filter (cadr (assoc 'category filter)))
9053 (evt-filter (cadr (assoc 'headline filter))))
9054 (or (and (stringp cat-filter)
9055 (string-match cat-filter cat))
9056 (and (stringp evt-filter)
9057 (string-match evt-filter evt)))))))
9058 (wrn (get-text-property 1 'warntime x)))
9059 ;; FIXME: Shall we remove text-properties for the appt text?
9060 ;; (setq evt (set-text-properties 0 (length evt) nil evt))
9061 (when (and ok tod)
9062 (setq tod (concat "00" (number-to-string tod))
9063 tod (when (string-match
9064 "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
9065 (concat (match-string 1 tod) ":"
9066 (match-string 2 tod))))
9067 (if (version< emacs-version "23.3")
9068 (appt-add tod evt)
9069 (appt-add tod evt wrn))
9070 (setq cnt (1+ cnt))))) entries)
9071 (org-release-buffers org-agenda-new-buffers)
9072 (if (eq cnt 0)
9073 (message "No event to add")
9074 (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
9076 (defun org-agenda-todayp (date)
9077 "Does DATE mean today, when considering `org-extend-today-until'?"
9078 (let ((today (org-today))
9079 (date (if (and date (listp date)) (calendar-absolute-from-gregorian date)
9080 date)))
9081 (eq date today)))
9083 (defun org-agenda-todo-yesterday (&optional arg)
9084 "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
9085 (interactive "P")
9086 (let* ((hour (third (decode-time
9087 (org-current-time))))
9088 (org-extend-today-until (1+ hour)))
9089 (org-agenda-todo arg)))
9091 (provide 'org-agenda)
9093 ;;; org-agenda.el ends here