testing: allow to select tests
[org-mode/org-tableheadings.git] / lisp / org-agenda.el
blob68099b123cbad9674375e0c39232a3cf8ca6c9a1
1 ;;; org-agenda.el --- Dynamic task and appointment lists for Org
3 ;; Copyright (C) 2004-2013 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-columns-remove-overlays "org-colview" ())
73 (declare-function org-datetree-find-date-create "org-datetree"
74 (date &optional keep-restriction))
75 (declare-function org-columns-quit "org-colview" ())
76 (declare-function diary-date-display-form "diary-lib" (&optional type))
77 (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
78 (declare-function org-habit-insert-consistency-graphs
79 "org-habit" (&optional line))
80 (declare-function org-is-habit-p "org-habit" (&optional pom))
81 (declare-function org-habit-parse-todo "org-habit" (&optional pom))
82 (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
83 (declare-function org-pop-to-buffer-same-window "org-compat"
84 (&optional buffer-or-name norecord label))
85 (declare-function org-agenda-columns "org-colview" ())
86 (declare-function org-add-archive-files "org-archive" (files))
87 (declare-function org-capture "org-capture" (&optional goto keys))
89 (defvar calendar-mode-map) ; defined in calendar.el
90 (defvar org-clock-current-task nil) ; defined in org-clock.el
91 (defvar org-mobile-force-id-on-agenda-items) ; defined in org-mobile.el
92 (defvar org-habit-show-habits) ; defined in org-habit.el
93 (defvar org-habit-show-habits-only-for-today)
94 (defvar org-habit-show-all-today)
96 ;; Defined somewhere in this file, but used before definition.
97 (defvar org-agenda-buffer-name "*Org Agenda*")
98 (defvar org-agenda-overriding-header nil)
99 (defvar org-agenda-title-append nil)
100 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
101 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
102 (defvar original-date) ; dynamically scoped, calendar.el does scope this
104 (defvar org-agenda-undo-list nil
105 "List of undoable operations in the agenda since last refresh.")
106 (defvar org-agenda-pending-undo-list nil
107 "In a series of undo commands, this is the list of remaining undo items.")
109 (defcustom org-agenda-confirm-kill 1
110 "When set, remote killing from the agenda buffer needs confirmation.
111 When t, a confirmation is always needed. When a number N, confirmation is
112 only needed when the text to be killed contains more than N non-white lines."
113 :group 'org-agenda
114 :type '(choice
115 (const :tag "Never" nil)
116 (const :tag "Always" t)
117 (integer :tag "When more than N lines")))
119 (defcustom org-agenda-compact-blocks nil
120 "Non-nil means make the block agenda more compact.
121 This is done globally by leaving out lines like the agenda span
122 name and week number or the separator lines."
123 :group 'org-agenda
124 :type 'boolean)
126 (defcustom org-agenda-block-separator ?=
127 "The separator between blocks in the agenda.
128 If this is a string, it will be used as the separator, with a newline added.
129 If it is a character, it will be repeated to fill the window width.
130 If nil the separator is disabled. In `org-agenda-custom-commands' this
131 addresses the separator between the current and the previous block."
132 :group 'org-agenda
133 :type '(choice
134 (const :tag "Disabled" nil)
135 (character)
136 (string)))
138 (defgroup org-agenda-export nil
139 "Options concerning exporting agenda views in Org-mode."
140 :tag "Org Agenda Export"
141 :group 'org-agenda)
143 (defcustom org-agenda-with-colors t
144 "Non-nil means use colors in agenda views."
145 :group 'org-agenda-export
146 :type 'boolean)
148 (defcustom org-agenda-exporter-settings nil
149 "Alist of variable/value pairs that should be active during agenda export.
150 This is a good place to set options for ps-print and for htmlize.
151 Note that the way this is implemented, the values will be evaluated
152 before assigned to the variables. So make sure to quote values you do
153 *not* want evaluated, for example
155 (setq org-agenda-exporter-settings
156 '((ps-print-color-p 'black-white)))"
157 :group 'org-agenda-export
158 :type '(repeat
159 (list
160 (variable)
161 (sexp :tag "Value"))))
163 (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
164 "Hook run in a temporary buffer before writing the agenda to an export file.
165 A useful function for this hook is `org-agenda-add-entry-text'."
166 :group 'org-agenda-export
167 :type 'hook
168 :options '(org-agenda-add-entry-text))
170 (defcustom org-agenda-add-entry-text-maxlines 0
171 "Maximum number of entry text lines to be added to agenda.
172 This is only relevant when `org-agenda-add-entry-text' is part of
173 `org-agenda-before-write-hook', which is the default.
174 When this is 0, nothing will happen. When it is greater than 0, it
175 specifies the maximum number of lines that will be added for each entry
176 that is listed in the agenda view.
178 Note that this variable is not used during display, only when exporting
179 the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
180 and `org-agenda-entry-text-maxlines'."
181 :group 'org-agenda
182 :type 'integer)
184 (defcustom org-agenda-add-entry-text-descriptive-links t
185 "Non-nil means export org-links as descriptive links in agenda added text.
186 This variable applies to the text added to the agenda when
187 `org-agenda-add-entry-text-maxlines' is larger than 0.
188 When this variable nil, the URL will (also) be shown."
189 :group 'org-agenda
190 :type 'boolean)
192 (defcustom org-agenda-export-html-style nil
193 "The style specification for exported HTML Agenda files.
194 If this variable contains a string, it will replace the default <style>
195 section as produced by `htmlize'.
196 Since there are different ways of setting style information, this variable
197 needs to contain the full HTML structure to provide a style, including the
198 surrounding HTML tags. The style specifications should include definitions
199 the fonts used by the agenda, here is an example:
201 <style type=\"text/css\">
202 p { font-weight: normal; color: gray; }
203 .org-agenda-structure {
204 font-size: 110%;
205 color: #003399;
206 font-weight: 600;
208 .org-todo {
209 color: #cc6666;
210 font-weight: bold;
212 .org-agenda-done {
213 color: #339933;
215 .org-done {
216 color: #339933;
218 .title { text-align: center; }
219 .todo, .deadline { color: red; }
220 .done { color: green; }
221 </style>
223 or, if you want to keep the style in a file,
225 <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
227 As the value of this option simply gets inserted into the HTML <head> header,
228 you can \"misuse\" it to also add other text to the header."
229 :group 'org-agenda-export
230 :group 'org-export-html
231 :type '(choice
232 (const nil)
233 (string)))
235 (defcustom org-agenda-persistent-filter nil
236 "When set, keep filters from one agenda view to the next."
237 :group 'org-agenda
238 :type 'boolean)
240 (defgroup org-agenda-custom-commands nil
241 "Options concerning agenda views in Org-mode."
242 :tag "Org Agenda Custom Commands"
243 :group 'org-agenda)
245 (defconst org-sorting-choice
246 '(choice
247 (const time-up) (const time-down)
248 (const timestamp-up) (const timestamp-down)
249 (const scheduled-up) (const scheduled-down)
250 (const deadline-up) (const deadline-down)
251 (const ts-up) (const ts-down)
252 (const tsia-up) (const tsia-down)
253 (const category-keep) (const category-up) (const category-down)
254 (const tag-down) (const tag-up)
255 (const priority-up) (const priority-down)
256 (const todo-state-up) (const todo-state-down)
257 (const effort-up) (const effort-down)
258 (const habit-up) (const habit-down)
259 (const alpha-up) (const alpha-down)
260 (const user-defined-up) (const user-defined-down))
261 "Sorting choices.")
263 ;; Keep custom values for `org-agenda-filter-preset' compatible with
264 ;; the new variable `org-agenda-tag-filter-preset'.
265 (org-defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
266 (org-defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
268 (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
269 "List of types searched for when creating the daily/weekly agenda.
270 This variable is a list of symbols that controls the types of
271 items that appear in the daily/weekly agenda. Allowed symbols in this
272 list are are
274 :timestamp List items containing a date stamp or date range matching
275 the selected date. This includes sexp entries in angular
276 brackets.
278 :sexp List entries resulting from plain diary-like sexps.
280 :deadline List deadline due on that date. When the date is today,
281 also list any deadlines past due, or due within
282 `org-deadline-warning-days'. `:deadline' must appear before
283 `:scheduled' if the setting of
284 `org-agenda-skip-scheduled-if-deadline-is-shown' is to have
285 any effect.
287 :deadline* Same as above, but only include the deadline if it has an
288 hour specification as [h]h:mm.
290 :scheduled List all items which are scheduled for the given date.
291 The diary for *today* also contains items which were
292 scheduled earlier and are not yet marked DONE.
294 :scheduled* Same as above, but only include the scheduled item if it
295 has an hour specification as [h]h:mm.
297 By default, all four non-starred types are turned on.
299 When :scheduled* or :deadline* are included, :schedule or :deadline
300 will be ignored.
302 Never set this variable globally using `setq', because then it
303 will apply to all future agenda commands. Instead, bind it with
304 `let' to scope it dynamically into the agenda-constructing
305 command. A good way to set it is through options in
306 `org-agenda-custom-commands'. For a more flexible (though
307 somewhat less efficient) way of determining what is included in
308 the daily/weekly agenda, see `org-agenda-skip-function'.")
310 (defconst org-agenda-custom-commands-local-options
311 `(repeat :tag "Local settings for this command. Remember to quote values"
312 (choice :tag "Setting"
313 (list :tag "Heading for this block"
314 (const org-agenda-overriding-header)
315 (string :tag "Headline"))
316 (list :tag "Files to be searched"
317 (const org-agenda-files)
318 (list
319 (const :format "" quote)
320 (repeat (file))))
321 (list :tag "Sorting strategy"
322 (const org-agenda-sorting-strategy)
323 (list
324 (const :format "" quote)
325 (repeat
326 ,org-sorting-choice)))
327 (list :tag "Prefix format"
328 (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
329 (string))
330 (list :tag "Number of days in agenda"
331 (const org-agenda-span)
332 (choice (const :tag "Day" 'day)
333 (const :tag "Week" 'week)
334 (const :tag "Fortnight" 'fortnight)
335 (const :tag "Month" 'month)
336 (const :tag "Year" 'year)
337 (integer :tag "Custom")))
338 (list :tag "Fixed starting date"
339 (const org-agenda-start-day)
340 (string :value "2007-11-01"))
341 (list :tag "Start on day of week"
342 (const org-agenda-start-on-weekday)
343 (choice :value 1
344 (const :tag "Today" nil)
345 (integer :tag "Weekday No.")))
346 (list :tag "Include data from diary"
347 (const org-agenda-include-diary)
348 (boolean))
349 (list :tag "Deadline Warning days"
350 (const org-deadline-warning-days)
351 (integer :value 1))
352 (list :tag "Category filter preset"
353 (const org-agenda-category-filter-preset)
354 (list
355 (const :format "" quote)
356 (repeat
357 (string :tag "+category or -category"))))
358 (list :tag "Tags filter preset"
359 (const org-agenda-tag-filter-preset)
360 (list
361 (const :format "" quote)
362 (repeat
363 (string :tag "+tag or -tag"))))
364 (list :tag "Regexp filter preset"
365 (const org-agenda-regexp-filter-preset)
366 (list
367 (const :format "" quote)
368 (repeat
369 (string :tag "+regexp or -regexp"))))
370 (list :tag "Set daily/weekly entry types"
371 (const org-agenda-entry-types)
372 (list
373 (const :format "" quote)
374 (set :greedy t :value ,org-agenda-entry-types
375 (const :deadline)
376 (const :scheduled)
377 (const :deadline*)
378 (const :scheduled*)
379 (const :timestamp)
380 (const :sexp))))
381 (list :tag "Standard skipping condition"
382 :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
383 (const org-agenda-skip-function)
384 (list
385 (const :format "" quote)
386 (list
387 (choice
388 :tag "Skipping range"
389 (const :tag "Skip entry" org-agenda-skip-entry-if)
390 (const :tag "Skip subtree" org-agenda-skip-subtree-if))
391 (repeat :inline t :tag "Conditions for skipping"
392 (choice
393 :tag "Condition type"
394 (list :tag "Regexp matches" :inline t (const :format "" 'regexp) (regexp))
395 (list :tag "Regexp does not match" :inline t (const :format "" 'notregexp) (regexp))
396 (list :tag "TODO state is" :inline t
397 (const 'todo)
398 (choice
399 (const :tag "any not-done state" 'todo)
400 (const :tag "any done state" 'done)
401 (const :tag "any state" 'any)
402 (list :tag "Keyword list"
403 (const :format "" quote)
404 (repeat (string :tag "Keyword")))))
405 (list :tag "TODO state is not" :inline t
406 (const 'nottodo)
407 (choice
408 (const :tag "any not-done state" 'todo)
409 (const :tag "any done state" 'done)
410 (const :tag "any state" 'any)
411 (list :tag "Keyword list"
412 (const :format "" quote)
413 (repeat (string :tag "Keyword")))))
414 (const :tag "scheduled" 'scheduled)
415 (const :tag "not scheduled" 'notscheduled)
416 (const :tag "deadline" 'deadline)
417 (const :tag "no deadline" 'notdeadline)
418 (const :tag "timestamp" 'timestamp)
419 (const :tag "no timestamp" 'nottimestamp))))))
420 (list :tag "Non-standard skipping condition"
421 :value (org-agenda-skip-function)
422 (const org-agenda-skip-function)
423 (sexp :tag "Function or form (quoted!)"))
424 (list :tag "Any variable"
425 (variable :tag "Variable")
426 (sexp :tag "Value (sexp)"))))
427 "Selection of examples for agenda command settings.
428 This will be spliced into the custom type of
429 `org-agenda-custom-commands'.")
432 (defcustom org-agenda-custom-commands
433 '(("n" "Agenda and all TODO's" ((agenda "") (alltodo ""))))
434 "Custom commands for the agenda.
435 These commands will be offered on the splash screen displayed by the
436 agenda dispatcher \\[org-agenda]. Each entry is a list like this:
438 (key desc type match settings files)
440 key The key (one or more characters as a string) to be associated
441 with the command.
442 desc A description of the command, when omitted or nil, a default
443 description is built using MATCH.
444 type The command type, any of the following symbols:
445 agenda The daily/weekly agenda.
446 todo Entries with a specific TODO keyword, in all agenda files.
447 search Entries containing search words entry or headline.
448 tags Tags/Property/TODO match in all agenda files.
449 tags-todo Tags/P/T match in all agenda files, TODO entries only.
450 todo-tree Sparse tree of specific TODO keyword in *current* file.
451 tags-tree Sparse tree with all tags matches in *current* file.
452 occur-tree Occur sparse tree for *current* file.
453 ... A user-defined function.
454 match What to search for:
455 - a single keyword for TODO keyword searches
456 - a tags match expression for tags searches
457 - a word search expression for text searches.
458 - a regular expression for occur searches
459 For all other commands, this should be the empty string.
460 settings A list of option settings, similar to that in a let form, so like
461 this: ((opt1 val1) (opt2 val2) ...). The values will be
462 evaluated at the moment of execution, so quote them when needed.
463 files A list of files file to write the produced agenda buffer to
464 with the command `org-store-agenda-views'.
465 If a file name ends in \".html\", an HTML version of the buffer
466 is written out. If it ends in \".ps\", a postscript version is
467 produced. Otherwise, only the plain text is written to the file.
469 You can also define a set of commands, to create a composite agenda buffer.
470 In this case, an entry looks like this:
472 (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
474 where
476 desc A description string to be displayed in the dispatcher menu.
477 cmd An agenda command, similar to the above. However, tree commands
478 are not allowed, but instead you can get agenda and global todo list.
479 So valid commands for a set are:
480 (agenda \"\" settings)
481 (alltodo \"\" settings)
482 (stuck \"\" settings)
483 (todo \"match\" settings files)
484 (search \"match\" settings files)
485 (tags \"match\" settings files)
486 (tags-todo \"match\" settings files)
488 Each command can carry a list of options, and another set of options can be
489 given for the whole set of commands. Individual command options take
490 precedence over the general options.
492 When using several characters as key to a command, the first characters
493 are prefix commands. For the dispatcher to display useful information, you
494 should provide a description for the prefix, like
496 (setq org-agenda-custom-commands
497 '((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
498 (\"hl\" tags \"+HOME+Lisa\")
499 (\"hp\" tags \"+HOME+Peter\")
500 (\"hk\" tags \"+HOME+Kim\")))"
501 :group 'org-agenda-custom-commands
502 :type `(repeat
503 (choice :value ("x" "Describe command here" tags "" nil)
504 (list :tag "Single command"
505 (string :tag "Access Key(s) ")
506 (option (string :tag "Description"))
507 (choice
508 (const :tag "Agenda" agenda)
509 (const :tag "TODO list" alltodo)
510 (const :tag "Search words" search)
511 (const :tag "Stuck projects" stuck)
512 (const :tag "Tags/Property match (all agenda files)" tags)
513 (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
514 (const :tag "TODO keyword search (all agenda files)" todo)
515 (const :tag "Tags sparse tree (current buffer)" tags-tree)
516 (const :tag "TODO keyword tree (current buffer)" todo-tree)
517 (const :tag "Occur tree (current buffer)" occur-tree)
518 (sexp :tag "Other, user-defined function"))
519 (string :tag "Match (only for some commands)")
520 ,org-agenda-custom-commands-local-options
521 (option (repeat :tag "Export" (file :tag "Export to"))))
522 (list :tag "Command series, all agenda files"
523 (string :tag "Access Key(s)")
524 (string :tag "Description ")
525 (repeat :tag "Component"
526 (choice
527 (list :tag "Agenda"
528 (const :format "" agenda)
529 (const :tag "" :format "" "")
530 ,org-agenda-custom-commands-local-options)
531 (list :tag "TODO list (all keywords)"
532 (const :format "" alltodo)
533 (const :tag "" :format "" "")
534 ,org-agenda-custom-commands-local-options)
535 (list :tag "Search words"
536 (const :format "" search)
537 (string :tag "Match")
538 ,org-agenda-custom-commands-local-options)
539 (list :tag "Stuck projects"
540 (const :format "" stuck)
541 (const :tag "" :format "" "")
542 ,org-agenda-custom-commands-local-options)
543 (list :tag "Tags search"
544 (const :format "" tags)
545 (string :tag "Match")
546 ,org-agenda-custom-commands-local-options)
547 (list :tag "Tags search, TODO entries only"
548 (const :format "" tags-todo)
549 (string :tag "Match")
550 ,org-agenda-custom-commands-local-options)
551 (list :tag "TODO keyword search"
552 (const :format "" todo)
553 (string :tag "Match")
554 ,org-agenda-custom-commands-local-options)
555 (list :tag "Other, user-defined function"
556 (symbol :tag "function")
557 (string :tag "Match")
558 ,org-agenda-custom-commands-local-options)))
560 (repeat :tag "Settings for entire command set"
561 (list (variable :tag "Any variable")
562 (sexp :tag "Value")))
563 (option (repeat :tag "Export" (file :tag "Export to"))))
564 (cons :tag "Prefix key documentation"
565 (string :tag "Access Key(s)")
566 (string :tag "Description ")))))
568 (defcustom org-agenda-query-register ?o
569 "The register holding the current query string.
570 The purpose of this is that if you construct a query string interactively,
571 you can then use it to define a custom command."
572 :group 'org-agenda-custom-commands
573 :type 'character)
575 (defcustom org-stuck-projects
576 '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
577 "How to identify stuck projects.
578 This is a list of four items:
579 1. A tags/todo/property matcher string that is used to identify a project.
580 See the manual for a description of tag and property searches.
581 The entire tree below a headline matched by this is considered one project.
582 2. A list of TODO keywords identifying non-stuck projects.
583 If the project subtree contains any headline with one of these todo
584 keywords, the project is considered to be not stuck. If you specify
585 \"*\" as a keyword, any TODO keyword will mark the project unstuck.
586 3. A list of tags identifying non-stuck projects.
587 If the project subtree contains any headline with one of these tags,
588 the project is considered to be not stuck. If you specify \"*\" as
589 a tag, any tag will mark the project unstuck. Note that this is about
590 the explicit presence of a tag somewhere in the subtree, inherited
591 tags do not count here. If inherited tags make a project not stuck,
592 use \"-TAG\" in the tags part of the matcher under (1.) above.
593 4. An arbitrary regular expression matching non-stuck projects.
595 If the project turns out to be not stuck, search continues also in the
596 subtree to see if any of the subtasks have project status.
598 See also the variable `org-tags-match-list-sublevels' which applies
599 to projects matched by this search as well.
601 After defining this variable, you may use \\[org-agenda-list-stuck-projects]
602 or `C-c a #' to produce the list."
603 :group 'org-agenda-custom-commands
604 :type '(list
605 (string :tag "Tags/TODO match to identify a project")
606 (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
607 (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
608 (regexp :tag "Projects are *not* stuck if this regexp matches inside the subtree")))
610 (defcustom org-agenda-filter-effort-default-operator "<"
611 "The default operator for effort estimate filtering.
612 If you select an effort estimate limit without first pressing an operator,
613 this one will be used."
614 :group 'org-agenda-custom-commands
615 :type '(choice (const :tag "less or equal" "<")
616 (const :tag "greater or equal"">")
617 (const :tag "equal" "=")))
619 (defgroup org-agenda-skip nil
620 "Options concerning skipping parts of agenda files."
621 :tag "Org Agenda Skip"
622 :group 'org-agenda)
624 (defcustom org-agenda-skip-function-global nil
625 "Function to be called at each match during agenda construction.
626 If this function returns nil, the current match should not be skipped.
627 If the function decided to skip an agenda match, is must return the
628 buffer position from which the search should be continued.
629 This may also be a Lisp form, which will be evaluated.
631 This variable will be applied to every agenda match, including
632 tags/property searches and TODO lists. So try to make the test function
633 do its checking as efficiently as possible. To implement a skipping
634 condition just for specific agenda commands, use the variable
635 `org-agenda-skip-function' which can be set in the options section
636 of custom agenda commands."
637 :group 'org-agenda-skip
638 :type 'sexp)
640 (defgroup org-agenda-daily/weekly nil
641 "Options concerning the daily/weekly agenda."
642 :tag "Org Agenda Daily/Weekly"
643 :group 'org-agenda)
644 (defgroup org-agenda-todo-list nil
645 "Options concerning the global todo list agenda view."
646 :tag "Org Agenda Todo List"
647 :group 'org-agenda)
648 (defgroup org-agenda-match-view nil
649 "Options concerning the general tags/property/todo match agenda view."
650 :tag "Org Agenda Match View"
651 :group 'org-agenda)
652 (defgroup org-agenda-search-view nil
653 "Options concerning the general tags/property/todo match agenda view."
654 :tag "Org Agenda Match View"
655 :group 'org-agenda)
657 (defvar org-agenda-archives-mode nil
658 "Non-nil means the agenda will include archived items.
659 If this is the symbol `trees', trees in the selected agenda scope
660 that are marked with the ARCHIVE tag will be included anyway. When this is
661 t, also all archive files associated with the current selection of agenda
662 files will be included.")
664 (defcustom org-agenda-restriction-lock-highlight-subtree t
665 "Non-nil means highlight the whole subtree when restriction is active.
666 Otherwise only highlight the headline. Highlighting the whole subtree is
667 useful to ensure no edits happen beyond the restricted region."
668 :group 'org-agenda
669 :type 'boolean)
671 (defcustom org-agenda-skip-comment-trees t
672 "Non-nil means skip trees that start with the COMMENT keyword.
673 When nil, these trees are also scanned by agenda commands."
674 :group 'org-agenda-skip
675 :type 'boolean)
677 (defcustom org-agenda-todo-list-sublevels t
678 "Non-nil means check also the sublevels of a TODO entry for TODO entries.
679 When nil, the sublevels of a TODO entry are not checked, resulting in
680 potentially much shorter TODO lists."
681 :group 'org-agenda-skip
682 :group 'org-agenda-todo-list
683 :type 'boolean)
685 (defcustom org-agenda-todo-ignore-with-date nil
686 "Non-nil means don't show entries with a date in the global todo list.
687 You can use this if you prefer to mark mere appointments with a TODO keyword,
688 but don't want them to show up in the TODO list.
689 When this is set, it also covers deadlines and scheduled items, the settings
690 of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
691 will be ignored.
692 See also the variable `org-agenda-tags-todo-honor-ignore-options'."
693 :group 'org-agenda-skip
694 :group 'org-agenda-todo-list
695 :type 'boolean)
697 (defcustom org-agenda-todo-ignore-timestamp nil
698 "Non-nil means don't show entries with a timestamp.
699 This applies when creating the global todo list.
700 Valid values are:
702 past Don't show entries for today or in the past.
704 future Don't show entries with a timestamp in the future.
705 The idea behind this is that if it has a future
706 timestamp, you don't want to think about it until the
707 date.
709 all Don't show any entries with a timestamp in the global todo list.
710 The idea behind this is that by setting a timestamp, you
711 have already \"taken care\" of this item.
713 This variable can also have an integer as a value. If positive (N),
714 todos with a timestamp N or more days in the future will be ignored. If
715 negative (-N), todos with a timestamp N or more days in the past will be
716 ignored. If 0, todos with a timestamp either today or in the future will
717 be ignored. For example, a value of -1 will exclude todos with a
718 timestamp in the past (yesterday or earlier), while a value of 7 will
719 exclude todos with a timestamp a week or more in the future.
721 See also `org-agenda-todo-ignore-with-date'.
722 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
723 to make his option also apply to the tags-todo list."
724 :group 'org-agenda-skip
725 :group 'org-agenda-todo-list
726 :version "24.1"
727 :type '(choice
728 (const :tag "Ignore future timestamp todos" future)
729 (const :tag "Ignore past or present timestamp todos" past)
730 (const :tag "Ignore all timestamp todos" all)
731 (const :tag "Show timestamp todos" nil)
732 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
734 (defcustom org-agenda-todo-ignore-scheduled nil
735 "Non-nil means, ignore some scheduled TODO items when making TODO list.
736 This applies when creating the global todo list.
737 Valid values are:
739 past Don't show entries scheduled today or in the past.
741 future Don't show entries scheduled in the future.
742 The idea behind this is that by scheduling it, you don't want to
743 think about it until the scheduled date.
745 all Don't show any scheduled entries in the global todo list.
746 The idea behind this is that by scheduling it, you have already
747 \"taken care\" of this item.
749 t Same as `all', for backward compatibility.
751 This variable can also have an integer as a value. See
752 `org-agenda-todo-ignore-timestamp' for more details.
754 See also `org-agenda-todo-ignore-with-date'.
755 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
756 to make his option also apply to the tags-todo list."
757 :group 'org-agenda-skip
758 :group 'org-agenda-todo-list
759 :type '(choice
760 (const :tag "Ignore future-scheduled todos" future)
761 (const :tag "Ignore past- or present-scheduled todos" past)
762 (const :tag "Ignore all scheduled todos" all)
763 (const :tag "Ignore all scheduled todos (compatibility)" t)
764 (const :tag "Show scheduled todos" nil)
765 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
767 (defcustom org-agenda-todo-ignore-deadlines nil
768 "Non-nil means ignore some deadlined TODO items when making TODO list.
769 There are different motivations for using different values, please think
770 carefully when configuring this variable.
772 This applies when creating the global todo list.
773 Valid values are:
775 near Don't show near deadline entries. A deadline is near when it is
776 closer than `org-deadline-warning-days' days. The idea behind this
777 is that such items will appear in the agenda anyway.
779 far Don't show TODO entries where a deadline has been defined, but
780 the deadline is not near. This is useful if you don't want to
781 use the todo list to figure out what to do now.
783 past Don't show entries with a deadline timestamp for today or in the past.
785 future Don't show entries with a deadline timestamp in the future, not even
786 when they become `near' ones. Use it with caution.
788 all Ignore all TODO entries that do have a deadline.
790 t Same as `near', for backward compatibility.
792 This variable can also have an integer as a value. See
793 `org-agenda-todo-ignore-timestamp' for more details.
795 See also `org-agenda-todo-ignore-with-date'.
796 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
797 to make his option also apply to the tags-todo list."
798 :group 'org-agenda-skip
799 :group 'org-agenda-todo-list
800 :type '(choice
801 (const :tag "Ignore near deadlines" near)
802 (const :tag "Ignore near deadlines (compatibility)" t)
803 (const :tag "Ignore far deadlines" far)
804 (const :tag "Ignore all TODOs with a deadlines" all)
805 (const :tag "Show all TODOs, even if they have a deadline" nil)
806 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
808 (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
809 "Time unit to use when possibly ignoring an agenda item.
811 See the docstring of various `org-agenda-todo-ignore-*' options.
812 The default is to compare time stamps using days. An item is thus
813 considered to be in the future if it is at least one day after today.
814 Non-nil means to compare time stamps using seconds. An item is then
815 considered future if it has a time value later than current time."
816 :group 'org-agenda-skip
817 :group 'org-agenda-todo-list
818 :version "24.4"
819 :package-version '(Org . "8.0")
820 :type '(choice
821 (const :tag "Compare time with days" nil)
822 (const :tag "Compare time with seconds" t)))
824 (defcustom org-agenda-tags-todo-honor-ignore-options nil
825 "Non-nil means honor todo-list ignores options also in tags-todo search.
826 The variables
827 `org-agenda-todo-ignore-with-date',
828 `org-agenda-todo-ignore-timestamp',
829 `org-agenda-todo-ignore-scheduled',
830 `org-agenda-todo-ignore-deadlines'
831 make the global TODO list skip entries that have time stamps of certain
832 kinds. If this option is set, the same options will also apply for the
833 tags-todo search, which is the general tags/property matcher
834 restricted to unfinished TODO entries only."
835 :group 'org-agenda-skip
836 :group 'org-agenda-todo-list
837 :group 'org-agenda-match-view
838 :type 'boolean)
840 (defcustom org-agenda-skip-scheduled-if-done nil
841 "Non-nil means don't show scheduled items in agenda when they are done.
842 This is relevant for the daily/weekly agenda, not for the TODO list. And
843 it applies only to the actual date of the scheduling. Warnings about
844 an item with a past scheduling dates are always turned off when the item
845 is DONE."
846 :group 'org-agenda-skip
847 :group 'org-agenda-daily/weekly
848 :type 'boolean)
850 (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
851 "Non-nil means skip scheduling line if same entry shows because of deadline.
853 In the agenda of today, an entry can show up multiple times
854 because it is both scheduled and has a nearby deadline, and maybe
855 a plain time stamp as well.
857 When this variable is nil, the entry will be shown several times.
859 When set to t, then only the deadline is shown and the fact that
860 the entry is scheduled today or was scheduled previously is not
861 shown.
863 When set to the symbol `not-today', skip scheduled previously,
864 but not scheduled today.
866 When set to the symbol `repeated-after-deadline', skip scheduled
867 items if they are repeated beyond the current deadline."
868 :group 'org-agenda-skip
869 :group 'org-agenda-daily/weekly
870 :type '(choice
871 (const :tag "Never" nil)
872 (const :tag "Always" t)
873 (const :tag "Not when scheduled today" not-today)
874 (const :tag "When repeated past deadline" repeated-after-deadline)))
876 (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
877 "Non-nil means skip timestamp line if same entry shows because of deadline.
878 In the agenda of today, an entry can show up multiple times
879 because it has both a plain timestamp and has a nearby deadline.
880 When this variable is t, then only the deadline is shown and the
881 fact that the entry has a timestamp for or including today is not
882 shown. When this variable is nil, the entry will be shown
883 several times."
884 :group 'org-agenda-skip
885 :group 'org-agenda-daily/weekly
886 :version "24.1"
887 :type '(choice
888 (const :tag "Never" nil)
889 (const :tag "Always" t)))
891 (defcustom org-agenda-skip-deadline-if-done nil
892 "Non-nil means don't show deadlines when the corresponding item is done.
893 When nil, the deadline is still shown and should give you a happy feeling.
894 This is relevant for the daily/weekly agenda. And it applied only to the
895 actually date of the deadline. Warnings about approaching and past-due
896 deadlines are always turned off when the item is DONE."
897 :group 'org-agenda-skip
898 :group 'org-agenda-daily/weekly
899 :type 'boolean)
901 (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
902 "Non-nil means skip deadline prewarning when entry is also scheduled.
903 This will apply on all days where a prewarning for the deadline would
904 be shown, but not at the day when the entry is actually due. On that day,
905 the deadline will be shown anyway.
906 This variable may be set to nil, t, the symbol `pre-scheduled',
907 or a number which will then give the number of days before the actual
908 deadline when the prewarnings should resume. The symbol `pre-scheduled'
909 eliminates the deadline prewarning only prior to the scheduled date.
910 This can be used in a workflow where the first showing of the deadline will
911 trigger you to schedule it, and then you don't want to be reminded of it
912 because you will take care of it on the day when scheduled."
913 :group 'org-agenda-skip
914 :group 'org-agenda-daily/weekly
915 :version "24.1"
916 :type '(choice
917 (const :tag "Always show prewarning" nil)
918 (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
919 (const :tag "Remove prewarning if entry is scheduled" t)
920 (integer :tag "Restart prewarning N days before deadline")))
922 (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
923 "Non-nil means skip scheduled delay when entry also has a deadline.
924 This variable may be set to nil, t, the symbol `post-deadline',
925 or a number which will then give the number of days after the actual
926 scheduled date when the delay should expire. The symbol `post-deadline'
927 eliminates the schedule delay when the date is posterior to the deadline."
928 :group 'org-agenda-skip
929 :group 'org-agenda-daily/weekly
930 :version "24.4"
931 :package-version '(Org . "8.0")
932 :type '(choice
933 (const :tag "Always honor delay" nil)
934 (const :tag "Ignore delay if posterior to the deadline" post-deadline)
935 (const :tag "Ignore delay if entry has a deadline" t)
936 (integer :tag "Honor delay up until N days after the scheduled date")))
938 (defcustom org-agenda-skip-additional-timestamps-same-entry nil
939 "When nil, multiple same-day timestamps in entry make multiple agenda lines.
940 When non-nil, after the search for timestamps has matched once in an
941 entry, the rest of the entry will not be searched."
942 :group 'org-agenda-skip
943 :type 'boolean)
945 (defcustom org-agenda-skip-timestamp-if-done nil
946 "Non-nil means don't select item by timestamp or -range if it is DONE."
947 :group 'org-agenda-skip
948 :group 'org-agenda-daily/weekly
949 :type 'boolean)
951 (defcustom org-agenda-dim-blocked-tasks t
952 "Non-nil means dim blocked tasks in the agenda display.
953 This causes some overhead during agenda construction, but if you
954 have turned on `org-enforce-todo-dependencies',
955 `org-enforce-todo-checkbox-dependencies', or any other blocking
956 mechanism, this will create useful feedback in the agenda.
958 Instead of t, this variable can also have the value `invisible'.
959 Then blocked tasks will be invisible and only become visible when
960 they become unblocked. An exemption to this behavior is when a task is
961 blocked because of unchecked checkboxes below it. Since checkboxes do
962 not show up in the agenda views, making this task invisible you remove any
963 trace from agenda views that there is something to do. Therefore, a task
964 that is blocked because of checkboxes will never be made invisible, it
965 will only be dimmed."
966 :group 'org-agenda-daily/weekly
967 :group 'org-agenda-todo-list
968 :version "24.3"
969 :type '(choice
970 (const :tag "Do not dim" nil)
971 (const :tag "Dim to a gray face" t)
972 (const :tag "Make invisible" invisible)))
974 (defcustom org-timeline-show-empty-dates 3
975 "Non-nil means `org-timeline' also shows dates without an entry.
976 When nil, only the days which actually have entries are shown.
977 When t, all days between the first and the last date are shown.
978 When an integer, show also empty dates, but if there is a gap of more than
979 N days, just insert a special line indicating the size of the gap."
980 :group 'org-agenda-skip
981 :type '(choice
982 (const :tag "None" nil)
983 (const :tag "All" t)
984 (integer :tag "at most")))
986 (defgroup org-agenda-startup nil
987 "Options concerning initial settings in the Agenda in Org Mode."
988 :tag "Org Agenda Startup"
989 :group 'org-agenda)
991 (defcustom org-agenda-menu-show-matcher t
992 "Non-nil means show the match string in the agenda dispatcher menu.
993 When nil, the matcher string is not shown, but is put into the help-echo
994 property so than moving the mouse over the command shows it.
995 Setting it to nil is good if matcher strings are very long and/or if
996 you want to use two-columns display (see `org-agenda-menu-two-columns')."
997 :group 'org-agenda
998 :version "24.1"
999 :type 'boolean)
1001 (define-obsolete-variable-alias 'org-agenda-menu-two-column 'org-agenda-menu-two-columns "24.3")
1003 (defcustom org-agenda-menu-two-columns nil
1004 "Non-nil means, use two columns to show custom commands in the dispatcher.
1005 If you use this, you probably want to set `org-agenda-menu-show-matcher'
1006 to nil."
1007 :group 'org-agenda
1008 :version "24.1"
1009 :type 'boolean)
1011 (define-obsolete-variable-alias 'org-finalize-agenda-hook 'org-agenda-finalize-hook "24.3")
1012 (defcustom org-agenda-finalize-hook nil
1013 "Hook run just before displaying an agenda buffer.
1014 The buffer is still writable when the hook is called.
1016 You can modify some of the buffer substrings but you should be
1017 extra careful not to modify the text properties of the agenda
1018 headlines as the agenda display heavily relies on them."
1019 :group 'org-agenda-startup
1020 :type 'hook)
1022 (defcustom org-agenda-mouse-1-follows-link nil
1023 "Non-nil means mouse-1 on a link will follow the link in the agenda.
1024 A longer mouse click will still set point. Does not work on XEmacs.
1025 Needs to be set before org.el is loaded."
1026 :group 'org-agenda-startup
1027 :type 'boolean)
1029 (defcustom org-agenda-start-with-follow-mode nil
1030 "The initial value of follow mode in a newly created agenda window."
1031 :group 'org-agenda-startup
1032 :type 'boolean)
1034 (defcustom org-agenda-follow-indirect nil
1035 "Non-nil means `org-agenda-follow-mode' displays only the
1036 current item's tree, in an indirect buffer."
1037 :group 'org-agenda
1038 :version "24.1"
1039 :type 'boolean)
1041 (defcustom org-agenda-show-outline-path t
1042 "Non-nil means show outline path in echo area after line motion."
1043 :group 'org-agenda-startup
1044 :type 'boolean)
1046 (defcustom org-agenda-start-with-entry-text-mode nil
1047 "The initial value of entry-text-mode in a newly created agenda window."
1048 :group 'org-agenda-startup
1049 :type 'boolean)
1051 (defcustom org-agenda-entry-text-maxlines 5
1052 "Number of text lines to be added when `E' is pressed in the agenda.
1054 Note that this variable only used during agenda display. Add add entry text
1055 when exporting the agenda, configure the variable
1056 `org-agenda-add-entry-ext-maxlines'."
1057 :group 'org-agenda
1058 :type 'integer)
1060 (defcustom org-agenda-entry-text-exclude-regexps nil
1061 "List of regular expressions to clean up entry text.
1062 The complete matches of all regular expressions in this list will be
1063 removed from entry text before it is shown in the agenda."
1064 :group 'org-agenda
1065 :type '(repeat (regexp)))
1067 (defcustom org-agenda-entry-text-leaders " > "
1068 "Text prepended to the entry text in agenda buffers."
1069 :version "24.4"
1070 :package-version '(Org . "8.0")
1071 :group 'org-agenda
1072 :type 'string)
1074 (defvar org-agenda-entry-text-cleanup-hook nil
1075 "Hook that is run after basic cleanup of entry text to be shown in agenda.
1076 This cleanup is done in a temporary buffer, so the function may inspect and
1077 change the entire buffer.
1078 Some default stuff like drawers and scheduling/deadline dates will already
1079 have been removed when this is called, as will any matches for regular
1080 expressions listed in `org-agenda-entry-text-exclude-regexps'.")
1082 (defvar org-agenda-include-inactive-timestamps nil
1083 "Non-nil means include inactive time stamps in agenda and timeline.
1084 Dynamically scoped.")
1086 (defgroup org-agenda-windows nil
1087 "Options concerning the windows used by the Agenda in Org Mode."
1088 :tag "Org Agenda Windows"
1089 :group 'org-agenda)
1091 (defcustom org-agenda-window-setup 'reorganize-frame
1092 "How the agenda buffer should be displayed.
1093 Possible values for this option are:
1095 current-window Show agenda in the current window, keeping all other windows.
1096 other-window Use `switch-to-buffer-other-window' to display agenda.
1097 reorganize-frame Show only two windows on the current frame, the current
1098 window and the agenda.
1099 other-frame Use `switch-to-buffer-other-frame' to display agenda.
1100 Also, when exiting the agenda, kill that frame.
1101 See also the variable `org-agenda-restore-windows-after-quit'."
1102 :group 'org-agenda-windows
1103 :type '(choice
1104 (const current-window)
1105 (const other-frame)
1106 (const other-window)
1107 (const reorganize-frame)))
1109 (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
1110 "The min and max height of the agenda window as a fraction of frame height.
1111 The value of the variable is a cons cell with two numbers between 0 and 1.
1112 It only matters if `org-agenda-window-setup' is `reorganize-frame'."
1113 :group 'org-agenda-windows
1114 :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
1116 (defcustom org-agenda-restore-windows-after-quit nil
1117 "Non-nil means restore window configuration upon exiting agenda.
1118 Before the window configuration is changed for displaying the agenda,
1119 the current status is recorded. When the agenda is exited with
1120 `q' or `x' and this option is set, the old state is restored. If
1121 `org-agenda-window-setup' is `other-frame', the value of this
1122 option will be ignored."
1123 :group 'org-agenda-windows
1124 :type 'boolean)
1126 (defcustom org-agenda-ndays nil
1127 "Number of days to include in overview display.
1128 Should be 1 or 7.
1129 Obsolete, see `org-agenda-span'."
1130 :group 'org-agenda-daily/weekly
1131 :type '(choice (const nil)
1132 (integer)))
1134 (make-obsolete-variable 'org-agenda-ndays 'org-agenda-span "24.1")
1136 (defcustom org-agenda-span 'week
1137 "Number of days to include in overview display.
1138 Can be day, week, month, year, or any number of days.
1139 Custom commands can set this variable in the options section."
1140 :group 'org-agenda-daily/weekly
1141 :type '(choice (const :tag "Day" day)
1142 (const :tag "Week" week)
1143 (const :tag "Fortnight" fortnight)
1144 (const :tag "Month" month)
1145 (const :tag "Year" year)
1146 (integer :tag "Custom")))
1148 (defcustom org-agenda-start-on-weekday 1
1149 "Non-nil means start the overview always on the specified weekday.
1150 0 denotes Sunday, 1 denotes Monday, etc.
1151 When nil, always start on the current day.
1152 Custom commands can set this variable in the options section."
1153 :group 'org-agenda-daily/weekly
1154 :type '(choice (const :tag "Today" nil)
1155 (integer :tag "Weekday No.")))
1157 (defcustom org-agenda-show-all-dates t
1158 "Non-nil means `org-agenda' shows every day in the selected range.
1159 When nil, only the days which actually have entries are shown."
1160 :group 'org-agenda-daily/weekly
1161 :type 'boolean)
1163 (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
1164 "Format string for displaying dates in the agenda.
1165 Used by the daily/weekly agenda and by the timeline. This should be
1166 a format string understood by `format-time-string', or a function returning
1167 the formatted date as a string. The function must take a single argument,
1168 a calendar-style date list like (month day year)."
1169 :group 'org-agenda-daily/weekly
1170 :type '(choice
1171 (string :tag "Format string")
1172 (function :tag "Function")))
1174 (defun org-agenda-format-date-aligned (date)
1175 "Format a DATE string for display in the daily/weekly agenda, or timeline.
1176 This function makes sure that dates are aligned for easy reading."
1177 (require 'cal-iso)
1178 (let* ((dayname (calendar-day-name date))
1179 (day (cadr date))
1180 (day-of-week (calendar-day-of-week date))
1181 (month (car date))
1182 (monthname (calendar-month-name month))
1183 (year (nth 2 date))
1184 (iso-week (org-days-to-iso-week
1185 (calendar-absolute-from-gregorian date)))
1186 (weekyear (cond ((and (= month 1) (>= iso-week 52))
1187 (1- year))
1188 ((and (= month 12) (<= iso-week 1))
1189 (1+ year))
1190 (t year)))
1191 (weekstring (if (= day-of-week 1)
1192 (format " W%02d" iso-week)
1193 "")))
1194 (format "%-10s %2d %s %4d%s"
1195 dayname day monthname year weekstring)))
1197 (defcustom org-agenda-time-leading-zero nil
1198 "Non-nil means use leading zero for military times in agenda.
1199 For example, 9:30am would become 09:30 rather than 9:30."
1200 :group 'org-agenda-daily/weekly
1201 :version "24.1"
1202 :type 'boolean)
1204 (defcustom org-agenda-timegrid-use-ampm nil
1205 "When set, show AM/PM style timestamps on the timegrid."
1206 :group 'org-agenda
1207 :version "24.1"
1208 :type 'boolean)
1210 (defun org-agenda-time-of-day-to-ampm (time)
1211 "Convert TIME of a string like '13:45' to an AM/PM style time string."
1212 (let* ((hour-number (string-to-number (substring time 0 -3)))
1213 (minute (substring time -2))
1214 (ampm "am"))
1215 (cond
1216 ((equal hour-number 12)
1217 (setq ampm "pm"))
1218 ((> hour-number 12)
1219 (setq ampm "pm")
1220 (setq hour-number (- hour-number 12))))
1221 (concat
1222 (if org-agenda-time-leading-zero
1223 (format "%02d" hour-number)
1224 (format "%02s" (number-to-string hour-number)))
1225 ":" minute ampm)))
1227 (defun org-agenda-time-of-day-to-ampm-maybe (time)
1228 "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
1229 (if org-agenda-timegrid-use-ampm
1230 (org-agenda-time-of-day-to-ampm time)
1231 time))
1233 (defcustom org-agenda-weekend-days '(6 0)
1234 "Which days are weekend?
1235 These days get the special face `org-agenda-date-weekend' in the agenda
1236 and timeline buffers."
1237 :group 'org-agenda-daily/weekly
1238 :type '(set :greedy t
1239 (const :tag "Monday" 1)
1240 (const :tag "Tuesday" 2)
1241 (const :tag "Wednesday" 3)
1242 (const :tag "Thursday" 4)
1243 (const :tag "Friday" 5)
1244 (const :tag "Saturday" 6)
1245 (const :tag "Sunday" 0)))
1247 (defcustom org-agenda-move-date-from-past-immediately-to-today t
1248 "Non-nil means jump to today when moving a past date forward in time.
1249 When using S-right in the agenda to move a a date forward, and the date
1250 stamp currently points to the past, the first key press will move it
1251 to today. WHen nil, just move one day forward even if the date stays
1252 in the past."
1253 :group 'org-agenda-daily/weekly
1254 :version "24.1"
1255 :type 'boolean)
1257 (defcustom org-agenda-include-diary nil
1258 "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
1259 Custom commands can set this variable in the options section."
1260 :group 'org-agenda-daily/weekly
1261 :type 'boolean)
1263 (defcustom org-agenda-include-deadlines t
1264 "If non-nil, include entries within their deadline warning period.
1265 Custom commands can set this variable in the options section."
1266 :group 'org-agenda-daily/weekly
1267 :version "24.1"
1268 :type 'boolean)
1270 (defcustom org-agenda-repeating-timestamp-show-all t
1271 "Non-nil means show all occurrences of a repeating stamp in the agenda.
1272 When set to a list of strings, only show occurrences of repeating
1273 stamps for these TODO keywords. When nil, only one occurrence is
1274 shown, either today or the nearest into the future."
1275 :group 'org-agenda-daily/weekly
1276 :type '(choice
1277 (const :tag "Show repeating stamps" t)
1278 (repeat :tag "Show repeating stamps for these TODO keywords"
1279 (string :tag "TODO Keyword"))
1280 (const :tag "Don't show repeating stamps" nil)))
1282 (defcustom org-scheduled-past-days 10000
1283 "Number of days to continue listing scheduled items not marked DONE.
1284 When an item is scheduled on a date, it shows up in the agenda on this
1285 day and will be listed until it is marked done for the number of days
1286 given here."
1287 :group 'org-agenda-daily/weekly
1288 :type 'integer)
1290 (defcustom org-agenda-log-mode-items '(closed clock)
1291 "List of items that should be shown in agenda log mode.
1292 This list may contain the following symbols:
1294 closed Show entries that have been closed on that day.
1295 clock Show entries that have received clocked time on that day.
1296 state Show all logged state changes.
1297 Note that instead of changing this variable, you can also press `C-u l' in
1298 the agenda to display all available LOG items temporarily."
1299 :group 'org-agenda-daily/weekly
1300 :type '(set :greedy t (const closed) (const clock) (const state)))
1302 (defcustom org-agenda-clock-consistency-checks
1303 '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
1304 :gap-ok-around ("4:00")
1305 :default-face ((:background "DarkRed") (:foreground "white"))
1306 :overlap-face nil :gap-face nil :no-end-time-face nil
1307 :long-face nil :short-face nil)
1308 "This is a property list, with the following keys:
1310 :max-duration Mark clocking chunks that are longer than this time.
1311 This is a time string like \"HH:MM\", or the number
1312 of minutes as an integer.
1314 :min-duration Mark clocking chunks that are shorter that this.
1315 This is a time string like \"HH:MM\", or the number
1316 of minutes as an integer.
1318 :max-gap Mark gaps between clocking chunks that are longer than
1319 this duration. A number of minutes, or a string
1320 like \"HH:MM\".
1322 :gap-ok-around List of times during the day which are usually not working
1323 times. When a gap is detected, but the gap contains any
1324 of these times, the gap is *not* reported. For example,
1325 if this is (\"4:00\" \"13:00\") then gaps that contain
1326 4:00 in the morning (i.e. the night) and 13:00
1327 (i.e. a typical lunch time) do not cause a warning.
1328 You should have at least one time during the night in this
1329 list, or otherwise the first task each morning will trigger
1330 a warning because it follows a long gap.
1332 Furthermore, the following properties can be used to define faces for
1333 issue display.
1335 :default-face the default face, if the specific face is undefined
1336 :overlap-face face for overlapping clocks
1337 :gap-face face for gaps between clocks
1338 :no-end-time-face face for incomplete clocks
1339 :long-face face for clock intervals that are too long
1340 :short-face face for clock intervals that are too short"
1341 :group 'org-agenda-daily/weekly
1342 :group 'org-clock
1343 :version "24.1"
1344 :type 'plist)
1346 (defcustom org-agenda-log-mode-add-notes t
1347 "Non-nil means add first line of notes to log entries in agenda views.
1348 If a log item like a state change or a clock entry is associated with
1349 notes, the first line of these notes will be added to the entry in the
1350 agenda display."
1351 :group 'org-agenda-daily/weekly
1352 :type 'boolean)
1354 (defcustom org-agenda-start-with-log-mode nil
1355 "The initial value of log-mode in a newly created agenda window.
1356 See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
1357 explanations on the possible values."
1358 :group 'org-agenda-startup
1359 :group 'org-agenda-daily/weekly
1360 :type '(choice (const :tag "Don't show log items" nil)
1361 (const :tag "Show only log items" 'only)
1362 (const :tag "Show all possible log items" 'clockcheck)
1363 (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
1364 (choice (const :tag "Show closed log items" 'closed)
1365 (const :tag "Show clocked log items" 'clock)
1366 (const :tag "Show all logged state changes" 'state)))))
1368 (defcustom org-agenda-start-with-clockreport-mode nil
1369 "The initial value of clockreport-mode in a newly created agenda window."
1370 :group 'org-agenda-startup
1371 :group 'org-agenda-daily/weekly
1372 :type 'boolean)
1374 (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
1375 "Property list with parameters for the clocktable in clockreport mode.
1376 This is the display mode that shows a clock table in the daily/weekly
1377 agenda, the properties for this dynamic block can be set here.
1378 The usual clocktable parameters are allowed here, but you cannot set
1379 the properties :name, :tstart, :tend, :block, and :scope - these will
1380 be overwritten to make sure the content accurately reflects the
1381 current display in the agenda."
1382 :group 'org-agenda-daily/weekly
1383 :type 'plist)
1385 (defcustom org-agenda-search-view-always-boolean nil
1386 "Non-nil means the search string is interpreted as individual parts.
1388 The search string for search view can either be interpreted as a phrase,
1389 or as a list of snippets that define a boolean search for a number of
1390 strings.
1392 When this is non-nil, the string will be split on whitespace, and each
1393 snippet will be searched individually, and all must match in order to
1394 select an entry. A snippet is then a single string of non-white
1395 characters, or a string in double quotes, or a regexp in {} braces.
1396 If a snippet is preceded by \"-\", the snippet must *not* match.
1397 \"+\" is syntactic sugar for positive selection. Each snippet may
1398 be found as a full word or a partial word, but see the variable
1399 `org-agenda-search-view-force-full-words'.
1401 When this is nil, search will look for the entire search phrase as one,
1402 with each space character matching any amount of whitespace, including
1403 line breaks.
1405 Even when this is nil, you can still switch to Boolean search dynamically
1406 by preceding the first snippet with \"+\" or \"-\". If the first snippet
1407 is a regexp marked with braces like \"{abc}\", this will also switch to
1408 boolean search."
1409 :group 'org-agenda-search-view
1410 :version "24.1"
1411 :type 'boolean)
1413 (org-defvaralias 'org-agenda-search-view-search-words-only
1414 'org-agenda-search-view-always-boolean)
1416 (defcustom org-agenda-search-view-force-full-words nil
1417 "Non-nil means, search words must be matches as complete words.
1418 When nil, they may also match part of a word."
1419 :group 'org-agenda-search-view
1420 :version "24.1"
1421 :type 'boolean)
1423 (defcustom org-agenda-search-view-max-outline-level 0
1424 "Maximum outline level to display in search view.
1425 E.g. when this is set to 1, the search view will only
1426 show headlines of level 1. When set to 0, the default
1427 value, don't limit agenda view by outline level."
1428 :group 'org-agenda-search-view
1429 :version "24.4"
1430 :package-version '(Org . "8.3")
1431 :type 'integer)
1433 (defgroup org-agenda-time-grid nil
1434 "Options concerning the time grid in the Org-mode Agenda."
1435 :tag "Org Agenda Time Grid"
1436 :group 'org-agenda)
1438 (defcustom org-agenda-search-headline-for-time t
1439 "Non-nil means search headline for a time-of-day.
1440 If the headline contains a time-of-day in one format or another, it will
1441 be used to sort the entry into the time sequence of items for a day.
1442 Some people have time stamps in the headline that refer to the creation
1443 time or so, and then this produces an unwanted side effect. If this is
1444 the case for your, use this variable to turn off searching the headline
1445 for a time."
1446 :group 'org-agenda-time-grid
1447 :type 'boolean)
1449 (defcustom org-agenda-use-time-grid t
1450 "Non-nil means show a time grid in the agenda schedule.
1451 A time grid is a set of lines for specific times (like every two hours between
1452 8:00 and 20:00). The items scheduled for a day at specific times are
1453 sorted in between these lines.
1454 For details about when the grid will be shown, and what it will look like, see
1455 the variable `org-agenda-time-grid'."
1456 :group 'org-agenda-time-grid
1457 :type 'boolean)
1459 (defcustom org-agenda-time-grid
1460 '((daily today require-timed)
1461 "----------------"
1462 (800 1000 1200 1400 1600 1800 2000))
1464 "The settings for time grid for agenda display.
1465 This is a list of three items. The first item is again a list. It contains
1466 symbols specifying conditions when the grid should be displayed:
1468 daily if the agenda shows a single day
1469 weekly if the agenda shows an entire week
1470 today show grid on current date, independent of daily/weekly display
1471 require-timed show grid only if at least one item has a time specification
1473 The second item is a string which will be placed behind the grid time.
1475 The third item is a list of integers, indicating the times that should have
1476 a grid line."
1477 :group 'org-agenda-time-grid
1478 :type
1479 '(list
1480 (set :greedy t :tag "Grid Display Options"
1481 (const :tag "Show grid in single day agenda display" daily)
1482 (const :tag "Show grid in weekly agenda display" weekly)
1483 (const :tag "Always show grid for today" today)
1484 (const :tag "Show grid only if any timed entries are present"
1485 require-timed)
1486 (const :tag "Skip grid times already present in an entry"
1487 remove-match))
1488 (string :tag "Grid String")
1489 (repeat :tag "Grid Times" (integer :tag "Time"))))
1491 (defcustom org-agenda-show-current-time-in-grid t
1492 "Non-nil means show the current time in the time grid."
1493 :group 'org-agenda-time-grid
1494 :version "24.1"
1495 :type 'boolean)
1497 (defcustom org-agenda-current-time-string
1498 "now - - - - - - - - - - - - - - - - - - - - - - - - -"
1499 "The string for the current time marker in the agenda."
1500 :group 'org-agenda-time-grid
1501 :version "24.1"
1502 :type 'string)
1504 (defgroup org-agenda-sorting nil
1505 "Options concerning sorting in the Org-mode Agenda."
1506 :tag "Org Agenda Sorting"
1507 :group 'org-agenda)
1509 (defcustom org-agenda-sorting-strategy
1510 '((agenda habit-down time-up priority-down category-keep)
1511 (todo priority-down category-keep)
1512 (tags priority-down category-keep)
1513 (search category-keep))
1514 "Sorting structure for the agenda items of a single day.
1515 This is a list of symbols which will be used in sequence to determine
1516 if an entry should be listed before another entry. The following
1517 symbols are recognized:
1519 time-up Put entries with time-of-day indications first, early first
1520 time-down Put entries with time-of-day indications first, late first
1521 timestamp-up Sort by any timestamp, early first
1522 timestamp-down Sort by any timestamp, late first
1523 scheduled-up Sort by scheduled timestamp, early first
1524 scheduled-down Sort by scheduled timestamp, late first
1525 deadline-up Sort by deadline timestamp, early first
1526 deadline-down Sort by deadline timestamp, late first
1527 ts-up Sort by active timestamp, early first
1528 ts-down Sort by active timestamp, late first
1529 tsia-up Sort by inactive timestamp, early first
1530 tsia-down Sort by inactive timestamp, late first
1531 category-keep Keep the default order of categories, corresponding to the
1532 sequence in `org-agenda-files'.
1533 category-up Sort alphabetically by category, A-Z.
1534 category-down Sort alphabetically by category, Z-A.
1535 tag-up Sort alphabetically by last tag, A-Z.
1536 tag-down Sort alphabetically by last tag, Z-A.
1537 priority-up Sort numerically by priority, high priority last.
1538 priority-down Sort numerically by priority, high priority first.
1539 todo-state-up Sort by todo state, tasks that are done last.
1540 todo-state-down Sort by todo state, tasks that are done first.
1541 effort-up Sort numerically by estimated effort, high effort last.
1542 effort-down Sort numerically by estimated effort, high effort first.
1543 user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
1544 user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
1545 habit-up Put entries that are habits first
1546 habit-down Put entries that are habits last
1547 alpha-up Sort headlines alphabetically
1548 alpha-down Sort headlines alphabetically, reversed
1550 The different possibilities will be tried in sequence, and testing stops
1551 if one comparison returns a \"not-equal\". For example, the default
1552 '(time-up category-keep priority-down)
1553 means: Pull out all entries having a specified time of day and sort them,
1554 in order to make a time schedule for the current day the first thing in the
1555 agenda listing for the day. Of the entries without a time indication, keep
1556 the grouped in categories, don't sort the categories, but keep them in
1557 the sequence given in `org-agenda-files'. Within each category sort by
1558 priority.
1560 Leaving out `category-keep' would mean that items will be sorted across
1561 categories by priority.
1563 Instead of a single list, this can also be a set of list for specific
1564 contents, with a context symbol in the car of the list, any of
1565 `agenda', `todo', `tags', `search' for the corresponding agenda views.
1567 Custom commands can bind this variable in the options section."
1568 :group 'org-agenda-sorting
1569 :type `(choice
1570 (repeat :tag "General" ,org-sorting-choice)
1571 (list :tag "Individually"
1572 (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
1573 (repeat ,org-sorting-choice))
1574 (cons (const :tag "Strategy for TODO lists" todo)
1575 (repeat ,org-sorting-choice))
1576 (cons (const :tag "Strategy for Tags matches" tags)
1577 (repeat ,org-sorting-choice))
1578 (cons (const :tag "Strategy for search matches" search)
1579 (repeat ,org-sorting-choice)))))
1581 (defcustom org-agenda-cmp-user-defined nil
1582 "A function to define the comparison `user-defined'.
1583 This function must receive two arguments, agenda entry a and b.
1584 If a>b, return +1. If a<b, return -1. If they are equal as seen by
1585 the user comparison, return nil.
1586 When this is defined, you can make `user-defined-up' and `user-defined-down'
1587 part of an agenda sorting strategy."
1588 :group 'org-agenda-sorting
1589 :type 'symbol)
1591 (defcustom org-sort-agenda-notime-is-late t
1592 "Non-nil means items without time are considered late.
1593 This is only relevant for sorting. When t, items which have no explicit
1594 time like 15:30 will be considered as 99:01, i.e. later than any items which
1595 do have a time. When nil, the default time is before 0:00. You can use this
1596 option to decide if the schedule for today should come before or after timeless
1597 agenda entries."
1598 :group 'org-agenda-sorting
1599 :type 'boolean)
1601 (defcustom org-sort-agenda-noeffort-is-high t
1602 "Non-nil means items without effort estimate are sorted as high effort.
1603 This also applies when filtering an agenda view with respect to the
1604 < or > effort operator. Then, tasks with no effort defined will be treated
1605 as tasks with high effort.
1606 When nil, such items are sorted as 0 minutes effort."
1607 :group 'org-agenda-sorting
1608 :type 'boolean)
1610 (defgroup org-agenda-line-format nil
1611 "Options concerning the entry prefix in the Org-mode agenda display."
1612 :tag "Org Agenda Line Format"
1613 :group 'org-agenda)
1615 (defcustom org-agenda-prefix-format
1616 '((agenda . " %i %-12:c%?-12t% s")
1617 (timeline . " % s")
1618 (todo . " %i %-12:c")
1619 (tags . " %i %-12:c")
1620 (search . " %i %-12:c"))
1621 "Format specifications for the prefix of items in the agenda views.
1622 An alist with five entries, each for the different agenda types. The
1623 keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
1624 The values are format strings.
1626 This format works similar to a printf format, with the following meaning:
1628 %c the category of the item, \"Diary\" for entries from the diary,
1629 or as given by the CATEGORY keyword or derived from the file name
1630 %e the effort required by the item
1631 %l the level of the item (insert X space(s) if item is of level X)
1632 %i the icon category of the item, see `org-agenda-category-icon-alist'
1633 %T the last tag of the item (ignore inherited tags, which come first)
1634 %t the HH:MM time-of-day specification if one applies to the entry
1635 %s Scheduling/Deadline information, a short string
1636 %b show breadcrumbs, i.e., the names of the higher levels
1637 %(expression) Eval EXPRESSION and replace the control string
1638 by the result
1640 All specifiers work basically like the standard `%s' of printf, but may
1641 contain two additional characters: a question mark just after the `%'
1642 and a whitespace/punctuation character just before the final letter.
1644 If the first character after `%' is a question mark, the entire field
1645 will only be included if the corresponding value applies to the current
1646 entry. This is useful for fields which should have fixed width when
1647 present, but zero width when absent. For example, \"%?-12t\" will
1648 result in a 12 character time field if a time of the day is specified,
1649 but will completely disappear in entries which do not contain a time.
1651 If there is punctuation or whitespace character just before the
1652 final format letter, this character will be appended to the field
1653 value if the value is not empty. For example, the format
1654 \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
1655 the category is empty, no additional colon is inserted.
1657 The default value for the agenda sublist is \" %-12:c%?-12t% s\",
1658 which means:
1660 - Indent the line with two space characters
1661 - Give the category a 12 chars wide field, padded with whitespace on
1662 the right (because of `-'). Append a colon if there is a category
1663 (because of `:').
1664 - If there is a time-of-day, put it into a 12 chars wide field. If no
1665 time, don't put in an empty field, just skip it (because of '?').
1666 - Finally, put the scheduling information.
1668 See also the variables `org-agenda-remove-times-when-in-prefix' and
1669 `org-agenda-remove-tags'.
1671 Custom commands can set this variable in the options section."
1672 :type '(choice
1673 (string :tag "General format")
1674 (list :greedy t :tag "View dependent"
1675 (cons (const agenda) (string :tag "Format"))
1676 (cons (const timeline) (string :tag "Format"))
1677 (cons (const todo) (string :tag "Format"))
1678 (cons (const tags) (string :tag "Format"))
1679 (cons (const search) (string :tag "Format"))))
1680 :group 'org-agenda-line-format)
1682 (defvar org-prefix-format-compiled nil
1683 "The compiled prefix format and associated variables.
1684 This is a list where first element is a list of variable bindings, and second
1685 element is the compiled format expression. See the variable
1686 `org-agenda-prefix-format'.")
1688 (defcustom org-agenda-todo-keyword-format "%-1s"
1689 "Format for the TODO keyword in agenda lines.
1690 Set this to something like \"%-12s\" if you want all TODO keywords
1691 to occupy a fixed space in the agenda display."
1692 :group 'org-agenda-line-format
1693 :type 'string)
1695 (defcustom org-agenda-diary-sexp-prefix nil
1696 "A regexp that matches part of a diary sexp entry
1697 which should be treated as scheduling/deadline information in
1698 `org-agenda'.
1700 For example, you can use this to extract the `diary-remind-message' from
1701 `diary-remind' entries."
1702 :group 'org-agenda-line-format
1703 :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
1705 (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
1706 "Text preceding timerange entries in the agenda view.
1707 This is a list with two strings. The first applies when the range
1708 is entirely on one day. The second applies if the range spans several days.
1709 The strings may have two \"%d\" format specifiers which will be filled
1710 with the sequence number of the days, and the total number of days in the
1711 range, respectively."
1712 :group 'org-agenda-line-format
1713 :type '(list
1714 (string :tag "Deadline today ")
1715 (choice :tag "Deadline relative"
1716 (string :tag "Format string")
1717 (function))))
1719 (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
1720 "Text preceding scheduled items in the agenda view.
1721 This is a list with two strings. The first applies when the item is
1722 scheduled on the current day. The second applies when it has been scheduled
1723 previously, it may contain a %d indicating that this is the nth time that
1724 this item is scheduled, due to automatic rescheduling of unfinished items
1725 for the following day. So this number is one larger than the number of days
1726 that passed since this item was scheduled first."
1727 :group 'org-agenda-line-format
1728 :version "24.4"
1729 :package-version '(Org . "8.0")
1730 :type '(list
1731 (string :tag "Scheduled today ")
1732 (string :tag "Scheduled previously")))
1734 (defcustom org-agenda-inactive-leader "["
1735 "Text preceding item pulled into the agenda by inactive time stamps.
1736 These entries are added to the agenda when pressing \"[\"."
1737 :group 'org-agenda-line-format
1738 :version "24.1"
1739 :type 'string)
1741 (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
1742 "Text preceding deadline items in the agenda view.
1743 This is a list with three strings. The first applies when the item has its
1744 deadline on the current day. The second applies when the deadline is in the
1745 future, the third one when it is in the past. The strings may contain %d
1746 to capture the number of days."
1747 :group 'org-agenda-line-format
1748 :version "24.4"
1749 :package-version '(Org . "8.0")
1750 :type '(list
1751 (string :tag "Deadline today ")
1752 (string :tag "Deadline in the future ")
1753 (string :tag "Deadline in the past ")))
1755 (defcustom org-agenda-remove-times-when-in-prefix t
1756 "Non-nil means remove duplicate time specifications in agenda items.
1757 When the format `org-agenda-prefix-format' contains a `%t' specifier, a
1758 time-of-day specification in a headline or diary entry is extracted and
1759 placed into the prefix. If this option is non-nil, the original specification
1760 \(a timestamp or -range, or just a plain time(range) specification like
1761 11:30-4pm) will be removed for agenda display. This makes the agenda less
1762 cluttered.
1763 The option can be t or nil. It may also be the symbol `beg', indicating
1764 that the time should only be removed when it is located at the beginning of
1765 the headline/diary entry."
1766 :group 'org-agenda-line-format
1767 :type '(choice
1768 (const :tag "Always" t)
1769 (const :tag "Never" nil)
1770 (const :tag "When at beginning of entry" beg)))
1772 (defcustom org-agenda-remove-timeranges-from-blocks nil
1773 "Non-nil means remove time ranges specifications in agenda
1774 items that span on several days."
1775 :group 'org-agenda-line-format
1776 :version "24.1"
1777 :type 'boolean)
1779 (defcustom org-agenda-default-appointment-duration nil
1780 "Default duration for appointments that only have a starting time.
1781 When nil, no duration is specified in such cases.
1782 When non-nil, this must be the number of minutes, e.g. 60 for one hour."
1783 :group 'org-agenda-line-format
1784 :type '(choice
1785 (integer :tag "Minutes")
1786 (const :tag "No default duration")))
1788 (defcustom org-agenda-show-inherited-tags t
1789 "Non-nil means show inherited tags in each agenda line.
1791 When this option is set to 'always, it take precedences over
1792 `org-agenda-use-tag-inheritance' and inherited tags are shown
1793 in every agenda.
1795 When this option is set to t (the default), inherited tags are
1796 shown when they are available, i.e. when the value of
1797 `org-agenda-use-tag-inheritance' has been taken into account.
1799 This can be set to a list of agenda types in which the agenda
1800 must display the inherited tags. Available types are 'todo,
1801 'agenda, 'search and 'timeline.
1803 When set to nil, never show inherited tags in agenda lines."
1804 :group 'org-agenda-line-format
1805 :group 'org-agenda
1806 :version "24.3"
1807 :type '(choice
1808 (const :tag "Show inherited tags when available" t)
1809 (const :tag "Always show inherited tags" 'always)
1810 (repeat :tag "Show inherited tags only in selected agenda types"
1811 (symbol :tag "Agenda type"))))
1813 (defcustom org-agenda-use-tag-inheritance '(todo search timeline agenda)
1814 "List of agenda view types where to use tag inheritance.
1816 In tags/tags-todo/tags-tree agenda views, tag inheritance is
1817 controlled by `org-use-tag-inheritance'. In other agenda types,
1818 `org-use-tag-inheritance' is not used for the selection of the
1819 agenda entries. Still, you may want the agenda to be aware of
1820 the inherited tags anyway, e.g. for later tag filtering.
1822 Allowed value are 'todo, 'search, 'timeline and 'agenda.
1824 This variable has no effect if `org-agenda-show-inherited-tags'
1825 is set to 'always. In that case, the agenda is aware of those
1826 tags.
1828 The default value sets tags in every agenda type. Setting this
1829 option to nil will speed up non-tags agenda view a lot."
1830 :group 'org-agenda
1831 :version "24.3"
1832 :type '(choice
1833 (const :tag "Use tag inheritance in all agenda types" t)
1834 (repeat :tag "Use tag inheritance in selected agenda types"
1835 (symbol :tag "Agenda type"))))
1837 (defcustom org-agenda-hide-tags-regexp nil
1838 "Regular expression used to filter away specific tags in agenda views.
1839 This means that these tags will be present, but not be shown in the agenda
1840 line. Secondary filtering will still work on the hidden tags.
1841 Nil means don't hide any tags."
1842 :group 'org-agenda-line-format
1843 :type '(choice
1844 (const :tag "Hide none" nil)
1845 (string :tag "Regexp ")))
1847 (defcustom org-agenda-remove-tags nil
1848 "Non-nil means remove the tags from the headline copy in the agenda.
1849 When this is the symbol `prefix', only remove tags when
1850 `org-agenda-prefix-format' contains a `%T' specifier."
1851 :group 'org-agenda-line-format
1852 :type '(choice
1853 (const :tag "Always" t)
1854 (const :tag "Never" nil)
1855 (const :tag "When prefix format contains %T" prefix)))
1857 (org-defvaralias 'org-agenda-remove-tags-when-in-prefix
1858 'org-agenda-remove-tags)
1860 (defcustom org-agenda-tags-column (if (featurep 'xemacs) -79 -80)
1861 "Shift tags in agenda items to this column.
1862 If this number is positive, it specifies the column. If it is negative,
1863 it means that the tags should be flushright to that column. For example,
1864 -80 works well for a normal 80 character screen."
1865 :group 'org-agenda-line-format
1866 :type 'integer)
1868 (org-defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
1870 (defcustom org-agenda-fontify-priorities 'cookies
1871 "Non-nil means highlight low and high priorities in agenda.
1872 When t, the highest priority entries are bold, lowest priority italic.
1873 However, settings in `org-priority-faces' will overrule these faces.
1874 When this variable is the symbol `cookies', only fontify the
1875 cookies, not the entire task.
1876 This may also be an association list of priority faces, whose
1877 keys are the character values of `org-highest-priority',
1878 `org-default-priority', and `org-lowest-priority' (the default values
1879 are ?A, ?B, and ?C, respectively). The face may be a named face, a
1880 color as a string, or a list like `(:background \"Red\")'.
1881 If it is a color, the variable `org-faces-easy-properties'
1882 determines if it is a foreground or a background color."
1883 :group 'org-agenda-line-format
1884 :type '(choice
1885 (const :tag "Never" nil)
1886 (const :tag "Defaults" t)
1887 (const :tag "Cookies only" cookies)
1888 (repeat :tag "Specify"
1889 (list (character :tag "Priority" :value ?A)
1890 (choice :tag "Face "
1891 (string :tag "Color")
1892 (sexp :tag "Face"))))))
1894 (defcustom org-agenda-day-face-function nil
1895 "Function called to determine what face should be used to display a day.
1896 The only argument passed to that function is the day. It should
1897 returns a face, or nil if does not want to specify a face and let
1898 the normal rules apply."
1899 :group 'org-agenda-line-format
1900 :version "24.1"
1901 :type '(choice (const nil) (function)))
1903 (defcustom org-agenda-category-icon-alist nil
1904 "Alist of category icon to be displayed in agenda views.
1906 Each entry should have the following format:
1908 (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
1910 Where CATEGORY-REGEXP is a regexp matching the categories where
1911 the icon should be displayed.
1912 FILE-OR-DATA either a file path or a string containing image data.
1914 The other fields can be omitted safely if not needed:
1915 TYPE indicates the image type.
1916 DATA-P is a boolean indicating whether the FILE-OR-DATA string is
1917 image data.
1918 PROPS are additional image attributes to assign to the image,
1919 like, e.g. `:ascent center'.
1921 (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
1923 If you want to set the display properties yourself, just put a
1924 list as second element:
1926 (CATEGORY-REGEXP (MY PROPERTY LIST))
1928 For example, to display a 16px horizontal space for Emacs
1929 category, you can use:
1931 (\"Emacs\" '(space . (:width (16))))"
1932 :group 'org-agenda-line-format
1933 :version "24.1"
1934 :type '(alist :key-type (string :tag "Regexp matching category")
1935 :value-type (choice (list :tag "Icon"
1936 (string :tag "File or data")
1937 (symbol :tag "Type")
1938 (boolean :tag "Data?")
1939 (repeat :tag "Extra image properties" :inline t symbol))
1940 (list :tag "Display properties" sexp))))
1942 (defgroup org-agenda-column-view nil
1943 "Options concerning column view in the agenda."
1944 :tag "Org Agenda Column View"
1945 :group 'org-agenda)
1947 (defcustom org-agenda-columns-show-summaries t
1948 "Non-nil means show summaries for columns displayed in the agenda view."
1949 :group 'org-agenda-column-view
1950 :type 'boolean)
1952 (defcustom org-agenda-columns-compute-summary-properties t
1953 "Non-nil means recompute all summary properties before column view.
1954 When column view in the agenda is listing properties that have a summary
1955 operator, it can go to all relevant buffers and recompute the summaries
1956 there. This can mean overhead for the agenda column view, but is necessary
1957 to have thing up to date.
1958 As a special case, a CLOCKSUM property also makes sure that the clock
1959 computations are current."
1960 :group 'org-agenda-column-view
1961 :type 'boolean)
1963 (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
1964 "Non-nil means the duration of an appointment will add to day effort.
1965 The property to which appointment durations will be added is the one given
1966 in the option `org-effort-property'. If an appointment does not have
1967 an end time, `org-agenda-default-appointment-duration' will be used. If that
1968 is not set, an appointment without end time will not contribute to the time
1969 estimate."
1970 :group 'org-agenda-column-view
1971 :type 'boolean)
1973 (defcustom org-agenda-auto-exclude-function nil
1974 "A function called with a tag to decide if it is filtered on '/ RET'.
1975 The sole argument to the function, which is called once for each
1976 possible tag, is a string giving the name of the tag. The
1977 function should return either nil if the tag should be included
1978 as normal, or \"-<TAG>\" to exclude the tag.
1979 Note that for the purpose of tag filtering, only the lower-case version of
1980 all tags will be considered, so that this function will only ever see
1981 the lower-case version of all tags."
1982 :group 'org-agenda
1983 :type '(choice (const nil) (function)))
1985 (defcustom org-agenda-bulk-custom-functions nil
1986 "Alist of characters and custom functions for bulk actions.
1987 For example, this value makes those two functions available:
1989 '((?R set-category)
1990 (?C bulk-cut))
1992 With selected entries in an agenda buffer, `B R' will call
1993 the custom function `set-category' on the selected entries.
1994 Note that functions in this alist don't need to be quoted."
1995 :type 'alist
1996 :version "24.1"
1997 :group 'org-agenda)
1999 (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
2000 "Execute BODY with point at location given by `org-hd-marker' property.
2001 If STRING is non-nil, the text property will be fetched from position 0
2002 in that string. If STRING is nil, it will be fetched from the beginning
2003 of the current line."
2004 (org-with-gensyms (marker)
2005 `(let ((,marker (get-text-property (if string 0 (point-at-bol))
2006 'org-hd-marker ,string)))
2007 (with-current-buffer (marker-buffer ,marker)
2008 (save-excursion
2009 (goto-char ,marker)
2010 ,@body)))))
2011 (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
2013 (defun org-add-agenda-custom-command (entry)
2014 "Replace or add a command in `org-agenda-custom-commands'.
2015 This is mostly for hacking and trying a new command - once the command
2016 works you probably want to add it to `org-agenda-custom-commands' for good."
2017 (let ((ass (assoc (car entry) org-agenda-custom-commands)))
2018 (if ass
2019 (setcdr ass (cdr entry))
2020 (push entry org-agenda-custom-commands))))
2022 ;;; Define the org-agenda-mode
2024 (defvar org-agenda-mode-map (make-sparse-keymap)
2025 "Keymap for `org-agenda-mode'.")
2026 (org-defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
2028 (defvar org-agenda-menu) ; defined later in this file.
2029 (defvar org-agenda-restrict nil) ; defined later in this file.
2030 (defvar org-agenda-follow-mode nil)
2031 (defvar org-agenda-entry-text-mode nil)
2032 (defvar org-agenda-clockreport-mode nil)
2033 (defvar org-agenda-show-log nil)
2034 (defvar org-agenda-redo-command nil)
2035 (defvar org-agenda-query-string nil)
2036 (defvar org-agenda-mode-hook nil
2037 "Hook run after `org-agenda-mode' is turned on.
2038 The buffer is still writable when this hook is called.")
2039 (defvar org-agenda-type nil)
2040 (defvar org-agenda-force-single-file nil)
2041 (defvar org-agenda-bulk-marked-entries nil
2042 "List of markers that refer to marked entries in the agenda.")
2044 ;;; Multiple agenda buffers support
2046 (defcustom org-agenda-sticky nil
2047 "Non-nil means agenda q key will bury agenda buffers.
2048 Agenda commands will then show existing buffer instead of generating new ones.
2049 When nil, `q' will kill the single agenda buffer."
2050 :group 'org-agenda
2051 :version "24.3"
2052 :type 'boolean)
2055 ;;;###autoload
2056 (defun org-toggle-sticky-agenda (&optional arg)
2057 "Toggle `org-agenda-sticky'."
2058 (interactive "P")
2059 (let ((new-value (if arg
2060 (> (prefix-numeric-value arg) 0)
2061 (not org-agenda-sticky))))
2062 (if (equal new-value org-agenda-sticky)
2063 (and (org-called-interactively-p 'interactive)
2064 (message "Sticky agenda was already %s"
2065 (if org-agenda-sticky "enabled" "disabled")))
2066 (setq org-agenda-sticky new-value)
2067 (org-agenda-kill-all-agenda-buffers)
2068 (and (org-called-interactively-p 'interactive)
2069 (message "Sticky agenda was %s"
2070 (if org-agenda-sticky "enabled" "disabled"))))))
2072 (defvar org-agenda-buffer nil
2073 "Agenda buffer currently being generated.")
2075 (defvar org-agenda-last-prefix-arg nil)
2076 (defvar org-agenda-this-buffer-name nil)
2077 (defvar org-agenda-doing-sticky-redo nil)
2078 (defvar org-agenda-this-buffer-is-sticky nil)
2080 (defconst org-agenda-local-vars
2081 '(org-agenda-this-buffer-name
2082 org-agenda-undo-list
2083 org-agenda-pending-undo-list
2084 org-agenda-follow-mode
2085 org-agenda-entry-text-mode
2086 org-agenda-clockreport-mode
2087 org-agenda-show-log
2088 org-agenda-redo-command
2089 org-agenda-query-string
2090 org-agenda-type
2091 org-agenda-bulk-marked-entries
2092 org-agenda-undo-has-started-in
2093 org-agenda-info
2094 org-agenda-pre-window-conf
2095 org-agenda-columns-active
2096 org-agenda-tag-filter-overlays
2097 org-agenda-tag-filter
2098 org-agenda-cat-filter-overlays
2099 org-agenda-category-filter
2100 org-agenda-re-filter-overlays
2101 org-agenda-regexp-filter
2102 org-agenda-markers
2103 org-agenda-last-search-view-search-was-boolean
2104 org-agenda-filtered-by-category
2105 org-agenda-filter-form
2106 org-agenda-cycle-counter
2107 org-agenda-last-prefix-arg)
2108 "Variables that must be local in agenda buffers to allow multiple buffers.")
2110 (defun org-agenda-mode ()
2111 "Mode for time-sorted view on action items in Org-mode files.
2113 The following commands are available:
2115 \\{org-agenda-mode-map}"
2116 (interactive)
2117 (cond (org-agenda-doing-sticky-redo
2118 ;; Refreshing sticky agenda-buffer
2120 ;; Preserve the value of `org-agenda-local-vars' variables,
2121 ;; while letting `kill-all-local-variables' kill the rest
2122 (let ((save (buffer-local-variables)))
2123 (kill-all-local-variables)
2124 (mapc 'make-local-variable org-agenda-local-vars)
2125 (dolist (elem save)
2126 (let ((var (car elem))
2127 (val (cdr elem)))
2128 (when (and val
2129 (member var org-agenda-local-vars))
2130 (set var val)))))
2131 (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
2132 (org-agenda-sticky
2133 ;; Creating a sticky Agenda buffer for the first time
2134 (kill-all-local-variables)
2135 (mapc 'make-local-variable org-agenda-local-vars)
2136 (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
2138 ;; Creating a non-sticky agenda buffer
2139 (kill-all-local-variables)
2140 (set (make-local-variable 'org-agenda-this-buffer-is-sticky) nil)))
2141 (setq org-agenda-undo-list nil
2142 org-agenda-pending-undo-list nil
2143 org-agenda-bulk-marked-entries nil)
2144 (setq major-mode 'org-agenda-mode)
2145 ;; Keep global-font-lock-mode from turning on font-lock-mode
2146 (org-set-local 'font-lock-global-modes (list 'not major-mode))
2147 (setq mode-name "Org-Agenda")
2148 (use-local-map org-agenda-mode-map)
2149 (easy-menu-add org-agenda-menu)
2150 (if org-startup-truncated (setq truncate-lines t))
2151 (org-set-local 'line-move-visual nil)
2152 (org-add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
2153 (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
2154 ;; Make sure properties are removed when copying text
2155 (org-add-hook 'filter-buffer-substring-functions
2156 (lambda (fun start end delete)
2157 (substring-no-properties (funcall fun start end delete)))
2158 nil t)
2159 (unless org-agenda-keep-modes
2160 (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
2161 org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
2162 org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode
2163 org-agenda-show-log org-agenda-start-with-log-mode))
2165 (easy-menu-change
2166 '("Agenda") "Agenda Files"
2167 (append
2168 (list
2169 (vector
2170 (if (get 'org-agenda-files 'org-restrict)
2171 "Restricted to single file"
2172 "Edit File List")
2173 '(org-edit-agenda-file-list)
2174 (not (get 'org-agenda-files 'org-restrict)))
2175 "--")
2176 (mapcar 'org-file-menu-entry (org-agenda-files))))
2177 (org-agenda-set-mode-name)
2178 (apply
2179 (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
2180 (list 'org-agenda-mode-hook)))
2182 (substitute-key-definition 'undo 'org-agenda-undo
2183 org-agenda-mode-map global-map)
2184 (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
2185 (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
2186 (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
2187 (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
2188 (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
2189 (org-defkey org-agenda-mode-map [(meta down)] 'org-agenda-drag-line-forward)
2190 (org-defkey org-agenda-mode-map [(meta up)] 'org-agenda-drag-line-backward)
2191 (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
2192 (org-defkey org-agenda-mode-map "\M-m" 'org-agenda-bulk-toggle)
2193 (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
2194 (org-defkey org-agenda-mode-map "\M-*" 'org-agenda-bulk-toggle-all)
2195 (org-defkey org-agenda-mode-map "#" 'org-agenda-dim-blocked-tasks)
2196 (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
2197 (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
2198 (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
2199 (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
2200 (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
2201 (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
2202 (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
2203 (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
2204 (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
2205 (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
2206 (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
2207 (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
2208 (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
2209 (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
2210 (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
2211 (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
2212 (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
2213 (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
2214 (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
2215 (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
2216 (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
2217 (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
2218 (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
2219 (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
2220 (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
2221 (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
2222 (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
2223 (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
2224 (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
2225 (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
2226 (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
2227 (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
2228 (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
2229 (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
2230 (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
2231 (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
2232 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
2233 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
2235 (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
2236 (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
2237 (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
2238 (let ((l '(1 2 3 4 5 6 7 8 9 0)))
2239 (while l (org-defkey org-agenda-mode-map
2240 (int-to-string (pop l)) 'digit-argument)))
2242 (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
2243 (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
2244 (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
2245 (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
2246 (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
2247 (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
2248 (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
2249 (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
2250 (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
2251 (org-defkey org-agenda-mode-map "g" (lambda () (interactive) (org-agenda-redo t)))
2252 (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
2253 (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
2254 (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
2255 'org-clock-modify-effort-estimate)
2256 (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
2257 (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
2258 (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
2259 (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
2260 (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
2261 (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
2262 (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
2263 (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
2264 (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
2265 (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
2266 (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
2267 (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
2268 (substitute-key-definition 'next-line 'org-agenda-next-line
2269 org-agenda-mode-map global-map)
2270 (substitute-key-definition 'previous-line 'org-agenda-previous-line
2271 org-agenda-mode-map global-map)
2272 (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
2273 (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
2274 (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
2275 (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
2276 (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
2277 (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
2278 (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
2279 (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
2280 (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
2281 (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
2282 (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
2283 (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
2284 (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
2285 (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
2286 (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
2287 (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
2288 (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
2289 (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
2290 (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
2291 (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
2292 (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
2293 (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
2294 (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
2295 (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
2296 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
2297 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
2298 (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
2299 (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
2300 (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
2301 (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
2303 (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
2304 (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
2305 (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
2306 (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
2307 (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
2308 (org-defkey org-agenda-mode-map "=" 'org-agenda-filter-by-regexp)
2309 (org-defkey org-agenda-mode-map "|" 'org-agenda-filter-remove-all)
2310 (org-defkey org-agenda-mode-map "\\" 'org-agenda-filter-by-tag-refine)
2311 (org-defkey org-agenda-mode-map "~" 'org-agenda-limit-interactively)
2312 (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
2313 (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-headline)
2314 (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
2315 (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
2316 (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
2317 (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
2319 (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
2320 (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
2321 (when org-agenda-mouse-1-follows-link
2322 (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
2323 (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
2324 '("Agenda"
2325 ("Agenda Files")
2326 "--"
2327 ("Agenda Dates"
2328 ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
2329 ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
2330 ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
2331 ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
2332 "--"
2333 ("View"
2334 ["Day View" org-agenda-day-view
2335 :active (org-agenda-check-type nil 'agenda)
2336 :style radio :selected (eq org-agenda-current-span 'day)
2337 :keys "v d (or just d)"]
2338 ["Week View" org-agenda-week-view
2339 :active (org-agenda-check-type nil 'agenda)
2340 :style radio :selected (eq org-agenda-current-span 'week)
2341 :keys "v w"]
2342 ["Fortnight View" org-agenda-fortnight-view
2343 :active (org-agenda-check-type nil 'agenda)
2344 :style radio :selected (eq org-agenda-current-span 'fortnight)
2345 :keys "v f"]
2346 ["Month View" org-agenda-month-view
2347 :active (org-agenda-check-type nil 'agenda)
2348 :style radio :selected (eq org-agenda-current-span 'month)
2349 :keys "v m"]
2350 ["Year View" org-agenda-year-view
2351 :active (org-agenda-check-type nil 'agenda)
2352 :style radio :selected (eq org-agenda-current-span 'year)
2353 :keys "v y"]
2354 "--"
2355 ["Include Diary" org-agenda-toggle-diary
2356 :style toggle :selected org-agenda-include-diary
2357 :active (org-agenda-check-type nil 'agenda)]
2358 ["Include Deadlines" org-agenda-toggle-deadlines
2359 :style toggle :selected org-agenda-include-deadlines
2360 :active (org-agenda-check-type nil 'agenda)]
2361 ["Use Time Grid" org-agenda-toggle-time-grid
2362 :style toggle :selected org-agenda-use-time-grid
2363 :active (org-agenda-check-type nil 'agenda)]
2364 "--"
2365 ["Show clock report" org-agenda-clockreport-mode
2366 :style toggle :selected org-agenda-clockreport-mode
2367 :active (org-agenda-check-type nil 'agenda)]
2368 ["Show some entry text" org-agenda-entry-text-mode
2369 :style toggle :selected org-agenda-entry-text-mode
2370 :active t]
2371 "--"
2372 ["Show Logbook entries" org-agenda-log-mode
2373 :style toggle :selected org-agenda-show-log
2374 :active (org-agenda-check-type nil 'agenda 'timeline)
2375 :keys "v l (or just l)"]
2376 ["Include archived trees" org-agenda-archives-mode
2377 :style toggle :selected org-agenda-archives-mode :active t
2378 :keys "v a"]
2379 ["Include archive files" (org-agenda-archives-mode t)
2380 :style toggle :selected (eq org-agenda-archives-mode t) :active t
2381 :keys "v A"]
2382 "--"
2383 ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
2384 ["Write view to file" org-agenda-write t]
2385 ["Rebuild buffer" org-agenda-redo t]
2386 ["Save all Org-mode Buffers" org-save-all-org-buffers t]
2387 "--"
2388 ["Show original entry" org-agenda-show t]
2389 ["Go To (other window)" org-agenda-goto t]
2390 ["Go To (this window)" org-agenda-switch-to t]
2391 ["Capture with cursor date" org-agenda-capture t]
2392 ["Follow Mode" org-agenda-follow-mode
2393 :style toggle :selected org-agenda-follow-mode :active t]
2394 ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
2395 "--"
2396 ("TODO"
2397 ["Cycle TODO" org-agenda-todo t]
2398 ["Next TODO set" org-agenda-todo-nextset t]
2399 ["Previous TODO set" org-agenda-todo-previousset t]
2400 ["Add note" org-agenda-add-note t])
2401 ("Archive/Refile/Delete"
2402 ["Archive default" org-agenda-archive-default t]
2403 ["Archive default" org-agenda-archive-default-with-confirmation t]
2404 ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
2405 ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
2406 ["Archive subtree" org-agenda-archive t]
2407 "--"
2408 ["Refile" org-agenda-refile t]
2409 "--"
2410 ["Delete subtree" org-agenda-kill t])
2411 ("Bulk action"
2412 ["Mark entry" org-agenda-bulk-mark t]
2413 ["Mark all" org-agenda-bulk-mark-all t]
2414 ["Unmark entry" org-agenda-bulk-unmark t]
2415 ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
2416 ["Toggle mark" org-agenda-bulk-toggle t]
2417 ["Toggle all" org-agenda-bulk-toggle-all t]
2418 ["Mark regexp" org-agenda-bulk-mark-regexp t])
2419 ["Act on all marked" org-agenda-bulk-action t]
2420 "--"
2421 ("Tags and Properties"
2422 ["Show all Tags" org-agenda-show-tags t]
2423 ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
2424 ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
2425 "--"
2426 ["Column View" org-columns t])
2427 ("Deadline/Schedule"
2428 ["Schedule" org-agenda-schedule t]
2429 ["Set Deadline" org-agenda-deadline t]
2430 "--"
2431 ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
2432 ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
2433 ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
2434 ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
2435 ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
2436 ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
2437 ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
2438 ("Clock and Effort"
2439 ["Clock in" org-agenda-clock-in t]
2440 ["Clock out" org-agenda-clock-out t]
2441 ["Clock cancel" org-agenda-clock-cancel t]
2442 ["Goto running clock" org-clock-goto t]
2443 "--"
2444 ["Set Effort" org-agenda-set-effort t]
2445 ["Change clocked effort" org-clock-modify-effort-estimate
2446 (org-clock-is-active)])
2447 ("Priority"
2448 ["Set Priority" org-agenda-priority t]
2449 ["Increase Priority" org-agenda-priority-up t]
2450 ["Decrease Priority" org-agenda-priority-down t]
2451 ["Show Priority" org-show-priority t])
2452 ("Calendar/Diary"
2453 ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
2454 ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
2455 ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
2456 ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
2457 ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
2458 ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
2459 "--"
2460 ["Create iCalendar File" org-icalendar-combine-agenda-files t])
2461 "--"
2462 ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
2463 "--"
2464 ("MobileOrg"
2465 ["Push Files and Views" org-mobile-push t]
2466 ["Get Captured and Flagged" org-mobile-pull t]
2467 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
2468 ["Show note / unflag" org-agenda-show-the-flagging-note t]
2469 "--"
2470 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
2471 "--"
2472 ["Quit" org-agenda-quit t]
2473 ["Exit and Release Buffers" org-agenda-exit t]
2476 ;;; Agenda undo
2478 (defvar org-agenda-allow-remote-undo t
2479 "Non-nil means allow remote undo from the agenda buffer.")
2480 (defvar org-agenda-undo-has-started-in nil
2481 "Buffers that have already seen `undo-start' in the current undo sequence.")
2483 (defun org-agenda-undo ()
2484 "Undo a remote editing step in the agenda.
2485 This undoes changes both in the agenda buffer and in the remote buffer
2486 that have been changed along."
2487 (interactive)
2488 (or org-agenda-allow-remote-undo
2489 (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
2490 (if (not (eq this-command last-command))
2491 (setq org-agenda-undo-has-started-in nil
2492 org-agenda-pending-undo-list org-agenda-undo-list))
2493 (if (not org-agenda-pending-undo-list)
2494 (user-error "No further undo information"))
2495 (let* ((entry (pop org-agenda-pending-undo-list))
2496 buf line cmd rembuf)
2497 (setq cmd (pop entry) line (pop entry))
2498 (setq rembuf (nth 2 entry))
2499 (org-with-remote-undo rembuf
2500 (while (bufferp (setq buf (pop entry)))
2501 (if (pop entry)
2502 (with-current-buffer buf
2503 (let ((last-undo-buffer buf)
2504 (inhibit-read-only t))
2505 (unless (memq buf org-agenda-undo-has-started-in)
2506 (push buf org-agenda-undo-has-started-in)
2507 (make-local-variable 'pending-undo-list)
2508 (undo-start))
2509 (while (and pending-undo-list
2510 (listp pending-undo-list)
2511 (not (car pending-undo-list)))
2512 (pop pending-undo-list))
2513 (undo-more 1))))))
2514 (org-goto-line line)
2515 (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
2517 (defun org-verify-change-for-undo (l1 l2)
2518 "Verify that a real change occurred between the undo lists L1 and L2."
2519 (while (and l1 (listp l1) (null (car l1))) (pop l1))
2520 (while (and l2 (listp l2) (null (car l2))) (pop l2))
2521 (not (eq l1 l2)))
2523 ;;; Agenda dispatch
2525 (defvar org-agenda-restrict-begin (make-marker))
2526 (defvar org-agenda-restrict-end (make-marker))
2527 (defvar org-agenda-last-dispatch-buffer nil)
2528 (defvar org-agenda-overriding-restriction nil)
2530 (defcustom org-agenda-custom-commands-contexts nil
2531 "Alist of custom agenda keys and contextual rules.
2533 For example, if you have a custom agenda command \"p\" and you
2534 want this command to be accessible only from plain text files,
2535 use this:
2537 '((\"p\" ((in-file . \"\\.txt\"))))
2539 Here are the available contexts definitions:
2541 in-file: command displayed only in matching files
2542 in-mode: command displayed only in matching modes
2543 not-in-file: command not displayed in matching files
2544 not-in-mode: command not displayed in matching modes
2545 in-buffer: command displayed only in matching buffers
2546 not-in-buffer: command not displayed in matching buffers
2547 [function]: a custom function taking no argument
2549 If you define several checks, the agenda command will be
2550 accessible if there is at least one valid check.
2552 You can also bind a key to another agenda custom command
2553 depending on contextual rules.
2555 '((\"p\" \"q\" ((in-file . \"\\.txt\"))))
2557 Here it means: in .txt files, use \"p\" as the key for the
2558 agenda command otherwise associated with \"q\". (The command
2559 originally associated with \"q\" is not displayed to avoid
2560 duplicates.)"
2561 :version "24.3"
2562 :group 'org-agenda-custom-commands
2563 :type '(repeat (list :tag "Rule"
2564 (string :tag " Agenda key")
2565 (string :tag "Replace by command")
2566 (repeat :tag "Available when"
2567 (choice
2568 (cons :tag "Condition"
2569 (choice
2570 (const :tag "In file" in-file)
2571 (const :tag "Not in file" not-in-file)
2572 (const :tag "In buffer" in-buffer)
2573 (const :tag "Not in buffer" not-in-buffer)
2574 (const :tag "In mode" in-mode)
2575 (const :tag "Not in mode" not-in-mode))
2576 (regexp))
2577 (function :tag "Custom function"))))))
2579 (defcustom org-agenda-max-entries nil
2580 "Maximum number of entries to display in an agenda.
2581 This can be nil (no limit) or an integer or an alist of agenda
2582 types with an associated number of entries to display in this
2583 type."
2584 :version "24.4"
2585 :package-version '(Org . "8.0")
2586 :group 'org-agenda-custom-commands
2587 :type '(choice (symbol :tag "No limit" nil)
2588 (integer :tag "Max number of entries")
2589 (repeat
2590 (cons (choice :tag "Agenda type"
2591 (const agenda)
2592 (const todo)
2593 (const tags)
2594 (const search)
2595 (const timeline))
2596 (integer :tag "Max number of entries")))))
2598 (defcustom org-agenda-max-todos nil
2599 "Maximum number of TODOs to display in an agenda.
2600 This can be nil (no limit) or an integer or an alist of agenda
2601 types with an associated number of entries to display in this
2602 type."
2603 :version "24.4"
2604 :package-version '(Org . "8.0")
2605 :group 'org-agenda-custom-commands
2606 :type '(choice (symbol :tag "No limit" nil)
2607 (integer :tag "Max number of entries")
2608 (repeat
2609 (cons (choice :tag "Agenda type"
2610 (const agenda)
2611 (const todo)
2612 (const tags)
2613 (const search)
2614 (const timeline))
2615 (integer :tag "Max number of entries")))))
2617 (defcustom org-agenda-max-tags nil
2618 "Maximum number of tagged entries to display in an agenda.
2619 This can be nil (no limit) or an integer or an alist of agenda
2620 types with an associated number of entries to display in this
2621 type."
2622 :version "24.4"
2623 :package-version '(Org . "8.0")
2624 :group 'org-agenda-custom-commands
2625 :type '(choice (symbol :tag "No limit" nil)
2626 (integer :tag "Max number of entries")
2627 (repeat
2628 (cons (choice :tag "Agenda type"
2629 (const agenda)
2630 (const todo)
2631 (const tags)
2632 (const search)
2633 (const timeline))
2634 (integer :tag "Max number of entries")))))
2636 (defcustom org-agenda-max-effort nil
2637 "Maximum cumulated effort duration for the agenda.
2638 This can be nil (no limit) or a number of minutes (as an integer)
2639 or an alist of agenda types with an associated number of minutes
2640 to limit entries to in this type."
2641 :version "24.4"
2642 :package-version '(Org . "8.0")
2643 :group 'org-agenda-custom-commands
2644 :type '(choice (symbol :tag "No limit" nil)
2645 (integer :tag "Max number of entries")
2646 (repeat
2647 (cons (choice :tag "Agenda type"
2648 (const agenda)
2649 (const todo)
2650 (const tags)
2651 (const search)
2652 (const timeline))
2653 (integer :tag "Max number of entries")))))
2655 (defvar org-keys nil)
2656 (defvar org-match nil)
2657 ;;;###autoload
2658 (defun org-agenda (&optional arg org-keys restriction)
2659 "Dispatch agenda commands to collect entries to the agenda buffer.
2660 Prompts for a command to execute. Any prefix arg will be passed
2661 on to the selected command. The default selections are:
2663 a Call `org-agenda-list' to display the agenda for current day or week.
2664 t Call `org-todo-list' to display the global todo list.
2665 T Call `org-todo-list' to display the global todo list, select only
2666 entries with a specific TODO keyword (the user gets a prompt).
2667 m Call `org-tags-view' to display headlines with tags matching
2668 a condition (the user is prompted for the condition).
2669 M Like `m', but select only TODO entries, no ordinary headlines.
2670 L Create a timeline for the current buffer.
2671 e Export views to associated files.
2672 s Search entries for keywords.
2673 S Search entries for keywords, only with TODO keywords.
2674 / Multi occur across all agenda files and also files listed
2675 in `org-agenda-text-search-extra-files'.
2676 < Restrict agenda commands to buffer, subtree, or region.
2677 Press several times to get the desired effect.
2678 > Remove a previous restriction.
2679 # List \"stuck\" projects.
2680 ! Configure what \"stuck\" means.
2681 C Configure custom agenda commands.
2683 More commands can be added by configuring the variable
2684 `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
2685 searches can be pre-defined in this way.
2687 If the current buffer is in Org-mode and visiting a file, you can also
2688 first press `<' once to indicate that the agenda should be temporarily
2689 \(until the next use of \\[org-agenda]) restricted to the current file.
2690 Pressing `<' twice means to restrict to the current subtree or region
2691 \(if active)."
2692 (interactive "P")
2693 (catch 'exit
2694 (let* ((prefix-descriptions nil)
2695 (org-agenda-buffer-name org-agenda-buffer-name)
2696 (org-agenda-window-setup (if (equal (buffer-name)
2697 org-agenda-buffer-name)
2698 'current-window
2699 org-agenda-window-setup))
2700 (org-agenda-custom-commands-orig org-agenda-custom-commands)
2701 (org-agenda-custom-commands
2702 ;; normalize different versions
2703 (delq nil
2704 (mapcar
2705 (lambda (x)
2706 (cond ((stringp (cdr x))
2707 (push x prefix-descriptions)
2708 nil)
2709 ((stringp (nth 1 x)) x)
2710 ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
2711 (t (cons (car x) (cons "" (cdr x))))))
2712 org-agenda-custom-commands)))
2713 (org-agenda-custom-commands
2714 (org-contextualize-keys
2715 org-agenda-custom-commands org-agenda-custom-commands-contexts))
2716 (buf (current-buffer))
2717 (bfn (buffer-file-name (buffer-base-buffer)))
2718 entry key type org-match lprops ans)
2719 ;; Turn off restriction unless there is an overriding one,
2720 (unless org-agenda-overriding-restriction
2721 (unless (org-bound-and-true-p org-agenda-keep-restricted-file-list)
2722 ;; There is a request to keep the file list in place
2723 (put 'org-agenda-files 'org-restrict nil))
2724 (setq org-agenda-restrict nil)
2725 (move-marker org-agenda-restrict-begin nil)
2726 (move-marker org-agenda-restrict-end nil))
2727 ;; Delete old local properties
2728 (put 'org-agenda-redo-command 'org-lprops nil)
2729 ;; Delete previously set last-arguments
2730 (put 'org-agenda-redo-command 'last-args nil)
2731 ;; Remember where this call originated
2732 (setq org-agenda-last-dispatch-buffer (current-buffer))
2733 (unless org-keys
2734 (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
2735 org-keys (car ans)
2736 restriction (cdr ans)))
2737 ;; If we have sticky agenda buffers, set a name for the buffer,
2738 ;; depending on the invoking keys. The user may still set this
2739 ;; as a command option, which will overwrite what we do here.
2740 (if org-agenda-sticky
2741 (setq org-agenda-buffer-name
2742 (format "*Org Agenda(%s)*" org-keys)))
2743 ;; Establish the restriction, if any
2744 (when (and (not org-agenda-overriding-restriction) restriction)
2745 (put 'org-agenda-files 'org-restrict (list bfn))
2746 (cond
2747 ((eq restriction 'region)
2748 (setq org-agenda-restrict (current-buffer))
2749 (move-marker org-agenda-restrict-begin (region-beginning))
2750 (move-marker org-agenda-restrict-end (region-end)))
2751 ((eq restriction 'subtree)
2752 (save-excursion
2753 (setq org-agenda-restrict (current-buffer))
2754 (org-back-to-heading t)
2755 (move-marker org-agenda-restrict-begin (point))
2756 (move-marker org-agenda-restrict-end
2757 (progn (org-end-of-subtree t)))))))
2759 ;; For example the todo list should not need it (but does...)
2760 (cond
2761 ((setq entry (assoc org-keys org-agenda-custom-commands))
2762 (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
2763 (progn
2764 (setq type (nth 2 entry) org-match (eval (nth 3 entry))
2765 lprops (nth 4 entry))
2766 (if org-agenda-sticky
2767 (setq org-agenda-buffer-name
2768 (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
2769 (format "*Org Agenda(%s)*" org-keys))))
2770 (put 'org-agenda-redo-command 'org-lprops lprops)
2771 (cond
2772 ((eq type 'agenda)
2773 (org-let lprops '(org-agenda-list current-prefix-arg)))
2774 ((eq type 'agenda*)
2775 (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
2776 ((eq type 'alltodo)
2777 (org-let lprops '(org-todo-list current-prefix-arg)))
2778 ((eq type 'search)
2779 (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
2780 ((eq type 'stuck)
2781 (org-let lprops '(org-agenda-list-stuck-projects
2782 current-prefix-arg)))
2783 ((eq type 'tags)
2784 (org-let lprops '(org-tags-view current-prefix-arg org-match)))
2785 ((eq type 'tags-todo)
2786 (org-let lprops '(org-tags-view '(4) org-match)))
2787 ((eq type 'todo)
2788 (org-let lprops '(org-todo-list org-match)))
2789 ((eq type 'tags-tree)
2790 (org-check-for-org-mode)
2791 (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
2792 ((eq type 'todo-tree)
2793 (org-check-for-org-mode)
2794 (org-let lprops
2795 '(org-occur (concat "^" org-outline-regexp "[ \t]*"
2796 (regexp-quote org-match) "\\>"))))
2797 ((eq type 'occur-tree)
2798 (org-check-for-org-mode)
2799 (org-let lprops '(org-occur org-match)))
2800 ((functionp type)
2801 (org-let lprops '(funcall type org-match)))
2802 ((fboundp type)
2803 (org-let lprops '(funcall type org-match)))
2804 (t (user-error "Invalid custom agenda command type %s" type))))
2805 (org-agenda-run-series (nth 1 entry) (cddr entry))))
2806 ((equal org-keys "C")
2807 (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
2808 (customize-variable 'org-agenda-custom-commands))
2809 ((equal org-keys "a") (call-interactively 'org-agenda-list))
2810 ((equal org-keys "s") (call-interactively 'org-search-view))
2811 ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
2812 ((equal org-keys "t") (call-interactively 'org-todo-list))
2813 ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
2814 ((equal org-keys "m") (call-interactively 'org-tags-view))
2815 ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
2816 ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
2817 ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
2818 (org-add-hook
2819 'post-command-hook
2820 (lambda ()
2821 (unless (current-message)
2822 (let* ((m (org-agenda-get-any-marker))
2823 (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
2824 (when note
2825 (message (concat
2826 "FLAGGING-NOTE ([?] for more info): "
2827 (org-add-props
2828 (replace-regexp-in-string
2829 "\\\\n" "//"
2830 (copy-sequence note))
2831 nil 'face 'org-warning)))))))
2832 t t))
2833 ((equal org-keys "L")
2834 (unless (derived-mode-p 'org-mode)
2835 (user-error "This is not an Org-mode file"))
2836 (unless restriction
2837 (put 'org-agenda-files 'org-restrict (list bfn))
2838 (org-call-with-arg 'org-timeline arg)))
2839 ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
2840 ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
2841 ((equal org-keys "!") (customize-variable 'org-stuck-projects))
2842 (t (user-error "Invalid agenda key"))))))
2844 (defvar org-agenda-multi)
2846 (defun org-agenda-append-agenda ()
2847 "Append another agenda view to the current one.
2848 This function allows interactive building of block agendas.
2849 Agenda views are separated by `org-agenda-block-separator'."
2850 (interactive)
2851 (unless (derived-mode-p 'org-agenda-mode)
2852 (user-error "Can only append from within agenda buffer"))
2853 (let ((org-agenda-multi t))
2854 (org-agenda)
2855 (widen)
2856 (org-agenda-finalize)
2857 (setq buffer-read-only t)
2858 (org-agenda-fit-window-to-buffer)))
2860 (defun org-agenda-normalize-custom-commands (cmds)
2861 "Normalize custom commands CMDS."
2862 (delq nil
2863 (mapcar
2864 (lambda (x)
2865 (cond ((stringp (cdr x)) nil)
2866 ((stringp (nth 1 x)) x)
2867 ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
2868 (t (cons (car x) (cons "" (cdr x))))))
2869 cmds)))
2871 (defun org-agenda-get-restriction-and-command (prefix-descriptions)
2872 "The user interface for selecting an agenda command."
2873 (catch 'exit
2874 (let* ((bfn (buffer-file-name (buffer-base-buffer)))
2875 (restrict-ok (and bfn (derived-mode-p 'org-mode)))
2876 (region-p (org-region-active-p))
2877 (custom org-agenda-custom-commands)
2878 (selstring "")
2879 restriction second-time
2880 c entry key type match prefixes rmheader header-end custom1 desc
2881 line lines left right n n1)
2882 (save-window-excursion
2883 (delete-other-windows)
2884 (org-switch-to-buffer-other-window " *Agenda Commands*")
2885 (erase-buffer)
2886 (insert (eval-when-compile
2887 (let ((header
2888 "Press key for an agenda command: < Buffer, subtree/region restriction
2889 -------------------------------- > Remove restriction
2890 a Agenda for current week or day e Export agenda views
2891 t List of all TODO entries T Entries with special TODO kwd
2892 m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
2893 s Search for keywords S Like s, but only TODO entries
2894 L Timeline for current buffer # List stuck projects (!=configure)
2895 / Multi-occur C Configure custom agenda commands
2896 ? Find :FLAGGED: entries * Toggle sticky agenda views
2898 (start 0))
2899 (while (string-match
2900 "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
2901 header start)
2902 (setq start (match-end 0))
2903 (add-text-properties (match-beginning 2) (match-end 2)
2904 '(face bold) header))
2905 header)))
2906 (setq header-end (point-marker))
2907 (while t
2908 (setq custom1 custom)
2909 (when (eq rmheader t)
2910 (org-goto-line 1)
2911 (re-search-forward ":" nil t)
2912 (delete-region (match-end 0) (point-at-eol))
2913 (forward-char 1)
2914 (looking-at "-+")
2915 (delete-region (match-end 0) (point-at-eol))
2916 (move-marker header-end (match-end 0)))
2917 (goto-char header-end)
2918 (delete-region (point) (point-max))
2920 ;; Produce all the lines that describe custom commands and prefixes
2921 (setq lines nil)
2922 (while (setq entry (pop custom1))
2923 (setq key (car entry) desc (nth 1 entry)
2924 type (nth 2 entry)
2925 match (nth 3 entry))
2926 (if (> (length key) 1)
2927 (add-to-list 'prefixes (string-to-char key))
2928 (setq line
2929 (format
2930 "%-4s%-14s"
2931 (org-add-props (copy-sequence key)
2932 '(face bold))
2933 (cond
2934 ((string-match "\\S-" desc) desc)
2935 ((eq type 'agenda) "Agenda for current week or day")
2936 ((eq type 'agenda*) "Appointments for current week or day")
2937 ((eq type 'alltodo) "List of all TODO entries")
2938 ((eq type 'search) "Word search")
2939 ((eq type 'stuck) "List of stuck projects")
2940 ((eq type 'todo) "TODO keyword")
2941 ((eq type 'tags) "Tags query")
2942 ((eq type 'tags-todo) "Tags (TODO)")
2943 ((eq type 'tags-tree) "Tags tree")
2944 ((eq type 'todo-tree) "TODO kwd tree")
2945 ((eq type 'occur-tree) "Occur tree")
2946 ((functionp type) (if (symbolp type)
2947 (symbol-name type)
2948 "Lambda expression"))
2949 (t "???"))))
2950 (if org-agenda-menu-show-matcher
2951 (setq line
2952 (concat line ": "
2953 (cond
2954 ((stringp match)
2955 (setq match (copy-sequence match))
2956 (org-add-props match nil 'face 'org-warning))
2957 ((listp type)
2958 (format "set of %d commands" (length type))))))
2959 (if (org-string-nw-p match)
2960 (add-text-properties
2961 0 (length line) (list 'help-echo
2962 (concat "Matcher: " match)) line)))
2963 (push line lines)))
2964 (setq lines (nreverse lines))
2965 (when prefixes
2966 (mapc (lambda (x)
2967 (push
2968 (format "%s %s"
2969 (org-add-props (char-to-string x)
2970 nil 'face 'bold)
2971 (or (cdr (assoc (concat selstring
2972 (char-to-string x))
2973 prefix-descriptions))
2974 "Prefix key"))
2975 lines))
2976 prefixes))
2978 ;; Check if we should display in two columns
2979 (if org-agenda-menu-two-columns
2980 (progn
2981 (setq n (length lines)
2982 n1 (+ (/ n 2) (mod n 2))
2983 right (nthcdr n1 lines)
2984 left (copy-sequence lines))
2985 (setcdr (nthcdr (1- n1) left) nil))
2986 (setq left lines right nil))
2987 (while left
2988 (insert "\n" (pop left))
2989 (when right
2990 (if (< (current-column) 40)
2991 (move-to-column 40 t)
2992 (insert " "))
2993 (insert (pop right))))
2995 ;; Make the window the right size
2996 (goto-char (point-min))
2997 (if second-time
2998 (if (not (pos-visible-in-window-p (point-max)))
2999 (org-fit-window-to-buffer))
3000 (setq second-time t)
3001 (org-fit-window-to-buffer))
3003 ;; Ask for selection
3004 (message "Press key for agenda command%s:"
3005 (if (or restrict-ok org-agenda-overriding-restriction)
3006 (if org-agenda-overriding-restriction
3007 " (restriction lock active)"
3008 (if restriction
3009 (format " (restricted to %s)" restriction)
3010 " (unrestricted)"))
3011 ""))
3012 (setq c (read-char-exclusive))
3013 (message "")
3014 (cond
3015 ((assoc (char-to-string c) custom)
3016 (setq selstring (concat selstring (char-to-string c)))
3017 (throw 'exit (cons selstring restriction)))
3018 ((memq c prefixes)
3019 (setq selstring (concat selstring (char-to-string c))
3020 prefixes nil
3021 rmheader (or rmheader t)
3022 custom (delq nil (mapcar
3023 (lambda (x)
3024 (if (or (= (length (car x)) 1)
3025 (/= (string-to-char (car x)) c))
3027 (cons (substring (car x) 1) (cdr x))))
3028 custom))))
3029 ((eq c ?*)
3030 (call-interactively 'org-toggle-sticky-agenda)
3031 (sit-for 2))
3032 ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
3033 (message "Restriction is only possible in Org-mode buffers")
3034 (ding) (sit-for 1))
3035 ((eq c ?1)
3036 (org-agenda-remove-restriction-lock 'noupdate)
3037 (setq restriction 'buffer))
3038 ((eq c ?0)
3039 (org-agenda-remove-restriction-lock 'noupdate)
3040 (setq restriction (if region-p 'region 'subtree)))
3041 ((eq c ?<)
3042 (org-agenda-remove-restriction-lock 'noupdate)
3043 (setq restriction
3044 (cond
3045 ((eq restriction 'buffer)
3046 (if region-p 'region 'subtree))
3047 ((memq restriction '(subtree region))
3048 nil)
3049 (t 'buffer))))
3050 ((eq c ?>)
3051 (org-agenda-remove-restriction-lock 'noupdate)
3052 (setq restriction nil))
3053 ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
3054 (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
3055 ((and (> (length selstring) 0) (eq c ?\d))
3056 (delete-window)
3057 (org-agenda-get-restriction-and-command prefix-descriptions))
3059 ((equal c ?q) (error "Abort"))
3060 (t (user-error "Invalid key %c" c))))))))
3062 (defun org-agenda-fit-window-to-buffer ()
3063 "Fit the window to the buffer size."
3064 (and (memq org-agenda-window-setup '(reorganize-frame))
3065 (fboundp 'fit-window-to-buffer)
3066 (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
3067 (= (car org-agenda-window-frame-fractions) 1.0))
3068 (delete-other-windows)
3069 (org-fit-window-to-buffer
3071 (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
3072 (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
3074 (defvar org-cmd nil)
3075 (defvar org-agenda-overriding-cmd nil)
3076 (defvar org-agenda-overriding-arguments nil)
3077 (defvar org-agenda-overriding-cmd-arguments nil)
3078 (defun org-agenda-run-series (name series)
3079 "Run agenda NAME as a SERIES of agenda commands."
3080 (org-let (nth 1 series) '(org-agenda-prepare name))
3081 ;; We need to reset agenda markers here, because when constructing a
3082 ;; block agenda, the individual blocks do not do that.
3083 (org-agenda-reset-markers)
3084 (let* ((org-agenda-multi t)
3085 (redo (list 'org-agenda-run-series name (list 'quote series)))
3086 (cmds (car series))
3087 (gprops (nth 1 series))
3088 match ;; The byte compiler incorrectly complains about this. Keep it!
3089 org-cmd type lprops)
3090 (while (setq org-cmd (pop cmds))
3091 (setq type (car org-cmd)
3092 match (eval (nth 1 org-cmd))
3093 lprops (nth 2 org-cmd))
3094 (let ((org-agenda-overriding-arguments
3095 (if (eq org-agenda-overriding-cmd org-cmd)
3096 (or org-agenda-overriding-arguments
3097 org-agenda-overriding-cmd-arguments))))
3098 (cond
3099 ((eq type 'agenda)
3100 (org-let2 gprops lprops
3101 '(call-interactively 'org-agenda-list)))
3102 ((eq type 'agenda*)
3103 (org-let2 gprops lprops
3104 '(funcall 'org-agenda-list nil nil t)))
3105 ((eq type 'alltodo)
3106 (org-let2 gprops lprops
3107 '(call-interactively 'org-todo-list)))
3108 ((eq type 'search)
3109 (org-let2 gprops lprops
3110 '(org-search-view current-prefix-arg match nil)))
3111 ((eq type 'stuck)
3112 (org-let2 gprops lprops
3113 '(call-interactively 'org-agenda-list-stuck-projects)))
3114 ((eq type 'tags)
3115 (org-let2 gprops lprops
3116 '(org-tags-view current-prefix-arg match)))
3117 ((eq type 'tags-todo)
3118 (org-let2 gprops lprops
3119 '(org-tags-view '(4) match)))
3120 ((eq type 'todo)
3121 (org-let2 gprops lprops
3122 '(org-todo-list match)))
3123 ((fboundp type)
3124 (org-let2 gprops lprops
3125 '(funcall type match)))
3126 (t (error "Invalid type in command series")))))
3127 (widen)
3128 (let ((inhibit-read-only t))
3129 (add-text-properties (point-min) (point-max)
3130 `(org-series t org-series-redo-cmd ,redo)))
3131 (setq org-agenda-redo-command redo)
3132 (goto-char (point-min)))
3133 (org-agenda-fit-window-to-buffer)
3134 (org-let (nth 1 series) '(org-agenda-finalize)))
3136 ;;;###autoload
3137 (defmacro org-batch-agenda (cmd-key &rest parameters)
3138 "Run an agenda command in batch mode and send the result to STDOUT.
3139 If CMD-KEY is a string of length 1, it is used as a key in
3140 `org-agenda-custom-commands' and triggers this command. If it is a
3141 longer string it is used as a tags/todo match string.
3142 Parameters are alternating variable names and values that will be bound
3143 before running the agenda command."
3144 (org-eval-in-environment (org-make-parameter-alist parameters)
3145 (let (org-agenda-sticky)
3146 (if (> (length cmd-key) 2)
3147 (org-tags-view nil cmd-key)
3148 (org-agenda nil cmd-key))))
3149 (set-buffer org-agenda-buffer-name)
3150 (princ (buffer-string)))
3152 (defvar org-agenda-info nil)
3154 ;;;###autoload
3155 (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
3156 "Run an agenda command in batch mode and send the result to STDOUT.
3157 If CMD-KEY is a string of length 1, it is used as a key in
3158 `org-agenda-custom-commands' and triggers this command. If it is a
3159 longer string it is used as a tags/todo match string.
3160 Parameters are alternating variable names and values that will be bound
3161 before running the agenda command.
3163 The output gives a line for each selected agenda item. Each
3164 item is a list of comma-separated values, like this:
3166 category,head,type,todo,tags,date,time,extra,priority-l,priority-n
3168 category The category of the item
3169 head The headline, without TODO kwd, TAGS and PRIORITY
3170 type The type of the agenda entry, can be
3171 todo selected in TODO match
3172 tagsmatch selected in tags match
3173 diary imported from diary
3174 deadline a deadline on given date
3175 scheduled scheduled on given date
3176 timestamp entry has timestamp on given date
3177 closed entry was closed on given date
3178 upcoming-deadline warning about deadline
3179 past-scheduled forwarded scheduled item
3180 block entry has date block including g. date
3181 todo The todo keyword, if any
3182 tags All tags including inherited ones, separated by colons
3183 date The relevant date, like 2007-2-14
3184 time The time, like 15:00-16:50
3185 extra Sting with extra planning info
3186 priority-l The priority letter if any was given
3187 priority-n The computed numerical priority
3188 agenda-day The day in the agenda where this is listed"
3189 (org-eval-in-environment (append '((org-agenda-remove-tags t))
3190 (org-make-parameter-alist parameters))
3191 (if (> (length cmd-key) 2)
3192 (org-tags-view nil cmd-key)
3193 (org-agenda nil cmd-key)))
3194 (set-buffer org-agenda-buffer-name)
3195 (let* ((lines (org-split-string (buffer-string) "\n"))
3196 line)
3197 (while (setq line (pop lines))
3198 (catch 'next
3199 (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
3200 (setq org-agenda-info
3201 (org-fix-agenda-info (text-properties-at 0 line)))
3202 (princ
3203 (mapconcat 'org-agenda-export-csv-mapper
3204 '(org-category txt type todo tags date time extra
3205 priority-letter priority agenda-day)
3206 ","))
3207 (princ "\n")))))
3209 (defun org-fix-agenda-info (props)
3210 "Make sure all properties on an agenda item have a canonical form.
3211 This ensures the export commands can easily use it."
3212 (let (tmp re)
3213 (when (setq tmp (plist-get props 'tags))
3214 (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
3215 (when (setq tmp (plist-get props 'date))
3216 (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
3217 (let ((calendar-date-display-form '(year "-" month "-" day)))
3218 '((format "%4d, %9s %2s, %4s" dayname monthname day year))
3220 (setq tmp (calendar-date-string tmp)))
3221 (setq props (plist-put props 'date tmp)))
3222 (when (setq tmp (plist-get props 'day))
3223 (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
3224 (let ((calendar-date-display-form '(year "-" month "-" day)))
3225 (setq tmp (calendar-date-string tmp)))
3226 (setq props (plist-put props 'day tmp))
3227 (setq props (plist-put props 'agenda-day tmp)))
3228 (when (setq tmp (plist-get props 'txt))
3229 (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
3230 (plist-put props 'priority-letter (match-string 1 tmp))
3231 (setq tmp (replace-match "" t t tmp)))
3232 (when (and (setq re (plist-get props 'org-todo-regexp))
3233 (setq re (concat "\\`\\.*" re " ?"))
3234 (string-match re tmp))
3235 (plist-put props 'todo (match-string 1 tmp))
3236 (setq tmp (replace-match "" t t tmp)))
3237 (plist-put props 'txt tmp)))
3238 props)
3240 (defun org-agenda-export-csv-mapper (prop)
3241 (let ((res (plist-get org-agenda-info prop)))
3242 (setq res
3243 (cond
3244 ((not res) "")
3245 ((stringp res) res)
3246 (t (prin1-to-string res))))
3247 (while (string-match "," res)
3248 (setq res (replace-match ";" t t res)))
3249 (org-trim res)))
3251 ;;;###autoload
3252 (defun org-store-agenda-views (&rest parameters)
3253 "Store agenda views."
3254 (interactive)
3255 (eval (list 'org-batch-store-agenda-views)))
3257 ;;;###autoload
3258 (defmacro org-batch-store-agenda-views (&rest parameters)
3259 "Run all custom agenda commands that have a file argument."
3260 (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
3261 (pop-up-frames nil)
3262 (dir default-directory)
3263 (pars (org-make-parameter-alist parameters))
3264 cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
3265 (save-window-excursion
3266 (while cmds
3267 (setq cmd (pop cmds)
3268 thiscmdkey (car cmd)
3269 thiscmdcmd (cdr cmd)
3270 match (nth 2 thiscmdcmd)
3271 bufname (if org-agenda-sticky
3272 (or (and (stringp match)
3273 (format "*Org Agenda(%s:%s)*" thiscmdkey match))
3274 (format "*Org Agenda(%s)*" thiscmdkey))
3275 org-agenda-buffer-name)
3276 cmd-or-set (nth 2 cmd)
3277 opts (nth (if (listp cmd-or-set) 3 4) cmd)
3278 files (nth (if (listp cmd-or-set) 4 5) cmd))
3279 (if (stringp files) (setq files (list files)))
3280 (when files
3281 (org-eval-in-environment (append org-agenda-exporter-settings
3282 opts pars)
3283 (org-agenda nil thiscmdkey))
3284 (set-buffer bufname)
3285 (while files
3286 (org-eval-in-environment (append org-agenda-exporter-settings
3287 opts pars)
3288 (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
3289 (and (get-buffer bufname)
3290 (kill-buffer bufname)))))))
3292 (defvar org-agenda-current-span nil
3293 "The current span used in the agenda view.") ; local variable in the agenda buffer
3294 (defun org-agenda-mark-header-line (pos)
3295 "Mark the line at POS as an agenda structure header."
3296 (save-excursion
3297 (goto-char pos)
3298 (put-text-property (point-at-bol) (point-at-eol)
3299 'org-agenda-structural-header t)
3300 (when org-agenda-title-append
3301 (put-text-property (point-at-bol) (point-at-eol)
3302 'org-agenda-title-append org-agenda-title-append))))
3304 (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
3305 (defvar org-agenda-write-buffer-name "Agenda View")
3306 (defun org-agenda-write (file &optional open nosettings agenda-bufname)
3307 "Write the current buffer (an agenda view) as a file.
3308 Depending on the extension of the file name, plain text (.txt),
3309 HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
3310 If the extension is .ics, run icalendar export over all files used
3311 to construct the agenda and limit the export to entries listed in the
3312 agenda now.
3313 If the extension is .org, collect all subtrees corresponding to the
3314 agenda entries and add them in an .org file.
3315 With prefix argument OPEN, open the new file immediately.
3316 If NOSETTINGS is given, do not scope the settings of
3317 `org-agenda-exporter-settings' into the export commands. This is used when
3318 the settings have already been scoped and we do not wish to overrule other,
3319 higher priority settings.
3320 If AGENDA-BUFFER-NAME, use this as the buffer name for the agenda to write."
3321 (interactive "FWrite agenda to file: \nP")
3322 (if (or (not (file-writable-p file))
3323 (and (file-exists-p file)
3324 (if (org-called-interactively-p 'any)
3325 (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
3326 (user-error "Cannot write agenda to file %s" file))
3327 (org-let (if nosettings nil org-agenda-exporter-settings)
3328 '(save-excursion
3329 (save-window-excursion
3330 (org-agenda-mark-filtered-text)
3331 (let ((bs (copy-sequence (buffer-string))) beg content)
3332 (org-agenda-unmark-filtered-text)
3333 (with-temp-buffer
3334 (rename-buffer org-agenda-write-buffer-name t)
3335 (set-buffer-modified-p nil)
3336 (insert bs)
3337 (org-agenda-remove-marked-text 'org-filtered)
3338 (while (setq beg (text-property-any (point-min) (point-max)
3339 'org-filtered t))
3340 (delete-region
3341 beg (or (next-single-property-change beg 'org-filtered)
3342 (point-max))))
3343 (run-hooks 'org-agenda-before-write-hook)
3344 (cond
3345 ((org-bound-and-true-p org-mobile-creating-agendas)
3346 (org-mobile-write-agenda-for-mobile file))
3347 ((string-match "\\.org\\'" file)
3348 (let (content p m message-log-max)
3349 (goto-char (point-min))
3350 (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
3351 (goto-char p)
3352 (setq m (get-text-property (point) 'org-hd-marker))
3353 (when m
3354 (push (save-excursion
3355 (set-buffer (marker-buffer m))
3356 (goto-char m)
3357 (org-copy-subtree 1 nil t t)
3358 org-subtree-clip)
3359 content)))
3360 (find-file file)
3361 (erase-buffer)
3362 (mapcar (lambda (s) (org-paste-subtree 1 s)) (reverse content))
3363 (write-file file)
3364 (kill-buffer (current-buffer))
3365 (message "Org file written to %s" file)))
3366 ((string-match "\\.html?\\'" file)
3367 (require 'htmlize)
3368 (set-buffer (htmlize-buffer (current-buffer)))
3369 (when org-agenda-export-html-style
3370 ;; replace <style> section with org-agenda-export-html-style
3371 (goto-char (point-min))
3372 (kill-region (- (search-forward "<style") 6)
3373 (search-forward "</style>"))
3374 (insert org-agenda-export-html-style))
3375 (write-file file)
3376 (kill-buffer (current-buffer))
3377 (message "HTML written to %s" file))
3378 ((string-match "\\.ps\\'" file)
3379 (require 'ps-print)
3380 (ps-print-buffer-with-faces file)
3381 (message "Postscript written to %s" file))
3382 ((string-match "\\.pdf\\'" file)
3383 (require 'ps-print)
3384 (ps-print-buffer-with-faces
3385 (concat (file-name-sans-extension file) ".ps"))
3386 (call-process "ps2pdf" nil nil nil
3387 (expand-file-name
3388 (concat (file-name-sans-extension file) ".ps"))
3389 (expand-file-name file))
3390 (delete-file (concat (file-name-sans-extension file) ".ps"))
3391 (message "PDF written to %s" file))
3392 ((string-match "\\.ics\\'" file)
3393 (require 'ox-icalendar)
3394 (org-icalendar-export-current-agenda (expand-file-name file)))
3396 (let ((bs (buffer-string)))
3397 (find-file file)
3398 (erase-buffer)
3399 (insert bs)
3400 (save-buffer 0)
3401 (kill-buffer (current-buffer))
3402 (message "Plain text written to %s" file))))))))
3403 (set-buffer (or agenda-bufname
3404 (and (org-called-interactively-p 'any) (buffer-name))
3405 org-agenda-buffer-name)))
3406 (when open (org-open-file file)))
3408 (defvar org-agenda-tag-filter-overlays nil)
3409 (defvar org-agenda-cat-filter-overlays nil)
3410 (defvar org-agenda-re-filter-overlays nil)
3412 (defun org-agenda-mark-filtered-text ()
3413 "Mark all text hidden by filtering with a text property."
3414 (let ((inhibit-read-only t))
3415 (mapc
3416 (lambda (o)
3417 (when (equal (overlay-buffer o) (current-buffer))
3418 (put-text-property
3419 (overlay-start o) (overlay-end o)
3420 'org-filtered t)))
3421 (append org-agenda-tag-filter-overlays
3422 org-agenda-cat-filter-overlays
3423 org-agenda-re-filter-overlays))))
3425 (defun org-agenda-unmark-filtered-text ()
3426 "Remove the filtering text property."
3427 (let ((inhibit-read-only t))
3428 (remove-text-properties (point-min) (point-max) '(org-filtered t))))
3430 (defun org-agenda-remove-marked-text (property &optional value)
3431 "Delete all text marked with VALUE of PROPERTY.
3432 VALUE defaults to t."
3433 (let (beg)
3434 (setq value (or value t))
3435 (while (setq beg (text-property-any (point-min) (point-max)
3436 property value))
3437 (delete-region
3438 beg (or (next-single-property-change beg 'org-filtered)
3439 (point-max))))))
3441 (defun org-agenda-add-entry-text ()
3442 "Add entry text to agenda lines.
3443 This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
3444 entry text following headings shown in the agenda.
3445 Drawers will be excluded, also the line with scheduling/deadline info."
3446 (when (and (> org-agenda-add-entry-text-maxlines 0)
3447 (not (org-bound-and-true-p org-mobile-creating-agendas)))
3448 (let (m txt)
3449 (goto-char (point-min))
3450 (while (not (eobp))
3451 (if (not (setq m (org-get-at-bol 'org-hd-marker)))
3452 (beginning-of-line 2)
3453 (setq txt (org-agenda-get-some-entry-text
3454 m org-agenda-add-entry-text-maxlines " > "))
3455 (end-of-line 1)
3456 (if (string-match "\\S-" txt)
3457 (insert "\n" txt)
3458 (or (eobp) (forward-char 1))))))))
3460 (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
3461 &rest keep)
3462 "Extract entry text from MARKER, at most N-LINES lines.
3463 This will ignore drawers etc, just get the text.
3464 If INDENT is given, prefix every line with this string. If KEEP is
3465 given, it is a list of symbols, defining stuff that should not be
3466 removed from the entry content. Currently only `planning' is allowed here."
3467 (let (txt drawer-re kwd-time-re ind)
3468 (save-excursion
3469 (with-current-buffer (marker-buffer marker)
3470 (if (not (derived-mode-p 'org-mode))
3471 (setq txt "")
3472 (save-excursion
3473 (save-restriction
3474 (widen)
3475 (goto-char marker)
3476 (end-of-line 1)
3477 (setq txt (buffer-substring
3478 (min (1+ (point)) (point-max))
3479 (progn (outline-next-heading) (point)))
3480 drawer-re org-drawer-regexp
3481 kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
3482 ".*\n?"))
3483 (with-temp-buffer
3484 (insert txt)
3485 (when org-agenda-add-entry-text-descriptive-links
3486 (goto-char (point-min))
3487 (while (org-activate-bracket-links (point-max))
3488 (add-text-properties (match-beginning 0) (match-end 0)
3489 '(face org-link))))
3490 (goto-char (point-min))
3491 (while (re-search-forward org-bracket-link-regexp (point-max) t)
3492 (set-text-properties (match-beginning 0) (match-end 0)
3493 nil))
3494 (goto-char (point-min))
3495 (while (re-search-forward drawer-re nil t)
3496 (delete-region
3497 (match-beginning 0)
3498 (progn (re-search-forward
3499 "^[ \t]*:END:.*\n?" nil 'move)
3500 (point))))
3501 (unless (member 'planning keep)
3502 (goto-char (point-min))
3503 (while (re-search-forward kwd-time-re nil t)
3504 (replace-match "")))
3505 (goto-char (point-min))
3506 (when org-agenda-entry-text-exclude-regexps
3507 (let ((re-list org-agenda-entry-text-exclude-regexps) re)
3508 (while (setq re (pop re-list))
3509 (goto-char (point-min))
3510 (while (re-search-forward re nil t)
3511 (replace-match "")))))
3512 (goto-char (point-max))
3513 (skip-chars-backward " \t\n")
3514 (if (looking-at "[ \t\n]+\\'") (replace-match ""))
3516 ;; find and remove min common indentation
3517 (goto-char (point-min))
3518 (untabify (point-min) (point-max))
3519 (setq ind (org-get-indentation))
3520 (while (not (eobp))
3521 (unless (looking-at "[ \t]*$")
3522 (setq ind (min ind (org-get-indentation))))
3523 (beginning-of-line 2))
3524 (goto-char (point-min))
3525 (while (not (eobp))
3526 (unless (looking-at "[ \t]*$")
3527 (move-to-column ind)
3528 (delete-region (point-at-bol) (point)))
3529 (beginning-of-line 2))
3531 (run-hooks 'org-agenda-entry-text-cleanup-hook)
3533 (goto-char (point-min))
3534 (when indent
3535 (while (and (not (eobp)) (re-search-forward "^" nil t))
3536 (replace-match indent t t)))
3537 (goto-char (point-min))
3538 (while (looking-at "[ \t]*\n") (replace-match ""))
3539 (goto-char (point-max))
3540 (when (> (org-current-line)
3541 n-lines)
3542 (org-goto-line (1+ n-lines))
3543 (backward-char 1))
3544 (setq txt (buffer-substring (point-min) (point)))))))))
3545 txt))
3547 (defun org-check-for-org-mode ()
3548 "Make sure current buffer is in org-mode. Error if not."
3549 (or (derived-mode-p 'org-mode)
3550 (error "Cannot execute org-mode agenda command on buffer in %s"
3551 major-mode)))
3553 ;;; Agenda prepare and finalize
3555 (defvar org-agenda-multi nil) ; dynamically scoped
3556 (defvar org-agenda-pre-window-conf nil)
3557 (defvar org-agenda-columns-active nil)
3558 (defvar org-agenda-name nil)
3559 (defvar org-agenda-tag-filter nil)
3560 (defvar org-agenda-category-filter nil)
3561 (defvar org-agenda-regexp-filter nil)
3562 (defvar org-agenda-top-headline-filter nil)
3563 (defvar org-agenda-tag-filter-while-redo nil)
3564 (defvar org-agenda-tag-filter-preset nil
3565 "A preset of the tags filter used for secondary agenda filtering.
3566 This must be a list of strings, each string must be a single tag preceded
3567 by \"+\" or \"-\".
3568 This variable should not be set directly, but agenda custom commands can
3569 bind it in the options section. The preset filter is a global property of
3570 the entire agenda view. In a block agenda, it will not work reliably to
3571 define a filter for one of the individual blocks. You need to set it in
3572 the global options and expect it to be applied to the entire view.")
3574 (defvar org-agenda-category-filter-preset nil
3575 "A preset of the category filter used for secondary agenda filtering.
3576 This must be a list of strings, each string must be a single category
3577 preceded by \"+\" or \"-\".
3578 This variable should not be set directly, but agenda custom commands can
3579 bind it in the options section. The preset filter is a global property of
3580 the entire agenda view. In a block agenda, it will not work reliably to
3581 define a filter for one of the individual blocks. You need to set it in
3582 the global options and expect it to be applied to the entire view.")
3584 (defvar org-agenda-regexp-filter-preset nil
3585 "A preset of the regexp filter used for secondary agenda filtering.
3586 This must be a list of strings, each string must be a single category
3587 preceded by \"+\" or \"-\".
3588 This variable should not be set directly, but agenda custom commands can
3589 bind it in the options section. The preset filter is a global property of
3590 the entire agenda view. In a block agenda, it will not work reliably to
3591 define a filter for one of the individual blocks. You need to set it in
3592 the global options and expect it to be applied to the entire view.")
3594 (defun org-agenda-use-sticky-p ()
3595 "Return non-nil if an agenda buffer named
3596 `org-agenda-buffer-name' exists and should be shown instead of
3597 generating a new one."
3598 (and
3599 ;; turned off by user
3600 org-agenda-sticky
3601 ;; For multi-agenda buffer already exists
3602 (not org-agenda-multi)
3603 ;; buffer found
3604 (get-buffer org-agenda-buffer-name)
3605 ;; C-u parameter is same as last call
3606 (with-current-buffer (get-buffer org-agenda-buffer-name)
3607 (and
3608 (equal current-prefix-arg
3609 org-agenda-last-prefix-arg)
3610 ;; In case user turned stickiness on, while having existing
3611 ;; Agenda buffer active, don't reuse that buffer, because it
3612 ;; does not have org variables local
3613 org-agenda-this-buffer-is-sticky))))
3615 (defun org-agenda-prepare-window (abuf)
3616 "Setup agenda buffer in the window."
3617 (let* ((awin (get-buffer-window abuf))
3618 wconf)
3619 (cond
3620 ((equal (current-buffer) abuf) nil)
3621 (awin (select-window awin))
3622 ((not (setq wconf (current-window-configuration))))
3623 ((equal org-agenda-window-setup 'current-window)
3624 (org-pop-to-buffer-same-window abuf))
3625 ((equal org-agenda-window-setup 'other-window)
3626 (org-switch-to-buffer-other-window abuf))
3627 ((equal org-agenda-window-setup 'other-frame)
3628 (switch-to-buffer-other-frame abuf))
3629 ((equal org-agenda-window-setup 'reorganize-frame)
3630 (delete-other-windows)
3631 (org-switch-to-buffer-other-window abuf)))
3632 ;; additional test in case agenda is invoked from within agenda
3633 ;; buffer via elisp link
3634 (unless (equal (current-buffer) abuf)
3635 (org-pop-to-buffer-same-window abuf))
3636 (setq org-agenda-pre-window-conf
3637 (or org-agenda-pre-window-conf wconf))))
3639 (defun org-agenda-prepare (&optional name)
3640 (if (org-agenda-use-sticky-p)
3641 (progn
3642 ;; Popup existing buffer
3643 (org-agenda-prepare-window (get-buffer org-agenda-buffer-name))
3644 (message "Sticky Agenda buffer, use `r' to refresh")
3645 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
3646 (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
3647 (setq org-todo-keywords-for-agenda nil)
3648 (unless org-agenda-persistent-filter
3649 (setq org-agenda-tag-filter nil
3650 org-agenda-category-filter nil
3651 org-agenda-regexp-filter nil))
3652 (put 'org-agenda-tag-filter :preset-filter
3653 org-agenda-tag-filter-preset)
3654 (put 'org-agenda-category-filter :preset-filter
3655 org-agenda-category-filter-preset)
3656 (put 'org-agenda-regexp-filter :preset-filter
3657 org-agenda-regexp-filter-preset)
3658 (if org-agenda-multi
3659 (progn
3660 (setq buffer-read-only nil)
3661 (goto-char (point-max))
3662 (unless (or (bobp) org-agenda-compact-blocks
3663 (not org-agenda-block-separator))
3664 (insert "\n"
3665 (if (stringp org-agenda-block-separator)
3666 org-agenda-block-separator
3667 (make-string (window-width) org-agenda-block-separator))
3668 "\n"))
3669 (narrow-to-region (point) (point-max)))
3670 (setq org-done-keywords-for-agenda nil)
3672 ;; Setting any org variables that are in org-agenda-local-vars
3673 ;; list need to be done after the prepare call
3674 (org-agenda-prepare-window (get-buffer-create org-agenda-buffer-name))
3675 (setq buffer-read-only nil)
3676 (org-agenda-reset-markers)
3677 (let ((inhibit-read-only t)) (erase-buffer))
3678 (org-agenda-mode)
3679 (setq org-agenda-buffer (current-buffer))
3680 (setq org-agenda-contributing-files nil)
3681 (setq org-agenda-columns-active nil)
3682 (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
3683 (setq org-todo-keywords-for-agenda
3684 (org-uniquify org-todo-keywords-for-agenda))
3685 (setq org-done-keywords-for-agenda
3686 (org-uniquify org-done-keywords-for-agenda))
3687 (setq org-agenda-last-prefix-arg current-prefix-arg)
3688 (setq org-agenda-this-buffer-name org-agenda-buffer-name)
3689 (and name (not org-agenda-name)
3690 (org-set-local 'org-agenda-name name)))
3691 (setq buffer-read-only nil)))
3693 (defvar org-agenda-overriding-columns-format) ; From org-colview.el
3694 (defun org-agenda-finalize ()
3695 "Finishing touch for the agenda buffer, called just before displaying it."
3696 (unless org-agenda-multi
3697 (save-excursion
3698 (let ((inhibit-read-only t))
3699 (goto-char (point-min))
3700 (save-excursion
3701 (while (org-activate-bracket-links (point-max))
3702 (add-text-properties (match-beginning 0) (match-end 0)
3703 '(face org-link))))
3704 (save-excursion
3705 (while (org-activate-plain-links (point-max))
3706 (add-text-properties (match-beginning 0) (match-end 0)
3707 '(face org-link))))
3708 (unless (eq org-agenda-remove-tags t)
3709 (org-agenda-align-tags))
3710 (unless org-agenda-with-colors
3711 (remove-text-properties (point-min) (point-max) '(face nil)))
3712 (if (and (boundp 'org-agenda-overriding-columns-format)
3713 org-agenda-overriding-columns-format)
3714 (org-set-local 'org-agenda-overriding-columns-format
3715 org-agenda-overriding-columns-format))
3716 (if (and (boundp 'org-agenda-view-columns-initially)
3717 org-agenda-view-columns-initially)
3718 (org-agenda-columns))
3719 (when org-agenda-fontify-priorities
3720 (org-agenda-fontify-priorities))
3721 (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
3722 (org-agenda-dim-blocked-tasks))
3723 ;; We need to widen when `org-agenda-finalize' is called from
3724 ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in')
3725 (when org-clock-current-task
3726 (save-restriction
3727 (widen)
3728 (org-agenda-mark-clocking-task)))
3729 (when org-agenda-entry-text-mode
3730 (org-agenda-entry-text-hide)
3731 (org-agenda-entry-text-show))
3732 (if (and (functionp 'org-habit-insert-consistency-graphs)
3733 (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
3734 (org-habit-insert-consistency-graphs))
3735 (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
3736 (unless (or (eq org-agenda-show-inherited-tags 'always)
3737 (and (listp org-agenda-show-inherited-tags)
3738 (memq org-agenda-type org-agenda-show-inherited-tags))
3739 (and (eq org-agenda-show-inherited-tags t)
3740 (or (eq org-agenda-use-tag-inheritance t)
3741 (and (listp org-agenda-use-tag-inheritance)
3742 (not (memq org-agenda-type
3743 org-agenda-use-tag-inheritance))))))
3744 (let (mrk)
3745 (save-excursion
3746 (goto-char (point-min))
3747 (while (equal (forward-line) 0)
3748 (when (setq mrk (or (get-text-property (point) 'org-hd-marker)
3749 (get-text-property (point) 'org-hd-marker)))
3750 (put-text-property (point-at-bol) (point-at-eol)
3751 'tags (org-with-point-at mrk
3752 (delete-dups
3753 (mapcar 'downcase (org-get-tags-at))))))))))
3754 (run-hooks 'org-agenda-finalize-hook)
3755 (when (or org-agenda-tag-filter (get 'org-agenda-tag-filter :preset-filter))
3756 (org-agenda-filter-apply org-agenda-tag-filter 'tag))
3757 (when (or org-agenda-category-filter (get 'org-agenda-category-filter :preset-filter))
3758 (org-agenda-filter-apply org-agenda-category-filter 'category))
3759 (when (or org-agenda-regexp-filter (get 'org-agenda-regexp-filter :preset-filter))
3760 (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
3761 (org-add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
3763 (defun org-agenda-mark-clocking-task ()
3764 "Mark the current clock entry in the agenda if it is present."
3765 (org-agenda-unmark-clocking-task)
3766 (when (marker-buffer org-clock-hd-marker)
3767 (save-excursion
3768 (goto-char (point-min))
3769 (let (s ov)
3770 (while (setq s (next-single-property-change (point) 'org-hd-marker))
3771 (goto-char s)
3772 (when (equal (org-get-at-bol 'org-hd-marker)
3773 org-clock-hd-marker)
3774 (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
3775 (overlay-put ov 'type 'org-agenda-clocking)
3776 (overlay-put ov 'face 'org-agenda-clocking)
3777 (overlay-put ov 'help-echo
3778 "The clock is running in this item")))))))
3780 (defun org-agenda-unmark-clocking-task ()
3781 "Unmark the current clocking task."
3782 (mapc (lambda (o)
3783 (if (eq (overlay-get o 'type) 'org-agenda-clocking)
3784 (delete-overlay o)))
3785 (overlays-in (point-min) (point-max))))
3787 (defun org-agenda-fontify-priorities ()
3788 "Make highest priority lines bold, and lowest italic."
3789 (interactive)
3790 (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
3791 (delete-overlay o)))
3792 (overlays-in (point-min) (point-max)))
3793 (save-excursion
3794 (let (b e p ov h l)
3795 (goto-char (point-min))
3796 (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
3797 (setq h (or (get-char-property (point) 'org-highest-priority)
3798 org-highest-priority)
3799 l (or (get-char-property (point) 'org-lowest-priority)
3800 org-lowest-priority)
3801 p (string-to-char (match-string 1))
3802 b (match-beginning 0)
3803 e (if (eq org-agenda-fontify-priorities 'cookies)
3804 (match-end 0)
3805 (point-at-eol))
3806 ov (make-overlay b e))
3807 (overlay-put
3808 ov 'face
3809 (cons (cond ((org-face-from-face-or-color
3810 'priority nil
3811 (cdr (assoc p org-priority-faces))))
3812 ((and (listp org-agenda-fontify-priorities)
3813 (org-face-from-face-or-color
3814 'priority nil
3815 (cdr (assoc p org-agenda-fontify-priorities)))))
3816 ((equal p l) 'italic)
3817 ((equal p h) 'bold))
3818 'org-priority))
3819 (overlay-put ov 'org-type 'org-priority)))))
3821 (defvar org-depend-tag-blocked)
3823 (defun org-agenda-dim-blocked-tasks (&optional invisible)
3824 "Dim currently blocked TODO's in the agenda display.
3825 When INVISIBLE is non-nil, hide currently blocked TODO instead of
3826 dimming them."
3827 (interactive "P")
3828 (when (org-called-interactively-p 'interactive)
3829 (message "Dim or hide blocked tasks..."))
3830 (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-blocked-todo)
3831 (delete-overlay o)))
3832 (overlays-in (point-min) (point-max)))
3833 (save-excursion
3834 (let ((inhibit-read-only t)
3835 (org-depend-tag-blocked nil)
3836 (invis (or (not (null invisible))
3837 (eq org-agenda-dim-blocked-tasks 'invisible)))
3838 org-blocked-by-checkboxes
3839 invis1 b e p ov h l)
3840 (goto-char (point-min))
3841 (while (let ((pos (next-single-property-change (point) 'todo-state)))
3842 (and pos (goto-char (1+ pos))))
3843 (setq org-blocked-by-checkboxes nil invis1 invis)
3844 (let ((marker (org-get-at-bol 'org-hd-marker)))
3845 (when (and marker
3846 (with-current-buffer (marker-buffer marker)
3847 (save-excursion (goto-char marker)
3848 (org-entry-blocked-p))))
3849 (if org-blocked-by-checkboxes (setq invis1 nil))
3850 (setq b (if invis1
3851 (max (point-min) (1- (point-at-bol)))
3852 (point-at-bol))
3853 e (point-at-eol)
3854 ov (make-overlay b e))
3855 (if invis1
3856 (overlay-put ov 'invisible t)
3857 (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
3858 (overlay-put ov 'org-type 'org-blocked-todo))))))
3859 (when (org-called-interactively-p 'interactive)
3860 (message "Dim or hide blocked tasks...done")))
3862 (defvar org-agenda-skip-function nil
3863 "Function to be called at each match during agenda construction.
3864 If this function returns nil, the current match should not be skipped.
3865 Otherwise, the function must return a position from where the search
3866 should be continued.
3867 This may also be a Lisp form, it will be evaluated.
3868 Never set this variable using `setq' or so, because then it will apply
3869 to all future agenda commands. If you do want a global skipping condition,
3870 use the option `org-agenda-skip-function-global' instead.
3871 The correct usage for `org-agenda-skip-function' is to bind it with
3872 `let' to scope it dynamically into the agenda-constructing command.
3873 A good way to set it is through options in `org-agenda-custom-commands'.")
3875 (defun org-agenda-skip ()
3876 "Throw to `:skip' in places that should be skipped.
3877 Also moves point to the end of the skipped region, so that search can
3878 continue from there."
3879 (let ((p (point-at-bol)) to)
3880 (when (or
3881 (save-excursion (goto-char p) (looking-at comment-start-skip))
3882 (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
3883 (get-text-property p :org-archived)
3884 (org-end-of-subtree t))
3885 (and org-agenda-skip-comment-trees
3886 (get-text-property p :org-comment)
3887 (org-end-of-subtree t))
3888 (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
3889 (org-agenda-skip-eval org-agenda-skip-function)))
3890 (goto-char to))
3891 (org-in-src-block-p t))
3892 (throw :skip t))))
3894 (defun org-agenda-skip-eval (form)
3895 "If FORM is a function or a list, call (or eval) it and return the result.
3896 `save-excursion' and `save-match-data' are wrapped around the call, so point
3897 and match data are returned to the previous state no matter what these
3898 functions do."
3899 (let (fp)
3900 (and form
3901 (or (setq fp (functionp form))
3902 (consp form))
3903 (save-excursion
3904 (save-match-data
3905 (if fp
3906 (funcall form)
3907 (eval form)))))))
3909 (defvar org-agenda-markers nil
3910 "List of all currently active markers created by `org-agenda'.")
3911 (defvar org-agenda-last-marker-time (org-float-time)
3912 "Creation time of the last agenda marker.")
3914 (defun org-agenda-new-marker (&optional pos)
3915 "Return a new agenda marker.
3916 Org-mode keeps a list of these markers and resets them when they are
3917 no longer in use."
3918 (let ((m (copy-marker (or pos (point)))))
3919 (setq org-agenda-last-marker-time (org-float-time))
3920 (if org-agenda-buffer
3921 (with-current-buffer org-agenda-buffer
3922 (push m org-agenda-markers))
3923 (push m org-agenda-markers))
3926 (defun org-agenda-reset-markers ()
3927 "Reset markers created by `org-agenda'."
3928 (while org-agenda-markers
3929 (move-marker (pop org-agenda-markers) nil)))
3931 (defun org-agenda-save-markers-for-cut-and-paste (beg end)
3932 "Save relative positions of markers in region.
3933 This check for agenda markers in all agenda buffers currently active."
3934 (dolist (buf (buffer-list))
3935 (with-current-buffer buf
3936 (when (eq major-mode 'org-agenda-mode)
3937 (mapc (lambda (m) (org-check-and-save-marker m beg end))
3938 org-agenda-markers)))))
3940 ;;; Entry text mode
3942 (defun org-agenda-entry-text-show-here ()
3943 "Add some text from the entry as context to the current line."
3944 (let (m txt o)
3945 (setq m (org-get-at-bol 'org-hd-marker))
3946 (unless (marker-buffer m)
3947 (error "No marker points to an entry here"))
3948 (setq txt (concat "\n" (org-no-properties
3949 (org-agenda-get-some-entry-text
3950 m org-agenda-entry-text-maxlines
3951 org-agenda-entry-text-leaders))))
3952 (when (string-match "\\S-" txt)
3953 (setq o (make-overlay (point-at-bol) (point-at-eol)))
3954 (overlay-put o 'evaporate t)
3955 (overlay-put o 'org-overlay-type 'agenda-entry-content)
3956 (overlay-put o 'after-string txt))))
3958 (defun org-agenda-entry-text-show ()
3959 "Add entry context for all agenda lines."
3960 (interactive)
3961 (save-excursion
3962 (goto-char (point-max))
3963 (beginning-of-line 1)
3964 (while (not (bobp))
3965 (when (org-get-at-bol 'org-hd-marker)
3966 (org-agenda-entry-text-show-here))
3967 (beginning-of-line 0))))
3969 (defun org-agenda-entry-text-hide ()
3970 "Remove any shown entry context."
3971 (delq nil
3972 (mapcar (lambda (o)
3973 (if (eq (overlay-get o 'org-overlay-type)
3974 'agenda-entry-content)
3975 (progn (delete-overlay o) t)))
3976 (overlays-in (point-min) (point-max)))))
3978 (defun org-agenda-get-day-face (date)
3979 "Return the face DATE should be displayed with."
3980 (or (and (functionp org-agenda-day-face-function)
3981 (funcall org-agenda-day-face-function date))
3982 (cond ((org-agenda-todayp date)
3983 'org-agenda-date-today)
3984 ((member (calendar-day-of-week date) org-agenda-weekend-days)
3985 'org-agenda-date-weekend)
3986 (t 'org-agenda-date))))
3988 ;;; Agenda timeline
3990 (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
3991 (defvar org-agenda-show-log-scoped) ;; dynamically scope in `org-timeline' or `org-agenda-list'
3993 (defun org-timeline (&optional dotodo)
3994 "Show a time-sorted view of the entries in the current org file.
3995 Only entries with a time stamp of today or later will be listed. With
3996 \\[universal-argument] prefix, all unfinished TODO items will also be shown,
3997 under the current date.
3998 If the buffer contains an active region, only check the region for
3999 dates."
4000 (interactive "P")
4001 (let* ((dopast t)
4002 (org-agenda-show-log-scoped org-agenda-show-log)
4003 (org-agenda-show-log org-agenda-show-log-scoped)
4004 (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
4005 (current-buffer))))
4006 (date (calendar-current-date))
4007 (beg (if (org-region-active-p) (region-beginning) (point-min)))
4008 (end (if (org-region-active-p) (region-end) (point-max)))
4009 (day-numbers (org-get-all-dates
4010 beg end 'no-ranges
4011 t org-agenda-show-log-scoped ; always include today
4012 org-timeline-show-empty-dates))
4013 (org-deadline-warning-days 0)
4014 (org-agenda-only-exact-dates t)
4015 (today (org-today))
4016 (past t)
4017 args
4018 s e rtn d emptyp)
4019 (setq org-agenda-redo-command
4020 (list 'let
4021 (list (list 'org-agenda-show-log 'org-agenda-show-log))
4022 (list 'org-switch-to-buffer-other-window (current-buffer))
4023 (list 'org-timeline (list 'quote dotodo))))
4024 (put 'org-agenda-redo-command 'org-lprops nil)
4025 (if (not dopast)
4026 ;; Remove past dates from the list of dates.
4027 (setq day-numbers (delq nil (mapcar (lambda(x)
4028 (if (>= x today) x nil))
4029 day-numbers))))
4030 (org-agenda-prepare (concat "Timeline " (file-name-nondirectory entry)))
4031 (org-compile-prefix-format 'timeline)
4032 (org-set-sorting-strategy 'timeline)
4033 (if org-agenda-show-log-scoped (push :closed args))
4034 (push :timestamp args)
4035 (push :deadline args)
4036 (push :scheduled args)
4037 (push :sexp args)
4038 (if dotodo (push :todo args))
4039 (insert "Timeline of file " entry "\n")
4040 (add-text-properties (point-min) (point)
4041 (list 'face 'org-agenda-structure))
4042 (org-agenda-mark-header-line (point-min))
4043 (while (setq d (pop day-numbers))
4044 (if (and (listp d) (eq (car d) :omitted))
4045 (progn
4046 (setq s (point))
4047 (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
4048 (put-text-property s (1- (point)) 'face 'org-agenda-structure))
4049 (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
4050 (if (and (>= d today)
4051 dopast
4052 past)
4053 (progn
4054 (setq past nil)
4055 (insert (make-string 79 ?-) "\n")))
4056 (setq date (calendar-gregorian-from-absolute d))
4057 (setq s (point))
4058 (setq rtn (and (not emptyp)
4059 (apply 'org-agenda-get-day-entries entry
4060 date args)))
4061 (if (or rtn (equal d today) org-timeline-show-empty-dates)
4062 (progn
4063 (insert
4064 (if (stringp org-agenda-format-date)
4065 (format-time-string org-agenda-format-date
4066 (org-time-from-absolute date))
4067 (funcall org-agenda-format-date date))
4068 "\n")
4069 (put-text-property s (1- (point)) 'face
4070 (org-agenda-get-day-face date))
4071 (put-text-property s (1- (point)) 'org-date-line t)
4072 (put-text-property s (1- (point)) 'org-agenda-date-header t)
4073 (if (equal d today)
4074 (put-text-property s (1- (point)) 'org-today t))
4075 (and rtn (insert (org-agenda-finalize-entries rtn 'timeline) "\n"))
4076 (put-text-property s (1- (point)) 'day d)))))
4077 (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
4078 (point-min)))
4079 (add-text-properties
4080 (point-min) (point-max)
4081 `(org-agenda-type timeline org-redo-cmd ,org-agenda-redo-command))
4082 (org-agenda-finalize)
4083 (setq buffer-read-only t)))
4085 (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
4086 "Return a list of all relevant day numbers from BEG to END buffer positions.
4087 If NO-RANGES is non-nil, include only the start and end dates of a range,
4088 not every single day in the range. If FORCE-TODAY is non-nil, make
4089 sure that TODAY is included in the list. If INACTIVE is non-nil, also
4090 inactive time stamps (those in square brackets) are included.
4091 When EMPTY is non-nil, also include days without any entries."
4092 (let ((re (concat
4093 (if pre-re pre-re "")
4094 (if inactive org-ts-regexp-both org-ts-regexp)))
4095 dates dates1 date day day1 day2 ts1 ts2 pos)
4096 (if force-today
4097 (setq dates (list (org-today))))
4098 (save-excursion
4099 (goto-char beg)
4100 (while (re-search-forward re end t)
4101 (setq day (time-to-days (org-time-string-to-time
4102 (substring (match-string 1) 0 10)
4103 (current-buffer) (match-beginning 0))))
4104 (or (memq day dates) (push day dates)))
4105 (unless no-ranges
4106 (goto-char beg)
4107 (while (re-search-forward org-tr-regexp end t)
4108 (setq pos (match-beginning 0))
4109 (setq ts1 (substring (match-string 1) 0 10)
4110 ts2 (substring (match-string 2) 0 10)
4111 day1 (time-to-days (org-time-string-to-time
4112 ts1 (current-buffer) pos))
4113 day2 (time-to-days (org-time-string-to-time
4114 ts2 (current-buffer) pos)))
4115 (while (< (setq day1 (1+ day1)) day2)
4116 (or (memq day1 dates) (push day1 dates)))))
4117 (setq dates (sort dates '<))
4118 (when empty
4119 (while (setq day (pop dates))
4120 (setq day2 (car dates))
4121 (push day dates1)
4122 (when (and day2 empty)
4123 (if (or (eq empty t)
4124 (and (numberp empty) (<= (- day2 day) empty)))
4125 (while (< (setq day (1+ day)) day2)
4126 (push (list day) dates1))
4127 (push (cons :omitted (- day2 day)) dates1))))
4128 (setq dates (nreverse dates1)))
4129 dates)))
4131 ;;; Agenda Daily/Weekly
4133 (defvar org-agenda-start-day nil ; dynamically scoped parameter
4134 "Start day for the agenda view.
4135 Custom commands can set this variable in the options section.
4136 This is usually a string like \"2007-11-01\", \"+2d\" or any other
4137 input allowed when reading a date through the Org calendar.
4138 See the docstring of `org-read-date' for details.")
4139 (defvar org-starting-day nil) ; local variable in the agenda buffer
4140 (defvar org-arg-loc nil) ; local variable
4142 (defvar org-agenda-buffer-tmp-name nil)
4143 ;;;###autoload
4144 (defun org-agenda-list (&optional arg start-day span with-hour)
4145 "Produce a daily/weekly view from all files in variable `org-agenda-files'.
4146 The view will be for the current day or week, but from the overview buffer
4147 you will be able to go to other days/weeks.
4149 With a numeric prefix argument in an interactive call, the agenda will
4150 span ARG days. Lisp programs should instead specify SPAN to change
4151 the number of days. SPAN defaults to `org-agenda-span'.
4153 START-DAY defaults to TODAY, or to the most recent match for the weekday
4154 given in `org-agenda-start-on-weekday'.
4156 When WITH-HOUR is non-nil, only include scheduled and deadline
4157 items if they have an hour specification like [h]h:mm."
4158 (interactive "P")
4159 (if org-agenda-overriding-arguments
4160 (setq arg (car org-agenda-overriding-arguments)
4161 start-day (nth 1 org-agenda-overriding-arguments)
4162 span (nth 2 org-agenda-overriding-arguments)))
4163 (if (and (integerp arg) (> arg 0))
4164 (setq span arg arg nil))
4165 (catch 'exit
4166 (setq org-agenda-buffer-name
4167 (or org-agenda-buffer-tmp-name
4168 (if org-agenda-sticky
4169 (cond ((and org-keys (stringp org-match))
4170 (format "*Org Agenda(%s:%s)*" org-keys org-match))
4171 (org-keys
4172 (format "*Org Agenda(%s)*" org-keys))
4173 (t "*Org Agenda(a)*")))
4174 org-agenda-buffer-name))
4175 (org-agenda-prepare "Day/Week")
4176 (setq start-day (or start-day org-agenda-start-day))
4177 (if (stringp start-day)
4178 ;; Convert to an absolute day number
4179 (setq start-day (time-to-days (org-read-date nil t start-day))))
4180 (org-compile-prefix-format 'agenda)
4181 (org-set-sorting-strategy 'agenda)
4182 (let* ((span (org-agenda-ndays-to-span
4183 (or span org-agenda-ndays org-agenda-span)))
4184 (today (org-today))
4185 (sd (or start-day today))
4186 (ndays (org-agenda-span-to-ndays span sd))
4187 (org-agenda-start-on-weekday
4188 (if (or (eq ndays 7) (eq ndays 14))
4189 org-agenda-start-on-weekday))
4190 (thefiles (org-agenda-files nil 'ifmode))
4191 (files thefiles)
4192 (start (if (or (null org-agenda-start-on-weekday)
4193 (< ndays 7))
4195 (let* ((nt (calendar-day-of-week
4196 (calendar-gregorian-from-absolute sd)))
4197 (n1 org-agenda-start-on-weekday)
4198 (d (- nt n1)))
4199 (- sd (+ (if (< d 0) 7 0) d)))))
4200 (day-numbers (list start))
4201 (day-cnt 0)
4202 (inhibit-redisplay (not debug-on-error))
4203 (org-agenda-show-log-scoped org-agenda-show-log)
4204 s e rtn rtnall file date d start-pos end-pos todayp
4205 clocktable-start clocktable-end filter)
4206 (setq org-agenda-redo-command
4207 (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
4208 (dotimes (n (1- ndays))
4209 (push (1+ (car day-numbers)) day-numbers))
4210 (setq day-numbers (nreverse day-numbers))
4211 (setq clocktable-start (car day-numbers)
4212 clocktable-end (1+ (or (org-last day-numbers) 0)))
4213 (org-set-local 'org-starting-day (car day-numbers))
4214 (org-set-local 'org-arg-loc arg)
4215 (org-set-local 'org-agenda-current-span (org-agenda-ndays-to-span span))
4216 (unless org-agenda-compact-blocks
4217 (let* ((d1 (car day-numbers))
4218 (d2 (org-last day-numbers))
4219 (w1 (org-days-to-iso-week d1))
4220 (w2 (org-days-to-iso-week d2)))
4221 (setq s (point))
4222 (if org-agenda-overriding-header
4223 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4224 nil 'face 'org-agenda-structure) "\n")
4225 (insert (org-agenda-span-name span)
4226 "-agenda"
4227 (if (< (- d2 d1) 350)
4228 (if (= w1 w2)
4229 (format " (W%02d)" w1)
4230 (format " (W%02d-W%02d)" w1 w2))
4232 ":\n")))
4233 (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
4234 'org-date-line t))
4235 (org-agenda-mark-header-line s))
4236 (while (setq d (pop day-numbers))
4237 (setq date (calendar-gregorian-from-absolute d)
4238 s (point))
4239 (if (or (setq todayp (= d today))
4240 (and (not start-pos) (= d sd)))
4241 (setq start-pos (point))
4242 (if (and start-pos (not end-pos))
4243 (setq end-pos (point))))
4244 (setq files thefiles
4245 rtnall nil)
4246 (while (setq file (pop files))
4247 (catch 'nextfile
4248 (org-check-agenda-file file)
4249 (let ((org-agenda-entry-types org-agenda-entry-types))
4250 ;; Starred types override non-starred equivalents
4251 (when (member :deadline* org-agenda-entry-types)
4252 (setq org-agenda-entry-types
4253 (delq :deadline org-agenda-entry-types)))
4254 (when (member :scheduled* org-agenda-entry-types)
4255 (setq org-agenda-entry-types
4256 (delq :scheduled org-agenda-entry-types)))
4257 ;; Honor with-hour
4258 (when with-hour
4259 (when (member :deadline org-agenda-entry-types)
4260 (setq org-agenda-entry-types
4261 (delq :deadline org-agenda-entry-types))
4262 (push :deadline* org-agenda-entry-types))
4263 (when (member :scheduled org-agenda-entry-types)
4264 (setq org-agenda-entry-types
4265 (delq :scheduled org-agenda-entry-types))
4266 (push :scheduled* org-agenda-entry-types)))
4267 (unless org-agenda-include-deadlines
4268 (setq org-agenda-entry-types
4269 (delq :deadline* (delq :deadline org-agenda-entry-types))))
4270 (cond
4271 ((memq org-agenda-show-log-scoped '(only clockcheck))
4272 (setq rtn (org-agenda-get-day-entries
4273 file date :closed)))
4274 (org-agenda-show-log-scoped
4275 (setq rtn (apply 'org-agenda-get-day-entries
4276 file date
4277 (append '(:closed) org-agenda-entry-types))))
4279 (setq rtn (apply 'org-agenda-get-day-entries
4280 file date
4281 org-agenda-entry-types)))))
4282 (setq rtnall (append rtnall rtn)))) ;; all entries
4283 (if org-agenda-include-diary
4284 (let ((org-agenda-search-headline-for-time t))
4285 (require 'diary-lib)
4286 (setq rtn (org-get-entries-from-diary date))
4287 (setq rtnall (append rtnall rtn))))
4288 (if (or rtnall org-agenda-show-all-dates)
4289 (progn
4290 (setq day-cnt (1+ day-cnt))
4291 (insert
4292 (if (stringp org-agenda-format-date)
4293 (format-time-string org-agenda-format-date
4294 (org-time-from-absolute date))
4295 (funcall org-agenda-format-date date))
4296 "\n")
4297 (put-text-property s (1- (point)) 'face
4298 (org-agenda-get-day-face date))
4299 (put-text-property s (1- (point)) 'org-date-line t)
4300 (put-text-property s (1- (point)) 'org-agenda-date-header t)
4301 (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
4302 (when todayp
4303 (put-text-property s (1- (point)) 'org-today t))
4304 (setq rtnall
4305 (org-agenda-add-time-grid-maybe rtnall ndays todayp))
4306 (if rtnall (insert ;; all entries
4307 (org-agenda-finalize-entries rtnall 'agenda)
4308 "\n"))
4309 (put-text-property s (1- (point)) 'day d)
4310 (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
4311 (when (and org-agenda-clockreport-mode clocktable-start)
4312 (let ((org-agenda-files (org-agenda-files nil 'ifmode))
4313 ;; the above line is to ensure the restricted range!
4314 (p (copy-sequence org-agenda-clockreport-parameter-plist))
4315 tbl)
4316 (setq p (org-plist-delete p :block))
4317 (setq p (plist-put p :tstart clocktable-start))
4318 (setq p (plist-put p :tend clocktable-end))
4319 (setq p (plist-put p :scope 'agenda))
4320 (when (and (eq org-agenda-clockreport-mode 'with-filter)
4321 (setq filter (or org-agenda-tag-filter-while-redo
4322 (get 'org-agenda-tag-filter :preset-filter))))
4323 (setq p (plist-put p :tags (mapconcat (lambda (x)
4324 (if (string-match "[<>=]" x)
4327 filter ""))))
4328 (setq tbl (apply 'org-clock-get-clocktable p))
4329 (insert tbl)))
4330 (goto-char (point-min))
4331 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4332 (unless (and (pos-visible-in-window-p (point-min))
4333 (pos-visible-in-window-p (point-max)))
4334 (goto-char (1- (point-max)))
4335 (recenter -1)
4336 (if (not (pos-visible-in-window-p (or start-pos 1)))
4337 (progn
4338 (goto-char (or start-pos 1))
4339 (recenter 1))))
4340 (goto-char (or start-pos 1))
4341 (add-text-properties (point-min) (point-max)
4342 `(org-agenda-type agenda
4343 org-last-args (,arg ,start-day ,span)
4344 org-redo-cmd ,org-agenda-redo-command
4345 org-series-cmd ,org-cmd))
4346 (if (eq org-agenda-show-log-scoped 'clockcheck)
4347 (org-agenda-show-clocking-issues))
4348 (org-agenda-finalize)
4349 (setq buffer-read-only t)
4350 (message ""))))
4352 (defun org-agenda-ndays-to-span (n)
4353 "Return a span symbol for a span of N days, or N if none matches."
4354 (cond ((symbolp n) n)
4355 ((= n 1) 'day)
4356 ((= n 7) 'week)
4357 ((= n 14) 'fortnight)
4358 (t n)))
4360 (defun org-agenda-span-to-ndays (span &optional start-day)
4361 "Return ndays from SPAN, possibly starting at START-DAY.
4362 START-DAY is an absolute time value."
4363 (cond ((numberp span) span)
4364 ((eq span 'day) 1)
4365 ((eq span 'week) 7)
4366 ((eq span 'fortnight) 14)
4367 ((eq span 'month)
4368 (let ((date (calendar-gregorian-from-absolute start-day)))
4369 (calendar-last-day-of-month (car date) (caddr date))))
4370 ((eq span 'year)
4371 (let ((date (calendar-gregorian-from-absolute start-day)))
4372 (if (calendar-leap-year-p (caddr date)) 366 365)))))
4374 (defun org-agenda-span-name (span)
4375 "Return a SPAN name."
4376 (if (null span)
4378 (if (symbolp span)
4379 (capitalize (symbol-name span))
4380 (format "%d days" span))))
4382 ;;; Agenda word search
4384 (defvar org-agenda-search-history nil)
4386 (defvar org-search-syntax-table nil
4387 "Special syntax table for org-mode search.
4388 In this table, we have single quotes not as word constituents, to
4389 that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
4391 (defvar org-mode-syntax-table) ; From org.el
4392 (defun org-search-syntax-table ()
4393 (unless org-search-syntax-table
4394 (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
4395 (modify-syntax-entry ?' "." org-search-syntax-table)
4396 (modify-syntax-entry ?` "." org-search-syntax-table))
4397 org-search-syntax-table)
4399 (defvar org-agenda-last-search-view-search-was-boolean nil)
4401 ;;;###autoload
4402 (defun org-search-view (&optional todo-only string edit-at)
4403 "Show all entries that contain a phrase or words or regular expressions.
4405 With optional prefix argument TODO-ONLY, only consider entries that are
4406 TODO entries. The argument STRING can be used to pass a default search
4407 string into this function. If EDIT-AT is non-nil, it means that the
4408 user should get a chance to edit this string, with cursor at position
4409 EDIT-AT.
4411 The search string can be viewed either as a phrase that should be found as
4412 is, or it can be broken into a number of snippets, each of which must match
4413 in a Boolean way to select an entry. The default depends on the variable
4414 `org-agenda-search-view-always-boolean'.
4415 Even if this is turned off (the default) you can always switch to
4416 Boolean search dynamically by preceding the first word with \"+\" or \"-\".
4418 The default is a direct search of the whole phrase, where each space in
4419 the search string can expand to an arbitrary amount of whitespace,
4420 including newlines.
4422 If using a Boolean search, the search string is split on whitespace and
4423 each snippet is searched separately, with logical AND to select an entry.
4424 Words prefixed with a minus must *not* occur in the entry. Words without
4425 a prefix or prefixed with a plus must occur in the entry. Matching is
4426 case-insensitive. Words are enclosed by word delimiters (i.e. they must
4427 match whole words, not parts of a word) if
4428 `org-agenda-search-view-force-full-words' is set (default is nil).
4430 Boolean search snippets enclosed by curly braces are interpreted as
4431 regular expressions that must or (when preceded with \"-\") must not
4432 match in the entry. Snippets enclosed into double quotes will be taken
4433 as a whole, to include whitespace.
4435 - If the search string starts with an asterisk, search only in headlines.
4436 - If (possibly after the leading star) the search string starts with an
4437 exclamation mark, this also means to look at TODO entries only, an effect
4438 that can also be achieved with a prefix argument.
4439 - If (possibly after star and exclamation mark) the search string starts
4440 with a colon, this will mean that the (non-regexp) snippets of the
4441 Boolean search must match as full words.
4443 This command searches the agenda files, and in addition the files listed
4444 in `org-agenda-text-search-extra-files'."
4445 (interactive "P")
4446 (if org-agenda-overriding-arguments
4447 (setq todo-only (car org-agenda-overriding-arguments)
4448 string (nth 1 org-agenda-overriding-arguments)
4449 edit-at (nth 2 org-agenda-overriding-arguments)))
4450 (let* ((props (list 'face nil
4451 'done-face 'org-agenda-done
4452 'org-not-done-regexp org-not-done-regexp
4453 'org-todo-regexp org-todo-regexp
4454 'org-complex-heading-regexp org-complex-heading-regexp
4455 'mouse-face 'highlight
4456 'help-echo (format "mouse-2 or RET jump to location")))
4457 (full-words org-agenda-search-view-force-full-words)
4458 (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
4459 regexp rtn rtnall files file pos inherited-tags
4460 marker category category-pos level tags c neg re boolean
4461 ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
4462 (unless (and (not edit-at)
4463 (stringp string)
4464 (string-match "\\S-" string))
4465 (setq string (read-string
4466 (if org-agenda-search-view-always-boolean
4467 "[+-]Word/{Regexp} ...: "
4468 "Phrase or [+-]Word/{Regexp} ...: ")
4469 (cond
4470 ((integerp edit-at) (cons string edit-at))
4471 (edit-at string))
4472 'org-agenda-search-history)))
4473 (catch 'exit
4474 (if org-agenda-sticky
4475 (setq org-agenda-buffer-name
4476 (if (stringp string)
4477 (format "*Org Agenda(%s:%s)*"
4478 (or org-keys (or (and todo-only "S") "s")) string)
4479 (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
4480 (org-agenda-prepare "SEARCH")
4481 (org-compile-prefix-format 'search)
4482 (org-set-sorting-strategy 'search)
4483 (setq org-agenda-redo-command
4484 (list 'org-search-view (if todo-only t nil)
4485 (list 'if 'current-prefix-arg nil string)))
4486 (setq org-agenda-query-string string)
4487 (if (equal (string-to-char string) ?*)
4488 (setq hdl-only t
4489 words (substring string 1))
4490 (setq words string))
4491 (when (equal (string-to-char words) ?!)
4492 (setq todo-only t
4493 words (substring words 1)))
4494 (when (equal (string-to-char words) ?:)
4495 (setq full-words t
4496 words (substring words 1)))
4497 (if (or org-agenda-search-view-always-boolean
4498 (member (string-to-char words) '(?- ?+ ?\{)))
4499 (setq boolean t))
4500 (setq words (org-split-string words))
4501 (let (www w)
4502 (while (setq w (pop words))
4503 (while (and (string-match "\\\\\\'" w) words)
4504 (setq w (concat (substring w 0 -1) " " (pop words))))
4505 (push w www))
4506 (setq words (nreverse www) www nil)
4507 (while (setq w (pop words))
4508 (when (and (string-match "\\`[-+]?{" w)
4509 (not (string-match "}\\'" w)))
4510 (while (and words (not (string-match "}\\'" (car words))))
4511 (setq w (concat w " " (pop words))))
4512 (setq w (concat w " " (pop words))))
4513 (push w www))
4514 (setq words (nreverse www)))
4515 (setq org-agenda-last-search-view-search-was-boolean boolean)
4516 (when boolean
4517 (let (wds w)
4518 (while (setq w (pop words))
4519 (if (or (equal (substring w 0 1) "\"")
4520 (and (> (length w) 1)
4521 (member (substring w 0 1) '("+" "-"))
4522 (equal (substring w 1 2) "\"")))
4523 (while (and words (not (equal (substring w -1) "\"")))
4524 (setq w (concat w " " (pop words)))))
4525 (and (string-match "\\`\\([-+]?\\)\"" w)
4526 (setq w (replace-match "\\1" nil nil w)))
4527 (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
4528 (push w wds))
4529 (setq words (nreverse wds))))
4530 (if boolean
4531 (mapc (lambda (w)
4532 (setq c (string-to-char w))
4533 (if (equal c ?-)
4534 (setq neg t w (substring w 1))
4535 (if (equal c ?+)
4536 (setq neg nil w (substring w 1))
4537 (setq neg nil)))
4538 (if (string-match "\\`{.*}\\'" w)
4539 (setq re (substring w 1 -1))
4540 (if full-words
4541 (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
4542 (setq re (regexp-quote (downcase w)))))
4543 (if neg (push re regexps-) (push re regexps+)))
4544 words)
4545 (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
4546 regexps+))
4547 (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
4548 (if (not regexps+)
4549 (setq regexp org-outline-regexp-bol)
4550 (setq regexp (pop regexps+))
4551 (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
4552 regexp))))
4553 (setq files (org-agenda-files nil 'ifmode))
4554 (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
4555 (pop org-agenda-text-search-extra-files)
4556 (setq files (org-add-archive-files files)))
4557 (setq files (append files org-agenda-text-search-extra-files)
4558 rtnall nil)
4559 (while (setq file (pop files))
4560 (setq ee nil)
4561 (catch 'nextfile
4562 (org-check-agenda-file file)
4563 (setq buffer (if (file-exists-p file)
4564 (org-get-agenda-file-buffer file)
4565 (error "No such file %s" file)))
4566 (if (not buffer)
4567 ;; If file does not exist, make sure an error message is sent
4568 (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
4569 file))))
4570 (with-current-buffer buffer
4571 (with-syntax-table (org-search-syntax-table)
4572 (unless (derived-mode-p 'org-mode)
4573 (error "Agenda file %s is not in `org-mode'" file))
4574 (let ((case-fold-search t))
4575 (save-excursion
4576 (save-restriction
4577 (if (eq buffer org-agenda-restrict)
4578 (narrow-to-region org-agenda-restrict-begin
4579 org-agenda-restrict-end)
4580 (widen))
4581 (goto-char (point-min))
4582 (unless (or (org-at-heading-p)
4583 (outline-next-heading))
4584 (throw 'nextfile t))
4585 (goto-char (max (point-min) (1- (point))))
4586 (while (re-search-forward regexp nil t)
4587 (org-back-to-heading t)
4588 (while (and (not (zerop org-agenda-search-view-max-outline-level))
4589 (> (org-reduced-level (org-outline-level))
4590 org-agenda-search-view-max-outline-level)
4591 (forward-line -1)
4592 (outline-back-to-heading t)))
4593 (skip-chars-forward "* ")
4594 (setq beg (point-at-bol)
4595 beg1 (point)
4596 end (progn
4597 (outline-next-heading)
4598 (while (and (not (zerop org-agenda-search-view-max-outline-level))
4599 (> (org-reduced-level (org-outline-level))
4600 org-agenda-search-view-max-outline-level)
4601 (forward-line 1)
4602 (outline-next-heading)))
4603 (point)))
4605 (catch :skip
4606 (goto-char beg)
4607 (org-agenda-skip)
4608 (setq str (buffer-substring-no-properties
4609 (point-at-bol)
4610 (if hdl-only (point-at-eol) end)))
4611 (mapc (lambda (wr) (when (string-match wr str)
4612 (goto-char (1- end))
4613 (throw :skip t)))
4614 regexps-)
4615 (mapc (lambda (wr) (unless (string-match wr str)
4616 (goto-char (1- end))
4617 (throw :skip t)))
4618 (if todo-only
4619 (cons (concat "^\*+[ \t]+" org-not-done-regexp)
4620 regexps+)
4621 regexps+))
4622 (goto-char beg)
4623 (setq marker (org-agenda-new-marker (point))
4624 category (org-get-category)
4625 level (make-string (org-reduced-level (org-outline-level)) ? )
4626 category-pos (get-text-property (point) 'org-category-position)
4627 inherited-tags
4628 (or (eq org-agenda-show-inherited-tags 'always)
4629 (and (listp org-agenda-show-inherited-tags)
4630 (memq 'todo org-agenda-show-inherited-tags))
4631 (and (eq org-agenda-show-inherited-tags t)
4632 (or (eq org-agenda-use-tag-inheritance t)
4633 (memq 'todo org-agenda-use-tag-inheritance))))
4634 tags (org-get-tags-at nil (not inherited-tags))
4635 txt (org-agenda-format-item
4637 (buffer-substring-no-properties
4638 beg1 (point-at-eol))
4639 level category tags t))
4640 (org-add-props txt props
4641 'org-marker marker 'org-hd-marker marker
4642 'org-todo-regexp org-todo-regexp
4643 'level level
4644 'org-complex-heading-regexp org-complex-heading-regexp
4645 'priority 1000 'org-category category
4646 'org-category-position category-pos
4647 'type "search")
4648 (push txt ee)
4649 (goto-char (1- end))))))))))
4650 (setq rtn (nreverse ee))
4651 (setq rtnall (append rtnall rtn)))
4652 (if org-agenda-overriding-header
4653 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4654 nil 'face 'org-agenda-structure) "\n")
4655 (insert "Search words: ")
4656 (add-text-properties (point-min) (1- (point))
4657 (list 'face 'org-agenda-structure))
4658 (setq pos (point))
4659 (insert string "\n")
4660 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
4661 (setq pos (point))
4662 (unless org-agenda-multi
4663 (insert "Press `[', `]' to add/sub word, `{', `}' to add/sub regexp, `C-u r' to edit\n")
4664 (add-text-properties pos (1- (point))
4665 (list 'face 'org-agenda-structure))))
4666 (org-agenda-mark-header-line (point-min))
4667 (when rtnall
4668 (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
4669 (goto-char (point-min))
4670 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4671 (add-text-properties (point-min) (point-max)
4672 `(org-agenda-type search
4673 org-last-args (,todo-only ,string ,edit-at)
4674 org-redo-cmd ,org-agenda-redo-command
4675 org-series-cmd ,org-cmd))
4676 (org-agenda-finalize)
4677 (setq buffer-read-only t))))
4679 ;;; Agenda TODO list
4681 (defun org-agenda-propertize-selected-todo-keywords (keywords)
4682 "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
4683 (concat
4684 (if (or (equal keywords "ALL") (not keywords))
4685 (propertize "ALL" 'face 'warning)
4686 (mapconcat
4687 (lambda (kw)
4688 (propertize kw 'face (org-get-todo-face kw)))
4689 (org-split-string keywords "|")
4690 "|"))
4691 "\n"))
4693 (defvar org-select-this-todo-keyword nil)
4694 (defvar org-last-arg nil)
4696 ;;;###autoload
4697 (defun org-todo-list (&optional arg)
4698 "Show all (not done) TODO entries from all agenda file in a single list.
4699 The prefix arg can be used to select a specific TODO keyword and limit
4700 the list to these. When using \\[universal-argument], you will be prompted
4701 for a keyword. A numeric prefix directly selects the Nth keyword in
4702 `org-todo-keywords-1'."
4703 (interactive "P")
4704 (if org-agenda-overriding-arguments
4705 (setq arg org-agenda-overriding-arguments))
4706 (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
4707 (let* ((today (org-today))
4708 (date (calendar-gregorian-from-absolute today))
4709 (kwds org-todo-keywords-for-agenda)
4710 (completion-ignore-case t)
4711 (org-select-this-todo-keyword
4712 (if (stringp arg) arg
4713 (and arg (integerp arg) (> arg 0)
4714 (nth (1- arg) kwds))))
4715 rtn rtnall files file pos)
4716 (when (equal arg '(4))
4717 (setq org-select-this-todo-keyword
4718 (org-icompleting-read "Keyword (or KWD1|K2D2|...): "
4719 (mapcar 'list kwds) nil nil)))
4720 (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
4721 (catch 'exit
4722 (if org-agenda-sticky
4723 (setq org-agenda-buffer-name
4724 (if (stringp org-select-this-todo-keyword)
4725 (format "*Org Agenda(%s:%s)*" (or org-keys "t")
4726 org-select-this-todo-keyword)
4727 (format "*Org Agenda(%s)*" (or org-keys "t")))))
4728 (org-agenda-prepare "TODO")
4729 (org-compile-prefix-format 'todo)
4730 (org-set-sorting-strategy 'todo)
4731 (setq org-agenda-redo-command
4732 `(org-todo-list (or (and (numberp current-prefix-arg)
4733 current-prefix-arg)
4734 ,org-select-this-todo-keyword
4735 current-prefix-arg ,arg)))
4736 (setq files (org-agenda-files nil 'ifmode)
4737 rtnall nil)
4738 (while (setq file (pop files))
4739 (catch 'nextfile
4740 (org-check-agenda-file file)
4741 (setq rtn (org-agenda-get-day-entries file date :todo))
4742 (setq rtnall (append rtnall rtn))))
4743 (if org-agenda-overriding-header
4744 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4745 nil 'face 'org-agenda-structure) "\n")
4746 (insert "Global list of TODO items of type: ")
4747 (add-text-properties (point-min) (1- (point))
4748 (list 'face 'org-agenda-structure
4749 'short-heading
4750 (concat "ToDo: "
4751 (or org-select-this-todo-keyword "ALL"))))
4752 (org-agenda-mark-header-line (point-min))
4753 (insert (org-agenda-propertize-selected-todo-keywords
4754 org-select-this-todo-keyword))
4755 (setq pos (point))
4756 (unless org-agenda-multi
4757 (insert "Available with `N r': (0)[ALL]")
4758 (let ((n 0) s)
4759 (mapc (lambda (x)
4760 (setq s (format "(%d)%s" (setq n (1+ n)) x))
4761 (if (> (+ (current-column) (string-width s) 1) (frame-width))
4762 (insert "\n "))
4763 (insert " " s))
4764 kwds))
4765 (insert "\n"))
4766 (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
4767 (org-agenda-mark-header-line (point-min))
4768 (when rtnall
4769 (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
4770 (goto-char (point-min))
4771 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4772 (add-text-properties (point-min) (point-max)
4773 `(org-agenda-type todo
4774 org-last-args ,arg
4775 org-redo-cmd ,org-agenda-redo-command
4776 org-series-cmd ,org-cmd))
4777 (org-agenda-finalize)
4778 (setq buffer-read-only t))))
4780 ;;; Agenda tags match
4782 ;;;###autoload
4783 (defun org-tags-view (&optional todo-only match)
4784 "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
4785 The prefix arg TODO-ONLY limits the search to TODO entries."
4786 (interactive "P")
4787 (if org-agenda-overriding-arguments
4788 (setq todo-only (car org-agenda-overriding-arguments)
4789 match (nth 1 org-agenda-overriding-arguments)))
4790 (let* ((org-tags-match-list-sublevels
4791 org-tags-match-list-sublevels)
4792 (completion-ignore-case t)
4793 rtn rtnall files file pos matcher
4794 buffer)
4795 (when (and (stringp match) (not (string-match "\\S-" match)))
4796 (setq match nil))
4797 (catch 'exit
4798 (if org-agenda-sticky
4799 (setq org-agenda-buffer-name
4800 (if (stringp match)
4801 (format "*Org Agenda(%s:%s)*"
4802 (or org-keys (or (and todo-only "M") "m")) match)
4803 (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
4804 ;; Prepare agendas (and `org-tag-alist-for-agenda') before
4805 ;; expanding tags within `org-make-tags-matcher'
4806 (org-agenda-prepare (concat "TAGS " match))
4807 (setq matcher (org-make-tags-matcher match)
4808 match (car matcher) matcher (cdr matcher))
4809 (org-compile-prefix-format 'tags)
4810 (org-set-sorting-strategy 'tags)
4811 (setq org-agenda-query-string match)
4812 (setq org-agenda-redo-command
4813 (list 'org-tags-view `(quote ,todo-only)
4814 (list 'if 'current-prefix-arg nil `(quote ,org-agenda-query-string))))
4815 (setq files (org-agenda-files nil 'ifmode)
4816 rtnall nil)
4817 (while (setq file (pop files))
4818 (catch 'nextfile
4819 (org-check-agenda-file file)
4820 (setq buffer (if (file-exists-p file)
4821 (org-get-agenda-file-buffer file)
4822 (error "No such file %s" file)))
4823 (if (not buffer)
4824 ;; If file does not exist, error message to agenda
4825 (setq rtn (list
4826 (format "ORG-AGENDA-ERROR: No such org-file %s" file))
4827 rtnall (append rtnall rtn))
4828 (with-current-buffer buffer
4829 (unless (derived-mode-p 'org-mode)
4830 (error "Agenda file %s is not in `org-mode'" file))
4831 (save-excursion
4832 (save-restriction
4833 (if (eq buffer org-agenda-restrict)
4834 (narrow-to-region org-agenda-restrict-begin
4835 org-agenda-restrict-end)
4836 (widen))
4837 (setq rtn (org-scan-tags 'agenda matcher todo-only))
4838 (setq rtnall (append rtnall rtn))))))))
4839 (if org-agenda-overriding-header
4840 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4841 nil 'face 'org-agenda-structure) "\n")
4842 (insert "Headlines with TAGS match: ")
4843 (add-text-properties (point-min) (1- (point))
4844 (list 'face 'org-agenda-structure
4845 'short-heading
4846 (concat "Match: " match)))
4847 (setq pos (point))
4848 (insert match "\n")
4849 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
4850 (setq pos (point))
4851 (unless org-agenda-multi
4852 (insert "Press `C-u r' to search again with new search string\n"))
4853 (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
4854 (org-agenda-mark-header-line (point-min))
4855 (when rtnall
4856 (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
4857 (goto-char (point-min))
4858 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4859 (add-text-properties (point-min) (point-max)
4860 `(org-agenda-type tags
4861 org-last-args (,todo-only ,match)
4862 org-redo-cmd ,org-agenda-redo-command
4863 org-series-cmd ,org-cmd))
4864 (org-agenda-finalize)
4865 (setq buffer-read-only t))))
4867 ;;; Agenda Finding stuck projects
4869 (defvar org-agenda-skip-regexp nil
4870 "Regular expression used in skipping subtrees for the agenda.
4871 This is basically a temporary global variable that can be set and then
4872 used by user-defined selections using `org-agenda-skip-function'.")
4874 (defvar org-agenda-overriding-header nil
4875 "When set during agenda, todo and tags searches it replaces the header.
4876 This variable should not be set directly, but custom commands can bind it
4877 in the options section.")
4879 (defun org-agenda-skip-entry-when-regexp-matches ()
4880 "Check if the current entry contains match for `org-agenda-skip-regexp'.
4881 If yes, it returns the end position of this entry, causing agenda commands
4882 to skip the entry but continuing the search in the subtree. This is a
4883 function that can be put into `org-agenda-skip-function' for the duration
4884 of a command."
4885 (let ((end (save-excursion (org-end-of-subtree t)))
4886 skip)
4887 (save-excursion
4888 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4889 (and skip end)))
4891 (defun org-agenda-skip-subtree-when-regexp-matches ()
4892 "Check if the current subtree contains match for `org-agenda-skip-regexp'.
4893 If yes, it returns the end position of this tree, causing agenda commands
4894 to skip this subtree. This is a function that can be put into
4895 `org-agenda-skip-function' for the duration of a command."
4896 (let ((end (save-excursion (org-end-of-subtree t)))
4897 skip)
4898 (save-excursion
4899 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4900 (and skip end)))
4902 (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
4903 "Check if the current subtree contains match for `org-agenda-skip-regexp'.
4904 If yes, it returns the end position of the current entry (NOT the tree),
4905 causing agenda commands to skip the entry but continuing the search in
4906 the subtree. This is a function that can be put into
4907 `org-agenda-skip-function' for the duration of a command. An important
4908 use of this function is for the stuck project list."
4909 (let ((end (save-excursion (org-end-of-subtree t)))
4910 (entry-end (save-excursion (outline-next-heading) (1- (point))))
4911 skip)
4912 (save-excursion
4913 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4914 (and skip entry-end)))
4916 (defun org-agenda-skip-entry-if (&rest conditions)
4917 "Skip entry if any of CONDITIONS is true.
4918 See `org-agenda-skip-if' for details."
4919 (org-agenda-skip-if nil conditions))
4921 (defun org-agenda-skip-subtree-if (&rest conditions)
4922 "Skip entry if any of CONDITIONS is true.
4923 See `org-agenda-skip-if' for details."
4924 (org-agenda-skip-if t conditions))
4926 (defun org-agenda-skip-if (subtree conditions)
4927 "Checks current entity for CONDITIONS.
4928 If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
4929 the entry (i.e. the text before the next heading) is checked.
4931 CONDITIONS is a list of symbols, boolean OR is used to combine the results
4932 from different tests. Valid conditions are:
4934 scheduled Check if there is a scheduled cookie
4935 notscheduled Check if there is no scheduled cookie
4936 deadline Check if there is a deadline
4937 notdeadline Check if there is no deadline
4938 timestamp Check if there is a timestamp (also deadline or scheduled)
4939 nottimestamp Check if there is no timestamp (also deadline or scheduled)
4940 regexp Check if regexp matches
4941 notregexp Check if regexp does not match.
4942 todo Check if TODO keyword matches
4943 nottodo Check if TODO keyword does not match
4945 The regexp is taken from the conditions list, it must come right after
4946 the `regexp' or `notregexp' element.
4948 `todo' and `nottodo' accept as an argument a list of todo
4949 keywords, which may include \"*\" to match any todo keyword.
4951 (org-agenda-skip-entry-if 'todo '(\"TODO\" \"WAITING\"))
4953 would skip all entries with \"TODO\" or \"WAITING\" keywords.
4955 Instead of a list, a keyword class may be given. For example:
4957 (org-agenda-skip-entry-if 'nottodo 'done)
4959 would skip entries that haven't been marked with any of \"DONE\"
4960 keywords. Possible classes are: `todo', `done', `any'.
4962 If any of these conditions is met, this function returns the end point of
4963 the entity, causing the search to continue from there. This is a function
4964 that can be put into `org-agenda-skip-function' for the duration of a command."
4965 (let (beg end m)
4966 (org-back-to-heading t)
4967 (setq beg (point)
4968 end (if subtree
4969 (progn (org-end-of-subtree t) (point))
4970 (progn (outline-next-heading) (1- (point)))))
4971 (goto-char beg)
4972 (and
4974 (and (memq 'scheduled conditions)
4975 (re-search-forward org-scheduled-time-regexp end t))
4976 (and (memq 'notscheduled conditions)
4977 (not (re-search-forward org-scheduled-time-regexp end t)))
4978 (and (memq 'deadline conditions)
4979 (re-search-forward org-deadline-time-regexp end t))
4980 (and (memq 'notdeadline conditions)
4981 (not (re-search-forward org-deadline-time-regexp end t)))
4982 (and (memq 'timestamp conditions)
4983 (re-search-forward org-ts-regexp end t))
4984 (and (memq 'nottimestamp conditions)
4985 (not (re-search-forward org-ts-regexp end t)))
4986 (and (setq m (memq 'regexp conditions))
4987 (stringp (nth 1 m))
4988 (re-search-forward (nth 1 m) end t))
4989 (and (setq m (memq 'notregexp conditions))
4990 (stringp (nth 1 m))
4991 (not (re-search-forward (nth 1 m) end t)))
4992 (and (or
4993 (setq m (memq 'nottodo conditions))
4994 (setq m (memq 'todo-unblocked conditions))
4995 (setq m (memq 'nottodo-unblocked conditions))
4996 (setq m (memq 'todo conditions)))
4997 (org-agenda-skip-if-todo m end)))
4998 end)))
5000 (defun org-agenda-skip-if-todo (args end)
5001 "Helper function for `org-agenda-skip-if', do not use it directly.
5002 ARGS is a list with first element either `todo', `nottodo',
5003 `todo-unblocked' or `nottodo-unblocked'. The remainder is either
5004 a list of TODO keywords, or a state symbol `todo' or `done' or
5005 `any'."
5006 (let ((kw (car args))
5007 (arg (cadr args))
5008 todo-wds todo-re)
5009 (setq todo-wds
5010 (org-uniquify
5011 (cond
5012 ((listp arg) ;; list of keywords
5013 (if (member "*" arg)
5014 (mapcar 'substring-no-properties org-todo-keywords-1)
5015 arg))
5016 ((symbolp arg) ;; keyword class name
5017 (cond
5018 ((eq arg 'todo)
5019 (org-delete-all org-done-keywords
5020 (mapcar 'substring-no-properties
5021 org-todo-keywords-1)))
5022 ((eq arg 'done) org-done-keywords)
5023 ((eq arg 'any)
5024 (mapcar 'substring-no-properties org-todo-keywords-1)))))))
5025 (setq todo-re
5026 (concat "^\\*+[ \t]+\\<\\("
5027 (mapconcat 'identity todo-wds "\\|")
5028 "\\)\\>"))
5029 (cond
5030 ((eq kw 'todo) (re-search-forward todo-re end t))
5031 ((eq kw 'nottodo) (not (re-search-forward todo-re end t)))
5032 ((eq kw 'todo-unblocked)
5033 (catch 'unblocked
5034 (while (re-search-forward todo-re end t)
5035 (or (org-entry-blocked-p) (throw 'unblocked t)))
5036 nil))
5037 ((eq kw 'nottodo-unblocked)
5038 (catch 'unblocked
5039 (while (re-search-forward todo-re end t)
5040 (or (org-entry-blocked-p) (throw 'unblocked nil)))
5044 ;;;###autoload
5045 (defun org-agenda-list-stuck-projects (&rest ignore)
5046 "Create agenda view for projects that are stuck.
5047 Stuck projects are project that have no next actions. For the definitions
5048 of what a project is and how to check if it stuck, customize the variable
5049 `org-stuck-projects'."
5050 (interactive)
5051 (let* ((org-agenda-skip-function
5052 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
5053 ;; We could have used org-agenda-skip-if here.
5054 (org-agenda-overriding-header
5055 (or org-agenda-overriding-header "List of stuck projects: "))
5056 (matcher (nth 0 org-stuck-projects))
5057 (todo (nth 1 org-stuck-projects))
5058 (todo-wds (if (member "*" todo)
5059 (progn
5060 (org-agenda-prepare-buffers (org-agenda-files
5061 nil 'ifmode))
5062 (org-delete-all
5063 org-done-keywords-for-agenda
5064 (copy-sequence org-todo-keywords-for-agenda)))
5065 todo))
5066 (todo-re (concat "^\\*+[ \t]+\\("
5067 (mapconcat 'identity todo-wds "\\|")
5068 "\\)\\>"))
5069 (tags (nth 2 org-stuck-projects))
5070 (tags-re (if (member "*" tags)
5071 (concat org-outline-regexp-bol
5072 (org-re ".*:[[:alnum:]_@#%]+:[ \t]*$"))
5073 (if tags
5074 (concat org-outline-regexp-bol
5075 ".*:\\("
5076 (mapconcat 'identity tags "\\|")
5077 (org-re "\\):[[:alnum:]_@#%:]*[ \t]*$")))))
5078 (gen-re (nth 3 org-stuck-projects))
5079 (re-list
5080 (delq nil
5081 (list
5082 (if todo todo-re)
5083 (if tags tags-re)
5084 (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
5085 gen-re)))))
5086 (setq org-agenda-skip-regexp
5087 (if re-list
5088 (mapconcat 'identity re-list "\\|")
5089 (error "No information how to identify unstuck projects")))
5090 (org-tags-view nil matcher)
5091 (with-current-buffer org-agenda-buffer-name
5092 (setq org-agenda-redo-command
5093 `(org-agenda-list-stuck-projects ,current-prefix-arg)))))
5095 ;;; Diary integration
5097 (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
5098 (defvar diary-list-entries-hook)
5099 (defvar diary-time-regexp)
5100 (defun org-get-entries-from-diary (date)
5101 "Get the (Emacs Calendar) diary entries for DATE."
5102 (require 'diary-lib)
5103 (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
5104 (diary-display-hook '(fancy-diary-display))
5105 (diary-display-function 'fancy-diary-display)
5106 (pop-up-frames nil)
5107 (diary-list-entries-hook
5108 (cons 'org-diary-default-entry diary-list-entries-hook))
5109 (diary-file-name-prefix nil) ; turn this feature off
5110 (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
5111 entries
5112 (org-disable-agenda-to-diary t))
5113 (save-excursion
5114 (save-window-excursion
5115 (funcall (if (fboundp 'diary-list-entries)
5116 'diary-list-entries 'list-diary-entries)
5117 date 1)))
5118 (if (not (get-buffer diary-fancy-buffer))
5119 (setq entries nil)
5120 (with-current-buffer diary-fancy-buffer
5121 (setq buffer-read-only nil)
5122 (if (zerop (buffer-size))
5123 ;; No entries
5124 (setq entries nil)
5125 ;; Omit the date and other unnecessary stuff
5126 (org-agenda-cleanup-fancy-diary)
5127 ;; Add prefix to each line and extend the text properties
5128 (if (zerop (buffer-size))
5129 (setq entries nil)
5130 (setq entries (buffer-substring (point-min) (- (point-max) 1)))
5131 (setq entries
5132 (with-temp-buffer
5133 (insert entries) (goto-char (point-min))
5134 (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
5135 (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
5136 (replace-match (concat "; " (match-string 1)))))
5137 (buffer-string)))))
5138 (set-buffer-modified-p nil)
5139 (kill-buffer diary-fancy-buffer)))
5140 (when entries
5141 (setq entries (org-split-string entries "\n"))
5142 (setq entries
5143 (mapcar
5144 (lambda (x)
5145 (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
5146 ;; Extend the text properties to the beginning of the line
5147 (org-add-props x (text-properties-at (1- (length x)) x)
5148 'type "diary" 'date date 'face 'org-agenda-diary))
5149 entries)))))
5151 (defvar org-agenda-cleanup-fancy-diary-hook nil
5152 "Hook run when the fancy diary buffer is cleaned up.")
5154 (defun org-agenda-cleanup-fancy-diary ()
5155 "Remove unwanted stuff in buffer created by `fancy-diary-display'.
5156 This gets rid of the date, the underline under the date, and
5157 the dummy entry installed by `org-mode' to ensure non-empty diary for each
5158 date. It also removes lines that contain only whitespace."
5159 (goto-char (point-min))
5160 (if (looking-at ".*?:[ \t]*")
5161 (progn
5162 (replace-match "")
5163 (re-search-forward "\n=+$" nil t)
5164 (replace-match "")
5165 (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
5166 (re-search-forward "\n=+$" nil t)
5167 (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
5168 (goto-char (point-min))
5169 (while (re-search-forward "^ +\n" nil t)
5170 (replace-match ""))
5171 (goto-char (point-min))
5172 (if (re-search-forward "^Org-mode dummy\n?" nil t)
5173 (replace-match ""))
5174 (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
5176 ;; Make sure entries from the diary have the right text properties.
5177 (eval-after-load "diary-lib"
5178 '(if (boundp 'diary-modify-entry-list-string-function)
5179 ;; We can rely on the hook, nothing to do
5181 ;; Hook not available, must use advice to make this work
5182 (defadvice add-to-diary-list (before org-mark-diary-entry activate)
5183 "Make the position visible."
5184 (if (and org-disable-agenda-to-diary ;; called from org-agenda
5185 (stringp string)
5186 buffer-file-name)
5187 (setq string (org-modify-diary-entry-string string))))))
5189 (defun org-modify-diary-entry-string (string)
5190 "Add text properties to string, allowing org-mode to act on it."
5191 (org-add-props string nil
5192 'mouse-face 'highlight
5193 'help-echo (if buffer-file-name
5194 (format "mouse-2 or RET jump to diary file %s"
5195 (abbreviate-file-name buffer-file-name))
5197 'org-agenda-diary-link t
5198 'org-marker (org-agenda-new-marker (point-at-bol))))
5200 (defun org-diary-default-entry ()
5201 "Add a dummy entry to the diary.
5202 Needed to avoid empty dates which mess up holiday display."
5203 ;; Catch the error if dealing with the new add-to-diary-alist
5204 (when org-disable-agenda-to-diary
5205 (condition-case nil
5206 (org-add-to-diary-list original-date "Org-mode dummy" "")
5207 (error
5208 (org-add-to-diary-list original-date "Org-mode dummy" "" nil)))))
5210 (defun org-add-to-diary-list (&rest args)
5211 (if (fboundp 'diary-add-to-list)
5212 (apply 'diary-add-to-list args)
5213 (apply 'add-to-diary-list args)))
5215 (defvar org-diary-last-run-time nil)
5217 ;;;###autoload
5218 (defun org-diary (&rest args)
5219 "Return diary information from org files.
5220 This function can be used in a \"sexp\" diary entry in the Emacs calendar.
5221 It accesses org files and extracts information from those files to be
5222 listed in the diary. The function accepts arguments specifying what
5223 items should be listed. For a list of arguments allowed here, see the
5224 variable `org-agenda-entry-types'.
5226 The call in the diary file should look like this:
5228 &%%(org-diary) ~/path/to/some/orgfile.org
5230 Use a separate line for each org file to check. Or, if you omit the file name,
5231 all files listed in `org-agenda-files' will be checked automatically:
5233 &%%(org-diary)
5235 If you don't give any arguments (as in the example above), the default value
5236 of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
5237 So the example above may also be written as
5239 &%%(org-diary :deadline :timestamp :sexp :scheduled)
5241 The function expects the lisp variables `entry' and `date' to be provided
5242 by the caller, because this is how the calendar works. Don't use this
5243 function from a program - use `org-agenda-get-day-entries' instead."
5244 (when (> (- (org-float-time)
5245 org-agenda-last-marker-time)
5247 ;; I am not sure if this works with sticky agendas, because the marker
5248 ;; list is then no longer a global variable.
5249 (org-agenda-reset-markers))
5250 (org-compile-prefix-format 'agenda)
5251 (org-set-sorting-strategy 'agenda)
5252 (setq args (or args org-agenda-entry-types))
5253 (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
5254 (list entry)
5255 (org-agenda-files t)))
5256 (time (org-float-time))
5257 file rtn results)
5258 (when (or (not org-diary-last-run-time)
5259 (> (- time
5260 org-diary-last-run-time)
5262 (org-agenda-prepare-buffers files))
5263 (setq org-diary-last-run-time time)
5264 ;; If this is called during org-agenda, don't return any entries to
5265 ;; the calendar. Org Agenda will list these entries itself.
5266 (if org-disable-agenda-to-diary (setq files nil))
5267 (while (setq file (pop files))
5268 (setq rtn (apply 'org-agenda-get-day-entries file date args))
5269 (setq results (append results rtn)))
5270 (when results
5271 (setq results
5272 (mapcar (lambda (i) (replace-regexp-in-string
5273 org-bracket-link-regexp "\\3" i)) results))
5274 (concat (org-agenda-finalize-entries results) "\n"))))
5276 ;;; Agenda entry finders
5278 (defun org-agenda-get-day-entries (file date &rest args)
5279 "Does the work for `org-diary' and `org-agenda'.
5280 FILE is the path to a file to be checked for entries. DATE is date like
5281 the one returned by `calendar-current-date'. ARGS are symbols indicating
5282 which kind of entries should be extracted. For details about these, see
5283 the documentation of `org-diary'."
5284 (setq args (or args org-agenda-entry-types))
5285 (let* ((org-startup-folded nil)
5286 (org-startup-align-all-tables nil)
5287 (buffer (if (file-exists-p file)
5288 (org-get-agenda-file-buffer file)
5289 (error "No such file %s" file)))
5290 arg results rtn deadline-results)
5291 (if (not buffer)
5292 ;; If file does not exist, make sure an error message ends up in diary
5293 (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
5294 (with-current-buffer buffer
5295 (unless (derived-mode-p 'org-mode)
5296 (error "Agenda file %s is not in `org-mode'" file))
5297 (setq org-agenda-buffer (or org-agenda-buffer buffer))
5298 (let ((case-fold-search nil))
5299 (save-excursion
5300 (save-restriction
5301 (if (eq buffer org-agenda-restrict)
5302 (narrow-to-region org-agenda-restrict-begin
5303 org-agenda-restrict-end)
5304 (widen))
5305 ;; The way we repeatedly append to `results' makes it O(n^2) :-(
5306 (while (setq arg (pop args))
5307 (cond
5308 ((and (eq arg :todo)
5309 (equal date (calendar-gregorian-from-absolute
5310 (org-today))))
5311 (setq rtn (org-agenda-get-todos))
5312 (setq results (append results rtn)))
5313 ((eq arg :timestamp)
5314 (setq rtn (org-agenda-get-blocks))
5315 (setq results (append results rtn))
5316 (setq rtn (org-agenda-get-timestamps deadline-results))
5317 (setq results (append results rtn)))
5318 ((eq arg :sexp)
5319 (setq rtn (org-agenda-get-sexps))
5320 (setq results (append results rtn)))
5321 ((eq arg :scheduled)
5322 (setq rtn (org-agenda-get-scheduled deadline-results))
5323 (setq results (append results rtn)))
5324 ((eq arg :scheduled*)
5325 (setq rtn (org-agenda-get-scheduled deadline-results t))
5326 (setq results (append results rtn)))
5327 ((eq arg :closed)
5328 (setq rtn (org-agenda-get-progress))
5329 (setq results (append results rtn)))
5330 ((eq arg :deadline)
5331 (setq rtn (org-agenda-get-deadlines))
5332 (setq deadline-results (copy-sequence rtn))
5333 (setq results (append results rtn)))
5334 ((eq arg :deadline*)
5335 (setq rtn (org-agenda-get-deadlines t))
5336 (setq deadline-results (copy-sequence rtn))
5337 (setq results (append results rtn))))))))
5338 results))))
5340 (defsubst org-em (x y list)
5341 "Is X or Y a member of LIST?"
5342 (or (memq x list) (memq y list)))
5344 (defvar org-heading-keyword-regexp-format) ; defined in org.el
5345 (defvar org-agenda-sorting-strategy-selected nil)
5347 (defun org-agenda-get-todos ()
5348 "Return the TODO information for agenda display."
5349 (let* ((props (list 'face nil
5350 'done-face 'org-agenda-done
5351 'org-not-done-regexp org-not-done-regexp
5352 'org-todo-regexp org-todo-regexp
5353 'org-complex-heading-regexp org-complex-heading-regexp
5354 'mouse-face 'highlight
5355 'help-echo
5356 (format "mouse-2 or RET jump to org file %s"
5357 (abbreviate-file-name buffer-file-name))))
5358 (regexp (format org-heading-keyword-regexp-format
5359 (cond
5360 ((and org-select-this-todo-keyword
5361 (equal org-select-this-todo-keyword "*"))
5362 org-todo-regexp)
5363 (org-select-this-todo-keyword
5364 (concat "\\("
5365 (mapconcat 'identity
5366 (org-split-string
5367 org-select-this-todo-keyword
5368 "|")
5369 "\\|") "\\)"))
5370 (t org-not-done-regexp))))
5371 marker priority category category-pos level tags todo-state ts-date ts-date-type
5372 ee txt beg end inherited-tags todo-state-end-pos)
5373 (goto-char (point-min))
5374 (while (re-search-forward regexp nil t)
5375 (catch :skip
5376 (save-match-data
5377 (beginning-of-line)
5378 (org-agenda-skip)
5379 (setq beg (point) end (save-excursion (outline-next-heading) (point)))
5380 (unless (and (setq todo-state (org-get-todo-state))
5381 (setq todo-state-end-pos (match-end 2)))
5382 (goto-char end)
5383 (throw :skip nil))
5384 (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
5385 (goto-char (1+ beg))
5386 (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
5387 (throw :skip nil)))
5388 (goto-char (match-beginning 2))
5389 (setq marker (org-agenda-new-marker (match-beginning 0))
5390 category (org-get-category)
5391 ts-date (let (ts)
5392 (save-match-data
5393 (cond ((org-em 'scheduled-up 'scheduled-down
5394 org-agenda-sorting-strategy-selected)
5395 (setq ts (org-entry-get (point) "SCHEDULED")
5396 ts-date-type " scheduled"))
5397 ((org-em 'deadline-up 'deadline-down
5398 org-agenda-sorting-strategy-selected)
5399 (setq ts (org-entry-get (point) "DEADLINE")
5400 ts-date-type " deadline"))
5401 ((org-em 'ts-up 'ts-down
5402 org-agenda-sorting-strategy-selected)
5403 (setq ts (org-entry-get (point) "TIMESTAMP")
5404 ts-date-type " timestamp"))
5405 ((org-em 'tsia-up 'tsia-down
5406 org-agenda-sorting-strategy-selected)
5407 (setq ts (org-entry-get (point) "TIMESTAMP_IA")
5408 ts-date-type " timestamp_ia"))
5409 ((org-em 'timestamp-up 'timestamp-down
5410 org-agenda-sorting-strategy-selected)
5411 (setq ts (or (org-entry-get (point) "SCHEDULED")
5412 (org-entry-get (point) "DEADLINE")
5413 (org-entry-get (point) "TIMESTAMP")
5414 (org-entry-get (point) "TIMESTAMP_IA"))
5415 ts-date-type ""))
5416 (t (setq ts-date-type "")))
5417 (when ts (ignore-errors (org-time-string-to-absolute ts)))))
5418 category-pos (get-text-property (point) 'org-category-position)
5419 txt (org-trim
5420 (buffer-substring (match-beginning 2) (match-end 0)))
5421 inherited-tags
5422 (or (eq org-agenda-show-inherited-tags 'always)
5423 (and (listp org-agenda-show-inherited-tags)
5424 (memq 'todo org-agenda-show-inherited-tags))
5425 (and (eq org-agenda-show-inherited-tags t)
5426 (or (eq org-agenda-use-tag-inheritance t)
5427 (memq 'todo org-agenda-use-tag-inheritance))))
5428 tags (org-get-tags-at nil (not inherited-tags))
5429 level (make-string (org-reduced-level (org-outline-level)) ? )
5430 txt (org-agenda-format-item "" txt level category tags t)
5431 priority (1+ (org-get-priority txt)))
5432 (org-add-props txt props
5433 'org-marker marker 'org-hd-marker marker
5434 'priority priority 'org-category category
5435 'level level
5436 'ts-date ts-date
5437 'org-category-position category-pos
5438 'type (concat "todo" ts-date-type) 'todo-state todo-state)
5439 (push txt ee)
5440 (if org-agenda-todo-list-sublevels
5441 (goto-char todo-state-end-pos)
5442 (org-end-of-subtree 'invisible))))
5443 (nreverse ee)))
5445 (defun org-agenda-todo-custom-ignore-p (time n)
5446 "Check whether timestamp is farther away than n number of days.
5447 This function is invoked if `org-agenda-todo-ignore-deadlines',
5448 `org-agenda-todo-ignore-scheduled' or
5449 `org-agenda-todo-ignore-timestamp' is set to an integer."
5450 (let ((days (org-time-stamp-to-now
5451 time org-agenda-todo-ignore-time-comparison-use-seconds)))
5452 (if (>= n 0)
5453 (>= days n)
5454 (<= days n))))
5456 ;;;###autoload
5457 (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
5458 (&optional end)
5459 "Do we have a reason to ignore this TODO entry because it has a time stamp?"
5460 (when (or org-agenda-todo-ignore-with-date
5461 org-agenda-todo-ignore-scheduled
5462 org-agenda-todo-ignore-deadlines
5463 org-agenda-todo-ignore-timestamp)
5464 (setq end (or end (save-excursion (outline-next-heading) (point))))
5465 (save-excursion
5466 (or (and org-agenda-todo-ignore-with-date
5467 (re-search-forward org-ts-regexp end t))
5468 (and org-agenda-todo-ignore-scheduled
5469 (re-search-forward org-scheduled-time-regexp end t)
5470 (cond
5471 ((eq org-agenda-todo-ignore-scheduled 'future)
5472 (> (org-time-stamp-to-now
5473 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5474 ((eq org-agenda-todo-ignore-scheduled 'past)
5475 (<= (org-time-stamp-to-now
5476 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5477 ((numberp org-agenda-todo-ignore-scheduled)
5478 (org-agenda-todo-custom-ignore-p
5479 (match-string 1) org-agenda-todo-ignore-scheduled))
5480 (t)))
5481 (and org-agenda-todo-ignore-deadlines
5482 (re-search-forward org-deadline-time-regexp end t)
5483 (cond
5484 ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
5485 ((eq org-agenda-todo-ignore-deadlines 'far)
5486 (not (org-deadline-close (match-string 1))))
5487 ((eq org-agenda-todo-ignore-deadlines 'future)
5488 (> (org-time-stamp-to-now
5489 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5490 ((eq org-agenda-todo-ignore-deadlines 'past)
5491 (<= (org-time-stamp-to-now
5492 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5493 ((numberp org-agenda-todo-ignore-deadlines)
5494 (org-agenda-todo-custom-ignore-p
5495 (match-string 1) org-agenda-todo-ignore-deadlines))
5496 (t (org-deadline-close (match-string 1)))))
5497 (and org-agenda-todo-ignore-timestamp
5498 (let ((buffer (current-buffer))
5499 (regexp
5500 (concat
5501 org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
5502 (start (point)))
5503 ;; Copy current buffer into a temporary one
5504 (with-temp-buffer
5505 (insert-buffer-substring buffer start end)
5506 (goto-char (point-min))
5507 ;; Delete SCHEDULED and DEADLINE items
5508 (while (re-search-forward regexp end t)
5509 (delete-region (match-beginning 0) (match-end 0)))
5510 (goto-char (point-min))
5511 ;; No search for timestamp left
5512 (when (re-search-forward org-ts-regexp nil t)
5513 (cond
5514 ((eq org-agenda-todo-ignore-timestamp 'future)
5515 (> (org-time-stamp-to-now
5516 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5517 ((eq org-agenda-todo-ignore-timestamp 'past)
5518 (<= (org-time-stamp-to-now
5519 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5520 ((numberp org-agenda-todo-ignore-timestamp)
5521 (org-agenda-todo-custom-ignore-p
5522 (match-string 1) org-agenda-todo-ignore-timestamp))
5523 (t))))))))))
5525 (defun org-agenda-get-timestamps (&optional deadline-results)
5526 "Return the date stamp information for agenda display."
5527 (let* ((props (list 'face 'org-agenda-calendar-event
5528 'org-not-done-regexp org-not-done-regexp
5529 'org-todo-regexp org-todo-regexp
5530 'org-complex-heading-regexp org-complex-heading-regexp
5531 'mouse-face 'highlight
5532 'help-echo
5533 (format "mouse-2 or RET jump to org file %s"
5534 (abbreviate-file-name buffer-file-name))))
5535 (d1 (calendar-absolute-from-gregorian date))
5537 (deadline-position-alist
5538 (mapcar (lambda (a) (and (setq mm (get-text-property
5539 0 'org-hd-marker a))
5540 (cons (marker-position mm) a)))
5541 deadline-results))
5542 (remove-re org-ts-regexp)
5543 (regexp
5544 (concat
5545 (if org-agenda-include-inactive-timestamps "[[<]" "<")
5546 (regexp-quote
5547 (substring
5548 (format-time-string
5549 (car org-time-stamp-formats)
5550 (apply 'encode-time ; DATE bound by calendar
5551 (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
5552 1 11))
5553 "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
5554 "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
5555 marker hdmarker deadlinep scheduledp clockp closedp inactivep
5556 donep tmp priority category category-pos level ee txt timestr tags
5557 b0 b3 e3 head todo-state end-of-match show-all warntime habitp
5558 inherited-tags ts-date)
5559 (goto-char (point-min))
5560 (while (setq end-of-match (re-search-forward regexp nil t))
5561 (setq b0 (match-beginning 0)
5562 b3 (match-beginning 3) e3 (match-end 3)
5563 todo-state (save-match-data (ignore-errors (org-get-todo-state)))
5564 habitp (and (functionp 'org-is-habit-p) (save-match-data (org-is-habit-p)))
5565 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
5566 (member todo-state
5567 org-agenda-repeating-timestamp-show-all)))
5568 (catch :skip
5569 (and (org-at-date-range-p) (throw :skip nil))
5570 (org-agenda-skip)
5571 (if (and (match-end 1)
5572 (not (= d1 (org-time-string-to-absolute
5573 (match-string 1) d1 nil show-all
5574 (current-buffer) b0))))
5575 (throw :skip nil))
5576 (if (and e3
5577 (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
5578 (throw :skip nil))
5579 (setq tmp (buffer-substring (max (point-min)
5580 (- b0 org-ds-keyword-length))
5582 timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
5583 inactivep (= (char-after b0) ?\[)
5584 deadlinep (string-match org-deadline-regexp tmp)
5585 scheduledp (string-match org-scheduled-regexp tmp)
5586 closedp (and org-agenda-include-inactive-timestamps
5587 (string-match org-closed-string tmp))
5588 clockp (and org-agenda-include-inactive-timestamps
5589 (or (string-match org-clock-string tmp)
5590 (string-match "]-+\\'" tmp)))
5591 warntime (get-text-property (point) 'org-appt-warntime)
5592 donep (member todo-state org-done-keywords))
5593 (if (or scheduledp deadlinep closedp clockp
5594 (and donep org-agenda-skip-timestamp-if-done))
5595 (throw :skip t))
5596 (if (string-match ">" timestr)
5597 ;; substring should only run to end of time stamp
5598 (setq timestr (substring timestr 0 (match-end 0))))
5599 (setq marker (org-agenda-new-marker b0)
5600 category (org-get-category b0)
5601 category-pos (get-text-property b0 'org-category-position))
5602 (save-excursion
5603 (if (not (re-search-backward org-outline-regexp-bol nil t))
5604 (throw :skip nil)
5605 (goto-char (match-beginning 0))
5606 (if (and (eq t org-agenda-skip-timestamp-if-deadline-is-shown)
5607 (assoc (point) deadline-position-alist))
5608 (throw :skip nil))
5609 (setq hdmarker (org-agenda-new-marker)
5610 inherited-tags
5611 (or (eq org-agenda-show-inherited-tags 'always)
5612 (and (listp org-agenda-show-inherited-tags)
5613 (memq 'agenda org-agenda-show-inherited-tags))
5614 (and (eq org-agenda-show-inherited-tags t)
5615 (or (eq org-agenda-use-tag-inheritance t)
5616 (memq 'agenda org-agenda-use-tag-inheritance))))
5617 tags (org-get-tags-at nil (not inherited-tags))
5618 level (make-string (org-reduced-level (org-outline-level)) ? ))
5619 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
5620 (setq head (or (match-string 1) ""))
5621 (setq txt (org-agenda-format-item
5622 (if inactivep org-agenda-inactive-leader nil)
5623 head level category tags timestr
5624 remove-re habitp)))
5625 (setq priority (org-get-priority txt))
5626 (org-add-props txt props 'priority priority
5627 'org-marker marker 'org-hd-marker hdmarker
5628 'org-category category 'date date
5629 'level level
5630 'ts-date
5631 (ignore-errors (org-time-string-to-absolute timestr))
5632 'org-category-position category-pos
5633 'todo-state todo-state
5634 'warntime warntime
5635 'type "timestamp")
5636 (push txt ee))
5637 (if org-agenda-skip-additional-timestamps-same-entry
5638 (outline-next-heading)
5639 (goto-char end-of-match))))
5640 (nreverse ee)))
5642 (defun org-agenda-get-sexps ()
5643 "Return the sexp information for agenda display."
5644 (require 'diary-lib)
5645 (let* ((props (list 'face 'org-agenda-calendar-sexp
5646 'mouse-face 'highlight
5647 'help-echo
5648 (format "mouse-2 or RET jump to org file %s"
5649 (abbreviate-file-name buffer-file-name))))
5650 (regexp "^&?%%(")
5651 marker category extra category-pos level ee txt tags entry
5652 result beg b sexp sexp-entry todo-state warntime inherited-tags)
5653 (goto-char (point-min))
5654 (while (re-search-forward regexp nil t)
5655 (catch :skip
5656 (org-agenda-skip)
5657 (setq beg (match-beginning 0))
5658 (goto-char (1- (match-end 0)))
5659 (setq b (point))
5660 (forward-sexp 1)
5661 (setq sexp (buffer-substring b (point)))
5662 (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
5663 (org-trim (match-string 1))
5664 ""))
5665 (setq result (org-diary-sexp-entry sexp sexp-entry date))
5666 (when result
5667 (setq marker (org-agenda-new-marker beg)
5668 level (make-string (org-reduced-level (org-outline-level)) ? )
5669 category (org-get-category beg)
5670 category-pos (get-text-property beg 'org-category-position)
5671 inherited-tags
5672 (or (eq org-agenda-show-inherited-tags 'always)
5673 (and (listp org-agenda-show-inherited-tags)
5674 (memq 'agenda org-agenda-show-inherited-tags))
5675 (and (eq org-agenda-show-inherited-tags t)
5676 (or (eq org-agenda-use-tag-inheritance t)
5677 (memq 'agenda org-agenda-use-tag-inheritance))))
5678 tags (org-get-tags-at nil (not inherited-tags))
5679 todo-state (org-get-todo-state)
5680 warntime (get-text-property (point) 'org-appt-warntime)
5681 extra nil)
5683 (dolist (r (if (stringp result)
5684 (list result)
5685 result)) ;; we expect a list here
5686 (when (and org-agenda-diary-sexp-prefix
5687 (string-match org-agenda-diary-sexp-prefix r))
5688 (setq extra (match-string 0 r)
5689 r (replace-match "" nil nil r)))
5690 (if (string-match "\\S-" r)
5691 (setq txt r)
5692 (setq txt "SEXP entry returned empty string"))
5693 (setq txt (org-agenda-format-item extra txt level category tags 'time))
5694 (org-add-props txt props 'org-marker marker
5695 'org-category category 'date date 'todo-state todo-state
5696 'org-category-position category-pos 'tags tags
5697 'level level
5698 'type "sexp" 'warntime warntime)
5699 (push txt ee)))))
5700 (nreverse ee)))
5702 ;; Calendar sanity: define some functions that are independent of
5703 ;; `calendar-date-style'.
5704 ;; Normally I would like to use ISO format when calling the diary functions,
5705 ;; but to make sure we still have Emacs 22 compatibility we bind
5706 ;; also `european-calendar-style' and use european format
5707 (defun org-anniversary (year month day &optional mark)
5708 "Like `diary-anniversary', but with fixed (ISO) order of arguments."
5709 (org-no-warnings
5710 (let ((calendar-date-style 'european) (european-calendar-style t))
5711 (diary-anniversary day month year mark))))
5712 (defun org-cyclic (N year month day &optional mark)
5713 "Like `diary-cyclic', but with fixed (ISO) order of arguments."
5714 (org-no-warnings
5715 (let ((calendar-date-style 'european) (european-calendar-style t))
5716 (diary-cyclic N day month year mark))))
5717 (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
5718 "Like `diary-block', but with fixed (ISO) order of arguments."
5719 (org-no-warnings
5720 (let ((calendar-date-style 'european) (european-calendar-style t))
5721 (diary-block D1 M1 Y1 D2 M2 Y2 mark))))
5722 (defun org-date (year month day &optional mark)
5723 "Like `diary-date', but with fixed (ISO) order of arguments."
5724 (org-no-warnings
5725 (let ((calendar-date-style 'european) (european-calendar-style t))
5726 (diary-date day month year mark))))
5728 ;; Define the` org-class' function
5729 (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
5730 "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
5731 DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
5732 SKIP-WEEKS is any number of ISO weeks in the block period for which the
5733 item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
5734 `holidays', then any date that is known by the Emacs calendar to be a
5735 holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
5736 then those holidays will be skipped."
5737 (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
5738 (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
5739 (d (calendar-absolute-from-gregorian date))
5740 (h (when skip-weeks (calendar-check-holidays date))))
5741 (and
5742 (<= date1 d)
5743 (<= d date2)
5744 (= (calendar-day-of-week date) dayname)
5745 (or (not skip-weeks)
5746 (progn
5747 (require 'cal-iso)
5748 (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
5749 (not (or (and h (memq 'holidays skip-weeks))
5750 (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
5751 entry)))
5753 (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname &rest skip-weeks)
5754 "Like `org-class', but honor `calendar-date-style'.
5755 The order of the first 2 times 3 arguments depends on the variable
5756 `calendar-date-style' or, if that is not defined, on `european-calendar-style'.
5757 So for American calendars, give this as MONTH DAY YEAR, for European as
5758 DAY MONTH YEAR, and for ISO as YEAR MONTH DAY.
5759 DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
5760 is any number of ISO weeks in the block period for which the item should
5761 be skipped.
5763 This function is here only for backward compatibility and it is deprecated,
5764 please use `org-class' instead."
5765 (let* ((date1 (org-order-calendar-date-args m1 d1 y1))
5766 (date2 (org-order-calendar-date-args m2 d2 y2)))
5767 (org-class
5768 (nth 2 date1) (car date1) (nth 1 date1)
5769 (nth 2 date2) (car date2) (nth 1 date2)
5770 dayname skip-weeks)))
5771 (make-obsolete 'org-diary-class 'org-class "")
5773 (defalias 'org-get-closed 'org-agenda-get-progress)
5774 (defun org-agenda-get-progress ()
5775 "Return the logged TODO entries for agenda display."
5776 (let* ((props (list 'mouse-face 'highlight
5777 'org-not-done-regexp org-not-done-regexp
5778 'org-todo-regexp org-todo-regexp
5779 'org-complex-heading-regexp org-complex-heading-regexp
5780 'help-echo
5781 (format "mouse-2 or RET jump to org file %s"
5782 (abbreviate-file-name buffer-file-name))))
5783 (items (if (consp org-agenda-show-log-scoped)
5784 org-agenda-show-log-scoped
5785 (if (eq org-agenda-show-log-scoped 'clockcheck)
5786 '(clock)
5787 org-agenda-log-mode-items)))
5788 (parts
5789 (delq nil
5790 (list
5791 (if (memq 'closed items) (concat "\\<" org-closed-string))
5792 (if (memq 'clock items) (concat "\\<" org-clock-string))
5793 (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
5794 (parts-re (if parts (mapconcat 'identity parts "\\|")
5795 (error "`org-agenda-log-mode-items' is empty")))
5796 (regexp (concat
5797 "\\(" parts-re "\\)"
5798 " *\\["
5799 (regexp-quote
5800 (substring
5801 (format-time-string
5802 (car org-time-stamp-formats)
5803 (apply 'encode-time ; DATE bound by calendar
5804 (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
5805 1 11))))
5806 (org-agenda-search-headline-for-time nil)
5807 marker hdmarker priority category category-pos level tags closedp
5808 statep clockp state ee txt extra timestr rest clocked inherited-tags)
5809 (goto-char (point-min))
5810 (while (re-search-forward regexp nil t)
5811 (catch :skip
5812 (org-agenda-skip)
5813 (setq marker (org-agenda-new-marker (match-beginning 0))
5814 closedp (equal (match-string 1) org-closed-string)
5815 statep (equal (string-to-char (match-string 1)) ?-)
5816 clockp (not (or closedp statep))
5817 state (and statep (match-string 2))
5818 category (org-get-category (match-beginning 0))
5819 category-pos (get-text-property (match-beginning 0) 'org-category-position)
5820 timestr (buffer-substring (match-beginning 0) (point-at-eol)))
5821 (when (string-match "\\]" timestr)
5822 ;; substring should only run to end of time stamp
5823 (setq rest (substring timestr (match-end 0))
5824 timestr (substring timestr 0 (match-end 0)))
5825 (if (and (not closedp) (not statep)
5826 (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
5827 rest))
5828 (progn (setq timestr (concat (substring timestr 0 -1)
5829 "-" (match-string 1 rest) "]"))
5830 (setq clocked (match-string 2 rest)))
5831 (setq clocked "-")))
5832 (save-excursion
5833 (setq extra
5834 (cond
5835 ((not org-agenda-log-mode-add-notes) nil)
5836 (statep
5837 (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
5838 (match-string 1)))
5839 (clockp
5840 (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
5841 (match-string 1)))))
5842 (if (not (re-search-backward org-outline-regexp-bol nil t))
5843 (throw :skip nil)
5844 (goto-char (match-beginning 0))
5845 (setq hdmarker (org-agenda-new-marker)
5846 inherited-tags
5847 (or (eq org-agenda-show-inherited-tags 'always)
5848 (and (listp org-agenda-show-inherited-tags)
5849 (memq 'todo org-agenda-show-inherited-tags))
5850 (and (eq org-agenda-show-inherited-tags t)
5851 (or (eq org-agenda-use-tag-inheritance t)
5852 (memq 'todo org-agenda-use-tag-inheritance))))
5853 tags (org-get-tags-at nil (not inherited-tags))
5854 level (make-string (org-reduced-level (org-outline-level)) ? ))
5855 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
5856 (setq txt (match-string 1))
5857 (when extra
5858 (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
5859 (setq txt (concat (substring txt 0 (match-beginning 1))
5860 " - " extra " " (match-string 2 txt)))
5861 (setq txt (concat txt " - " extra))))
5862 (setq txt (org-agenda-format-item
5863 (cond
5864 (closedp "Closed: ")
5865 (statep (concat "State: (" state ")"))
5866 (t (concat "Clocked: (" clocked ")")))
5867 txt level category tags timestr)))
5868 (setq priority 100000)
5869 (org-add-props txt props
5870 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
5871 'priority priority 'org-category category
5872 'org-category-position category-pos
5873 'level level
5874 'type "closed" 'date date
5875 'undone-face 'org-warning 'done-face 'org-agenda-done)
5876 (push txt ee))
5877 (goto-char (point-at-eol))))
5878 (nreverse ee)))
5880 (defun org-agenda-show-clocking-issues ()
5881 "Add overlays, showing issues with clocking.
5882 See also the user option `org-agenda-clock-consistency-checks'."
5883 (interactive)
5884 (let* ((org-time-clocksum-use-effort-durations nil)
5885 (pl org-agenda-clock-consistency-checks)
5886 (re (concat "^[ \t]*"
5887 org-clock-string
5888 "[ \t]+"
5889 "\\(\\[.*?\\]\\)" ; group 1 is first stamp
5890 "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
5891 (tlstart 0.)
5892 (tlend 0.)
5893 (maxtime (org-hh:mm-string-to-minutes
5894 (or (plist-get pl :max-duration) "24:00")))
5895 (mintime (org-hh:mm-string-to-minutes
5896 (or (plist-get pl :min-duration) 0)))
5897 (maxgap (org-hh:mm-string-to-minutes
5898 ;; default 30:00 means never complain
5899 (or (plist-get pl :max-gap) "30:00")))
5900 (gapok (mapcar 'org-hh:mm-string-to-minutes
5901 (plist-get pl :gap-ok-around)))
5902 (def-face (or (plist-get pl :default-face)
5903 '((:background "DarkRed") (:foreground "white"))))
5904 issue face m te ts dt ov)
5905 (goto-char (point-min))
5906 (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
5907 (setq issue nil face def-face)
5908 (catch 'next
5909 (setq m (org-get-at-bol 'org-marker)
5910 te nil ts nil)
5911 (unless (and m (markerp m))
5912 (setq issue "No valid clock line") (throw 'next t))
5913 (org-with-point-at m
5914 (save-excursion
5915 (goto-char (point-at-bol))
5916 (unless (looking-at re)
5917 (error "No valid Clock line")
5918 (throw 'next t))
5919 (unless (match-end 3)
5920 (setq issue "No end time"
5921 face (or (plist-get pl :no-end-time-face) face))
5922 (throw 'next t))
5923 (setq ts (match-string 1)
5924 te (match-string 3)
5925 ts (org-float-time
5926 (apply 'encode-time (org-parse-time-string ts)))
5927 te (org-float-time
5928 (apply 'encode-time (org-parse-time-string te)))
5929 dt (- te ts))))
5930 (cond
5931 ((> dt (* 60 maxtime))
5932 ;; a very long clocking chunk
5933 (setq issue (format "Clocking interval is very long: %s"
5934 (org-minutes-to-clocksum-string
5935 (floor (/ (float dt) 60.))))
5936 face (or (plist-get pl :long-face) face)))
5937 ((< dt (* 60 mintime))
5938 ;; a very short clocking chunk
5939 (setq issue (format "Clocking interval is very short: %s"
5940 (org-minutes-to-clocksum-string
5941 (floor (/ (float dt) 60.))))
5942 face (or (plist-get pl :short-face) face)))
5943 ((and (> tlend 0) (< ts tlend))
5944 ;; Two clock entries are overlapping
5945 (setq issue (format "Clocking overlap: %d minutes"
5946 (/ (- tlend ts) 60))
5947 face (or (plist-get pl :overlap-face) face)))
5948 ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
5949 ;; There is a gap, lets see if we need to report it
5950 (unless (org-agenda-check-clock-gap tlend ts gapok)
5951 (setq issue (format "Clocking gap: %d minutes"
5952 (/ (- ts tlend) 60))
5953 face (or (plist-get pl :gap-face) face))))
5954 (t nil)))
5955 (setq tlend (or te tlend) tlstart (or ts tlstart))
5956 (when issue
5957 ;; OK, there was some issue, add an overlay to show the issue
5958 (setq ov (make-overlay (point-at-bol) (point-at-eol)))
5959 (overlay-put ov 'before-string
5960 (concat
5961 (org-add-props
5962 (format "%-43s" (concat " " issue))
5964 'face face)
5965 "\n"))
5966 (overlay-put ov 'evaporate t)))))
5968 (defun org-agenda-check-clock-gap (t1 t2 ok-list)
5969 "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
5970 (catch 'exit
5971 (unless ok-list
5972 ;; there are no OK times for gaps...
5973 (throw 'exit nil))
5974 (if (> (- (/ t2 36000) (/ t1 36000)) 24)
5975 ;; This is more than 24 hours, so it is OK.
5976 ;; because we have at least one OK time, that must be in the
5977 ;; 24 hour interval.
5978 (throw 'exit t))
5979 ;; We have a shorter gap.
5980 ;; Now we have to get the minute of the day when these times are
5981 (let* ((t1dec (decode-time (seconds-to-time t1)))
5982 (t2dec (decode-time (seconds-to-time t2)))
5983 ;; compute the minute on the day
5984 (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
5985 (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
5986 (when (< min2 min1)
5987 ;; if min2 is smaller than min1, this means it is on the next day.
5988 ;; Wrap it to after midnight.
5989 (setq min2 (+ min2 1440)))
5990 ;; Now check if any of the OK times is in the gap
5991 (mapc (lambda (x)
5992 ;; Wrap the time to after midnight if necessary
5993 (if (< x min1) (setq x (+ x 1440)))
5994 ;; Check if in interval
5995 (and (<= min1 x) (>= min2 x) (throw 'exit t)))
5996 ok-list)
5997 ;; Nope, this gap is not OK
5998 nil)))
6000 (defun org-agenda-get-deadlines (&optional with-hour)
6001 "Return the deadline information for agenda display.
6002 When WITH-HOUR is non-nil, only return deadlines with an hour
6003 specification like [h]h:mm."
6004 (let* ((props (list 'mouse-face 'highlight
6005 'org-not-done-regexp org-not-done-regexp
6006 'org-todo-regexp org-todo-regexp
6007 'org-complex-heading-regexp org-complex-heading-regexp
6008 'help-echo
6009 (format "mouse-2 or RET jump to org file %s"
6010 (abbreviate-file-name buffer-file-name))))
6011 (regexp (if with-hour
6012 org-deadline-time-hour-regexp
6013 org-deadline-time-regexp))
6014 (todayp (org-agenda-todayp date)) ; DATE bound by calendar
6015 (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
6016 (dl0 (car org-agenda-deadline-leaders))
6017 (dl1 (nth 1 org-agenda-deadline-leaders))
6018 (dl2 (or (nth 2 org-agenda-deadline-leaders) dl1))
6019 d2 diff dfrac wdays pos pos1 category category-pos level
6020 tags suppress-prewarning ee txt head face s todo-state
6021 show-all upcomingp donep timestr warntime inherited-tags ts-date)
6022 (goto-char (point-min))
6023 (while (re-search-forward regexp nil t)
6024 (catch :skip
6025 (org-agenda-skip)
6026 (setq s (match-string 1)
6027 txt nil
6028 pos (1- (match-beginning 1))
6029 todo-state (save-match-data (org-get-todo-state))
6030 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
6031 (member todo-state
6032 org-agenda-repeating-timestamp-show-all))
6033 d2 (org-time-string-to-absolute
6034 s d1 'past show-all (current-buffer) pos)
6035 diff (- d2 d1))
6036 (setq suppress-prewarning
6037 (let ((ds (and org-agenda-skip-deadline-prewarning-if-scheduled
6038 (let ((item (buffer-substring (point-at-bol)
6039 (point-at-eol))))
6040 (save-match-data
6041 (and (string-match
6042 org-scheduled-time-regexp item)
6043 (match-string 1 item)))))))
6044 (cond
6045 ((not ds) nil)
6046 ;; The current item has a scheduled date (in ds), so
6047 ;; evaluate its prewarning lead time.
6048 ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
6049 ;; Use global prewarning-restart lead time.
6050 org-agenda-skip-deadline-prewarning-if-scheduled)
6051 ((eq org-agenda-skip-deadline-prewarning-if-scheduled
6052 'pre-scheduled)
6053 ;; Set prewarning to no earlier than scheduled.
6054 (min (- d2 (org-time-string-to-absolute
6055 ds d1 'past show-all (current-buffer) pos))
6056 org-deadline-warning-days))
6057 ;; Set prewarning to deadline.
6058 (t 0))))
6059 (setq wdays (if suppress-prewarning
6060 (let ((org-deadline-warning-days suppress-prewarning))
6061 (org-get-wdays s))
6062 (org-get-wdays s))
6063 dfrac (- 1 (/ (* 1.0 diff) (max wdays 1)))
6064 upcomingp (and todayp (> diff 0)))
6065 ;; When to show a deadline in the calendar:
6066 ;; If the expiration is within wdays warning time.
6067 ;; Past-due deadlines are only shown on the current date
6068 (if (and (or (and (<= diff wdays)
6069 (and todayp (not org-agenda-only-exact-dates)))
6070 (= diff 0)))
6071 (save-excursion
6072 ;; (setq todo-state (org-get-todo-state))
6073 (setq donep (member todo-state org-done-keywords))
6074 (if (and donep
6075 (or org-agenda-skip-deadline-if-done
6076 (not (= diff 0))))
6077 (setq txt nil)
6078 (setq category (org-get-category)
6079 warntime (get-text-property (point) 'org-appt-warntime)
6080 category-pos (get-text-property (point) 'org-category-position))
6081 (if (not (re-search-backward "^\\*+[ \t]+" nil t))
6082 (throw :skip nil)
6083 (goto-char (match-end 0))
6084 (setq pos1 (match-beginning 0))
6085 (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
6086 (setq inherited-tags
6087 (or (eq org-agenda-show-inherited-tags 'always)
6088 (and (listp org-agenda-show-inherited-tags)
6089 (memq 'agenda org-agenda-show-inherited-tags))
6090 (and (eq org-agenda-show-inherited-tags t)
6091 (or (eq org-agenda-use-tag-inheritance t)
6092 (memq 'agenda org-agenda-use-tag-inheritance))))
6093 tags (org-get-tags-at pos1 (not inherited-tags)))
6094 (setq head (buffer-substring
6095 (point)
6096 (progn (skip-chars-forward "^\r\n")
6097 (point))))
6098 (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
6099 (setq timestr
6100 (concat (substring s (match-beginning 1)) " "))
6101 (setq timestr 'time))
6102 (setq txt (org-agenda-format-item
6103 (cond ((= diff 0) dl0)
6104 ((> diff 0)
6105 (if (functionp dl1)
6106 (funcall dl1 diff date)
6107 (format dl1 diff)))
6109 (if (functionp dl2)
6110 (funcall dl2 diff date)
6111 (format dl2 (if (string= dl2 dl1)
6112 diff (abs diff))))))
6113 head level category tags
6114 (if (not (= diff 0)) nil timestr)))))
6115 (when txt
6116 (setq face (org-agenda-deadline-face dfrac))
6117 (org-add-props txt props
6118 'org-marker (org-agenda-new-marker pos)
6119 'warntime warntime
6120 'level level
6121 'ts-date d2
6122 'org-hd-marker (org-agenda-new-marker pos1)
6123 'priority (+ (- diff)
6124 (org-get-priority txt))
6125 'org-category category
6126 'org-category-position category-pos
6127 'todo-state todo-state
6128 'type (if upcomingp "upcoming-deadline" "deadline")
6129 'date (if upcomingp date d2)
6130 'face (if donep 'org-agenda-done face)
6131 'undone-face face 'done-face 'org-agenda-done)
6132 (push txt ee))))))
6133 (nreverse ee)))
6135 (defun org-agenda-deadline-face (fraction)
6136 "Return the face to displaying a deadline item.
6137 FRACTION is what fraction of the head-warning time has passed."
6138 (let ((faces org-agenda-deadline-faces) f)
6139 (catch 'exit
6140 (while (setq f (pop faces))
6141 (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
6143 (defun org-agenda-get-scheduled (&optional deadline-results with-hour)
6144 "Return the scheduled information for agenda display.
6145 When WITH-HOUR is non-nil, only return scheduled items with
6146 an hour specification like [h]h:mm."
6147 (let* ((props (list 'org-not-done-regexp org-not-done-regexp
6148 'org-todo-regexp org-todo-regexp
6149 'org-complex-heading-regexp org-complex-heading-regexp
6150 'done-face 'org-agenda-done
6151 'mouse-face 'highlight
6152 'help-echo
6153 (format "mouse-2 or RET jump to org file %s"
6154 (abbreviate-file-name buffer-file-name))))
6155 (regexp (if with-hour
6156 org-scheduled-time-hour-regexp
6157 org-scheduled-time-regexp))
6158 (todayp (org-agenda-todayp date)) ; DATE bound by calendar
6159 (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
6161 (deadline-position-alist
6162 (mapcar (lambda (a) (and (setq mm (get-text-property
6163 0 'org-hd-marker a))
6164 (cons (marker-position mm) a)))
6165 deadline-results))
6166 d2 diff pos pos1 category category-pos level tags donep
6167 ee txt head pastschedp todo-state face timestr s habitp show-all
6168 did-habit-check-p warntime inherited-tags ts-date suppress-delay
6169 ddays)
6170 (goto-char (point-min))
6171 (while (re-search-forward regexp nil t)
6172 (catch :skip
6173 (org-agenda-skip)
6174 (setq s (match-string 1)
6175 txt nil
6176 pos (1- (match-beginning 1))
6177 todo-state (save-match-data (org-get-todo-state))
6178 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
6179 (member todo-state
6180 org-agenda-repeating-timestamp-show-all))
6181 d2 (org-time-string-to-absolute
6182 s d1 'past show-all (current-buffer) pos)
6183 diff (- d2 d1)
6184 warntime (get-text-property (point) 'org-appt-warntime))
6185 (setq pastschedp (and todayp (< diff 0)))
6186 (setq did-habit-check-p nil)
6187 (setq suppress-delay
6188 (let ((ds (and org-agenda-skip-scheduled-delay-if-deadline
6189 (let ((item (buffer-substring (point-at-bol) (point-at-eol))))
6190 (save-match-data
6191 (and (string-match
6192 org-deadline-time-regexp item)
6193 (match-string 1 item)))))))
6194 (cond
6195 ((not ds) nil)
6196 ;; The current item has a deadline date (in ds), so
6197 ;; evaluate its delay time.
6198 ((integerp org-agenda-skip-scheduled-delay-if-deadline)
6199 ;; Use global delay time.
6200 (- org-agenda-skip-scheduled-delay-if-deadline))
6201 ((eq org-agenda-skip-scheduled-delay-if-deadline
6202 'post-deadline)
6203 ;; Set delay to no later than deadline.
6204 (min (- d2 (org-time-string-to-absolute
6205 ds d1 'past show-all (current-buffer) pos))
6206 org-scheduled-delay-days))
6207 (t 0))))
6208 (setq ddays (if suppress-delay
6209 (let ((org-scheduled-delay-days suppress-delay))
6210 (org-get-wdays s t t))
6211 (org-get-wdays s t)))
6212 ;; Use a delay of 0 when there is a repeater and the delay is
6213 ;; of the form --3d
6214 (when (and (save-match-data (string-match "--[0-9]+[hdwmy]" s))
6215 (< (org-time-string-to-absolute s)
6216 (org-time-string-to-absolute
6217 s d2 'past nil (current-buffer) pos)))
6218 (setq ddays 0))
6219 ;; When to show a scheduled item in the calendar:
6220 ;; If it is on or past the date.
6221 (when (or (and (> ddays 0) (= diff (- ddays)))
6222 (and (zerop ddays) (= diff 0))
6223 (and (< (+ diff ddays) 0)
6224 (< (abs diff) org-scheduled-past-days)
6225 (and todayp (not org-agenda-only-exact-dates)))
6226 ;; org-is-habit-p uses org-entry-get, which is expansive
6227 ;; so we go extra mile to only call it once
6228 (and todayp
6229 (boundp 'org-habit-show-all-today)
6230 org-habit-show-all-today
6231 (setq did-habit-check-p t)
6232 (setq habitp (and (functionp 'org-is-habit-p)
6233 (org-is-habit-p)))))
6234 (save-excursion
6235 (setq donep (member todo-state org-done-keywords))
6236 (if (and donep
6237 (or org-agenda-skip-scheduled-if-done
6238 (not (= diff 0))
6239 (and (functionp 'org-is-habit-p)
6240 (org-is-habit-p))))
6241 (setq txt nil)
6242 (setq habitp (if did-habit-check-p habitp
6243 (and (functionp 'org-is-habit-p)
6244 (org-is-habit-p))))
6245 (setq category (org-get-category)
6246 category-pos (get-text-property (point) 'org-category-position))
6247 (if (and (eq org-agenda-skip-scheduled-if-deadline-is-shown
6248 'repeated-after-deadline)
6249 (<= 0 (- d2 (time-to-days (org-get-deadline-time (point))))))
6250 (throw :skip nil))
6251 (if (not (re-search-backward "^\\*+[ \t]+" nil t))
6252 (throw :skip nil)
6253 (goto-char (match-end 0))
6254 (setq pos1 (match-beginning 0))
6255 (if habitp
6256 (if (or (not org-habit-show-habits)
6257 (and (not todayp)
6258 (boundp 'org-habit-show-habits-only-for-today)
6259 org-habit-show-habits-only-for-today))
6260 (throw :skip nil))
6261 (if (and
6262 (or (eq t org-agenda-skip-scheduled-if-deadline-is-shown)
6263 (and (eq org-agenda-skip-scheduled-if-deadline-is-shown 'not-today)
6264 pastschedp))
6265 (setq mm (assoc pos1 deadline-position-alist)))
6266 (throw :skip nil)))
6267 (setq inherited-tags
6268 (or (eq org-agenda-show-inherited-tags 'always)
6269 (and (listp org-agenda-show-inherited-tags)
6270 (memq 'agenda org-agenda-show-inherited-tags))
6271 (and (eq org-agenda-show-inherited-tags t)
6272 (or (eq org-agenda-use-tag-inheritance t)
6273 (memq 'agenda org-agenda-use-tag-inheritance))))
6275 tags (org-get-tags-at nil (not inherited-tags)))
6276 (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
6277 (setq head (buffer-substring
6278 (point)
6279 (progn (skip-chars-forward "^\r\n") (point))))
6280 (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
6281 (setq timestr
6282 (concat (substring s (match-beginning 1)) " "))
6283 (setq timestr 'time))
6284 (setq txt (org-agenda-format-item
6285 (if (= diff 0)
6286 (car org-agenda-scheduled-leaders)
6287 (format (nth 1 org-agenda-scheduled-leaders)
6288 (- 1 diff)))
6289 head level category tags
6290 (if (not (= diff 0)) nil timestr)
6291 nil habitp))))
6292 (when txt
6293 (setq face
6294 (cond
6295 ((and (not habitp) pastschedp)
6296 'org-scheduled-previously)
6297 (todayp 'org-scheduled-today)
6298 (t 'org-scheduled))
6299 habitp (and habitp (org-habit-parse-todo)))
6300 (org-add-props txt props
6301 'undone-face face
6302 'face (if donep 'org-agenda-done face)
6303 'org-marker (org-agenda-new-marker pos)
6304 'org-hd-marker (org-agenda-new-marker pos1)
6305 'type (if pastschedp "past-scheduled" "scheduled")
6306 'date (if pastschedp d2 date)
6307 'ts-date d2
6308 'warntime warntime
6309 'level level
6310 'priority (if habitp
6311 (org-habit-get-priority habitp)
6312 (+ 94 (- 5 diff) (org-get-priority txt)))
6313 'org-category category
6314 'category-position category-pos
6315 'org-habit-p habitp
6316 'todo-state todo-state)
6317 (push txt ee))))))
6318 (nreverse ee)))
6320 (defun org-agenda-get-blocks ()
6321 "Return the date-range information for agenda display."
6322 (let* ((props (list 'face nil
6323 'org-not-done-regexp org-not-done-regexp
6324 'org-todo-regexp org-todo-regexp
6325 'org-complex-heading-regexp org-complex-heading-regexp
6326 'mouse-face 'highlight
6327 'help-echo
6328 (format "mouse-2 or RET jump to org file %s"
6329 (abbreviate-file-name buffer-file-name))))
6330 (regexp org-tr-regexp)
6331 (d0 (calendar-absolute-from-gregorian date))
6332 marker hdmarker ee txt d1 d2 s1 s2 category category-pos
6333 level todo-state tags pos head donep inherited-tags)
6334 (goto-char (point-min))
6335 (while (re-search-forward regexp nil t)
6336 (catch :skip
6337 (org-agenda-skip)
6338 (setq pos (point))
6339 (let ((start-time (match-string 1))
6340 (end-time (match-string 2)))
6341 (setq s1 (match-string 1)
6342 s2 (match-string 2)
6343 d1 (time-to-days (org-time-string-to-time s1 (current-buffer) pos))
6344 d2 (time-to-days (org-time-string-to-time s2 (current-buffer) pos)))
6345 (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
6346 ;; Only allow days between the limits, because the normal
6347 ;; date stamps will catch the limits.
6348 (save-excursion
6349 (setq todo-state (org-get-todo-state))
6350 (setq donep (member todo-state org-done-keywords))
6351 (if (and donep org-agenda-skip-timestamp-if-done)
6352 (throw :skip t))
6353 (setq marker (org-agenda-new-marker (point)))
6354 (setq category (org-get-category)
6355 category-pos (get-text-property (point) 'org-category-position))
6356 (if (not (re-search-backward org-outline-regexp-bol nil t))
6357 (throw :skip nil)
6358 (goto-char (match-beginning 0))
6359 (setq hdmarker (org-agenda-new-marker (point))
6360 inherited-tags
6361 (or (eq org-agenda-show-inherited-tags 'always)
6362 (and (listp org-agenda-show-inherited-tags)
6363 (memq 'agenda org-agenda-show-inherited-tags))
6364 (and (eq org-agenda-show-inherited-tags t)
6365 (or (eq org-agenda-use-tag-inheritance t)
6366 (memq 'agenda org-agenda-use-tag-inheritance))))
6368 tags (org-get-tags-at nil (not inherited-tags)))
6369 (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
6370 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
6371 (setq head (match-string 1))
6372 (let ((remove-re
6373 (if org-agenda-remove-timeranges-from-blocks
6374 (concat
6375 "<" (regexp-quote s1) ".*?>"
6376 "--"
6377 "<" (regexp-quote s2) ".*?>")
6378 nil)))
6379 (setq txt (org-agenda-format-item
6380 (format
6381 (nth (if (= d1 d2) 0 1)
6382 org-agenda-timerange-leaders)
6383 (1+ (- d0 d1)) (1+ (- d2 d1)))
6384 head level category tags
6385 (cond ((and (= d1 d0) (= d2 d0))
6386 (concat "<" start-time ">--<" end-time ">"))
6387 ((= d1 d0)
6388 (concat "<" start-time ">"))
6389 ((= d2 d0)
6390 (concat "<" end-time ">")))
6391 remove-re))))
6392 (org-add-props txt props
6393 'org-marker marker 'org-hd-marker hdmarker
6394 'type "block" 'date date
6395 'level level
6396 'todo-state todo-state
6397 'priority (org-get-priority txt) 'org-category category
6398 'org-category-position category-pos)
6399 (push txt ee))))
6400 (goto-char pos)))
6401 ;; Sort the entries by expiration date.
6402 (nreverse ee)))
6404 ;;; Agenda presentation and sorting
6406 (defvar org-prefix-has-time nil
6407 "A flag, set by `org-compile-prefix-format'.
6408 The flag is set if the currently compiled format contains a `%t'.")
6409 (defvar org-prefix-has-tag nil
6410 "A flag, set by `org-compile-prefix-format'.
6411 The flag is set if the currently compiled format contains a `%T'.")
6412 (defvar org-prefix-has-effort nil
6413 "A flag, set by `org-compile-prefix-format'.
6414 The flag is set if the currently compiled format contains a `%e'.")
6415 (defvar org-prefix-has-breadcrumbs nil
6416 "A flag, set by `org-compile-prefix-format'.
6417 The flag is set if the currently compiled format contains a `%b'.")
6418 (defvar org-prefix-category-length nil
6419 "Used by `org-compile-prefix-format' to remember the category field width.")
6420 (defvar org-prefix-category-max-length nil
6421 "Used by `org-compile-prefix-format' to remember the category field width.")
6423 (defun org-agenda-get-category-icon (category)
6424 "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
6425 (dolist (entry org-agenda-category-icon-alist)
6426 (when (org-string-match-p (car entry) category)
6427 (if (listp (cadr entry))
6428 (return (cadr entry))
6429 (return (apply 'create-image (cdr entry)))))))
6431 (defun org-agenda-format-item (extra txt &optional level category tags dotime
6432 remove-re habitp)
6433 "Format TXT to be inserted into the agenda buffer.
6434 In particular, add the prefix and corresponding text properties.
6436 EXTRA must be a string to replace the `%s' specifier in the prefix format.
6437 LEVEL may be a string to replace the `%l' specifier.
6438 CATEGORY (a string, a symbol or nil) may be used to overrule the default
6439 category taken from local variable or file name. It will replace the `%c'
6440 specifier in the format.
6441 DOTIME, when non-nil, indicates that a time-of-day should be extracted from
6442 TXT for sorting of this entry, and for the `%t' specifier in the format.
6443 When DOTIME is a string, this string is searched for a time before TXT is.
6444 TAGS can be the tags of the headline.
6445 Any match of REMOVE-RE will be removed from TXT."
6446 ;; We keep the org-prefix-* variable values along with a compiled
6447 ;; formatter, so that multiple agendas existing at the same time do
6448 ;; not step on each other toes.
6450 ;; It was inconvenient to make these variables buffer local in
6451 ;; Agenda buffers, because this function expects to be called with
6452 ;; the buffer where item comes from being current, and not agenda
6453 ;; buffer
6454 (let* ((bindings (car org-prefix-format-compiled))
6455 (formatter (cadr org-prefix-format-compiled)))
6456 (loop for (var value) in bindings
6457 do (set var value))
6458 (save-match-data
6459 ;; Diary entries sometimes have extra whitespace at the beginning
6460 (setq txt (org-trim txt))
6462 ;; Fix the tags part in txt
6463 (setq txt (org-agenda-fix-displayed-tags
6464 txt tags
6465 org-agenda-show-inherited-tags
6466 org-agenda-hide-tags-regexp))
6468 (let* ((category (or category
6469 (if (stringp org-category)
6470 org-category
6471 (and org-category (symbol-name org-category)))
6472 (if buffer-file-name
6473 (file-name-sans-extension
6474 (file-name-nondirectory buffer-file-name))
6475 "")))
6476 (category-icon (org-agenda-get-category-icon category))
6477 (category-icon (if category-icon
6478 (propertize " " 'display category-icon)
6479 ""))
6480 ;; time, tag, effort are needed for the eval of the prefix format
6481 (tag (if tags (nth (1- (length tags)) tags) ""))
6482 time effort neffort
6483 (ts (if dotime (concat
6484 (if (stringp dotime) dotime "")
6485 (and org-agenda-search-headline-for-time txt))))
6486 (time-of-day (and dotime (org-get-time-of-day ts)))
6487 stamp plain s0 s1 s2 rtn srp l
6488 duration thecategory breadcrumbs)
6489 (and (derived-mode-p 'org-mode) buffer-file-name
6490 (add-to-list 'org-agenda-contributing-files buffer-file-name))
6491 (when (and dotime time-of-day)
6492 ;; Extract starting and ending time and move them to prefix
6493 (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
6494 (setq plain (string-match org-plain-time-of-day-regexp ts)))
6495 (setq s0 (match-string 0 ts)
6496 srp (and stamp (match-end 3))
6497 s1 (match-string (if plain 1 2) ts)
6498 s2 (match-string (if plain 8 (if srp 4 6)) ts))
6500 ;; If the times are in TXT (not in DOTIMES), and the prefix will list
6501 ;; them, we might want to remove them there to avoid duplication.
6502 ;; The user can turn this off with a variable.
6503 (if (and org-prefix-has-time
6504 org-agenda-remove-times-when-in-prefix (or stamp plain)
6505 (string-match (concat (regexp-quote s0) " *") txt)
6506 (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
6507 (if (eq org-agenda-remove-times-when-in-prefix 'beg)
6508 (= (match-beginning 0) 0)
6510 (setq txt (replace-match "" nil nil txt))))
6511 ;; Normalize the time(s) to 24 hour
6512 (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
6513 (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
6515 ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
6516 (let (org-time-clocksum-use-effort-durations)
6517 (when (and s1 (not s2) org-agenda-default-appointment-duration)
6518 (setq s2
6519 (org-minutes-to-clocksum-string
6520 (+ (org-hh:mm-string-to-minutes s1)
6521 org-agenda-default-appointment-duration)))))
6523 ;; Compute the duration
6524 (when s2
6525 (setq duration (- (org-hh:mm-string-to-minutes s2)
6526 (org-hh:mm-string-to-minutes s1)))))
6528 (when (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
6529 txt)
6530 ;; Tags are in the string
6531 (if (or (eq org-agenda-remove-tags t)
6532 (and org-agenda-remove-tags
6533 org-prefix-has-tag))
6534 (setq txt (replace-match "" t t txt))
6535 (setq txt (replace-match
6536 (concat (make-string (max (- 50 (length txt)) 1) ?\ )
6537 (match-string 2 txt))
6538 t t txt))))
6539 (when (derived-mode-p 'org-mode)
6540 (setq effort (ignore-errors (get-text-property 0 'org-effort txt))))
6542 ;; org-agenda-add-time-grid-maybe calls us with *Agenda* as
6543 ;; current buffer, so move this check outside of above
6544 (if effort
6545 (setq neffort (org-duration-string-to-minutes effort)
6546 effort (setq effort (concat "[" effort "]")))
6547 ;; prevent erroring out with %e format when there is no effort
6548 (setq effort ""))
6550 (when remove-re
6551 (while (string-match remove-re txt)
6552 (setq txt (replace-match "" t t txt))))
6554 ;; Set org-heading property on `txt' to mark the start of the
6555 ;; heading.
6556 (add-text-properties 0 (length txt) '(org-heading t) txt)
6558 ;; Prepare the variables needed in the eval of the compiled format
6559 (if org-prefix-has-breadcrumbs
6560 (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
6561 (let ((s (org-display-outline-path nil nil "->" t)))
6562 (if (eq "" s) "" (concat s "->"))))))
6563 (setq time (cond (s2 (concat
6564 (org-agenda-time-of-day-to-ampm-maybe s1)
6565 "-" (org-agenda-time-of-day-to-ampm-maybe s2)
6566 (if org-agenda-timegrid-use-ampm " ")))
6567 (s1 (concat
6568 (org-agenda-time-of-day-to-ampm-maybe s1)
6569 (if org-agenda-timegrid-use-ampm
6570 "........ "
6571 "......")))
6572 (t ""))
6573 extra (or (and (not habitp) extra) "")
6574 category (if (symbolp category) (symbol-name category) category)
6575 thecategory (copy-sequence category)
6576 level (or level ""))
6577 (if (string-match org-bracket-link-regexp category)
6578 (progn
6579 (setq l (if (match-end 3)
6580 (- (match-end 3) (match-beginning 3))
6581 (- (match-end 1) (match-beginning 1))))
6582 (when (< l (or org-prefix-category-length 0))
6583 (setq category (copy-sequence category))
6584 (org-add-props category nil
6585 'extra-space (make-string
6586 (- org-prefix-category-length l 1) ?\ ))))
6587 (if (and org-prefix-category-max-length
6588 (>= (length category) org-prefix-category-max-length))
6589 (setq category (substring category 0 (1- org-prefix-category-max-length)))))
6590 ;; Evaluate the compiled format
6591 (setq rtn (concat (eval formatter) txt))
6593 ;; And finally add the text properties
6594 (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
6595 (org-add-props rtn nil
6596 'org-category (if thecategory (downcase thecategory) category)
6597 'tags (mapcar 'org-downcase-keep-props tags)
6598 'org-highest-priority org-highest-priority
6599 'org-lowest-priority org-lowest-priority
6600 'time-of-day time-of-day
6601 'duration duration
6602 'effort effort
6603 'effort-minutes neffort
6604 'breadcrumbs breadcrumbs
6605 'txt txt
6606 'level level
6607 'time time
6608 'extra extra
6609 'format org-prefix-format-compiled
6610 'dotime dotime)))))
6612 (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
6613 "Remove tags string from TXT, and add a modified list of tags.
6614 The modified list may contain inherited tags, and tags matched by
6615 `org-agenda-hide-tags-regexp' will be removed."
6616 (when (or add-inherited hide-re)
6617 (if (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") txt)
6618 (setq txt (substring txt 0 (match-beginning 0))))
6619 (setq tags
6620 (delq nil
6621 (mapcar (lambda (tg)
6622 (if (or (and hide-re (string-match hide-re tg))
6623 (and (not add-inherited)
6624 (get-text-property 0 'inherited tg)))
6626 tg))
6627 tags)))
6628 (when tags
6629 (let ((have-i (get-text-property 0 'inherited (car tags)))
6631 (setq txt (concat txt " :"
6632 (mapconcat
6633 (lambda (x)
6634 (setq i (get-text-property 0 'inherited x))
6635 (if (and have-i (not i))
6636 (progn
6637 (setq have-i nil)
6638 (concat ":" x))
6640 tags ":")
6641 (if have-i "::" ":"))))))
6642 txt)
6644 (defun org-downcase-keep-props (s)
6645 (let ((props (text-properties-at 0 s)))
6646 (setq s (downcase s))
6647 (add-text-properties 0 (length s) props s)
6650 (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
6652 (defun org-agenda-add-time-grid-maybe (list ndays todayp)
6653 "Add a time-grid for agenda items which need it.
6655 LIST is the list of agenda items formatted by `org-agenda-list'.
6656 NDAYS is the span of the current agenda view.
6657 TODAYP is `t' when the current agenda view is on today."
6658 (catch 'exit
6659 (cond ((not org-agenda-use-time-grid) (throw 'exit list))
6660 ((and todayp (member 'today (car org-agenda-time-grid))))
6661 ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
6662 ((member 'weekly (car org-agenda-time-grid)))
6663 (t (throw 'exit list)))
6664 (let* ((have (delq nil (mapcar
6665 (lambda (x) (get-text-property 1 'time-of-day x))
6666 list)))
6667 (string (nth 1 org-agenda-time-grid))
6668 (gridtimes (nth 2 org-agenda-time-grid))
6669 (req (car org-agenda-time-grid))
6670 (remove (member 'remove-match req))
6671 new time)
6672 (if (and (member 'require-timed req) (not have))
6673 ;; don't show empty grid
6674 (throw 'exit list))
6675 (while (setq time (pop gridtimes))
6676 (unless (and remove (member time have))
6677 (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
6678 (push (org-agenda-format-item
6679 nil string nil "" nil
6680 (concat (substring time 0 -2) ":" (substring time -2)))
6681 new)
6682 (put-text-property
6683 2 (length (car new)) 'face 'org-time-grid (car new))))
6684 (when (and todayp org-agenda-show-current-time-in-grid)
6685 (push (org-agenda-format-item
6686 nil org-agenda-current-time-string nil "" nil
6687 (format-time-string "%H:%M "))
6688 new)
6689 (put-text-property
6690 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
6692 (if (member 'time-up org-agenda-sorting-strategy-selected)
6693 (append new list)
6694 (append list new)))))
6696 (defun org-compile-prefix-format (key)
6697 "Compile the prefix format into a Lisp form that can be evaluated.
6698 The resulting form and associated variable bindings is returned
6699 and stored in the variable `org-prefix-format-compiled'."
6700 (setq org-prefix-has-time nil
6701 org-prefix-has-tag nil
6702 org-prefix-category-length nil
6703 org-prefix-has-effort nil
6704 org-prefix-has-breadcrumbs nil)
6705 (let ((s (cond
6706 ((stringp org-agenda-prefix-format)
6707 org-agenda-prefix-format)
6708 ((assq key org-agenda-prefix-format)
6709 (cdr (assq key org-agenda-prefix-format)))
6710 (t " %-12:c%?-12t% s")))
6711 (start 0)
6712 varform vars var e c f opt)
6713 (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
6714 s start)
6715 (setq var (or (cdr (assoc (match-string 4 s)
6716 '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
6717 ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
6718 'eval)
6719 c (or (match-string 3 s) "")
6720 opt (match-beginning 1)
6721 start (1+ (match-beginning 0)))
6722 (if (equal var 'time) (setq org-prefix-has-time t))
6723 (if (equal var 'tag) (setq org-prefix-has-tag t))
6724 (if (equal var 'effort) (setq org-prefix-has-effort t))
6725 (if (equal var 'breadcrumbs) (setq org-prefix-has-breadcrumbs t))
6726 (setq f (concat "%" (match-string 2 s) "s"))
6727 (when (equal var 'category)
6728 (setq org-prefix-category-length
6729 (floor (abs (string-to-number (match-string 2 s)))))
6730 (setq org-prefix-category-max-length
6731 (let ((x (match-string 2 s)))
6732 (save-match-data
6733 (if (string-match "\\.[0-9]+" x)
6734 (string-to-number (substring (match-string 0 x) 1)))))))
6735 (if (eq var 'eval)
6736 (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
6737 (if opt
6738 (setq varform
6739 `(if (equal "" ,var)
6741 (format ,f (if (equal "" ,var) "" (concat ,var ,c)))))
6742 (setq varform `(format ,f (if (equal ,var "") "" (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
6743 (setq s (replace-match "%s" t nil s))
6744 (push varform vars))
6745 (setq vars (nreverse vars))
6746 (with-current-buffer (or org-agenda-buffer (current-buffer))
6747 (setq org-prefix-format-compiled
6748 (list
6749 `((org-prefix-has-time ,org-prefix-has-time)
6750 (org-prefix-has-tag ,org-prefix-has-tag)
6751 (org-prefix-category-length ,org-prefix-category-length)
6752 (org-prefix-has-effort ,org-prefix-has-effort)
6753 (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
6754 `(format ,s ,@vars))))))
6756 (defun org-set-sorting-strategy (key)
6757 (if (symbolp (car org-agenda-sorting-strategy))
6758 ;; the old format
6759 (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
6760 (setq org-agenda-sorting-strategy-selected
6761 (or (cdr (assq key org-agenda-sorting-strategy))
6762 (cdr (assq 'agenda org-agenda-sorting-strategy))
6763 '(time-up category-keep priority-down)))))
6765 (defun org-get-time-of-day (s &optional string mod24)
6766 "Check string S for a time of day.
6767 If found, return it as a military time number between 0 and 2400.
6768 If not found, return nil.
6769 The optional STRING argument forces conversion into a 5 character wide string
6770 HH:MM."
6771 (save-match-data
6772 (when
6773 (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
6774 (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
6775 (let* ((h (string-to-number (match-string 1 s)))
6776 (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
6777 (ampm (if (match-end 4) (downcase (match-string 4 s))))
6778 (am-p (equal ampm "am"))
6779 (h1 (cond ((not ampm) h)
6780 ((= h 12) (if am-p 0 12))
6781 (t (+ h (if am-p 0 12)))))
6782 (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
6783 (mod h1 24) h1))
6784 (t0 (+ (* 100 h2) m))
6785 (t1 (concat (if (>= h1 24) "+" " ")
6786 (if (and org-agenda-time-leading-zero
6787 (< t0 1000)) "0" "")
6788 (if (< t0 100) "0" "")
6789 (if (< t0 10) "0" "")
6790 (int-to-string t0))))
6791 (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
6793 (defvar org-agenda-before-sorting-filter-function nil
6794 "Function to be applied to agenda items prior to sorting.
6795 Prior to sorting also means just before they are inserted into the agenda.
6797 To aid sorting, you may revisit the original entries and add more text
6798 properties which will later be used by the sorting functions.
6800 The function should take a string argument, an agenda line.
6801 It has access to the text properties in that line, which contain among
6802 other things, the property `org-hd-marker' that points to the entry
6803 where the line comes from. Note that not all lines going into the agenda
6804 have this property, only most.
6806 The function should return the modified string. It is probably best
6807 to ONLY change text properties.
6809 You can also use this function as a filter, by returning nil for lines
6810 you don't want to have in the agenda at all. For this application, you
6811 could bind the variable in the options section of a custom command.")
6813 (defun org-agenda-finalize-entries (list &optional type)
6814 "Sort, limit and concatenate the LIST of agenda items.
6815 The optional argument TYPE tells the agenda type."
6816 (let ((max-effort (cond ((listp org-agenda-max-effort)
6817 (cdr (assoc type org-agenda-max-effort)))
6818 (t org-agenda-max-effort)))
6819 (max-todo (cond ((listp org-agenda-max-todos)
6820 (cdr (assoc type org-agenda-max-todos)))
6821 (t org-agenda-max-todos)))
6822 (max-tags (cond ((listp org-agenda-max-tags)
6823 (cdr (assoc type org-agenda-max-tags)))
6824 (t org-agenda-max-tags)))
6825 (max-entries (cond ((listp org-agenda-max-entries)
6826 (cdr (assoc type org-agenda-max-entries)))
6827 (t org-agenda-max-entries))) l)
6828 (when org-agenda-before-sorting-filter-function
6829 (setq list
6830 (delq nil
6831 (mapcar
6832 org-agenda-before-sorting-filter-function list))))
6833 (setq list (mapcar 'org-agenda-highlight-todo list)
6834 list (mapcar 'identity (sort list 'org-entries-lessp)))
6835 (when max-effort
6836 (setq list (org-agenda-limit-entries
6837 list 'effort-minutes max-effort 'identity)))
6838 (when max-todo
6839 (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
6840 (when max-tags
6841 (setq list (org-agenda-limit-entries list 'tags max-tags)))
6842 (when max-entries
6843 (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
6844 (mapconcat 'identity list "\n")))
6846 (defun org-agenda-limit-entries (list prop limit &optional fn)
6847 "Limit the number of agenda entries."
6848 (let ((include (and limit (< limit 0))))
6849 (if limit
6850 (let ((fun (or fn (lambda (p) (if p 1))))
6851 (lim 0))
6852 (delq nil
6853 (mapcar
6854 (lambda (e)
6855 (let ((pval (funcall fun (get-text-property 1 prop e))))
6856 (if pval (setq lim (+ lim pval)))
6857 (cond ((and pval (<= lim (abs limit))) e)
6858 ((and include (not pval)) e))))
6859 list)))
6860 list)))
6862 (defun org-agenda-limit-interactively ()
6863 "In agenda, interactively limit entries to various maximums."
6864 (interactive)
6865 (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
6866 (num (string-to-number (read-from-minibuffer "How many? "))))
6867 (cond ((equal max ?e)
6868 (let ((org-agenda-max-entries num)) (org-agenda-redo)))
6869 ((equal max ?t)
6870 (let ((org-agenda-max-todos num)) (org-agenda-redo)))
6871 ((equal max ?T)
6872 (let ((org-agenda-max-tags num)) (org-agenda-redo)))
6873 ((equal max ?E)
6874 (let ((org-agenda-max-effort num)) (org-agenda-redo)))))
6875 (org-agenda-fit-window-to-buffer))
6877 (defun org-agenda-highlight-todo (x)
6878 (let ((org-done-keywords org-done-keywords-for-agenda)
6879 (case-fold-search nil)
6881 (if (eq x 'line)
6882 (save-excursion
6883 (beginning-of-line 1)
6884 (setq re (org-get-at-bol 'org-todo-regexp))
6885 (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
6886 (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
6887 (add-text-properties (match-beginning 0) (match-end 1)
6888 (list 'face (org-get-todo-face 1)))
6889 (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
6890 (delete-region (match-beginning 1) (1- (match-end 0)))
6891 (goto-char (match-beginning 1))
6892 (insert (format org-agenda-todo-keyword-format s)))))
6893 (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
6894 (setq re (get-text-property 0 'org-todo-regexp x))
6895 (when (and re
6896 ;; Test `pl' because if there's no heading content,
6897 ;; there's no point matching to highlight. Note
6898 ;; that if we didn't test `pl' first, and there
6899 ;; happened to be no keyword from `org-todo-regexp'
6900 ;; on this heading line, then the `equal' comparison
6901 ;; afterwards would spuriously succeed in the case
6902 ;; where `pl' is nil -- causing an args-out-of-range
6903 ;; error when we try to add text properties to text
6904 ;; that isn't there.
6906 (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
6907 x pl) pl))
6908 (add-text-properties
6909 (or (match-end 1) (match-end 0)) (match-end 0)
6910 (list 'face (org-get-todo-face (match-string 2 x)))
6912 (when (match-end 1)
6913 (setq x (concat (substring x 0 (match-end 1))
6914 (format org-agenda-todo-keyword-format
6915 (match-string 2 x))
6916 (org-add-props " " (text-properties-at 0 x))
6917 (substring x (match-end 3)))))))
6918 x)))
6920 (defsubst org-cmp-priority (a b)
6921 "Compare the priorities of string A and B."
6922 (let ((pa (or (get-text-property 1 'priority a) 0))
6923 (pb (or (get-text-property 1 'priority b) 0)))
6924 (cond ((> pa pb) +1)
6925 ((< pa pb) -1))))
6927 (defsubst org-cmp-effort (a b)
6928 "Compare the effort values of string A and B."
6929 (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
6930 (ea (or (get-text-property 1 'effort-minutes a) def))
6931 (eb (or (get-text-property 1 'effort-minutes b) def)))
6932 (cond ((> ea eb) +1)
6933 ((< ea eb) -1))))
6935 (defsubst org-cmp-category (a b)
6936 "Compare the string values of categories of strings A and B."
6937 (let ((ca (or (get-text-property 1 'org-category a) ""))
6938 (cb (or (get-text-property 1 'org-category b) "")))
6939 (cond ((string-lessp ca cb) -1)
6940 ((string-lessp cb ca) +1))))
6942 (defsubst org-cmp-todo-state (a b)
6943 "Compare the todo states of strings A and B."
6944 (let* ((ma (or (get-text-property 1 'org-marker a)
6945 (get-text-property 1 'org-hd-marker a)))
6946 (mb (or (get-text-property 1 'org-marker b)
6947 (get-text-property 1 'org-hd-marker b)))
6948 (fa (and ma (marker-buffer ma)))
6949 (fb (and mb (marker-buffer mb)))
6950 (todo-kwds
6951 (or (and fa (with-current-buffer fa org-todo-keywords-1))
6952 (and fb (with-current-buffer fb org-todo-keywords-1))))
6953 (ta (or (get-text-property 1 'todo-state a) ""))
6954 (tb (or (get-text-property 1 'todo-state b) ""))
6955 (la (- (length (member ta todo-kwds))))
6956 (lb (- (length (member tb todo-kwds))))
6957 (donepa (member ta org-done-keywords-for-agenda))
6958 (donepb (member tb org-done-keywords-for-agenda)))
6959 (cond ((and donepa (not donepb)) -1)
6960 ((and (not donepa) donepb) +1)
6961 ((< la lb) -1)
6962 ((< lb la) +1))))
6964 (defsubst org-cmp-alpha (a b)
6965 "Compare the headlines, alphabetically."
6966 (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
6967 (plb (text-property-any 0 (length b) 'org-heading t b))
6968 (ta (and pla (substring a pla)))
6969 (tb (and plb (substring b plb))))
6970 (when pla
6971 (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
6972 "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
6973 (setq ta (substring ta (match-end 0))))
6974 (setq ta (downcase ta)))
6975 (when plb
6976 (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
6977 "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
6978 (setq tb (substring tb (match-end 0))))
6979 (setq tb (downcase tb)))
6980 (cond ((not ta) +1)
6981 ((not tb) -1)
6982 ((string-lessp ta tb) -1)
6983 ((string-lessp tb ta) +1))))
6985 (defsubst org-cmp-tag (a b)
6986 "Compare the string values of the first tags of A and B."
6987 (let ((ta (car (last (get-text-property 1 'tags a))))
6988 (tb (car (last (get-text-property 1 'tags b)))))
6989 (cond ((not ta) +1)
6990 ((not tb) -1)
6991 ((string-lessp ta tb) -1)
6992 ((string-lessp tb ta) +1))))
6994 (defsubst org-cmp-time (a b)
6995 "Compare the time-of-day values of strings A and B."
6996 (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
6997 (ta (or (get-text-property 1 'time-of-day a) def))
6998 (tb (or (get-text-property 1 'time-of-day b) def)))
6999 (cond ((< ta tb) -1)
7000 ((< tb ta) +1))))
7002 (defsubst org-cmp-ts (a b &optional type)
7003 "Compare the timestamps values of entries A and B.
7004 When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
7005 \"timestamp_ia\", compare within each of these type. When TYPE
7006 is the empty string, compare all timestamps without respect of
7007 their type."
7008 (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
7009 (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
7010 (get-text-property 1 'ts-date a)) def))
7011 (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
7012 (get-text-property 1 'ts-date b)) def)))
7013 (cond ((< ta tb) -1)
7014 ((< tb ta) +1))))
7016 (defsubst org-cmp-habit-p (a b)
7017 "Compare the todo states of strings A and B."
7018 (let ((ha (get-text-property 1 'org-habit-p a))
7019 (hb (get-text-property 1 'org-habit-p b)))
7020 (cond ((and ha (not hb)) -1)
7021 ((and (not ha) hb) +1))))
7023 (defun org-entries-lessp (a b)
7024 "Predicate for sorting agenda entries."
7025 ;; The following variables will be used when the form is evaluated.
7026 ;; So even though the compiler complains, keep them.
7027 (let* ((ss org-agenda-sorting-strategy-selected)
7028 (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
7029 (org-cmp-ts a b "")))
7030 (timestamp-down (if timestamp-up (- timestamp-up) nil))
7031 (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
7032 (org-cmp-ts a b "scheduled")))
7033 (scheduled-down (if scheduled-up (- scheduled-up) nil))
7034 (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
7035 (org-cmp-ts a b "deadline")))
7036 (deadline-down (if deadline-up (- deadline-up) nil))
7037 (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
7038 (org-cmp-ts a b "iatimestamp_ia")))
7039 (tsia-down (if tsia-up (- tsia-up) nil))
7040 (ts-up (and (org-em 'ts-up 'ts-down ss)
7041 (org-cmp-ts a b "timestamp")))
7042 (ts-down (if ts-up (- ts-up) nil))
7043 (time-up (and (org-em 'time-up 'time-down ss)
7044 (org-cmp-time a b)))
7045 (time-down (if time-up (- time-up) nil))
7046 (priority-up (and (org-em 'priority-up 'priority-down ss)
7047 (org-cmp-priority a b)))
7048 (priority-down (if priority-up (- priority-up) nil))
7049 (effort-up (and (org-em 'effort-up 'effort-down ss)
7050 (org-cmp-effort a b)))
7051 (effort-down (if effort-up (- effort-up) nil))
7052 (category-up (and (or (org-em 'category-up 'category-down ss)
7053 (memq 'category-keep ss))
7054 (org-cmp-category a b)))
7055 (category-down (if category-up (- category-up) nil))
7056 (category-keep (if category-up +1 nil))
7057 (tag-up (and (org-em 'tag-up 'tag-down ss)
7058 (org-cmp-tag a b)))
7059 (tag-down (if tag-up (- tag-up) nil))
7060 (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
7061 (org-cmp-todo-state a b)))
7062 (todo-state-down (if todo-state-up (- todo-state-up) nil))
7063 (habit-up (and (org-em 'habit-up 'habit-down ss)
7064 (org-cmp-habit-p a b)))
7065 (habit-down (if habit-up (- habit-up) nil))
7066 (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
7067 (org-cmp-alpha a b)))
7068 (alpha-down (if alpha-up (- alpha-up) nil))
7069 (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
7070 user-defined-up user-defined-down)
7071 (if (and need-user-cmp org-agenda-cmp-user-defined
7072 (functionp org-agenda-cmp-user-defined))
7073 (setq user-defined-up
7074 (funcall org-agenda-cmp-user-defined a b)
7075 user-defined-down (if user-defined-up (- user-defined-up) nil)))
7076 (cdr (assoc
7077 (eval (cons 'or org-agenda-sorting-strategy-selected))
7078 '((-1 . t) (1 . nil) (nil . nil))))))
7080 ;;; Agenda restriction lock
7082 (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
7083 "Overlay to mark the headline to which agenda commands are restricted.")
7084 (overlay-put org-agenda-restriction-lock-overlay
7085 'face 'org-agenda-restriction-lock)
7086 (overlay-put org-agenda-restriction-lock-overlay
7087 'help-echo "Agendas are currently limited to this subtree.")
7088 (org-detach-overlay org-agenda-restriction-lock-overlay)
7090 ;;;###autoload
7091 (defun org-agenda-set-restriction-lock (&optional type)
7092 "Set restriction lock for agenda, to current subtree or file.
7093 Restriction will be the file if TYPE is `file', or if type is the
7094 universal prefix '(4), or if the cursor is before the first headline
7095 in the file. Otherwise, restriction will be to the current subtree."
7096 (interactive "P")
7097 (and (equal type '(4)) (setq type 'file))
7098 (setq type (cond
7099 (type type)
7100 ((org-at-heading-p) 'subtree)
7101 ((condition-case nil (org-back-to-heading t) (error nil))
7102 'subtree)
7103 (t 'file)))
7104 (if (eq type 'subtree)
7105 (progn
7106 (setq org-agenda-restrict (current-buffer))
7107 (setq org-agenda-overriding-restriction 'subtree)
7108 (put 'org-agenda-files 'org-restrict
7109 (list (buffer-file-name (buffer-base-buffer))))
7110 (org-back-to-heading t)
7111 (move-overlay org-agenda-restriction-lock-overlay
7112 (point)
7113 (if org-agenda-restriction-lock-highlight-subtree
7114 (save-excursion (org-end-of-subtree t t) (point))
7115 (point-at-eol)))
7116 (move-marker org-agenda-restrict-begin (point))
7117 (move-marker org-agenda-restrict-end
7118 (save-excursion (org-end-of-subtree t t)))
7119 (message "Locking agenda restriction to subtree"))
7120 (put 'org-agenda-files 'org-restrict
7121 (list (buffer-file-name (buffer-base-buffer))))
7122 (setq org-agenda-restrict nil)
7123 (setq org-agenda-overriding-restriction 'file)
7124 (move-marker org-agenda-restrict-begin nil)
7125 (move-marker org-agenda-restrict-end nil)
7126 (message "Locking agenda restriction to file"))
7127 (setq current-prefix-arg nil)
7128 (org-agenda-maybe-redo))
7130 (defun org-agenda-remove-restriction-lock (&optional noupdate)
7131 "Remove the agenda restriction lock."
7132 (interactive "P")
7133 (org-detach-overlay org-agenda-restriction-lock-overlay)
7134 (org-detach-overlay org-speedbar-restriction-lock-overlay)
7135 (setq org-agenda-overriding-restriction nil)
7136 (setq org-agenda-restrict nil)
7137 (put 'org-agenda-files 'org-restrict nil)
7138 (move-marker org-agenda-restrict-begin nil)
7139 (move-marker org-agenda-restrict-end nil)
7140 (setq current-prefix-arg nil)
7141 (message "Agenda restriction lock removed")
7142 (or noupdate (org-agenda-maybe-redo)))
7144 (defun org-agenda-maybe-redo ()
7145 "If there is any window showing the agenda view, update it."
7146 (let ((w (get-buffer-window org-agenda-buffer-name t))
7147 (w0 (selected-window)))
7148 (when w
7149 (select-window w)
7150 (org-agenda-redo)
7151 (select-window w0)
7152 (if org-agenda-overriding-restriction
7153 (message "Agenda view shifted to new %s restriction"
7154 org-agenda-overriding-restriction)
7155 (message "Agenda restriction lock removed")))))
7157 ;;; Agenda commands
7159 (defun org-agenda-check-type (error &rest types)
7160 "Check if agenda buffer is of allowed type.
7161 If ERROR is non-nil, throw an error, otherwise just return nil.
7162 Allowed types are 'agenda 'timeline 'todo 'tags 'search."
7163 (if (not org-agenda-type)
7164 (error "No Org agenda currently displayed")
7165 (if (memq org-agenda-type types)
7167 (if error
7168 (error "Not allowed in %s-type agenda buffers" org-agenda-type)
7169 nil))))
7171 (defun org-agenda-Quit ()
7172 "Exit the agenda and kill buffers loaded by `org-agenda'.
7173 Also restore the window configuration."
7174 (interactive)
7175 (if org-agenda-columns-active
7176 (org-columns-quit)
7177 (let ((buf (current-buffer)))
7178 (if (eq org-agenda-window-setup 'other-frame)
7179 (progn
7180 (org-agenda-reset-markers)
7181 (kill-buffer buf)
7182 (org-columns-remove-overlays)
7183 (setq org-agenda-archives-mode nil)
7184 (delete-frame))
7185 (and (not (eq org-agenda-window-setup 'current-window))
7186 (not (one-window-p))
7187 (delete-window))
7188 (org-agenda-reset-markers)
7189 (kill-buffer buf)
7190 (org-columns-remove-overlays)
7191 (setq org-agenda-archives-mode nil)))
7192 (setq org-agenda-buffer nil)
7193 ;; Maybe restore the pre-agenda window configuration.
7194 (and org-agenda-restore-windows-after-quit
7195 (not (eq org-agenda-window-setup 'other-frame))
7196 org-agenda-pre-window-conf
7197 (set-window-configuration org-agenda-pre-window-conf)
7198 (setq org-agenda-pre-window-conf nil))))
7200 (defun org-agenda-quit ()
7201 "Exit the agenda and restore the window configuration.
7202 When `org-agenda-sticky' is non-nil, only bury the agenda."
7203 (interactive)
7204 (if (and (eq org-indirect-buffer-display 'other-window)
7205 org-last-indirect-buffer)
7206 (let ((org-last-indirect-window
7207 (get-buffer-window org-last-indirect-buffer)))
7208 (if org-last-indirect-window
7209 (delete-window org-last-indirect-window))))
7210 (if org-agenda-columns-active
7211 (org-columns-quit)
7212 (if org-agenda-sticky
7213 (let ((buf (current-buffer)))
7214 (if (eq org-agenda-window-setup 'other-frame)
7215 (progn
7216 (delete-frame))
7217 (and (not (eq org-agenda-window-setup 'current-window))
7218 (not (one-window-p))
7219 (delete-window)))
7220 (with-current-buffer buf
7221 (bury-buffer)
7222 ;; Maybe restore the pre-agenda window configuration.
7223 (and org-agenda-restore-windows-after-quit
7224 (not (eq org-agenda-window-setup 'other-frame))
7225 org-agenda-pre-window-conf
7226 (set-window-configuration org-agenda-pre-window-conf)
7227 (setq org-agenda-pre-window-conf nil))))
7228 (org-agenda-Quit))))
7230 (defun org-agenda-exit ()
7231 "Exit the agenda and restore the window configuration.
7232 Also kill Org-mode buffers loaded by `org-agenda'. Org-mode
7233 buffers visited directly by the user will not be touched."
7234 (interactive)
7235 (org-release-buffers org-agenda-new-buffers)
7236 (setq org-agenda-new-buffers nil)
7237 (org-agenda-Quit))
7239 (defun org-agenda-kill-all-agenda-buffers ()
7240 "Kill all buffers in `org-agenda-mode'.
7241 This is used when toggling sticky agendas.
7242 You can also explicitly invoke it with `C-c a C-k'."
7243 (interactive)
7244 (let (blist)
7245 (dolist (buf (buffer-list))
7246 (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
7247 (push buf blist)))
7248 (mapc 'kill-buffer blist)))
7250 (defun org-agenda-execute (arg)
7251 "Execute another agenda command, keeping same window.
7252 So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
7253 in the agenda."
7254 (interactive "P")
7255 (let ((org-agenda-window-setup 'current-window))
7256 (org-agenda arg)))
7258 (defun org-agenda-redo (&optional all)
7259 "Rebuild possibly ALL agenda view(s) in the current buffer."
7260 (interactive "P")
7261 (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
7262 (cpa (unless (eq all t) current-prefix-arg))
7263 (org-agenda-doing-sticky-redo org-agenda-sticky)
7264 (org-agenda-sticky nil)
7265 (org-agenda-buffer-name (or org-agenda-this-buffer-name
7266 org-agenda-buffer-name))
7267 (org-agenda-keep-modes t)
7268 (tag-filter org-agenda-tag-filter)
7269 (tag-preset (get 'org-agenda-tag-filter :preset-filter))
7270 (top-hl-filter org-agenda-top-headline-filter)
7271 (cat-filter org-agenda-category-filter)
7272 (cat-preset (get 'org-agenda-category-filter :preset-filter))
7273 (re-filter org-agenda-regexp-filter)
7274 (re-preset (get 'org-agenda-regexp-filter :preset-filter))
7275 (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
7276 (cols org-agenda-columns-active)
7277 (line (org-current-line))
7278 (window-line (- line (org-current-line (window-start))))
7279 (lprops (get 'org-agenda-redo-command 'org-lprops))
7280 (redo-cmd (get-text-property p 'org-redo-cmd))
7281 (last-args (get-text-property p 'org-last-args))
7282 (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
7283 (org-agenda-overriding-cmd-arguments
7284 (unless (eq all t)
7285 (cond ((listp last-args)
7286 (cons (or cpa (car last-args)) (cdr last-args)))
7287 ((stringp last-args)
7288 last-args))))
7289 (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
7290 (put 'org-agenda-tag-filter :preset-filter nil)
7291 (put 'org-agenda-category-filter :preset-filter nil)
7292 (put 'org-agenda-regexp-filter :preset-filter nil)
7293 (and cols (org-columns-quit))
7294 (message "Rebuilding agenda buffer...")
7295 (if series-redo-cmd
7296 (eval series-redo-cmd)
7297 (org-let lprops redo-cmd))
7298 (setq org-agenda-undo-list nil
7299 org-agenda-pending-undo-list nil
7300 org-agenda-tag-filter tag-filter
7301 org-agenda-category-filter cat-filter
7302 org-agenda-regexp-filter re-filter
7303 org-agenda-top-headline-filter top-hl-filter)
7304 (message "Rebuilding agenda buffer...done")
7305 (put 'org-agenda-tag-filter :preset-filter tag-preset)
7306 (put 'org-agenda-category-filter :preset-filter cat-preset)
7307 (put 'org-agenda-regexp-filter :preset-filter re-preset)
7308 (and (or tag-filter tag-preset) (org-agenda-filter-apply tag-filter 'tag))
7309 (and (or cat-filter cat-preset) (org-agenda-filter-apply cat-filter 'category))
7310 (and (or re-filter re-preset) (org-agenda-filter-apply re-filter 'regexp))
7311 (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
7312 (and cols (org-called-interactively-p 'any) (org-agenda-columns))
7313 (org-goto-line line)
7314 (recenter window-line)))
7316 (defvar org-global-tags-completion-table nil)
7317 (defvar org-agenda-filter-form nil)
7318 (defvar org-agenda-filtered-by-category nil)
7320 (defun org-agenda-filter-by-category (strip)
7321 "Keep only those lines in the agenda buffer that have a specific category.
7322 The category is that of the current line."
7323 (interactive "P")
7324 (if (and org-agenda-filtered-by-category
7325 org-agenda-category-filter)
7326 (org-agenda-filter-show-all-cat)
7327 (let ((cat (org-no-properties (get-text-property (point) 'org-category))))
7328 (cond
7329 ((and cat strip)
7330 (org-agenda-filter-apply
7331 (push (concat "-" cat) org-agenda-category-filter) 'category))
7332 ((and cat)
7333 (org-agenda-filter-apply
7334 (setq org-agenda-category-filter
7335 (list (concat "+" cat))) 'category))
7336 ((error "No category at point"))))))
7338 (defun org-find-top-headline (&optional pos)
7339 "Find the topmost parent headline and return it."
7340 (save-excursion
7341 (with-current-buffer (if pos (marker-buffer pos) (current-buffer))
7342 (if pos (goto-char pos))
7343 ;; Skip up to the topmost parent
7344 (while (ignore-errors (outline-up-heading 1) t))
7345 (ignore-errors
7346 (nth 4 (org-heading-components))))))
7348 (defvar org-agenda-filtered-by-top-headline nil)
7349 (defun org-agenda-filter-by-top-headline (strip)
7350 "Keep only those lines that are descendants from the same top headline.
7351 The top headline is that of the current line."
7352 (interactive "P")
7353 (if org-agenda-filtered-by-top-headline
7354 (progn
7355 (setq org-agenda-filtered-by-top-headline nil
7356 org-agenda-top-headline-filter nil)
7357 (org-agenda-filter-show-all-cat))
7358 (let ((cat (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
7359 (if cat (org-agenda-filter-top-headline-apply cat strip)
7360 (error "No top-level category at point")))))
7362 (defvar org-agenda-regexp-filter nil)
7363 (defun org-agenda-filter-by-regexp (strip)
7364 "Filter agenda entries by a regular expression.
7365 Regexp filters are cumulative.
7366 With no prefix argument, keep entries matching the regexp.
7367 With one prefix argument, filter out entries matching the regexp.
7368 With two prefix arguments, remove the regexp filters."
7369 (interactive "P")
7370 (if (not (equal strip '(16)))
7371 (let ((flt (concat (if (equal strip '(4)) "-" "+")
7372 (read-from-minibuffer
7373 (if (equal strip '(4))
7374 "Filter out entries matching regexp: "
7375 "Narrow to entries matching regexp: ")))))
7376 (push flt org-agenda-regexp-filter)
7377 (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
7378 (org-agenda-filter-show-all-re)
7379 (message "Regexp filter removed")))
7381 (defun org-agenda-filter-remove-all ()
7382 "Remove all filters from the current agenda buffer."
7383 (interactive)
7384 (when org-agenda-tag-filter
7385 (org-agenda-filter-show-all-tag))
7386 (when org-agenda-category-filter
7387 (org-agenda-filter-show-all-cat))
7388 (when org-agenda-regexp-filter
7389 (org-agenda-filter-show-all-re)))
7391 (defun org-agenda-filter-by-tag (strip &optional char narrow)
7392 "Keep only those lines in the agenda buffer that have a specific tag.
7393 The tag is selected with its fast selection letter, as configured.
7394 With prefix argument STRIP, remove all lines that do have the tag.
7395 A lisp caller can specify CHAR. NARROW means that the new tag should be
7396 used to narrow the search - the interactive user can also press `-' or `+'
7397 to switch to narrowing."
7398 (interactive "P")
7399 (let* ((alist org-tag-alist-for-agenda)
7400 (tag-chars (mapconcat
7401 (lambda (x) (if (and (not (symbolp (car x)))
7402 (cdr x))
7403 (char-to-string (cdr x))
7404 ""))
7405 alist ""))
7406 (efforts (org-split-string
7407 (or (cdr (assoc (concat org-effort-property "_ALL")
7408 org-global-properties))
7409 "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
7410 "")))
7411 (effort-op org-agenda-filter-effort-default-operator)
7412 (effort-prompt "")
7413 (inhibit-read-only t)
7414 (current org-agenda-tag-filter)
7415 maybe-refresh a n tag)
7416 (unless char
7417 (message
7418 "%s by tag [%s ], [TAB], %s[/]:off, [+-]:narrow, [>=<?]:effort: "
7419 (if narrow "Narrow" "Filter") tag-chars
7420 (if org-agenda-auto-exclude-function "[RET], " ""))
7421 (setq char (read-char-exclusive)))
7422 (when (member char '(?+ ?-))
7423 ;; Narrowing down
7424 (cond ((equal char ?-) (setq strip t narrow t))
7425 ((equal char ?+) (setq strip nil narrow t)))
7426 (message
7427 "Narrow by tag [%s ], [TAB], [/]:off, [>=<]:effort: " tag-chars)
7428 (setq char (read-char-exclusive)))
7429 (when (member char '(?< ?> ?= ??))
7430 ;; An effort operator
7431 (setq effort-op (char-to-string char))
7432 (setq alist nil) ; to make sure it will be interpreted as effort.
7433 (unless (equal char ??)
7434 (loop for i from 0 to 9 do
7435 (setq effort-prompt
7436 (concat
7437 effort-prompt " ["
7438 (if (= i 9) "0" (int-to-string (1+ i)))
7439 "]" (nth i efforts))))
7440 (message "Effort%s: %s " effort-op effort-prompt)
7441 (setq char (read-char-exclusive))
7442 (when (or (< char ?0) (> char ?9))
7443 (error "Need 1-9,0 to select effort"))))
7444 (when (equal char ?\t)
7445 (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
7446 (org-set-local 'org-global-tags-completion-table
7447 (org-global-tags-completion-table)))
7448 (let ((completion-ignore-case t))
7449 (setq tag (org-icompleting-read
7450 "Tag: " org-global-tags-completion-table))))
7451 (cond
7452 ((equal char ?\r)
7453 (org-agenda-filter-show-all-tag)
7454 (when org-agenda-auto-exclude-function
7455 (setq org-agenda-tag-filter nil)
7456 (dolist (tag (org-agenda-get-represented-tags))
7457 (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
7458 (if modifier
7459 (push modifier org-agenda-tag-filter))))
7460 (if (not (null org-agenda-tag-filter))
7461 (org-agenda-filter-apply org-agenda-tag-filter 'tag)))
7462 (setq maybe-refresh t))
7463 ((equal char ?/)
7464 (org-agenda-filter-show-all-tag)
7465 (when (get 'org-agenda-tag-filter :preset-filter)
7466 (org-agenda-filter-apply org-agenda-tag-filter 'tag))
7467 (setq maybe-refresh t))
7468 ((equal char ?. )
7469 (setq org-agenda-tag-filter
7470 (mapcar (lambda(tag) (concat "+" tag))
7471 (org-get-at-bol 'tags)))
7472 (org-agenda-filter-apply org-agenda-tag-filter 'tag)
7473 (setq maybe-refresh t))
7474 ((or (equal char ?\ )
7475 (setq a (rassoc char alist))
7476 (and (>= char ?0) (<= char ?9)
7477 (setq n (if (= char ?0) 9 (- char ?0 1))
7478 tag (concat effort-op (nth n efforts))
7479 a (cons tag nil)))
7480 (and (= char ??)
7481 (setq tag "?eff")
7482 a (cons tag nil))
7483 (and tag (setq a (cons tag nil))))
7484 (org-agenda-filter-show-all-tag)
7485 (setq tag (car a))
7486 (setq org-agenda-tag-filter
7487 (cons (concat (if strip "-" "+") tag)
7488 (if narrow current nil)))
7489 (org-agenda-filter-apply org-agenda-tag-filter 'tag)
7490 (setq maybe-refresh t))
7491 (t (error "Invalid tag selection character %c" char)))
7492 (when (and maybe-refresh
7493 (eq org-agenda-clockreport-mode 'with-filter))
7494 (org-agenda-redo))))
7496 (defun org-agenda-get-represented-tags ()
7497 "Get a list of all tags currently represented in the agenda."
7498 (let (p tags)
7499 (save-excursion
7500 (goto-char (point-min))
7501 (while (setq p (next-single-property-change (point) 'tags))
7502 (goto-char p)
7503 (mapc (lambda (x) (add-to-list 'tags x))
7504 (get-text-property (point) 'tags))))
7505 tags))
7507 (defun org-agenda-filter-by-tag-refine (strip &optional char)
7508 "Refine the current filter. See `org-agenda-filter-by-tag'."
7509 (interactive "P")
7510 (org-agenda-filter-by-tag strip char 'refine))
7512 (defun org-agenda-filter-make-matcher (filter type)
7513 "Create the form that tests a line for agenda filter."
7514 (let (f f1)
7515 (cond
7516 ;; Tag filter
7517 ((eq type 'tag)
7518 (setq filter
7519 (delete-dups
7520 (append (get 'org-agenda-tag-filter :preset-filter)
7521 filter)))
7522 (dolist (x filter)
7523 (let ((nfilter (org-agenda-filter-expand-tags filter)) nf nf1
7524 (ffunc
7525 (lambda (nf0 nf01 fltr notgroup op)
7526 (dolist (x fltr)
7527 (if (member x '("-" "+"))
7528 (setq nf01 (if (equal x "-") 'tags '(not tags)))
7529 (if (string-match "[<=>?]" x)
7530 (setq nf01 (org-agenda-filter-effort-form x))
7531 (setq nf01 (list 'member (downcase (substring x 1))
7532 'tags)))
7533 (when (equal (string-to-char x) ?-)
7534 (setq nf01 (list 'not nf01))
7535 (when (not notgroup) (setq op 'and))))
7536 (push nf01 nf0))
7537 (if notgroup
7538 (push (cons 'and nf0) f)
7539 (push (cons (or op 'or) nf0) f)))))
7540 (cond ((equal filter '("+"))
7541 (setq f (list (list 'not 'tags))))
7542 ((equal nfilter filter)
7543 (funcall ffunc f1 f filter t nil))
7544 (t (funcall ffunc nf1 nf nfilter nil nil))))))
7545 ;; Category filter
7546 ((eq type 'category)
7547 (setq filter
7548 (delete-dups
7549 (append (get 'org-agenda-category-filter :preset-filter)
7550 filter)))
7551 (dolist (x filter)
7552 (if (equal "-" (substring x 0 1))
7553 (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
7554 (setq f1 (list 'equal (substring x 1) 'cat)))
7555 (push f1 f)))
7556 ;; Regexp filter
7557 ((eq type 'regexp)
7558 (setq filter
7559 (delete-dups
7560 (append (get 'org-agenda-regexp-filter :preset-filter)
7561 filter)))
7562 (dolist (x filter)
7563 (if (equal "-" (substring x 0 1))
7564 (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
7565 (setq f1 (list 'string-match (substring x 1) 'txt)))
7566 (push f1 f))))
7567 (cons 'and (nreverse f))))
7569 (defun org-agenda-filter-effort-form (e)
7570 "Return the form to compare the effort of the current line with what E says.
7571 E looks like \"+<2:25\"."
7572 (let (op)
7573 (setq e (substring e 1))
7574 (setq op (string-to-char e) e (substring e 1))
7575 (setq op (cond ((equal op ?<) '<=)
7576 ((equal op ?>) '>=)
7577 ((equal op ??) op)
7578 (t '=)))
7579 (list 'org-agenda-compare-effort (list 'quote op)
7580 (org-duration-string-to-minutes e))))
7582 (defun org-agenda-compare-effort (op value)
7583 "Compare the effort of the current line with VALUE, using OP.
7584 If the line does not have an effort defined, return nil."
7585 (let ((eff (org-get-at-bol 'effort-minutes)))
7586 (if (equal op ??)
7587 (not eff)
7588 (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 0))
7589 value))))
7591 (defun org-agenda-filter-expand-tags (filter &optional no-operator)
7592 "Expand group tags in FILTER for the agenda.
7593 When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
7594 (if org-group-tags
7595 (let ((case-fold-search t) rtn)
7596 (mapc
7597 (lambda (f)
7598 (let (f0 dir)
7599 (if (string-match "^\\([+-]\\)\\(.+\\)" f)
7600 (setq dir (match-string 1 f) f0 (match-string 2 f))
7601 (setq dir (if no-operator "" "+") f0 f))
7602 (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
7603 (org-tags-expand f0 t t))
7604 rtn))))
7605 filter)
7606 (reverse rtn))
7607 filter))
7609 (defun org-agenda-filter-apply (filter type)
7610 "Set FILTER as the new agenda filter and apply it."
7611 ;; Deactivate `org-agenda-entry-text-mode' when filtering
7612 (if org-agenda-entry-text-mode (org-agenda-entry-text-mode))
7613 (let (tags cat txt)
7614 (setq org-agenda-filter-form
7615 (org-agenda-filter-make-matcher filter type))
7616 (if (and (eq type 'category)
7617 (not (equal (substring (car filter) 0 1) "-")))
7618 ;; Only set `org-agenda-filtered-by-category' to t
7619 ;; when a unique category is used as the filter
7620 (setq org-agenda-filtered-by-category t))
7621 (org-agenda-set-mode-name)
7622 (save-excursion
7623 (goto-char (point-min))
7624 (while (not (eobp))
7625 (if (org-get-at-bol 'org-marker)
7626 (progn
7627 (setq tags ; used in eval
7628 (apply 'append
7629 (mapcar (lambda (f)
7630 (org-agenda-filter-expand-tags (list f) t))
7631 (org-get-at-bol 'tags)))
7632 cat (get-text-property (point) 'org-category)
7633 txt (get-text-property (point) 'txt))
7634 (if (not (eval org-agenda-filter-form))
7635 (org-agenda-filter-hide-line type))
7636 (beginning-of-line 2))
7637 (beginning-of-line 2))))
7638 (if (get-char-property (point) 'invisible)
7639 (ignore-errors (org-agenda-previous-line)))))
7641 (defun org-agenda-filter-top-headline-apply (hl &optional negative)
7642 "Filter by top headline HL."
7643 (org-agenda-set-mode-name)
7644 (save-excursion
7645 (goto-char (point-min))
7646 (while (not (eobp))
7647 (let* ((pos (org-get-at-bol 'org-hd-marker))
7648 (tophl (and pos (org-find-top-headline pos))))
7649 (if (and tophl (funcall (if negative 'identity 'not)
7650 (string= hl tophl)))
7651 (org-agenda-filter-hide-line 'category)))
7652 (beginning-of-line 2)))
7653 (if (get-char-property (point) 'invisible)
7654 (org-agenda-previous-line))
7655 (setq org-agenda-top-headline-filter hl
7656 org-agenda-filtered-by-top-headline t))
7658 (defun org-agenda-filter-hide-line (type)
7659 "Hide lines with TYPE in the agenda buffer."
7660 (let (ov)
7661 (setq ov (make-overlay (max (point-min) (1- (point-at-bol)))
7662 (point-at-eol)))
7663 (overlay-put ov 'invisible t)
7664 (overlay-put ov 'type type)
7665 (cond ((eq type 'tag) (push ov org-agenda-tag-filter-overlays))
7666 ((eq type 'category) (push ov org-agenda-cat-filter-overlays))
7667 ((eq type 'regexp) (push ov org-agenda-re-filter-overlays)))))
7669 (defun org-agenda-fix-tags-filter-overlays-at (&optional pos)
7670 (setq pos (or pos (point)))
7671 (save-excursion
7672 (dolist (ov (overlays-at pos))
7673 (when (and (overlay-get ov 'invisible)
7674 (eq (overlay-get ov 'type) 'tag))
7675 (goto-char pos)
7676 (if (< (overlay-start ov) (point-at-eol))
7677 (move-overlay ov (point-at-eol)
7678 (overlay-end ov)))))))
7680 (defun org-agenda-filter-show-all-tag nil
7681 "Remove tag filter overlays from the agenda buffer."
7682 (mapc 'delete-overlay org-agenda-tag-filter-overlays)
7683 (setq org-agenda-tag-filter-overlays nil
7684 org-agenda-tag-filter nil
7685 org-agenda-filter-form nil)
7686 (org-agenda-set-mode-name))
7688 (defun org-agenda-filter-show-all-re nil
7689 "Remove regexp filter overlays from the agenda buffer."
7690 (mapc 'delete-overlay org-agenda-re-filter-overlays)
7691 (setq org-agenda-re-filter-overlays nil
7692 org-agenda-regexp-filter nil
7693 org-agenda-filter-form nil)
7694 (org-agenda-set-mode-name))
7696 (defun org-agenda-filter-show-all-cat nil
7697 "Remove category filter overlays from the agenda buffer."
7698 (mapc 'delete-overlay org-agenda-cat-filter-overlays)
7699 (setq org-agenda-cat-filter-overlays nil
7700 org-agenda-filtered-by-category nil
7701 org-agenda-category-filter nil
7702 org-agenda-filter-form nil)
7703 (org-agenda-set-mode-name))
7705 (defun org-agenda-manipulate-query-add ()
7706 "Manipulate the query by adding a search term with positive selection.
7707 Positive selection means the term must be matched for selection of an entry."
7708 (interactive)
7709 (org-agenda-manipulate-query ?\[))
7710 (defun org-agenda-manipulate-query-subtract ()
7711 "Manipulate the query by adding a search term with negative selection.
7712 Negative selection means term must not be matched for selection of an entry."
7713 (interactive)
7714 (org-agenda-manipulate-query ?\]))
7715 (defun org-agenda-manipulate-query-add-re ()
7716 "Manipulate the query by adding a search regexp with positive selection.
7717 Positive selection means the regexp must match for selection of an entry."
7718 (interactive)
7719 (org-agenda-manipulate-query ?\{))
7720 (defun org-agenda-manipulate-query-subtract-re ()
7721 "Manipulate the query by adding a search regexp with negative selection.
7722 Negative selection means regexp must not match for selection of an entry."
7723 (interactive)
7724 (org-agenda-manipulate-query ?\}))
7725 (defun org-agenda-manipulate-query (char)
7726 (cond
7727 ((memq org-agenda-type '(timeline agenda))
7728 (let ((org-agenda-include-inactive-timestamps t))
7729 (org-agenda-redo))
7730 (message "Display now includes inactive timestamps as well"))
7731 ((eq org-agenda-type 'search)
7732 (org-add-to-string
7733 'org-agenda-query-string
7734 (if org-agenda-last-search-view-search-was-boolean
7735 (cdr (assoc char '((?\[ . " +") (?\] . " -")
7736 (?\{ . " +{}") (?\} . " -{}"))))
7737 " "))
7738 (setq org-agenda-redo-command
7739 (list 'org-search-view
7740 (car (get-text-property (min (1- (point-max)) (point))
7741 'org-last-args))
7742 org-agenda-query-string
7743 (+ (length org-agenda-query-string)
7744 (if (member char '(?\{ ?\})) 0 1))))
7745 (set-register org-agenda-query-register org-agenda-query-string)
7746 (let ((org-agenda-overriding-arguments
7747 (cdr org-agenda-redo-command)))
7748 (org-agenda-redo)))
7749 (t (error "Cannot manipulate query for %s-type agenda buffers"
7750 org-agenda-type))))
7752 (defun org-add-to-string (var string)
7753 (set var (concat (symbol-value var) string)))
7755 (defun org-agenda-goto-date (span)
7756 "Jump to DATE in agenda."
7757 (interactive "P")
7758 (let* ((org-read-date-prefer-future
7759 (eval org-agenda-jump-prefer-future))
7760 (date (org-read-date))
7761 (day (time-to-days (org-time-string-to-time date)))
7762 (org-agenda-sticky-orig org-agenda-sticky)
7763 (org-agenda-buffer-tmp-name (buffer-name))
7764 (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7765 (0-arg (or current-prefix-arg (car args)))
7766 (2-arg (nth 2 args))
7767 (with-hour-p (nth 4 org-agenda-redo-command))
7768 (newcmd (list 'org-agenda-list 0-arg date
7769 (org-agenda-span-to-ndays
7770 2-arg (org-time-string-to-absolute date))
7771 with-hour-p))
7772 (newargs (cdr newcmd))
7773 (inhibit-read-only t)
7774 org-agenda-sticky)
7775 (if (not (org-agenda-check-type t 'agenda))
7776 (error "Not available in non-agenda views")
7777 (add-text-properties (point-min) (point-max)
7778 `(org-redo-cmd ,newcmd org-last-args ,newargs))
7779 (org-agenda-redo)
7780 (goto-char (point-min))
7781 (while (not (or (= (or (get-text-property (point) 'day) 0) day)
7782 (save-excursion (move-beginning-of-line 2) (eobp))))
7783 (move-beginning-of-line 2))
7784 (setq org-agenda-sticky org-agenda-sticky-orig
7785 org-agenda-this-buffer-is-sticky org-agenda-sticky))))
7787 (defun org-agenda-goto-today ()
7788 "Go to today."
7789 (interactive)
7790 (org-agenda-check-type t 'timeline 'agenda)
7791 (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7792 (curspan (nth 2 args))
7793 (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
7794 (cond
7795 (tdpos (goto-char tdpos))
7796 ((eq org-agenda-type 'agenda)
7797 (let* ((sd (org-agenda-compute-starting-span
7798 (org-today) (or curspan org-agenda-ndays org-agenda-span)))
7799 (org-agenda-overriding-arguments args))
7800 (setf (nth 1 org-agenda-overriding-arguments) sd)
7801 (org-agenda-redo)
7802 (org-agenda-find-same-or-today-or-agenda)))
7803 (t (error "Cannot find today")))))
7805 (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
7806 (goto-char
7807 (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
7808 (text-property-any (point-min) (point-max) 'org-today t)
7809 (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
7810 (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
7811 (org-agenda-goto-block-beginning))
7812 (point-min))))
7814 (defun org-agenda-goto-block-beginning ()
7815 "Go the agenda block beginning."
7816 (interactive)
7817 (if (not (derived-mode-p 'org-agenda-mode))
7818 (error "Cannot execute this command outside of org-agenda-mode buffers")
7819 (let (dest)
7820 (save-excursion
7821 (unless (looking-at "\\'")
7822 (forward-char))
7823 (let* ((prop 'org-agenda-structural-header)
7824 (p (previous-single-property-change (point) prop))
7825 (n (next-single-property-change (or (and (looking-at "\\`") 1)
7826 (1- (point))) prop)))
7827 (setq dest (cond ((eq n (point-at-eol)) (1- n)) (p (1- p))))))
7828 (if (not dest)
7829 (error "Cannot find the beginning of the blog")
7830 (goto-char dest)
7831 (move-beginning-of-line 1)))))
7833 (defun org-agenda-later (arg)
7834 "Go forward in time by the current span.
7835 With prefix ARG, go forward that many times the current span."
7836 (interactive "p")
7837 (org-agenda-check-type t 'agenda)
7838 (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7839 (span (or (nth 2 args) org-agenda-current-span))
7840 (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
7841 (greg (calendar-gregorian-from-absolute sd))
7842 (cnt (org-get-at-bol 'org-day-cnt))
7843 greg2)
7844 (cond
7845 ((numberp span)
7846 (setq sd (+ (* span arg) sd)))
7847 ((eq span 'day)
7848 (setq sd (+ arg sd)))
7849 ((eq span 'week)
7850 (setq sd (+ (* 7 arg) sd)))
7851 ((eq span 'fortnight)
7852 (setq sd (+ (* 14 arg) sd)))
7853 ((eq span 'month)
7854 (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
7855 sd (calendar-absolute-from-gregorian greg2))
7856 (setcar greg2 (1+ (car greg2))))
7857 ((eq span 'year)
7858 (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
7859 sd (calendar-absolute-from-gregorian greg2))
7860 (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
7862 (setq sd (+ (* span arg) sd))))
7863 (let ((org-agenda-overriding-cmd
7864 ;; `cmd' may have been set by `org-agenda-run-series' which
7865 ;; uses `org-agenda-overriding-cmd' to decide whether
7866 ;; overriding is allowed for `cmd'
7867 (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
7868 (org-agenda-overriding-arguments
7869 (list (car args) sd span)))
7870 (org-agenda-redo)
7871 (org-agenda-find-same-or-today-or-agenda cnt))))
7873 (defun org-agenda-earlier (arg)
7874 "Go backward in time by the current span.
7875 With prefix ARG, go backward that many times the current span."
7876 (interactive "p")
7877 (org-agenda-later (- arg)))
7879 (defun org-agenda-view-mode-dispatch ()
7880 "Call one of the view mode commands."
7881 (interactive)
7882 (message "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
7883 time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
7884 [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
7885 (let ((a (read-char-exclusive)))
7886 (case a
7887 (?\ (call-interactively 'org-agenda-reset-view))
7888 (?d (call-interactively 'org-agenda-day-view))
7889 (?w (call-interactively 'org-agenda-week-view))
7890 (?t (call-interactively 'org-agenda-fortnight-view))
7891 (?m (call-interactively 'org-agenda-month-view))
7892 (?y (call-interactively 'org-agenda-year-view))
7893 (?l (call-interactively 'org-agenda-log-mode))
7894 (?L (org-agenda-log-mode '(4)))
7895 (?c (org-agenda-log-mode 'clockcheck))
7896 ((?F ?f) (call-interactively 'org-agenda-follow-mode))
7897 (?a (call-interactively 'org-agenda-archives-mode))
7898 (?A (org-agenda-archives-mode 'files))
7899 ((?R ?r) (call-interactively 'org-agenda-clockreport-mode))
7900 ((?E ?e) (call-interactively 'org-agenda-entry-text-mode))
7901 (?G (call-interactively 'org-agenda-toggle-time-grid))
7902 (?D (call-interactively 'org-agenda-toggle-diary))
7903 (?\! (call-interactively 'org-agenda-toggle-deadlines))
7904 (?\[ (let ((org-agenda-include-inactive-timestamps t))
7905 (org-agenda-check-type t 'timeline 'agenda)
7906 (org-agenda-redo))
7907 (message "Display now includes inactive timestamps as well"))
7908 (?q (message "Abort"))
7909 (otherwise (error "Invalid key" )))))
7911 (defun org-agenda-reset-view ()
7912 "Switch to default view for agenda."
7913 (interactive)
7914 (org-agenda-change-time-span (or org-agenda-ndays org-agenda-span)))
7915 (defun org-agenda-day-view (&optional day-of-month)
7916 "Switch to daily view for agenda.
7917 With argument DAY-OF-MONTH, switch to that day of the month."
7918 (interactive "P")
7919 (org-agenda-change-time-span 'day day-of-month))
7920 (defun org-agenda-week-view (&optional iso-week)
7921 "Switch to daily view for agenda.
7922 With argument ISO-WEEK, switch to the corresponding ISO week.
7923 If ISO-WEEK has more then 2 digits, only the last two encode the
7924 week. Any digits before this encode a year. So 200712 means
7925 week 12 of year 2007. Years in the range 1938-2037 can also be
7926 written as 2-digit years."
7927 (interactive "P")
7928 (org-agenda-change-time-span 'week iso-week))
7929 (defun org-agenda-fortnight-view (&optional iso-week)
7930 "Switch to daily view for agenda.
7931 With argument ISO-WEEK, switch to the corresponding ISO week.
7932 If ISO-WEEK has more then 2 digits, only the last two encode the
7933 week. Any digits before this encode a year. So 200712 means
7934 week 12 of year 2007. Years in the range 1938-2037 can also be
7935 written as 2-digit years."
7936 (interactive "P")
7937 (org-agenda-change-time-span 'fortnight iso-week))
7938 (defun org-agenda-month-view (&optional month)
7939 "Switch to monthly view for agenda.
7940 With argument MONTH, switch to that month."
7941 (interactive "P")
7942 (org-agenda-change-time-span 'month month))
7943 (defun org-agenda-year-view (&optional year)
7944 "Switch to yearly view for agenda.
7945 With argument YEAR, switch to that year.
7946 If MONTH has more then 2 digits, only the last two encode the
7947 month. Any digits before this encode a year. So 200712 means
7948 December year 2007. Years in the range 1938-2037 can also be
7949 written as 2-digit years."
7950 (interactive "P")
7951 (when year
7952 (setq year (org-small-year-to-year year)))
7953 (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
7954 (org-agenda-change-time-span 'year year)
7955 (error "Abort")))
7957 (defun org-agenda-change-time-span (span &optional n)
7958 "Change the agenda view to SPAN.
7959 SPAN may be `day', `week', `fortnight', `month', `year'."
7960 (org-agenda-check-type t 'agenda)
7961 (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7962 (curspan (nth 2 args)))
7963 (if (and (not n) (equal curspan span))
7964 (error "Viewing span is already \"%s\"" span))
7965 (let* ((sd (or (org-get-at-bol 'day)
7966 (nth 1 args)
7967 org-starting-day))
7968 (sd (org-agenda-compute-starting-span sd span n))
7969 (org-agenda-overriding-cmd
7970 (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
7971 (org-agenda-overriding-arguments
7972 (list (car args) sd span)))
7973 (org-agenda-redo)
7974 (org-agenda-find-same-or-today-or-agenda))
7975 (org-agenda-set-mode-name)
7976 (message "Switched to %s view" span)))
7978 (defun org-agenda-compute-starting-span (sd span &optional n)
7979 "Compute starting date for agenda.
7980 SPAN may be `day', `week', `fortnight', `month', `year'. The return value
7981 is a cons cell with the starting date and the number of days,
7982 so that the date SD will be in that range."
7983 (let* ((greg (calendar-gregorian-from-absolute sd))
7984 (dg (nth 1 greg))
7985 (mg (car greg))
7986 (yg (nth 2 greg)))
7987 (cond
7988 ((eq span 'day)
7989 (when n
7990 (setq sd (+ (calendar-absolute-from-gregorian
7991 (list mg 1 yg))
7992 n -1))))
7993 ((or (eq span 'week) (eq span 'fortnight))
7994 (let* ((nt (calendar-day-of-week
7995 (calendar-gregorian-from-absolute sd)))
7996 (d (if org-agenda-start-on-weekday
7997 (- nt org-agenda-start-on-weekday)
8000 (setq sd (- sd (+ (if (< d 0) 7 0) d)))
8001 (when n
8002 (require 'cal-iso)
8003 (when (> n 99)
8004 (setq y1 (org-small-year-to-year (/ n 100))
8005 n (mod n 100)))
8006 (setq sd
8007 (calendar-absolute-from-iso
8008 (list n 1
8009 (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
8010 ((eq span 'month)
8011 (let (y1)
8012 (when (and n (> n 99))
8013 (setq y1 (org-small-year-to-year (/ n 100))
8014 n (mod n 100)))
8015 (setq sd (calendar-absolute-from-gregorian
8016 (list (or n mg) 1 (or y1 yg))))))
8017 ((eq span 'year)
8018 (setq sd (calendar-absolute-from-gregorian
8019 (list 1 1 (or n yg))))))
8020 sd))
8022 (defun org-agenda-next-date-line (&optional arg)
8023 "Jump to the next line indicating a date in agenda buffer."
8024 (interactive "p")
8025 (org-agenda-check-type t 'agenda 'timeline)
8026 (beginning-of-line 1)
8027 ;; This does not work if user makes date format that starts with a blank
8028 (if (looking-at "^\\S-") (forward-char 1))
8029 (if (not (re-search-forward "^\\S-" nil t arg))
8030 (progn
8031 (backward-char 1)
8032 (error "No next date after this line in this buffer")))
8033 (goto-char (match-beginning 0)))
8035 (defun org-agenda-previous-date-line (&optional arg)
8036 "Jump to the previous line indicating a date in agenda buffer."
8037 (interactive "p")
8038 (org-agenda-check-type t 'agenda 'timeline)
8039 (beginning-of-line 1)
8040 (if (not (re-search-backward "^\\S-" nil t arg))
8041 (error "No previous date before this line in this buffer")))
8043 ;; Initialize the highlight
8044 (defvar org-hl (make-overlay 1 1))
8045 (overlay-put org-hl 'face 'highlight)
8047 (defun org-highlight (begin end &optional buffer)
8048 "Highlight a region with overlay."
8049 (move-overlay org-hl begin end (or buffer (current-buffer))))
8051 (defun org-unhighlight ()
8052 "Detach overlay INDEX."
8053 (org-detach-overlay org-hl))
8055 (defun org-unhighlight-once ()
8056 "Remove the highlight from its position, and this function from the hook."
8057 (remove-hook 'pre-command-hook 'org-unhighlight-once)
8058 (org-unhighlight))
8060 (defvar org-agenda-pre-follow-window-conf nil)
8061 (defun org-agenda-follow-mode ()
8062 "Toggle follow mode in an agenda buffer."
8063 (interactive)
8064 (unless org-agenda-follow-mode
8065 (setq org-agenda-pre-follow-window-conf
8066 (current-window-configuration)))
8067 (setq org-agenda-follow-mode (not org-agenda-follow-mode))
8068 (unless org-agenda-follow-mode
8069 (set-window-configuration org-agenda-pre-follow-window-conf))
8070 (org-agenda-set-mode-name)
8071 (org-agenda-do-context-action)
8072 (message "Follow mode is %s"
8073 (if org-agenda-follow-mode "on" "off")))
8075 (defun org-agenda-entry-text-mode (&optional arg)
8076 "Toggle entry text mode in an agenda buffer."
8077 (interactive "P")
8078 (if (or org-agenda-tag-filter
8079 org-agenda-category-filter
8080 org-agenda-regexp-filter
8081 org-agenda-top-headline-filter)
8082 (user-error "Can't show entry text in filtered views")
8083 (setq org-agenda-entry-text-mode (or (integerp arg)
8084 (not org-agenda-entry-text-mode)))
8085 (org-agenda-entry-text-hide)
8086 (and org-agenda-entry-text-mode
8087 (let ((org-agenda-entry-text-maxlines
8088 (if (integerp arg) arg org-agenda-entry-text-maxlines)))
8089 (org-agenda-entry-text-show)))
8090 (org-agenda-set-mode-name)
8091 (message "Entry text mode is %s%s"
8092 (if org-agenda-entry-text-mode "on" "off")
8093 (if (not org-agenda-entry-text-mode) ""
8094 (format " (maximum number of lines is %d)"
8095 (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
8097 (defun org-agenda-clockreport-mode (&optional with-filter)
8098 "Toggle clocktable mode in an agenda buffer.
8099 With prefix arg WITH-FILTER, make the clocktable respect the current
8100 agenda filter."
8101 (interactive "P")
8102 (org-agenda-check-type t 'agenda)
8103 (if with-filter
8104 (setq org-agenda-clockreport-mode 'with-filter)
8105 (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode)))
8106 (org-agenda-set-mode-name)
8107 (org-agenda-redo)
8108 (message "Clocktable mode is %s"
8109 (if org-agenda-clockreport-mode "on" "off")))
8111 (defun org-agenda-log-mode (&optional special)
8112 "Toggle log mode in an agenda buffer.
8113 With argument SPECIAL, show all possible log items, not only the ones
8114 configured in `org-agenda-log-mode-items'.
8115 With a double `C-u' prefix arg, show *only* log items, nothing else."
8116 (interactive "P")
8117 (org-agenda-check-type t 'agenda 'timeline)
8118 (setq org-agenda-show-log
8119 (cond
8120 ((equal special '(16)) 'only)
8121 ((eq special 'clockcheck)
8122 (if (eq org-agenda-show-log 'clockcheck)
8123 nil 'clockcheck))
8124 (special '(closed clock state))
8125 (t (not org-agenda-show-log))))
8126 (org-agenda-set-mode-name)
8127 (org-agenda-redo)
8128 (message "Log mode is %s"
8129 (if org-agenda-show-log "on" "off")))
8131 (defun org-agenda-archives-mode (&optional with-files)
8132 "Toggle inclusion of items in trees marked with :ARCHIVE:.
8133 When called with a prefix argument, include all archive files as well."
8134 (interactive "P")
8135 (setq org-agenda-archives-mode
8136 (if with-files t (if org-agenda-archives-mode nil 'trees)))
8137 (org-agenda-set-mode-name)
8138 (org-agenda-redo)
8139 (message
8140 "%s"
8141 (cond
8142 ((eq org-agenda-archives-mode nil)
8143 "No archives are included")
8144 ((eq org-agenda-archives-mode 'trees)
8145 (format "Trees with :%s: tag are included" org-archive-tag))
8146 ((eq org-agenda-archives-mode t)
8147 (format "Trees with :%s: tag and all active archive files are included"
8148 org-archive-tag)))))
8150 (defun org-agenda-toggle-diary ()
8151 "Toggle diary inclusion in an agenda buffer."
8152 (interactive)
8153 (org-agenda-check-type t 'agenda)
8154 (setq org-agenda-include-diary (not org-agenda-include-diary))
8155 (org-agenda-redo)
8156 (org-agenda-set-mode-name)
8157 (message "Diary inclusion turned %s"
8158 (if org-agenda-include-diary "on" "off")))
8160 (defun org-agenda-toggle-deadlines ()
8161 "Toggle inclusion of entries with a deadline in an agenda buffer."
8162 (interactive)
8163 (org-agenda-check-type t 'agenda)
8164 (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
8165 (org-agenda-redo)
8166 (org-agenda-set-mode-name)
8167 (message "Deadlines inclusion turned %s"
8168 (if org-agenda-include-deadlines "on" "off")))
8170 (defun org-agenda-toggle-time-grid ()
8171 "Toggle time grid in an agenda buffer."
8172 (interactive)
8173 (org-agenda-check-type t 'agenda)
8174 (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
8175 (org-agenda-redo)
8176 (org-agenda-set-mode-name)
8177 (message "Time-grid turned %s"
8178 (if org-agenda-use-time-grid "on" "off")))
8180 (defun org-agenda-set-mode-name ()
8181 "Set the mode name to indicate all the small mode settings."
8182 (setq mode-name
8183 (list "Org-Agenda"
8184 (if (get 'org-agenda-files 'org-restrict) " []" "")
8186 '(:eval (org-agenda-span-name org-agenda-current-span))
8187 (if org-agenda-follow-mode " Follow" "")
8188 (if org-agenda-entry-text-mode " ETxt" "")
8189 (if org-agenda-include-diary " Diary" "")
8190 (if org-agenda-include-deadlines " Ddl" "")
8191 (if org-agenda-use-time-grid " Grid" "")
8192 (if (and (boundp 'org-habit-show-habits)
8193 org-habit-show-habits) " Habit" "")
8194 (cond
8195 ((consp org-agenda-show-log) " LogAll")
8196 ((eq org-agenda-show-log 'clockcheck) " ClkCk")
8197 (org-agenda-show-log " Log")
8198 (t ""))
8199 (if (or org-agenda-category-filter
8200 (get 'org-agenda-category-filter :preset-filter))
8201 '(:eval (org-propertize
8202 (concat " <"
8203 (mapconcat
8204 'identity
8205 (append
8206 (get 'org-agenda-category-filter :preset-filter)
8207 org-agenda-category-filter)
8209 ">")
8210 'face 'org-agenda-filter-category
8211 'help-echo "Category used in filtering")) "")
8212 (if (or org-agenda-tag-filter
8213 (get 'org-agenda-tag-filter :preset-filter))
8214 '(:eval (org-propertize
8215 (concat " {"
8216 (mapconcat
8217 'identity
8218 (append
8219 (get 'org-agenda-tag-filter :preset-filter)
8220 org-agenda-tag-filter)
8222 "}")
8223 'face 'org-agenda-filter-tags
8224 'help-echo "Tags used in filtering")) "")
8225 (if (or org-agenda-regexp-filter
8226 (get 'org-agenda-regexp-filter :preset-filter))
8227 '(:eval (org-propertize
8228 (concat " ["
8229 (mapconcat
8230 'identity
8231 (append
8232 (get 'org-agenda-regexp-filter :preset-filter)
8233 org-agenda-regexp-filter)
8235 "]")
8236 'face 'org-agenda-filter-regexp
8237 'help-echo "Regexp used in filtering")) "")
8238 (if org-agenda-archives-mode
8239 (if (eq org-agenda-archives-mode t)
8240 " Archives"
8241 (format " :%s:" org-archive-tag))
8243 (if org-agenda-clockreport-mode
8244 (if (eq org-agenda-clockreport-mode 'with-filter)
8245 " Clock{}" " Clock")
8246 "")))
8247 (force-mode-line-update))
8249 (define-obsolete-function-alias
8250 'org-agenda-post-command-hook 'org-agenda-update-agenda-type "24.3")
8252 (defun org-agenda-update-agenda-type ()
8253 "Update the agenda type after each command."
8254 (setq org-agenda-type
8255 (or (get-text-property (point) 'org-agenda-type)
8256 (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
8258 (defun org-agenda-next-line ()
8259 "Move cursor to the next line, and show if follow mode is active."
8260 (interactive)
8261 (call-interactively 'next-line)
8262 (org-agenda-do-context-action))
8264 (defun org-agenda-previous-line ()
8265 "Move cursor to the previous line, and show if follow-mode is active."
8266 (interactive)
8267 (call-interactively 'previous-line)
8268 (org-agenda-do-context-action))
8270 (defun org-agenda-next-item (n)
8271 "Move cursor to next agenda item."
8272 (interactive "p")
8273 (let ((col (current-column)))
8274 (dotimes (c n)
8275 (when (next-single-property-change (point-at-eol) 'org-marker)
8276 (move-end-of-line 1)
8277 (goto-char (next-single-property-change (point) 'org-marker))))
8278 (org-move-to-column col))
8279 (org-agenda-do-context-action))
8281 (defun org-agenda-previous-item (n)
8282 "Move cursor to next agenda item."
8283 (interactive "p")
8284 (dotimes (c n)
8285 (let ((col (current-column))
8286 (goto (save-excursion
8287 (move-end-of-line 0)
8288 (previous-single-property-change (point) 'org-marker))))
8289 (if goto (goto-char goto))
8290 (org-move-to-column col)))
8291 (org-agenda-do-context-action))
8293 (defun org-agenda-do-context-action ()
8294 "Show outline path and, maybe, follow mode window."
8295 (let ((m (org-get-at-bol 'org-marker)))
8296 (when (and (markerp m) (marker-buffer m))
8297 (and org-agenda-follow-mode
8298 (if org-agenda-follow-indirect
8299 (org-agenda-tree-to-indirect-buffer nil)
8300 (org-agenda-show)))
8301 (and org-agenda-show-outline-path
8302 (org-with-point-at m (org-display-outline-path t))))))
8304 (defun org-agenda-show-tags ()
8305 "Show the tags applicable to the current item."
8306 (interactive)
8307 (let* ((tags (org-get-at-bol 'tags)))
8308 (if tags
8309 (message "Tags are :%s:"
8310 (org-no-properties (mapconcat 'identity tags ":")))
8311 (message "No tags associated with this line"))))
8313 (defun org-agenda-goto (&optional highlight)
8314 "Go to the Org-mode file which contains the item at point."
8315 (interactive)
8316 (let* ((marker (or (org-get-at-bol 'org-marker)
8317 (org-agenda-error)))
8318 (buffer (marker-buffer marker))
8319 (pos (marker-position marker)))
8320 (switch-to-buffer-other-window buffer)
8321 (widen)
8322 (push-mark)
8323 (goto-char pos)
8324 (when (derived-mode-p 'org-mode)
8325 (org-show-context 'agenda)
8326 (save-excursion
8327 (and (outline-next-heading)
8328 (org-flag-heading nil)))) ; show the next heading
8329 (when (outline-invisible-p)
8330 (show-entry)) ; display invisible text
8331 (recenter (/ (window-height) 2))
8332 (run-hooks 'org-agenda-after-show-hook)
8333 (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
8335 (defvar org-agenda-after-show-hook nil
8336 "Normal hook run after an item has been shown from the agenda.
8337 Point is in the buffer where the item originated.")
8339 (defun org-agenda-kill ()
8340 "Kill the entry or subtree belonging to the current agenda entry."
8341 (interactive)
8342 (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
8343 (let* ((bufname-orig (buffer-name))
8344 (marker (or (org-get-at-bol 'org-marker)
8345 (org-agenda-error)))
8346 (buffer (marker-buffer marker))
8347 (pos (marker-position marker))
8348 (type (org-get-at-bol 'type))
8349 dbeg dend (n 0) conf)
8350 (org-with-remote-undo buffer
8351 (with-current-buffer buffer
8352 (save-excursion
8353 (goto-char pos)
8354 (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
8355 (setq dbeg (progn (org-back-to-heading t) (point))
8356 dend (org-end-of-subtree t t))
8357 (setq dbeg (point-at-bol)
8358 dend (min (point-max) (1+ (point-at-eol)))))
8359 (goto-char dbeg)
8360 (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
8361 (setq conf (or (eq t org-agenda-confirm-kill)
8362 (and (numberp org-agenda-confirm-kill)
8363 (> n org-agenda-confirm-kill))))
8364 (and conf
8365 (not (y-or-n-p
8366 (format "Delete entry with %d lines in buffer \"%s\"? "
8367 n (buffer-name buffer))))
8368 (error "Abort"))
8369 (let ((org-agenda-buffer-name bufname-orig))
8370 (org-remove-subtree-entries-from-agenda buffer dbeg dend))
8371 (with-current-buffer buffer (delete-region dbeg dend))
8372 (message "Agenda item and source killed"))))
8374 (defvar org-archive-default-command) ; defined in org-archive.el
8375 (defun org-agenda-archive-default ()
8376 "Archive the entry or subtree belonging to the current agenda entry."
8377 (interactive)
8378 (require 'org-archive)
8379 (org-agenda-archive-with org-archive-default-command))
8381 (defun org-agenda-archive-default-with-confirmation ()
8382 "Archive the entry or subtree belonging to the current agenda entry."
8383 (interactive)
8384 (require 'org-archive)
8385 (org-agenda-archive-with org-archive-default-command 'confirm))
8387 (defun org-agenda-archive ()
8388 "Archive the entry or subtree belonging to the current agenda entry."
8389 (interactive)
8390 (org-agenda-archive-with 'org-archive-subtree))
8392 (defun org-agenda-archive-to-archive-sibling ()
8393 "Move the entry to the archive sibling."
8394 (interactive)
8395 (org-agenda-archive-with 'org-archive-to-archive-sibling))
8397 (defun org-agenda-archive-with (cmd &optional confirm)
8398 "Move the entry to the archive sibling."
8399 (interactive)
8400 (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
8401 (let* ((bufname-orig (buffer-name))
8402 (marker (or (org-get-at-bol 'org-marker)
8403 (org-agenda-error)))
8404 (buffer (marker-buffer marker))
8405 (pos (marker-position marker)))
8406 (org-with-remote-undo buffer
8407 (with-current-buffer buffer
8408 (if (derived-mode-p 'org-mode)
8409 (if (and confirm
8410 (not (y-or-n-p "Archive this subtree or entry? ")))
8411 (error "Abort")
8412 (save-window-excursion
8413 (goto-char pos)
8414 (let ((org-agenda-buffer-name bufname-orig))
8415 (org-remove-subtree-entries-from-agenda))
8416 (org-back-to-heading t)
8417 (funcall cmd)))
8418 (error "Archiving works only in Org-mode files"))))))
8420 (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
8421 "Remove all lines in the agenda that correspond to a given subtree.
8422 The subtree is the one in buffer BUF, starting at BEG and ending at END.
8423 If this information is not given, the function uses the tree at point."
8424 (let ((buf (or buf (current-buffer))) m p)
8425 (save-excursion
8426 (unless (and beg end)
8427 (org-back-to-heading t)
8428 (setq beg (point))
8429 (org-end-of-subtree t)
8430 (setq end (point)))
8431 (set-buffer (get-buffer org-agenda-buffer-name))
8432 (save-excursion
8433 (goto-char (point-max))
8434 (beginning-of-line 1)
8435 (while (not (bobp))
8436 (when (and (setq m (org-get-at-bol 'org-marker))
8437 (equal buf (marker-buffer m))
8438 (setq p (marker-position m))
8439 (>= p beg)
8440 (< p end))
8441 (let ((inhibit-read-only t))
8442 (delete-region (point-at-bol) (1+ (point-at-eol)))))
8443 (beginning-of-line 0))))))
8445 (defun org-agenda-refile (&optional goto rfloc no-update)
8446 "Refile the item at point.
8448 When GOTO is 0 or '(64), clear the refile cache.
8449 When GOTO is '(16), go to the location of the last refiled item.
8450 RFLOC can be a refile location obtained in a different way.
8451 When NO-UPDATE is non-nil, don't redo the agenda buffer."
8452 (interactive "P")
8453 (cond
8454 ((member goto '(0 (64)))
8455 (org-refile-cache-clear))
8456 ((equal goto '(16))
8457 (org-refile-goto-last-stored))
8459 (let* ((buffer-orig (buffer-name))
8460 (marker (or (org-get-at-bol 'org-hd-marker)
8461 (org-agenda-error)))
8462 (buffer (marker-buffer marker))
8463 (pos (marker-position marker))
8464 (rfloc (or rfloc
8465 (org-refile-get-location
8466 (if goto "Goto" "Refile to") buffer
8467 org-refile-allow-creating-parent-nodes))))
8468 (with-current-buffer buffer
8469 (save-excursion
8470 (save-restriction
8471 (widen)
8472 (goto-char marker)
8473 (let ((org-agenda-buffer-name buffer-orig))
8474 (org-remove-subtree-entries-from-agenda))
8475 (org-refile goto buffer rfloc)))))
8476 (unless no-update (org-agenda-redo)))))
8478 (defun org-agenda-open-link (&optional arg)
8479 "Open the link(s) in the current entry, if any.
8480 This looks for a link in the displayed line in the agenda.
8481 It also looks at the text of the entry itself."
8482 (interactive "P")
8483 (let* ((marker (or (org-get-at-bol 'org-hd-marker)
8484 (org-get-at-bol 'org-marker)))
8485 (buffer (and marker (marker-buffer marker)))
8486 (prefix (buffer-substring (point-at-bol) (point-at-eol)))
8487 (lkall (org-offer-links-in-entry buffer marker arg prefix))
8488 (lk0 (car lkall))
8489 (lk (if (stringp lk0) (list lk0) lk0))
8490 (lkend (cdr lkall))
8491 trg)
8492 (cond
8493 ((and buffer lk)
8494 (mapcar (lambda(l)
8495 (with-current-buffer buffer
8496 (setq trg (and (string-match org-bracket-link-regexp l)
8497 (match-string 1 l)))
8498 (if (or (not trg) (string-match org-any-link-re trg))
8499 (save-excursion
8500 (save-restriction
8501 (widen)
8502 (goto-char marker)
8503 (when (search-forward l nil lkend)
8504 (goto-char (match-beginning 0))
8505 (org-open-at-point))))
8506 ;; This is an internal link, widen the buffer
8507 (switch-to-buffer-other-window buffer)
8508 (widen)
8509 (goto-char marker)
8510 (when (search-forward l nil lkend)
8511 (goto-char (match-beginning 0))
8512 (org-open-at-point)))))
8513 lk))
8514 ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
8515 (save-excursion
8516 (beginning-of-line 1)
8517 (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
8518 (org-open-link-from-string (match-string 1)))
8519 (t (message "No link to open here")))))
8521 (defun org-agenda-copy-local-variable (var)
8522 "Get a variable from a referenced buffer and install it here."
8523 (let ((m (org-get-at-bol 'org-marker)))
8524 (when (and m (buffer-live-p (marker-buffer m)))
8525 (org-set-local var (with-current-buffer (marker-buffer m)
8526 (symbol-value var))))))
8528 (defun org-agenda-switch-to (&optional delete-other-windows)
8529 "Go to the Org-mode file which contains the item at point."
8530 (interactive)
8531 (if (and org-return-follows-link
8532 (not (org-get-at-bol 'org-marker))
8533 (org-in-regexp org-bracket-link-regexp))
8534 (org-open-link-from-string (match-string 0))
8535 (let* ((marker (or (org-get-at-bol 'org-marker)
8536 (org-agenda-error)))
8537 (buffer (marker-buffer marker))
8538 (pos (marker-position marker)))
8539 (org-pop-to-buffer-same-window buffer)
8540 (and delete-other-windows (delete-other-windows))
8541 (widen)
8542 (goto-char pos)
8543 (when (derived-mode-p 'org-mode)
8544 (org-show-context 'agenda)
8545 (save-excursion
8546 (and (outline-next-heading)
8547 (org-flag-heading nil))) ; show the next heading
8548 (when (outline-invisible-p)
8549 (show-entry)) ; display invisible text
8550 (run-hooks 'org-agenda-after-show-hook)))))
8552 (defun org-agenda-goto-mouse (ev)
8553 "Go to the Org-mode file which contains the item at the mouse click."
8554 (interactive "e")
8555 (mouse-set-point ev)
8556 (org-agenda-goto))
8558 (defun org-agenda-show (&optional full-entry)
8559 "Display the Org-mode file which contains the item at point.
8560 With prefix argument FULL-ENTRY, make the entire entry visible
8561 if it was hidden in the outline."
8562 (interactive "P")
8563 (let ((win (selected-window)))
8564 (if full-entry
8565 (let ((org-show-entry-below t))
8566 (org-agenda-goto t))
8567 (org-agenda-goto t))
8568 (select-window win)))
8570 (defvar org-agenda-show-window nil)
8571 (defun org-agenda-show-and-scroll-up (&optional arg)
8572 "Display the Org-mode file which contains the item at point.
8573 When called repeatedly, scroll the window that is displaying the buffer.
8574 With a \\[universal-argument] prefix, use `org-show-entry' instead of
8575 `show-subtree' to display the item, so that drawers and logbooks stay
8576 folded."
8577 (interactive "P")
8578 (let ((win (selected-window)))
8579 (if (and (window-live-p org-agenda-show-window)
8580 (eq this-command last-command))
8581 (progn
8582 (select-window org-agenda-show-window)
8583 (ignore-errors (scroll-up)))
8584 (org-agenda-goto t)
8585 (if arg (org-show-entry) (show-subtree))
8586 (setq org-agenda-show-window (selected-window)))
8587 (select-window win)))
8589 (defun org-agenda-show-scroll-down ()
8590 "Scroll down the window showing the agenda."
8591 (interactive)
8592 (let ((win (selected-window)))
8593 (when (window-live-p org-agenda-show-window)
8594 (select-window org-agenda-show-window)
8595 (ignore-errors (scroll-down))
8596 (select-window win))))
8598 (defun org-agenda-show-1 (&optional more)
8599 "Display the Org-mode file which contains the item at point.
8600 The prefix arg selects the amount of information to display:
8602 0 hide the subtree
8603 1 just show the entry according to defaults.
8604 2 show the children view
8605 3 show the subtree view
8606 4 show the entire subtree and any LOGBOOK drawers
8607 5 show the entire subtree and any drawers
8608 With prefix argument FULL-ENTRY, make the entire entry visible
8609 if it was hidden in the outline."
8610 (interactive "p")
8611 (let ((win (selected-window)))
8612 (org-agenda-goto t)
8613 (org-recenter-heading 1)
8614 (cond
8615 ((= more 0)
8616 (hide-subtree)
8617 (save-excursion
8618 (org-back-to-heading)
8619 (run-hook-with-args 'org-cycle-hook 'folded))
8620 (message "Remote: FOLDED"))
8621 ((and (org-called-interactively-p 'any) (= more 1))
8622 (message "Remote: show with default settings"))
8623 ((= more 2)
8624 (show-entry)
8625 (show-children)
8626 (save-excursion
8627 (org-back-to-heading)
8628 (run-hook-with-args 'org-cycle-hook 'children))
8629 (message "Remote: CHILDREN"))
8630 ((= more 3)
8631 (show-subtree)
8632 (save-excursion
8633 (org-back-to-heading)
8634 (run-hook-with-args 'org-cycle-hook 'subtree))
8635 (message "Remote: SUBTREE"))
8636 ((= more 4)
8637 (show-subtree)
8638 (save-excursion
8639 (org-back-to-heading)
8640 (org-cycle-hide-drawers 'subtree '("LOGBOOK")))
8641 (message "Remote: SUBTREE AND LOGBOOK"))
8642 ((> more 4)
8643 (show-subtree)
8644 (message "Remote: SUBTREE AND ALL DRAWERS")))
8645 (select-window win)))
8647 (defun org-recenter-heading (n)
8648 (save-excursion
8649 (org-back-to-heading)
8650 (recenter n)))
8652 (defvar org-agenda-cycle-counter nil)
8653 (defun org-agenda-cycle-show (&optional n)
8654 "Show the current entry in another window, with default settings.
8655 Default settings are taken from `org-show-hierarchy-above' and siblings.
8656 When use repeatedly in immediate succession, the remote entry will cycle
8657 through visibility
8659 children -> subtree -> folded
8661 When called with a numeric prefix arg, that arg will be passed through to
8662 `org-agenda-show-1'. For the interpretation of that argument, see the
8663 docstring of `org-agenda-show-1'."
8664 (interactive "P")
8665 (if (integerp n)
8666 (setq org-agenda-cycle-counter n)
8667 (if (not (eq last-command this-command))
8668 (setq org-agenda-cycle-counter 1)
8669 (if (equal org-agenda-cycle-counter 0)
8670 (setq org-agenda-cycle-counter 2)
8671 (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
8672 (if (> org-agenda-cycle-counter 3)
8673 (setq org-agenda-cycle-counter 0)))))
8674 (org-agenda-show-1 org-agenda-cycle-counter))
8676 (defun org-agenda-recenter (arg)
8677 "Display the Org-mode file which contains the item at point and recenter."
8678 (interactive "P")
8679 (let ((win (selected-window)))
8680 (org-agenda-goto t)
8681 (recenter arg)
8682 (select-window win)))
8684 (defun org-agenda-show-mouse (ev)
8685 "Display the Org-mode file which contains the item at the mouse click."
8686 (interactive "e")
8687 (mouse-set-point ev)
8688 (org-agenda-show))
8690 (defun org-agenda-check-no-diary ()
8691 "Check if the entry is a diary link and abort if yes."
8692 (if (org-get-at-bol 'org-agenda-diary-link)
8693 (org-agenda-error)))
8695 (defun org-agenda-error ()
8696 (error "Command not allowed in this line"))
8698 (defun org-agenda-tree-to-indirect-buffer (arg)
8699 "Show the subtree corresponding to the current entry in an indirect buffer.
8700 This calls the command `org-tree-to-indirect-buffer' from the original buffer.
8702 With a numerical prefix ARG, go up to this level and then take that tree.
8703 With a negative numeric ARG, go up by this number of levels.
8704 With a \\[universal-argument] prefix, make a separate frame for this tree (i.e. don't
8705 use the dedicated frame)."
8706 (interactive "P")
8707 (if current-prefix-arg
8708 (org-agenda-do-tree-to-indirect-buffer arg)
8709 (let ((agenda-buffer (buffer-name))
8710 (agenda-window (selected-window))
8711 (indirect-window
8712 (and org-last-indirect-buffer
8713 (get-buffer-window org-last-indirect-buffer))))
8714 (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
8715 (unless (or (eq org-indirect-buffer-display 'new-frame)
8716 (eq org-indirect-buffer-display 'dedicated-frame))
8717 (unwind-protect
8718 (unless (and indirect-window (window-live-p indirect-window))
8719 (setq indirect-window (split-window agenda-window)))
8720 (and indirect-window (select-window indirect-window))
8721 (switch-to-buffer org-last-indirect-buffer :norecord)
8722 (fit-window-to-buffer indirect-window)))
8723 (select-window (get-buffer-window agenda-buffer)))))
8725 (defun org-agenda-do-tree-to-indirect-buffer (arg)
8726 "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
8727 (org-agenda-check-no-diary)
8728 (let* ((marker (or (org-get-at-bol 'org-marker)
8729 (org-agenda-error)))
8730 (buffer (marker-buffer marker))
8731 (pos (marker-position marker)))
8732 (with-current-buffer buffer
8733 (save-excursion
8734 (goto-char pos)
8735 (funcall 'org-tree-to-indirect-buffer arg)))))
8737 (defvar org-last-heading-marker (make-marker)
8738 "Marker pointing to the headline that last changed its TODO state
8739 by a remote command from the agenda.")
8741 (defun org-agenda-todo-nextset ()
8742 "Switch TODO entry to next sequence."
8743 (interactive)
8744 (org-agenda-todo 'nextset))
8746 (defun org-agenda-todo-previousset ()
8747 "Switch TODO entry to previous sequence."
8748 (interactive)
8749 (org-agenda-todo 'previousset))
8751 (defun org-agenda-todo (&optional arg)
8752 "Cycle TODO state of line at point, also in Org-mode file.
8753 This changes the line at point, all other lines in the agenda referring to
8754 the same tree node, and the headline of the tree node in the Org-mode file."
8755 (interactive "P")
8756 (org-agenda-check-no-diary)
8757 (let* ((col (current-column))
8758 (marker (or (org-get-at-bol 'org-marker)
8759 (org-agenda-error)))
8760 (buffer (marker-buffer marker))
8761 (pos (marker-position marker))
8762 (hdmarker (org-get-at-bol 'org-hd-marker))
8763 (todayp (org-agenda-todayp (org-get-at-bol 'day)))
8764 (inhibit-read-only t)
8765 org-agenda-headline-snapshot-before-repeat newhead just-one)
8766 (org-with-remote-undo buffer
8767 (with-current-buffer buffer
8768 (widen)
8769 (goto-char pos)
8770 (org-show-context 'agenda)
8771 (save-excursion
8772 (and (outline-next-heading)
8773 (org-flag-heading nil))) ; show the next heading
8774 (let ((current-prefix-arg arg))
8775 (call-interactively 'org-todo))
8776 (and (bolp) (forward-char 1))
8777 (setq newhead (org-get-heading))
8778 (when (and (org-bound-and-true-p
8779 org-agenda-headline-snapshot-before-repeat)
8780 (not (equal org-agenda-headline-snapshot-before-repeat
8781 newhead))
8782 todayp)
8783 (setq newhead org-agenda-headline-snapshot-before-repeat
8784 just-one t))
8785 (save-excursion
8786 (org-back-to-heading)
8787 (move-marker org-last-heading-marker (point))))
8788 (beginning-of-line 1)
8789 (save-excursion
8790 (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
8791 (org-move-to-column col))))
8793 (defun org-agenda-add-note (&optional arg)
8794 "Add a time-stamped note to the entry at point."
8795 (interactive "P")
8796 (org-agenda-check-no-diary)
8797 (let* ((marker (or (org-get-at-bol 'org-marker)
8798 (org-agenda-error)))
8799 (buffer (marker-buffer marker))
8800 (pos (marker-position marker))
8801 (hdmarker (org-get-at-bol 'org-hd-marker))
8802 (inhibit-read-only t))
8803 (with-current-buffer buffer
8804 (widen)
8805 (goto-char pos)
8806 (org-show-context 'agenda)
8807 (save-excursion
8808 (and (outline-next-heading)
8809 (org-flag-heading nil))) ; show the next heading
8810 (org-add-note))))
8812 (defun org-agenda-change-all-lines (newhead hdmarker
8813 &optional fixface just-this)
8814 "Change all lines in the agenda buffer which match HDMARKER.
8815 The new content of the line will be NEWHEAD (as modified by
8816 `org-agenda-format-item'). HDMARKER is checked with
8817 `equal' against all `org-hd-marker' text properties in the file.
8818 If FIXFACE is non-nil, the face of each item is modified according to
8819 the new TODO state.
8820 If JUST-THIS is non-nil, change just the current line, not all.
8821 If FORCE-TAGS is non nil, the car of it returns the new tags."
8822 (let* ((inhibit-read-only t)
8823 (line (org-current-line))
8824 (org-agenda-buffer (current-buffer))
8825 (thetags (with-current-buffer (marker-buffer hdmarker)
8826 (save-excursion (save-restriction (widen)
8827 (goto-char hdmarker)
8828 (org-get-tags-at)))))
8829 props m pl undone-face done-face finish new dotime level cat tags)
8830 (save-excursion
8831 (goto-char (point-max))
8832 (beginning-of-line 1)
8833 (while (not finish)
8834 (setq finish (bobp))
8835 (when (and (setq m (org-get-at-bol 'org-hd-marker))
8836 (or (not just-this) (= (org-current-line) line))
8837 (equal m hdmarker))
8838 (setq props (text-properties-at (point))
8839 dotime (org-get-at-bol 'dotime)
8840 cat (org-get-at-bol 'org-category)
8841 level (org-get-at-bol 'level)
8842 tags thetags
8844 (let ((org-prefix-format-compiled
8845 (or (get-text-property (min (1- (point-max)) (point)) 'format)
8846 org-prefix-format-compiled))
8847 (extra (org-get-at-bol 'extra)))
8848 (with-current-buffer (marker-buffer hdmarker)
8849 (save-excursion
8850 (save-restriction
8851 (widen)
8852 (org-agenda-format-item extra newhead level cat tags dotime)))))
8853 pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
8854 undone-face (org-get-at-bol 'undone-face)
8855 done-face (org-get-at-bol 'done-face))
8856 (beginning-of-line 1)
8857 (cond
8858 ((equal new "")
8859 (and (looking-at ".*\n?") (replace-match "")))
8860 ((looking-at ".*")
8861 (replace-match new t t)
8862 (beginning-of-line 1)
8863 (add-text-properties (point-at-bol) (point-at-eol) props)
8864 (when fixface
8865 (add-text-properties
8866 (point-at-bol) (point-at-eol)
8867 (list 'face
8868 (if org-last-todo-state-is-todo
8869 undone-face done-face))))
8870 (org-agenda-highlight-todo 'line)
8871 (beginning-of-line 1))
8872 (t (error "Line update did not work")))
8873 (save-restriction
8874 (narrow-to-region (point-at-bol) (point-at-eol))
8875 (org-agenda-finalize)))
8876 (beginning-of-line 0)))))
8878 (defun org-agenda-align-tags (&optional line)
8879 "Align all tags in agenda items to `org-agenda-tags-column'."
8880 (let ((inhibit-read-only t) l c)
8881 (save-excursion
8882 (goto-char (if line (point-at-bol) (point-min)))
8883 (while (re-search-forward (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
8884 (if line (point-at-eol) nil) t)
8885 (add-text-properties
8886 (match-beginning 2) (match-end 2)
8887 (list 'face (delq nil (let ((prop (get-text-property
8888 (match-beginning 2) 'face)))
8889 (or (listp prop) (setq prop (list prop)))
8890 (if (memq 'org-tag prop)
8891 prop
8892 (cons 'org-tag prop))))))
8893 (setq l (- (match-end 2) (match-beginning 2))
8894 c (if (< org-agenda-tags-column 0)
8895 (- (abs org-agenda-tags-column) l)
8896 org-agenda-tags-column))
8897 (delete-region (match-beginning 1) (match-end 1))
8898 (goto-char (match-beginning 1))
8899 (insert (org-add-props
8900 (make-string (max 1 (- c (current-column))) ?\ )
8901 (plist-put (copy-sequence (text-properties-at (point)))
8902 'face nil))))
8903 (goto-char (point-min))
8904 (org-font-lock-add-tag-faces (point-max)))))
8906 (defun org-agenda-priority-up ()
8907 "Increase the priority of line at point, also in Org-mode file."
8908 (interactive)
8909 (org-agenda-priority 'up))
8911 (defun org-agenda-priority-down ()
8912 "Decrease the priority of line at point, also in Org-mode file."
8913 (interactive)
8914 (org-agenda-priority 'down))
8916 (defun org-agenda-priority (&optional force-direction)
8917 "Set the priority of line at point, also in Org-mode file.
8918 This changes the line at point, all other lines in the agenda referring to
8919 the same tree node, and the headline of the tree node in the Org-mode file.
8920 Called with a universal prefix arg, show the priority instead of setting it."
8921 (interactive "P")
8922 (if (equal force-direction '(4))
8923 (org-show-priority)
8924 (unless org-enable-priority-commands
8925 (error "Priority commands are disabled"))
8926 (org-agenda-check-no-diary)
8927 (let* ((marker (or (org-get-at-bol 'org-marker)
8928 (org-agenda-error)))
8929 (hdmarker (org-get-at-bol 'org-hd-marker))
8930 (buffer (marker-buffer hdmarker))
8931 (pos (marker-position hdmarker))
8932 (inhibit-read-only t)
8933 newhead)
8934 (org-with-remote-undo buffer
8935 (with-current-buffer buffer
8936 (widen)
8937 (goto-char pos)
8938 (org-show-context 'agenda)
8939 (save-excursion
8940 (and (outline-next-heading)
8941 (org-flag-heading nil))) ; show the next heading
8942 (funcall 'org-priority force-direction)
8943 (end-of-line 1)
8944 (setq newhead (org-get-heading)))
8945 (org-agenda-change-all-lines newhead hdmarker)
8946 (beginning-of-line 1)))))
8948 ;; FIXME: should fix the tags property of the agenda line.
8949 (defun org-agenda-set-tags (&optional tag onoff)
8950 "Set tags for the current headline."
8951 (interactive)
8952 (org-agenda-check-no-diary)
8953 (if (and (org-region-active-p) (org-called-interactively-p 'any))
8954 (call-interactively 'org-change-tag-in-region)
8955 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
8956 (org-agenda-error)))
8957 (buffer (marker-buffer hdmarker))
8958 (pos (marker-position hdmarker))
8959 (inhibit-read-only t)
8960 newhead)
8961 (org-with-remote-undo buffer
8962 (with-current-buffer buffer
8963 (widen)
8964 (goto-char pos)
8965 (save-excursion
8966 (org-show-context 'agenda))
8967 (save-excursion
8968 (and (outline-next-heading)
8969 (org-flag-heading nil))) ; show the next heading
8970 (goto-char pos)
8971 (if tag
8972 (org-toggle-tag tag onoff)
8973 (call-interactively 'org-set-tags))
8974 (end-of-line 1)
8975 (setq newhead (org-get-heading)))
8976 (org-agenda-change-all-lines newhead hdmarker)
8977 (beginning-of-line 1)))))
8979 (defun org-agenda-set-property ()
8980 "Set a property for the current headline."
8981 (interactive)
8982 (org-agenda-check-no-diary)
8983 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
8984 (org-agenda-error)))
8985 (buffer (marker-buffer hdmarker))
8986 (pos (marker-position hdmarker))
8987 (inhibit-read-only t)
8988 newhead)
8989 (org-with-remote-undo buffer
8990 (with-current-buffer buffer
8991 (widen)
8992 (goto-char pos)
8993 (save-excursion
8994 (org-show-context 'agenda))
8995 (save-excursion
8996 (and (outline-next-heading)
8997 (org-flag-heading nil))) ; show the next heading
8998 (goto-char pos)
8999 (call-interactively 'org-set-property)))))
9001 (defun org-agenda-set-effort ()
9002 "Set the effort property for the current headline."
9003 (interactive)
9004 (org-agenda-check-no-diary)
9005 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
9006 (org-agenda-error)))
9007 (buffer (marker-buffer hdmarker))
9008 (pos (marker-position hdmarker))
9009 (inhibit-read-only t)
9010 newhead)
9011 (org-with-remote-undo buffer
9012 (with-current-buffer buffer
9013 (widen)
9014 (goto-char pos)
9015 (save-excursion
9016 (org-show-context 'agenda))
9017 (save-excursion
9018 (and (outline-next-heading)
9019 (org-flag-heading nil))) ; show the next heading
9020 (goto-char pos)
9021 (call-interactively 'org-set-effort)
9022 (end-of-line 1)
9023 (setq newhead (org-get-heading)))
9024 (org-agenda-change-all-lines newhead hdmarker))))
9026 (defun org-agenda-toggle-archive-tag ()
9027 "Toggle the archive tag for the current entry."
9028 (interactive)
9029 (org-agenda-check-no-diary)
9030 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
9031 (org-agenda-error)))
9032 (buffer (marker-buffer hdmarker))
9033 (pos (marker-position hdmarker))
9034 (inhibit-read-only t)
9035 newhead)
9036 (org-with-remote-undo buffer
9037 (with-current-buffer buffer
9038 (widen)
9039 (goto-char pos)
9040 (org-show-context 'agenda)
9041 (save-excursion
9042 (and (outline-next-heading)
9043 (org-flag-heading nil))) ; show the next heading
9044 (call-interactively 'org-toggle-archive-tag)
9045 (end-of-line 1)
9046 (setq newhead (org-get-heading)))
9047 (org-agenda-change-all-lines newhead hdmarker)
9048 (beginning-of-line 1))))
9050 (defun org-agenda-do-date-later (arg)
9051 (interactive "P")
9052 (cond
9053 ((or (equal arg '(16))
9054 (memq last-command
9055 '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
9056 (setq this-command 'org-agenda-date-later-minutes)
9057 (org-agenda-date-later-minutes 1))
9058 ((or (equal arg '(4))
9059 (memq last-command
9060 '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
9061 (setq this-command 'org-agenda-date-later-hours)
9062 (org-agenda-date-later-hours 1))
9064 (org-agenda-date-later (prefix-numeric-value arg)))))
9066 (defun org-agenda-do-date-earlier (arg)
9067 (interactive "P")
9068 (cond
9069 ((or (equal arg '(16))
9070 (memq last-command
9071 '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
9072 (setq this-command 'org-agenda-date-earlier-minutes)
9073 (org-agenda-date-earlier-minutes 1))
9074 ((or (equal arg '(4))
9075 (memq last-command
9076 '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
9077 (setq this-command 'org-agenda-date-earlier-hours)
9078 (org-agenda-date-earlier-hours 1))
9080 (org-agenda-date-earlier (prefix-numeric-value arg)))))
9082 (defun org-agenda-date-later (arg &optional what)
9083 "Change the date of this item to ARG day(s) later."
9084 (interactive "p")
9085 (org-agenda-check-type t 'agenda 'timeline)
9086 (org-agenda-check-no-diary)
9087 (let* ((marker (or (org-get-at-bol 'org-marker)
9088 (org-agenda-error)))
9089 (buffer (marker-buffer marker))
9090 (pos (marker-position marker))
9091 cdate today)
9092 (org-with-remote-undo buffer
9093 (with-current-buffer buffer
9094 (widen)
9095 (goto-char pos)
9096 (if (not (org-at-timestamp-p))
9097 (error "Cannot find time stamp"))
9098 (when (and org-agenda-move-date-from-past-immediately-to-today
9099 (equal arg 1)
9100 (or (not what) (eq what 'day))
9101 (not (save-match-data (org-at-date-range-p))))
9102 (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
9103 cdate (calendar-absolute-from-gregorian
9104 (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
9105 today (org-today))
9106 (if (> today cdate)
9107 ;; immediately shift to today
9108 (setq arg (- today cdate))))
9109 (org-timestamp-change arg (or what 'day))
9110 (when (and (org-at-date-range-p)
9111 (re-search-backward org-tr-regexp-both (point-at-bol)))
9112 (let ((end org-last-changed-timestamp))
9113 (org-timestamp-change arg (or what 'day))
9114 (setq org-last-changed-timestamp
9115 (concat org-last-changed-timestamp "--" end)))))
9116 (org-agenda-show-new-time marker org-last-changed-timestamp))
9117 (message "Time stamp changed to %s" org-last-changed-timestamp)))
9119 (defun org-agenda-date-earlier (arg &optional what)
9120 "Change the date of this item to ARG day(s) earlier."
9121 (interactive "p")
9122 (org-agenda-date-later (- arg) what))
9124 (defun org-agenda-date-later-minutes (arg)
9125 "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
9126 (interactive "p")
9127 (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
9128 (org-agenda-date-later arg 'minute))
9130 (defun org-agenda-date-earlier-minutes (arg)
9131 "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
9132 (interactive "p")
9133 (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
9134 (org-agenda-date-earlier arg 'minute))
9136 (defun org-agenda-date-later-hours (arg)
9137 "Change the time of this item, in hour steps."
9138 (interactive "p")
9139 (org-agenda-date-later arg 'hour))
9141 (defun org-agenda-date-earlier-hours (arg)
9142 "Change the time of this item, in hour steps."
9143 (interactive "p")
9144 (org-agenda-date-earlier arg 'hour))
9146 (defun org-agenda-show-new-time (marker stamp &optional prefix)
9147 "Show new date stamp via text properties."
9148 ;; We use text properties to make this undoable
9149 (let ((inhibit-read-only t))
9150 (setq stamp (concat prefix " => " stamp " "))
9151 (save-excursion
9152 (goto-char (point-max))
9153 (while (not (bobp))
9154 (when (equal marker (org-get-at-bol 'org-marker))
9155 (org-move-to-column (- (window-width) (length stamp)) t nil t)
9156 (org-agenda-fix-tags-filter-overlays-at (point))
9157 (if (featurep 'xemacs)
9158 ;; Use `duplicable' property to trigger undo recording
9159 (let ((ex (make-extent nil nil))
9160 (gl (make-glyph stamp)))
9161 (set-glyph-face gl 'secondary-selection)
9162 (set-extent-properties
9163 ex (list 'invisible t 'end-glyph gl 'duplicable t))
9164 (insert-extent ex (1- (point)) (point-at-eol)))
9165 (add-text-properties
9166 (1- (point)) (point-at-eol)
9167 (list 'display (org-add-props stamp nil
9168 'face 'secondary-selection))))
9169 (beginning-of-line 1))
9170 (beginning-of-line 0)))))
9172 (defun org-agenda-date-prompt (arg)
9173 "Change the date of this item. Date is prompted for, with default today.
9174 The prefix ARG is passed to the `org-time-stamp' command and can therefore
9175 be used to request time specification in the time stamp."
9176 (interactive "P")
9177 (org-agenda-check-type t 'agenda 'timeline)
9178 (org-agenda-check-no-diary)
9179 (let* ((marker (or (org-get-at-bol 'org-marker)
9180 (org-agenda-error)))
9181 (buffer (marker-buffer marker))
9182 (pos (marker-position marker)))
9183 (org-with-remote-undo buffer
9184 (with-current-buffer buffer
9185 (widen)
9186 (goto-char pos)
9187 (if (not (org-at-timestamp-p t))
9188 (error "Cannot find time stamp"))
9189 (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
9190 (org-agenda-show-new-time marker org-last-changed-timestamp))
9191 (message "Time stamp changed to %s" org-last-changed-timestamp)))
9193 (defun org-agenda-schedule (arg &optional time)
9194 "Schedule the item at point.
9195 ARG is passed through to `org-schedule'."
9196 (interactive "P")
9197 (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
9198 (org-agenda-check-no-diary)
9199 (let* ((marker (or (org-get-at-bol 'org-marker)
9200 (org-agenda-error)))
9201 (type (marker-insertion-type marker))
9202 (buffer (marker-buffer marker))
9203 (pos (marker-position marker))
9204 (org-insert-labeled-timestamps-at-point nil)
9206 (set-marker-insertion-type marker t)
9207 (org-with-remote-undo buffer
9208 (with-current-buffer buffer
9209 (widen)
9210 (goto-char pos)
9211 (setq ts (org-schedule arg time)))
9212 (org-agenda-show-new-time marker ts " S"))
9213 (message "%s" ts)))
9215 (defun org-agenda-deadline (arg &optional time)
9216 "Schedule the item at point.
9217 ARG is passed through to `org-deadline'."
9218 (interactive "P")
9219 (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
9220 (org-agenda-check-no-diary)
9221 (let* ((marker (or (org-get-at-bol 'org-marker)
9222 (org-agenda-error)))
9223 (buffer (marker-buffer marker))
9224 (pos (marker-position marker))
9225 (org-insert-labeled-timestamps-at-point nil)
9227 (org-with-remote-undo buffer
9228 (with-current-buffer buffer
9229 (widen)
9230 (goto-char pos)
9231 (setq ts (org-deadline arg time)))
9232 (org-agenda-show-new-time marker ts " D"))
9233 (message "%s" ts)))
9235 (defun org-agenda-clock-in (&optional arg)
9236 "Start the clock on the currently selected item."
9237 (interactive "P")
9238 (org-agenda-check-no-diary)
9239 (if (equal arg '(4))
9240 (org-clock-in arg)
9241 (let* ((marker (or (org-get-at-bol 'org-marker)
9242 (org-agenda-error)))
9243 (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
9244 (pos (marker-position marker))
9245 (col (current-column))
9246 newhead)
9247 (org-with-remote-undo (marker-buffer marker)
9248 (with-current-buffer (marker-buffer marker)
9249 (widen)
9250 (goto-char pos)
9251 (org-show-context 'agenda)
9252 (org-show-entry)
9253 (org-cycle-hide-drawers 'children)
9254 (org-clock-in arg)
9255 (setq newhead (org-get-heading)))
9256 (org-agenda-change-all-lines newhead hdmarker))
9257 (org-move-to-column col))))
9259 (defun org-agenda-clock-out ()
9260 "Stop the currently running clock."
9261 (interactive)
9262 (unless (marker-buffer org-clock-marker)
9263 (error "No running clock"))
9264 (let ((marker (make-marker)) (col (current-column)) newhead)
9265 (org-with-remote-undo (marker-buffer org-clock-marker)
9266 (with-current-buffer (marker-buffer org-clock-marker)
9267 (save-excursion
9268 (save-restriction
9269 (widen)
9270 (goto-char org-clock-marker)
9271 (org-back-to-heading t)
9272 (move-marker marker (point))
9273 (org-clock-out)
9274 (setq newhead (org-get-heading))))))
9275 (org-agenda-change-all-lines newhead marker)
9276 (move-marker marker nil)
9277 (org-move-to-column col)
9278 (org-agenda-unmark-clocking-task)))
9280 (defun org-agenda-clock-cancel (&optional arg)
9281 "Cancel the currently running clock."
9282 (interactive "P")
9283 (unless (marker-buffer org-clock-marker)
9284 (user-error "No running clock"))
9285 (org-with-remote-undo (marker-buffer org-clock-marker)
9286 (org-clock-cancel)))
9288 (defun org-agenda-clock-goto ()
9289 "Jump to the currently clocked in task within the agenda.
9290 If the currently clocked in task is not listed in the agenda
9291 buffer, display it in another window."
9292 (interactive)
9293 (let (pos)
9294 (mapc (lambda (o)
9295 (if (eq (overlay-get o 'type) 'org-agenda-clocking)
9296 (setq pos (overlay-start o))))
9297 (overlays-in (point-min) (point-max)))
9298 (cond (pos (goto-char pos))
9299 ;; If the currently clocked entry is not in the agenda
9300 ;; buffer, we visit it in another window:
9301 (org-clock-current-task
9302 (org-switch-to-buffer-other-window (org-clock-goto)))
9303 (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
9305 (defun org-agenda-diary-entry-in-org-file ()
9306 "Make a diary entry in the file `org-agenda-diary-file'."
9307 (let (d1 d2 char (text "") dp1 dp2)
9308 (if (equal (buffer-name) "*Calendar*")
9309 (setq d1 (calendar-cursor-to-date t)
9310 d2 (car calendar-mark-ring))
9311 (setq dp1 (get-text-property (point-at-bol) 'day))
9312 (unless dp1 (user-error "No date defined in current line"))
9313 (setq d1 (calendar-gregorian-from-absolute dp1)
9314 d2 (and (ignore-errors (mark))
9315 (save-excursion
9316 (goto-char (mark))
9317 (setq dp2 (get-text-property (point-at-bol) 'day)))
9318 (calendar-gregorian-from-absolute dp2))))
9319 (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
9320 (setq char (read-char-exclusive))
9321 (cond
9322 ((equal char ?d)
9323 (setq text (read-string "Day entry: "))
9324 (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
9325 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
9326 ((equal char ?a)
9327 (setq d1 (list (car d1) (nth 1 d1)
9328 (read-number (format "Reference year [%d]: " (nth 2 d1))
9329 (nth 2 d1))))
9330 (setq text (read-string "Anniversary (use %d to show years): "))
9331 (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
9332 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
9333 ((equal char ?b)
9334 (setq text (read-string "Block entry: "))
9335 (unless (and d1 d2 (not (equal d1 d2)))
9336 (user-error "No block of days selected"))
9337 (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
9338 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
9339 ((equal char ?j)
9340 (org-switch-to-buffer-other-window
9341 (find-file-noselect org-agenda-diary-file))
9342 (require 'org-datetree)
9343 (org-datetree-find-date-create d1)
9344 (org-reveal t))
9345 (t (user-error "Invalid selection character `%c'" char)))))
9347 (defcustom org-agenda-insert-diary-strategy 'date-tree
9348 "Where in `org-agenda-diary-file' should new entries be added?
9349 Valid values:
9351 date-tree in the date tree, as child of the date
9352 top-level as top-level entries at the end of the file."
9353 :group 'org-agenda
9354 :type '(choice
9355 (const :tag "in a date tree" date-tree)
9356 (const :tag "as top level at end of file" top-level)))
9358 (defcustom org-agenda-insert-diary-extract-time nil
9359 "Non-nil means extract any time specification from the diary entry."
9360 :group 'org-agenda
9361 :version "24.1"
9362 :type 'boolean)
9364 (defcustom org-agenda-bulk-mark-char ">"
9365 "A single-character string to be used as the bulk mark."
9366 :group 'org-agenda
9367 :version "24.1"
9368 :type 'string)
9370 (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
9371 "Add a diary entry with TYPE to `org-agenda-diary-file'.
9372 If TEXT is not empty, it will become the headline of the new entry, and
9373 the resulting entry will not be shown. When TEXT is empty, switch to
9374 `org-agenda-diary-file' and let the user finish the entry there."
9375 (let ((cw (current-window-configuration)))
9376 (org-switch-to-buffer-other-window
9377 (find-file-noselect org-agenda-diary-file))
9378 (widen)
9379 (goto-char (point-min))
9380 (cond
9381 ((eq type 'anniversary)
9382 (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
9383 (progn
9384 (or (org-at-heading-p t)
9385 (progn
9386 (outline-next-heading)
9387 (insert "* Anniversaries\n\n")
9388 (beginning-of-line -1)))))
9389 (outline-next-heading)
9390 (org-back-over-empty-lines)
9391 (backward-char 1)
9392 (insert "\n")
9393 (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
9394 (nth 2 d1) (car d1) (nth 1 d1) text)))
9395 ((eq type 'day)
9396 (let ((org-prefix-has-time t)
9397 (org-agenda-time-leading-zero t)
9398 fmt time time2)
9399 (if org-agenda-insert-diary-extract-time
9400 ;; Use org-agenda-format-item to parse text for a time-range and
9401 ;; remove it. FIXME: This is a hack, we should refactor
9402 ;; that function to make time extraction available separately
9403 (setq fmt (org-agenda-format-item nil text nil nil nil t)
9404 time (get-text-property 0 'time fmt)
9405 time2 (if (> (length time) 0)
9406 ;; split-string removes trailing ...... if
9407 ;; no end time given. First space
9408 ;; separates time from date.
9409 (concat " " (car (split-string time "\\.")))
9410 nil)
9411 text (get-text-property 0 'txt fmt)))
9412 (if (eq org-agenda-insert-diary-strategy 'top-level)
9413 (org-agenda-insert-diary-as-top-level text)
9414 (require 'org-datetree)
9415 (org-datetree-find-date-create d1)
9416 (org-agenda-insert-diary-make-new-entry text))
9417 (org-insert-time-stamp (org-time-from-absolute
9418 (calendar-absolute-from-gregorian d1))
9419 nil nil nil nil time2))
9420 (end-of-line 0))
9421 ((eq type 'block)
9422 (if (> (calendar-absolute-from-gregorian d1)
9423 (calendar-absolute-from-gregorian d2))
9424 (setq d1 (prog1 d2 (setq d2 d1))))
9425 (if (eq org-agenda-insert-diary-strategy 'top-level)
9426 (org-agenda-insert-diary-as-top-level text)
9427 (require 'org-datetree)
9428 (org-datetree-find-date-create d1)
9429 (org-agenda-insert-diary-make-new-entry text))
9430 (org-insert-time-stamp (org-time-from-absolute
9431 (calendar-absolute-from-gregorian d1)))
9432 (insert "--")
9433 (org-insert-time-stamp (org-time-from-absolute
9434 (calendar-absolute-from-gregorian d2)))
9435 (end-of-line 0)))
9436 (if (string-match "\\S-" text)
9437 (progn
9438 (set-window-configuration cw)
9439 (message "%s entry added to %s"
9440 (capitalize (symbol-name type))
9441 (abbreviate-file-name org-agenda-diary-file)))
9442 (org-reveal t)
9443 (message "Please finish entry here"))))
9445 (defun org-agenda-insert-diary-as-top-level (text)
9446 "Make new entry as a top-level entry at the end of the file.
9447 Add TEXT as headline, and position the cursor in the second line so that
9448 a timestamp can be added there."
9449 (widen)
9450 (goto-char (point-max))
9451 (or (bolp) (insert "\n"))
9452 (insert "* " text "\n")
9453 (if org-adapt-indentation (org-indent-to-column 2)))
9455 (defun org-agenda-insert-diary-make-new-entry (text)
9456 "Make new entry as last child of current entry.
9457 Add TEXT as headline, and position the cursor in the second line so that
9458 a timestamp can be added there."
9459 (let ((org-show-following-heading t)
9460 (org-show-siblings t)
9461 (org-show-hierarchy-above t)
9462 (org-show-entry-below t)
9463 col)
9464 (outline-next-heading)
9465 (org-back-over-empty-lines)
9466 (or (looking-at "[ \t]*$")
9467 (progn (insert "\n") (backward-char 1)))
9468 (org-insert-heading nil t)
9469 (org-do-demote)
9470 (setq col (current-column))
9471 (insert text "\n")
9472 (if org-adapt-indentation (org-indent-to-column col))
9473 (let ((org-show-following-heading t)
9474 (org-show-siblings t)
9475 (org-show-hierarchy-above t)
9476 (org-show-entry-below t))
9477 (org-show-context))))
9479 (defun org-agenda-diary-entry ()
9480 "Make a diary entry, like the `i' command from the calendar.
9481 All the standard commands work: block, weekly etc.
9482 When `org-agenda-diary-file' points to a file,
9483 `org-agenda-diary-entry-in-org-file' is called instead to create
9484 entries in that Org-mode file."
9485 (interactive)
9486 (if (not (eq org-agenda-diary-file 'diary-file))
9487 (org-agenda-diary-entry-in-org-file)
9488 (require 'diary-lib)
9489 (let* ((char (progn
9490 (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
9491 (read-char-exclusive)))
9492 (cmd (cdr (assoc char
9493 '((?d . insert-diary-entry)
9494 (?w . insert-weekly-diary-entry)
9495 (?m . insert-monthly-diary-entry)
9496 (?y . insert-yearly-diary-entry)
9497 (?a . insert-anniversary-diary-entry)
9498 (?b . insert-block-diary-entry)
9499 (?c . insert-cyclic-diary-entry)))))
9500 (oldf (symbol-function 'calendar-cursor-to-date))
9501 ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
9502 (point (point))
9503 (mark (or (mark t) (point))))
9504 (unless cmd
9505 (user-error "No command associated with <%c>" char))
9506 (unless (and (get-text-property point 'day)
9507 (or (not (equal ?b char))
9508 (get-text-property mark 'day)))
9509 (user-error "Don't know which date to use for diary entry"))
9510 ;; We implement this by hacking the `calendar-cursor-to-date' function
9511 ;; and the `calendar-mark-ring' variable. Saves a lot of code.
9512 (let ((calendar-mark-ring
9513 (list (calendar-gregorian-from-absolute
9514 (or (get-text-property mark 'day)
9515 (get-text-property point 'day))))))
9516 (unwind-protect
9517 (progn
9518 (fset 'calendar-cursor-to-date
9519 (lambda (&optional error dummy)
9520 (calendar-gregorian-from-absolute
9521 (get-text-property point 'day))))
9522 (call-interactively cmd))
9523 (fset 'calendar-cursor-to-date oldf))))))
9525 (defun org-agenda-execute-calendar-command (cmd)
9526 "Execute a calendar command from the agenda with date from cursor."
9527 (org-agenda-check-type t 'agenda 'timeline)
9528 (require 'diary-lib)
9529 (unless (get-text-property (min (1- (point-max)) (point)) 'day)
9530 (user-error "Don't know which date to use for the calendar command"))
9531 (let* ((oldf (symbol-function 'calendar-cursor-to-date))
9532 (point (point))
9533 (date (calendar-gregorian-from-absolute
9534 (get-text-property point 'day)))
9535 ;; the following 2 vars are needed in the calendar
9536 (displayed-month (car date))
9537 (displayed-year (nth 2 date)))
9538 (unwind-protect
9539 (progn
9540 (fset 'calendar-cursor-to-date
9541 (lambda (&optional error dummy)
9542 (calendar-gregorian-from-absolute
9543 (get-text-property point 'day))))
9544 (call-interactively cmd))
9545 (fset 'calendar-cursor-to-date oldf))))
9547 (defun org-agenda-phases-of-moon ()
9548 "Display the phases of the moon for the 3 months around the cursor date."
9549 (interactive)
9550 (org-agenda-execute-calendar-command 'calendar-phases-of-moon))
9552 (defun org-agenda-holidays ()
9553 "Display the holidays for the 3 months around the cursor date."
9554 (interactive)
9555 (org-agenda-execute-calendar-command 'list-calendar-holidays))
9557 (defvar calendar-longitude) ; defined in calendar.el
9558 (defvar calendar-latitude) ; defined in calendar.el
9559 (defvar calendar-location-name) ; defined in calendar.el
9561 (defun org-agenda-sunrise-sunset (arg)
9562 "Display sunrise and sunset for the cursor date.
9563 Latitude and longitude can be specified with the variables
9564 `calendar-latitude' and `calendar-longitude'. When called with prefix
9565 argument, latitude and longitude will be prompted for."
9566 (interactive "P")
9567 (require 'solar)
9568 (let ((calendar-longitude (if arg nil calendar-longitude))
9569 (calendar-latitude (if arg nil calendar-latitude))
9570 (calendar-location-name
9571 (if arg "the given coordinates" calendar-location-name)))
9572 (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
9574 (defun org-agenda-goto-calendar ()
9575 "Open the Emacs calendar with the date at the cursor."
9576 (interactive)
9577 (org-agenda-check-type t 'agenda 'timeline)
9578 (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
9579 (user-error "Don't know which date to open in calendar")))
9580 (date (calendar-gregorian-from-absolute day))
9581 (calendar-move-hook nil)
9582 (calendar-view-holidays-initially-flag nil)
9583 (calendar-view-diary-initially-flag nil))
9584 (calendar)
9585 (calendar-goto-date date)))
9587 ;;;###autoload
9588 (defun org-calendar-goto-agenda ()
9589 "Compute the Org-mode agenda for the calendar date displayed at the cursor.
9590 This is a command that has to be installed in `calendar-mode-map'."
9591 (interactive)
9592 (org-agenda-list nil (calendar-absolute-from-gregorian
9593 (calendar-cursor-to-date))
9594 nil))
9596 (defun org-agenda-convert-date ()
9597 (interactive)
9598 (org-agenda-check-type t 'agenda 'timeline)
9599 (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
9600 date s)
9601 (unless day
9602 (user-error "Don't know which date to convert"))
9603 (setq date (calendar-gregorian-from-absolute day))
9604 (setq s (concat
9605 "Gregorian: " (calendar-date-string date) "\n"
9606 "ISO: " (calendar-iso-date-string date) "\n"
9607 "Day of Yr: " (calendar-day-of-year-string date) "\n"
9608 "Julian: " (calendar-julian-date-string date) "\n"
9609 "Astron. JD: " (calendar-astro-date-string date)
9610 " (Julian date number at noon UTC)\n"
9611 "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
9612 "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
9613 "French: " (calendar-french-date-string date) "\n"
9614 "Baha'i: " (calendar-bahai-date-string date) " (until sunset)\n"
9615 "Mayan: " (calendar-mayan-date-string date) "\n"
9616 "Coptic: " (calendar-coptic-date-string date) "\n"
9617 "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
9618 "Persian: " (calendar-persian-date-string date) "\n"
9619 "Chinese: " (calendar-chinese-date-string date) "\n"))
9620 (with-output-to-temp-buffer "*Dates*"
9621 (princ s))
9622 (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
9624 ;;; Bulk commands
9626 (defun org-agenda-bulk-marked-p ()
9627 (eq (get-char-property (point-at-bol) 'type)
9628 'org-marked-entry-overlay))
9630 (defun org-agenda-bulk-mark (&optional arg)
9631 "Mark the entry at point for future bulk action."
9632 (interactive "p")
9633 (dotimes (i (or arg 1))
9634 (unless (org-get-at-bol 'org-agenda-diary-link)
9635 (let* ((m (org-get-at-bol 'org-hd-marker))
9637 (unless (org-agenda-bulk-marked-p)
9638 (unless m (user-error "Nothing to mark at point"))
9639 (push m org-agenda-bulk-marked-entries)
9640 (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
9641 (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
9642 (org-get-todo-face "TODO")
9643 'evaporate)
9644 (overlay-put ov 'type 'org-marked-entry-overlay))
9645 (end-of-line 1)
9646 (or (ignore-errors
9647 (goto-char (next-single-property-change (point) 'txt)))
9648 (beginning-of-line 2))
9649 (while (and (get-char-property (point) 'invisible) (not (eobp)))
9650 (beginning-of-line 2))
9651 (message "%d entries marked for bulk action"
9652 (length org-agenda-bulk-marked-entries))))))
9654 (defun org-agenda-bulk-mark-all ()
9655 "Mark all entries for future agenda bulk action."
9656 (interactive)
9657 (org-agenda-bulk-mark-regexp "."))
9659 (defun org-agenda-bulk-mark-regexp (regexp)
9660 "Mark entries matching REGEXP for future agenda bulk action."
9661 (interactive "sMark entries matching regexp: ")
9662 (let ((entries-marked 0) txt-at-point)
9663 (save-excursion
9664 (goto-char (point-min))
9665 (goto-char (next-single-property-change (point) 'txt))
9666 (while (and (re-search-forward regexp nil t)
9667 (setq txt-at-point (get-text-property (point) 'txt)))
9668 (when (string-match regexp txt-at-point)
9669 (setq entries-marked (1+ entries-marked))
9670 (call-interactively 'org-agenda-bulk-mark))))
9671 (if (not entries-marked)
9672 (message "No entry matching this regexp."))))
9674 (defun org-agenda-bulk-unmark (&optional arg)
9675 "Unmark the entry at point for future bulk action."
9676 (interactive "P")
9677 (if arg
9678 (org-agenda-bulk-unmark-all)
9679 (cond ((org-agenda-bulk-marked-p)
9680 (org-agenda-bulk-remove-overlays
9681 (point-at-bol) (+ 2 (point-at-bol)))
9682 (setq org-agenda-bulk-marked-entries
9683 (delete (org-get-at-bol 'org-hd-marker)
9684 org-agenda-bulk-marked-entries))
9685 (end-of-line 1)
9686 (or (ignore-errors
9687 (goto-char (next-single-property-change (point) 'txt)))
9688 (beginning-of-line 2))
9689 (while (and (get-char-property (point) 'invisible) (not (eobp)))
9690 (beginning-of-line 2))
9691 (message "%d entries left marked for bulk action"
9692 (length org-agenda-bulk-marked-entries)))
9693 (t (message "No entry to unmark here")))))
9695 (defun org-agenda-bulk-toggle-all ()
9696 "Toggle all marks for bulk action."
9697 (interactive)
9698 (save-excursion
9699 (goto-char (point-min))
9700 (while (ignore-errors
9701 (goto-char (next-single-property-change (point) 'txt)))
9702 (org-agenda-bulk-toggle))))
9704 (defun org-agenda-bulk-toggle ()
9705 "Toggle the mark at point for bulk action."
9706 (interactive)
9707 (if (org-agenda-bulk-marked-p)
9708 (org-agenda-bulk-unmark)
9709 (org-agenda-bulk-mark)))
9711 (defun org-agenda-bulk-remove-overlays (&optional beg end)
9712 "Remove the mark overlays between BEG and END in the agenda buffer.
9713 BEG and END default to the buffer limits.
9715 This only removes the overlays, it does not remove the markers
9716 from the list in `org-agenda-bulk-marked-entries'."
9717 (interactive)
9718 (mapc (lambda (ov)
9719 (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
9720 (delete-overlay ov)))
9721 (overlays-in (or beg (point-min)) (or end (point-max)))))
9723 (defun org-agenda-bulk-unmark-all ()
9724 "Remove all marks in the agenda buffer.
9725 This will remove the markers and the overlays."
9726 (interactive)
9727 (if (null org-agenda-bulk-marked-entries)
9728 (message "No entry to unmark")
9729 (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
9730 (setq org-agenda-bulk-marked-entries nil)
9731 (org-agenda-bulk-remove-overlays (point-min) (point-max))))
9733 (defcustom org-agenda-persistent-marks nil
9734 "Non-nil means marked items will stay marked after a bulk action.
9735 You can toggle this interactively by typing `p' when prompted for a
9736 bulk action."
9737 :group 'org-agenda
9738 :version "24.1"
9739 :type 'boolean)
9741 (defun org-agenda-bulk-action (&optional arg)
9742 "Execute an remote-editing action on all marked entries.
9743 The prefix arg is passed through to the command if possible."
9744 (interactive "P")
9745 ;; Make sure we have markers, and only valid ones
9746 (unless org-agenda-bulk-marked-entries (user-error "No entries are marked"))
9747 (mapc
9748 (lambda (m)
9749 (unless (and (markerp m)
9750 (marker-buffer m)
9751 (buffer-live-p (marker-buffer m))
9752 (marker-position m))
9753 (user-error "Marker %s for bulk command is invalid" m)))
9754 org-agenda-bulk-marked-entries)
9756 ;; Prompt for the bulk command
9757 (let* ((msg (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")))
9758 (message (concat msg "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
9759 "[S]catter [f]unction "
9760 (when org-agenda-bulk-custom-functions
9761 (concat " Custom: ["
9762 (mapconcat (lambda(f) (char-to-string (car f)))
9763 org-agenda-bulk-custom-functions "")
9764 "]"))))
9765 (catch 'exit
9766 (let* ((action (read-char-exclusive))
9767 (org-log-refile (if org-log-refile 'time nil))
9768 (entries (reverse org-agenda-bulk-marked-entries))
9769 (org-overriding-default-time
9770 (if (get-text-property (point) 'org-agenda-date-header)
9771 (org-get-cursor-date)))
9772 redo-at-end
9773 cmd rfloc state e tag pos (cnt 0) (cntskip 0))
9774 (cond
9775 ((equal action ?p)
9776 (let ((org-agenda-persistent-marks
9777 (not org-agenda-persistent-marks)))
9778 (org-agenda-bulk-action)
9779 (throw 'exit nil)))
9781 ((equal action ?$)
9782 (setq cmd '(org-agenda-archive)))
9784 ((equal action ?A)
9785 (setq cmd '(org-agenda-archive-to-archive-sibling)))
9787 ((member action '(?r ?w))
9788 (setq rfloc (org-refile-get-location
9789 "Refile to"
9790 (marker-buffer (car entries))
9791 org-refile-allow-creating-parent-nodes))
9792 (if (nth 3 rfloc)
9793 (setcar (nthcdr 3 rfloc)
9794 (move-marker (make-marker) (nth 3 rfloc)
9795 (or (get-file-buffer (nth 1 rfloc))
9796 (find-buffer-visiting (nth 1 rfloc))
9797 (error "This should not happen")))))
9799 (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
9800 redo-at-end t))
9802 ((equal action ?t)
9803 (setq state (org-icompleting-read
9804 "Todo state: "
9805 (with-current-buffer (marker-buffer (car entries))
9806 (mapcar 'list org-todo-keywords-1))))
9807 (setq cmd `(let ((org-inhibit-blocking t)
9808 (org-inhibit-logging 'note))
9809 (org-agenda-todo ,state))))
9811 ((memq action '(?- ?+))
9812 (setq tag (org-icompleting-read
9813 (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
9814 (with-current-buffer (marker-buffer (car entries))
9815 (delq nil
9816 (mapcar (lambda (x)
9817 (if (stringp (car x)) x)) org-tag-alist)))))
9818 (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
9820 ((memq action '(?s ?d))
9821 (let* ((time
9822 (unless arg
9823 (org-read-date
9824 nil nil nil
9825 (if (eq action ?s) "(Re)Schedule to" "(Re)Set Deadline to")
9826 org-overriding-default-time)))
9827 (c1 (if (eq action ?s) 'org-agenda-schedule 'org-agenda-deadline)))
9828 (setq cmd `(eval '(,c1 arg ,time)))))
9830 ((equal action ?S)
9831 (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
9832 (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
9833 (let ((days (read-number
9834 (format "Scatter tasks across how many %sdays: "
9835 (if arg "week" "")) 7)))
9836 (setq cmd
9837 `(let ((distance (1+ (random ,days))))
9838 (if arg
9839 (let ((dist distance)
9840 (day-of-week
9841 (calendar-day-of-week
9842 (calendar-gregorian-from-absolute (org-today)))))
9843 (dotimes (i (1+ dist))
9844 (while (member day-of-week org-agenda-weekend-days)
9845 (incf distance)
9846 (incf day-of-week)
9847 (if (= day-of-week 7)
9848 (setq day-of-week 0)))
9849 (incf day-of-week)
9850 (if (= day-of-week 7)
9851 (setq day-of-week 0)))))
9852 ;; silently fail when try to replan a sexp entry
9853 (condition-case nil
9854 (let* ((date (calendar-gregorian-from-absolute
9855 (+ (org-today) distance)))
9856 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
9857 (nth 2 date))))
9858 (org-agenda-schedule nil time))
9859 (error nil)))))))
9861 ((assoc action org-agenda-bulk-custom-functions)
9862 (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
9863 redo-at-end t))
9865 ((equal action ?f)
9866 (setq cmd (list (intern
9867 (org-icompleting-read "Function: "
9868 obarray 'fboundp t nil nil)))))
9870 (t (user-error "Invalid bulk action")))
9872 ;; Sort the markers, to make sure that parents are handled before children
9873 (setq entries (sort entries
9874 (lambda (a b)
9875 (cond
9876 ((equal (marker-buffer a) (marker-buffer b))
9877 (< (marker-position a) (marker-position b)))
9879 (string< (buffer-name (marker-buffer a))
9880 (buffer-name (marker-buffer b))))))))
9882 ;; Now loop over all markers and apply cmd
9883 (while (setq e (pop entries))
9884 (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
9885 (if (not pos)
9886 (progn (message "Skipping removed entry at %s" e)
9887 (setq cntskip (1+ cntskip)))
9888 (goto-char pos)
9889 (let (org-loop-over-headlines-in-active-region)
9890 (eval cmd))
9891 (setq cnt (1+ cnt))))
9892 (when redo-at-end (org-agenda-redo))
9893 (unless org-agenda-persistent-marks
9894 (org-agenda-bulk-unmark-all))
9895 (message "Acted on %d entries%s%s"
9897 (if (= cntskip 0)
9899 (format ", skipped %d (disappeared before their turn)"
9900 cntskip))
9901 (if (not org-agenda-persistent-marks)
9902 "" " (kept marked)"))))))
9904 (defun org-agenda-capture (&optional with-time)
9905 "Call `org-capture' with the date at point.
9906 With a `C-1' prefix, use the HH:MM value at point (if any) or the
9907 current HH:MM time."
9908 (interactive "P")
9909 (if (not (eq major-mode 'org-agenda-mode))
9910 (user-error "You cannot do this outside of agenda buffers")
9911 (let ((org-overriding-default-time
9912 (org-get-cursor-date (equal with-time 1))))
9913 (call-interactively 'org-capture))))
9915 ;;; Dragging agenda lines forward/backward
9917 (defun org-agenda-drag-line-forward (arg)
9918 "Drag an agenda line forward by ARG lines."
9919 (interactive "p")
9920 (let ((inhibit-read-only t) lst)
9921 (if (or (not (get-text-property (point) 'txt))
9922 (save-excursion
9923 (dotimes (n arg)
9924 (move-beginning-of-line 2)
9925 (push (not (get-text-property (point) 'txt)) lst))
9926 (delq nil lst)))
9927 (message "Cannot move line forward")
9928 (org-drag-line-forward arg))))
9930 (defun org-agenda-drag-line-backward (arg)
9931 "Drag an agenda line backward by ARG lines."
9932 (interactive "p")
9933 (let ((inhibit-read-only t) lst)
9934 (if (or (not (get-text-property (point) 'txt))
9935 (save-excursion
9936 (dotimes (n arg)
9937 (move-beginning-of-line 0)
9938 (push (not (get-text-property (point) 'txt)) lst))
9939 (delq nil lst)))
9940 (message "Cannot move line backward")
9941 (org-drag-line-backward arg))))
9943 ;;; Flagging notes
9945 (defun org-agenda-show-the-flagging-note ()
9946 "Display the flagging note in the other window.
9947 When called a second time in direct sequence, offer to remove the FLAGGING
9948 tag and (if present) the flagging note."
9949 (interactive)
9950 (let ((hdmarker (org-get-at-bol 'org-hd-marker))
9951 (win (selected-window))
9952 note heading newhead)
9953 (unless hdmarker
9954 (user-error "No linked entry at point"))
9955 (if (and (eq this-command last-command)
9956 (y-or-n-p "Unflag and remove any flagging note? "))
9957 (progn
9958 (org-agenda-remove-flag hdmarker)
9959 (let ((win (get-buffer-window "*Flagging Note*")))
9960 (and win (delete-window win)))
9961 (message "Entry unflagged"))
9962 (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
9963 (unless note
9964 (user-error "No flagging note"))
9965 (org-kill-new note)
9966 (org-switch-to-buffer-other-window "*Flagging Note*")
9967 (erase-buffer)
9968 (insert note)
9969 (goto-char (point-min))
9970 (while (re-search-forward "\\\\n" nil t)
9971 (replace-match "\n" t t))
9972 (goto-char (point-min))
9973 (select-window win)
9974 (message "Flagging note pushed to kill ring. Press [?] again to remove tag and note"))))
9976 (defun org-agenda-remove-flag (marker)
9977 "Remove the FLAGGED tag and any flagging note in the entry."
9978 (let (newhead)
9979 (org-with-point-at marker
9980 (org-toggle-tag "FLAGGED" 'off)
9981 (org-entry-delete nil "THEFLAGGINGNOTE")
9982 (setq newhead (org-get-heading)))
9983 (org-agenda-change-all-lines newhead marker)
9984 (message "Entry unflagged")))
9986 (defun org-agenda-get-any-marker (&optional pos)
9987 (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
9988 (get-text-property (or pos (point-at-bol)) 'org-marker)))
9990 ;;; Appointment reminders
9992 (defvar appt-time-msg-list) ; defined in appt.el
9994 ;;;###autoload
9995 (defun org-agenda-to-appt (&optional refresh filter &rest args)
9996 "Activate appointments found in `org-agenda-files'.
9997 With a \\[universal-argument] prefix, refresh the list of
9998 appointments.
10000 If FILTER is t, interactively prompt the user for a regular
10001 expression, and filter out entries that don't match it.
10003 If FILTER is a string, use this string as a regular expression
10004 for filtering entries out.
10006 If FILTER is a function, filter out entries against which
10007 calling the function returns nil. This function takes one
10008 argument: an entry from `org-agenda-get-day-entries'.
10010 FILTER can also be an alist with the car of each cell being
10011 either 'headline or 'category. For example:
10013 '((headline \"IMPORTANT\")
10014 (category \"Work\"))
10016 will only add headlines containing IMPORTANT or headlines
10017 belonging to the \"Work\" category.
10019 ARGS are symbols indicating what kind of entries to consider.
10020 By default `org-agenda-to-appt' will use :deadline*, :scheduled*
10021 \(i.e., deadlines and scheduled items with a hh:mm specification)
10022 and :timestamp entries. See the docstring of `org-diary' for
10023 details and examples.
10025 If an entry has a APPT_WARNTIME property, its value will be used
10026 to override `appt-message-warning-time'."
10027 (interactive "P")
10028 (if refresh (setq appt-time-msg-list nil))
10029 (if (eq filter t)
10030 (setq filter (read-from-minibuffer "Regexp filter: ")))
10031 (let* ((cnt 0) ; count added events
10032 (scope (or args '(:deadline* :scheduled* :timestamp)))
10033 (org-agenda-new-buffers nil)
10034 (org-deadline-warning-days 0)
10035 ;; Do not use `org-today' here because appt only takes
10036 ;; time and without date as argument, so it may pass wrong
10037 ;; information otherwise
10038 (today (org-date-to-gregorian
10039 (time-to-days (current-time))))
10040 (org-agenda-restrict nil)
10041 (files (org-agenda-files 'unrestricted)) entries file
10042 (org-agenda-buffer nil))
10043 ;; Get all entries which may contain an appt
10044 (org-agenda-prepare-buffers files)
10045 (while (setq file (pop files))
10046 (setq entries
10047 (delq nil
10048 (append entries
10049 (apply 'org-agenda-get-day-entries
10050 file today scope)))))
10051 ;; Map thru entries and find if we should filter them out
10052 (mapc
10053 (lambda(x)
10054 (let* ((evt (org-trim
10055 (replace-regexp-in-string
10056 org-bracket-link-regexp "\\3"
10057 (or (get-text-property 1 'txt x) ""))))
10058 (cat (get-text-property 1 'org-category x))
10059 (tod (get-text-property 1 'time-of-day x))
10060 (ok (or (null filter)
10061 (and (stringp filter) (string-match filter evt))
10062 (and (functionp filter) (funcall filter x))
10063 (and (listp filter)
10064 (let ((cat-filter (cadr (assoc 'category filter)))
10065 (evt-filter (cadr (assoc 'headline filter))))
10066 (or (and (stringp cat-filter)
10067 (string-match cat-filter cat))
10068 (and (stringp evt-filter)
10069 (string-match evt-filter evt)))))))
10070 (wrn (get-text-property 1 'warntime x)))
10071 ;; FIXME: Shall we remove text-properties for the appt text?
10072 ;; (setq evt (set-text-properties 0 (length evt) nil evt))
10073 (when (and ok tod)
10074 (setq tod (concat "00" (number-to-string tod))
10075 tod (when (string-match
10076 "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
10077 (concat (match-string 1 tod) ":"
10078 (match-string 2 tod))))
10079 (if (version< emacs-version "23.3")
10080 (appt-add tod evt)
10081 (appt-add tod evt wrn))
10082 (setq cnt (1+ cnt))))) entries)
10083 (org-release-buffers org-agenda-new-buffers)
10084 (if (eq cnt 0)
10085 (message "No event to add")
10086 (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
10088 (defun org-agenda-todayp (date)
10089 "Does DATE mean today, when considering `org-extend-today-until'?"
10090 (let ((today (org-today))
10091 (date (if (and date (listp date)) (calendar-absolute-from-gregorian date)
10092 date)))
10093 (eq date today)))
10095 (defun org-agenda-todo-yesterday (&optional arg)
10096 "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
10097 (interactive "P")
10098 (let* ((hour (third (decode-time
10099 (org-current-time))))
10100 (org-extend-today-until (1+ hour)))
10101 (org-agenda-todo arg)))
10103 (provide 'org-agenda)
10105 ;;; org-agenda.el ends here