contrib/lisp/ox-rss.el: Enhance RFC822 formatting string
[org-mode.git] / lisp / org-agenda.el
blobbd19cc5046d9f3d81a2f9485c22abc0a202eb762
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-datetree-find-date-create "org-datetree"
73 (date &optional keep-restriction))
74 (declare-function org-columns-quit "org-colview" ())
75 (declare-function diary-date-display-form "diary-lib" (&optional type))
76 (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
77 (declare-function org-habit-insert-consistency-graphs
78 "org-habit" (&optional line))
79 (declare-function org-is-habit-p "org-habit" (&optional pom))
80 (declare-function org-habit-parse-todo "org-habit" (&optional pom))
81 (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
82 (declare-function org-pop-to-buffer-same-window "org-compat"
83 (&optional buffer-or-name norecord label))
84 (declare-function org-agenda-columns "org-colview" ())
85 (declare-function org-add-archive-files "org-archive" (files))
86 (declare-function org-capture "org-capture" (&optional goto keys))
88 (defvar calendar-mode-map) ; defined in calendar.el
89 (defvar org-clock-current-task nil) ; defined in org-clock.el
90 (defvar org-mobile-force-id-on-agenda-items) ; defined in org-mobile.el
91 (defvar org-habit-show-habits) ; defined in org-habit.el
92 (defvar org-habit-show-habits-only-for-today)
93 (defvar org-habit-show-all-today)
95 ;; Defined somewhere in this file, but used before definition.
96 (defvar org-agenda-buffer-name "*Org Agenda*")
97 (defvar org-agenda-overriding-header nil)
98 (defvar org-agenda-title-append nil)
99 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
100 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
101 (defvar original-date) ; dynamically scoped, calendar.el does scope this
103 (defvar org-agenda-undo-list nil
104 "List of undoable operations in the agenda since last refresh.")
105 (defvar org-agenda-pending-undo-list nil
106 "In a series of undo commands, this is the list of remaining undo items.")
108 (defcustom org-agenda-confirm-kill 1
109 "When set, remote killing from the agenda buffer needs confirmation.
110 When t, a confirmation is always needed. When a number N, confirmation is
111 only needed when the text to be killed contains more than N non-white lines."
112 :group 'org-agenda
113 :type '(choice
114 (const :tag "Never" nil)
115 (const :tag "Always" t)
116 (integer :tag "When more than N lines")))
118 (defcustom org-agenda-compact-blocks nil
119 "Non-nil means make the block agenda more compact.
120 This is done globally by leaving out lines like the agenda span
121 name and week number or the separator lines."
122 :group 'org-agenda
123 :type 'boolean)
125 (defcustom org-agenda-block-separator ?=
126 "The separator between blocks in the agenda.
127 If this is a string, it will be used as the separator, with a newline added.
128 If it is a character, it will be repeated to fill the window width.
129 If nil the separator is disabled. In `org-agenda-custom-commands' this
130 addresses the separator between the current and the previous block."
131 :group 'org-agenda
132 :type '(choice
133 (const :tag "Disabled" nil)
134 (character)
135 (string)))
137 (defgroup org-agenda-export nil
138 "Options concerning exporting agenda views in Org-mode."
139 :tag "Org Agenda Export"
140 :group 'org-agenda)
142 (defcustom org-agenda-with-colors t
143 "Non-nil means use colors in agenda views."
144 :group 'org-agenda-export
145 :type 'boolean)
147 (defcustom org-agenda-exporter-settings nil
148 "Alist of variable/value pairs that should be active during agenda export.
149 This is a good place to set options for ps-print and for htmlize.
150 Note that the way this is implemented, the values will be evaluated
151 before assigned to the variables. So make sure to quote values you do
152 *not* want evaluated, for example
154 (setq org-agenda-exporter-settings
155 '((ps-print-color-p 'black-white)))"
156 :group 'org-agenda-export
157 :type '(repeat
158 (list
159 (variable)
160 (sexp :tag "Value"))))
162 (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
163 "Hook run in a temporary buffer before writing the agenda to an export file.
164 A useful function for this hook is `org-agenda-add-entry-text'."
165 :group 'org-agenda-export
166 :type 'hook
167 :options '(org-agenda-add-entry-text))
169 (defcustom org-agenda-add-entry-text-maxlines 0
170 "Maximum number of entry text lines to be added to agenda.
171 This is only relevant when `org-agenda-add-entry-text' is part of
172 `org-agenda-before-write-hook', which is the default.
173 When this is 0, nothing will happen. When it is greater than 0, it
174 specifies the maximum number of lines that will be added for each entry
175 that is listed in the agenda view.
177 Note that this variable is not used during display, only when exporting
178 the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
179 and `org-agenda-entry-text-maxlines'."
180 :group 'org-agenda
181 :type 'integer)
183 (defcustom org-agenda-add-entry-text-descriptive-links t
184 "Non-nil means export org-links as descriptive links in agenda added text.
185 This variable applies to the text added to the agenda when
186 `org-agenda-add-entry-text-maxlines' is larger than 0.
187 When this variable nil, the URL will (also) be shown."
188 :group 'org-agenda
189 :type 'boolean)
191 (defcustom org-agenda-export-html-style nil
192 "The style specification for exported HTML Agenda files.
193 If this variable contains a string, it will replace the default <style>
194 section as produced by `htmlize'.
195 Since there are different ways of setting style information, this variable
196 needs to contain the full HTML structure to provide a style, including the
197 surrounding HTML tags. The style specifications should include definitions
198 the fonts used by the agenda, here is an example:
200 <style type=\"text/css\">
201 p { font-weight: normal; color: gray; }
202 .org-agenda-structure {
203 font-size: 110%;
204 color: #003399;
205 font-weight: 600;
207 .org-todo {
208 color: #cc6666;
209 font-weight: bold;
211 .org-agenda-done {
212 color: #339933;
214 .org-done {
215 color: #339933;
217 .title { text-align: center; }
218 .todo, .deadline { color: red; }
219 .done { color: green; }
220 </style>
222 or, if you want to keep the style in a file,
224 <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
226 As the value of this option simply gets inserted into the HTML <head> header,
227 you can \"misuse\" it to also add other text to the header."
228 :group 'org-agenda-export
229 :group 'org-export-html
230 :type '(choice
231 (const nil)
232 (string)))
234 (defcustom org-agenda-persistent-filter nil
235 "When set, keep filters from one agenda view to the next."
236 :group 'org-agenda
237 :type 'boolean)
239 (defgroup org-agenda-custom-commands nil
240 "Options concerning agenda views in Org-mode."
241 :tag "Org Agenda Custom Commands"
242 :group 'org-agenda)
244 (defconst org-sorting-choice
245 '(choice
246 (const time-up) (const time-down)
247 (const timestamp-up) (const timestamp-down)
248 (const scheduled-up) (const scheduled-down)
249 (const deadline-up) (const deadline-down)
250 (const ts-up) (const ts-down)
251 (const tsia-up) (const tsia-down)
252 (const category-keep) (const category-up) (const category-down)
253 (const tag-down) (const tag-up)
254 (const priority-up) (const priority-down)
255 (const todo-state-up) (const todo-state-down)
256 (const effort-up) (const effort-down)
257 (const habit-up) (const habit-down)
258 (const alpha-up) (const alpha-down)
259 (const user-defined-up) (const user-defined-down))
260 "Sorting choices.")
262 ;; Keep custom values for `org-agenda-filter-preset' compatible with
263 ;; the new variable `org-agenda-tag-filter-preset'.
264 (org-defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
265 (org-defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
267 (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
268 "List of types searched for when creating the daily/weekly agenda.
269 This variable is a list of symbols that controls the types of
270 items that appear in the daily/weekly agenda. Allowed symbols in this
271 list are are
273 :timestamp List items containing a date stamp or date range matching
274 the selected date. This includes sexp entries in angular
275 brackets.
277 :sexp List entries resulting from plain diary-like sexps.
279 :deadline List deadline due on that date. When the date is today,
280 also list any deadlines past due, or due within
281 `org-deadline-warning-days'. `:deadline' must appear before
282 `:scheduled' if the setting of
283 `org-agenda-skip-scheduled-if-deadline-is-shown' is to have
284 any effect.
286 :deadline* Same as above, but only include the deadline if it has an
287 hour specification as [h]h:mm.
289 :scheduled List all items which are scheduled for the given date.
290 The diary for *today* also contains items which were
291 scheduled earlier and are not yet marked DONE.
293 :scheduled* Same as above, but only include the scheduled item if it
294 has an hour specification as [h]h:mm.
296 By default, all four non-starred types are turned on.
298 When :scheduled* or :deadline* are included, :schedule or :deadline
299 will be ignored.
301 Never set this variable globally using `setq', because then it
302 will apply to all future agenda commands. Instead, bind it with
303 `let' to scope it dynamically into the agenda-constructing
304 command. A good way to set it is through options in
305 `org-agenda-custom-commands'. For a more flexible (though
306 somewhat less efficient) way of determining what is included in
307 the daily/weekly agenda, see `org-agenda-skip-function'.")
309 (defconst org-agenda-custom-commands-local-options
310 `(repeat :tag "Local settings for this command. Remember to quote values"
311 (choice :tag "Setting"
312 (list :tag "Heading for this block"
313 (const org-agenda-overriding-header)
314 (string :tag "Headline"))
315 (list :tag "Files to be searched"
316 (const org-agenda-files)
317 (list
318 (const :format "" quote)
319 (repeat (file))))
320 (list :tag "Sorting strategy"
321 (const org-agenda-sorting-strategy)
322 (list
323 (const :format "" quote)
324 (repeat
325 ,org-sorting-choice)))
326 (list :tag "Prefix format"
327 (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
328 (string))
329 (list :tag "Number of days in agenda"
330 (const org-agenda-span)
331 (choice (const :tag "Day" 'day)
332 (const :tag "Week" 'week)
333 (const :tag "Fortnight" 'fortnight)
334 (const :tag "Month" 'month)
335 (const :tag "Year" 'year)
336 (integer :tag "Custom")))
337 (list :tag "Fixed starting date"
338 (const org-agenda-start-day)
339 (string :value "2007-11-01"))
340 (list :tag "Start on day of week"
341 (const org-agenda-start-on-weekday)
342 (choice :value 1
343 (const :tag "Today" nil)
344 (integer :tag "Weekday No.")))
345 (list :tag "Include data from diary"
346 (const org-agenda-include-diary)
347 (boolean))
348 (list :tag "Deadline Warning days"
349 (const org-deadline-warning-days)
350 (integer :value 1))
351 (list :tag "Category filter preset"
352 (const org-agenda-category-filter-preset)
353 (list
354 (const :format "" quote)
355 (repeat
356 (string :tag "+category or -category"))))
357 (list :tag "Tags filter preset"
358 (const org-agenda-tag-filter-preset)
359 (list
360 (const :format "" quote)
361 (repeat
362 (string :tag "+tag or -tag"))))
363 (list :tag "Regexp filter preset"
364 (const org-agenda-regexp-filter-preset)
365 (list
366 (const :format "" quote)
367 (repeat
368 (string :tag "+regexp or -regexp"))))
369 (list :tag "Set daily/weekly entry types"
370 (const org-agenda-entry-types)
371 (list
372 (const :format "" quote)
373 (set :greedy t :value ,org-agenda-entry-types
374 (const :deadline)
375 (const :scheduled)
376 (const :deadline*)
377 (const :scheduled*)
378 (const :timestamp)
379 (const :sexp))))
380 (list :tag "Standard skipping condition"
381 :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
382 (const org-agenda-skip-function)
383 (list
384 (const :format "" quote)
385 (list
386 (choice
387 :tag "Skipping range"
388 (const :tag "Skip entry" org-agenda-skip-entry-if)
389 (const :tag "Skip subtree" org-agenda-skip-subtree-if))
390 (repeat :inline t :tag "Conditions for skipping"
391 (choice
392 :tag "Condition type"
393 (list :tag "Regexp matches" :inline t (const :format "" 'regexp) (regexp))
394 (list :tag "Regexp does not match" :inline t (const :format "" 'notregexp) (regexp))
395 (list :tag "TODO state is" :inline t
396 (const 'todo)
397 (choice
398 (const :tag "any not-done state" 'todo)
399 (const :tag "any done state" 'done)
400 (const :tag "any state" 'any)
401 (list :tag "Keyword list"
402 (const :format "" quote)
403 (repeat (string :tag "Keyword")))))
404 (list :tag "TODO state is not" :inline t
405 (const 'nottodo)
406 (choice
407 (const :tag "any not-done state" 'todo)
408 (const :tag "any done state" 'done)
409 (const :tag "any state" 'any)
410 (list :tag "Keyword list"
411 (const :format "" quote)
412 (repeat (string :tag "Keyword")))))
413 (const :tag "scheduled" 'scheduled)
414 (const :tag "not scheduled" 'notscheduled)
415 (const :tag "deadline" 'deadline)
416 (const :tag "no deadline" 'notdeadline)
417 (const :tag "timestamp" 'timestamp)
418 (const :tag "no timestamp" 'nottimestamp))))))
419 (list :tag "Non-standard skipping condition"
420 :value (org-agenda-skip-function)
421 (const org-agenda-skip-function)
422 (sexp :tag "Function or form (quoted!)"))
423 (list :tag "Any variable"
424 (variable :tag "Variable")
425 (sexp :tag "Value (sexp)"))))
426 "Selection of examples for agenda command settings.
427 This will be spliced into the custom type of
428 `org-agenda-custom-commands'.")
431 (defcustom org-agenda-custom-commands
432 '(("n" "Agenda and all TODO's" ((agenda "") (alltodo ""))))
433 "Custom commands for the agenda.
434 These commands will be offered on the splash screen displayed by the
435 agenda dispatcher \\[org-agenda]. Each entry is a list like this:
437 (key desc type match settings files)
439 key The key (one or more characters as a string) to be associated
440 with the command.
441 desc A description of the command, when omitted or nil, a default
442 description is built using MATCH.
443 type The command type, any of the following symbols:
444 agenda The daily/weekly agenda.
445 todo Entries with a specific TODO keyword, in all agenda files.
446 search Entries containing search words entry or headline.
447 tags Tags/Property/TODO match in all agenda files.
448 tags-todo Tags/P/T match in all agenda files, TODO entries only.
449 todo-tree Sparse tree of specific TODO keyword in *current* file.
450 tags-tree Sparse tree with all tags matches in *current* file.
451 occur-tree Occur sparse tree for *current* file.
452 ... A user-defined function.
453 match What to search for:
454 - a single keyword for TODO keyword searches
455 - a tags match expression for tags searches
456 - a word search expression for text searches.
457 - a regular expression for occur searches
458 For all other commands, this should be the empty string.
459 settings A list of option settings, similar to that in a let form, so like
460 this: ((opt1 val1) (opt2 val2) ...). The values will be
461 evaluated at the moment of execution, so quote them when needed.
462 files A list of files file to write the produced agenda buffer to
463 with the command `org-store-agenda-views'.
464 If a file name ends in \".html\", an HTML version of the buffer
465 is written out. If it ends in \".ps\", a postscript version is
466 produced. Otherwise, only the plain text is written to the file.
468 You can also define a set of commands, to create a composite agenda buffer.
469 In this case, an entry looks like this:
471 (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
473 where
475 desc A description string to be displayed in the dispatcher menu.
476 cmd An agenda command, similar to the above. However, tree commands
477 are not allowed, but instead you can get agenda and global todo list.
478 So valid commands for a set are:
479 (agenda \"\" settings)
480 (alltodo \"\" settings)
481 (stuck \"\" settings)
482 (todo \"match\" settings files)
483 (search \"match\" settings files)
484 (tags \"match\" settings files)
485 (tags-todo \"match\" settings files)
487 Each command can carry a list of options, and another set of options can be
488 given for the whole set of commands. Individual command options take
489 precedence over the general options.
491 When using several characters as key to a command, the first characters
492 are prefix commands. For the dispatcher to display useful information, you
493 should provide a description for the prefix, like
495 (setq org-agenda-custom-commands
496 '((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
497 (\"hl\" tags \"+HOME+Lisa\")
498 (\"hp\" tags \"+HOME+Peter\")
499 (\"hk\" tags \"+HOME+Kim\")))"
500 :group 'org-agenda-custom-commands
501 :type `(repeat
502 (choice :value ("x" "Describe command here" tags "" nil)
503 (list :tag "Single command"
504 (string :tag "Access Key(s) ")
505 (option (string :tag "Description"))
506 (choice
507 (const :tag "Agenda" agenda)
508 (const :tag "TODO list" alltodo)
509 (const :tag "Search words" search)
510 (const :tag "Stuck projects" stuck)
511 (const :tag "Tags/Property match (all agenda files)" tags)
512 (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
513 (const :tag "TODO keyword search (all agenda files)" todo)
514 (const :tag "Tags sparse tree (current buffer)" tags-tree)
515 (const :tag "TODO keyword tree (current buffer)" todo-tree)
516 (const :tag "Occur tree (current buffer)" occur-tree)
517 (sexp :tag "Other, user-defined function"))
518 (string :tag "Match (only for some commands)")
519 ,org-agenda-custom-commands-local-options
520 (option (repeat :tag "Export" (file :tag "Export to"))))
521 (list :tag "Command series, all agenda files"
522 (string :tag "Access Key(s)")
523 (string :tag "Description ")
524 (repeat :tag "Component"
525 (choice
526 (list :tag "Agenda"
527 (const :format "" agenda)
528 (const :tag "" :format "" "")
529 ,org-agenda-custom-commands-local-options)
530 (list :tag "TODO list (all keywords)"
531 (const :format "" alltodo)
532 (const :tag "" :format "" "")
533 ,org-agenda-custom-commands-local-options)
534 (list :tag "Search words"
535 (const :format "" search)
536 (string :tag "Match")
537 ,org-agenda-custom-commands-local-options)
538 (list :tag "Stuck projects"
539 (const :format "" stuck)
540 (const :tag "" :format "" "")
541 ,org-agenda-custom-commands-local-options)
542 (list :tag "Tags search"
543 (const :format "" tags)
544 (string :tag "Match")
545 ,org-agenda-custom-commands-local-options)
546 (list :tag "Tags search, TODO entries only"
547 (const :format "" tags-todo)
548 (string :tag "Match")
549 ,org-agenda-custom-commands-local-options)
550 (list :tag "TODO keyword search"
551 (const :format "" todo)
552 (string :tag "Match")
553 ,org-agenda-custom-commands-local-options)
554 (list :tag "Other, user-defined function"
555 (symbol :tag "function")
556 (string :tag "Match")
557 ,org-agenda-custom-commands-local-options)))
559 (repeat :tag "Settings for entire command set"
560 (list (variable :tag "Any variable")
561 (sexp :tag "Value")))
562 (option (repeat :tag "Export" (file :tag "Export to"))))
563 (cons :tag "Prefix key documentation"
564 (string :tag "Access Key(s)")
565 (string :tag "Description ")))))
567 (defcustom org-agenda-query-register ?o
568 "The register holding the current query string.
569 The purpose of this is that if you construct a query string interactively,
570 you can then use it to define a custom command."
571 :group 'org-agenda-custom-commands
572 :type 'character)
574 (defcustom org-stuck-projects
575 '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
576 "How to identify stuck projects.
577 This is a list of four items:
578 1. A tags/todo/property matcher string that is used to identify a project.
579 See the manual for a description of tag and property searches.
580 The entire tree below a headline matched by this is considered one project.
581 2. A list of TODO keywords identifying non-stuck projects.
582 If the project subtree contains any headline with one of these todo
583 keywords, the project is considered to be not stuck. If you specify
584 \"*\" as a keyword, any TODO keyword will mark the project unstuck.
585 3. A list of tags identifying non-stuck projects.
586 If the project subtree contains any headline with one of these tags,
587 the project is considered to be not stuck. If you specify \"*\" as
588 a tag, any tag will mark the project unstuck. Note that this is about
589 the explicit presence of a tag somewhere in the subtree, inherited
590 tags do not count here. If inherited tags make a project not stuck,
591 use \"-TAG\" in the tags part of the matcher under (1.) above.
592 4. An arbitrary regular expression matching non-stuck projects.
594 If the project turns out to be not stuck, search continues also in the
595 subtree to see if any of the subtasks have project status.
597 See also the variable `org-tags-match-list-sublevels' which applies
598 to projects matched by this search as well.
600 After defining this variable, you may use \\[org-agenda-list-stuck-projects]
601 or `C-c a #' to produce the list."
602 :group 'org-agenda-custom-commands
603 :type '(list
604 (string :tag "Tags/TODO match to identify a project")
605 (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
606 (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
607 (regexp :tag "Projects are *not* stuck if this regexp matches inside the subtree")))
609 (defcustom org-agenda-filter-effort-default-operator "<"
610 "The default operator for effort estimate filtering.
611 If you select an effort estimate limit without first pressing an operator,
612 this one will be used."
613 :group 'org-agenda-custom-commands
614 :type '(choice (const :tag "less or equal" "<")
615 (const :tag "greater or equal"">")
616 (const :tag "equal" "=")))
618 (defgroup org-agenda-skip nil
619 "Options concerning skipping parts of agenda files."
620 :tag "Org Agenda Skip"
621 :group 'org-agenda)
623 (defcustom org-agenda-skip-function-global nil
624 "Function to be called at each match during agenda construction.
625 If this function returns nil, the current match should not be skipped.
626 If the function decided to skip an agenda match, is must return the
627 buffer position from which the search should be continued.
628 This may also be a Lisp form, which will be evaluated.
630 This variable will be applied to every agenda match, including
631 tags/property searches and TODO lists. So try to make the test function
632 do its checking as efficiently as possible. To implement a skipping
633 condition just for specific agenda commands, use the variable
634 `org-agenda-skip-function' which can be set in the options section
635 of custom agenda commands."
636 :group 'org-agenda-skip
637 :type 'sexp)
639 (defgroup org-agenda-daily/weekly nil
640 "Options concerning the daily/weekly agenda."
641 :tag "Org Agenda Daily/Weekly"
642 :group 'org-agenda)
643 (defgroup org-agenda-todo-list nil
644 "Options concerning the global todo list agenda view."
645 :tag "Org Agenda Todo List"
646 :group 'org-agenda)
647 (defgroup org-agenda-match-view nil
648 "Options concerning the general tags/property/todo match agenda view."
649 :tag "Org Agenda Match View"
650 :group 'org-agenda)
651 (defgroup org-agenda-search-view nil
652 "Options concerning the general tags/property/todo match agenda view."
653 :tag "Org Agenda Match View"
654 :group 'org-agenda)
656 (defvar org-agenda-archives-mode nil
657 "Non-nil means the agenda will include archived items.
658 If this is the symbol `trees', trees in the selected agenda scope
659 that are marked with the ARCHIVE tag will be included anyway. When this is
660 t, also all archive files associated with the current selection of agenda
661 files will be included.")
663 (defcustom org-agenda-restriction-lock-highlight-subtree t
664 "Non-nil means highlight the whole subtree when restriction is active.
665 Otherwise only highlight the headline. Highlighting the whole subtree is
666 useful to ensure no edits happen beyond the restricted region."
667 :group 'org-agenda
668 :type 'boolean)
670 (defcustom org-agenda-skip-comment-trees t
671 "Non-nil means skip trees that start with the COMMENT keyword.
672 When nil, these trees are also scanned by agenda commands."
673 :group 'org-agenda-skip
674 :type 'boolean)
676 (defcustom org-agenda-todo-list-sublevels t
677 "Non-nil means check also the sublevels of a TODO entry for TODO entries.
678 When nil, the sublevels of a TODO entry are not checked, resulting in
679 potentially much shorter TODO lists."
680 :group 'org-agenda-skip
681 :group 'org-agenda-todo-list
682 :type 'boolean)
684 (defcustom org-agenda-todo-ignore-with-date nil
685 "Non-nil means don't show entries with a date in the global todo list.
686 You can use this if you prefer to mark mere appointments with a TODO keyword,
687 but don't want them to show up in the TODO list.
688 When this is set, it also covers deadlines and scheduled items, the settings
689 of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
690 will be ignored.
691 See also the variable `org-agenda-tags-todo-honor-ignore-options'."
692 :group 'org-agenda-skip
693 :group 'org-agenda-todo-list
694 :type 'boolean)
696 (defcustom org-agenda-todo-ignore-timestamp nil
697 "Non-nil means don't show entries with a timestamp.
698 This applies when creating the global todo list.
699 Valid values are:
701 past Don't show entries for today or in the past.
703 future Don't show entries with a timestamp in the future.
704 The idea behind this is that if it has a future
705 timestamp, you don't want to think about it until the
706 date.
708 all Don't show any entries with a timestamp in the global todo list.
709 The idea behind this is that by setting a timestamp, you
710 have already \"taken care\" of this item.
712 This variable can also have an integer as a value. If positive (N),
713 todos with a timestamp N or more days in the future will be ignored. If
714 negative (-N), todos with a timestamp N or more days in the past will be
715 ignored. If 0, todos with a timestamp either today or in the future will
716 be ignored. For example, a value of -1 will exclude todos with a
717 timestamp in the past (yesterday or earlier), while a value of 7 will
718 exclude todos with a timestamp a week or more in the future.
720 See also `org-agenda-todo-ignore-with-date'.
721 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
722 to make his option also apply to the tags-todo list."
723 :group 'org-agenda-skip
724 :group 'org-agenda-todo-list
725 :version "24.1"
726 :type '(choice
727 (const :tag "Ignore future timestamp todos" future)
728 (const :tag "Ignore past or present timestamp todos" past)
729 (const :tag "Ignore all timestamp todos" all)
730 (const :tag "Show timestamp todos" nil)
731 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
733 (defcustom org-agenda-todo-ignore-scheduled nil
734 "Non-nil means, ignore some scheduled TODO items when making TODO list.
735 This applies when creating the global todo list.
736 Valid values are:
738 past Don't show entries scheduled today or in the past.
740 future Don't show entries scheduled in the future.
741 The idea behind this is that by scheduling it, you don't want to
742 think about it until the scheduled date.
744 all Don't show any scheduled entries in the global todo list.
745 The idea behind this is that by scheduling it, you have already
746 \"taken care\" of this item.
748 t Same as `all', for backward compatibility.
750 This variable can also have an integer as a value. See
751 `org-agenda-todo-ignore-timestamp' for more details.
753 See also `org-agenda-todo-ignore-with-date'.
754 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
755 to make his option also apply to the tags-todo list."
756 :group 'org-agenda-skip
757 :group 'org-agenda-todo-list
758 :type '(choice
759 (const :tag "Ignore future-scheduled todos" future)
760 (const :tag "Ignore past- or present-scheduled todos" past)
761 (const :tag "Ignore all scheduled todos" all)
762 (const :tag "Ignore all scheduled todos (compatibility)" t)
763 (const :tag "Show scheduled todos" nil)
764 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
766 (defcustom org-agenda-todo-ignore-deadlines nil
767 "Non-nil means ignore some deadlined TODO items when making TODO list.
768 There are different motivations for using different values, please think
769 carefully when configuring this variable.
771 This applies when creating the global todo list.
772 Valid values are:
774 near Don't show near deadline entries. A deadline is near when it is
775 closer than `org-deadline-warning-days' days. The idea behind this
776 is that such items will appear in the agenda anyway.
778 far Don't show TODO entries where a deadline has been defined, but
779 the deadline is not near. This is useful if you don't want to
780 use the todo list to figure out what to do now.
782 past Don't show entries with a deadline timestamp for today or in the past.
784 future Don't show entries with a deadline timestamp in the future, not even
785 when they become `near' ones. Use it with caution.
787 all Ignore all TODO entries that do have a deadline.
789 t Same as `near', for backward compatibility.
791 This variable can also have an integer as a value. See
792 `org-agenda-todo-ignore-timestamp' for more details.
794 See also `org-agenda-todo-ignore-with-date'.
795 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
796 to make his option also apply to the tags-todo list."
797 :group 'org-agenda-skip
798 :group 'org-agenda-todo-list
799 :type '(choice
800 (const :tag "Ignore near deadlines" near)
801 (const :tag "Ignore near deadlines (compatibility)" t)
802 (const :tag "Ignore far deadlines" far)
803 (const :tag "Ignore all TODOs with a deadlines" all)
804 (const :tag "Show all TODOs, even if they have a deadline" nil)
805 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
807 (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
808 "Time unit to use when possibly ignoring an agenda item.
810 See the docstring of various `org-agenda-todo-ignore-*' options.
811 The default is to compare time stamps using days. An item is thus
812 considered to be in the future if it is at least one day after today.
813 Non-nil means to compare time stamps using seconds. An item is then
814 considered future if it has a time value later than current time."
815 :group 'org-agenda-skip
816 :group 'org-agenda-todo-list
817 :version "24.4"
818 :package-version '(Org . "8.0")
819 :type '(choice
820 (const :tag "Compare time with days" nil)
821 (const :tag "Compare time with seconds" t)))
823 (defcustom org-agenda-tags-todo-honor-ignore-options nil
824 "Non-nil means honor todo-list ignores options also in tags-todo search.
825 The variables
826 `org-agenda-todo-ignore-with-date',
827 `org-agenda-todo-ignore-timestamp',
828 `org-agenda-todo-ignore-scheduled',
829 `org-agenda-todo-ignore-deadlines'
830 make the global TODO list skip entries that have time stamps of certain
831 kinds. If this option is set, the same options will also apply for the
832 tags-todo search, which is the general tags/property matcher
833 restricted to unfinished TODO entries only."
834 :group 'org-agenda-skip
835 :group 'org-agenda-todo-list
836 :group 'org-agenda-match-view
837 :type 'boolean)
839 (defcustom org-agenda-skip-scheduled-if-done nil
840 "Non-nil means don't show scheduled items in agenda when they are done.
841 This is relevant for the daily/weekly agenda, not for the TODO list. And
842 it applies only to the actual date of the scheduling. Warnings about
843 an item with a past scheduling dates are always turned off when the item
844 is DONE."
845 :group 'org-agenda-skip
846 :group 'org-agenda-daily/weekly
847 :type 'boolean)
849 (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
850 "Non-nil means skip scheduling line if same entry shows because of deadline.
852 In the agenda of today, an entry can show up multiple times
853 because it is both scheduled and has a nearby deadline, and maybe
854 a plain time stamp as well.
856 When this variable is nil, the entry will be shown several times.
858 When set to t, then only the deadline is shown and the fact that
859 the entry is scheduled today or was scheduled previously is not
860 shown.
862 When set to the symbol `not-today', skip scheduled previously,
863 but not scheduled today.
865 When set to the symbol `repeated-after-deadline', skip scheduled
866 items if they are repeated beyond the current dealine."
867 :group 'org-agenda-skip
868 :group 'org-agenda-daily/weekly
869 :type '(choice
870 (const :tag "Never" nil)
871 (const :tag "Always" t)
872 (const :tag "Not when scheduled today" not-today)
873 (const :tag "When repeated past deadline" repeated-after-deadline)))
875 (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
876 "Non-nil means skip timestamp line if same entry shows because of deadline.
877 In the agenda of today, an entry can show up multiple times
878 because it has both a plain timestamp and has a nearby deadline.
879 When this variable is t, then only the deadline is shown and the
880 fact that the entry has a timestamp for or including today is not
881 shown. When this variable is nil, the entry will be shown
882 several times."
883 :group 'org-agenda-skip
884 :group 'org-agenda-daily/weekly
885 :version "24.1"
886 :type '(choice
887 (const :tag "Never" nil)
888 (const :tag "Always" t)))
890 (defcustom org-agenda-skip-deadline-if-done nil
891 "Non-nil means don't show deadlines when the corresponding item is done.
892 When nil, the deadline is still shown and should give you a happy feeling.
893 This is relevant for the daily/weekly agenda. And it applied only to the
894 actually date of the deadline. Warnings about approaching and past-due
895 deadlines are always turned off when the item is DONE."
896 :group 'org-agenda-skip
897 :group 'org-agenda-daily/weekly
898 :type 'boolean)
900 (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
901 "Non-nil means skip deadline prewarning when entry is also scheduled.
902 This will apply on all days where a prewarning for the deadline would
903 be shown, but not at the day when the entry is actually due. On that day,
904 the deadline will be shown anyway.
905 This variable may be set to nil, t, the symbol `pre-scheduled',
906 or a number which will then give the number of days before the actual
907 deadline when the prewarnings should resume. The symbol `pre-scheduled'
908 eliminates the deadline prewarning only prior to the scheduled date.
909 This can be used in a workflow where the first showing of the deadline will
910 trigger you to schedule it, and then you don't want to be reminded of it
911 because you will take care of it on the day when scheduled."
912 :group 'org-agenda-skip
913 :group 'org-agenda-daily/weekly
914 :version "24.1"
915 :type '(choice
916 (const :tag "Always show prewarning" nil)
917 (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
918 (const :tag "Remove prewarning if entry is scheduled" t)
919 (integer :tag "Restart prewarning N days before deadline")))
921 (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
922 "Non-nil means skip scheduled delay when entry also has a deadline.
923 This variable may be set to nil, t, the symbol `post-deadline',
924 or a number which will then give the number of days after the actual
925 scheduled date when the delay should expire. The symbol `post-deadline'
926 eliminates the schedule delay when the date is posterior to the deadline."
927 :group 'org-agenda-skip
928 :group 'org-agenda-daily/weekly
929 :version "24.4"
930 :package-version '(Org . "8.0")
931 :type '(choice
932 (const :tag "Always honor delay" nil)
933 (const :tag "Ignore delay if posterior to the deadline" post-deadline)
934 (const :tag "Ignore delay if entry has a deadline" t)
935 (integer :tag "Honor delay up until N days after the scheduled date")))
937 (defcustom org-agenda-skip-additional-timestamps-same-entry nil
938 "When nil, multiple same-day timestamps in entry make multiple agenda lines.
939 When non-nil, after the search for timestamps has matched once in an
940 entry, the rest of the entry will not be searched."
941 :group 'org-agenda-skip
942 :type 'boolean)
944 (defcustom org-agenda-skip-timestamp-if-done nil
945 "Non-nil means don't select item by timestamp or -range if it is DONE."
946 :group 'org-agenda-skip
947 :group 'org-agenda-daily/weekly
948 :type 'boolean)
950 (defcustom org-agenda-dim-blocked-tasks t
951 "Non-nil means dim blocked tasks in the agenda display.
952 This causes some overhead during agenda construction, but if you
953 have turned on `org-enforce-todo-dependencies',
954 `org-enforce-todo-checkbox-dependencies', or any other blocking
955 mechanism, this will create useful feedback in the agenda.
957 Instead of t, this variable can also have the value `invisible'.
958 Then blocked tasks will be invisible and only become visible when
959 they become unblocked. An exemption to this behavior is when a task is
960 blocked because of unchecked checkboxes below it. Since checkboxes do
961 not show up in the agenda views, making this task invisible you remove any
962 trace from agenda views that there is something to do. Therefore, a task
963 that is blocked because of checkboxes will never be made invisible, it
964 will only be dimmed."
965 :group 'org-agenda-daily/weekly
966 :group 'org-agenda-todo-list
967 :version "24.3"
968 :type '(choice
969 (const :tag "Do not dim" nil)
970 (const :tag "Dim to a gray face" t)
971 (const :tag "Make invisible" invisible)))
973 (defcustom org-timeline-show-empty-dates 3
974 "Non-nil means `org-timeline' also shows dates without an entry.
975 When nil, only the days which actually have entries are shown.
976 When t, all days between the first and the last date are shown.
977 When an integer, show also empty dates, but if there is a gap of more than
978 N days, just insert a special line indicating the size of the gap."
979 :group 'org-agenda-skip
980 :type '(choice
981 (const :tag "None" nil)
982 (const :tag "All" t)
983 (integer :tag "at most")))
985 (defgroup org-agenda-startup nil
986 "Options concerning initial settings in the Agenda in Org Mode."
987 :tag "Org Agenda Startup"
988 :group 'org-agenda)
990 (defcustom org-agenda-menu-show-matcher t
991 "Non-nil means show the match string in the agenda dispatcher menu.
992 When nil, the matcher string is not shown, but is put into the help-echo
993 property so than moving the mouse over the command shows it.
994 Setting it to nil is good if matcher strings are very long and/or if
995 you want to use two-columns display (see `org-agenda-menu-two-columns')."
996 :group 'org-agenda
997 :version "24.1"
998 :type 'boolean)
1000 (define-obsolete-variable-alias 'org-agenda-menu-two-column 'org-agenda-menu-two-columns "24.3")
1002 (defcustom org-agenda-menu-two-columns nil
1003 "Non-nil means, use two columns to show custom commands in the dispatcher.
1004 If you use this, you probably want to set `org-agenda-menu-show-matcher'
1005 to nil."
1006 :group 'org-agenda
1007 :version "24.1"
1008 :type 'boolean)
1010 (define-obsolete-variable-alias 'org-finalize-agenda-hook 'org-agenda-finalize-hook "24.3")
1011 (defcustom org-agenda-finalize-hook nil
1012 "Hook run just before displaying an agenda buffer.
1013 The buffer is still writable when the hook is called.
1015 You can modify some of the buffer substrings but you should be
1016 extra careful not to modify the text properties of the agenda
1017 headlines as the agenda display heavily relies on them."
1018 :group 'org-agenda-startup
1019 :type 'hook)
1021 (defcustom org-agenda-mouse-1-follows-link nil
1022 "Non-nil means mouse-1 on a link will follow the link in the agenda.
1023 A longer mouse click will still set point. Does not work on XEmacs.
1024 Needs to be set before org.el is loaded."
1025 :group 'org-agenda-startup
1026 :type 'boolean)
1028 (defcustom org-agenda-start-with-follow-mode nil
1029 "The initial value of follow mode in a newly created agenda window."
1030 :group 'org-agenda-startup
1031 :type 'boolean)
1033 (defcustom org-agenda-follow-indirect nil
1034 "Non-nil means `org-agenda-follow-mode' displays only the
1035 current item's tree, in an indirect buffer."
1036 :group 'org-agenda
1037 :version "24.1"
1038 :type 'boolean)
1040 (defcustom org-agenda-show-outline-path t
1041 "Non-nil means show outline path in echo area after line motion."
1042 :group 'org-agenda-startup
1043 :type 'boolean)
1045 (defcustom org-agenda-start-with-entry-text-mode nil
1046 "The initial value of entry-text-mode in a newly created agenda window."
1047 :group 'org-agenda-startup
1048 :type 'boolean)
1050 (defcustom org-agenda-entry-text-maxlines 5
1051 "Number of text lines to be added when `E' is pressed in the agenda.
1053 Note that this variable only used during agenda display. Add add entry text
1054 when exporting the agenda, configure the variable
1055 `org-agenda-add-entry-ext-maxlines'."
1056 :group 'org-agenda
1057 :type 'integer)
1059 (defcustom org-agenda-entry-text-exclude-regexps nil
1060 "List of regular expressions to clean up entry text.
1061 The complete matches of all regular expressions in this list will be
1062 removed from entry text before it is shown in the agenda."
1063 :group 'org-agenda
1064 :type '(repeat (regexp)))
1066 (defcustom org-agenda-entry-text-leaders " > "
1067 "Text prepended to the entry text in agenda buffers."
1068 :version "24.4"
1069 :package-version '(Org . "8.0")
1070 :group 'org-agenda
1071 :type 'string)
1073 (defvar org-agenda-entry-text-cleanup-hook nil
1074 "Hook that is run after basic cleanup of entry text to be shown in agenda.
1075 This cleanup is done in a temporary buffer, so the function may inspect and
1076 change the entire buffer.
1077 Some default stuff like drawers and scheduling/deadline dates will already
1078 have been removed when this is called, as will any matches for regular
1079 expressions listed in `org-agenda-entry-text-exclude-regexps'.")
1081 (defvar org-agenda-include-inactive-timestamps nil
1082 "Non-nil means include inactive time stamps in agenda and timeline.
1083 Dynamically scoped.")
1085 (defgroup org-agenda-windows nil
1086 "Options concerning the windows used by the Agenda in Org Mode."
1087 :tag "Org Agenda Windows"
1088 :group 'org-agenda)
1090 (defcustom org-agenda-window-setup 'reorganize-frame
1091 "How the agenda buffer should be displayed.
1092 Possible values for this option are:
1094 current-window Show agenda in the current window, keeping all other windows.
1095 other-window Use `switch-to-buffer-other-window' to display agenda.
1096 reorganize-frame Show only two windows on the current frame, the current
1097 window and the agenda.
1098 other-frame Use `switch-to-buffer-other-frame' to display agenda.
1099 Also, when exiting the agenda, kill that frame.
1100 See also the variable `org-agenda-restore-windows-after-quit'."
1101 :group 'org-agenda-windows
1102 :type '(choice
1103 (const current-window)
1104 (const other-frame)
1105 (const other-window)
1106 (const reorganize-frame)))
1108 (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
1109 "The min and max height of the agenda window as a fraction of frame height.
1110 The value of the variable is a cons cell with two numbers between 0 and 1.
1111 It only matters if `org-agenda-window-setup' is `reorganize-frame'."
1112 :group 'org-agenda-windows
1113 :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
1115 (defcustom org-agenda-restore-windows-after-quit nil
1116 "Non-nil means restore window configuration upon exiting agenda.
1117 Before the window configuration is changed for displaying the agenda,
1118 the current status is recorded. When the agenda is exited with
1119 `q' or `x' and this option is set, the old state is restored. If
1120 `org-agenda-window-setup' is `other-frame', the value of this
1121 option will be ignored."
1122 :group 'org-agenda-windows
1123 :type 'boolean)
1125 (defcustom org-agenda-ndays nil
1126 "Number of days to include in overview display.
1127 Should be 1 or 7.
1128 Obsolete, see `org-agenda-span'."
1129 :group 'org-agenda-daily/weekly
1130 :type '(choice (const nil)
1131 (integer)))
1133 (make-obsolete-variable 'org-agenda-ndays 'org-agenda-span "24.1")
1135 (defcustom org-agenda-span 'week
1136 "Number of days to include in overview display.
1137 Can be day, week, month, year, or any number of days.
1138 Custom commands can set this variable in the options section."
1139 :group 'org-agenda-daily/weekly
1140 :type '(choice (const :tag "Day" day)
1141 (const :tag "Week" week)
1142 (const :tag "Fortnight" fortnight)
1143 (const :tag "Month" month)
1144 (const :tag "Year" year)
1145 (integer :tag "Custom")))
1147 (defcustom org-agenda-start-on-weekday 1
1148 "Non-nil means start the overview always on the specified weekday.
1149 0 denotes Sunday, 1 denotes Monday, etc.
1150 When nil, always start on the current day.
1151 Custom commands can set this variable in the options section."
1152 :group 'org-agenda-daily/weekly
1153 :type '(choice (const :tag "Today" nil)
1154 (integer :tag "Weekday No.")))
1156 (defcustom org-agenda-show-all-dates t
1157 "Non-nil means `org-agenda' shows every day in the selected range.
1158 When nil, only the days which actually have entries are shown."
1159 :group 'org-agenda-daily/weekly
1160 :type 'boolean)
1162 (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
1163 "Format string for displaying dates in the agenda.
1164 Used by the daily/weekly agenda and by the timeline. This should be
1165 a format string understood by `format-time-string', or a function returning
1166 the formatted date as a string. The function must take a single argument,
1167 a calendar-style date list like (month day year)."
1168 :group 'org-agenda-daily/weekly
1169 :type '(choice
1170 (string :tag "Format string")
1171 (function :tag "Function")))
1173 (defun org-agenda-format-date-aligned (date)
1174 "Format a DATE string for display in the daily/weekly agenda, or timeline.
1175 This function makes sure that dates are aligned for easy reading."
1176 (require 'cal-iso)
1177 (let* ((dayname (calendar-day-name date))
1178 (day (cadr date))
1179 (day-of-week (calendar-day-of-week date))
1180 (month (car date))
1181 (monthname (calendar-month-name month))
1182 (year (nth 2 date))
1183 (iso-week (org-days-to-iso-week
1184 (calendar-absolute-from-gregorian date)))
1185 (weekyear (cond ((and (= month 1) (>= iso-week 52))
1186 (1- year))
1187 ((and (= month 12) (<= iso-week 1))
1188 (1+ year))
1189 (t year)))
1190 (weekstring (if (= day-of-week 1)
1191 (format " W%02d" iso-week)
1192 "")))
1193 (format "%-10s %2d %s %4d%s"
1194 dayname day monthname year weekstring)))
1196 (defcustom org-agenda-time-leading-zero nil
1197 "Non-nil means use leading zero for military times in agenda.
1198 For example, 9:30am would become 09:30 rather than 9:30."
1199 :group 'org-agenda-daily/weekly
1200 :version "24.1"
1201 :type 'boolean)
1203 (defcustom org-agenda-timegrid-use-ampm nil
1204 "When set, show AM/PM style timestamps on the timegrid."
1205 :group 'org-agenda
1206 :version "24.1"
1207 :type 'boolean)
1209 (defun org-agenda-time-of-day-to-ampm (time)
1210 "Convert TIME of a string like '13:45' to an AM/PM style time string."
1211 (let* ((hour-number (string-to-number (substring time 0 -3)))
1212 (minute (substring time -2))
1213 (ampm "am"))
1214 (cond
1215 ((equal hour-number 12)
1216 (setq ampm "pm"))
1217 ((> hour-number 12)
1218 (setq ampm "pm")
1219 (setq hour-number (- hour-number 12))))
1220 (concat
1221 (if org-agenda-time-leading-zero
1222 (format "%02d" hour-number)
1223 (format "%02s" (number-to-string hour-number)))
1224 ":" minute ampm)))
1226 (defun org-agenda-time-of-day-to-ampm-maybe (time)
1227 "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
1228 (if org-agenda-timegrid-use-ampm
1229 (org-agenda-time-of-day-to-ampm time)
1230 time))
1232 (defcustom org-agenda-weekend-days '(6 0)
1233 "Which days are weekend?
1234 These days get the special face `org-agenda-date-weekend' in the agenda
1235 and timeline buffers."
1236 :group 'org-agenda-daily/weekly
1237 :type '(set :greedy t
1238 (const :tag "Monday" 1)
1239 (const :tag "Tuesday" 2)
1240 (const :tag "Wednesday" 3)
1241 (const :tag "Thursday" 4)
1242 (const :tag "Friday" 5)
1243 (const :tag "Saturday" 6)
1244 (const :tag "Sunday" 0)))
1246 (defcustom org-agenda-move-date-from-past-immediately-to-today t
1247 "Non-nil means jump to today when moving a past date forward in time.
1248 When using S-right in the agenda to move a a date forward, and the date
1249 stamp currently points to the past, the first key press will move it
1250 to today. WHen nil, just move one day forward even if the date stays
1251 in the past."
1252 :group 'org-agenda-daily/weekly
1253 :version "24.1"
1254 :type 'boolean)
1256 (defcustom org-agenda-include-diary nil
1257 "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
1258 Custom commands can set this variable in the options section."
1259 :group 'org-agenda-daily/weekly
1260 :type 'boolean)
1262 (defcustom org-agenda-include-deadlines t
1263 "If non-nil, include entries within their deadline warning period.
1264 Custom commands can set this variable in the options section."
1265 :group 'org-agenda-daily/weekly
1266 :version "24.1"
1267 :type 'boolean)
1269 (defcustom org-agenda-repeating-timestamp-show-all t
1270 "Non-nil means show all occurrences of a repeating stamp in the agenda.
1271 When set to a list of strings, only show occurrences of repeating
1272 stamps for these TODO keywords. When nil, only one occurrence is
1273 shown, either today or the nearest into the future."
1274 :group 'org-agenda-daily/weekly
1275 :type '(choice
1276 (const :tag "Show repeating stamps" t)
1277 (repeat :tag "Show repeating stamps for these TODO keywords"
1278 (string :tag "TODO Keyword"))
1279 (const :tag "Don't show repeating stamps" nil)))
1281 (defcustom org-scheduled-past-days 10000
1282 "Number of days to continue listing scheduled items not marked DONE.
1283 When an item is scheduled on a date, it shows up in the agenda on this
1284 day and will be listed until it is marked done for the number of days
1285 given here."
1286 :group 'org-agenda-daily/weekly
1287 :type 'integer)
1289 (defcustom org-agenda-log-mode-items '(closed clock)
1290 "List of items that should be shown in agenda log mode.
1291 This list may contain the following symbols:
1293 closed Show entries that have been closed on that day.
1294 clock Show entries that have received clocked time on that day.
1295 state Show all logged state changes.
1296 Note that instead of changing this variable, you can also press `C-u l' in
1297 the agenda to display all available LOG items temporarily."
1298 :group 'org-agenda-daily/weekly
1299 :type '(set :greedy t (const closed) (const clock) (const state)))
1301 (defcustom org-agenda-clock-consistency-checks
1302 '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
1303 :gap-ok-around ("4:00")
1304 :default-face ((:background "DarkRed") (:foreground "white"))
1305 :overlap-face nil :gap-face nil :no-end-time-face nil
1306 :long-face nil :short-face nil)
1307 "This is a property list, with the following keys:
1309 :max-duration Mark clocking chunks that are longer than this time.
1310 This is a time string like \"HH:MM\", or the number
1311 of minutes as an integer.
1313 :min-duration Mark clocking chunks that are shorter that this.
1314 This is a time string like \"HH:MM\", or the number
1315 of minutes as an integer.
1317 :max-gap Mark gaps between clocking chunks that are longer than
1318 this duration. A number of minutes, or a string
1319 like \"HH:MM\".
1321 :gap-ok-around List of times during the day which are usually not working
1322 times. When a gap is detected, but the gap contains any
1323 of these times, the gap is *not* reported. For example,
1324 if this is (\"4:00\" \"13:00\") then gaps that contain
1325 4:00 in the morning (i.e. the night) and 13:00
1326 (i.e. a typical lunch time) do not cause a warning.
1327 You should have at least one time during the night in this
1328 list, or otherwise the first task each morning will trigger
1329 a warning because it follows a long gap.
1331 Furthermore, the following properties can be used to define faces for
1332 issue display.
1334 :default-face the default face, if the specific face is undefined
1335 :overlap-face face for overlapping clocks
1336 :gap-face face for gaps between clocks
1337 :no-end-time-face face for incomplete clocks
1338 :long-face face for clock intervals that are too long
1339 :short-face face for clock intervals that are too short"
1340 :group 'org-agenda-daily/weekly
1341 :group 'org-clock
1342 :version "24.1"
1343 :type 'plist)
1345 (defcustom org-agenda-log-mode-add-notes t
1346 "Non-nil means add first line of notes to log entries in agenda views.
1347 If a log item like a state change or a clock entry is associated with
1348 notes, the first line of these notes will be added to the entry in the
1349 agenda display."
1350 :group 'org-agenda-daily/weekly
1351 :type 'boolean)
1353 (defcustom org-agenda-start-with-log-mode nil
1354 "The initial value of log-mode in a newly created agenda window.
1355 See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
1356 explanations on the possible values."
1357 :group 'org-agenda-startup
1358 :group 'org-agenda-daily/weekly
1359 :type '(choice (const :tag "Don't show log items" nil)
1360 (const :tag "Show only log items" 'only)
1361 (const :tag "Show all possible log items" 'clockcheck)
1362 (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
1363 (choice (const :tag "Show closed log items" 'closed)
1364 (const :tag "Show clocked log items" 'clock)
1365 (const :tag "Show all logged state changes" 'state)))))
1367 (defcustom org-agenda-start-with-clockreport-mode nil
1368 "The initial value of clockreport-mode in a newly created agenda window."
1369 :group 'org-agenda-startup
1370 :group 'org-agenda-daily/weekly
1371 :type 'boolean)
1373 (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
1374 "Property list with parameters for the clocktable in clockreport mode.
1375 This is the display mode that shows a clock table in the daily/weekly
1376 agenda, the properties for this dynamic block can be set here.
1377 The usual clocktable parameters are allowed here, but you cannot set
1378 the properties :name, :tstart, :tend, :block, and :scope - these will
1379 be overwritten to make sure the content accurately reflects the
1380 current display in the agenda."
1381 :group 'org-agenda-daily/weekly
1382 :type 'plist)
1384 (defcustom org-agenda-search-view-always-boolean nil
1385 "Non-nil means the search string is interpreted as individual parts.
1387 The search string for search view can either be interpreted as a phrase,
1388 or as a list of snippets that define a boolean search for a number of
1389 strings.
1391 When this is non-nil, the string will be split on whitespace, and each
1392 snippet will be searched individually, and all must match in order to
1393 select an entry. A snippet is then a single string of non-white
1394 characters, or a string in double quotes, or a regexp in {} braces.
1395 If a snippet is preceded by \"-\", the snippet must *not* match.
1396 \"+\" is syntactic sugar for positive selection. Each snippet may
1397 be found as a full word or a partial word, but see the variable
1398 `org-agenda-search-view-force-full-words'.
1400 When this is nil, search will look for the entire search phrase as one,
1401 with each space character matching any amount of whitespace, including
1402 line breaks.
1404 Even when this is nil, you can still switch to Boolean search dynamically
1405 by preceding the first snippet with \"+\" or \"-\". If the first snippet
1406 is a regexp marked with braces like \"{abc}\", this will also switch to
1407 boolean search."
1408 :group 'org-agenda-search-view
1409 :version "24.1"
1410 :type 'boolean)
1412 (org-defvaralias 'org-agenda-search-view-search-words-only
1413 'org-agenda-search-view-always-boolean)
1415 (defcustom org-agenda-search-view-force-full-words nil
1416 "Non-nil means, search words must be matches as complete words.
1417 When nil, they may also match part of a word."
1418 :group 'org-agenda-search-view
1419 :version "24.1"
1420 :type 'boolean)
1422 (defcustom org-agenda-search-view-max-outline-level nil
1423 "Maximum outline level to display in search view.
1424 E.g. when this is set to 1, the search view will only
1425 show headlines of level 1."
1426 :group 'org-agenda-search-view
1427 :version "24.4"
1428 :package-version '(Org . "8.0")
1429 :type 'integer)
1431 (defgroup org-agenda-time-grid nil
1432 "Options concerning the time grid in the Org-mode Agenda."
1433 :tag "Org Agenda Time Grid"
1434 :group 'org-agenda)
1436 (defcustom org-agenda-search-headline-for-time t
1437 "Non-nil means search headline for a time-of-day.
1438 If the headline contains a time-of-day in one format or another, it will
1439 be used to sort the entry into the time sequence of items for a day.
1440 Some people have time stamps in the headline that refer to the creation
1441 time or so, and then this produces an unwanted side effect. If this is
1442 the case for your, use this variable to turn off searching the headline
1443 for a time."
1444 :group 'org-agenda-time-grid
1445 :type 'boolean)
1447 (defcustom org-agenda-use-time-grid t
1448 "Non-nil means show a time grid in the agenda schedule.
1449 A time grid is a set of lines for specific times (like every two hours between
1450 8:00 and 20:00). The items scheduled for a day at specific times are
1451 sorted in between these lines.
1452 For details about when the grid will be shown, and what it will look like, see
1453 the variable `org-agenda-time-grid'."
1454 :group 'org-agenda-time-grid
1455 :type 'boolean)
1457 (defcustom org-agenda-time-grid
1458 '((daily today require-timed)
1459 "----------------"
1460 (800 1000 1200 1400 1600 1800 2000))
1462 "The settings for time grid for agenda display.
1463 This is a list of three items. The first item is again a list. It contains
1464 symbols specifying conditions when the grid should be displayed:
1466 daily if the agenda shows a single day
1467 weekly if the agenda shows an entire week
1468 today show grid on current date, independent of daily/weekly display
1469 require-timed show grid only if at least one item has a time specification
1471 The second item is a string which will be placed behind the grid time.
1473 The third item is a list of integers, indicating the times that should have
1474 a grid line."
1475 :group 'org-agenda-time-grid
1476 :type
1477 '(list
1478 (set :greedy t :tag "Grid Display Options"
1479 (const :tag "Show grid in single day agenda display" daily)
1480 (const :tag "Show grid in weekly agenda display" weekly)
1481 (const :tag "Always show grid for today" today)
1482 (const :tag "Show grid only if any timed entries are present"
1483 require-timed)
1484 (const :tag "Skip grid times already present in an entry"
1485 remove-match))
1486 (string :tag "Grid String")
1487 (repeat :tag "Grid Times" (integer :tag "Time"))))
1489 (defcustom org-agenda-show-current-time-in-grid t
1490 "Non-nil means show the current time in the time grid."
1491 :group 'org-agenda-time-grid
1492 :version "24.1"
1493 :type 'boolean)
1495 (defcustom org-agenda-current-time-string
1496 "now - - - - - - - - - - - - - - - - - - - - - - - - -"
1497 "The string for the current time marker in the agenda."
1498 :group 'org-agenda-time-grid
1499 :version "24.1"
1500 :type 'string)
1502 (defgroup org-agenda-sorting nil
1503 "Options concerning sorting in the Org-mode Agenda."
1504 :tag "Org Agenda Sorting"
1505 :group 'org-agenda)
1507 (defcustom org-agenda-sorting-strategy
1508 '((agenda habit-down time-up priority-down category-keep)
1509 (todo priority-down category-keep)
1510 (tags priority-down category-keep)
1511 (search category-keep))
1512 "Sorting structure for the agenda items of a single day.
1513 This is a list of symbols which will be used in sequence to determine
1514 if an entry should be listed before another entry. The following
1515 symbols are recognized:
1517 time-up Put entries with time-of-day indications first, early first
1518 time-down Put entries with time-of-day indications first, late first
1519 timestamp-up Sort by any timestamp, early first
1520 timestamp-down Sort by any timestamp, late first
1521 scheduled-up Sort by scheduled timestamp, early first
1522 scheduled-down Sort by scheduled timestamp, late first
1523 deadline-up Sort by deadline timestamp, early first
1524 deadline-down Sort by deadline timestamp, late first
1525 ts-up Sort by active timestamp, early first
1526 ts-down Sort by active timestamp, late first
1527 tsia-up Sort by inactive timestamp, early first
1528 tsia-down Sort by inactive timestamp, late first
1529 category-keep Keep the default order of categories, corresponding to the
1530 sequence in `org-agenda-files'.
1531 category-up Sort alphabetically by category, A-Z.
1532 category-down Sort alphabetically by category, Z-A.
1533 tag-up Sort alphabetically by last tag, A-Z.
1534 tag-down Sort alphabetically by last tag, Z-A.
1535 priority-up Sort numerically by priority, high priority last.
1536 priority-down Sort numerically by priority, high priority first.
1537 todo-state-up Sort by todo state, tasks that are done last.
1538 todo-state-down Sort by todo state, tasks that are done first.
1539 effort-up Sort numerically by estimated effort, high effort last.
1540 effort-down Sort numerically by estimated effort, high effort first.
1541 user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
1542 user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
1543 habit-up Put entries that are habits first
1544 habit-down Put entries that are habits last
1545 alpha-up Sort headlines alphabetically
1546 alpha-down Sort headlines alphabetically, reversed
1548 The different possibilities will be tried in sequence, and testing stops
1549 if one comparison returns a \"not-equal\". For example, the default
1550 '(time-up category-keep priority-down)
1551 means: Pull out all entries having a specified time of day and sort them,
1552 in order to make a time schedule for the current day the first thing in the
1553 agenda listing for the day. Of the entries without a time indication, keep
1554 the grouped in categories, don't sort the categories, but keep them in
1555 the sequence given in `org-agenda-files'. Within each category sort by
1556 priority.
1558 Leaving out `category-keep' would mean that items will be sorted across
1559 categories by priority.
1561 Instead of a single list, this can also be a set of list for specific
1562 contents, with a context symbol in the car of the list, any of
1563 `agenda', `todo', `tags', `search' for the corresponding agenda views.
1565 Custom commands can bind this variable in the options section."
1566 :group 'org-agenda-sorting
1567 :type `(choice
1568 (repeat :tag "General" ,org-sorting-choice)
1569 (list :tag "Individually"
1570 (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
1571 (repeat ,org-sorting-choice))
1572 (cons (const :tag "Strategy for TODO lists" todo)
1573 (repeat ,org-sorting-choice))
1574 (cons (const :tag "Strategy for Tags matches" tags)
1575 (repeat ,org-sorting-choice))
1576 (cons (const :tag "Strategy for search matches" search)
1577 (repeat ,org-sorting-choice)))))
1579 (defcustom org-agenda-cmp-user-defined nil
1580 "A function to define the comparison `user-defined'.
1581 This function must receive two arguments, agenda entry a and b.
1582 If a>b, return +1. If a<b, return -1. If they are equal as seen by
1583 the user comparison, return nil.
1584 When this is defined, you can make `user-defined-up' and `user-defined-down'
1585 part of an agenda sorting strategy."
1586 :group 'org-agenda-sorting
1587 :type 'symbol)
1589 (defcustom org-sort-agenda-notime-is-late t
1590 "Non-nil means items without time are considered late.
1591 This is only relevant for sorting. When t, items which have no explicit
1592 time like 15:30 will be considered as 99:01, i.e. later than any items which
1593 do have a time. When nil, the default time is before 0:00. You can use this
1594 option to decide if the schedule for today should come before or after timeless
1595 agenda entries."
1596 :group 'org-agenda-sorting
1597 :type 'boolean)
1599 (defcustom org-sort-agenda-noeffort-is-high t
1600 "Non-nil means items without effort estimate are sorted as high effort.
1601 This also applies when filtering an agenda view with respect to the
1602 < or > effort operator. Then, tasks with no effort defined will be treated
1603 as tasks with high effort.
1604 When nil, such items are sorted as 0 minutes effort."
1605 :group 'org-agenda-sorting
1606 :type 'boolean)
1608 (defgroup org-agenda-line-format nil
1609 "Options concerning the entry prefix in the Org-mode agenda display."
1610 :tag "Org Agenda Line Format"
1611 :group 'org-agenda)
1613 (defcustom org-agenda-prefix-format
1614 '((agenda . " %i %-12:c%?-12t% s")
1615 (timeline . " % s")
1616 (todo . " %i %-12:c")
1617 (tags . " %i %-12:c")
1618 (search . " %i %-12:c"))
1619 "Format specifications for the prefix of items in the agenda views.
1620 An alist with five entries, each for the different agenda types. The
1621 keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
1622 The values are format strings.
1624 This format works similar to a printf format, with the following meaning:
1626 %c the category of the item, \"Diary\" for entries from the diary,
1627 or as given by the CATEGORY keyword or derived from the file name
1628 %e the effort required by the item
1629 %l the level of the item (insert X space(s) if item is of level X)
1630 %i the icon category of the item, see `org-agenda-category-icon-alist'
1631 %T the last tag of the item (ignore inherited tags, which come first)
1632 %t the HH:MM time-of-day specification if one applies to the entry
1633 %s Scheduling/Deadline information, a short string
1634 %b show breadcrumbs, i.e., the names of the higher levels
1635 %(expression) Eval EXPRESSION and replace the control string
1636 by the result
1638 All specifiers work basically like the standard `%s' of printf, but may
1639 contain two additional characters: a question mark just after the `%'
1640 and a whitespace/punctuation character just before the final letter.
1642 If the first character after `%' is a question mark, the entire field
1643 will only be included if the corresponding value applies to the current
1644 entry. This is useful for fields which should have fixed width when
1645 present, but zero width when absent. For example, \"%?-12t\" will
1646 result in a 12 character time field if a time of the day is specified,
1647 but will completely disappear in entries which do not contain a time.
1649 If there is punctuation or whitespace character just before the
1650 final format letter, this character will be appended to the field
1651 value if the value is not empty. For example, the format
1652 \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
1653 the category is empty, no additional colon is inserted.
1655 The default value for the agenda sublist is \" %-12:c%?-12t% s\",
1656 which means:
1658 - Indent the line with two space characters
1659 - Give the category a 12 chars wide field, padded with whitespace on
1660 the right (because of `-'). Append a colon if there is a category
1661 (because of `:').
1662 - If there is a time-of-day, put it into a 12 chars wide field. If no
1663 time, don't put in an empty field, just skip it (because of '?').
1664 - Finally, put the scheduling information.
1666 See also the variables `org-agenda-remove-times-when-in-prefix' and
1667 `org-agenda-remove-tags'.
1669 Custom commands can set this variable in the options section."
1670 :type '(choice
1671 (string :tag "General format")
1672 (list :greedy t :tag "View dependent"
1673 (cons (const agenda) (string :tag "Format"))
1674 (cons (const timeline) (string :tag "Format"))
1675 (cons (const todo) (string :tag "Format"))
1676 (cons (const tags) (string :tag "Format"))
1677 (cons (const search) (string :tag "Format"))))
1678 :group 'org-agenda-line-format)
1680 (defvar org-prefix-format-compiled nil
1681 "The compiled prefix format and associated variables.
1682 This is a list where first element is a list of variable bindings, and second
1683 element is the compiled format expression. See the variable
1684 `org-agenda-prefix-format'.")
1686 (defcustom org-agenda-todo-keyword-format "%-1s"
1687 "Format for the TODO keyword in agenda lines.
1688 Set this to something like \"%-12s\" if you want all TODO keywords
1689 to occupy a fixed space in the agenda display."
1690 :group 'org-agenda-line-format
1691 :type 'string)
1693 (defcustom org-agenda-diary-sexp-prefix nil
1694 "A regexp that matches part of a diary sexp entry
1695 which should be treated as scheduling/deadline information in
1696 `org-agenda'.
1698 For example, you can use this to extract the `diary-remind-message' from
1699 `diary-remind' entries."
1700 :group 'org-agenda-line-format
1701 :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
1703 (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
1704 "Text preceding timerange entries in the agenda view.
1705 This is a list with two strings. The first applies when the range
1706 is entirely on one day. The second applies if the range spans several days.
1707 The strings may have two \"%d\" format specifiers which will be filled
1708 with the sequence number of the days, and the total number of days in the
1709 range, respectively."
1710 :group 'org-agenda-line-format
1711 :type '(list
1712 (string :tag "Deadline today ")
1713 (choice :tag "Deadline relative"
1714 (string :tag "Format string")
1715 (function))))
1717 (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
1718 "Text preceding scheduled items in the agenda view.
1719 This is a list with two strings. The first applies when the item is
1720 scheduled on the current day. The second applies when it has been scheduled
1721 previously, it may contain a %d indicating that this is the nth time that
1722 this item is scheduled, due to automatic rescheduling of unfinished items
1723 for the following day. So this number is one larger than the number of days
1724 that passed since this item was scheduled first."
1725 :group 'org-agenda-line-format
1726 :version "24.4"
1727 :package-version '(Org . "8.0")
1728 :type '(list
1729 (string :tag "Scheduled today ")
1730 (string :tag "Scheduled previously")))
1732 (defcustom org-agenda-inactive-leader "["
1733 "Text preceding item pulled into the agenda by inactive time stamps.
1734 These entries are added to the agenda when pressing \"[\"."
1735 :group 'org-agenda-line-format
1736 :version "24.1"
1737 :type 'string)
1739 (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
1740 "Text preceding deadline items in the agenda view.
1741 This is a list with three strings. The first applies when the item has its
1742 deadline on the current day. The second applies when the deadline is in the
1743 future, the third one when it is in the past. The strings may contain %d
1744 to capture the number of days."
1745 :group 'org-agenda-line-format
1746 :version "24.4"
1747 :package-version '(Org . "8.0")
1748 :type '(list
1749 (string :tag "Deadline today ")
1750 (choice :tag "Deadline relative"
1751 (string :tag "Format string")
1752 (function))))
1754 (defcustom org-agenda-remove-times-when-in-prefix t
1755 "Non-nil means remove duplicate time specifications in agenda items.
1756 When the format `org-agenda-prefix-format' contains a `%t' specifier, a
1757 time-of-day specification in a headline or diary entry is extracted and
1758 placed into the prefix. If this option is non-nil, the original specification
1759 \(a timestamp or -range, or just a plain time(range) specification like
1760 11:30-4pm) will be removed for agenda display. This makes the agenda less
1761 cluttered.
1762 The option can be t or nil. It may also be the symbol `beg', indicating
1763 that the time should only be removed when it is located at the beginning of
1764 the headline/diary entry."
1765 :group 'org-agenda-line-format
1766 :type '(choice
1767 (const :tag "Always" t)
1768 (const :tag "Never" nil)
1769 (const :tag "When at beginning of entry" beg)))
1771 (defcustom org-agenda-remove-timeranges-from-blocks nil
1772 "Non-nil means remove time ranges specifications in agenda
1773 items that span on several days."
1774 :group 'org-agenda-line-format
1775 :version "24.1"
1776 :type 'boolean)
1778 (defcustom org-agenda-default-appointment-duration nil
1779 "Default duration for appointments that only have a starting time.
1780 When nil, no duration is specified in such cases.
1781 When non-nil, this must be the number of minutes, e.g. 60 for one hour."
1782 :group 'org-agenda-line-format
1783 :type '(choice
1784 (integer :tag "Minutes")
1785 (const :tag "No default duration")))
1787 (defcustom org-agenda-show-inherited-tags t
1788 "Non-nil means show inherited tags in each agenda line.
1790 When this option is set to 'always, it take precedences over
1791 `org-agenda-use-tag-inheritance' and inherited tags are shown
1792 in every agenda.
1794 When this option is set to t (the default), inherited tags are
1795 shown when they are available, i.e. when the value of
1796 `org-agenda-use-tag-inheritance' has been taken into account.
1798 This can be set to a list of agenda types in which the agenda
1799 must display the inherited tags. Available types are 'todo,
1800 'agenda, 'search and 'timeline.
1802 When set to nil, never show inherited tags in agenda lines."
1803 :group 'org-agenda-line-format
1804 :group 'org-agenda
1805 :version "24.3"
1806 :type '(choice
1807 (const :tag "Show inherited tags when available" t)
1808 (const :tag "Always show inherited tags" 'always)
1809 (repeat :tag "Show inherited tags only in selected agenda types"
1810 (symbol :tag "Agenda type"))))
1812 (defcustom org-agenda-use-tag-inheritance '(todo search timeline agenda)
1813 "List of agenda view types where to use tag inheritance.
1815 In tags/tags-todo/tags-tree agenda views, tag inheritance is
1816 controlled by `org-use-tag-inheritance'. In other agenda types,
1817 `org-use-tag-inheritance' is not used for the selection of the
1818 agenda entries. Still, you may want the agenda to be aware of
1819 the inherited tags anyway, e.g. for later tag filtering.
1821 Allowed value are 'todo, 'search, 'timeline and 'agenda.
1823 This variable has no effect if `org-agenda-show-inherited-tags'
1824 is set to 'always. In that case, the agenda is aware of those
1825 tags.
1827 The default value sets tags in every agenda type. Setting this
1828 option to nil will speed up non-tags agenda view a lot."
1829 :group 'org-agenda
1830 :version "24.3"
1831 :type '(choice
1832 (const :tag "Use tag inheritance in all agenda types" t)
1833 (repeat :tag "Use tag inheritance in selected agenda types"
1834 (symbol :tag "Agenda type"))))
1836 (defcustom org-agenda-hide-tags-regexp nil
1837 "Regular expression used to filter away specific tags in agenda views.
1838 This means that these tags will be present, but not be shown in the agenda
1839 line. Secondary filtering will still work on the hidden tags.
1840 Nil means don't hide any tags."
1841 :group 'org-agenda-line-format
1842 :type '(choice
1843 (const :tag "Hide none" nil)
1844 (string :tag "Regexp ")))
1846 (defcustom org-agenda-remove-tags nil
1847 "Non-nil means remove the tags from the headline copy in the agenda.
1848 When this is the symbol `prefix', only remove tags when
1849 `org-agenda-prefix-format' contains a `%T' specifier."
1850 :group 'org-agenda-line-format
1851 :type '(choice
1852 (const :tag "Always" t)
1853 (const :tag "Never" nil)
1854 (const :tag "When prefix format contains %T" prefix)))
1856 (org-defvaralias 'org-agenda-remove-tags-when-in-prefix
1857 'org-agenda-remove-tags)
1859 (defcustom org-agenda-tags-column (if (featurep 'xemacs) -79 -80)
1860 "Shift tags in agenda items to this column.
1861 If this number is positive, it specifies the column. If it is negative,
1862 it means that the tags should be flushright to that column. For example,
1863 -80 works well for a normal 80 character screen."
1864 :group 'org-agenda-line-format
1865 :type 'integer)
1867 (org-defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
1869 (defcustom org-agenda-fontify-priorities 'cookies
1870 "Non-nil means highlight low and high priorities in agenda.
1871 When t, the highest priority entries are bold, lowest priority italic.
1872 However, settings in `org-priority-faces' will overrule these faces.
1873 When this variable is the symbol `cookies', only fontify the
1874 cookies, not the entire task.
1875 This may also be an association list of priority faces, whose
1876 keys are the character values of `org-highest-priority',
1877 `org-default-priority', and `org-lowest-priority' (the default values
1878 are ?A, ?B, and ?C, respectively). The face may be a named face, a
1879 color as a string, or a list like `(:background \"Red\")'.
1880 If it is a color, the variable `org-faces-easy-properties'
1881 determines if it is a foreground or a background color."
1882 :group 'org-agenda-line-format
1883 :type '(choice
1884 (const :tag "Never" nil)
1885 (const :tag "Defaults" t)
1886 (const :tag "Cookies only" cookies)
1887 (repeat :tag "Specify"
1888 (list (character :tag "Priority" :value ?A)
1889 (choice :tag "Face "
1890 (string :tag "Color")
1891 (sexp :tag "Face"))))))
1893 (defcustom org-agenda-day-face-function nil
1894 "Function called to determine what face should be used to display a day.
1895 The only argument passed to that function is the day. It should
1896 returns a face, or nil if does not want to specify a face and let
1897 the normal rules apply."
1898 :group 'org-agenda-line-format
1899 :version "24.1"
1900 :type '(choice (const nil) (function)))
1902 (defcustom org-agenda-category-icon-alist nil
1903 "Alist of category icon to be displayed in agenda views.
1905 Each entry should have the following format:
1907 (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
1909 Where CATEGORY-REGEXP is a regexp matching the categories where
1910 the icon should be displayed.
1911 FILE-OR-DATA either a file path or a string containing image data.
1913 The other fields can be omitted safely if not needed:
1914 TYPE indicates the image type.
1915 DATA-P is a boolean indicating whether the FILE-OR-DATA string is
1916 image data.
1917 PROPS are additional image attributes to assign to the image,
1918 like, e.g. `:ascent center'.
1920 (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
1922 If you want to set the display properties yourself, just put a
1923 list as second element:
1925 (CATEGORY-REGEXP (MY PROPERTY LIST))
1927 For example, to display a 16px horizontal space for Emacs
1928 category, you can use:
1930 (\"Emacs\" '(space . (:width (16))))"
1931 :group 'org-agenda-line-format
1932 :version "24.1"
1933 :type '(alist :key-type (string :tag "Regexp matching category")
1934 :value-type (choice (list :tag "Icon"
1935 (string :tag "File or data")
1936 (symbol :tag "Type")
1937 (boolean :tag "Data?")
1938 (repeat :tag "Extra image properties" :inline t symbol))
1939 (list :tag "Display properties" sexp))))
1941 (defgroup org-agenda-column-view nil
1942 "Options concerning column view in the agenda."
1943 :tag "Org Agenda Column View"
1944 :group 'org-agenda)
1946 (defcustom org-agenda-columns-show-summaries t
1947 "Non-nil means show summaries for columns displayed in the agenda view."
1948 :group 'org-agenda-column-view
1949 :type 'boolean)
1951 (defcustom org-agenda-columns-compute-summary-properties t
1952 "Non-nil means recompute all summary properties before column view.
1953 When column view in the agenda is listing properties that have a summary
1954 operator, it can go to all relevant buffers and recompute the summaries
1955 there. This can mean overhead for the agenda column view, but is necessary
1956 to have thing up to date.
1957 As a special case, a CLOCKSUM property also makes sure that the clock
1958 computations are current."
1959 :group 'org-agenda-column-view
1960 :type 'boolean)
1962 (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
1963 "Non-nil means the duration of an appointment will add to day effort.
1964 The property to which appointment durations will be added is the one given
1965 in the option `org-effort-property'. If an appointment does not have
1966 an end time, `org-agenda-default-appointment-duration' will be used. If that
1967 is not set, an appointment without end time will not contribute to the time
1968 estimate."
1969 :group 'org-agenda-column-view
1970 :type 'boolean)
1972 (defcustom org-agenda-auto-exclude-function nil
1973 "A function called with a tag to decide if it is filtered on '/ RET'.
1974 The sole argument to the function, which is called once for each
1975 possible tag, is a string giving the name of the tag. The
1976 function should return either nil if the tag should be included
1977 as normal, or \"-<TAG>\" to exclude the tag.
1978 Note that for the purpose of tag filtering, only the lower-case version of
1979 all tags will be considered, so that this function will only ever see
1980 the lower-case version of all tags."
1981 :group 'org-agenda
1982 :type '(choice (const nil) (function)))
1984 (defcustom org-agenda-bulk-custom-functions nil
1985 "Alist of characters and custom functions for bulk actions.
1986 For example, this value makes those two functions available:
1988 '((?R set-category)
1989 (?C bulk-cut))
1991 With selected entries in an agenda buffer, `B R' will call
1992 the custom function `set-category' on the selected entries.
1993 Note that functions in this alist don't need to be quoted."
1994 :type 'alist
1995 :version "24.1"
1996 :group 'org-agenda)
1998 (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
1999 "Execute BODY with point at location given by `org-hd-marker' property.
2000 If STRING is non-nil, the text property will be fetched from position 0
2001 in that string. If STRING is nil, it will be fetched from the beginning
2002 of the current line."
2003 (org-with-gensyms (marker)
2004 `(let ((,marker (get-text-property (if string 0 (point-at-bol))
2005 'org-hd-marker ,string)))
2006 (with-current-buffer (marker-buffer ,marker)
2007 (save-excursion
2008 (goto-char ,marker)
2009 ,@body)))))
2010 (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
2012 (defun org-add-agenda-custom-command (entry)
2013 "Replace or add a command in `org-agenda-custom-commands'.
2014 This is mostly for hacking and trying a new command - once the command
2015 works you probably want to add it to `org-agenda-custom-commands' for good."
2016 (let ((ass (assoc (car entry) org-agenda-custom-commands)))
2017 (if ass
2018 (setcdr ass (cdr entry))
2019 (push entry org-agenda-custom-commands))))
2021 ;;; Define the org-agenda-mode
2023 (defvar org-agenda-mode-map (make-sparse-keymap)
2024 "Keymap for `org-agenda-mode'.")
2025 (org-defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
2027 (defvar org-agenda-menu) ; defined later in this file.
2028 (defvar org-agenda-restrict nil) ; defined later in this file.
2029 (defvar org-agenda-follow-mode nil)
2030 (defvar org-agenda-entry-text-mode nil)
2031 (defvar org-agenda-clockreport-mode nil)
2032 (defvar org-agenda-show-log nil)
2033 (defvar org-agenda-redo-command nil)
2034 (defvar org-agenda-query-string nil)
2035 (defvar org-agenda-mode-hook nil
2036 "Hook run after `org-agenda-mode' is turned on.
2037 The buffer is still writable when this hook is called.")
2038 (defvar org-agenda-type nil)
2039 (defvar org-agenda-force-single-file nil)
2040 (defvar org-agenda-bulk-marked-entries nil
2041 "List of markers that refer to marked entries in the agenda.")
2043 ;;; Multiple agenda buffers support
2045 (defcustom org-agenda-sticky nil
2046 "Non-nil means agenda q key will bury agenda buffers.
2047 Agenda commands will then show existing buffer instead of generating new ones.
2048 When nil, `q' will kill the single agenda buffer."
2049 :group 'org-agenda
2050 :version "24.3"
2051 :type 'boolean)
2054 ;;;###autoload
2055 (defun org-toggle-sticky-agenda (&optional arg)
2056 "Toggle `org-agenda-sticky'."
2057 (interactive "P")
2058 (let ((new-value (if arg
2059 (> (prefix-numeric-value arg) 0)
2060 (not org-agenda-sticky))))
2061 (if (equal new-value org-agenda-sticky)
2062 (and (org-called-interactively-p 'interactive)
2063 (message "Sticky agenda was already %s"
2064 (if org-agenda-sticky "enabled" "disabled")))
2065 (setq org-agenda-sticky new-value)
2066 (org-agenda-kill-all-agenda-buffers)
2067 (and (org-called-interactively-p 'interactive)
2068 (message "Sticky agenda was %s"
2069 (if org-agenda-sticky "enabled" "disabled"))))))
2071 (defvar org-agenda-buffer nil
2072 "Agenda buffer currently being generated.")
2074 (defvar org-agenda-last-prefix-arg nil)
2075 (defvar org-agenda-this-buffer-name nil)
2076 (defvar org-agenda-doing-sticky-redo nil)
2077 (defvar org-agenda-this-buffer-is-sticky nil)
2079 (defconst org-agenda-local-vars
2080 '(org-agenda-this-buffer-name
2081 org-agenda-undo-list
2082 org-agenda-pending-undo-list
2083 org-agenda-follow-mode
2084 org-agenda-entry-text-mode
2085 org-agenda-clockreport-mode
2086 org-agenda-show-log
2087 org-agenda-redo-command
2088 org-agenda-query-string
2089 org-agenda-type
2090 org-agenda-bulk-marked-entries
2091 org-agenda-undo-has-started-in
2092 org-agenda-info
2093 org-agenda-pre-window-conf
2094 org-agenda-columns-active
2095 org-agenda-tag-filter-overlays
2096 org-agenda-tag-filter
2097 org-agenda-cat-filter-overlays
2098 org-agenda-category-filter
2099 org-agenda-re-filter-overlays
2100 org-agenda-regexp-filter
2101 org-agenda-markers
2102 org-agenda-last-search-view-search-was-boolean
2103 org-agenda-filtered-by-category
2104 org-agenda-filter-form
2105 org-agenda-cycle-counter
2106 org-agenda-last-prefix-arg)
2107 "Variables that must be local in agenda buffers to allow multiple buffers.")
2109 (defun org-agenda-mode ()
2110 "Mode for time-sorted view on action items in Org-mode files.
2112 The following commands are available:
2114 \\{org-agenda-mode-map}"
2115 (interactive)
2116 (cond (org-agenda-doing-sticky-redo
2117 ;; Refreshing sticky agenda-buffer
2119 ;; Preserve the value of `org-agenda-local-vars' variables,
2120 ;; while letting `kill-all-local-variables' kill the rest
2121 (let ((save (buffer-local-variables)))
2122 (kill-all-local-variables)
2123 (mapc 'make-local-variable org-agenda-local-vars)
2124 (dolist (elem save)
2125 (let ((var (car elem))
2126 (val (cdr elem)))
2127 (when (and val
2128 (member var org-agenda-local-vars))
2129 (set var val)))))
2130 (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
2131 (org-agenda-sticky
2132 ;; Creating a sticky Agenda buffer for the first time
2133 (kill-all-local-variables)
2134 (mapc 'make-local-variable org-agenda-local-vars)
2135 (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
2137 ;; Creating a non-sticky agenda buffer
2138 (kill-all-local-variables)
2139 (set (make-local-variable 'org-agenda-this-buffer-is-sticky) nil)))
2140 (setq org-agenda-undo-list nil
2141 org-agenda-pending-undo-list nil
2142 org-agenda-bulk-marked-entries nil)
2143 (setq major-mode 'org-agenda-mode)
2144 ;; Keep global-font-lock-mode from turning on font-lock-mode
2145 (org-set-local 'font-lock-global-modes (list 'not major-mode))
2146 (setq mode-name "Org-Agenda")
2147 (use-local-map org-agenda-mode-map)
2148 (easy-menu-add org-agenda-menu)
2149 (if org-startup-truncated (setq truncate-lines t))
2150 (org-set-local 'line-move-visual nil)
2151 (org-add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
2152 (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
2153 ;; Make sure properties are removed when copying text
2154 (org-add-hook 'filter-buffer-substring-functions
2155 (lambda (fun start end delete)
2156 (substring-no-properties (funcall fun start end delete)))
2157 nil t)
2158 (unless org-agenda-keep-modes
2159 (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
2160 org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
2161 org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode
2162 org-agenda-show-log org-agenda-start-with-log-mode))
2164 (easy-menu-change
2165 '("Agenda") "Agenda Files"
2166 (append
2167 (list
2168 (vector
2169 (if (get 'org-agenda-files 'org-restrict)
2170 "Restricted to single file"
2171 "Edit File List")
2172 '(org-edit-agenda-file-list)
2173 (not (get 'org-agenda-files 'org-restrict)))
2174 "--")
2175 (mapcar 'org-file-menu-entry (org-agenda-files))))
2176 (org-agenda-set-mode-name)
2177 (apply
2178 (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
2179 (list 'org-agenda-mode-hook)))
2181 (substitute-key-definition 'undo 'org-agenda-undo
2182 org-agenda-mode-map global-map)
2183 (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
2184 (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
2185 (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
2186 (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
2187 (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
2188 (org-defkey org-agenda-mode-map [(meta down)] 'org-agenda-drag-line-forward)
2189 (org-defkey org-agenda-mode-map [(meta up)] 'org-agenda-drag-line-backward)
2190 (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
2191 (org-defkey org-agenda-mode-map "\M-m" 'org-agenda-bulk-toggle)
2192 (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
2193 (org-defkey org-agenda-mode-map "\M-*" 'org-agenda-bulk-toggle-all)
2194 (org-defkey org-agenda-mode-map "#" 'org-agenda-dim-blocked-tasks)
2195 (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
2196 (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
2197 (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
2198 (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
2199 (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
2200 (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
2201 (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
2202 (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
2203 (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
2204 (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
2205 (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
2206 (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
2207 (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
2208 (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
2209 (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
2210 (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
2211 (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
2212 (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
2213 (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
2214 (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
2215 (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
2216 (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
2217 (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
2218 (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
2219 (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
2220 (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
2221 (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
2222 (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
2223 (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
2224 (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
2225 (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
2226 (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
2227 (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
2228 (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
2229 (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
2230 (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
2231 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
2232 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
2234 (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
2235 (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
2236 (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
2237 (let ((l '(1 2 3 4 5 6 7 8 9 0)))
2238 (while l (org-defkey org-agenda-mode-map
2239 (int-to-string (pop l)) 'digit-argument)))
2241 (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
2242 (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
2243 (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
2244 (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
2245 (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
2246 (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
2247 (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
2248 (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
2249 (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
2250 (org-defkey org-agenda-mode-map "g" (lambda () (interactive) (org-agenda-redo t)))
2251 (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
2252 (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
2253 (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
2254 'org-clock-modify-effort-estimate)
2255 (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
2256 (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
2257 (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
2258 (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
2259 (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
2260 (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
2261 (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
2262 (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
2263 (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
2264 (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
2265 (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
2266 (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
2267 (substitute-key-definition 'next-line 'org-agenda-next-line
2268 org-agenda-mode-map global-map)
2269 (substitute-key-definition 'previous-line 'org-agenda-previous-line
2270 org-agenda-mode-map global-map)
2271 (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
2272 (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
2273 (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
2274 (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
2275 (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
2276 (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
2277 (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
2278 (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
2279 (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
2280 (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
2281 (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
2282 (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
2283 (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
2284 (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
2285 (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
2286 (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
2287 (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
2288 (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
2289 (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
2290 (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
2291 (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
2292 (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
2293 (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
2294 (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
2295 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
2296 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
2297 (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
2298 (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
2299 (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
2300 (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
2302 (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
2303 (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
2304 (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
2305 (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
2306 (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
2307 (org-defkey org-agenda-mode-map "=" 'org-agenda-filter-by-regexp)
2308 (org-defkey org-agenda-mode-map "|" 'org-agenda-filter-remove-all)
2309 (org-defkey org-agenda-mode-map "\\" 'org-agenda-filter-by-tag-refine)
2310 (org-defkey org-agenda-mode-map "~" 'org-agenda-limit-interactively)
2311 (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
2312 (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-headline)
2313 (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
2314 (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
2315 (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
2316 (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
2318 (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
2319 (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
2320 (when org-agenda-mouse-1-follows-link
2321 (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
2322 (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
2323 '("Agenda"
2324 ("Agenda Files")
2325 "--"
2326 ("Agenda Dates"
2327 ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
2328 ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
2329 ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
2330 ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
2331 "--"
2332 ("View"
2333 ["Day View" org-agenda-day-view
2334 :active (org-agenda-check-type nil 'agenda)
2335 :style radio :selected (eq org-agenda-current-span 'day)
2336 :keys "v d (or just d)"]
2337 ["Week View" org-agenda-week-view
2338 :active (org-agenda-check-type nil 'agenda)
2339 :style radio :selected (eq org-agenda-current-span 'week)
2340 :keys "v w"]
2341 ["Fortnight View" org-agenda-fortnight-view
2342 :active (org-agenda-check-type nil 'agenda)
2343 :style radio :selected (eq org-agenda-current-span 'fortnight)
2344 :keys "v f"]
2345 ["Month View" org-agenda-month-view
2346 :active (org-agenda-check-type nil 'agenda)
2347 :style radio :selected (eq org-agenda-current-span 'month)
2348 :keys "v m"]
2349 ["Year View" org-agenda-year-view
2350 :active (org-agenda-check-type nil 'agenda)
2351 :style radio :selected (eq org-agenda-current-span 'year)
2352 :keys "v y"]
2353 "--"
2354 ["Include Diary" org-agenda-toggle-diary
2355 :style toggle :selected org-agenda-include-diary
2356 :active (org-agenda-check-type nil 'agenda)]
2357 ["Include Deadlines" org-agenda-toggle-deadlines
2358 :style toggle :selected org-agenda-include-deadlines
2359 :active (org-agenda-check-type nil 'agenda)]
2360 ["Use Time Grid" org-agenda-toggle-time-grid
2361 :style toggle :selected org-agenda-use-time-grid
2362 :active (org-agenda-check-type nil 'agenda)]
2363 "--"
2364 ["Show clock report" org-agenda-clockreport-mode
2365 :style toggle :selected org-agenda-clockreport-mode
2366 :active (org-agenda-check-type nil 'agenda)]
2367 ["Show some entry text" org-agenda-entry-text-mode
2368 :style toggle :selected org-agenda-entry-text-mode
2369 :active t]
2370 "--"
2371 ["Show Logbook entries" org-agenda-log-mode
2372 :style toggle :selected org-agenda-show-log
2373 :active (org-agenda-check-type nil 'agenda 'timeline)
2374 :keys "v l (or just l)"]
2375 ["Include archived trees" org-agenda-archives-mode
2376 :style toggle :selected org-agenda-archives-mode :active t
2377 :keys "v a"]
2378 ["Include archive files" (org-agenda-archives-mode t)
2379 :style toggle :selected (eq org-agenda-archives-mode t) :active t
2380 :keys "v A"]
2381 "--"
2382 ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
2383 ["Write view to file" org-agenda-write t]
2384 ["Rebuild buffer" org-agenda-redo t]
2385 ["Save all Org-mode Buffers" org-save-all-org-buffers t]
2386 "--"
2387 ["Show original entry" org-agenda-show t]
2388 ["Go To (other window)" org-agenda-goto t]
2389 ["Go To (this window)" org-agenda-switch-to t]
2390 ["Capture with cursor date" org-agenda-capture t]
2391 ["Follow Mode" org-agenda-follow-mode
2392 :style toggle :selected org-agenda-follow-mode :active t]
2393 ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
2394 "--"
2395 ("TODO"
2396 ["Cycle TODO" org-agenda-todo t]
2397 ["Next TODO set" org-agenda-todo-nextset t]
2398 ["Previous TODO set" org-agenda-todo-previousset t]
2399 ["Add note" org-agenda-add-note t])
2400 ("Archive/Refile/Delete"
2401 ["Archive default" org-agenda-archive-default t]
2402 ["Archive default" org-agenda-archive-default-with-confirmation t]
2403 ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
2404 ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
2405 ["Archive subtree" org-agenda-archive t]
2406 "--"
2407 ["Refile" org-agenda-refile t]
2408 "--"
2409 ["Delete subtree" org-agenda-kill t])
2410 ("Bulk action"
2411 ["Mark entry" org-agenda-bulk-mark t]
2412 ["Mark all" org-agenda-bulk-mark-all t]
2413 ["Unmark entry" org-agenda-bulk-unmark t]
2414 ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
2415 ["Toggle mark" org-agenda-bulk-toggle t]
2416 ["Toggle all" org-agenda-bulk-toggle-all t]
2417 ["Mark regexp" org-agenda-bulk-mark-regexp t])
2418 ["Act on all marked" org-agenda-bulk-action t]
2419 "--"
2420 ("Tags and Properties"
2421 ["Show all Tags" org-agenda-show-tags t]
2422 ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
2423 ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
2424 "--"
2425 ["Column View" org-columns t])
2426 ("Deadline/Schedule"
2427 ["Schedule" org-agenda-schedule t]
2428 ["Set Deadline" org-agenda-deadline t]
2429 "--"
2430 ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
2431 ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
2432 ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
2433 ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
2434 ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
2435 ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
2436 ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
2437 ("Clock and Effort"
2438 ["Clock in" org-agenda-clock-in t]
2439 ["Clock out" org-agenda-clock-out t]
2440 ["Clock cancel" org-agenda-clock-cancel t]
2441 ["Goto running clock" org-clock-goto t]
2442 "--"
2443 ["Set Effort" org-agenda-set-effort t]
2444 ["Change clocked effort" org-clock-modify-effort-estimate
2445 (org-clock-is-active)])
2446 ("Priority"
2447 ["Set Priority" org-agenda-priority t]
2448 ["Increase Priority" org-agenda-priority-up t]
2449 ["Decrease Priority" org-agenda-priority-down t]
2450 ["Show Priority" org-show-priority t])
2451 ("Calendar/Diary"
2452 ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
2453 ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
2454 ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
2455 ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
2456 ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
2457 ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
2458 "--"
2459 ["Create iCalendar File" org-icalendar-combine-agenda-files t])
2460 "--"
2461 ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
2462 "--"
2463 ("MobileOrg"
2464 ["Push Files and Views" org-mobile-push t]
2465 ["Get Captured and Flagged" org-mobile-pull t]
2466 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
2467 ["Show note / unflag" org-agenda-show-the-flagging-note t]
2468 "--"
2469 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
2470 "--"
2471 ["Quit" org-agenda-quit t]
2472 ["Exit and Release Buffers" org-agenda-exit t]
2475 ;;; Agenda undo
2477 (defvar org-agenda-allow-remote-undo t
2478 "Non-nil means allow remote undo from the agenda buffer.")
2479 (defvar org-agenda-undo-has-started-in nil
2480 "Buffers that have already seen `undo-start' in the current undo sequence.")
2482 (defun org-agenda-undo ()
2483 "Undo a remote editing step in the agenda.
2484 This undoes changes both in the agenda buffer and in the remote buffer
2485 that have been changed along."
2486 (interactive)
2487 (or org-agenda-allow-remote-undo
2488 (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
2489 (if (not (eq this-command last-command))
2490 (setq org-agenda-undo-has-started-in nil
2491 org-agenda-pending-undo-list org-agenda-undo-list))
2492 (if (not org-agenda-pending-undo-list)
2493 (user-error "No further undo information"))
2494 (let* ((entry (pop org-agenda-pending-undo-list))
2495 buf line cmd rembuf)
2496 (setq cmd (pop entry) line (pop entry))
2497 (setq rembuf (nth 2 entry))
2498 (org-with-remote-undo rembuf
2499 (while (bufferp (setq buf (pop entry)))
2500 (if (pop entry)
2501 (with-current-buffer buf
2502 (let ((last-undo-buffer buf)
2503 (inhibit-read-only t))
2504 (unless (memq buf org-agenda-undo-has-started-in)
2505 (push buf org-agenda-undo-has-started-in)
2506 (make-local-variable 'pending-undo-list)
2507 (undo-start))
2508 (while (and pending-undo-list
2509 (listp pending-undo-list)
2510 (not (car pending-undo-list)))
2511 (pop pending-undo-list))
2512 (undo-more 1))))))
2513 (org-goto-line line)
2514 (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
2516 (defun org-verify-change-for-undo (l1 l2)
2517 "Verify that a real change occurred between the undo lists L1 and L2."
2518 (while (and l1 (listp l1) (null (car l1))) (pop l1))
2519 (while (and l2 (listp l2) (null (car l2))) (pop l2))
2520 (not (eq l1 l2)))
2522 ;;; Agenda dispatch
2524 (defvar org-agenda-restrict-begin (make-marker))
2525 (defvar org-agenda-restrict-end (make-marker))
2526 (defvar org-agenda-last-dispatch-buffer nil)
2527 (defvar org-agenda-overriding-restriction nil)
2529 (defcustom org-agenda-custom-commands-contexts nil
2530 "Alist of custom agenda keys and contextual rules.
2532 For example, if you have a custom agenda command \"p\" and you
2533 want this command to be accessible only from plain text files,
2534 use this:
2536 '((\"p\" ((in-file . \"\\.txt\"))))
2538 Here are the available contexts definitions:
2540 in-file: command displayed only in matching files
2541 in-mode: command displayed only in matching modes
2542 not-in-file: command not displayed in matching files
2543 not-in-mode: command not displayed in matching modes
2544 in-buffer: command displayed only in matching buffers
2545 not-in-buffer: command not displayed in matching buffers
2546 [function]: a custom function taking no argument
2548 If you define several checks, the agenda command will be
2549 accessible if there is at least one valid check.
2551 You can also bind a key to another agenda custom command
2552 depending on contextual rules.
2554 '((\"p\" \"q\" ((in-file . \"\\.txt\"))))
2556 Here it means: in .txt files, use \"p\" as the key for the
2557 agenda command otherwise associated with \"q\". (The command
2558 originally associated with \"q\" is not displayed to avoid
2559 duplicates.)"
2560 :version "24.3"
2561 :group 'org-agenda-custom-commands
2562 :type '(repeat (list :tag "Rule"
2563 (string :tag " Agenda key")
2564 (string :tag "Replace by command")
2565 (repeat :tag "Available when"
2566 (choice
2567 (cons :tag "Condition"
2568 (choice
2569 (const :tag "In file" in-file)
2570 (const :tag "Not in file" not-in-file)
2571 (const :tag "In buffer" in-buffer)
2572 (const :tag "Not in buffer" not-in-buffer)
2573 (const :tag "In mode" in-mode)
2574 (const :tag "Not in mode" not-in-mode))
2575 (regexp))
2576 (function :tag "Custom function"))))))
2578 (defcustom org-agenda-max-entries nil
2579 "Maximum number of entries to display in an agenda.
2580 This can be nil (no limit) or an integer or an alist of agenda
2581 types with an associated number of entries to display in this
2582 type."
2583 :version "24.4"
2584 :package-version '(Org . "8.0")
2585 :group 'org-agenda-custom-commands
2586 :type '(choice (symbol :tag "No limit" nil)
2587 (integer :tag "Max number of entries")
2588 (repeat
2589 (cons (choice :tag "Agenda type"
2590 (const agenda)
2591 (const todo)
2592 (const tags)
2593 (const search)
2594 (const timeline))
2595 (integer :tag "Max number of entries")))))
2597 (defcustom org-agenda-max-todos nil
2598 "Maximum number of TODOs to display in an agenda.
2599 This can be nil (no limit) or an integer or an alist of agenda
2600 types with an associated number of entries to display in this
2601 type."
2602 :version "24.4"
2603 :package-version '(Org . "8.0")
2604 :group 'org-agenda-custom-commands
2605 :type '(choice (symbol :tag "No limit" nil)
2606 (integer :tag "Max number of entries")
2607 (repeat
2608 (cons (choice :tag "Agenda type"
2609 (const agenda)
2610 (const todo)
2611 (const tags)
2612 (const search)
2613 (const timeline))
2614 (integer :tag "Max number of entries")))))
2616 (defcustom org-agenda-max-tags nil
2617 "Maximum number of tagged entries to display in an agenda.
2618 This can be nil (no limit) or an integer or an alist of agenda
2619 types with an associated number of entries to display in this
2620 type."
2621 :version "24.4"
2622 :package-version '(Org . "8.0")
2623 :group 'org-agenda-custom-commands
2624 :type '(choice (symbol :tag "No limit" nil)
2625 (integer :tag "Max number of entries")
2626 (repeat
2627 (cons (choice :tag "Agenda type"
2628 (const agenda)
2629 (const todo)
2630 (const tags)
2631 (const search)
2632 (const timeline))
2633 (integer :tag "Max number of entries")))))
2635 (defcustom org-agenda-max-effort nil
2636 "Maximum cumulated effort duration for the agenda.
2637 This can be nil (no limit) or a number of minutes (as an integer)
2638 or an alist of agenda types with an associated number of minutes
2639 to limit entries to in this type."
2640 :version "24.4"
2641 :package-version '(Org . "8.0")
2642 :group 'org-agenda-custom-commands
2643 :type '(choice (symbol :tag "No limit" nil)
2644 (integer :tag "Max number of entries")
2645 (repeat
2646 (cons (choice :tag "Agenda type"
2647 (const agenda)
2648 (const todo)
2649 (const tags)
2650 (const search)
2651 (const timeline))
2652 (integer :tag "Max number of entries")))))
2654 (defvar org-keys nil)
2655 (defvar org-match nil)
2656 ;;;###autoload
2657 (defun org-agenda (&optional arg org-keys restriction)
2658 "Dispatch agenda commands to collect entries to the agenda buffer.
2659 Prompts for a command to execute. Any prefix arg will be passed
2660 on to the selected command. The default selections are:
2662 a Call `org-agenda-list' to display the agenda for current day or week.
2663 t Call `org-todo-list' to display the global todo list.
2664 T Call `org-todo-list' to display the global todo list, select only
2665 entries with a specific TODO keyword (the user gets a prompt).
2666 m Call `org-tags-view' to display headlines with tags matching
2667 a condition (the user is prompted for the condition).
2668 M Like `m', but select only TODO entries, no ordinary headlines.
2669 L Create a timeline for the current buffer.
2670 e Export views to associated files.
2671 s Search entries for keywords.
2672 S Search entries for keywords, only with TODO keywords.
2673 / Multi occur across all agenda files and also files listed
2674 in `org-agenda-text-search-extra-files'.
2675 < Restrict agenda commands to buffer, subtree, or region.
2676 Press several times to get the desired effect.
2677 > Remove a previous restriction.
2678 # List \"stuck\" projects.
2679 ! Configure what \"stuck\" means.
2680 C Configure custom agenda commands.
2682 More commands can be added by configuring the variable
2683 `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
2684 searches can be pre-defined in this way.
2686 If the current buffer is in Org-mode and visiting a file, you can also
2687 first press `<' once to indicate that the agenda should be temporarily
2688 \(until the next use of \\[org-agenda]) restricted to the current file.
2689 Pressing `<' twice means to restrict to the current subtree or region
2690 \(if active)."
2691 (interactive "P")
2692 (catch 'exit
2693 (let* ((prefix-descriptions nil)
2694 (org-agenda-buffer-name org-agenda-buffer-name)
2695 (org-agenda-window-setup (if (equal (buffer-name)
2696 org-agenda-buffer-name)
2697 'current-window
2698 org-agenda-window-setup))
2699 (org-agenda-custom-commands-orig org-agenda-custom-commands)
2700 (org-agenda-custom-commands
2701 ;; normalize different versions
2702 (delq nil
2703 (mapcar
2704 (lambda (x)
2705 (cond ((stringp (cdr x))
2706 (push x prefix-descriptions)
2707 nil)
2708 ((stringp (nth 1 x)) x)
2709 ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
2710 (t (cons (car x) (cons "" (cdr x))))))
2711 org-agenda-custom-commands)))
2712 (org-agenda-custom-commands
2713 (org-contextualize-keys
2714 org-agenda-custom-commands org-agenda-custom-commands-contexts))
2715 (buf (current-buffer))
2716 (bfn (buffer-file-name (buffer-base-buffer)))
2717 entry key type org-match lprops ans)
2718 ;; Turn off restriction unless there is an overriding one,
2719 (unless org-agenda-overriding-restriction
2720 (unless (org-bound-and-true-p org-agenda-keep-restricted-file-list)
2721 ;; There is a request to keep the file list in place
2722 (put 'org-agenda-files 'org-restrict nil))
2723 (setq org-agenda-restrict nil)
2724 (move-marker org-agenda-restrict-begin nil)
2725 (move-marker org-agenda-restrict-end nil))
2726 ;; Delete old local properties
2727 (put 'org-agenda-redo-command 'org-lprops nil)
2728 ;; Delete previously set last-arguments
2729 (put 'org-agenda-redo-command 'last-args nil)
2730 ;; Remember where this call originated
2731 (setq org-agenda-last-dispatch-buffer (current-buffer))
2732 (unless org-keys
2733 (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
2734 org-keys (car ans)
2735 restriction (cdr ans)))
2736 ;; If we have sticky agenda buffers, set a name for the buffer,
2737 ;; depending on the invoking keys. The user may still set this
2738 ;; as a command option, which will overwrite what we do here.
2739 (if org-agenda-sticky
2740 (setq org-agenda-buffer-name
2741 (format "*Org Agenda(%s)*" org-keys)))
2742 ;; Establish the restriction, if any
2743 (when (and (not org-agenda-overriding-restriction) restriction)
2744 (put 'org-agenda-files 'org-restrict (list bfn))
2745 (cond
2746 ((eq restriction 'region)
2747 (setq org-agenda-restrict (current-buffer))
2748 (move-marker org-agenda-restrict-begin (region-beginning))
2749 (move-marker org-agenda-restrict-end (region-end)))
2750 ((eq restriction 'subtree)
2751 (save-excursion
2752 (setq org-agenda-restrict (current-buffer))
2753 (org-back-to-heading t)
2754 (move-marker org-agenda-restrict-begin (point))
2755 (move-marker org-agenda-restrict-end
2756 (progn (org-end-of-subtree t)))))))
2758 ;; For example the todo list should not need it (but does...)
2759 (cond
2760 ((setq entry (assoc org-keys org-agenda-custom-commands))
2761 (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
2762 (progn
2763 (setq type (nth 2 entry) org-match (eval (nth 3 entry))
2764 lprops (nth 4 entry))
2765 (if org-agenda-sticky
2766 (setq org-agenda-buffer-name
2767 (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
2768 (format "*Org Agenda(%s)*" org-keys))))
2769 (put 'org-agenda-redo-command 'org-lprops lprops)
2770 (cond
2771 ((eq type 'agenda)
2772 (org-let lprops '(org-agenda-list current-prefix-arg)))
2773 ((eq type 'agenda*)
2774 (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
2775 ((eq type 'alltodo)
2776 (org-let lprops '(org-todo-list current-prefix-arg)))
2777 ((eq type 'search)
2778 (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
2779 ((eq type 'stuck)
2780 (org-let lprops '(org-agenda-list-stuck-projects
2781 current-prefix-arg)))
2782 ((eq type 'tags)
2783 (org-let lprops '(org-tags-view current-prefix-arg org-match)))
2784 ((eq type 'tags-todo)
2785 (org-let lprops '(org-tags-view '(4) org-match)))
2786 ((eq type 'todo)
2787 (org-let lprops '(org-todo-list org-match)))
2788 ((eq type 'tags-tree)
2789 (org-check-for-org-mode)
2790 (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
2791 ((eq type 'todo-tree)
2792 (org-check-for-org-mode)
2793 (org-let lprops
2794 '(org-occur (concat "^" org-outline-regexp "[ \t]*"
2795 (regexp-quote org-match) "\\>"))))
2796 ((eq type 'occur-tree)
2797 (org-check-for-org-mode)
2798 (org-let lprops '(org-occur org-match)))
2799 ((functionp type)
2800 (org-let lprops '(funcall type org-match)))
2801 ((fboundp type)
2802 (org-let lprops '(funcall type org-match)))
2803 (t (user-error "Invalid custom agenda command type %s" type))))
2804 (org-agenda-run-series (nth 1 entry) (cddr entry))))
2805 ((equal org-keys "C")
2806 (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
2807 (customize-variable 'org-agenda-custom-commands))
2808 ((equal org-keys "a") (call-interactively 'org-agenda-list))
2809 ((equal org-keys "s") (call-interactively 'org-search-view))
2810 ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
2811 ((equal org-keys "t") (call-interactively 'org-todo-list))
2812 ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
2813 ((equal org-keys "m") (call-interactively 'org-tags-view))
2814 ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
2815 ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
2816 ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
2817 (org-add-hook
2818 'post-command-hook
2819 (lambda ()
2820 (unless (current-message)
2821 (let* ((m (org-agenda-get-any-marker))
2822 (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
2823 (when note
2824 (message (concat
2825 "FLAGGING-NOTE ([?] for more info): "
2826 (org-add-props
2827 (replace-regexp-in-string
2828 "\\\\n" "//"
2829 (copy-sequence note))
2830 nil 'face 'org-warning)))))))
2831 t t))
2832 ((equal org-keys "L")
2833 (unless (derived-mode-p 'org-mode)
2834 (user-error "This is not an Org-mode file"))
2835 (unless restriction
2836 (put 'org-agenda-files 'org-restrict (list bfn))
2837 (org-call-with-arg 'org-timeline arg)))
2838 ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
2839 ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
2840 ((equal org-keys "!") (customize-variable 'org-stuck-projects))
2841 (t (user-error "Invalid agenda key"))))))
2843 (defun org-agenda-append-agenda ()
2844 "Append another agenda view to the current one.
2845 This function allows interactive building of block agendas.
2846 Agenda views are separated by `org-agenda-block-separator'."
2847 (interactive)
2848 (unless (derived-mode-p 'org-agenda-mode)
2849 (user-error "Can only append from within agenda buffer"))
2850 (let ((org-agenda-multi t))
2851 (org-agenda)
2852 (widen)
2853 (org-agenda-finalize)
2854 (setq buffer-read-only t)
2855 (org-agenda-fit-window-to-buffer)))
2857 (defun org-agenda-normalize-custom-commands (cmds)
2858 "Normalize custom commands CMDS."
2859 (delq nil
2860 (mapcar
2861 (lambda (x)
2862 (cond ((stringp (cdr x)) nil)
2863 ((stringp (nth 1 x)) x)
2864 ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
2865 (t (cons (car x) (cons "" (cdr x))))))
2866 cmds)))
2868 (defun org-agenda-get-restriction-and-command (prefix-descriptions)
2869 "The user interface for selecting an agenda command."
2870 (catch 'exit
2871 (let* ((bfn (buffer-file-name (buffer-base-buffer)))
2872 (restrict-ok (and bfn (derived-mode-p 'org-mode)))
2873 (region-p (org-region-active-p))
2874 (custom org-agenda-custom-commands)
2875 (selstring "")
2876 restriction second-time
2877 c entry key type match prefixes rmheader header-end custom1 desc
2878 line lines left right n n1)
2879 (save-window-excursion
2880 (delete-other-windows)
2881 (org-switch-to-buffer-other-window " *Agenda Commands*")
2882 (erase-buffer)
2883 (insert (eval-when-compile
2884 (let ((header
2885 "Press key for an agenda command: < Buffer, subtree/region restriction
2886 -------------------------------- > Remove restriction
2887 a Agenda for current week or day e Export agenda views
2888 t List of all TODO entries T Entries with special TODO kwd
2889 m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
2890 s Search for keywords S Like s, but only TODO entries
2891 L Timeline for current buffer # List stuck projects (!=configure)
2892 / Multi-occur C Configure custom agenda commands
2893 ? Find :FLAGGED: entries * Toggle sticky agenda views
2895 (start 0))
2896 (while (string-match
2897 "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
2898 header start)
2899 (setq start (match-end 0))
2900 (add-text-properties (match-beginning 2) (match-end 2)
2901 '(face bold) header))
2902 header)))
2903 (setq header-end (point-marker))
2904 (while t
2905 (setq custom1 custom)
2906 (when (eq rmheader t)
2907 (org-goto-line 1)
2908 (re-search-forward ":" nil t)
2909 (delete-region (match-end 0) (point-at-eol))
2910 (forward-char 1)
2911 (looking-at "-+")
2912 (delete-region (match-end 0) (point-at-eol))
2913 (move-marker header-end (match-end 0)))
2914 (goto-char header-end)
2915 (delete-region (point) (point-max))
2917 ;; Produce all the lines that describe custom commands and prefixes
2918 (setq lines nil)
2919 (while (setq entry (pop custom1))
2920 (setq key (car entry) desc (nth 1 entry)
2921 type (nth 2 entry)
2922 match (nth 3 entry))
2923 (if (> (length key) 1)
2924 (add-to-list 'prefixes (string-to-char key))
2925 (setq line
2926 (format
2927 "%-4s%-14s"
2928 (org-add-props (copy-sequence key)
2929 '(face bold))
2930 (cond
2931 ((string-match "\\S-" desc) desc)
2932 ((eq type 'agenda) "Agenda for current week or day")
2933 ((eq type 'agenda*) "Appointments for current week or day")
2934 ((eq type 'alltodo) "List of all TODO entries")
2935 ((eq type 'search) "Word search")
2936 ((eq type 'stuck) "List of stuck projects")
2937 ((eq type 'todo) "TODO keyword")
2938 ((eq type 'tags) "Tags query")
2939 ((eq type 'tags-todo) "Tags (TODO)")
2940 ((eq type 'tags-tree) "Tags tree")
2941 ((eq type 'todo-tree) "TODO kwd tree")
2942 ((eq type 'occur-tree) "Occur tree")
2943 ((functionp type) (if (symbolp type)
2944 (symbol-name type)
2945 "Lambda expression"))
2946 (t "???"))))
2947 (if org-agenda-menu-show-matcher
2948 (setq line
2949 (concat line ": "
2950 (cond
2951 ((stringp match)
2952 (setq match (copy-sequence match))
2953 (org-add-props match nil 'face 'org-warning))
2954 ((listp type)
2955 (format "set of %d commands" (length type))))))
2956 (if (org-string-nw-p match)
2957 (add-text-properties
2958 0 (length line) (list 'help-echo
2959 (concat "Matcher: " match)) line)))
2960 (push line lines)))
2961 (setq lines (nreverse lines))
2962 (when prefixes
2963 (mapc (lambda (x)
2964 (push
2965 (format "%s %s"
2966 (org-add-props (char-to-string x)
2967 nil 'face 'bold)
2968 (or (cdr (assoc (concat selstring
2969 (char-to-string x))
2970 prefix-descriptions))
2971 "Prefix key"))
2972 lines))
2973 prefixes))
2975 ;; Check if we should display in two columns
2976 (if org-agenda-menu-two-columns
2977 (progn
2978 (setq n (length lines)
2979 n1 (+ (/ n 2) (mod n 2))
2980 right (nthcdr n1 lines)
2981 left (copy-sequence lines))
2982 (setcdr (nthcdr (1- n1) left) nil))
2983 (setq left lines right nil))
2984 (while left
2985 (insert "\n" (pop left))
2986 (when right
2987 (if (< (current-column) 40)
2988 (move-to-column 40 t)
2989 (insert " "))
2990 (insert (pop right))))
2992 ;; Make the window the right size
2993 (goto-char (point-min))
2994 (if second-time
2995 (if (not (pos-visible-in-window-p (point-max)))
2996 (org-fit-window-to-buffer))
2997 (setq second-time t)
2998 (org-fit-window-to-buffer))
3000 ;; Ask for selection
3001 (message "Press key for agenda command%s:"
3002 (if (or restrict-ok org-agenda-overriding-restriction)
3003 (if org-agenda-overriding-restriction
3004 " (restriction lock active)"
3005 (if restriction
3006 (format " (restricted to %s)" restriction)
3007 " (unrestricted)"))
3008 ""))
3009 (setq c (read-char-exclusive))
3010 (message "")
3011 (cond
3012 ((assoc (char-to-string c) custom)
3013 (setq selstring (concat selstring (char-to-string c)))
3014 (throw 'exit (cons selstring restriction)))
3015 ((memq c prefixes)
3016 (setq selstring (concat selstring (char-to-string c))
3017 prefixes nil
3018 rmheader (or rmheader t)
3019 custom (delq nil (mapcar
3020 (lambda (x)
3021 (if (or (= (length (car x)) 1)
3022 (/= (string-to-char (car x)) c))
3024 (cons (substring (car x) 1) (cdr x))))
3025 custom))))
3026 ((eq c ?*)
3027 (call-interactively 'org-toggle-sticky-agenda)
3028 (sit-for 2))
3029 ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
3030 (message "Restriction is only possible in Org-mode buffers")
3031 (ding) (sit-for 1))
3032 ((eq c ?1)
3033 (org-agenda-remove-restriction-lock 'noupdate)
3034 (setq restriction 'buffer))
3035 ((eq c ?0)
3036 (org-agenda-remove-restriction-lock 'noupdate)
3037 (setq restriction (if region-p 'region 'subtree)))
3038 ((eq c ?<)
3039 (org-agenda-remove-restriction-lock 'noupdate)
3040 (setq restriction
3041 (cond
3042 ((eq restriction 'buffer)
3043 (if region-p 'region 'subtree))
3044 ((memq restriction '(subtree region))
3045 nil)
3046 (t 'buffer))))
3047 ((eq c ?>)
3048 (org-agenda-remove-restriction-lock 'noupdate)
3049 (setq restriction nil))
3050 ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
3051 (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
3052 ((and (> (length selstring) 0) (eq c ?\d))
3053 (delete-window)
3054 (org-agenda-get-restriction-and-command prefix-descriptions))
3056 ((equal c ?q) (error "Abort"))
3057 (t (user-error "Invalid key %c" c))))))))
3059 (defun org-agenda-fit-window-to-buffer ()
3060 "Fit the window to the buffer size."
3061 (and (memq org-agenda-window-setup '(reorganize-frame))
3062 (fboundp 'fit-window-to-buffer)
3063 (org-fit-window-to-buffer
3065 (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
3066 (floor (* (frame-height) (car org-agenda-window-frame-fractions))))))
3068 (defvar org-cmd nil)
3069 (defvar org-agenda-overriding-cmd nil)
3070 (defvar org-agenda-overriding-arguments nil)
3071 (defvar org-agenda-overriding-cmd-arguments nil)
3072 (defun org-agenda-run-series (name series)
3073 "Run agenda NAME as a SERIES of agenda commands."
3074 (org-let (nth 1 series) '(org-agenda-prepare name))
3075 ;; We need to reset agenda markers here, because when constructing a
3076 ;; block agenda, the individual blocks do not do that.
3077 (org-agenda-reset-markers)
3078 (let* ((org-agenda-multi t)
3079 (redo (list 'org-agenda-run-series name (list 'quote series)))
3080 (cmds (car series))
3081 (gprops (nth 1 series))
3082 match ;; The byte compiler incorrectly complains about this. Keep it!
3083 org-cmd type lprops)
3084 (while (setq org-cmd (pop cmds))
3085 (setq type (car org-cmd)
3086 match (eval (nth 1 org-cmd))
3087 lprops (nth 2 org-cmd))
3088 (let ((org-agenda-overriding-arguments
3089 (if (eq org-agenda-overriding-cmd org-cmd)
3090 (or org-agenda-overriding-arguments
3091 org-agenda-overriding-cmd-arguments))))
3092 (cond
3093 ((eq type 'agenda)
3094 (org-let2 gprops lprops
3095 '(call-interactively 'org-agenda-list)))
3096 ((eq type 'agenda*)
3097 (org-let2 gprops lprops
3098 '(funcall 'org-agenda-list nil nil t)))
3099 ((eq type 'alltodo)
3100 (org-let2 gprops lprops
3101 '(call-interactively 'org-todo-list)))
3102 ((eq type 'search)
3103 (org-let2 gprops lprops
3104 '(org-search-view current-prefix-arg match nil)))
3105 ((eq type 'stuck)
3106 (org-let2 gprops lprops
3107 '(call-interactively 'org-agenda-list-stuck-projects)))
3108 ((eq type 'tags)
3109 (org-let2 gprops lprops
3110 '(org-tags-view current-prefix-arg match)))
3111 ((eq type 'tags-todo)
3112 (org-let2 gprops lprops
3113 '(org-tags-view '(4) match)))
3114 ((eq type 'todo)
3115 (org-let2 gprops lprops
3116 '(org-todo-list match)))
3117 ((fboundp type)
3118 (org-let2 gprops lprops
3119 '(funcall type match)))
3120 (t (error "Invalid type in command series")))))
3121 (widen)
3122 (let ((inhibit-read-only t))
3123 (add-text-properties (point-min) (point-max)
3124 `(org-series t org-series-redo-cmd ,redo)))
3125 (setq org-agenda-redo-command redo)
3126 (goto-char (point-min)))
3127 (org-agenda-fit-window-to-buffer)
3128 (org-let (nth 1 series) '(org-agenda-finalize)))
3130 ;;;###autoload
3131 (defmacro org-batch-agenda (cmd-key &rest parameters)
3132 "Run an agenda command in batch mode and send the result to STDOUT.
3133 If CMD-KEY is a string of length 1, it is used as a key in
3134 `org-agenda-custom-commands' and triggers this command. If it is a
3135 longer string it is used as a tags/todo match string.
3136 Parameters are alternating variable names and values that will be bound
3137 before running the agenda command."
3138 (org-eval-in-environment (org-make-parameter-alist parameters)
3139 (let (org-agenda-sticky)
3140 (if (> (length cmd-key) 2)
3141 (org-tags-view nil cmd-key)
3142 (org-agenda nil cmd-key))))
3143 (set-buffer org-agenda-buffer-name)
3144 (princ (buffer-string)))
3146 (defvar org-agenda-info nil)
3148 ;;;###autoload
3149 (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
3150 "Run an agenda command in batch mode and send the result to STDOUT.
3151 If CMD-KEY is a string of length 1, it is used as a key in
3152 `org-agenda-custom-commands' and triggers this command. If it is a
3153 longer string it is used as a tags/todo match string.
3154 Parameters are alternating variable names and values that will be bound
3155 before running the agenda command.
3157 The output gives a line for each selected agenda item. Each
3158 item is a list of comma-separated values, like this:
3160 category,head,type,todo,tags,date,time,extra,priority-l,priority-n
3162 category The category of the item
3163 head The headline, without TODO kwd, TAGS and PRIORITY
3164 type The type of the agenda entry, can be
3165 todo selected in TODO match
3166 tagsmatch selected in tags match
3167 diary imported from diary
3168 deadline a deadline on given date
3169 scheduled scheduled on given date
3170 timestamp entry has timestamp on given date
3171 closed entry was closed on given date
3172 upcoming-deadline warning about deadline
3173 past-scheduled forwarded scheduled item
3174 block entry has date block including g. date
3175 todo The todo keyword, if any
3176 tags All tags including inherited ones, separated by colons
3177 date The relevant date, like 2007-2-14
3178 time The time, like 15:00-16:50
3179 extra Sting with extra planning info
3180 priority-l The priority letter if any was given
3181 priority-n The computed numerical priority
3182 agenda-day The day in the agenda where this is listed"
3183 (org-eval-in-environment (append '((org-agenda-remove-tags t))
3184 (org-make-parameter-alist parameters))
3185 (if (> (length cmd-key) 2)
3186 (org-tags-view nil cmd-key)
3187 (org-agenda nil cmd-key)))
3188 (set-buffer org-agenda-buffer-name)
3189 (let* ((lines (org-split-string (buffer-string) "\n"))
3190 line)
3191 (while (setq line (pop lines))
3192 (catch 'next
3193 (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
3194 (setq org-agenda-info
3195 (org-fix-agenda-info (text-properties-at 0 line)))
3196 (princ
3197 (mapconcat 'org-agenda-export-csv-mapper
3198 '(org-category txt type todo tags date time extra
3199 priority-letter priority agenda-day)
3200 ","))
3201 (princ "\n")))))
3203 (defun org-fix-agenda-info (props)
3204 "Make sure all properties on an agenda item have a canonical form.
3205 This ensures the export commands can easily use it."
3206 (let (tmp re)
3207 (when (setq tmp (plist-get props 'tags))
3208 (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
3209 (when (setq tmp (plist-get props 'date))
3210 (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
3211 (let ((calendar-date-display-form '(year "-" month "-" day)))
3212 '((format "%4d, %9s %2s, %4s" dayname monthname day year))
3214 (setq tmp (calendar-date-string tmp)))
3215 (setq props (plist-put props 'date tmp)))
3216 (when (setq tmp (plist-get props 'day))
3217 (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
3218 (let ((calendar-date-display-form '(year "-" month "-" day)))
3219 (setq tmp (calendar-date-string tmp)))
3220 (setq props (plist-put props 'day tmp))
3221 (setq props (plist-put props 'agenda-day tmp)))
3222 (when (setq tmp (plist-get props 'txt))
3223 (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
3224 (plist-put props 'priority-letter (match-string 1 tmp))
3225 (setq tmp (replace-match "" t t tmp)))
3226 (when (and (setq re (plist-get props 'org-todo-regexp))
3227 (setq re (concat "\\`\\.*" re " ?"))
3228 (string-match re tmp))
3229 (plist-put props 'todo (match-string 1 tmp))
3230 (setq tmp (replace-match "" t t tmp)))
3231 (plist-put props 'txt tmp)))
3232 props)
3234 (defun org-agenda-export-csv-mapper (prop)
3235 (let ((res (plist-get org-agenda-info prop)))
3236 (setq res
3237 (cond
3238 ((not res) "")
3239 ((stringp res) res)
3240 (t (prin1-to-string res))))
3241 (while (string-match "," res)
3242 (setq res (replace-match ";" t t res)))
3243 (org-trim res)))
3245 ;;;###autoload
3246 (defun org-store-agenda-views (&rest parameters)
3247 "Store agenda views."
3248 (interactive)
3249 (eval (list 'org-batch-store-agenda-views)))
3251 ;;;###autoload
3252 (defmacro org-batch-store-agenda-views (&rest parameters)
3253 "Run all custom agenda commands that have a file argument."
3254 (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
3255 (pop-up-frames nil)
3256 (dir default-directory)
3257 (pars (org-make-parameter-alist parameters))
3258 cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
3259 (save-window-excursion
3260 (while cmds
3261 (setq cmd (pop cmds)
3262 thiscmdkey (car cmd)
3263 thiscmdcmd (cdr cmd)
3264 match (nth 2 thiscmdcmd)
3265 bufname (if org-agenda-sticky
3266 (or (and (stringp match)
3267 (format "*Org Agenda(%s:%s)*" thiscmdkey match))
3268 (format "*Org Agenda(%s)*" thiscmdkey))
3269 org-agenda-buffer-name)
3270 cmd-or-set (nth 2 cmd)
3271 opts (nth (if (listp cmd-or-set) 3 4) cmd)
3272 files (nth (if (listp cmd-or-set) 4 5) cmd))
3273 (if (stringp files) (setq files (list files)))
3274 (when files
3275 (org-eval-in-environment (append org-agenda-exporter-settings
3276 opts pars)
3277 (org-agenda nil thiscmdkey))
3278 (set-buffer bufname)
3279 (while files
3280 (org-eval-in-environment (append org-agenda-exporter-settings
3281 opts pars)
3282 (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
3283 (and (get-buffer bufname)
3284 (kill-buffer bufname)))))))
3286 (defvar org-agenda-current-span nil
3287 "The current span used in the agenda view.") ; local variable in the agenda buffer
3288 (defun org-agenda-mark-header-line (pos)
3289 "Mark the line at POS as an agenda structure header."
3290 (save-excursion
3291 (goto-char pos)
3292 (put-text-property (point-at-bol) (point-at-eol)
3293 'org-agenda-structural-header t)
3294 (when org-agenda-title-append
3295 (put-text-property (point-at-bol) (point-at-eol)
3296 'org-agenda-title-append org-agenda-title-append))))
3298 (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
3299 (defvar org-agenda-write-buffer-name "Agenda View")
3300 (defun org-agenda-write (file &optional open nosettings agenda-bufname)
3301 "Write the current buffer (an agenda view) as a file.
3302 Depending on the extension of the file name, plain text (.txt),
3303 HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
3304 If the extension is .ics, run icalendar export over all files used
3305 to construct the agenda and limit the export to entries listed in the
3306 agenda now.
3307 If the extension is .org, collect all subtrees corresponding to the
3308 agenda entries and add them in an .org file.
3309 With prefix argument OPEN, open the new file immediately.
3310 If NOSETTINGS is given, do not scope the settings of
3311 `org-agenda-exporter-settings' into the export commands. This is used when
3312 the settings have already been scoped and we do not wish to overrule other,
3313 higher priority settings.
3314 If AGENDA-BUFFER-NAME, use this as the buffer name for the agenda to write."
3315 (interactive "FWrite agenda to file: \nP")
3316 (if (or (not (file-writable-p file))
3317 (and (file-exists-p file)
3318 (if (org-called-interactively-p 'any)
3319 (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
3320 (user-error "Cannot write agenda to file %s" file))
3321 (org-let (if nosettings nil org-agenda-exporter-settings)
3322 '(save-excursion
3323 (save-window-excursion
3324 (org-agenda-mark-filtered-text)
3325 (let ((bs (copy-sequence (buffer-string))) beg content)
3326 (org-agenda-unmark-filtered-text)
3327 (with-temp-buffer
3328 (rename-buffer org-agenda-write-buffer-name t)
3329 (set-buffer-modified-p nil)
3330 (insert bs)
3331 (org-agenda-remove-marked-text 'org-filtered)
3332 (while (setq beg (text-property-any (point-min) (point-max)
3333 'org-filtered t))
3334 (delete-region
3335 beg (or (next-single-property-change beg 'org-filtered)
3336 (point-max))))
3337 (run-hooks 'org-agenda-before-write-hook)
3338 (cond
3339 ((org-bound-and-true-p org-mobile-creating-agendas)
3340 (org-mobile-write-agenda-for-mobile file))
3341 ((string-match "\\.org\\'" file)
3342 (let (content p m message-log-max)
3343 (goto-char (point-min))
3344 (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
3345 (goto-char p)
3346 (setq m (get-text-property (point) 'org-hd-marker))
3347 (when m
3348 (push (save-excursion
3349 (set-buffer (marker-buffer m))
3350 (goto-char m)
3351 (org-copy-subtree 1 nil t t)
3352 org-subtree-clip)
3353 content)))
3354 (find-file file)
3355 (erase-buffer)
3356 (mapcar (lambda (s) (org-paste-subtree 1 s)) (reverse content))
3357 (write-file file)
3358 (kill-buffer (current-buffer))
3359 (message "Org file written to %s" file)))
3360 ((string-match "\\.html?\\'" file)
3361 (require 'htmlize)
3362 (set-buffer (htmlize-buffer (current-buffer)))
3363 (when org-agenda-export-html-style
3364 ;; replace <style> section with org-agenda-export-html-style
3365 (goto-char (point-min))
3366 (kill-region (- (search-forward "<style") 6)
3367 (search-forward "</style>"))
3368 (insert org-agenda-export-html-style))
3369 (write-file file)
3370 (kill-buffer (current-buffer))
3371 (message "HTML written to %s" file))
3372 ((string-match "\\.ps\\'" file)
3373 (require 'ps-print)
3374 (ps-print-buffer-with-faces file)
3375 (message "Postscript written to %s" file))
3376 ((string-match "\\.pdf\\'" file)
3377 (require 'ps-print)
3378 (ps-print-buffer-with-faces
3379 (concat (file-name-sans-extension file) ".ps"))
3380 (call-process "ps2pdf" nil nil nil
3381 (expand-file-name
3382 (concat (file-name-sans-extension file) ".ps"))
3383 (expand-file-name file))
3384 (delete-file (concat (file-name-sans-extension file) ".ps"))
3385 (message "PDF written to %s" file))
3386 ((string-match "\\.ics\\'" file)
3387 (require 'ox-icalendar)
3388 (org-icalendar-export-current-agenda (expand-file-name file)))
3390 (let ((bs (buffer-string)))
3391 (find-file file)
3392 (erase-buffer)
3393 (insert bs)
3394 (save-buffer 0)
3395 (kill-buffer (current-buffer))
3396 (message "Plain text written to %s" file))))))))
3397 (set-buffer (or agenda-bufname
3398 (and (org-called-interactively-p 'any) (buffer-name))
3399 org-agenda-buffer-name)))
3400 (when open (org-open-file file)))
3402 (defvar org-agenda-tag-filter-overlays nil)
3403 (defvar org-agenda-cat-filter-overlays nil)
3404 (defvar org-agenda-re-filter-overlays nil)
3406 (defun org-agenda-mark-filtered-text ()
3407 "Mark all text hidden by filtering with a text property."
3408 (let ((inhibit-read-only t))
3409 (mapc
3410 (lambda (o)
3411 (when (equal (overlay-buffer o) (current-buffer))
3412 (put-text-property
3413 (overlay-start o) (overlay-end o)
3414 'org-filtered t)))
3415 (append org-agenda-tag-filter-overlays
3416 org-agenda-cat-filter-overlays
3417 org-agenda-re-filter-overlays))))
3419 (defun org-agenda-unmark-filtered-text ()
3420 "Remove the filtering text property."
3421 (let ((inhibit-read-only t))
3422 (remove-text-properties (point-min) (point-max) '(org-filtered t))))
3424 (defun org-agenda-remove-marked-text (property &optional value)
3425 "Delete all text marked with VALUE of PROPERTY.
3426 VALUE defaults to t."
3427 (let (beg)
3428 (setq value (or value t))
3429 (while (setq beg (text-property-any (point-min) (point-max)
3430 property value))
3431 (delete-region
3432 beg (or (next-single-property-change beg 'org-filtered)
3433 (point-max))))))
3435 (defun org-agenda-add-entry-text ()
3436 "Add entry text to agenda lines.
3437 This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
3438 entry text following headings shown in the agenda.
3439 Drawers will be excluded, also the line with scheduling/deadline info."
3440 (when (and (> org-agenda-add-entry-text-maxlines 0)
3441 (not (org-bound-and-true-p org-mobile-creating-agendas)))
3442 (let (m txt)
3443 (goto-char (point-min))
3444 (while (not (eobp))
3445 (if (not (setq m (org-get-at-bol 'org-hd-marker)))
3446 (beginning-of-line 2)
3447 (setq txt (org-agenda-get-some-entry-text
3448 m org-agenda-add-entry-text-maxlines " > "))
3449 (end-of-line 1)
3450 (if (string-match "\\S-" txt)
3451 (insert "\n" txt)
3452 (or (eobp) (forward-char 1))))))))
3454 (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
3455 &rest keep)
3456 "Extract entry text from MARKER, at most N-LINES lines.
3457 This will ignore drawers etc, just get the text.
3458 If INDENT is given, prefix every line with this string. If KEEP is
3459 given, it is a list of symbols, defining stuff that should not be
3460 removed from the entry content. Currently only `planning' is allowed here."
3461 (let (txt drawer-re kwd-time-re ind)
3462 (save-excursion
3463 (with-current-buffer (marker-buffer marker)
3464 (if (not (derived-mode-p 'org-mode))
3465 (setq txt "")
3466 (save-excursion
3467 (save-restriction
3468 (widen)
3469 (goto-char marker)
3470 (end-of-line 1)
3471 (setq txt (buffer-substring
3472 (min (1+ (point)) (point-max))
3473 (progn (outline-next-heading) (point)))
3474 drawer-re org-drawer-regexp
3475 kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
3476 ".*\n?"))
3477 (with-temp-buffer
3478 (insert txt)
3479 (when org-agenda-add-entry-text-descriptive-links
3480 (goto-char (point-min))
3481 (while (org-activate-bracket-links (point-max))
3482 (add-text-properties (match-beginning 0) (match-end 0)
3483 '(face org-link))))
3484 (goto-char (point-min))
3485 (while (re-search-forward org-bracket-link-regexp (point-max) t)
3486 (set-text-properties (match-beginning 0) (match-end 0)
3487 nil))
3488 (goto-char (point-min))
3489 (while (re-search-forward drawer-re nil t)
3490 (delete-region
3491 (match-beginning 0)
3492 (progn (re-search-forward
3493 "^[ \t]*:END:.*\n?" nil 'move)
3494 (point))))
3495 (unless (member 'planning keep)
3496 (goto-char (point-min))
3497 (while (re-search-forward kwd-time-re nil t)
3498 (replace-match "")))
3499 (goto-char (point-min))
3500 (when org-agenda-entry-text-exclude-regexps
3501 (let ((re-list org-agenda-entry-text-exclude-regexps) re)
3502 (while (setq re (pop re-list))
3503 (goto-char (point-min))
3504 (while (re-search-forward re nil t)
3505 (replace-match "")))))
3506 (goto-char (point-max))
3507 (skip-chars-backward " \t\n")
3508 (if (looking-at "[ \t\n]+\\'") (replace-match ""))
3510 ;; find and remove min common indentation
3511 (goto-char (point-min))
3512 (untabify (point-min) (point-max))
3513 (setq ind (org-get-indentation))
3514 (while (not (eobp))
3515 (unless (looking-at "[ \t]*$")
3516 (setq ind (min ind (org-get-indentation))))
3517 (beginning-of-line 2))
3518 (goto-char (point-min))
3519 (while (not (eobp))
3520 (unless (looking-at "[ \t]*$")
3521 (move-to-column ind)
3522 (delete-region (point-at-bol) (point)))
3523 (beginning-of-line 2))
3525 (run-hooks 'org-agenda-entry-text-cleanup-hook)
3527 (goto-char (point-min))
3528 (when indent
3529 (while (and (not (eobp)) (re-search-forward "^" nil t))
3530 (replace-match indent t t)))
3531 (goto-char (point-min))
3532 (while (looking-at "[ \t]*\n") (replace-match ""))
3533 (goto-char (point-max))
3534 (when (> (org-current-line)
3535 n-lines)
3536 (org-goto-line (1+ n-lines))
3537 (backward-char 1))
3538 (setq txt (buffer-substring (point-min) (point)))))))))
3539 txt))
3541 (defun org-check-for-org-mode ()
3542 "Make sure current buffer is in org-mode. Error if not."
3543 (or (derived-mode-p 'org-mode)
3544 (error "Cannot execute org-mode agenda command on buffer in %s"
3545 major-mode)))
3547 ;;; Agenda prepare and finalize
3549 (defvar org-agenda-multi nil) ; dynamically scoped
3550 (defvar org-agenda-pre-window-conf nil)
3551 (defvar org-agenda-columns-active nil)
3552 (defvar org-agenda-name nil)
3553 (defvar org-agenda-tag-filter nil)
3554 (defvar org-agenda-category-filter nil)
3555 (defvar org-agenda-regexp-filter nil)
3556 (defvar org-agenda-top-headline-filter nil)
3557 (defvar org-agenda-tag-filter-while-redo nil)
3558 (defvar org-agenda-tag-filter-preset nil
3559 "A preset of the tags filter used for secondary agenda filtering.
3560 This must be a list of strings, each string must be a single tag preceded
3561 by \"+\" or \"-\".
3562 This variable should not be set directly, but agenda custom commands can
3563 bind it in the options section. The preset filter is a global property of
3564 the entire agenda view. In a block agenda, it will not work reliably to
3565 define a filter for one of the individual blocks. You need to set it in
3566 the global options and expect it to be applied to the entire view.")
3568 (defvar org-agenda-category-filter-preset nil
3569 "A preset of the category filter used for secondary agenda filtering.
3570 This must be a list of strings, each string must be a single category
3571 preceded by \"+\" or \"-\".
3572 This variable should not be set directly, but agenda custom commands can
3573 bind it in the options section. The preset filter is a global property of
3574 the entire agenda view. In a block agenda, it will not work reliably to
3575 define a filter for one of the individual blocks. You need to set it in
3576 the global options and expect it to be applied to the entire view.")
3578 (defvar org-agenda-regexp-filter-preset nil
3579 "A preset of the regexp filter used for secondary agenda filtering.
3580 This must be a list of strings, each string must be a single category
3581 preceded by \"+\" or \"-\".
3582 This variable should not be set directly, but agenda custom commands can
3583 bind it in the options section. The preset filter is a global property of
3584 the entire agenda view. In a block agenda, it will not work reliably to
3585 define a filter for one of the individual blocks. You need to set it in
3586 the global options and expect it to be applied to the entire view.")
3588 (defun org-agenda-use-sticky-p ()
3589 "Return non-nil if an agenda buffer named
3590 `org-agenda-buffer-name' exists and should be shown instead of
3591 generating a new one."
3592 (and
3593 ;; turned off by user
3594 org-agenda-sticky
3595 ;; For multi-agenda buffer already exists
3596 (not org-agenda-multi)
3597 ;; buffer found
3598 (get-buffer org-agenda-buffer-name)
3599 ;; C-u parameter is same as last call
3600 (with-current-buffer (get-buffer org-agenda-buffer-name)
3601 (and
3602 (equal current-prefix-arg
3603 org-agenda-last-prefix-arg)
3604 ;; In case user turned stickiness on, while having existing
3605 ;; Agenda buffer active, don't reuse that buffer, because it
3606 ;; does not have org variables local
3607 org-agenda-this-buffer-is-sticky))))
3609 (defun org-agenda-prepare-window (abuf)
3610 "Setup agenda buffer in the window."
3611 (let* ((awin (get-buffer-window abuf))
3612 wconf)
3613 (cond
3614 ((equal (current-buffer) abuf) nil)
3615 (awin (select-window awin))
3616 ((not (setq wconf (current-window-configuration))))
3617 ((equal org-agenda-window-setup 'current-window)
3618 (org-pop-to-buffer-same-window abuf))
3619 ((equal org-agenda-window-setup 'other-window)
3620 (org-switch-to-buffer-other-window abuf))
3621 ((equal org-agenda-window-setup 'other-frame)
3622 (switch-to-buffer-other-frame abuf))
3623 ((equal org-agenda-window-setup 'reorganize-frame)
3624 (delete-other-windows)
3625 (org-switch-to-buffer-other-window abuf)))
3626 ;; additional test in case agenda is invoked from within agenda
3627 ;; buffer via elisp link
3628 (unless (equal (current-buffer) abuf)
3629 (org-pop-to-buffer-same-window abuf))
3630 (setq org-agenda-pre-window-conf
3631 (or org-agenda-pre-window-conf wconf))))
3633 (defun org-agenda-prepare (&optional name)
3634 (if (org-agenda-use-sticky-p)
3635 (progn
3636 ;; Popup existing buffer
3637 (org-agenda-prepare-window (get-buffer org-agenda-buffer-name))
3638 (message "Sticky Agenda buffer, use `r' to refresh")
3639 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
3640 (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
3641 (setq org-todo-keywords-for-agenda nil)
3642 (setq org-drawers-for-agenda nil)
3643 (unless org-agenda-persistent-filter
3644 (setq org-agenda-tag-filter nil
3645 org-agenda-category-filter nil
3646 org-agenda-regexp-filter nil))
3647 (put 'org-agenda-tag-filter :preset-filter
3648 org-agenda-tag-filter-preset)
3649 (put 'org-agenda-category-filter :preset-filter
3650 org-agenda-category-filter-preset)
3651 (put 'org-agenda-regexp-filter :preset-filter
3652 org-agenda-regexp-filter-preset)
3653 (if org-agenda-multi
3654 (progn
3655 (setq buffer-read-only nil)
3656 (goto-char (point-max))
3657 (unless (or (bobp) org-agenda-compact-blocks
3658 (not org-agenda-block-separator))
3659 (insert "\n"
3660 (if (stringp org-agenda-block-separator)
3661 org-agenda-block-separator
3662 (make-string (window-width) org-agenda-block-separator))
3663 "\n"))
3664 (narrow-to-region (point) (point-max)))
3665 (setq org-done-keywords-for-agenda nil)
3667 ;; Setting any org variables that are in org-agenda-local-vars
3668 ;; list need to be done after the prepare call
3669 (org-agenda-prepare-window (get-buffer-create org-agenda-buffer-name))
3670 (setq buffer-read-only nil)
3671 (org-agenda-reset-markers)
3672 (let ((inhibit-read-only t)) (erase-buffer))
3673 (org-agenda-mode)
3674 (setq org-agenda-buffer (current-buffer))
3675 (setq org-agenda-contributing-files nil)
3676 (setq org-agenda-columns-active nil)
3677 (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
3678 (setq org-todo-keywords-for-agenda
3679 (org-uniquify org-todo-keywords-for-agenda))
3680 (setq org-done-keywords-for-agenda
3681 (org-uniquify org-done-keywords-for-agenda))
3682 (setq org-drawers-for-agenda (org-uniquify org-drawers-for-agenda))
3683 (setq org-agenda-last-prefix-arg current-prefix-arg)
3684 (setq org-agenda-this-buffer-name org-agenda-buffer-name)
3685 (and name (not org-agenda-name)
3686 (org-set-local 'org-agenda-name name)))
3687 (setq buffer-read-only nil)))
3689 (defvar org-agenda-overriding-columns-format) ; From org-colview.el
3690 (defun org-agenda-finalize ()
3691 "Finishing touch for the agenda buffer, called just before displaying it."
3692 (unless org-agenda-multi
3693 (save-excursion
3694 (let ((inhibit-read-only t))
3695 (goto-char (point-min))
3696 (save-excursion
3697 (while (org-activate-bracket-links (point-max))
3698 (add-text-properties (match-beginning 0) (match-end 0)
3699 '(face org-link))))
3700 (save-excursion
3701 (while (org-activate-plain-links (point-max))
3702 (add-text-properties (match-beginning 0) (match-end 0)
3703 '(face org-link))))
3704 (unless (eq org-agenda-remove-tags t)
3705 (org-agenda-align-tags))
3706 (unless org-agenda-with-colors
3707 (remove-text-properties (point-min) (point-max) '(face nil)))
3708 (if (and (boundp 'org-agenda-overriding-columns-format)
3709 org-agenda-overriding-columns-format)
3710 (org-set-local 'org-agenda-overriding-columns-format
3711 org-agenda-overriding-columns-format))
3712 (if (and (boundp 'org-agenda-view-columns-initially)
3713 org-agenda-view-columns-initially)
3714 (org-agenda-columns))
3715 (when org-agenda-fontify-priorities
3716 (org-agenda-fontify-priorities))
3717 (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
3718 (org-agenda-dim-blocked-tasks))
3719 ;; We need to widen when `org-agenda-finalize' is called from
3720 ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in')
3721 (when org-clock-current-task
3722 (save-restriction
3723 (widen)
3724 (org-agenda-mark-clocking-task)))
3725 (when org-agenda-entry-text-mode
3726 (org-agenda-entry-text-hide)
3727 (org-agenda-entry-text-show))
3728 (if (and (functionp 'org-habit-insert-consistency-graphs)
3729 (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
3730 (org-habit-insert-consistency-graphs))
3731 (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
3732 (unless (or (eq org-agenda-show-inherited-tags 'always)
3733 (and (listp org-agenda-show-inherited-tags)
3734 (memq org-agenda-type org-agenda-show-inherited-tags))
3735 (and (eq org-agenda-show-inherited-tags t)
3736 (or (eq org-agenda-use-tag-inheritance t)
3737 (and (listp org-agenda-use-tag-inheritance)
3738 (not (memq org-agenda-type
3739 org-agenda-use-tag-inheritance))))))
3740 (let (mrk)
3741 (save-excursion
3742 (goto-char (point-min))
3743 (while (equal (forward-line) 0)
3744 (when (setq mrk (or (get-text-property (point) 'org-hd-marker)
3745 (get-text-property (point) 'org-hd-marker)))
3746 (put-text-property (point-at-bol) (point-at-eol)
3747 'tags (org-with-point-at mrk
3748 (delete-dups
3749 (mapcar 'downcase (org-get-tags-at))))))))))
3750 (run-hooks 'org-agenda-finalize-hook)
3751 (when (or org-agenda-tag-filter (get 'org-agenda-tag-filter :preset-filter))
3752 (org-agenda-filter-apply org-agenda-tag-filter 'tag))
3753 (when (or org-agenda-category-filter (get 'org-agenda-category-filter :preset-filter))
3754 (org-agenda-filter-apply org-agenda-category-filter 'category))
3755 (when (or org-agenda-regexp-filter (get 'org-agenda-regexp-filter :preset-filter))
3756 (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
3757 (org-add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
3759 (defun org-agenda-mark-clocking-task ()
3760 "Mark the current clock entry in the agenda if it is present."
3761 (org-agenda-unmark-clocking-task)
3762 (when (marker-buffer org-clock-hd-marker)
3763 (save-excursion
3764 (goto-char (point-min))
3765 (let (s ov)
3766 (while (setq s (next-single-property-change (point) 'org-hd-marker))
3767 (goto-char s)
3768 (when (equal (org-get-at-bol 'org-hd-marker)
3769 org-clock-hd-marker)
3770 (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
3771 (overlay-put ov 'type 'org-agenda-clocking)
3772 (overlay-put ov 'face 'org-agenda-clocking)
3773 (overlay-put ov 'help-echo
3774 "The clock is running in this item")))))))
3776 (defun org-agenda-unmark-clocking-task ()
3777 "Unmark the current clocking task."
3778 (mapc (lambda (o)
3779 (if (eq (overlay-get o 'type) 'org-agenda-clocking)
3780 (delete-overlay o)))
3781 (overlays-in (point-min) (point-max))))
3783 (defun org-agenda-fontify-priorities ()
3784 "Make highest priority lines bold, and lowest italic."
3785 (interactive)
3786 (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
3787 (delete-overlay o)))
3788 (overlays-in (point-min) (point-max)))
3789 (save-excursion
3790 (let (b e p ov h l)
3791 (goto-char (point-min))
3792 (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
3793 (setq h (or (get-char-property (point) 'org-highest-priority)
3794 org-highest-priority)
3795 l (or (get-char-property (point) 'org-lowest-priority)
3796 org-lowest-priority)
3797 p (string-to-char (match-string 1))
3798 b (match-beginning 0)
3799 e (if (eq org-agenda-fontify-priorities 'cookies)
3800 (match-end 0)
3801 (point-at-eol))
3802 ov (make-overlay b e))
3803 (overlay-put
3804 ov 'face
3805 (cons (cond ((org-face-from-face-or-color
3806 'priority nil
3807 (cdr (assoc p org-priority-faces))))
3808 ((and (listp org-agenda-fontify-priorities)
3809 (org-face-from-face-or-color
3810 'priority nil
3811 (cdr (assoc p org-agenda-fontify-priorities)))))
3812 ((equal p l) 'italic)
3813 ((equal p h) 'bold))
3814 'org-priority))
3815 (overlay-put ov 'org-type 'org-priority)))))
3817 (defun org-agenda-dim-blocked-tasks (&optional invisible)
3818 "Dim currently blocked TODO's in the agenda display.
3819 When INVISIBLE is non-nil, hide currently blocked TODO instead of
3820 dimming them."
3821 (interactive "P")
3822 (when (org-called-interactively-p 'interactive)
3823 (message "Dim or hide blocked tasks..."))
3824 (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-blocked-todo)
3825 (delete-overlay o)))
3826 (overlays-in (point-min) (point-max)))
3827 (save-excursion
3828 (let ((inhibit-read-only t)
3829 (org-depend-tag-blocked nil)
3830 (invis (or (not (null invisible))
3831 (eq org-agenda-dim-blocked-tasks 'invisible)))
3832 org-blocked-by-checkboxes
3833 invis1 b e p ov h l)
3834 (goto-char (point-min))
3835 (while (let ((pos (next-single-property-change (point) 'todo-state)))
3836 (and pos (goto-char (1+ pos))))
3837 (setq org-blocked-by-checkboxes nil invis1 invis)
3838 (let ((marker (org-get-at-bol 'org-hd-marker)))
3839 (when (and marker
3840 (with-current-buffer (marker-buffer marker)
3841 (save-excursion (goto-char marker)
3842 (org-entry-blocked-p))))
3843 (if org-blocked-by-checkboxes (setq invis1 nil))
3844 (setq b (if invis1
3845 (max (point-min) (1- (point-at-bol)))
3846 (point-at-bol))
3847 e (point-at-eol)
3848 ov (make-overlay b e))
3849 (if invis1
3850 (overlay-put ov 'invisible t)
3851 (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
3852 (overlay-put ov 'org-type 'org-blocked-todo))))))
3853 (when (org-called-interactively-p 'interactive)
3854 (message "Dim or hide blocked tasks...done")))
3856 (defvar org-agenda-skip-function nil
3857 "Function to be called at each match during agenda construction.
3858 If this function returns nil, the current match should not be skipped.
3859 Otherwise, the function must return a position from where the search
3860 should be continued.
3861 This may also be a Lisp form, it will be evaluated.
3862 Never set this variable using `setq' or so, because then it will apply
3863 to all future agenda commands. If you do want a global skipping condition,
3864 use the option `org-agenda-skip-function-global' instead.
3865 The correct usage for `org-agenda-skip-function' is to bind it with
3866 `let' to scope it dynamically into the agenda-constructing command.
3867 A good way to set it is through options in `org-agenda-custom-commands'.")
3869 (defun org-agenda-skip ()
3870 "Throw to `:skip' in places that should be skipped.
3871 Also moves point to the end of the skipped region, so that search can
3872 continue from there."
3873 (let ((p (point-at-bol)) to)
3874 (when (or
3875 (save-excursion (goto-char p) (looking-at comment-start-skip))
3876 (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
3877 (get-text-property p :org-archived)
3878 (org-end-of-subtree t))
3879 (and org-agenda-skip-comment-trees
3880 (get-text-property p :org-comment)
3881 (org-end-of-subtree t))
3882 (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
3883 (org-agenda-skip-eval org-agenda-skip-function)))
3884 (goto-char to))
3885 (org-in-src-block-p t))
3886 (throw :skip t))))
3888 (defun org-agenda-skip-eval (form)
3889 "If FORM is a function or a list, call (or eval) it and return the result.
3890 `save-excursion' and `save-match-data' are wrapped around the call, so point
3891 and match data are returned to the previous state no matter what these
3892 functions do."
3893 (let (fp)
3894 (and form
3895 (or (setq fp (functionp form))
3896 (consp form))
3897 (save-excursion
3898 (save-match-data
3899 (if fp
3900 (funcall form)
3901 (eval form)))))))
3903 (defvar org-agenda-markers nil
3904 "List of all currently active markers created by `org-agenda'.")
3905 (defvar org-agenda-last-marker-time (org-float-time)
3906 "Creation time of the last agenda marker.")
3908 (defun org-agenda-new-marker (&optional pos)
3909 "Return a new agenda marker.
3910 Org-mode keeps a list of these markers and resets them when they are
3911 no longer in use."
3912 (let ((m (copy-marker (or pos (point)))))
3913 (setq org-agenda-last-marker-time (org-float-time))
3914 (if org-agenda-buffer
3915 (with-current-buffer org-agenda-buffer
3916 (push m org-agenda-markers))
3917 (push m org-agenda-markers))
3920 (defun org-agenda-reset-markers ()
3921 "Reset markers created by `org-agenda'."
3922 (while org-agenda-markers
3923 (move-marker (pop org-agenda-markers) nil)))
3925 (defun org-agenda-save-markers-for-cut-and-paste (beg end)
3926 "Save relative positions of markers in region.
3927 This check for agenda markers in all agenda buffers currently active."
3928 (dolist (buf (buffer-list))
3929 (with-current-buffer buf
3930 (when (eq major-mode 'org-agenda-mode)
3931 (mapc (lambda (m) (org-check-and-save-marker m beg end))
3932 org-agenda-markers)))))
3934 ;;; Entry text mode
3936 (defun org-agenda-entry-text-show-here ()
3937 "Add some text from the entry as context to the current line."
3938 (let (m txt o)
3939 (setq m (org-get-at-bol 'org-hd-marker))
3940 (unless (marker-buffer m)
3941 (error "No marker points to an entry here"))
3942 (setq txt (concat "\n" (org-no-properties
3943 (org-agenda-get-some-entry-text
3944 m org-agenda-entry-text-maxlines
3945 org-agenda-entry-text-leaders))))
3946 (when (string-match "\\S-" txt)
3947 (setq o (make-overlay (point-at-bol) (point-at-eol)))
3948 (overlay-put o 'evaporate t)
3949 (overlay-put o 'org-overlay-type 'agenda-entry-content)
3950 (overlay-put o 'after-string txt))))
3952 (defun org-agenda-entry-text-show ()
3953 "Add entry context for all agenda lines."
3954 (interactive)
3955 (save-excursion
3956 (goto-char (point-max))
3957 (beginning-of-line 1)
3958 (while (not (bobp))
3959 (when (org-get-at-bol 'org-hd-marker)
3960 (org-agenda-entry-text-show-here))
3961 (beginning-of-line 0))))
3963 (defun org-agenda-entry-text-hide ()
3964 "Remove any shown entry context."
3965 (delq nil
3966 (mapcar (lambda (o)
3967 (if (eq (overlay-get o 'org-overlay-type)
3968 'agenda-entry-content)
3969 (progn (delete-overlay o) t)))
3970 (overlays-in (point-min) (point-max)))))
3972 (defun org-agenda-get-day-face (date)
3973 "Return the face DATE should be displayed with."
3974 (or (and (functionp org-agenda-day-face-function)
3975 (funcall org-agenda-day-face-function date))
3976 (cond ((org-agenda-todayp date)
3977 'org-agenda-date-today)
3978 ((member (calendar-day-of-week date) org-agenda-weekend-days)
3979 'org-agenda-date-weekend)
3980 (t 'org-agenda-date))))
3982 ;;; Agenda timeline
3984 (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
3986 (defun org-timeline (&optional dotodo)
3987 "Show a time-sorted view of the entries in the current org file.
3988 Only entries with a time stamp of today or later will be listed. With
3989 \\[universal-argument] prefix, all unfinished TODO items will also be shown,
3990 under the current date.
3991 If the buffer contains an active region, only check the region for
3992 dates."
3993 (interactive "P")
3994 (let* ((dopast t)
3995 (org-agenda-show-log-scoped org-agenda-show-log)
3996 (org-agenda-show-log org-agenda-show-log-scoped)
3997 (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
3998 (current-buffer))))
3999 (date (calendar-current-date))
4000 (beg (if (org-region-active-p) (region-beginning) (point-min)))
4001 (end (if (org-region-active-p) (region-end) (point-max)))
4002 (day-numbers (org-get-all-dates
4003 beg end 'no-ranges
4004 t org-agenda-show-log-scoped ; always include today
4005 org-timeline-show-empty-dates))
4006 (org-deadline-warning-days 0)
4007 (org-agenda-only-exact-dates t)
4008 (today (org-today))
4009 (past t)
4010 args
4011 s e rtn d emptyp)
4012 (setq org-agenda-redo-command
4013 (list 'let
4014 (list (list 'org-agenda-show-log 'org-agenda-show-log))
4015 (list 'org-switch-to-buffer-other-window (current-buffer))
4016 (list 'org-timeline (list 'quote dotodo))))
4017 (put 'org-agenda-redo-command 'org-lprops nil)
4018 (if (not dopast)
4019 ;; Remove past dates from the list of dates.
4020 (setq day-numbers (delq nil (mapcar (lambda(x)
4021 (if (>= x today) x nil))
4022 day-numbers))))
4023 (org-agenda-prepare (concat "Timeline " (file-name-nondirectory entry)))
4024 (org-compile-prefix-format 'timeline)
4025 (org-set-sorting-strategy 'timeline)
4026 (if org-agenda-show-log-scoped (push :closed args))
4027 (push :timestamp args)
4028 (push :deadline args)
4029 (push :scheduled args)
4030 (push :sexp args)
4031 (if dotodo (push :todo args))
4032 (insert "Timeline of file " entry "\n")
4033 (add-text-properties (point-min) (point)
4034 (list 'face 'org-agenda-structure))
4035 (org-agenda-mark-header-line (point-min))
4036 (while (setq d (pop day-numbers))
4037 (if (and (listp d) (eq (car d) :omitted))
4038 (progn
4039 (setq s (point))
4040 (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
4041 (put-text-property s (1- (point)) 'face 'org-agenda-structure))
4042 (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
4043 (if (and (>= d today)
4044 dopast
4045 past)
4046 (progn
4047 (setq past nil)
4048 (insert (make-string 79 ?-) "\n")))
4049 (setq date (calendar-gregorian-from-absolute d))
4050 (setq s (point))
4051 (setq rtn (and (not emptyp)
4052 (apply 'org-agenda-get-day-entries entry
4053 date args)))
4054 (if (or rtn (equal d today) org-timeline-show-empty-dates)
4055 (progn
4056 (insert
4057 (if (stringp org-agenda-format-date)
4058 (format-time-string org-agenda-format-date
4059 (org-time-from-absolute date))
4060 (funcall org-agenda-format-date date))
4061 "\n")
4062 (put-text-property s (1- (point)) 'face
4063 (org-agenda-get-day-face date))
4064 (put-text-property s (1- (point)) 'org-date-line t)
4065 (put-text-property s (1- (point)) 'org-agenda-date-header t)
4066 (if (equal d today)
4067 (put-text-property s (1- (point)) 'org-today t))
4068 (and rtn (insert (org-agenda-finalize-entries rtn 'timeline) "\n"))
4069 (put-text-property s (1- (point)) 'day d)))))
4070 (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
4071 (point-min)))
4072 (add-text-properties
4073 (point-min) (point-max)
4074 `(org-agenda-type timeline org-redo-cmd ,org-agenda-redo-command))
4075 (org-agenda-finalize)
4076 (setq buffer-read-only t)))
4078 (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
4079 "Return a list of all relevant day numbers from BEG to END buffer positions.
4080 If NO-RANGES is non-nil, include only the start and end dates of a range,
4081 not every single day in the range. If FORCE-TODAY is non-nil, make
4082 sure that TODAY is included in the list. If INACTIVE is non-nil, also
4083 inactive time stamps (those in square brackets) are included.
4084 When EMPTY is non-nil, also include days without any entries."
4085 (let ((re (concat
4086 (if pre-re pre-re "")
4087 (if inactive org-ts-regexp-both org-ts-regexp)))
4088 dates dates1 date day day1 day2 ts1 ts2 pos)
4089 (if force-today
4090 (setq dates (list (org-today))))
4091 (save-excursion
4092 (goto-char beg)
4093 (while (re-search-forward re end t)
4094 (setq day (time-to-days (org-time-string-to-time
4095 (substring (match-string 1) 0 10)
4096 (current-buffer) (match-beginning 0))))
4097 (or (memq day dates) (push day dates)))
4098 (unless no-ranges
4099 (goto-char beg)
4100 (while (re-search-forward org-tr-regexp end t)
4101 (setq pos (match-beginning 0))
4102 (setq ts1 (substring (match-string 1) 0 10)
4103 ts2 (substring (match-string 2) 0 10)
4104 day1 (time-to-days (org-time-string-to-time
4105 ts1 (current-buffer) pos))
4106 day2 (time-to-days (org-time-string-to-time
4107 ts2 (current-buffer) pos)))
4108 (while (< (setq day1 (1+ day1)) day2)
4109 (or (memq day1 dates) (push day1 dates)))))
4110 (setq dates (sort dates '<))
4111 (when empty
4112 (while (setq day (pop dates))
4113 (setq day2 (car dates))
4114 (push day dates1)
4115 (when (and day2 empty)
4116 (if (or (eq empty t)
4117 (and (numberp empty) (<= (- day2 day) empty)))
4118 (while (< (setq day (1+ day)) day2)
4119 (push (list day) dates1))
4120 (push (cons :omitted (- day2 day)) dates1))))
4121 (setq dates (nreverse dates1)))
4122 dates)))
4124 ;;; Agenda Daily/Weekly
4126 (defvar org-agenda-start-day nil ; dynamically scoped parameter
4127 "Start day for the agenda view.
4128 Custom commands can set this variable in the options section.
4129 This is usually a string like \"2007-11-01\", \"+2d\" or any other
4130 input allowed when reading a date through the Org calendar.
4131 See the docstring of `org-read-date' for details.")
4132 (defvar org-starting-day nil) ; local variable in the agenda buffer
4133 (defvar org-arg-loc nil) ; local variable
4135 (defvar org-agenda-buffer-tmp-name nil)
4136 ;;;###autoload
4137 (defun org-agenda-list (&optional arg start-day span with-hour)
4138 "Produce a daily/weekly view from all files in variable `org-agenda-files'.
4139 The view will be for the current day or week, but from the overview buffer
4140 you will be able to go to other days/weeks.
4142 With a numeric prefix argument in an interactive call, the agenda will
4143 span ARG days. Lisp programs should instead specify SPAN to change
4144 the number of days. SPAN defaults to `org-agenda-span'.
4146 START-DAY defaults to TODAY, or to the most recent match for the weekday
4147 given in `org-agenda-start-on-weekday'.
4149 When WITH-HOUR is non-nil, only include scheduled and deadline
4150 items if they have an hour specification like [h]h:mm."
4151 (interactive "P")
4152 (if org-agenda-overriding-arguments
4153 (setq arg (car org-agenda-overriding-arguments)
4154 start-day (nth 1 org-agenda-overriding-arguments)
4155 span (nth 2 org-agenda-overriding-arguments)))
4156 (if (and (integerp arg) (> arg 0))
4157 (setq span arg arg nil))
4158 (catch 'exit
4159 (setq org-agenda-buffer-name
4160 (or org-agenda-buffer-tmp-name
4161 (if org-agenda-sticky
4162 (cond ((and org-keys (stringp org-match))
4163 (format "*Org Agenda(%s:%s)*" org-keys org-match))
4164 (org-keys
4165 (format "*Org Agenda(%s)*" org-keys))
4166 (t "*Org Agenda(a)*")))
4167 org-agenda-buffer-name))
4168 (org-agenda-prepare "Day/Week")
4169 (setq start-day (or start-day org-agenda-start-day))
4170 (if (stringp start-day)
4171 ;; Convert to an absolute day number
4172 (setq start-day (time-to-days (org-read-date nil t start-day))))
4173 (org-compile-prefix-format 'agenda)
4174 (org-set-sorting-strategy 'agenda)
4175 (let* ((span (org-agenda-ndays-to-span
4176 (or span org-agenda-ndays org-agenda-span)))
4177 (today (org-today))
4178 (sd (or start-day today))
4179 (ndays (org-agenda-span-to-ndays span sd))
4180 (org-agenda-start-on-weekday
4181 (if (or (eq ndays 7) (eq ndays 14))
4182 org-agenda-start-on-weekday))
4183 (thefiles (org-agenda-files nil 'ifmode))
4184 (files thefiles)
4185 (start (if (or (null org-agenda-start-on-weekday)
4186 (< ndays 7))
4188 (let* ((nt (calendar-day-of-week
4189 (calendar-gregorian-from-absolute sd)))
4190 (n1 org-agenda-start-on-weekday)
4191 (d (- nt n1)))
4192 (- sd (+ (if (< d 0) 7 0) d)))))
4193 (day-numbers (list start))
4194 (day-cnt 0)
4195 (inhibit-redisplay (not debug-on-error))
4196 (org-agenda-show-log-scoped org-agenda-show-log)
4197 s e rtn rtnall file date d start-pos end-pos todayp
4198 clocktable-start clocktable-end filter)
4199 (setq org-agenda-redo-command
4200 (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
4201 (dotimes (n (1- ndays))
4202 (push (1+ (car day-numbers)) day-numbers))
4203 (setq day-numbers (nreverse day-numbers))
4204 (setq clocktable-start (car day-numbers)
4205 clocktable-end (1+ (or (org-last day-numbers) 0)))
4206 (org-set-local 'org-starting-day (car day-numbers))
4207 (org-set-local 'org-arg-loc arg)
4208 (org-set-local 'org-agenda-current-span (org-agenda-ndays-to-span span))
4209 (unless org-agenda-compact-blocks
4210 (let* ((d1 (car day-numbers))
4211 (d2 (org-last day-numbers))
4212 (w1 (org-days-to-iso-week d1))
4213 (w2 (org-days-to-iso-week d2)))
4214 (setq s (point))
4215 (if org-agenda-overriding-header
4216 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4217 nil 'face 'org-agenda-structure) "\n")
4218 (insert (org-agenda-span-name span)
4219 "-agenda"
4220 (if (< (- d2 d1) 350)
4221 (if (= w1 w2)
4222 (format " (W%02d)" w1)
4223 (format " (W%02d-W%02d)" w1 w2))
4225 ":\n")))
4226 (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
4227 'org-date-line t))
4228 (org-agenda-mark-header-line s))
4229 (while (setq d (pop day-numbers))
4230 (setq date (calendar-gregorian-from-absolute d)
4231 s (point))
4232 (if (or (setq todayp (= d today))
4233 (and (not start-pos) (= d sd)))
4234 (setq start-pos (point))
4235 (if (and start-pos (not end-pos))
4236 (setq end-pos (point))))
4237 (setq files thefiles
4238 rtnall nil)
4239 (while (setq file (pop files))
4240 (catch 'nextfile
4241 (org-check-agenda-file file)
4242 (let ((org-agenda-entry-types org-agenda-entry-types))
4243 ;; Starred types override non-starred equivalents
4244 (when (member :deadline* org-agenda-entry-types)
4245 (setq org-agenda-entry-types
4246 (delq :deadline org-agenda-entry-types)))
4247 (when (member :scheduled* org-agenda-entry-types)
4248 (setq org-agenda-entry-types
4249 (delq :scheduled org-agenda-entry-types)))
4250 ;; Honor with-hour
4251 (when with-hour
4252 (when (member :deadline org-agenda-entry-types)
4253 (setq org-agenda-entry-types
4254 (delq :deadline org-agenda-entry-types))
4255 (push :deadline* org-agenda-entry-types))
4256 (when (member :scheduled org-agenda-entry-types)
4257 (setq org-agenda-entry-types
4258 (delq :scheduled org-agenda-entry-types))
4259 (push :scheduled* org-agenda-entry-types)))
4260 (unless org-agenda-include-deadlines
4261 (setq org-agenda-entry-types
4262 (delq :deadline* (delq :deadline org-agenda-entry-types))))
4263 (cond
4264 ((memq org-agenda-show-log-scoped '(only clockcheck))
4265 (setq rtn (org-agenda-get-day-entries
4266 file date :closed)))
4267 (org-agenda-show-log-scoped
4268 (setq rtn (apply 'org-agenda-get-day-entries
4269 file date
4270 (append '(:closed) org-agenda-entry-types))))
4272 (setq rtn (apply 'org-agenda-get-day-entries
4273 file date
4274 org-agenda-entry-types)))))
4275 (setq rtnall (append rtnall rtn)))) ;; all entries
4276 (if org-agenda-include-diary
4277 (let ((org-agenda-search-headline-for-time t))
4278 (require 'diary-lib)
4279 (setq rtn (org-get-entries-from-diary date))
4280 (setq rtnall (append rtnall rtn))))
4281 (if (or rtnall org-agenda-show-all-dates)
4282 (progn
4283 (setq day-cnt (1+ day-cnt))
4284 (insert
4285 (if (stringp org-agenda-format-date)
4286 (format-time-string org-agenda-format-date
4287 (org-time-from-absolute date))
4288 (funcall org-agenda-format-date date))
4289 "\n")
4290 (put-text-property s (1- (point)) 'face
4291 (org-agenda-get-day-face date))
4292 (put-text-property s (1- (point)) 'org-date-line t)
4293 (put-text-property s (1- (point)) 'org-agenda-date-header t)
4294 (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
4295 (when todayp
4296 (put-text-property s (1- (point)) 'org-today t))
4297 (setq rtnall
4298 (org-agenda-add-time-grid-maybe rtnall ndays todayp))
4299 (if rtnall (insert ;; all entries
4300 (org-agenda-finalize-entries rtnall 'agenda)
4301 "\n"))
4302 (put-text-property s (1- (point)) 'day d)
4303 (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
4304 (when (and org-agenda-clockreport-mode clocktable-start)
4305 (let ((org-agenda-files (org-agenda-files nil 'ifmode))
4306 ;; the above line is to ensure the restricted range!
4307 (p (copy-sequence org-agenda-clockreport-parameter-plist))
4308 tbl)
4309 (setq p (org-plist-delete p :block))
4310 (setq p (plist-put p :tstart clocktable-start))
4311 (setq p (plist-put p :tend clocktable-end))
4312 (setq p (plist-put p :scope 'agenda))
4313 (when (and (eq org-agenda-clockreport-mode 'with-filter)
4314 (setq filter (or org-agenda-tag-filter-while-redo
4315 (get 'org-agenda-tag-filter :preset-filter))))
4316 (setq p (plist-put p :tags (mapconcat (lambda (x)
4317 (if (string-match "[<>=]" x)
4320 filter ""))))
4321 (setq tbl (apply 'org-clock-get-clocktable p))
4322 (insert tbl)))
4323 (goto-char (point-min))
4324 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4325 (unless (and (pos-visible-in-window-p (point-min))
4326 (pos-visible-in-window-p (point-max)))
4327 (goto-char (1- (point-max)))
4328 (recenter -1)
4329 (if (not (pos-visible-in-window-p (or start-pos 1)))
4330 (progn
4331 (goto-char (or start-pos 1))
4332 (recenter 1))))
4333 (goto-char (or start-pos 1))
4334 (add-text-properties (point-min) (point-max)
4335 `(org-agenda-type agenda
4336 org-last-args (,arg ,start-day ,span)
4337 org-redo-cmd ,org-agenda-redo-command
4338 org-series-cmd ,org-cmd))
4339 (if (eq org-agenda-show-log-scoped 'clockcheck)
4340 (org-agenda-show-clocking-issues))
4341 (org-agenda-finalize)
4342 (setq buffer-read-only t)
4343 (message ""))))
4345 (defun org-agenda-ndays-to-span (n)
4346 "Return a span symbol for a span of N days, or N if none matches."
4347 (cond ((symbolp n) n)
4348 ((= n 1) 'day)
4349 ((= n 7) 'week)
4350 ((= n 14) 'fortnight)
4351 (t n)))
4353 (defun org-agenda-span-to-ndays (span &optional start-day)
4354 "Return ndays from SPAN, possibly starting at START-DAY.
4355 START-DAY is an absolute time value."
4356 (cond ((numberp span) span)
4357 ((eq span 'day) 1)
4358 ((eq span 'week) 7)
4359 ((eq span 'fortnight) 14)
4360 ((eq span 'month)
4361 (let ((date (calendar-gregorian-from-absolute start-day)))
4362 (calendar-last-day-of-month (car date) (caddr date))))
4363 ((eq span 'year)
4364 (let ((date (calendar-gregorian-from-absolute start-day)))
4365 (if (calendar-leap-year-p (caddr date)) 366 365)))))
4367 (defun org-agenda-span-name (span)
4368 "Return a SPAN name."
4369 (if (null span)
4371 (if (symbolp span)
4372 (capitalize (symbol-name span))
4373 (format "%d days" span))))
4375 ;;; Agenda word search
4377 (defvar org-agenda-search-history nil)
4379 (defvar org-search-syntax-table nil
4380 "Special syntax table for org-mode search.
4381 In this table, we have single quotes not as word constituents, to
4382 that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
4384 (defvar org-mode-syntax-table) ; From org.el
4385 (defun org-search-syntax-table ()
4386 (unless org-search-syntax-table
4387 (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
4388 (modify-syntax-entry ?' "." org-search-syntax-table)
4389 (modify-syntax-entry ?` "." org-search-syntax-table))
4390 org-search-syntax-table)
4392 (defvar org-agenda-last-search-view-search-was-boolean nil)
4394 ;;;###autoload
4395 (defun org-search-view (&optional todo-only string edit-at)
4396 "Show all entries that contain a phrase or words or regular expressions.
4398 With optional prefix argument TODO-ONLY, only consider entries that are
4399 TODO entries. The argument STRING can be used to pass a default search
4400 string into this function. If EDIT-AT is non-nil, it means that the
4401 user should get a chance to edit this string, with cursor at position
4402 EDIT-AT.
4404 The search string can be viewed either as a phrase that should be found as
4405 is, or it can be broken into a number of snippets, each of which must match
4406 in a Boolean way to select an entry. The default depends on the variable
4407 `org-agenda-search-view-always-boolean'.
4408 Even if this is turned off (the default) you can always switch to
4409 Boolean search dynamically by preceding the first word with \"+\" or \"-\".
4411 The default is a direct search of the whole phrase, where each space in
4412 the search string can expand to an arbitrary amount of whitespace,
4413 including newlines.
4415 If using a Boolean search, the search string is split on whitespace and
4416 each snippet is searched separately, with logical AND to select an entry.
4417 Words prefixed with a minus must *not* occur in the entry. Words without
4418 a prefix or prefixed with a plus must occur in the entry. Matching is
4419 case-insensitive. Words are enclosed by word delimiters (i.e. they must
4420 match whole words, not parts of a word) if
4421 `org-agenda-search-view-force-full-words' is set (default is nil).
4423 Boolean search snippets enclosed by curly braces are interpreted as
4424 regular expressions that must or (when preceded with \"-\") must not
4425 match in the entry. Snippets enclosed into double quotes will be taken
4426 as a whole, to include whitespace.
4428 - If the search string starts with an asterisk, search only in headlines.
4429 - If (possibly after the leading star) the search string starts with an
4430 exclamation mark, this also means to look at TODO entries only, an effect
4431 that can also be achieved with a prefix argument.
4432 - If (possibly after star and exclamation mark) the search string starts
4433 with a colon, this will mean that the (non-regexp) snippets of the
4434 Boolean search must match as full words.
4436 This command searches the agenda files, and in addition the files listed
4437 in `org-agenda-text-search-extra-files'."
4438 (interactive "P")
4439 (if org-agenda-overriding-arguments
4440 (setq todo-only (car org-agenda-overriding-arguments)
4441 string (nth 1 org-agenda-overriding-arguments)
4442 edit-at (nth 2 org-agenda-overriding-arguments)))
4443 (let* ((props (list 'face nil
4444 'done-face 'org-agenda-done
4445 'org-not-done-regexp org-not-done-regexp
4446 'org-todo-regexp org-todo-regexp
4447 'org-complex-heading-regexp org-complex-heading-regexp
4448 'mouse-face 'highlight
4449 'help-echo (format "mouse-2 or RET jump to location")))
4450 (full-words org-agenda-search-view-force-full-words)
4451 (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
4452 regexp rtn rtnall files file pos inherited-tags
4453 marker category category-pos level tags c neg re boolean
4454 ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
4455 (unless (and (not edit-at)
4456 (stringp string)
4457 (string-match "\\S-" string))
4458 (setq string (read-string
4459 (if org-agenda-search-view-always-boolean
4460 "[+-]Word/{Regexp} ...: "
4461 "Phrase or [+-]Word/{Regexp} ...: ")
4462 (cond
4463 ((integerp edit-at) (cons string edit-at))
4464 (edit-at string))
4465 'org-agenda-search-history)))
4466 (catch 'exit
4467 (if org-agenda-sticky
4468 (setq org-agenda-buffer-name
4469 (if (stringp string)
4470 (format "*Org Agenda(%s:%s)*"
4471 (or org-keys (or (and todo-only "S") "s")) string)
4472 (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
4473 (org-agenda-prepare "SEARCH")
4474 (org-compile-prefix-format 'search)
4475 (org-set-sorting-strategy 'search)
4476 (setq org-agenda-redo-command
4477 (list 'org-search-view (if todo-only t nil)
4478 (list 'if 'current-prefix-arg nil string)))
4479 (setq org-agenda-query-string string)
4480 (if (equal (string-to-char string) ?*)
4481 (setq hdl-only t
4482 words (substring string 1))
4483 (setq words string))
4484 (when (equal (string-to-char words) ?!)
4485 (setq todo-only t
4486 words (substring words 1)))
4487 (when (equal (string-to-char words) ?:)
4488 (setq full-words t
4489 words (substring words 1)))
4490 (if (or org-agenda-search-view-always-boolean
4491 (member (string-to-char words) '(?- ?+ ?\{)))
4492 (setq boolean t))
4493 (setq words (org-split-string words))
4494 (let (www w)
4495 (while (setq w (pop words))
4496 (while (and (string-match "\\\\\\'" w) words)
4497 (setq w (concat (substring w 0 -1) " " (pop words))))
4498 (push w www))
4499 (setq words (nreverse www) www nil)
4500 (while (setq w (pop words))
4501 (when (and (string-match "\\`[-+]?{" w)
4502 (not (string-match "}\\'" w)))
4503 (while (and words (not (string-match "}\\'" (car words))))
4504 (setq w (concat w " " (pop words))))
4505 (setq w (concat w " " (pop words))))
4506 (push w www))
4507 (setq words (nreverse www)))
4508 (setq org-agenda-last-search-view-search-was-boolean boolean)
4509 (when boolean
4510 (let (wds w)
4511 (while (setq w (pop words))
4512 (if (or (equal (substring w 0 1) "\"")
4513 (and (> (length w) 1)
4514 (member (substring w 0 1) '("+" "-"))
4515 (equal (substring w 1 2) "\"")))
4516 (while (and words (not (equal (substring w -1) "\"")))
4517 (setq w (concat w " " (pop words)))))
4518 (and (string-match "\\`\\([-+]?\\)\"" w)
4519 (setq w (replace-match "\\1" nil nil w)))
4520 (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
4521 (push w wds))
4522 (setq words (nreverse wds))))
4523 (if boolean
4524 (mapc (lambda (w)
4525 (setq c (string-to-char w))
4526 (if (equal c ?-)
4527 (setq neg t w (substring w 1))
4528 (if (equal c ?+)
4529 (setq neg nil w (substring w 1))
4530 (setq neg nil)))
4531 (if (string-match "\\`{.*}\\'" w)
4532 (setq re (substring w 1 -1))
4533 (if full-words
4534 (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
4535 (setq re (regexp-quote (downcase w)))))
4536 (if neg (push re regexps-) (push re regexps+)))
4537 words)
4538 (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
4539 regexps+))
4540 (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
4541 (if (not regexps+)
4542 (setq regexp org-outline-regexp-bol)
4543 (setq regexp (pop regexps+))
4544 (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
4545 regexp))))
4546 (setq files (org-agenda-files nil 'ifmode))
4547 (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
4548 (pop org-agenda-text-search-extra-files)
4549 (setq files (org-add-archive-files files)))
4550 (setq files (append files org-agenda-text-search-extra-files)
4551 rtnall nil)
4552 (while (setq file (pop files))
4553 (setq ee nil)
4554 (catch 'nextfile
4555 (org-check-agenda-file file)
4556 (setq buffer (if (file-exists-p file)
4557 (org-get-agenda-file-buffer file)
4558 (error "No such file %s" file)))
4559 (if (not buffer)
4560 ;; If file does not exist, make sure an error message is sent
4561 (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
4562 file))))
4563 (with-current-buffer buffer
4564 (with-syntax-table (org-search-syntax-table)
4565 (unless (derived-mode-p 'org-mode)
4566 (error "Agenda file %s is not in `org-mode'" file))
4567 (let ((case-fold-search t))
4568 (save-excursion
4569 (save-restriction
4570 (if (eq buffer org-agenda-restrict)
4571 (narrow-to-region org-agenda-restrict-begin
4572 org-agenda-restrict-end)
4573 (widen))
4574 (goto-char (point-min))
4575 (unless (or (org-at-heading-p)
4576 (outline-next-heading))
4577 (throw 'nextfile t))
4578 (goto-char (max (point-min) (1- (point))))
4579 (while (re-search-forward regexp nil t)
4580 (org-back-to-heading t)
4581 (while (and org-agenda-search-view-max-outline-level
4582 (> (org-reduced-level (org-outline-level))
4583 org-agenda-search-view-max-outline-level)
4584 (forward-line -1)
4585 (outline-back-to-heading t)))
4586 (skip-chars-forward "* ")
4587 (setq beg (point-at-bol)
4588 beg1 (point)
4589 end (progn
4590 (outline-next-heading)
4591 (while (and org-agenda-search-view-max-outline-level
4592 (> (org-reduced-level (org-outline-level))
4593 org-agenda-search-view-max-outline-level)
4594 (forward-line 1)
4595 (outline-next-heading)))
4596 (point)))
4598 (catch :skip
4599 (goto-char beg)
4600 (org-agenda-skip)
4601 (setq str (buffer-substring-no-properties
4602 (point-at-bol)
4603 (if hdl-only (point-at-eol) end)))
4604 (mapc (lambda (wr) (when (string-match wr str)
4605 (goto-char (1- end))
4606 (throw :skip t)))
4607 regexps-)
4608 (mapc (lambda (wr) (unless (string-match wr str)
4609 (goto-char (1- end))
4610 (throw :skip t)))
4611 (if todo-only
4612 (cons (concat "^\*+[ \t]+" org-not-done-regexp)
4613 regexps+)
4614 regexps+))
4615 (goto-char beg)
4616 (setq marker (org-agenda-new-marker (point))
4617 category (org-get-category)
4618 level (make-string (org-reduced-level (org-outline-level)) ? )
4619 category-pos (get-text-property (point) 'org-category-position)
4620 inherited-tags
4621 (or (eq org-agenda-show-inherited-tags 'always)
4622 (and (listp org-agenda-show-inherited-tags)
4623 (memq 'todo org-agenda-show-inherited-tags))
4624 (and (eq org-agenda-show-inherited-tags t)
4625 (or (eq org-agenda-use-tag-inheritance t)
4626 (memq 'todo org-agenda-use-tag-inheritance))))
4627 tags (org-get-tags-at nil (not inherited-tags))
4628 txt (org-agenda-format-item
4630 (buffer-substring-no-properties
4631 beg1 (point-at-eol))
4632 level category tags t))
4633 (org-add-props txt props
4634 'org-marker marker 'org-hd-marker marker
4635 'org-todo-regexp org-todo-regexp
4636 'level level
4637 'org-complex-heading-regexp org-complex-heading-regexp
4638 'priority 1000 'org-category category
4639 'org-category-position category-pos
4640 'type "search")
4641 (push txt ee)
4642 (goto-char (1- end))))))))))
4643 (setq rtn (nreverse ee))
4644 (setq rtnall (append rtnall rtn)))
4645 (if org-agenda-overriding-header
4646 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4647 nil 'face 'org-agenda-structure) "\n")
4648 (insert "Search words: ")
4649 (add-text-properties (point-min) (1- (point))
4650 (list 'face 'org-agenda-structure))
4651 (setq pos (point))
4652 (insert string "\n")
4653 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
4654 (setq pos (point))
4655 (unless org-agenda-multi
4656 (insert "Press `[', `]' to add/sub word, `{', `}' to add/sub regexp, `C-u r' to edit\n")
4657 (add-text-properties pos (1- (point))
4658 (list 'face 'org-agenda-structure))))
4659 (org-agenda-mark-header-line (point-min))
4660 (when rtnall
4661 (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
4662 (goto-char (point-min))
4663 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4664 (add-text-properties (point-min) (point-max)
4665 `(org-agenda-type search
4666 org-last-args (,todo-only ,string ,edit-at)
4667 org-redo-cmd ,org-agenda-redo-command
4668 org-series-cmd ,org-cmd))
4669 (org-agenda-finalize)
4670 (setq buffer-read-only t))))
4672 ;;; Agenda TODO list
4674 (defun org-agenda-propertize-selected-todo-keywords (keywords)
4675 "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
4676 (concat
4677 (if (or (equal keywords "ALL") (not keywords))
4678 (propertize "ALL" 'face 'warning)
4679 (mapconcat
4680 (lambda (kw)
4681 (propertize kw 'face (org-get-todo-face kw)))
4682 (org-split-string keywords "|")
4683 "|"))
4684 "\n"))
4686 (defvar org-select-this-todo-keyword nil)
4687 (defvar org-last-arg nil)
4689 ;;;###autoload
4690 (defun org-todo-list (&optional arg)
4691 "Show all (not done) TODO entries from all agenda file in a single list.
4692 The prefix arg can be used to select a specific TODO keyword and limit
4693 the list to these. When using \\[universal-argument], you will be prompted
4694 for a keyword. A numeric prefix directly selects the Nth keyword in
4695 `org-todo-keywords-1'."
4696 (interactive "P")
4697 (if org-agenda-overriding-arguments
4698 (setq arg org-agenda-overriding-arguments))
4699 (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
4700 (let* ((today (org-today))
4701 (date (calendar-gregorian-from-absolute today))
4702 (kwds org-todo-keywords-for-agenda)
4703 (completion-ignore-case t)
4704 (org-select-this-todo-keyword
4705 (if (stringp arg) arg
4706 (and arg (integerp arg) (> arg 0)
4707 (nth (1- arg) kwds))))
4708 rtn rtnall files file pos)
4709 (when (equal arg '(4))
4710 (setq org-select-this-todo-keyword
4711 (org-icompleting-read "Keyword (or KWD1|K2D2|...): "
4712 (mapcar 'list kwds) nil nil)))
4713 (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
4714 (catch 'exit
4715 (if org-agenda-sticky
4716 (setq org-agenda-buffer-name
4717 (if (stringp org-select-this-todo-keyword)
4718 (format "*Org Agenda(%s:%s)*" (or org-keys "t")
4719 org-select-this-todo-keyword)
4720 (format "*Org Agenda(%s)*" (or org-keys "t")))))
4721 (org-agenda-prepare "TODO")
4722 (org-compile-prefix-format 'todo)
4723 (org-set-sorting-strategy 'todo)
4724 (setq org-agenda-redo-command
4725 `(org-todo-list (or (and (numberp current-prefix-arg)
4726 current-prefix-arg)
4727 ,org-select-this-todo-keyword
4728 current-prefix-arg ,arg)))
4729 (setq files (org-agenda-files nil 'ifmode)
4730 rtnall nil)
4731 (while (setq file (pop files))
4732 (catch 'nextfile
4733 (org-check-agenda-file file)
4734 (setq rtn (org-agenda-get-day-entries file date :todo))
4735 (setq rtnall (append rtnall rtn))))
4736 (if org-agenda-overriding-header
4737 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4738 nil 'face 'org-agenda-structure) "\n")
4739 (insert "Global list of TODO items of type: ")
4740 (add-text-properties (point-min) (1- (point))
4741 (list 'face 'org-agenda-structure
4742 'short-heading
4743 (concat "ToDo: "
4744 (or org-select-this-todo-keyword "ALL"))))
4745 (org-agenda-mark-header-line (point-min))
4746 (insert (org-agenda-propertize-selected-todo-keywords
4747 org-select-this-todo-keyword))
4748 (setq pos (point))
4749 (unless org-agenda-multi
4750 (insert "Available with `N r': (0)[ALL]")
4751 (let ((n 0) s)
4752 (mapc (lambda (x)
4753 (setq s (format "(%d)%s" (setq n (1+ n)) x))
4754 (if (> (+ (current-column) (string-width s) 1) (frame-width))
4755 (insert "\n "))
4756 (insert " " s))
4757 kwds))
4758 (insert "\n"))
4759 (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
4760 (org-agenda-mark-header-line (point-min))
4761 (when rtnall
4762 (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
4763 (goto-char (point-min))
4764 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4765 (add-text-properties (point-min) (point-max)
4766 `(org-agenda-type todo
4767 org-last-args ,arg
4768 org-redo-cmd ,org-agenda-redo-command
4769 org-series-cmd ,org-cmd))
4770 (org-agenda-finalize)
4771 (setq buffer-read-only t))))
4773 ;;; Agenda tags match
4775 ;;;###autoload
4776 (defun org-tags-view (&optional todo-only match)
4777 "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
4778 The prefix arg TODO-ONLY limits the search to TODO entries."
4779 (interactive "P")
4780 (if org-agenda-overriding-arguments
4781 (setq todo-only (car org-agenda-overriding-arguments)
4782 match (nth 1 org-agenda-overriding-arguments)))
4783 (let* ((org-tags-match-list-sublevels
4784 org-tags-match-list-sublevels)
4785 (completion-ignore-case t)
4786 rtn rtnall files file pos matcher
4787 buffer)
4788 (when (and (stringp match) (not (string-match "\\S-" match)))
4789 (setq match nil))
4790 (catch 'exit
4791 (if org-agenda-sticky
4792 (setq org-agenda-buffer-name
4793 (if (stringp match)
4794 (format "*Org Agenda(%s:%s)*"
4795 (or org-keys (or (and todo-only "M") "m")) match)
4796 (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
4797 ;; Prepare agendas (and `org-tag-alist-for-agenda') before
4798 ;; expanding tags within `org-make-tags-matcher'
4799 (org-agenda-prepare (concat "TAGS " match))
4800 (setq matcher (org-make-tags-matcher match)
4801 match (car matcher) matcher (cdr matcher))
4802 (org-compile-prefix-format 'tags)
4803 (org-set-sorting-strategy 'tags)
4804 (setq org-agenda-query-string match)
4805 (setq org-agenda-redo-command
4806 (list 'org-tags-view `(quote ,todo-only)
4807 (list 'if 'current-prefix-arg nil `(quote ,org-agenda-query-string))))
4808 (setq files (org-agenda-files nil 'ifmode)
4809 rtnall nil)
4810 (while (setq file (pop files))
4811 (catch 'nextfile
4812 (org-check-agenda-file file)
4813 (setq buffer (if (file-exists-p file)
4814 (org-get-agenda-file-buffer file)
4815 (error "No such file %s" file)))
4816 (if (not buffer)
4817 ;; If file does not exist, error message to agenda
4818 (setq rtn (list
4819 (format "ORG-AGENDA-ERROR: No such org-file %s" file))
4820 rtnall (append rtnall rtn))
4821 (with-current-buffer buffer
4822 (unless (derived-mode-p 'org-mode)
4823 (error "Agenda file %s is not in `org-mode'" file))
4824 (save-excursion
4825 (save-restriction
4826 (if (eq buffer org-agenda-restrict)
4827 (narrow-to-region org-agenda-restrict-begin
4828 org-agenda-restrict-end)
4829 (widen))
4830 (setq rtn (org-scan-tags 'agenda matcher todo-only))
4831 (setq rtnall (append rtnall rtn))))))))
4832 (if org-agenda-overriding-header
4833 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4834 nil 'face 'org-agenda-structure) "\n")
4835 (insert "Headlines with TAGS match: ")
4836 (add-text-properties (point-min) (1- (point))
4837 (list 'face 'org-agenda-structure
4838 'short-heading
4839 (concat "Match: " match)))
4840 (setq pos (point))
4841 (insert match "\n")
4842 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
4843 (setq pos (point))
4844 (unless org-agenda-multi
4845 (insert "Press `C-u r' to search again with new search string\n"))
4846 (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
4847 (org-agenda-mark-header-line (point-min))
4848 (when rtnall
4849 (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
4850 (goto-char (point-min))
4851 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4852 (add-text-properties (point-min) (point-max)
4853 `(org-agenda-type tags
4854 org-last-args (,todo-only ,match)
4855 org-redo-cmd ,org-agenda-redo-command
4856 org-series-cmd ,org-cmd))
4857 (org-agenda-finalize)
4858 (setq buffer-read-only t))))
4860 ;;; Agenda Finding stuck projects
4862 (defvar org-agenda-skip-regexp nil
4863 "Regular expression used in skipping subtrees for the agenda.
4864 This is basically a temporary global variable that can be set and then
4865 used by user-defined selections using `org-agenda-skip-function'.")
4867 (defvar org-agenda-overriding-header nil
4868 "When set during agenda, todo and tags searches it replaces the header.
4869 This variable should not be set directly, but custom commands can bind it
4870 in the options section.")
4872 (defun org-agenda-skip-entry-when-regexp-matches ()
4873 "Check if the current entry contains match for `org-agenda-skip-regexp'.
4874 If yes, it returns the end position of this entry, causing agenda commands
4875 to skip the entry but continuing the search in the subtree. This is a
4876 function that can be put into `org-agenda-skip-function' for the duration
4877 of a command."
4878 (let ((end (save-excursion (org-end-of-subtree t)))
4879 skip)
4880 (save-excursion
4881 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4882 (and skip end)))
4884 (defun org-agenda-skip-subtree-when-regexp-matches ()
4885 "Check if the current subtree contains match for `org-agenda-skip-regexp'.
4886 If yes, it returns the end position of this tree, causing agenda commands
4887 to skip this subtree. This is a function that can be put into
4888 `org-agenda-skip-function' for the duration of a command."
4889 (let ((end (save-excursion (org-end-of-subtree t)))
4890 skip)
4891 (save-excursion
4892 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4893 (and skip end)))
4895 (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
4896 "Check if the current subtree contains match for `org-agenda-skip-regexp'.
4897 If yes, it returns the end position of the current entry (NOT the tree),
4898 causing agenda commands to skip the entry but continuing the search in
4899 the subtree. This is a function that can be put into
4900 `org-agenda-skip-function' for the duration of a command. An important
4901 use of this function is for the stuck project list."
4902 (let ((end (save-excursion (org-end-of-subtree t)))
4903 (entry-end (save-excursion (outline-next-heading) (1- (point))))
4904 skip)
4905 (save-excursion
4906 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4907 (and skip entry-end)))
4909 (defun org-agenda-skip-entry-if (&rest conditions)
4910 "Skip entry if any of CONDITIONS is true.
4911 See `org-agenda-skip-if' for details."
4912 (org-agenda-skip-if nil conditions))
4914 (defun org-agenda-skip-subtree-if (&rest conditions)
4915 "Skip entry if any of CONDITIONS is true.
4916 See `org-agenda-skip-if' for details."
4917 (org-agenda-skip-if t conditions))
4919 (defun org-agenda-skip-if (subtree conditions)
4920 "Checks current entity for CONDITIONS.
4921 If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
4922 the entry (i.e. the text before the next heading) is checked.
4924 CONDITIONS is a list of symbols, boolean OR is used to combine the results
4925 from different tests. Valid conditions are:
4927 scheduled Check if there is a scheduled cookie
4928 notscheduled Check if there is no scheduled cookie
4929 deadline Check if there is a deadline
4930 notdeadline Check if there is no deadline
4931 timestamp Check if there is a timestamp (also deadline or scheduled)
4932 nottimestamp Check if there is no timestamp (also deadline or scheduled)
4933 regexp Check if regexp matches
4934 notregexp Check if regexp does not match.
4935 todo Check if TODO keyword matches
4936 nottodo Check if TODO keyword does not match
4938 The regexp is taken from the conditions list, it must come right after
4939 the `regexp' or `notregexp' element.
4941 `todo' and `nottodo' accept as an argument a list of todo
4942 keywords, which may include \"*\" to match any todo keyword.
4944 (org-agenda-skip-entry-if 'todo '(\"TODO\" \"WAITING\"))
4946 would skip all entries with \"TODO\" or \"WAITING\" keywords.
4948 Instead of a list, a keyword class may be given. For example:
4950 (org-agenda-skip-entry-if 'nottodo 'done)
4952 would skip entries that haven't been marked with any of \"DONE\"
4953 keywords. Possible classes are: `todo', `done', `any'.
4955 If any of these conditions is met, this function returns the end point of
4956 the entity, causing the search to continue from there. This is a function
4957 that can be put into `org-agenda-skip-function' for the duration of a command."
4958 (let (beg end m)
4959 (org-back-to-heading t)
4960 (setq beg (point)
4961 end (if subtree
4962 (progn (org-end-of-subtree t) (point))
4963 (progn (outline-next-heading) (1- (point)))))
4964 (goto-char beg)
4965 (and
4967 (and (memq 'scheduled conditions)
4968 (re-search-forward org-scheduled-time-regexp end t))
4969 (and (memq 'notscheduled conditions)
4970 (not (re-search-forward org-scheduled-time-regexp end t)))
4971 (and (memq 'deadline conditions)
4972 (re-search-forward org-deadline-time-regexp end t))
4973 (and (memq 'notdeadline conditions)
4974 (not (re-search-forward org-deadline-time-regexp end t)))
4975 (and (memq 'timestamp conditions)
4976 (re-search-forward org-ts-regexp end t))
4977 (and (memq 'nottimestamp conditions)
4978 (not (re-search-forward org-ts-regexp end t)))
4979 (and (setq m (memq 'regexp conditions))
4980 (stringp (nth 1 m))
4981 (re-search-forward (nth 1 m) end t))
4982 (and (setq m (memq 'notregexp conditions))
4983 (stringp (nth 1 m))
4984 (not (re-search-forward (nth 1 m) end t)))
4985 (and (or
4986 (setq m (memq 'nottodo conditions))
4987 (setq m (memq 'todo-unblocked conditions))
4988 (setq m (memq 'nottodo-unblocked conditions))
4989 (setq m (memq 'todo conditions)))
4990 (org-agenda-skip-if-todo m end)))
4991 end)))
4993 (defun org-agenda-skip-if-todo (args end)
4994 "Helper function for `org-agenda-skip-if', do not use it directly.
4995 ARGS is a list with first element either `todo', `nottodo',
4996 `todo-unblocked' or `nottodo-unblocked'. The remainder is either
4997 a list of TODO keywords, or a state symbol `todo' or `done' or
4998 `any'."
4999 (let ((kw (car args))
5000 (arg (cadr args))
5001 todo-wds todo-re)
5002 (setq todo-wds
5003 (org-uniquify
5004 (cond
5005 ((listp arg) ;; list of keywords
5006 (if (member "*" arg)
5007 (mapcar 'substring-no-properties org-todo-keywords-1)
5008 arg))
5009 ((symbolp arg) ;; keyword class name
5010 (cond
5011 ((eq arg 'todo)
5012 (org-delete-all org-done-keywords
5013 (mapcar 'substring-no-properties
5014 org-todo-keywords-1)))
5015 ((eq arg 'done) org-done-keywords)
5016 ((eq arg 'any)
5017 (mapcar 'substring-no-properties org-todo-keywords-1)))))))
5018 (setq todo-re
5019 (concat "^\\*+[ \t]+\\<\\("
5020 (mapconcat 'identity todo-wds "\\|")
5021 "\\)\\>"))
5022 (cond
5023 ((eq kw 'todo) (re-search-forward todo-re end t))
5024 ((eq kw 'nottodo) (not (re-search-forward todo-re end t)))
5025 ((eq kw 'todo-unblocked)
5026 (catch 'unblocked
5027 (while (re-search-forward todo-re end t)
5028 (or (org-entry-blocked-p) (throw 'unblocked t)))
5029 nil))
5030 ((eq kw 'nottodo-unblocked)
5031 (catch 'unblocked
5032 (while (re-search-forward todo-re end t)
5033 (or (org-entry-blocked-p) (throw 'unblocked nil)))
5037 ;;;###autoload
5038 (defun org-agenda-list-stuck-projects (&rest ignore)
5039 "Create agenda view for projects that are stuck.
5040 Stuck projects are project that have no next actions. For the definitions
5041 of what a project is and how to check if it stuck, customize the variable
5042 `org-stuck-projects'."
5043 (interactive)
5044 (let* ((org-agenda-skip-function
5045 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
5046 ;; We could have used org-agenda-skip-if here.
5047 (org-agenda-overriding-header
5048 (or org-agenda-overriding-header "List of stuck projects: "))
5049 (matcher (nth 0 org-stuck-projects))
5050 (todo (nth 1 org-stuck-projects))
5051 (todo-wds (if (member "*" todo)
5052 (progn
5053 (org-agenda-prepare-buffers (org-agenda-files
5054 nil 'ifmode))
5055 (org-delete-all
5056 org-done-keywords-for-agenda
5057 (copy-sequence org-todo-keywords-for-agenda)))
5058 todo))
5059 (todo-re (concat "^\\*+[ \t]+\\("
5060 (mapconcat 'identity todo-wds "\\|")
5061 "\\)\\>"))
5062 (tags (nth 2 org-stuck-projects))
5063 (tags-re (if (member "*" tags)
5064 (concat org-outline-regexp-bol
5065 (org-re ".*:[[:alnum:]_@#%]+:[ \t]*$"))
5066 (if tags
5067 (concat org-outline-regexp-bol
5068 ".*:\\("
5069 (mapconcat 'identity tags "\\|")
5070 (org-re "\\):[[:alnum:]_@#%:]*[ \t]*$")))))
5071 (gen-re (nth 3 org-stuck-projects))
5072 (re-list
5073 (delq nil
5074 (list
5075 (if todo todo-re)
5076 (if tags tags-re)
5077 (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
5078 gen-re)))))
5079 (setq org-agenda-skip-regexp
5080 (if re-list
5081 (mapconcat 'identity re-list "\\|")
5082 (error "No information how to identify unstuck projects")))
5083 (org-tags-view nil matcher)
5084 (with-current-buffer org-agenda-buffer-name
5085 (setq org-agenda-redo-command
5086 `(org-agenda-list-stuck-projects ,current-prefix-arg)))))
5088 ;;; Diary integration
5090 (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
5091 (defvar diary-list-entries-hook)
5092 (defvar diary-time-regexp)
5093 (defun org-get-entries-from-diary (date)
5094 "Get the (Emacs Calendar) diary entries for DATE."
5095 (require 'diary-lib)
5096 (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
5097 (diary-display-hook '(fancy-diary-display))
5098 (diary-display-function 'fancy-diary-display)
5099 (pop-up-frames nil)
5100 (diary-list-entries-hook
5101 (cons 'org-diary-default-entry diary-list-entries-hook))
5102 (diary-file-name-prefix nil) ; turn this feature off
5103 (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
5104 entries
5105 (org-disable-agenda-to-diary t))
5106 (save-excursion
5107 (save-window-excursion
5108 (funcall (if (fboundp 'diary-list-entries)
5109 'diary-list-entries 'list-diary-entries)
5110 date 1)))
5111 (if (not (get-buffer diary-fancy-buffer))
5112 (setq entries nil)
5113 (with-current-buffer diary-fancy-buffer
5114 (setq buffer-read-only nil)
5115 (if (zerop (buffer-size))
5116 ;; No entries
5117 (setq entries nil)
5118 ;; Omit the date and other unnecessary stuff
5119 (org-agenda-cleanup-fancy-diary)
5120 ;; Add prefix to each line and extend the text properties
5121 (if (zerop (buffer-size))
5122 (setq entries nil)
5123 (setq entries (buffer-substring (point-min) (- (point-max) 1)))
5124 (setq entries
5125 (with-temp-buffer
5126 (insert entries) (goto-char (point-min))
5127 (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
5128 (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
5129 (replace-match (concat "; " (match-string 1)))))
5130 (buffer-string)))))
5131 (set-buffer-modified-p nil)
5132 (kill-buffer diary-fancy-buffer)))
5133 (when entries
5134 (setq entries (org-split-string entries "\n"))
5135 (setq entries
5136 (mapcar
5137 (lambda (x)
5138 (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
5139 ;; Extend the text properties to the beginning of the line
5140 (org-add-props x (text-properties-at (1- (length x)) x)
5141 'type "diary" 'date date 'face 'org-agenda-diary))
5142 entries)))))
5144 (defvar org-agenda-cleanup-fancy-diary-hook nil
5145 "Hook run when the fancy diary buffer is cleaned up.")
5147 (defun org-agenda-cleanup-fancy-diary ()
5148 "Remove unwanted stuff in buffer created by `fancy-diary-display'.
5149 This gets rid of the date, the underline under the date, and
5150 the dummy entry installed by `org-mode' to ensure non-empty diary for each
5151 date. It also removes lines that contain only whitespace."
5152 (goto-char (point-min))
5153 (if (looking-at ".*?:[ \t]*")
5154 (progn
5155 (replace-match "")
5156 (re-search-forward "\n=+$" nil t)
5157 (replace-match "")
5158 (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
5159 (re-search-forward "\n=+$" nil t)
5160 (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
5161 (goto-char (point-min))
5162 (while (re-search-forward "^ +\n" nil t)
5163 (replace-match ""))
5164 (goto-char (point-min))
5165 (if (re-search-forward "^Org-mode dummy\n?" nil t)
5166 (replace-match ""))
5167 (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
5169 ;; Make sure entries from the diary have the right text properties.
5170 (eval-after-load "diary-lib"
5171 '(if (boundp 'diary-modify-entry-list-string-function)
5172 ;; We can rely on the hook, nothing to do
5174 ;; Hook not available, must use advice to make this work
5175 (defadvice add-to-diary-list (before org-mark-diary-entry activate)
5176 "Make the position visible."
5177 (if (and org-disable-agenda-to-diary ;; called from org-agenda
5178 (stringp string)
5179 buffer-file-name)
5180 (setq string (org-modify-diary-entry-string string))))))
5182 (defun org-modify-diary-entry-string (string)
5183 "Add text properties to string, allowing org-mode to act on it."
5184 (org-add-props string nil
5185 'mouse-face 'highlight
5186 'help-echo (if buffer-file-name
5187 (format "mouse-2 or RET jump to diary file %s"
5188 (abbreviate-file-name buffer-file-name))
5190 'org-agenda-diary-link t
5191 'org-marker (org-agenda-new-marker (point-at-bol))))
5193 (defun org-diary-default-entry ()
5194 "Add a dummy entry to the diary.
5195 Needed to avoid empty dates which mess up holiday display."
5196 ;; Catch the error if dealing with the new add-to-diary-alist
5197 (when org-disable-agenda-to-diary
5198 (condition-case nil
5199 (org-add-to-diary-list original-date "Org-mode dummy" "")
5200 (error
5201 (org-add-to-diary-list original-date "Org-mode dummy" "" nil)))))
5203 (defun org-add-to-diary-list (&rest args)
5204 (if (fboundp 'diary-add-to-list)
5205 (apply 'diary-add-to-list args)
5206 (apply 'add-to-diary-list args)))
5208 (defvar org-diary-last-run-time nil)
5210 ;;;###autoload
5211 (defun org-diary (&rest args)
5212 "Return diary information from org files.
5213 This function can be used in a \"sexp\" diary entry in the Emacs calendar.
5214 It accesses org files and extracts information from those files to be
5215 listed in the diary. The function accepts arguments specifying what
5216 items should be listed. For a list of arguments allowed here, see the
5217 variable `org-agenda-entry-types'.
5219 The call in the diary file should look like this:
5221 &%%(org-diary) ~/path/to/some/orgfile.org
5223 Use a separate line for each org file to check. Or, if you omit the file name,
5224 all files listed in `org-agenda-files' will be checked automatically:
5226 &%%(org-diary)
5228 If you don't give any arguments (as in the example above), the default value
5229 of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
5230 So the example above may also be written as
5232 &%%(org-diary :deadline :timestamp :sexp :scheduled)
5234 The function expects the lisp variables `entry' and `date' to be provided
5235 by the caller, because this is how the calendar works. Don't use this
5236 function from a program - use `org-agenda-get-day-entries' instead."
5237 (when (> (- (org-float-time)
5238 org-agenda-last-marker-time)
5240 ;; I am not sure if this works with sticky agendas, because the marker
5241 ;; list is then no longer a global variable.
5242 (org-agenda-reset-markers))
5243 (org-compile-prefix-format 'agenda)
5244 (org-set-sorting-strategy 'agenda)
5245 (setq args (or args org-agenda-entry-types))
5246 (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
5247 (list entry)
5248 (org-agenda-files t)))
5249 (time (org-float-time))
5250 file rtn results)
5251 (when (or (not org-diary-last-run-time)
5252 (> (- time
5253 org-diary-last-run-time)
5255 (org-agenda-prepare-buffers files))
5256 (setq org-diary-last-run-time time)
5257 ;; If this is called during org-agenda, don't return any entries to
5258 ;; the calendar. Org Agenda will list these entries itself.
5259 (if org-disable-agenda-to-diary (setq files nil))
5260 (while (setq file (pop files))
5261 (setq rtn (apply 'org-agenda-get-day-entries file date args))
5262 (setq results (append results rtn)))
5263 (when results
5264 (setq results
5265 (mapcar (lambda (i) (replace-regexp-in-string
5266 org-bracket-link-regexp "\\3" i)) results))
5267 (concat (org-agenda-finalize-entries results) "\n"))))
5269 ;;; Agenda entry finders
5271 (defun org-agenda-get-day-entries (file date &rest args)
5272 "Does the work for `org-diary' and `org-agenda'.
5273 FILE is the path to a file to be checked for entries. DATE is date like
5274 the one returned by `calendar-current-date'. ARGS are symbols indicating
5275 which kind of entries should be extracted. For details about these, see
5276 the documentation of `org-diary'."
5277 (setq args (or args org-agenda-entry-types))
5278 (let* ((org-startup-folded nil)
5279 (org-startup-align-all-tables nil)
5280 (buffer (if (file-exists-p file)
5281 (org-get-agenda-file-buffer file)
5282 (error "No such file %s" file)))
5283 arg results rtn deadline-results)
5284 (if (not buffer)
5285 ;; If file does not exist, make sure an error message ends up in diary
5286 (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
5287 (with-current-buffer buffer
5288 (unless (derived-mode-p 'org-mode)
5289 (error "Agenda file %s is not in `org-mode'" file))
5290 (setq org-agenda-buffer (or org-agenda-buffer buffer))
5291 (let ((case-fold-search nil))
5292 (save-excursion
5293 (save-restriction
5294 (if (eq buffer org-agenda-restrict)
5295 (narrow-to-region org-agenda-restrict-begin
5296 org-agenda-restrict-end)
5297 (widen))
5298 ;; The way we repeatedly append to `results' makes it O(n^2) :-(
5299 (while (setq arg (pop args))
5300 (cond
5301 ((and (eq arg :todo)
5302 (equal date (calendar-gregorian-from-absolute
5303 (org-today))))
5304 (setq rtn (org-agenda-get-todos))
5305 (setq results (append results rtn)))
5306 ((eq arg :timestamp)
5307 (setq rtn (org-agenda-get-blocks))
5308 (setq results (append results rtn))
5309 (setq rtn (org-agenda-get-timestamps deadline-results))
5310 (setq results (append results rtn)))
5311 ((eq arg :sexp)
5312 (setq rtn (org-agenda-get-sexps))
5313 (setq results (append results rtn)))
5314 ((eq arg :scheduled)
5315 (setq rtn (org-agenda-get-scheduled deadline-results))
5316 (setq results (append results rtn)))
5317 ((eq arg :scheduled*)
5318 (setq rtn (org-agenda-get-scheduled deadline-results t))
5319 (setq results (append results rtn)))
5320 ((eq arg :closed)
5321 (setq rtn (org-agenda-get-progress))
5322 (setq results (append results rtn)))
5323 ((eq arg :deadline)
5324 (setq rtn (org-agenda-get-deadlines))
5325 (setq deadline-results (copy-sequence rtn))
5326 (setq results (append results rtn)))
5327 ((eq arg :deadline*)
5328 (setq rtn (org-agenda-get-deadlines t))
5329 (setq deadline-results (copy-sequence rtn))
5330 (setq results (append results rtn))))))))
5331 results))))
5333 (defsubst org-em (x y list)
5334 "Is X or Y a member of LIST?"
5335 (or (memq x list) (memq y list)))
5337 (defvar org-heading-keyword-regexp-format) ; defined in org.el
5338 (defvar org-agenda-sorting-strategy-selected nil)
5340 (defun org-agenda-get-todos ()
5341 "Return the TODO information for agenda display."
5342 (let* ((props (list 'face nil
5343 'done-face 'org-agenda-done
5344 'org-not-done-regexp org-not-done-regexp
5345 'org-todo-regexp org-todo-regexp
5346 'org-complex-heading-regexp org-complex-heading-regexp
5347 'mouse-face 'highlight
5348 'help-echo
5349 (format "mouse-2 or RET jump to org file %s"
5350 (abbreviate-file-name buffer-file-name))))
5351 (regexp (format org-heading-keyword-regexp-format
5352 (cond
5353 ((and org-select-this-todo-keyword
5354 (equal org-select-this-todo-keyword "*"))
5355 org-todo-regexp)
5356 (org-select-this-todo-keyword
5357 (concat "\\("
5358 (mapconcat 'identity
5359 (org-split-string
5360 org-select-this-todo-keyword
5361 "|")
5362 "\\|") "\\)"))
5363 (t org-not-done-regexp))))
5364 marker priority category category-pos level tags todo-state ts-date ts-date-type
5365 ee txt beg end inherited-tags todo-state-end-pos)
5366 (goto-char (point-min))
5367 (while (re-search-forward regexp nil t)
5368 (catch :skip
5369 (save-match-data
5370 (beginning-of-line)
5371 (org-agenda-skip)
5372 (setq beg (point) end (save-excursion (outline-next-heading) (point)))
5373 (unless (and (setq todo-state (org-get-todo-state))
5374 (setq todo-state-end-pos (match-end 2)))
5375 (goto-char end)
5376 (throw :skip nil))
5377 (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
5378 (goto-char (1+ beg))
5379 (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
5380 (throw :skip nil)))
5381 (goto-char (match-beginning 2))
5382 (setq marker (org-agenda-new-marker (match-beginning 0))
5383 category (org-get-category)
5384 ts-date (let (ts)
5385 (save-match-data
5386 (cond ((org-em 'scheduled-up 'scheduled-down
5387 org-agenda-sorting-strategy-selected)
5388 (setq ts (org-entry-get (point) "SCHEDULED")
5389 ts-date-type " scheduled"))
5390 ((org-em 'deadline-up 'deadline-down
5391 org-agenda-sorting-strategy-selected)
5392 (setq ts (org-entry-get (point) "DEADLINE")
5393 ts-date-type " deadline"))
5394 ((org-em 'ts-up 'ts-down
5395 org-agenda-sorting-strategy-selected)
5396 (setq ts (org-entry-get (point) "TIMESTAMP")
5397 ts-date-type " timestamp"))
5398 ((org-em 'tsia-up 'tsia-down
5399 org-agenda-sorting-strategy-selected)
5400 (setq ts (org-entry-get (point) "TIMESTAMP_IA")
5401 ts-date-type " timestamp_ia"))
5402 ((org-em 'timestamp-up 'timestamp-down
5403 org-agenda-sorting-strategy-selected)
5404 (setq ts (or (org-entry-get (point) "SCHEDULED")
5405 (org-entry-get (point) "DEADLINE")
5406 (org-entry-get (point) "TIMESTAMP")
5407 (org-entry-get (point) "TIMESTAMP_IA"))
5408 ts-date-type ""))
5409 (t (setq ts-date-type "")))
5410 (when ts (ignore-errors (org-time-string-to-absolute ts)))))
5411 category-pos (get-text-property (point) 'org-category-position)
5412 txt (org-trim
5413 (buffer-substring (match-beginning 2) (match-end 0)))
5414 inherited-tags
5415 (or (eq org-agenda-show-inherited-tags 'always)
5416 (and (listp org-agenda-show-inherited-tags)
5417 (memq 'todo org-agenda-show-inherited-tags))
5418 (and (eq org-agenda-show-inherited-tags t)
5419 (or (eq org-agenda-use-tag-inheritance t)
5420 (memq 'todo org-agenda-use-tag-inheritance))))
5421 tags (org-get-tags-at nil (not inherited-tags))
5422 level (make-string (org-reduced-level (org-outline-level)) ? )
5423 txt (org-agenda-format-item "" txt level category tags t)
5424 priority (1+ (org-get-priority txt)))
5425 (org-add-props txt props
5426 'org-marker marker 'org-hd-marker marker
5427 'priority priority 'org-category category
5428 'level level
5429 'ts-date ts-date
5430 'org-category-position category-pos
5431 'type (concat "todo" ts-date-type) 'todo-state todo-state)
5432 (push txt ee)
5433 (if org-agenda-todo-list-sublevels
5434 (goto-char todo-state-end-pos)
5435 (org-end-of-subtree 'invisible))))
5436 (nreverse ee)))
5438 (defun org-agenda-todo-custom-ignore-p (time n)
5439 "Check whether timestamp is farther away than n number of days.
5440 This function is invoked if `org-agenda-todo-ignore-deadlines',
5441 `org-agenda-todo-ignore-scheduled' or
5442 `org-agenda-todo-ignore-timestamp' is set to an integer."
5443 (let ((days (org-time-stamp-to-now
5444 time org-agenda-todo-ignore-time-comparison-use-seconds)))
5445 (if (>= n 0)
5446 (>= days n)
5447 (<= days n))))
5449 (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
5450 (&optional end)
5451 "Do we have a reason to ignore this TODO entry because it has a time stamp?"
5452 (when (or org-agenda-todo-ignore-with-date
5453 org-agenda-todo-ignore-scheduled
5454 org-agenda-todo-ignore-deadlines
5455 org-agenda-todo-ignore-timestamp)
5456 (setq end (or end (save-excursion (outline-next-heading) (point))))
5457 (save-excursion
5458 (or (and org-agenda-todo-ignore-with-date
5459 (re-search-forward org-ts-regexp end t))
5460 (and org-agenda-todo-ignore-scheduled
5461 (re-search-forward org-scheduled-time-regexp end t)
5462 (cond
5463 ((eq org-agenda-todo-ignore-scheduled 'future)
5464 (> (org-time-stamp-to-now
5465 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5466 ((eq org-agenda-todo-ignore-scheduled 'past)
5467 (<= (org-time-stamp-to-now
5468 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5469 ((numberp org-agenda-todo-ignore-scheduled)
5470 (org-agenda-todo-custom-ignore-p
5471 (match-string 1) org-agenda-todo-ignore-scheduled))
5472 (t)))
5473 (and org-agenda-todo-ignore-deadlines
5474 (re-search-forward org-deadline-time-regexp end t)
5475 (cond
5476 ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
5477 ((eq org-agenda-todo-ignore-deadlines 'far)
5478 (not (org-deadline-close (match-string 1))))
5479 ((eq org-agenda-todo-ignore-deadlines 'future)
5480 (> (org-time-stamp-to-now
5481 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5482 ((eq org-agenda-todo-ignore-deadlines 'past)
5483 (<= (org-time-stamp-to-now
5484 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5485 ((numberp org-agenda-todo-ignore-deadlines)
5486 (org-agenda-todo-custom-ignore-p
5487 (match-string 1) org-agenda-todo-ignore-deadlines))
5488 (t (org-deadline-close (match-string 1)))))
5489 (and org-agenda-todo-ignore-timestamp
5490 (let ((buffer (current-buffer))
5491 (regexp
5492 (concat
5493 org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
5494 (start (point)))
5495 ;; Copy current buffer into a temporary one
5496 (with-temp-buffer
5497 (insert-buffer-substring buffer start end)
5498 (goto-char (point-min))
5499 ;; Delete SCHEDULED and DEADLINE items
5500 (while (re-search-forward regexp end t)
5501 (delete-region (match-beginning 0) (match-end 0)))
5502 (goto-char (point-min))
5503 ;; No search for timestamp left
5504 (when (re-search-forward org-ts-regexp nil t)
5505 (cond
5506 ((eq org-agenda-todo-ignore-timestamp 'future)
5507 (> (org-time-stamp-to-now
5508 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5509 ((eq org-agenda-todo-ignore-timestamp 'past)
5510 (<= (org-time-stamp-to-now
5511 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5512 ((numberp org-agenda-todo-ignore-timestamp)
5513 (org-agenda-todo-custom-ignore-p
5514 (match-string 1) org-agenda-todo-ignore-timestamp))
5515 (t))))))))))
5517 (defun org-agenda-get-timestamps (&optional deadline-results)
5518 "Return the date stamp information for agenda display."
5519 (let* ((props (list 'face 'org-agenda-calendar-event
5520 'org-not-done-regexp org-not-done-regexp
5521 'org-todo-regexp org-todo-regexp
5522 'org-complex-heading-regexp org-complex-heading-regexp
5523 'mouse-face 'highlight
5524 'help-echo
5525 (format "mouse-2 or RET jump to org file %s"
5526 (abbreviate-file-name buffer-file-name))))
5527 (d1 (calendar-absolute-from-gregorian date))
5529 (deadline-position-alist
5530 (mapcar (lambda (a) (and (setq mm (get-text-property
5531 0 'org-hd-marker a))
5532 (cons (marker-position mm) a)))
5533 deadline-results))
5534 (remove-re org-ts-regexp)
5535 (regexp
5536 (concat
5537 (if org-agenda-include-inactive-timestamps "[[<]" "<")
5538 (regexp-quote
5539 (substring
5540 (format-time-string
5541 (car org-time-stamp-formats)
5542 (apply 'encode-time ; DATE bound by calendar
5543 (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
5544 1 11))
5545 "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
5546 "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
5547 marker hdmarker deadlinep scheduledp clockp closedp inactivep
5548 donep tmp priority category category-pos level ee txt timestr tags
5549 b0 b3 e3 head todo-state end-of-match show-all warntime habitp
5550 inherited-tags ts-date)
5551 (goto-char (point-min))
5552 (while (setq end-of-match (re-search-forward regexp nil t))
5553 (setq b0 (match-beginning 0)
5554 b3 (match-beginning 3) e3 (match-end 3)
5555 todo-state (save-match-data (ignore-errors (org-get-todo-state)))
5556 habitp (and (functionp 'org-is-habit-p) (save-match-data (org-is-habit-p)))
5557 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
5558 (member todo-state
5559 org-agenda-repeating-timestamp-show-all)))
5560 (catch :skip
5561 (and (org-at-date-range-p) (throw :skip nil))
5562 (org-agenda-skip)
5563 (if (and (match-end 1)
5564 (not (= d1 (org-time-string-to-absolute
5565 (match-string 1) d1 nil show-all
5566 (current-buffer) b0))))
5567 (throw :skip nil))
5568 (if (and e3
5569 (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
5570 (throw :skip nil))
5571 (setq tmp (buffer-substring (max (point-min)
5572 (- b0 org-ds-keyword-length))
5574 timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
5575 inactivep (= (char-after b0) ?\[)
5576 deadlinep (string-match org-deadline-regexp tmp)
5577 scheduledp (string-match org-scheduled-regexp tmp)
5578 closedp (and org-agenda-include-inactive-timestamps
5579 (string-match org-closed-string tmp))
5580 clockp (and org-agenda-include-inactive-timestamps
5581 (or (string-match org-clock-string tmp)
5582 (string-match "]-+\\'" tmp)))
5583 warntime (get-text-property (point) 'org-appt-warntime)
5584 donep (member todo-state org-done-keywords))
5585 (if (or scheduledp deadlinep closedp clockp
5586 (and donep org-agenda-skip-timestamp-if-done))
5587 (throw :skip t))
5588 (if (string-match ">" timestr)
5589 ;; substring should only run to end of time stamp
5590 (setq timestr (substring timestr 0 (match-end 0))))
5591 (setq marker (org-agenda-new-marker b0)
5592 category (org-get-category b0)
5593 category-pos (get-text-property b0 'org-category-position))
5594 (save-excursion
5595 (if (not (re-search-backward org-outline-regexp-bol nil t))
5596 (throw :skip nil)
5597 (goto-char (match-beginning 0))
5598 (if (and (eq t org-agenda-skip-timestamp-if-deadline-is-shown)
5599 (assoc (point) deadline-position-alist))
5600 (throw :skip nil))
5601 (setq hdmarker (org-agenda-new-marker)
5602 inherited-tags
5603 (or (eq org-agenda-show-inherited-tags 'always)
5604 (and (listp org-agenda-show-inherited-tags)
5605 (memq 'agenda org-agenda-show-inherited-tags))
5606 (and (eq org-agenda-show-inherited-tags t)
5607 (or (eq org-agenda-use-tag-inheritance t)
5608 (memq 'agenda org-agenda-use-tag-inheritance))))
5609 tags (org-get-tags-at nil (not inherited-tags))
5610 level (make-string (org-reduced-level (org-outline-level)) ? ))
5611 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
5612 (setq head (or (match-string 1) ""))
5613 (setq txt (org-agenda-format-item
5614 (if inactivep org-agenda-inactive-leader nil)
5615 head level category tags timestr
5616 remove-re habitp)))
5617 (setq priority (org-get-priority txt))
5618 (org-add-props txt props 'priority priority
5619 'org-marker marker 'org-hd-marker hdmarker
5620 'org-category category 'date date
5621 'level level
5622 'ts-date
5623 (ignore-errors (org-time-string-to-absolute timestr))
5624 'org-category-position category-pos
5625 'todo-state todo-state
5626 'warntime warntime
5627 'type "timestamp")
5628 (push txt ee))
5629 (if org-agenda-skip-additional-timestamps-same-entry
5630 (outline-next-heading)
5631 (goto-char end-of-match))))
5632 (nreverse ee)))
5634 (defun org-agenda-get-sexps ()
5635 "Return the sexp information for agenda display."
5636 (require 'diary-lib)
5637 (let* ((props (list 'face 'org-agenda-calendar-sexp
5638 'mouse-face 'highlight
5639 'help-echo
5640 (format "mouse-2 or RET jump to org file %s"
5641 (abbreviate-file-name buffer-file-name))))
5642 (regexp "^&?%%(")
5643 marker category extra category-pos level ee txt tags entry
5644 result beg b sexp sexp-entry todo-state warntime inherited-tags)
5645 (goto-char (point-min))
5646 (while (re-search-forward regexp nil t)
5647 (catch :skip
5648 (org-agenda-skip)
5649 (setq beg (match-beginning 0))
5650 (goto-char (1- (match-end 0)))
5651 (setq b (point))
5652 (forward-sexp 1)
5653 (setq sexp (buffer-substring b (point)))
5654 (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
5655 (org-trim (match-string 1))
5656 ""))
5657 (setq result (org-diary-sexp-entry sexp sexp-entry date))
5658 (when result
5659 (setq marker (org-agenda-new-marker beg)
5660 level (make-string (org-reduced-level (org-outline-level)) ? )
5661 category (org-get-category beg)
5662 category-pos (get-text-property beg 'org-category-position)
5663 inherited-tags
5664 (or (eq org-agenda-show-inherited-tags 'always)
5665 (and (listp org-agenda-show-inherited-tags)
5666 (memq 'agenda org-agenda-show-inherited-tags))
5667 (and (eq org-agenda-show-inherited-tags t)
5668 (or (eq org-agenda-use-tag-inheritance t)
5669 (memq 'agenda org-agenda-use-tag-inheritance))))
5670 tags (org-get-tags-at nil (not inherited-tags))
5671 todo-state (org-get-todo-state)
5672 warntime (get-text-property (point) 'org-appt-warntime)
5673 extra nil)
5675 (dolist (r (if (stringp result)
5676 (list result)
5677 result)) ;; we expect a list here
5678 (when (and org-agenda-diary-sexp-prefix
5679 (string-match org-agenda-diary-sexp-prefix r))
5680 (setq extra (match-string 0 r)
5681 r (replace-match "" nil nil r)))
5682 (if (string-match "\\S-" r)
5683 (setq txt r)
5684 (setq txt "SEXP entry returned empty string"))
5685 (setq txt (org-agenda-format-item extra txt level category tags 'time))
5686 (org-add-props txt props 'org-marker marker
5687 'org-category category 'date date 'todo-state todo-state
5688 'org-category-position category-pos 'tags tags
5689 'level level
5690 'type "sexp" 'warntime warntime)
5691 (push txt ee)))))
5692 (nreverse ee)))
5694 ;; Calendar sanity: define some functions that are independent of
5695 ;; `calendar-date-style'.
5696 ;; Normally I would like to use ISO format when calling the diary functions,
5697 ;; but to make sure we still have Emacs 22 compatibility we bind
5698 ;; also `european-calendar-style' and use european format
5699 (defun org-anniversary (year month day &optional mark)
5700 "Like `diary-anniversary', but with fixed (ISO) order of arguments."
5701 (org-no-warnings
5702 (let ((calendar-date-style 'european) (european-calendar-style t))
5703 (diary-anniversary day month year mark))))
5704 (defun org-cyclic (N year month day &optional mark)
5705 "Like `diary-cyclic', but with fixed (ISO) order of arguments."
5706 (org-no-warnings
5707 (let ((calendar-date-style 'european) (european-calendar-style t))
5708 (diary-cyclic N day month year mark))))
5709 (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
5710 "Like `diary-block', but with fixed (ISO) order of arguments."
5711 (org-no-warnings
5712 (let ((calendar-date-style 'european) (european-calendar-style t))
5713 (diary-block D1 M1 Y1 D2 M2 Y2 mark))))
5714 (defun org-date (year month day &optional mark)
5715 "Like `diary-date', but with fixed (ISO) order of arguments."
5716 (org-no-warnings
5717 (let ((calendar-date-style 'european) (european-calendar-style t))
5718 (diary-date day month year mark))))
5720 ;; Define the` org-class' function
5721 (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
5722 "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
5723 DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
5724 SKIP-WEEKS is any number of ISO weeks in the block period for which the
5725 item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
5726 `holidays', then any date that is known by the Emacs calendar to be a
5727 holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
5728 then those holidays will be skipped."
5729 (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
5730 (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
5731 (d (calendar-absolute-from-gregorian date))
5732 (h (when skip-weeks (calendar-check-holidays date))))
5733 (and
5734 (<= date1 d)
5735 (<= d date2)
5736 (= (calendar-day-of-week date) dayname)
5737 (or (not skip-weeks)
5738 (progn
5739 (require 'cal-iso)
5740 (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
5741 (not (or (and h (memq 'holidays skip-weeks))
5742 (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
5743 entry)))
5745 (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname &rest skip-weeks)
5746 "Like `org-class', but honor `calendar-date-style'.
5747 The order of the first 2 times 3 arguments depends on the variable
5748 `calendar-date-style' or, if that is not defined, on `european-calendar-style'.
5749 So for American calendars, give this as MONTH DAY YEAR, for European as
5750 DAY MONTH YEAR, and for ISO as YEAR MONTH DAY.
5751 DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
5752 is any number of ISO weeks in the block period for which the item should
5753 be skipped.
5755 This function is here only for backward compatibility and it is deprecated,
5756 please use `org-class' instead."
5757 (let* ((date1 (org-order-calendar-date-args m1 d1 y1))
5758 (date2 (org-order-calendar-date-args m2 d2 y2)))
5759 (org-class
5760 (nth 2 date1) (car date1) (nth 1 date1)
5761 (nth 2 date2) (car date2) (nth 1 date2)
5762 dayname skip-weeks)))
5763 (make-obsolete 'org-diary-class 'org-class "")
5765 (defvar org-agenda-show-log-scoped) ;; dynamically scope in `org-timeline' or `org-agenda-list'
5766 (defalias 'org-get-closed 'org-agenda-get-progress)
5767 (defun org-agenda-get-progress ()
5768 "Return the logged TODO entries for agenda display."
5769 (let* ((props (list 'mouse-face 'highlight
5770 'org-not-done-regexp org-not-done-regexp
5771 'org-todo-regexp org-todo-regexp
5772 'org-complex-heading-regexp org-complex-heading-regexp
5773 'help-echo
5774 (format "mouse-2 or RET jump to org file %s"
5775 (abbreviate-file-name buffer-file-name))))
5776 (items (if (consp org-agenda-show-log-scoped)
5777 org-agenda-show-log-scoped
5778 (if (eq org-agenda-show-log-scoped 'clockcheck)
5779 '(clock)
5780 org-agenda-log-mode-items)))
5781 (parts
5782 (delq nil
5783 (list
5784 (if (memq 'closed items) (concat "\\<" org-closed-string))
5785 (if (memq 'clock items) (concat "\\<" org-clock-string))
5786 (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
5787 (parts-re (if parts (mapconcat 'identity parts "\\|")
5788 (error "`org-agenda-log-mode-items' is empty")))
5789 (regexp (concat
5790 "\\(" parts-re "\\)"
5791 " *\\["
5792 (regexp-quote
5793 (substring
5794 (format-time-string
5795 (car org-time-stamp-formats)
5796 (apply 'encode-time ; DATE bound by calendar
5797 (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
5798 1 11))))
5799 (org-agenda-search-headline-for-time nil)
5800 marker hdmarker priority category category-pos level tags closedp
5801 statep clockp state ee txt extra timestr rest clocked inherited-tags)
5802 (goto-char (point-min))
5803 (while (re-search-forward regexp nil t)
5804 (catch :skip
5805 (org-agenda-skip)
5806 (setq marker (org-agenda-new-marker (match-beginning 0))
5807 closedp (equal (match-string 1) org-closed-string)
5808 statep (equal (string-to-char (match-string 1)) ?-)
5809 clockp (not (or closedp statep))
5810 state (and statep (match-string 2))
5811 category (org-get-category (match-beginning 0))
5812 category-pos (get-text-property (match-beginning 0) 'org-category-position)
5813 timestr (buffer-substring (match-beginning 0) (point-at-eol)))
5814 (when (string-match "\\]" timestr)
5815 ;; substring should only run to end of time stamp
5816 (setq rest (substring timestr (match-end 0))
5817 timestr (substring timestr 0 (match-end 0)))
5818 (if (and (not closedp) (not statep)
5819 (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
5820 rest))
5821 (progn (setq timestr (concat (substring timestr 0 -1)
5822 "-" (match-string 1 rest) "]"))
5823 (setq clocked (match-string 2 rest)))
5824 (setq clocked "-")))
5825 (save-excursion
5826 (setq extra
5827 (cond
5828 ((not org-agenda-log-mode-add-notes) nil)
5829 (statep
5830 (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
5831 (match-string 1)))
5832 (clockp
5833 (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
5834 (match-string 1)))))
5835 (if (not (re-search-backward org-outline-regexp-bol nil t))
5836 (throw :skip nil)
5837 (goto-char (match-beginning 0))
5838 (setq hdmarker (org-agenda-new-marker)
5839 inherited-tags
5840 (or (eq org-agenda-show-inherited-tags 'always)
5841 (and (listp org-agenda-show-inherited-tags)
5842 (memq 'todo org-agenda-show-inherited-tags))
5843 (and (eq org-agenda-show-inherited-tags t)
5844 (or (eq org-agenda-use-tag-inheritance t)
5845 (memq 'todo org-agenda-use-tag-inheritance))))
5846 tags (org-get-tags-at nil (not inherited-tags))
5847 level (make-string (org-reduced-level (org-outline-level)) ? ))
5848 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
5849 (setq txt (match-string 1))
5850 (when extra
5851 (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
5852 (setq txt (concat (substring txt 0 (match-beginning 1))
5853 " - " extra " " (match-string 2 txt)))
5854 (setq txt (concat txt " - " extra))))
5855 (setq txt (org-agenda-format-item
5856 (cond
5857 (closedp "Closed: ")
5858 (statep (concat "State: (" state ")"))
5859 (t (concat "Clocked: (" clocked ")")))
5860 txt level category tags timestr)))
5861 (setq priority 100000)
5862 (org-add-props txt props
5863 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
5864 'priority priority 'org-category category
5865 'org-category-position category-pos
5866 'level level
5867 'type "closed" 'date date
5868 'undone-face 'org-warning 'done-face 'org-agenda-done)
5869 (push txt ee))
5870 (goto-char (point-at-eol))))
5871 (nreverse ee)))
5873 (defun org-agenda-show-clocking-issues ()
5874 "Add overlays, showing issues with clocking.
5875 See also the user option `org-agenda-clock-consistency-checks'."
5876 (interactive)
5877 (let* ((org-time-clocksum-use-effort-durations nil)
5878 (pl org-agenda-clock-consistency-checks)
5879 (re (concat "^[ \t]*"
5880 org-clock-string
5881 "[ \t]+"
5882 "\\(\\[.*?\\]\\)" ; group 1 is first stamp
5883 "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
5884 (tlstart 0.)
5885 (tlend 0.)
5886 (maxtime (org-hh:mm-string-to-minutes
5887 (or (plist-get pl :max-duration) "24:00")))
5888 (mintime (org-hh:mm-string-to-minutes
5889 (or (plist-get pl :min-duration) 0)))
5890 (maxgap (org-hh:mm-string-to-minutes
5891 ;; default 30:00 means never complain
5892 (or (plist-get pl :max-gap) "30:00")))
5893 (gapok (mapcar 'org-hh:mm-string-to-minutes
5894 (plist-get pl :gap-ok-around)))
5895 (def-face (or (plist-get pl :default-face)
5896 '((:background "DarkRed") (:foreground "white"))))
5897 issue face m te ts dt ov)
5898 (goto-char (point-min))
5899 (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
5900 (setq issue nil face def-face)
5901 (catch 'next
5902 (setq m (org-get-at-bol 'org-marker)
5903 te nil ts nil)
5904 (unless (and m (markerp m))
5905 (setq issue "No valid clock line") (throw 'next t))
5906 (org-with-point-at m
5907 (save-excursion
5908 (goto-char (point-at-bol))
5909 (unless (looking-at re)
5910 (error "No valid Clock line")
5911 (throw 'next t))
5912 (unless (match-end 3)
5913 (setq issue "No end time"
5914 face (or (plist-get pl :no-end-time-face) face))
5915 (throw 'next t))
5916 (setq ts (match-string 1)
5917 te (match-string 3)
5918 ts (org-float-time
5919 (apply 'encode-time (org-parse-time-string ts)))
5920 te (org-float-time
5921 (apply 'encode-time (org-parse-time-string te)))
5922 dt (- te ts))))
5923 (cond
5924 ((> dt (* 60 maxtime))
5925 ;; a very long clocking chunk
5926 (setq issue (format "Clocking interval is very long: %s"
5927 (org-minutes-to-clocksum-string
5928 (floor (/ (float dt) 60.))))
5929 face (or (plist-get pl :long-face) face)))
5930 ((< dt (* 60 mintime))
5931 ;; a very short clocking chunk
5932 (setq issue (format "Clocking interval is very short: %s"
5933 (org-minutes-to-clocksum-string
5934 (floor (/ (float dt) 60.))))
5935 face (or (plist-get pl :short-face) face)))
5936 ((and (> tlend 0) (< ts tlend))
5937 ;; Two clock entries are overlapping
5938 (setq issue (format "Clocking overlap: %d minutes"
5939 (/ (- tlend ts) 60))
5940 face (or (plist-get pl :overlap-face) face)))
5941 ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
5942 ;; There is a gap, lets see if we need to report it
5943 (unless (org-agenda-check-clock-gap tlend ts gapok)
5944 (setq issue (format "Clocking gap: %d minutes"
5945 (/ (- ts tlend) 60))
5946 face (or (plist-get pl :gap-face) face))))
5947 (t nil)))
5948 (setq tlend (or te tlend) tlstart (or ts tlstart))
5949 (when issue
5950 ;; OK, there was some issue, add an overlay to show the issue
5951 (setq ov (make-overlay (point-at-bol) (point-at-eol)))
5952 (overlay-put ov 'before-string
5953 (concat
5954 (org-add-props
5955 (format "%-43s" (concat " " issue))
5957 'face face)
5958 "\n"))
5959 (overlay-put ov 'evaporate t)))))
5961 (defun org-agenda-check-clock-gap (t1 t2 ok-list)
5962 "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
5963 (catch 'exit
5964 (unless ok-list
5965 ;; there are no OK times for gaps...
5966 (throw 'exit nil))
5967 (if (> (- (/ t2 36000) (/ t1 36000)) 24)
5968 ;; This is more than 24 hours, so it is OK.
5969 ;; because we have at least one OK time, that must be in the
5970 ;; 24 hour interval.
5971 (throw 'exit t))
5972 ;; We have a shorter gap.
5973 ;; Now we have to get the minute of the day when these times are
5974 (let* ((t1dec (decode-time (seconds-to-time t1)))
5975 (t2dec (decode-time (seconds-to-time t2)))
5976 ;; compute the minute on the day
5977 (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
5978 (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
5979 (when (< min2 min1)
5980 ;; if min2 is smaller than min1, this means it is on the next day.
5981 ;; Wrap it to after midnight.
5982 (setq min2 (+ min2 1440)))
5983 ;; Now check if any of the OK times is in the gap
5984 (mapc (lambda (x)
5985 ;; Wrap the time to after midnight if necessary
5986 (if (< x min1) (setq x (+ x 1440)))
5987 ;; Check if in interval
5988 (and (<= min1 x) (>= min2 x) (throw 'exit t)))
5989 ok-list)
5990 ;; Nope, this gap is not OK
5991 nil)))
5993 (defun org-agenda-get-deadlines (&optional with-hour)
5994 "Return the deadline information for agenda display.
5995 When WITH-HOUR is non-nil, only return deadlines with an hour
5996 specification like [h]h:mm."
5997 (let* ((props (list 'mouse-face 'highlight
5998 'org-not-done-regexp org-not-done-regexp
5999 'org-todo-regexp org-todo-regexp
6000 'org-complex-heading-regexp org-complex-heading-regexp
6001 'help-echo
6002 (format "mouse-2 or RET jump to org file %s"
6003 (abbreviate-file-name buffer-file-name))))
6004 (regexp (if with-hour
6005 org-deadline-time-hour-regexp
6006 org-deadline-time-regexp))
6007 (todayp (org-agenda-todayp date)) ; DATE bound by calendar
6008 (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
6009 (dl0 (car org-agenda-deadline-leaders))
6010 (dl1 (nth 1 org-agenda-deadline-leaders))
6011 (dl2 (or (nth 2 org-agenda-deadline-leaders) dl1))
6012 d2 diff dfrac wdays pos pos1 category category-pos level
6013 tags suppress-prewarning ee txt head face s todo-state
6014 show-all upcomingp donep timestr warntime inherited-tags ts-date)
6015 (goto-char (point-min))
6016 (while (re-search-forward regexp nil t)
6017 (catch :skip
6018 (org-agenda-skip)
6019 (setq s (match-string 1)
6020 txt nil
6021 pos (1- (match-beginning 1))
6022 todo-state (save-match-data (org-get-todo-state))
6023 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
6024 (member todo-state
6025 org-agenda-repeating-timestamp-show-all))
6026 d2 (org-time-string-to-absolute
6027 s d1 'past show-all (current-buffer) pos)
6028 diff (- d2 d1))
6029 (setq suppress-prewarning
6030 (let ((ds (and org-agenda-skip-deadline-prewarning-if-scheduled
6031 (let ((item (buffer-substring (point-at-bol)
6032 (point-at-eol))))
6033 (save-match-data
6034 (and (string-match
6035 org-scheduled-time-regexp item)
6036 (match-string 1 item)))))))
6037 (cond
6038 ((not ds) nil)
6039 ;; The current item has a scheduled date (in ds), so
6040 ;; evaluate its prewarning lead time.
6041 ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
6042 ;; Use global prewarning-restart lead time.
6043 org-agenda-skip-deadline-prewarning-if-scheduled)
6044 ((eq org-agenda-skip-deadline-prewarning-if-scheduled
6045 'pre-scheduled)
6046 ;; Set prewarning to no earlier than scheduled.
6047 (min (- d2 (org-time-string-to-absolute
6048 ds d1 'past show-all (current-buffer) pos))
6049 org-deadline-warning-days))
6050 ;; Set prewarning to deadline.
6051 (t 0))))
6052 (setq wdays (if suppress-prewarning
6053 (let ((org-deadline-warning-days suppress-prewarning))
6054 (org-get-wdays s))
6055 (org-get-wdays s))
6056 dfrac (- 1 (/ (* 1.0 diff) (max wdays 1)))
6057 upcomingp (and todayp (> diff 0)))
6058 ;; When to show a deadline in the calendar:
6059 ;; If the expiration is within wdays warning time.
6060 ;; Past-due deadlines are only shown on the current date
6061 (if (and (or (and (<= diff wdays)
6062 (and todayp (not org-agenda-only-exact-dates)))
6063 (= diff 0)))
6064 (save-excursion
6065 ;; (setq todo-state (org-get-todo-state))
6066 (setq donep (member todo-state org-done-keywords))
6067 (if (and donep
6068 (or org-agenda-skip-deadline-if-done
6069 (not (= diff 0))))
6070 (setq txt nil)
6071 (setq category (org-get-category)
6072 warntime (get-text-property (point) 'org-appt-warntime)
6073 category-pos (get-text-property (point) 'org-category-position))
6074 (if (not (re-search-backward "^\\*+[ \t]+" nil t))
6075 (throw :skip nil)
6076 (goto-char (match-end 0))
6077 (setq pos1 (match-beginning 0))
6078 (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
6079 (setq inherited-tags
6080 (or (eq org-agenda-show-inherited-tags 'always)
6081 (and (listp org-agenda-show-inherited-tags)
6082 (memq 'agenda org-agenda-show-inherited-tags))
6083 (and (eq org-agenda-show-inherited-tags t)
6084 (or (eq org-agenda-use-tag-inheritance t)
6085 (memq 'agenda org-agenda-use-tag-inheritance))))
6086 tags (org-get-tags-at pos1 (not inherited-tags)))
6087 (setq head (buffer-substring
6088 (point)
6089 (progn (skip-chars-forward "^\r\n")
6090 (point))))
6091 (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
6092 (setq timestr
6093 (concat (substring s (match-beginning 1)) " "))
6094 (setq timestr 'time))
6095 (setq txt (org-agenda-format-item
6096 (cond ((= diff 0) dl0)
6097 ((> diff 0)
6098 (if (functionp dl1)
6099 (funcall dl1 diff date)
6100 (format dl1 diff)))
6102 (if (functionp dl2)
6103 (funcall dl2 diff date)
6104 (format dl2 (if (string= dl2 dl1)
6105 diff (abs diff))))))
6106 head level category tags
6107 (if (not (= diff 0)) nil timestr)))))
6108 (when txt
6109 (setq face (org-agenda-deadline-face dfrac))
6110 (org-add-props txt props
6111 'org-marker (org-agenda-new-marker pos)
6112 'warntime warntime
6113 'level level
6114 'ts-date d2
6115 'org-hd-marker (org-agenda-new-marker pos1)
6116 'priority (+ (- diff)
6117 (org-get-priority txt))
6118 'org-category category
6119 'org-category-position category-pos
6120 'todo-state todo-state
6121 'type (if upcomingp "upcoming-deadline" "deadline")
6122 'date (if upcomingp date d2)
6123 'face (if donep 'org-agenda-done face)
6124 'undone-face face 'done-face 'org-agenda-done)
6125 (push txt ee))))))
6126 (nreverse ee)))
6128 (defun org-agenda-deadline-face (fraction)
6129 "Return the face to displaying a deadline item.
6130 FRACTION is what fraction of the head-warning time has passed."
6131 (let ((faces org-agenda-deadline-faces) f)
6132 (catch 'exit
6133 (while (setq f (pop faces))
6134 (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
6136 (defun org-agenda-get-scheduled (&optional deadline-results with-hour)
6137 "Return the scheduled information for agenda display.
6138 When WITH-HOUR is non-nil, only return scheduled items with
6139 an hour specification like [h]h:mm."
6140 (let* ((props (list 'org-not-done-regexp org-not-done-regexp
6141 'org-todo-regexp org-todo-regexp
6142 'org-complex-heading-regexp org-complex-heading-regexp
6143 'done-face 'org-agenda-done
6144 'mouse-face 'highlight
6145 'help-echo
6146 (format "mouse-2 or RET jump to org file %s"
6147 (abbreviate-file-name buffer-file-name))))
6148 (regexp (if with-hour
6149 org-scheduled-time-hour-regexp
6150 org-scheduled-time-regexp))
6151 (todayp (org-agenda-todayp date)) ; DATE bound by calendar
6152 (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
6154 (deadline-position-alist
6155 (mapcar (lambda (a) (and (setq mm (get-text-property
6156 0 'org-hd-marker a))
6157 (cons (marker-position mm) a)))
6158 deadline-results))
6159 d2 diff pos pos1 category category-pos level tags donep
6160 ee txt head pastschedp todo-state face timestr s habitp show-all
6161 did-habit-check-p warntime inherited-tags ts-date suppress-delay
6162 ddays)
6163 (goto-char (point-min))
6164 (while (re-search-forward regexp nil t)
6165 (catch :skip
6166 (org-agenda-skip)
6167 (setq s (match-string 1)
6168 txt nil
6169 pos (1- (match-beginning 1))
6170 todo-state (save-match-data (org-get-todo-state))
6171 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
6172 (member todo-state
6173 org-agenda-repeating-timestamp-show-all))
6174 d2 (org-time-string-to-absolute
6175 s d1 'past show-all (current-buffer) pos)
6176 diff (- d2 d1)
6177 warntime (get-text-property (point) 'org-appt-warntime))
6178 (setq pastschedp (and todayp (< diff 0)))
6179 (setq did-habit-check-p nil)
6180 (setq suppress-delay
6181 (let ((ds (and org-agenda-skip-scheduled-delay-if-deadline
6182 (let ((item (buffer-substring (point-at-bol) (point-at-eol))))
6183 (save-match-data
6184 (and (string-match
6185 org-deadline-time-regexp item)
6186 (match-string 1 item)))))))
6187 (cond
6188 ((not ds) nil)
6189 ;; The current item has a deadline date (in ds), so
6190 ;; evaluate its delay time.
6191 ((integerp org-agenda-skip-scheduled-delay-if-deadline)
6192 ;; Use global delay time.
6193 (- org-agenda-skip-scheduled-delay-if-deadline))
6194 ((eq org-agenda-skip-scheduled-delay-if-deadline
6195 'post-deadline)
6196 ;; Set delay to no later than deadline.
6197 (min (- d2 (org-time-string-to-absolute
6198 ds d1 'past show-all (current-buffer) pos))
6199 org-scheduled-delay-days))
6200 (t 0))))
6201 (setq ddays (if suppress-delay
6202 (let ((org-scheduled-delay-days suppress-delay))
6203 (org-get-wdays s t t))
6204 (org-get-wdays s t)))
6205 ;; Use a delay of 0 when there is a repeater and the delay is
6206 ;; of the form --3d
6207 (when (and (save-match-data (string-match "--[0-9]+[hdwmy]" s))
6208 (< (org-time-string-to-absolute s)
6209 (org-time-string-to-absolute
6210 s d2 'past nil (current-buffer) pos)))
6211 (setq ddays 0))
6212 ;; When to show a scheduled item in the calendar:
6213 ;; If it is on or past the date.
6214 (when (or (and (> ddays 0) (= diff (- ddays)))
6215 (and (zerop ddays) (= diff 0))
6216 (and (< (+ diff ddays) 0)
6217 (< (abs diff) org-scheduled-past-days)
6218 (and todayp (not org-agenda-only-exact-dates)))
6219 ;; org-is-habit-p uses org-entry-get, which is expansive
6220 ;; so we go extra mile to only call it once
6221 (and todayp
6222 (boundp 'org-habit-show-all-today)
6223 org-habit-show-all-today
6224 (setq did-habit-check-p t)
6225 (setq habitp (and (functionp 'org-is-habit-p)
6226 (org-is-habit-p)))))
6227 (save-excursion
6228 (setq donep (member todo-state org-done-keywords))
6229 (if (and donep
6230 (or org-agenda-skip-scheduled-if-done
6231 (not (= diff 0))
6232 (and (functionp 'org-is-habit-p)
6233 (org-is-habit-p))))
6234 (setq txt nil)
6235 (setq habitp (if did-habit-check-p habitp
6236 (and (functionp 'org-is-habit-p)
6237 (org-is-habit-p))))
6238 (setq category (org-get-category)
6239 category-pos (get-text-property (point) 'org-category-position))
6240 (if (and (eq org-agenda-skip-scheduled-if-deadline-is-shown
6241 'repeated-after-deadline)
6242 (<= 0 (- d2 (time-to-days (org-get-deadline-time (point))))))
6243 (throw :skip nil))
6244 (if (not (re-search-backward "^\\*+[ \t]+" nil t))
6245 (throw :skip nil)
6246 (goto-char (match-end 0))
6247 (setq pos1 (match-beginning 0))
6248 (if habitp
6249 (if (or (not org-habit-show-habits)
6250 (and (not todayp)
6251 (boundp 'org-habit-show-habits-only-for-today)
6252 org-habit-show-habits-only-for-today))
6253 (throw :skip nil))
6254 (if (and
6255 (or (eq t org-agenda-skip-scheduled-if-deadline-is-shown)
6256 (and (eq org-agenda-skip-scheduled-if-deadline-is-shown 'not-today)
6257 pastschedp))
6258 (setq mm (assoc pos1 deadline-position-alist)))
6259 (throw :skip nil)))
6260 (setq inherited-tags
6261 (or (eq org-agenda-show-inherited-tags 'always)
6262 (and (listp org-agenda-show-inherited-tags)
6263 (memq 'agenda org-agenda-show-inherited-tags))
6264 (and (eq org-agenda-show-inherited-tags t)
6265 (or (eq org-agenda-use-tag-inheritance t)
6266 (memq 'agenda org-agenda-use-tag-inheritance))))
6268 tags (org-get-tags-at nil (not inherited-tags)))
6269 (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
6270 (setq head (buffer-substring
6271 (point)
6272 (progn (skip-chars-forward "^\r\n") (point))))
6273 (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
6274 (setq timestr
6275 (concat (substring s (match-beginning 1)) " "))
6276 (setq timestr 'time))
6277 (setq txt (org-agenda-format-item
6278 (if (= diff 0)
6279 (car org-agenda-scheduled-leaders)
6280 (format (nth 1 org-agenda-scheduled-leaders)
6281 (- 1 diff)))
6282 head level category tags
6283 (if (not (= diff 0)) nil timestr)
6284 nil habitp))))
6285 (when txt
6286 (setq face
6287 (cond
6288 ((and (not habitp) pastschedp)
6289 'org-scheduled-previously)
6290 (todayp 'org-scheduled-today)
6291 (t 'org-scheduled))
6292 habitp (and habitp (org-habit-parse-todo)))
6293 (org-add-props txt props
6294 'undone-face face
6295 'face (if donep 'org-agenda-done face)
6296 'org-marker (org-agenda-new-marker pos)
6297 'org-hd-marker (org-agenda-new-marker pos1)
6298 'type (if pastschedp "past-scheduled" "scheduled")
6299 'date (if pastschedp d2 date)
6300 'ts-date d2
6301 'warntime warntime
6302 'level level
6303 'priority (if habitp
6304 (org-habit-get-priority habitp)
6305 (+ 94 (- 5 diff) (org-get-priority txt)))
6306 'org-category category
6307 'category-position category-pos
6308 'org-habit-p habitp
6309 'todo-state todo-state)
6310 (push txt ee))))))
6311 (nreverse ee)))
6313 (defun org-agenda-get-blocks ()
6314 "Return the date-range information for agenda display."
6315 (let* ((props (list 'face nil
6316 'org-not-done-regexp org-not-done-regexp
6317 'org-todo-regexp org-todo-regexp
6318 'org-complex-heading-regexp org-complex-heading-regexp
6319 'mouse-face 'highlight
6320 'help-echo
6321 (format "mouse-2 or RET jump to org file %s"
6322 (abbreviate-file-name buffer-file-name))))
6323 (regexp org-tr-regexp)
6324 (d0 (calendar-absolute-from-gregorian date))
6325 marker hdmarker ee txt d1 d2 s1 s2 category category-pos
6326 level todo-state tags pos head donep inherited-tags)
6327 (goto-char (point-min))
6328 (while (re-search-forward regexp nil t)
6329 (catch :skip
6330 (org-agenda-skip)
6331 (setq pos (point))
6332 (let ((start-time (match-string 1))
6333 (end-time (match-string 2)))
6334 (setq s1 (match-string 1)
6335 s2 (match-string 2)
6336 d1 (time-to-days (org-time-string-to-time s1 (current-buffer) pos))
6337 d2 (time-to-days (org-time-string-to-time s2 (current-buffer) pos)))
6338 (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
6339 ;; Only allow days between the limits, because the normal
6340 ;; date stamps will catch the limits.
6341 (save-excursion
6342 (setq todo-state (org-get-todo-state))
6343 (setq donep (member todo-state org-done-keywords))
6344 (if (and donep org-agenda-skip-timestamp-if-done)
6345 (throw :skip t))
6346 (setq marker (org-agenda-new-marker (point)))
6347 (setq category (org-get-category)
6348 category-pos (get-text-property (point) 'org-category-position))
6349 (if (not (re-search-backward org-outline-regexp-bol nil t))
6350 (throw :skip nil)
6351 (goto-char (match-beginning 0))
6352 (setq hdmarker (org-agenda-new-marker (point))
6353 inherited-tags
6354 (or (eq org-agenda-show-inherited-tags 'always)
6355 (and (listp org-agenda-show-inherited-tags)
6356 (memq 'agenda org-agenda-show-inherited-tags))
6357 (and (eq org-agenda-show-inherited-tags t)
6358 (or (eq org-agenda-use-tag-inheritance t)
6359 (memq 'agenda org-agenda-use-tag-inheritance))))
6361 tags (org-get-tags-at nil (not inherited-tags)))
6362 (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
6363 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
6364 (setq head (match-string 1))
6365 (let ((remove-re
6366 (if org-agenda-remove-timeranges-from-blocks
6367 (concat
6368 "<" (regexp-quote s1) ".*?>"
6369 "--"
6370 "<" (regexp-quote s2) ".*?>")
6371 nil)))
6372 (setq txt (org-agenda-format-item
6373 (format
6374 (nth (if (= d1 d2) 0 1)
6375 org-agenda-timerange-leaders)
6376 (1+ (- d0 d1)) (1+ (- d2 d1)))
6377 head level category tags
6378 (cond ((and (= d1 d0) (= d2 d0))
6379 (concat "<" start-time ">--<" end-time ">"))
6380 ((= d1 d0)
6381 (concat "<" start-time ">"))
6382 ((= d2 d0)
6383 (concat "<" end-time ">")))
6384 remove-re))))
6385 (org-add-props txt props
6386 'org-marker marker 'org-hd-marker hdmarker
6387 'type "block" 'date date
6388 'level level
6389 'todo-state todo-state
6390 'priority (org-get-priority txt) 'org-category category
6391 'org-category-position category-pos)
6392 (push txt ee))))
6393 (goto-char pos)))
6394 ;; Sort the entries by expiration date.
6395 (nreverse ee)))
6397 ;;; Agenda presentation and sorting
6399 (defvar org-prefix-has-time nil
6400 "A flag, set by `org-compile-prefix-format'.
6401 The flag is set if the currently compiled format contains a `%t'.")
6402 (defvar org-prefix-has-tag nil
6403 "A flag, set by `org-compile-prefix-format'.
6404 The flag is set if the currently compiled format contains a `%T'.")
6405 (defvar org-prefix-has-effort nil
6406 "A flag, set by `org-compile-prefix-format'.
6407 The flag is set if the currently compiled format contains a `%e'.")
6408 (defvar org-prefix-has-breadcrumbs nil
6409 "A flag, set by `org-compile-prefix-format'.
6410 The flag is set if the currently compiled format contains a `%b'.")
6411 (defvar org-prefix-category-length nil
6412 "Used by `org-compile-prefix-format' to remember the category field width.")
6413 (defvar org-prefix-category-max-length nil
6414 "Used by `org-compile-prefix-format' to remember the category field width.")
6416 (defun org-agenda-get-category-icon (category)
6417 "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
6418 (dolist (entry org-agenda-category-icon-alist)
6419 (when (org-string-match-p (car entry) category)
6420 (if (listp (cadr entry))
6421 (return (cadr entry))
6422 (return (apply 'create-image (cdr entry)))))))
6424 (defun org-agenda-format-item (extra txt &optional level category tags dotime
6425 remove-re habitp)
6426 "Format TXT to be inserted into the agenda buffer.
6427 In particular, add the prefix and corresponding text properties.
6429 EXTRA must be a string to replace the `%s' specifier in the prefix format.
6430 LEVEL may be a string to replace the `%l' specifier.
6431 CATEGORY (a string, a symbol or nil) may be used to overrule the default
6432 category taken from local variable or file name. It will replace the `%c'
6433 specifier in the format.
6434 DOTIME, when non-nil, indicates that a time-of-day should be extracted from
6435 TXT for sorting of this entry, and for the `%t' specifier in the format.
6436 When DOTIME is a string, this string is searched for a time before TXT is.
6437 TAGS can be the tags of the headline.
6438 Any match of REMOVE-RE will be removed from TXT."
6439 ;; We keep the org-prefix-* variable values along with a compiled
6440 ;; formatter, so that multiple agendas existing at the same time do
6441 ;; not step on each other toes.
6443 ;; It was inconvenient to make these variables buffer local in
6444 ;; Agenda buffers, because this function expects to be called with
6445 ;; the buffer where item comes from being current, and not agenda
6446 ;; buffer
6447 (let* ((bindings (car org-prefix-format-compiled))
6448 (formatter (cadr org-prefix-format-compiled)))
6449 (loop for (var value) in bindings
6450 do (set var value))
6451 (save-match-data
6452 ;; Diary entries sometimes have extra whitespace at the beginning
6453 (setq txt (org-trim txt))
6455 ;; Fix the tags part in txt
6456 (setq txt (org-agenda-fix-displayed-tags
6457 txt tags
6458 org-agenda-show-inherited-tags
6459 org-agenda-hide-tags-regexp))
6461 (let* ((category (or category
6462 (if (stringp org-category)
6463 org-category
6464 (and org-category (symbol-name org-category)))
6465 (if buffer-file-name
6466 (file-name-sans-extension
6467 (file-name-nondirectory buffer-file-name))
6468 "")))
6469 (category-icon (org-agenda-get-category-icon category))
6470 (category-icon (if category-icon
6471 (propertize " " 'display category-icon)
6472 ""))
6473 ;; time, tag, effort are needed for the eval of the prefix format
6474 (tag (if tags (nth (1- (length tags)) tags) ""))
6475 time effort neffort
6476 (ts (if dotime (concat
6477 (if (stringp dotime) dotime "")
6478 (and org-agenda-search-headline-for-time txt))))
6479 (time-of-day (and dotime (org-get-time-of-day ts)))
6480 stamp plain s0 s1 s2 rtn srp l
6481 duration thecategory breadcrumbs)
6482 (and (derived-mode-p 'org-mode) buffer-file-name
6483 (add-to-list 'org-agenda-contributing-files buffer-file-name))
6484 (when (and dotime time-of-day)
6485 ;; Extract starting and ending time and move them to prefix
6486 (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
6487 (setq plain (string-match org-plain-time-of-day-regexp ts)))
6488 (setq s0 (match-string 0 ts)
6489 srp (and stamp (match-end 3))
6490 s1 (match-string (if plain 1 2) ts)
6491 s2 (match-string (if plain 8 (if srp 4 6)) ts))
6493 ;; If the times are in TXT (not in DOTIMES), and the prefix will list
6494 ;; them, we might want to remove them there to avoid duplication.
6495 ;; The user can turn this off with a variable.
6496 (if (and org-prefix-has-time
6497 org-agenda-remove-times-when-in-prefix (or stamp plain)
6498 (string-match (concat (regexp-quote s0) " *") txt)
6499 (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
6500 (if (eq org-agenda-remove-times-when-in-prefix 'beg)
6501 (= (match-beginning 0) 0)
6503 (setq txt (replace-match "" nil nil txt))))
6504 ;; Normalize the time(s) to 24 hour
6505 (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
6506 (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
6508 ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
6509 (let (org-time-clocksum-use-effort-durations)
6510 (when (and s1 (not s2) org-agenda-default-appointment-duration)
6511 (setq s2
6512 (org-minutes-to-clocksum-string
6513 (+ (org-hh:mm-string-to-minutes s1)
6514 org-agenda-default-appointment-duration)))))
6516 ;; Compute the duration
6517 (when s2
6518 (setq duration (- (org-hh:mm-string-to-minutes s2)
6519 (org-hh:mm-string-to-minutes s1)))))
6521 (when (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
6522 txt)
6523 ;; Tags are in the string
6524 (if (or (eq org-agenda-remove-tags t)
6525 (and org-agenda-remove-tags
6526 org-prefix-has-tag))
6527 (setq txt (replace-match "" t t txt))
6528 (setq txt (replace-match
6529 (concat (make-string (max (- 50 (length txt)) 1) ?\ )
6530 (match-string 2 txt))
6531 t t txt))))
6532 (when (derived-mode-p 'org-mode)
6533 (setq effort (ignore-errors (get-text-property 0 'org-effort txt))))
6535 ;; org-agenda-add-time-grid-maybe calls us with *Agenda* as
6536 ;; current buffer, so move this check outside of above
6537 (if effort
6538 (setq neffort (org-duration-string-to-minutes effort)
6539 effort (setq effort (concat "[" effort "]")))
6540 ;; prevent erroring out with %e format when there is no effort
6541 (setq effort ""))
6543 (when remove-re
6544 (while (string-match remove-re txt)
6545 (setq txt (replace-match "" t t txt))))
6547 ;; Set org-heading property on `txt' to mark the start of the
6548 ;; heading.
6549 (add-text-properties 0 (length txt) '(org-heading t) txt)
6551 ;; Prepare the variables needed in the eval of the compiled format
6552 (if org-prefix-has-breadcrumbs
6553 (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
6554 (let ((s (org-display-outline-path nil nil "->" t)))
6555 (if (eq "" s) "" (concat s "->"))))))
6556 (setq time (cond (s2 (concat
6557 (org-agenda-time-of-day-to-ampm-maybe s1)
6558 "-" (org-agenda-time-of-day-to-ampm-maybe s2)
6559 (if org-agenda-timegrid-use-ampm " ")))
6560 (s1 (concat
6561 (org-agenda-time-of-day-to-ampm-maybe s1)
6562 (if org-agenda-timegrid-use-ampm
6563 "........ "
6564 "......")))
6565 (t ""))
6566 extra (or (and (not habitp) extra) "")
6567 category (if (symbolp category) (symbol-name category) category)
6568 thecategory (copy-sequence category)
6569 level (or level ""))
6570 (if (string-match org-bracket-link-regexp category)
6571 (progn
6572 (setq l (if (match-end 3)
6573 (- (match-end 3) (match-beginning 3))
6574 (- (match-end 1) (match-beginning 1))))
6575 (when (< l (or org-prefix-category-length 0))
6576 (setq category (copy-sequence category))
6577 (org-add-props category nil
6578 'extra-space (make-string
6579 (- org-prefix-category-length l 1) ?\ ))))
6580 (if (and org-prefix-category-max-length
6581 (>= (length category) org-prefix-category-max-length))
6582 (setq category (substring category 0 (1- org-prefix-category-max-length)))))
6583 ;; Evaluate the compiled format
6584 (setq rtn (concat (eval formatter) txt))
6586 ;; And finally add the text properties
6587 (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
6588 (org-add-props rtn nil
6589 'org-category (if thecategory (downcase thecategory) category)
6590 'tags (mapcar 'org-downcase-keep-props tags)
6591 'org-highest-priority org-highest-priority
6592 'org-lowest-priority org-lowest-priority
6593 'time-of-day time-of-day
6594 'duration duration
6595 'effort effort
6596 'effort-minutes neffort
6597 'breadcrumbs breadcrumbs
6598 'txt txt
6599 'level level
6600 'time time
6601 'extra extra
6602 'format org-prefix-format-compiled
6603 'dotime dotime)))))
6605 (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
6606 "Remove tags string from TXT, and add a modified list of tags.
6607 The modified list may contain inherited tags, and tags matched by
6608 `org-agenda-hide-tags-regexp' will be removed."
6609 (when (or add-inherited hide-re)
6610 (if (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") txt)
6611 (setq txt (substring txt 0 (match-beginning 0))))
6612 (setq tags
6613 (delq nil
6614 (mapcar (lambda (tg)
6615 (if (or (and hide-re (string-match hide-re tg))
6616 (and (not add-inherited)
6617 (get-text-property 0 'inherited tg)))
6619 tg))
6620 tags)))
6621 (when tags
6622 (let ((have-i (get-text-property 0 'inherited (car tags)))
6624 (setq txt (concat txt " :"
6625 (mapconcat
6626 (lambda (x)
6627 (setq i (get-text-property 0 'inherited x))
6628 (if (and have-i (not i))
6629 (progn
6630 (setq have-i nil)
6631 (concat ":" x))
6633 tags ":")
6634 (if have-i "::" ":"))))))
6635 txt)
6637 (defun org-downcase-keep-props (s)
6638 (let ((props (text-properties-at 0 s)))
6639 (setq s (downcase s))
6640 (add-text-properties 0 (length s) props s)
6643 (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
6645 (defun org-agenda-add-time-grid-maybe (list ndays todayp)
6646 "Add a time-grid for agenda items which need it.
6648 LIST is the list of agenda items formatted by `org-agenda-list'.
6649 NDAYS is the span of the current agenda view.
6650 TODAYP is `t' when the current agenda view is on today."
6651 (catch 'exit
6652 (cond ((not org-agenda-use-time-grid) (throw 'exit list))
6653 ((and todayp (member 'today (car org-agenda-time-grid))))
6654 ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
6655 ((member 'weekly (car org-agenda-time-grid)))
6656 (t (throw 'exit list)))
6657 (let* ((have (delq nil (mapcar
6658 (lambda (x) (get-text-property 1 'time-of-day x))
6659 list)))
6660 (string (nth 1 org-agenda-time-grid))
6661 (gridtimes (nth 2 org-agenda-time-grid))
6662 (req (car org-agenda-time-grid))
6663 (remove (member 'remove-match req))
6664 new time)
6665 (if (and (member 'require-timed req) (not have))
6666 ;; don't show empty grid
6667 (throw 'exit list))
6668 (while (setq time (pop gridtimes))
6669 (unless (and remove (member time have))
6670 (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
6671 (push (org-agenda-format-item
6672 nil string nil "" nil
6673 (concat (substring time 0 -2) ":" (substring time -2)))
6674 new)
6675 (put-text-property
6676 2 (length (car new)) 'face 'org-time-grid (car new))))
6677 (when (and todayp org-agenda-show-current-time-in-grid)
6678 (push (org-agenda-format-item
6679 nil org-agenda-current-time-string nil "" nil
6680 (format-time-string "%H:%M "))
6681 new)
6682 (put-text-property
6683 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
6685 (if (member 'time-up org-agenda-sorting-strategy-selected)
6686 (append new list)
6687 (append list new)))))
6689 (defun org-compile-prefix-format (key)
6690 "Compile the prefix format into a Lisp form that can be evaluated.
6691 The resulting form and associated variable bindings is returned
6692 and stored in the variable `org-prefix-format-compiled'."
6693 (setq org-prefix-has-time nil
6694 org-prefix-has-tag nil
6695 org-prefix-category-length nil
6696 org-prefix-has-effort nil
6697 org-prefix-has-breadcrumbs nil)
6698 (let ((s (cond
6699 ((stringp org-agenda-prefix-format)
6700 org-agenda-prefix-format)
6701 ((assq key org-agenda-prefix-format)
6702 (cdr (assq key org-agenda-prefix-format)))
6703 (t " %-12:c%?-12t% s")))
6704 (start 0)
6705 varform vars var e c f opt)
6706 (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
6707 s start)
6708 (setq var (or (cdr (assoc (match-string 4 s)
6709 '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
6710 ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
6711 'eval)
6712 c (or (match-string 3 s) "")
6713 opt (match-beginning 1)
6714 start (1+ (match-beginning 0)))
6715 (if (equal var 'time) (setq org-prefix-has-time t))
6716 (if (equal var 'tag) (setq org-prefix-has-tag t))
6717 (if (equal var 'effort) (setq org-prefix-has-effort t))
6718 (if (equal var 'breadcrumbs) (setq org-prefix-has-breadcrumbs t))
6719 (setq f (concat "%" (match-string 2 s) "s"))
6720 (when (equal var 'category)
6721 (setq org-prefix-category-length
6722 (floor (abs (string-to-number (match-string 2 s)))))
6723 (setq org-prefix-category-max-length
6724 (let ((x (match-string 2 s)))
6725 (save-match-data
6726 (if (string-match "\\.[0-9]+" x)
6727 (string-to-number (substring (match-string 0 x) 1)))))))
6728 (if (eq var 'eval)
6729 (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
6730 (if opt
6731 (setq varform
6732 `(if (equal "" ,var)
6734 (format ,f (if (equal "" ,var) "" (concat ,var ,c)))))
6735 (setq varform `(format ,f (if (equal ,var "") "" (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
6736 (setq s (replace-match "%s" t nil s))
6737 (push varform vars))
6738 (setq vars (nreverse vars))
6739 (with-current-buffer (or org-agenda-buffer (current-buffer))
6740 (setq org-prefix-format-compiled
6741 (list
6742 `((org-prefix-has-time ,org-prefix-has-time)
6743 (org-prefix-has-tag ,org-prefix-has-tag)
6744 (org-prefix-category-length ,org-prefix-category-length)
6745 (org-prefix-has-effort ,org-prefix-has-effort)
6746 (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
6747 `(format ,s ,@vars))))))
6749 (defun org-set-sorting-strategy (key)
6750 (if (symbolp (car org-agenda-sorting-strategy))
6751 ;; the old format
6752 (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
6753 (setq org-agenda-sorting-strategy-selected
6754 (or (cdr (assq key org-agenda-sorting-strategy))
6755 (cdr (assq 'agenda org-agenda-sorting-strategy))
6756 '(time-up category-keep priority-down)))))
6758 (defun org-get-time-of-day (s &optional string mod24)
6759 "Check string S for a time of day.
6760 If found, return it as a military time number between 0 and 2400.
6761 If not found, return nil.
6762 The optional STRING argument forces conversion into a 5 character wide string
6763 HH:MM."
6764 (save-match-data
6765 (when
6766 (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
6767 (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
6768 (let* ((h (string-to-number (match-string 1 s)))
6769 (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
6770 (ampm (if (match-end 4) (downcase (match-string 4 s))))
6771 (am-p (equal ampm "am"))
6772 (h1 (cond ((not ampm) h)
6773 ((= h 12) (if am-p 0 12))
6774 (t (+ h (if am-p 0 12)))))
6775 (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
6776 (mod h1 24) h1))
6777 (t0 (+ (* 100 h2) m))
6778 (t1 (concat (if (>= h1 24) "+" " ")
6779 (if (and org-agenda-time-leading-zero
6780 (< t0 1000)) "0" "")
6781 (if (< t0 100) "0" "")
6782 (if (< t0 10) "0" "")
6783 (int-to-string t0))))
6784 (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
6786 (defvar org-agenda-before-sorting-filter-function nil
6787 "Function to be applied to agenda items prior to sorting.
6788 Prior to sorting also means just before they are inserted into the agenda.
6790 To aid sorting, you may revisit the original entries and add more text
6791 properties which will later be used by the sorting functions.
6793 The function should take a string argument, an agenda line.
6794 It has access to the text properties in that line, which contain among
6795 other things, the property `org-hd-marker' that points to the entry
6796 where the line comes from. Note that not all lines going into the agenda
6797 have this property, only most.
6799 The function should return the modified string. It is probably best
6800 to ONLY change text properties.
6802 You can also use this function as a filter, by returning nil for lines
6803 you don't want to have in the agenda at all. For this application, you
6804 could bind the variable in the options section of a custom command.")
6806 (defun org-agenda-finalize-entries (list &optional type)
6807 "Sort, limit and concatenate the LIST of agenda items.
6808 The optional argument TYPE tells the agenda type."
6809 (let ((max-effort (cond ((listp org-agenda-max-effort)
6810 (cdr (assoc type org-agenda-max-effort)))
6811 (t org-agenda-max-effort)))
6812 (max-todo (cond ((listp org-agenda-max-todos)
6813 (cdr (assoc type org-agenda-max-todos)))
6814 (t org-agenda-max-todos)))
6815 (max-tags (cond ((listp org-agenda-max-tags)
6816 (cdr (assoc type org-agenda-max-tags)))
6817 (t org-agenda-max-tags)))
6818 (max-entries (cond ((listp org-agenda-max-entries)
6819 (cdr (assoc type org-agenda-max-entries)))
6820 (t org-agenda-max-entries))) l)
6821 (when org-agenda-before-sorting-filter-function
6822 (setq list
6823 (delq nil
6824 (mapcar
6825 org-agenda-before-sorting-filter-function list))))
6826 (setq list (mapcar 'org-agenda-highlight-todo list)
6827 list (mapcar 'identity (sort list 'org-entries-lessp)))
6828 (when max-effort
6829 (setq list (org-agenda-limit-entries
6830 list 'effort-minutes max-effort 'identity)))
6831 (when max-todo
6832 (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
6833 (when max-tags
6834 (setq list (org-agenda-limit-entries list 'tags max-tags)))
6835 (when max-entries
6836 (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
6837 (mapconcat 'identity list "\n")))
6839 (defun org-agenda-limit-entries (list prop limit &optional fn)
6840 "Limit the number of agenda entries."
6841 (let ((include (and limit (< limit 0))))
6842 (if limit
6843 (let ((fun (or fn (lambda (p) (if p 1))))
6844 (lim 0))
6845 (delq nil
6846 (mapcar
6847 (lambda (e)
6848 (let ((pval (funcall fun (get-text-property 1 prop e))))
6849 (if pval (setq lim (+ lim pval)))
6850 (cond ((and pval (<= lim (abs limit))) e)
6851 ((and include (not pval)) e))))
6852 list)))
6853 list)))
6855 (defun org-agenda-limit-interactively ()
6856 "In agenda, interactively limit entries to various maximums."
6857 (interactive)
6858 (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
6859 (num (string-to-number (read-from-minibuffer "How many? "))))
6860 (cond ((equal max ?e)
6861 (let ((org-agenda-max-entries num)) (org-agenda-redo)))
6862 ((equal max ?t)
6863 (let ((org-agenda-max-todos num)) (org-agenda-redo)))
6864 ((equal max ?T)
6865 (let ((org-agenda-max-tags num)) (org-agenda-redo)))
6866 ((equal max ?E)
6867 (let ((org-agenda-max-effort num)) (org-agenda-redo)))))
6868 (org-agenda-fit-window-to-buffer))
6870 (defun org-agenda-highlight-todo (x)
6871 (let ((org-done-keywords org-done-keywords-for-agenda)
6872 (case-fold-search nil)
6874 (if (eq x 'line)
6875 (save-excursion
6876 (beginning-of-line 1)
6877 (setq re (org-get-at-bol 'org-todo-regexp))
6878 (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
6879 (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
6880 (add-text-properties (match-beginning 0) (match-end 1)
6881 (list 'face (org-get-todo-face 1)))
6882 (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
6883 (delete-region (match-beginning 1) (1- (match-end 0)))
6884 (goto-char (match-beginning 1))
6885 (insert (format org-agenda-todo-keyword-format s)))))
6886 (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
6887 (setq re (get-text-property 0 'org-todo-regexp x))
6888 (when (and re
6889 ;; Test `pl' because if there's no heading content,
6890 ;; there's no point matching to highlight. Note
6891 ;; that if we didn't test `pl' first, and there
6892 ;; happened to be no keyword from `org-todo-regexp'
6893 ;; on this heading line, then the `equal' comparison
6894 ;; afterwards would spuriously succeed in the case
6895 ;; where `pl' is nil -- causing an args-out-of-range
6896 ;; error when we try to add text properties to text
6897 ;; that isn't there.
6899 (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
6900 x pl) pl))
6901 (add-text-properties
6902 (or (match-end 1) (match-end 0)) (match-end 0)
6903 (list 'face (org-get-todo-face (match-string 2 x)))
6905 (when (match-end 1)
6906 (setq x (concat (substring x 0 (match-end 1))
6907 (format org-agenda-todo-keyword-format
6908 (match-string 2 x))
6909 (org-add-props " " (text-properties-at 0 x))
6910 (substring x (match-end 3)))))))
6911 x)))
6913 (defsubst org-cmp-priority (a b)
6914 "Compare the priorities of string A and B."
6915 (let ((pa (or (get-text-property 1 'priority a) 0))
6916 (pb (or (get-text-property 1 'priority b) 0)))
6917 (cond ((> pa pb) +1)
6918 ((< pa pb) -1))))
6920 (defsubst org-cmp-effort (a b)
6921 "Compare the effort values of string A and B."
6922 (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
6923 (ea (or (get-text-property 1 'effort-minutes a) def))
6924 (eb (or (get-text-property 1 'effort-minutes b) def)))
6925 (cond ((> ea eb) +1)
6926 ((< ea eb) -1))))
6928 (defsubst org-cmp-category (a b)
6929 "Compare the string values of categories of strings A and B."
6930 (let ((ca (or (get-text-property 1 'org-category a) ""))
6931 (cb (or (get-text-property 1 'org-category b) "")))
6932 (cond ((string-lessp ca cb) -1)
6933 ((string-lessp cb ca) +1))))
6935 (defsubst org-cmp-todo-state (a b)
6936 "Compare the todo states of strings A and B."
6937 (let* ((ma (or (get-text-property 1 'org-marker a)
6938 (get-text-property 1 'org-hd-marker a)))
6939 (mb (or (get-text-property 1 'org-marker b)
6940 (get-text-property 1 'org-hd-marker b)))
6941 (fa (and ma (marker-buffer ma)))
6942 (fb (and mb (marker-buffer mb)))
6943 (todo-kwds
6944 (or (and fa (with-current-buffer fa org-todo-keywords-1))
6945 (and fb (with-current-buffer fb org-todo-keywords-1))))
6946 (ta (or (get-text-property 1 'todo-state a) ""))
6947 (tb (or (get-text-property 1 'todo-state b) ""))
6948 (la (- (length (member ta todo-kwds))))
6949 (lb (- (length (member tb todo-kwds))))
6950 (donepa (member ta org-done-keywords-for-agenda))
6951 (donepb (member tb org-done-keywords-for-agenda)))
6952 (cond ((and donepa (not donepb)) -1)
6953 ((and (not donepa) donepb) +1)
6954 ((< la lb) -1)
6955 ((< lb la) +1))))
6957 (defsubst org-cmp-alpha (a b)
6958 "Compare the headlines, alphabetically."
6959 (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
6960 (plb (text-property-any 0 (length b) 'org-heading t b))
6961 (ta (and pla (substring a pla)))
6962 (tb (and plb (substring b plb))))
6963 (when pla
6964 (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
6965 "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
6966 (setq ta (substring ta (match-end 0))))
6967 (setq ta (downcase ta)))
6968 (when plb
6969 (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
6970 "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
6971 (setq tb (substring tb (match-end 0))))
6972 (setq tb (downcase tb)))
6973 (cond ((not ta) +1)
6974 ((not tb) -1)
6975 ((string-lessp ta tb) -1)
6976 ((string-lessp tb ta) +1))))
6978 (defsubst org-cmp-tag (a b)
6979 "Compare the string values of the first tags of A and B."
6980 (let ((ta (car (last (get-text-property 1 'tags a))))
6981 (tb (car (last (get-text-property 1 'tags b)))))
6982 (cond ((not ta) +1)
6983 ((not tb) -1)
6984 ((string-lessp ta tb) -1)
6985 ((string-lessp tb ta) +1))))
6987 (defsubst org-cmp-time (a b)
6988 "Compare the time-of-day values of strings A and B."
6989 (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
6990 (ta (or (get-text-property 1 'time-of-day a) def))
6991 (tb (or (get-text-property 1 'time-of-day b) def)))
6992 (cond ((< ta tb) -1)
6993 ((< tb ta) +1))))
6995 (defsubst org-cmp-ts (a b &optional type)
6996 "Compare the timestamps values of entries A and B.
6997 When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
6998 \"timestamp_ia\", compare within each of these type. When TYPE
6999 is the empty string, compare all timestamps without respect of
7000 their type."
7001 (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
7002 (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
7003 (get-text-property 1 'ts-date a)) def))
7004 (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
7005 (get-text-property 1 'ts-date b)) def)))
7006 (cond ((< ta tb) -1)
7007 ((< tb ta) +1))))
7009 (defsubst org-cmp-habit-p (a b)
7010 "Compare the todo states of strings A and B."
7011 (let ((ha (get-text-property 1 'org-habit-p a))
7012 (hb (get-text-property 1 'org-habit-p b)))
7013 (cond ((and ha (not hb)) -1)
7014 ((and (not ha) hb) +1))))
7016 (defun org-entries-lessp (a b)
7017 "Predicate for sorting agenda entries."
7018 ;; The following variables will be used when the form is evaluated.
7019 ;; So even though the compiler complains, keep them.
7020 (let* ((ss org-agenda-sorting-strategy-selected)
7021 (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
7022 (org-cmp-ts a b "")))
7023 (timestamp-down (if timestamp-up (- timestamp-up) nil))
7024 (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
7025 (org-cmp-ts a b "scheduled")))
7026 (scheduled-down (if scheduled-up (- scheduled-up) nil))
7027 (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
7028 (org-cmp-ts a b "deadline")))
7029 (deadline-down (if deadline-up (- deadline-up) nil))
7030 (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
7031 (org-cmp-ts a b "iatimestamp_ia")))
7032 (tsia-down (if tsia-up (- tsia-up) nil))
7033 (ts-up (and (org-em 'ts-up 'ts-down ss)
7034 (org-cmp-ts a b "timestamp")))
7035 (ts-down (if ts-up (- ts-up) nil))
7036 (time-up (and (org-em 'time-up 'time-down ss)
7037 (org-cmp-time a b)))
7038 (time-down (if time-up (- time-up) nil))
7039 (priority-up (and (org-em 'priority-up 'priority-down ss)
7040 (org-cmp-priority a b)))
7041 (priority-down (if priority-up (- priority-up) nil))
7042 (effort-up (and (org-em 'effort-up 'effort-down ss)
7043 (org-cmp-effort a b)))
7044 (effort-down (if effort-up (- effort-up) nil))
7045 (category-up (and (or (org-em 'category-up 'category-down ss)
7046 (memq 'category-keep ss))
7047 (org-cmp-category a b)))
7048 (category-down (if category-up (- category-up) nil))
7049 (category-keep (if category-up +1 nil))
7050 (tag-up (and (org-em 'tag-up 'tag-down ss)
7051 (org-cmp-tag a b)))
7052 (tag-down (if tag-up (- tag-up) nil))
7053 (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
7054 (org-cmp-todo-state a b)))
7055 (todo-state-down (if todo-state-up (- todo-state-up) nil))
7056 (habit-up (and (org-em 'habit-up 'habit-down ss)
7057 (org-cmp-habit-p a b)))
7058 (habit-down (if habit-up (- habit-up) nil))
7059 (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
7060 (org-cmp-alpha a b)))
7061 (alpha-down (if alpha-up (- alpha-up) nil))
7062 (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
7063 user-defined-up user-defined-down)
7064 (if (and need-user-cmp org-agenda-cmp-user-defined
7065 (functionp org-agenda-cmp-user-defined))
7066 (setq user-defined-up
7067 (funcall org-agenda-cmp-user-defined a b)
7068 user-defined-down (if user-defined-up (- user-defined-up) nil)))
7069 (cdr (assoc
7070 (eval (cons 'or org-agenda-sorting-strategy-selected))
7071 '((-1 . t) (1 . nil) (nil . nil))))))
7073 ;;; Agenda restriction lock
7075 (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
7076 "Overlay to mark the headline to which agenda commands are restricted.")
7077 (overlay-put org-agenda-restriction-lock-overlay
7078 'face 'org-agenda-restriction-lock)
7079 (overlay-put org-agenda-restriction-lock-overlay
7080 'help-echo "Agendas are currently limited to this subtree.")
7081 (org-detach-overlay org-agenda-restriction-lock-overlay)
7083 (defun org-agenda-set-restriction-lock (&optional type)
7084 "Set restriction lock for agenda, to current subtree or file.
7085 Restriction will be the file if TYPE is `file', or if type is the
7086 universal prefix '(4), or if the cursor is before the first headline
7087 in the file. Otherwise, restriction will be to the current subtree."
7088 (interactive "P")
7089 (and (equal type '(4)) (setq type 'file))
7090 (setq type (cond
7091 (type type)
7092 ((org-at-heading-p) 'subtree)
7093 ((condition-case nil (org-back-to-heading t) (error nil))
7094 'subtree)
7095 (t 'file)))
7096 (if (eq type 'subtree)
7097 (progn
7098 (setq org-agenda-restrict (current-buffer))
7099 (setq org-agenda-overriding-restriction 'subtree)
7100 (put 'org-agenda-files 'org-restrict
7101 (list (buffer-file-name (buffer-base-buffer))))
7102 (org-back-to-heading t)
7103 (move-overlay org-agenda-restriction-lock-overlay
7104 (point)
7105 (if org-agenda-restriction-lock-highlight-subtree
7106 (save-excursion (org-end-of-subtree t t) (point))
7107 (point-at-eol)))
7108 (move-marker org-agenda-restrict-begin (point))
7109 (move-marker org-agenda-restrict-end
7110 (save-excursion (org-end-of-subtree t t)))
7111 (message "Locking agenda restriction to subtree"))
7112 (put 'org-agenda-files 'org-restrict
7113 (list (buffer-file-name (buffer-base-buffer))))
7114 (setq org-agenda-restrict nil)
7115 (setq org-agenda-overriding-restriction 'file)
7116 (move-marker org-agenda-restrict-begin nil)
7117 (move-marker org-agenda-restrict-end nil)
7118 (message "Locking agenda restriction to file"))
7119 (setq current-prefix-arg nil)
7120 (org-agenda-maybe-redo))
7122 (defun org-agenda-remove-restriction-lock (&optional noupdate)
7123 "Remove the agenda restriction lock."
7124 (interactive "P")
7125 (org-detach-overlay org-agenda-restriction-lock-overlay)
7126 (org-detach-overlay org-speedbar-restriction-lock-overlay)
7127 (setq org-agenda-overriding-restriction nil)
7128 (setq org-agenda-restrict nil)
7129 (put 'org-agenda-files 'org-restrict nil)
7130 (move-marker org-agenda-restrict-begin nil)
7131 (move-marker org-agenda-restrict-end nil)
7132 (setq current-prefix-arg nil)
7133 (message "Agenda restriction lock removed")
7134 (or noupdate (org-agenda-maybe-redo)))
7136 (defun org-agenda-maybe-redo ()
7137 "If there is any window showing the agenda view, update it."
7138 (let ((w (get-buffer-window org-agenda-buffer-name t))
7139 (w0 (selected-window)))
7140 (when w
7141 (select-window w)
7142 (org-agenda-redo)
7143 (select-window w0)
7144 (if org-agenda-overriding-restriction
7145 (message "Agenda view shifted to new %s restriction"
7146 org-agenda-overriding-restriction)
7147 (message "Agenda restriction lock removed")))))
7149 ;;; Agenda commands
7151 (defun org-agenda-check-type (error &rest types)
7152 "Check if agenda buffer is of allowed type.
7153 If ERROR is non-nil, throw an error, otherwise just return nil.
7154 Allowed types are 'agenda 'timeline 'todo 'tags 'search."
7155 (if (not org-agenda-type)
7156 (error "No Org agenda currently displayed")
7157 (if (memq org-agenda-type types)
7159 (if error
7160 (error "Not allowed in %s-type agenda buffers" org-agenda-type)
7161 nil))))
7163 (defun org-agenda-Quit ()
7164 "Exit the agenda and kill buffers loaded by `org-agenda'.
7165 Also restore the window configuration."
7166 (interactive)
7167 (if org-agenda-columns-active
7168 (org-columns-quit)
7169 (let ((buf (current-buffer)))
7170 (if (eq org-agenda-window-setup 'other-frame)
7171 (progn
7172 (org-agenda-reset-markers)
7173 (kill-buffer buf)
7174 (org-columns-remove-overlays)
7175 (setq org-agenda-archives-mode nil)
7176 (delete-frame))
7177 (and (not (eq org-agenda-window-setup 'current-window))
7178 (not (one-window-p))
7179 (delete-window))
7180 (org-agenda-reset-markers)
7181 (kill-buffer buf)
7182 (org-columns-remove-overlays)
7183 (setq org-agenda-archives-mode nil)))
7184 (setq org-agenda-buffer nil)
7185 ;; Maybe restore the pre-agenda window configuration.
7186 (and org-agenda-restore-windows-after-quit
7187 (not (eq org-agenda-window-setup 'other-frame))
7188 org-agenda-pre-window-conf
7189 (set-window-configuration org-agenda-pre-window-conf)
7190 (setq org-agenda-pre-window-conf nil))))
7192 (defun org-agenda-quit ()
7193 "Exit the agenda and restore the window configuration.
7194 When `org-agenda-sticky' is non-nil, only bury the agenda."
7195 (interactive)
7196 (if (and (eq org-indirect-buffer-display 'other-window)
7197 org-last-indirect-buffer)
7198 (let ((org-last-indirect-window
7199 (get-buffer-window org-last-indirect-buffer)))
7200 (if org-last-indirect-window
7201 (delete-window org-last-indirect-window))))
7202 (if org-agenda-columns-active
7203 (org-columns-quit)
7204 (if org-agenda-sticky
7205 (let ((buf (current-buffer)))
7206 (if (eq org-agenda-window-setup 'other-frame)
7207 (progn
7208 (delete-frame))
7209 (and (not (eq org-agenda-window-setup 'current-window))
7210 (not (one-window-p))
7211 (delete-window)))
7212 (with-current-buffer buf
7213 (bury-buffer)
7214 ;; Maybe restore the pre-agenda window configuration.
7215 (and org-agenda-restore-windows-after-quit
7216 (not (eq org-agenda-window-setup 'other-frame))
7217 org-agenda-pre-window-conf
7218 (set-window-configuration org-agenda-pre-window-conf)
7219 (setq org-agenda-pre-window-conf nil))))
7220 (org-agenda-Quit))))
7222 (defun org-agenda-exit ()
7223 "Exit the agenda and restore the window configuration.
7224 Also kill Org-mode buffers loaded by `org-agenda'. Org-mode
7225 buffers visited directly by the user will not be touched."
7226 (interactive)
7227 (org-release-buffers org-agenda-new-buffers)
7228 (setq org-agenda-new-buffers nil)
7229 (org-agenda-Quit))
7231 (defun org-agenda-kill-all-agenda-buffers ()
7232 "Kill all buffers in `org-agenda-mode'.
7233 This is used when toggling sticky agendas.
7234 You can also explicitly invoke it with `C-c a C-k'."
7235 (interactive)
7236 (let (blist)
7237 (dolist (buf (buffer-list))
7238 (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
7239 (push buf blist)))
7240 (mapc 'kill-buffer blist)))
7242 (defun org-agenda-execute (arg)
7243 "Execute another agenda command, keeping same window.
7244 So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
7245 in the agenda."
7246 (interactive "P")
7247 (let ((org-agenda-window-setup 'current-window))
7248 (org-agenda arg)))
7250 (defun org-agenda-redo (&optional all)
7251 "Rebuild possibly ALL agenda view(s) in the current buffer."
7252 (interactive "P")
7253 (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
7254 (cpa (unless (eq all t) current-prefix-arg))
7255 (org-agenda-doing-sticky-redo org-agenda-sticky)
7256 (org-agenda-sticky nil)
7257 (org-agenda-buffer-name (or org-agenda-this-buffer-name
7258 org-agenda-buffer-name))
7259 (org-agenda-keep-modes t)
7260 (tag-filter org-agenda-tag-filter)
7261 (tag-preset (get 'org-agenda-tag-filter :preset-filter))
7262 (top-hl-filter org-agenda-top-headline-filter)
7263 (cat-filter org-agenda-category-filter)
7264 (cat-preset (get 'org-agenda-category-filter :preset-filter))
7265 (re-filter org-agenda-regexp-filter)
7266 (re-preset (get 'org-agenda-regexp-filter :preset-filter))
7267 (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
7268 (cols org-agenda-columns-active)
7269 (line (org-current-line))
7270 (window-line (- line (org-current-line (window-start))))
7271 (lprops (get 'org-agenda-redo-command 'org-lprops))
7272 (redo-cmd (get-text-property p 'org-redo-cmd))
7273 (last-args (get-text-property p 'org-last-args))
7274 (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
7275 (org-agenda-overriding-cmd-arguments
7276 (unless (eq all t)
7277 (cond ((listp last-args)
7278 (cons (or cpa (car last-args)) (cdr last-args)))
7279 ((stringp last-args)
7280 last-args))))
7281 (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
7282 (put 'org-agenda-tag-filter :preset-filter nil)
7283 (put 'org-agenda-category-filter :preset-filter nil)
7284 (put 'org-agenda-regexp-filter :preset-filter nil)
7285 (and cols (org-columns-quit))
7286 (message "Rebuilding agenda buffer...")
7287 (if series-redo-cmd
7288 (eval series-redo-cmd)
7289 (org-let lprops redo-cmd))
7290 (setq org-agenda-undo-list nil
7291 org-agenda-pending-undo-list nil
7292 org-agenda-tag-filter tag-filter
7293 org-agenda-category-filter cat-filter
7294 org-agenda-regexp-filter re-filter
7295 org-agenda-top-headline-filter top-hl-filter)
7296 (message "Rebuilding agenda buffer...done")
7297 (put 'org-agenda-tag-filter :preset-filter tag-preset)
7298 (put 'org-agenda-category-filter :preset-filter cat-preset)
7299 (put 'org-agenda-regexp-filter :preset-filter re-preset)
7300 (and (or tag-filter tag-preset) (org-agenda-filter-apply tag-filter 'tag))
7301 (and (or cat-filter cat-preset) (org-agenda-filter-apply cat-filter 'category))
7302 (and (or re-filter re-preset) (org-agenda-filter-apply re-filter 'regexp))
7303 (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
7304 (and cols (org-called-interactively-p 'any) (org-agenda-columns))
7305 (org-goto-line line)
7306 (recenter window-line)))
7308 (defvar org-global-tags-completion-table nil)
7309 (defvar org-agenda-filter-form nil)
7310 (defvar org-agenda-filtered-by-category nil)
7312 (defun org-agenda-filter-by-category (strip)
7313 "Keep only those lines in the agenda buffer that have a specific category.
7314 The category is that of the current line."
7315 (interactive "P")
7316 (if (and org-agenda-filtered-by-category
7317 org-agenda-category-filter)
7318 (org-agenda-filter-show-all-cat)
7319 (let ((cat (org-no-properties (get-text-property (point) 'org-category))))
7320 (cond
7321 ((and cat strip)
7322 (org-agenda-filter-apply
7323 (push (concat "-" cat) org-agenda-category-filter) 'category))
7324 ((and cat)
7325 (org-agenda-filter-apply
7326 (setq org-agenda-category-filter
7327 (list (concat "+" cat))) 'category))
7328 ((error "No category at point"))))))
7330 (defun org-find-top-headline (&optional pos)
7331 "Find the topmost parent headline and return it."
7332 (save-excursion
7333 (with-current-buffer (if pos (marker-buffer pos) (current-buffer))
7334 (if pos (goto-char pos))
7335 ;; Skip up to the topmost parent
7336 (while (ignore-errors (outline-up-heading 1) t))
7337 (ignore-errors
7338 (nth 4 (org-heading-components))))))
7340 (defvar org-agenda-filtered-by-top-headline nil)
7341 (defun org-agenda-filter-by-top-headline (strip)
7342 "Keep only those lines that are descendants from the same top headline.
7343 The top headline is that of the current line."
7344 (interactive "P")
7345 (if org-agenda-filtered-by-top-headline
7346 (progn
7347 (setq org-agenda-filtered-by-top-headline nil
7348 org-agenda-top-headline-filter nil)
7349 (org-agenda-filter-show-all-cat))
7350 (let ((cat (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
7351 (if cat (org-agenda-filter-top-headline-apply cat strip)
7352 (error "No top-level category at point")))))
7354 (defvar org-agenda-regexp-filter nil)
7355 (defun org-agenda-filter-by-regexp (strip)
7356 "Filter agenda entries by a regular expression.
7357 Regexp filters are cumulative.
7358 With no prefix argument, keep entries matching the regexp.
7359 With one prefix argument, filter out entries matching the regexp.
7360 With two prefix arguments, remove the regexp filters."
7361 (interactive "P")
7362 (if (not (equal strip '(16)))
7363 (let ((flt (concat (if (equal strip '(4)) "-" "+")
7364 (read-from-minibuffer
7365 (if (equal strip '(4))
7366 "Filter out entries matching regexp: "
7367 "Narrow to entries matching regexp: ")))))
7368 (push flt org-agenda-regexp-filter)
7369 (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
7370 (org-agenda-filter-show-all-re)
7371 (message "Regexp filter removed")))
7373 (defun org-agenda-filter-remove-all ()
7374 "Remove all filters from the current agenda buffer."
7375 (interactive)
7376 (when org-agenda-tag-filter
7377 (org-agenda-filter-show-all-tag))
7378 (when org-agenda-category-filter
7379 (org-agenda-filter-show-all-cat))
7380 (when org-agenda-regexp-filter
7381 (org-agenda-filter-show-all-re)))
7383 (defun org-agenda-filter-by-tag (strip &optional char narrow)
7384 "Keep only those lines in the agenda buffer that have a specific tag.
7385 The tag is selected with its fast selection letter, as configured.
7386 With prefix argument STRIP, remove all lines that do have the tag.
7387 A lisp caller can specify CHAR. NARROW means that the new tag should be
7388 used to narrow the search - the interactive user can also press `-' or `+'
7389 to switch to narrowing."
7390 (interactive "P")
7391 (let* ((alist org-tag-alist-for-agenda)
7392 (tag-chars (mapconcat
7393 (lambda (x) (if (and (not (symbolp (car x)))
7394 (cdr x))
7395 (char-to-string (cdr x))
7396 ""))
7397 alist ""))
7398 (efforts (org-split-string
7399 (or (cdr (assoc (concat org-effort-property "_ALL")
7400 org-global-properties))
7401 "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
7402 "")))
7403 (effort-op org-agenda-filter-effort-default-operator)
7404 (effort-prompt "")
7405 (inhibit-read-only t)
7406 (current org-agenda-tag-filter)
7407 maybe-refresh a n tag)
7408 (unless char
7409 (message
7410 "%s by tag [%s ], [TAB], %s[/]:off, [+-]:narrow, [>=<?]:effort: "
7411 (if narrow "Narrow" "Filter") tag-chars
7412 (if org-agenda-auto-exclude-function "[RET], " ""))
7413 (setq char (read-char-exclusive)))
7414 (when (member char '(?+ ?-))
7415 ;; Narrowing down
7416 (cond ((equal char ?-) (setq strip t narrow t))
7417 ((equal char ?+) (setq strip nil narrow t)))
7418 (message
7419 "Narrow by tag [%s ], [TAB], [/]:off, [>=<]:effort: " tag-chars)
7420 (setq char (read-char-exclusive)))
7421 (when (member char '(?< ?> ?= ??))
7422 ;; An effort operator
7423 (setq effort-op (char-to-string char))
7424 (setq alist nil) ; to make sure it will be interpreted as effort.
7425 (unless (equal char ??)
7426 (loop for i from 0 to 9 do
7427 (setq effort-prompt
7428 (concat
7429 effort-prompt " ["
7430 (if (= i 9) "0" (int-to-string (1+ i)))
7431 "]" (nth i efforts))))
7432 (message "Effort%s: %s " effort-op effort-prompt)
7433 (setq char (read-char-exclusive))
7434 (when (or (< char ?0) (> char ?9))
7435 (error "Need 1-9,0 to select effort"))))
7436 (when (equal char ?\t)
7437 (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
7438 (org-set-local 'org-global-tags-completion-table
7439 (org-global-tags-completion-table)))
7440 (let ((completion-ignore-case t))
7441 (setq tag (org-icompleting-read
7442 "Tag: " org-global-tags-completion-table))))
7443 (cond
7444 ((equal char ?\r)
7445 (org-agenda-filter-show-all-tag)
7446 (when org-agenda-auto-exclude-function
7447 (setq org-agenda-tag-filter nil)
7448 (dolist (tag (org-agenda-get-represented-tags))
7449 (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
7450 (if modifier
7451 (push modifier org-agenda-tag-filter))))
7452 (if (not (null org-agenda-tag-filter))
7453 (org-agenda-filter-apply org-agenda-tag-filter 'tag)))
7454 (setq maybe-refresh t))
7455 ((equal char ?/)
7456 (org-agenda-filter-show-all-tag)
7457 (when (get 'org-agenda-tag-filter :preset-filter)
7458 (org-agenda-filter-apply org-agenda-tag-filter 'tag))
7459 (setq maybe-refresh t))
7460 ((equal char ?. )
7461 (setq org-agenda-tag-filter
7462 (mapcar (lambda(tag) (concat "+" tag))
7463 (org-get-at-bol 'tags)))
7464 (org-agenda-filter-apply org-agenda-tag-filter 'tag)
7465 (setq maybe-refresh t))
7466 ((or (equal char ?\ )
7467 (setq a (rassoc char alist))
7468 (and (>= char ?0) (<= char ?9)
7469 (setq n (if (= char ?0) 9 (- char ?0 1))
7470 tag (concat effort-op (nth n efforts))
7471 a (cons tag nil)))
7472 (and (= char ??)
7473 (setq tag "?eff")
7474 a (cons tag nil))
7475 (and tag (setq a (cons tag nil))))
7476 (org-agenda-filter-show-all-tag)
7477 (setq tag (car a))
7478 (setq org-agenda-tag-filter
7479 (cons (concat (if strip "-" "+") tag)
7480 (if narrow current nil)))
7481 (org-agenda-filter-apply org-agenda-tag-filter 'tag)
7482 (setq maybe-refresh t))
7483 (t (error "Invalid tag selection character %c" char)))
7484 (when (and maybe-refresh
7485 (eq org-agenda-clockreport-mode 'with-filter))
7486 (org-agenda-redo))))
7488 (defun org-agenda-get-represented-tags ()
7489 "Get a list of all tags currently represented in the agenda."
7490 (let (p tags)
7491 (save-excursion
7492 (goto-char (point-min))
7493 (while (setq p (next-single-property-change (point) 'tags))
7494 (goto-char p)
7495 (mapc (lambda (x) (add-to-list 'tags x))
7496 (get-text-property (point) 'tags))))
7497 tags))
7499 (defun org-agenda-filter-by-tag-refine (strip &optional char)
7500 "Refine the current filter. See `org-agenda-filter-by-tag'."
7501 (interactive "P")
7502 (org-agenda-filter-by-tag strip char 'refine))
7504 (defun org-agenda-filter-make-matcher (filter type)
7505 "Create the form that tests a line for agenda filter."
7506 (let (f f1)
7507 (cond
7508 ;; Tag filter
7509 ((eq type 'tag)
7510 (setq filter
7511 (delete-dups
7512 (append (get 'org-agenda-tag-filter :preset-filter)
7513 filter)))
7514 (dolist (x filter)
7515 (let ((nfilter (org-agenda-filter-expand-tags filter)) nf nf1
7516 (ffunc
7517 (lambda (nf0 nf01 fltr notgroup op)
7518 (dolist (x fltr)
7519 (if (member x '("-" "+"))
7520 (setq nf01 (if (equal x "-") 'tags '(not tags)))
7521 (if (string-match "[<=>?]" x)
7522 (setq nf01 (org-agenda-filter-effort-form x))
7523 (setq nf01 (list 'member (downcase (substring x 1))
7524 'tags)))
7525 (when (equal (string-to-char x) ?-)
7526 (setq nf01 (list 'not nf01))
7527 (when (not notgroup) (setq op 'and))))
7528 (push nf01 nf0))
7529 (if notgroup
7530 (push (cons 'and nf0) f)
7531 (push (cons (or op 'or) nf0) f)))))
7532 (if (equal nfilter filter)
7533 (funcall ffunc f1 f filter t nil)
7534 (funcall ffunc nf1 nf nfilter nil nil)))))
7535 ;; Category filter
7536 ((eq type 'category)
7537 (setq filter
7538 (delete-dups
7539 (append (get 'org-agenda-category-filter :preset-filter)
7540 filter)))
7541 (dolist (x filter)
7542 (if (equal "-" (substring x 0 1))
7543 (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
7544 (setq f1 (list 'equal (substring x 1) 'cat)))
7545 (push f1 f)))
7546 ;; Regexp filter
7547 ((eq type 'regexp)
7548 (setq filter
7549 (delete-dups
7550 (append (get 'org-agenda-regexp-filter :preset-filter)
7551 filter)))
7552 (dolist (x filter)
7553 (if (equal "-" (substring x 0 1))
7554 (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
7555 (setq f1 (list 'string-match (substring x 1) 'txt)))
7556 (push f1 f))))
7557 (cons 'and (nreverse f))))
7559 (defun org-agenda-filter-effort-form (e)
7560 "Return the form to compare the effort of the current line with what E says.
7561 E looks like \"+<2:25\"."
7562 (let (op)
7563 (setq e (substring e 1))
7564 (setq op (string-to-char e) e (substring e 1))
7565 (setq op (cond ((equal op ?<) '<=)
7566 ((equal op ?>) '>=)
7567 ((equal op ??) op)
7568 (t '=)))
7569 (list 'org-agenda-compare-effort (list 'quote op)
7570 (org-duration-string-to-minutes e))))
7572 (defun org-agenda-compare-effort (op value)
7573 "Compare the effort of the current line with VALUE, using OP.
7574 If the line does not have an effort defined, return nil."
7575 (let ((eff (org-get-at-bol 'effort-minutes)))
7576 (if (equal op ??)
7577 (not eff)
7578 (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 0))
7579 value))))
7581 (defun org-agenda-filter-expand-tags (filter &optional no-operator)
7582 "Expand group tags in FILTER for the agenda.
7583 When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
7584 (if org-group-tags
7585 (let ((case-fold-search t) rtn)
7586 (mapc
7587 (lambda (f)
7588 (let (f0 dir)
7589 (if (string-match "^\\([+-]\\)\\(.+\\)" f)
7590 (setq dir (match-string 1 f) f0 (match-string 2 f))
7591 (setq dir (if no-operator "" "+") f0 f))
7592 (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
7593 (org-tags-expand f0 t t))
7594 rtn))))
7595 filter)
7596 (reverse rtn))
7597 filter))
7599 (defun org-agenda-filter-apply (filter type)
7600 "Set FILTER as the new agenda filter and apply it."
7601 ;; Deactivate `org-agenda-entry-text-mode' when filtering
7602 (if org-agenda-entry-text-mode (org-agenda-entry-text-mode))
7603 (let (tags cat txt)
7604 (setq org-agenda-filter-form
7605 (org-agenda-filter-make-matcher filter type))
7606 (if (and (eq type 'category)
7607 (not (equal (substring (car filter) 0 1) "-")))
7608 ;; Only set `org-agenda-filtered-by-category' to t
7609 ;; when a unique category is used as the filter
7610 (setq org-agenda-filtered-by-category t))
7611 (org-agenda-set-mode-name)
7612 (save-excursion
7613 (goto-char (point-min))
7614 (while (not (eobp))
7615 (if (org-get-at-bol 'org-marker)
7616 (progn
7617 (setq tags ; used in eval
7618 (apply 'append
7619 (mapcar (lambda (f)
7620 (org-agenda-filter-expand-tags (list f) t))
7621 (org-get-at-bol 'tags)))
7622 cat (get-text-property (point) 'org-category)
7623 txt (get-text-property (point) 'txt))
7624 (if (not (eval org-agenda-filter-form))
7625 (org-agenda-filter-hide-line type))
7626 (beginning-of-line 2))
7627 (beginning-of-line 2))))
7628 (if (get-char-property (point) 'invisible)
7629 (ignore-errors (org-agenda-previous-line)))))
7631 (defun org-agenda-filter-top-headline-apply (hl &optional negative)
7632 "Filter by top headline HL."
7633 (org-agenda-set-mode-name)
7634 (save-excursion
7635 (goto-char (point-min))
7636 (while (not (eobp))
7637 (let* ((pos (org-get-at-bol 'org-hd-marker))
7638 (tophl (and pos (org-find-top-headline pos))))
7639 (if (and tophl (funcall (if negative 'identity 'not)
7640 (string= hl tophl)))
7641 (org-agenda-filter-hide-line 'category)))
7642 (beginning-of-line 2)))
7643 (if (get-char-property (point) 'invisible)
7644 (org-agenda-previous-line))
7645 (setq org-agenda-top-headline-filter hl
7646 org-agenda-filtered-by-top-headline t))
7648 (defun org-agenda-filter-hide-line (type)
7649 "Hide lines with TYPE in the agenda buffer."
7650 (let (ov)
7651 (setq ov (make-overlay (max (point-min) (1- (point-at-bol)))
7652 (point-at-eol)))
7653 (overlay-put ov 'invisible t)
7654 (overlay-put ov 'type type)
7655 (cond ((eq type 'tag) (push ov org-agenda-tag-filter-overlays))
7656 ((eq type 'category) (push ov org-agenda-cat-filter-overlays))
7657 ((eq type 'regexp) (push ov org-agenda-re-filter-overlays)))))
7659 (defun org-agenda-fix-tags-filter-overlays-at (&optional pos)
7660 (setq pos (or pos (point)))
7661 (save-excursion
7662 (dolist (ov (overlays-at pos))
7663 (when (and (overlay-get ov 'invisible)
7664 (eq (overlay-get ov 'type) 'tag))
7665 (goto-char pos)
7666 (if (< (overlay-start ov) (point-at-eol))
7667 (move-overlay ov (point-at-eol)
7668 (overlay-end ov)))))))
7670 (defun org-agenda-filter-show-all-tag nil
7671 "Remove tag filter overlays from the agenda buffer."
7672 (mapc 'delete-overlay org-agenda-tag-filter-overlays)
7673 (setq org-agenda-tag-filter-overlays nil
7674 org-agenda-tag-filter nil
7675 org-agenda-filter-form nil)
7676 (org-agenda-set-mode-name))
7678 (defun org-agenda-filter-show-all-re nil
7679 "Remove regexp filter overlays from the agenda buffer."
7680 (mapc 'delete-overlay org-agenda-re-filter-overlays)
7681 (setq org-agenda-re-filter-overlays nil
7682 org-agenda-regexp-filter nil
7683 org-agenda-filter-form nil)
7684 (org-agenda-set-mode-name))
7686 (defun org-agenda-filter-show-all-cat nil
7687 "Remove category filter overlays from the agenda buffer."
7688 (mapc 'delete-overlay org-agenda-cat-filter-overlays)
7689 (setq org-agenda-cat-filter-overlays nil
7690 org-agenda-filtered-by-category nil
7691 org-agenda-category-filter nil
7692 org-agenda-filter-form nil)
7693 (org-agenda-set-mode-name))
7695 (defun org-agenda-manipulate-query-add ()
7696 "Manipulate the query by adding a search term with positive selection.
7697 Positive selection means the term must be matched for selection of an entry."
7698 (interactive)
7699 (org-agenda-manipulate-query ?\[))
7700 (defun org-agenda-manipulate-query-subtract ()
7701 "Manipulate the query by adding a search term with negative selection.
7702 Negative selection means term must not be matched for selection of an entry."
7703 (interactive)
7704 (org-agenda-manipulate-query ?\]))
7705 (defun org-agenda-manipulate-query-add-re ()
7706 "Manipulate the query by adding a search regexp with positive selection.
7707 Positive selection means the regexp must match for selection of an entry."
7708 (interactive)
7709 (org-agenda-manipulate-query ?\{))
7710 (defun org-agenda-manipulate-query-subtract-re ()
7711 "Manipulate the query by adding a search regexp with negative selection.
7712 Negative selection means regexp must not match for selection of an entry."
7713 (interactive)
7714 (org-agenda-manipulate-query ?\}))
7715 (defun org-agenda-manipulate-query (char)
7716 (cond
7717 ((memq org-agenda-type '(timeline agenda))
7718 (let ((org-agenda-include-inactive-timestamps t))
7719 (org-agenda-redo))
7720 (message "Display now includes inactive timestamps as well"))
7721 ((eq org-agenda-type 'search)
7722 (org-add-to-string
7723 'org-agenda-query-string
7724 (if org-agenda-last-search-view-search-was-boolean
7725 (cdr (assoc char '((?\[ . " +") (?\] . " -")
7726 (?\{ . " +{}") (?\} . " -{}"))))
7727 " "))
7728 (setq org-agenda-redo-command
7729 (list 'org-search-view
7730 (car (get-text-property (min (1- (point-max)) (point))
7731 'org-last-args))
7732 org-agenda-query-string
7733 (+ (length org-agenda-query-string)
7734 (if (member char '(?\{ ?\})) 0 1))))
7735 (set-register org-agenda-query-register org-agenda-query-string)
7736 (let ((org-agenda-overriding-arguments
7737 (cdr org-agenda-redo-command)))
7738 (org-agenda-redo)))
7739 (t (error "Cannot manipulate query for %s-type agenda buffers"
7740 org-agenda-type))))
7742 (defun org-add-to-string (var string)
7743 (set var (concat (symbol-value var) string)))
7745 (defun org-agenda-goto-date (span)
7746 "Jump to DATE in agenda."
7747 (interactive "P")
7748 (let* ((org-read-date-prefer-future
7749 (eval org-agenda-jump-prefer-future))
7750 (date (org-read-date))
7751 (day (time-to-days (org-time-string-to-time date)))
7752 (org-agenda-sticky-orig org-agenda-sticky)
7753 (org-agenda-buffer-tmp-name (buffer-name))
7754 (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7755 (0-arg (or current-prefix-arg (car args)))
7756 (2-arg (nth 2 args))
7757 (with-hour-p (nth 4 org-agenda-redo-command))
7758 (newcmd (list 'org-agenda-list 0-arg date
7759 (org-agenda-span-to-ndays
7760 2-arg (org-time-string-to-absolute date))
7761 with-hour-p))
7762 (newargs (cdr newcmd))
7763 (inhibit-read-only t)
7764 org-agenda-sticky)
7765 (if (not (org-agenda-check-type t 'agenda))
7766 (error "Not available in non-agenda views")
7767 (add-text-properties (point-min) (point-max)
7768 `(org-redo-cmd ,newcmd org-last-args ,newargs))
7769 (org-agenda-redo)
7770 (goto-char (point-min))
7771 (while (not (or (= (or (get-text-property (point) 'day) 0) day)
7772 (save-excursion (move-beginning-of-line 2) (eobp))))
7773 (move-beginning-of-line 2))
7774 (setq org-agenda-sticky org-agenda-sticky-orig
7775 org-agenda-this-buffer-is-sticky org-agenda-sticky))))
7777 (defun org-agenda-goto-today ()
7778 "Go to today."
7779 (interactive)
7780 (org-agenda-check-type t 'timeline 'agenda)
7781 (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7782 (curspan (nth 2 args))
7783 (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
7784 (cond
7785 (tdpos (goto-char tdpos))
7786 ((eq org-agenda-type 'agenda)
7787 (let* ((sd (org-agenda-compute-starting-span
7788 (org-today) (or curspan org-agenda-ndays org-agenda-span)))
7789 (org-agenda-overriding-arguments args))
7790 (setf (nth 1 org-agenda-overriding-arguments) sd)
7791 (org-agenda-redo)
7792 (org-agenda-find-same-or-today-or-agenda)))
7793 (t (error "Cannot find today")))))
7795 (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
7796 (goto-char
7797 (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
7798 (text-property-any (point-min) (point-max) 'org-today t)
7799 (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
7800 (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
7801 (org-agenda-goto-block-beginning))
7802 (point-min))))
7804 (defun org-agenda-goto-block-beginning ()
7805 "Go the agenda block beginning."
7806 (interactive)
7807 (if (not (derived-mode-p 'org-agenda-mode))
7808 (error "Cannot execute this command outside of org-agenda-mode buffers")
7809 (let (dest)
7810 (save-excursion
7811 (unless (looking-at "\\'")
7812 (forward-char))
7813 (let* ((prop 'org-agenda-structural-header)
7814 (p (previous-single-property-change (point) prop))
7815 (n (next-single-property-change (or (and (looking-at "\\`") 1)
7816 (1- (point))) prop)))
7817 (setq dest (cond ((eq n (point-at-eol)) (1- n)) (p (1- p))))))
7818 (if (not dest)
7819 (error "Cannot find the beginning of the blog")
7820 (goto-char dest)
7821 (move-beginning-of-line 1)))))
7823 (defun org-agenda-later (arg)
7824 "Go forward in time by the current span.
7825 With prefix ARG, go forward that many times the current span."
7826 (interactive "p")
7827 (org-agenda-check-type t 'agenda)
7828 (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7829 (span (or (nth 2 args) org-agenda-current-span))
7830 (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
7831 (greg (calendar-gregorian-from-absolute sd))
7832 (cnt (org-get-at-bol 'org-day-cnt))
7833 greg2)
7834 (cond
7835 ((numberp span)
7836 (setq sd (+ (* span arg) sd)))
7837 ((eq span 'day)
7838 (setq sd (+ arg sd)))
7839 ((eq span 'week)
7840 (setq sd (+ (* 7 arg) sd)))
7841 ((eq span 'fortnight)
7842 (setq sd (+ (* 14 arg) sd)))
7843 ((eq span 'month)
7844 (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
7845 sd (calendar-absolute-from-gregorian greg2))
7846 (setcar greg2 (1+ (car greg2))))
7847 ((eq span 'year)
7848 (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
7849 sd (calendar-absolute-from-gregorian greg2))
7850 (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
7852 (setq sd (+ (* span arg) sd))))
7853 (let ((org-agenda-overriding-cmd
7854 ;; `cmd' may have been set by `org-agenda-run-series' which
7855 ;; uses `org-agenda-overriding-cmd' to decide whether
7856 ;; overriding is allowed for `cmd'
7857 (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
7858 (org-agenda-overriding-arguments
7859 (list (car args) sd span)))
7860 (org-agenda-redo)
7861 (org-agenda-find-same-or-today-or-agenda cnt))))
7863 (defun org-agenda-earlier (arg)
7864 "Go backward in time by the current span.
7865 With prefix ARG, go backward that many times the current span."
7866 (interactive "p")
7867 (org-agenda-later (- arg)))
7869 (defun org-agenda-view-mode-dispatch ()
7870 "Call one of the view mode commands."
7871 (interactive)
7872 (message "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
7873 time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
7874 [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
7875 (let ((a (read-char-exclusive)))
7876 (case a
7877 (?\ (call-interactively 'org-agenda-reset-view))
7878 (?d (call-interactively 'org-agenda-day-view))
7879 (?w (call-interactively 'org-agenda-week-view))
7880 (?t (call-interactively 'org-agenda-fortnight-view))
7881 (?m (call-interactively 'org-agenda-month-view))
7882 (?y (call-interactively 'org-agenda-year-view))
7883 (?l (call-interactively 'org-agenda-log-mode))
7884 (?L (org-agenda-log-mode '(4)))
7885 (?c (org-agenda-log-mode 'clockcheck))
7886 ((?F ?f) (call-interactively 'org-agenda-follow-mode))
7887 (?a (call-interactively 'org-agenda-archives-mode))
7888 (?A (org-agenda-archives-mode 'files))
7889 ((?R ?r) (call-interactively 'org-agenda-clockreport-mode))
7890 ((?E ?e) (call-interactively 'org-agenda-entry-text-mode))
7891 (?G (call-interactively 'org-agenda-toggle-time-grid))
7892 (?D (call-interactively 'org-agenda-toggle-diary))
7893 (?\! (call-interactively 'org-agenda-toggle-deadlines))
7894 (?\[ (let ((org-agenda-include-inactive-timestamps t))
7895 (org-agenda-check-type t 'timeline 'agenda)
7896 (org-agenda-redo))
7897 (message "Display now includes inactive timestamps as well"))
7898 (?q (message "Abort"))
7899 (otherwise (error "Invalid key" )))))
7901 (defun org-agenda-reset-view ()
7902 "Switch to default view for agenda."
7903 (interactive)
7904 (org-agenda-change-time-span (or org-agenda-ndays org-agenda-span)))
7905 (defun org-agenda-day-view (&optional day-of-month)
7906 "Switch to daily view for agenda.
7907 With argument DAY-OF-MONTH, switch to that day of the month."
7908 (interactive "P")
7909 (org-agenda-change-time-span 'day day-of-month))
7910 (defun org-agenda-week-view (&optional iso-week)
7911 "Switch to daily view for agenda.
7912 With argument ISO-WEEK, switch to the corresponding ISO week.
7913 If ISO-WEEK has more then 2 digits, only the last two encode the
7914 week. Any digits before this encode a year. So 200712 means
7915 week 12 of year 2007. Years in the range 1938-2037 can also be
7916 written as 2-digit years."
7917 (interactive "P")
7918 (org-agenda-change-time-span 'week iso-week))
7919 (defun org-agenda-fortnight-view (&optional iso-week)
7920 "Switch to daily view for agenda.
7921 With argument ISO-WEEK, switch to the corresponding ISO week.
7922 If ISO-WEEK has more then 2 digits, only the last two encode the
7923 week. Any digits before this encode a year. So 200712 means
7924 week 12 of year 2007. Years in the range 1938-2037 can also be
7925 written as 2-digit years."
7926 (interactive "P")
7927 (org-agenda-change-time-span 'fortnight iso-week))
7928 (defun org-agenda-month-view (&optional month)
7929 "Switch to monthly view for agenda.
7930 With argument MONTH, switch to that month."
7931 (interactive "P")
7932 (org-agenda-change-time-span 'month month))
7933 (defun org-agenda-year-view (&optional year)
7934 "Switch to yearly view for agenda.
7935 With argument YEAR, switch to that year.
7936 If MONTH has more then 2 digits, only the last two encode the
7937 month. Any digits before this encode a year. So 200712 means
7938 December year 2007. Years in the range 1938-2037 can also be
7939 written as 2-digit years."
7940 (interactive "P")
7941 (when year
7942 (setq year (org-small-year-to-year year)))
7943 (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
7944 (org-agenda-change-time-span 'year year)
7945 (error "Abort")))
7947 (defun org-agenda-change-time-span (span &optional n)
7948 "Change the agenda view to SPAN.
7949 SPAN may be `day', `week', `fortnight', `month', `year'."
7950 (org-agenda-check-type t 'agenda)
7951 (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7952 (curspan (nth 2 args)))
7953 (if (and (not n) (equal curspan span))
7954 (error "Viewing span is already \"%s\"" span))
7955 (let* ((sd (or (org-get-at-bol 'day)
7956 (nth 1 args)
7957 org-starting-day))
7958 (sd (org-agenda-compute-starting-span sd span n))
7959 (org-agenda-overriding-cmd
7960 (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
7961 (org-agenda-overriding-arguments
7962 (list (car args) sd span)))
7963 (org-agenda-redo)
7964 (org-agenda-find-same-or-today-or-agenda))
7965 (org-agenda-set-mode-name)
7966 (message "Switched to %s view" span)))
7968 (defun org-agenda-compute-starting-span (sd span &optional n)
7969 "Compute starting date for agenda.
7970 SPAN may be `day', `week', `fortnight', `month', `year'. The return value
7971 is a cons cell with the starting date and the number of days,
7972 so that the date SD will be in that range."
7973 (let* ((greg (calendar-gregorian-from-absolute sd))
7974 (dg (nth 1 greg))
7975 (mg (car greg))
7976 (yg (nth 2 greg)))
7977 (cond
7978 ((eq span 'day)
7979 (when n
7980 (setq sd (+ (calendar-absolute-from-gregorian
7981 (list mg 1 yg))
7982 n -1))))
7983 ((or (eq span 'week) (eq span 'fortnight))
7984 (let* ((nt (calendar-day-of-week
7985 (calendar-gregorian-from-absolute sd)))
7986 (d (if org-agenda-start-on-weekday
7987 (- nt org-agenda-start-on-weekday)
7990 (setq sd (- sd (+ (if (< d 0) 7 0) d)))
7991 (when n
7992 (require 'cal-iso)
7993 (when (> n 99)
7994 (setq y1 (org-small-year-to-year (/ n 100))
7995 n (mod n 100)))
7996 (setq sd
7997 (calendar-absolute-from-iso
7998 (list n 1
7999 (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
8000 ((eq span 'month)
8001 (let (y1)
8002 (when (and n (> n 99))
8003 (setq y1 (org-small-year-to-year (/ n 100))
8004 n (mod n 100)))
8005 (setq sd (calendar-absolute-from-gregorian
8006 (list (or n mg) 1 (or y1 yg))))))
8007 ((eq span 'year)
8008 (setq sd (calendar-absolute-from-gregorian
8009 (list 1 1 (or n yg))))))
8010 sd))
8012 (defun org-agenda-next-date-line (&optional arg)
8013 "Jump to the next line indicating a date in agenda buffer."
8014 (interactive "p")
8015 (org-agenda-check-type t 'agenda 'timeline)
8016 (beginning-of-line 1)
8017 ;; This does not work if user makes date format that starts with a blank
8018 (if (looking-at "^\\S-") (forward-char 1))
8019 (if (not (re-search-forward "^\\S-" nil t arg))
8020 (progn
8021 (backward-char 1)
8022 (error "No next date after this line in this buffer")))
8023 (goto-char (match-beginning 0)))
8025 (defun org-agenda-previous-date-line (&optional arg)
8026 "Jump to the previous line indicating a date in agenda buffer."
8027 (interactive "p")
8028 (org-agenda-check-type t 'agenda 'timeline)
8029 (beginning-of-line 1)
8030 (if (not (re-search-backward "^\\S-" nil t arg))
8031 (error "No previous date before this line in this buffer")))
8033 ;; Initialize the highlight
8034 (defvar org-hl (make-overlay 1 1))
8035 (overlay-put org-hl 'face 'highlight)
8037 (defun org-highlight (begin end &optional buffer)
8038 "Highlight a region with overlay."
8039 (move-overlay org-hl begin end (or buffer (current-buffer))))
8041 (defun org-unhighlight ()
8042 "Detach overlay INDEX."
8043 (org-detach-overlay org-hl))
8045 (defun org-unhighlight-once ()
8046 "Remove the highlight from its position, and this function from the hook."
8047 (remove-hook 'pre-command-hook 'org-unhighlight-once)
8048 (org-unhighlight))
8050 (defvar org-agenda-pre-follow-window-conf nil)
8051 (defun org-agenda-follow-mode ()
8052 "Toggle follow mode in an agenda buffer."
8053 (interactive)
8054 (unless org-agenda-follow-mode
8055 (setq org-agenda-pre-follow-window-conf
8056 (current-window-configuration)))
8057 (setq org-agenda-follow-mode (not org-agenda-follow-mode))
8058 (unless org-agenda-follow-mode
8059 (set-window-configuration org-agenda-pre-follow-window-conf))
8060 (org-agenda-set-mode-name)
8061 (org-agenda-do-context-action)
8062 (message "Follow mode is %s"
8063 (if org-agenda-follow-mode "on" "off")))
8065 (defun org-agenda-entry-text-mode (&optional arg)
8066 "Toggle entry text mode in an agenda buffer."
8067 (interactive "P")
8068 (if (or org-agenda-tag-filter
8069 org-agenda-category-filter
8070 org-agenda-regexp-filter
8071 org-agenda-top-headline-filter)
8072 (user-error "Can't show entry text in filtered views")
8073 (setq org-agenda-entry-text-mode (or (integerp arg)
8074 (not org-agenda-entry-text-mode)))
8075 (org-agenda-entry-text-hide)
8076 (and org-agenda-entry-text-mode
8077 (let ((org-agenda-entry-text-maxlines
8078 (if (integerp arg) arg org-agenda-entry-text-maxlines)))
8079 (org-agenda-entry-text-show)))
8080 (org-agenda-set-mode-name)
8081 (message "Entry text mode is %s%s"
8082 (if org-agenda-entry-text-mode "on" "off")
8083 (if (not org-agenda-entry-text-mode) ""
8084 (format " (maximum number of lines is %d)"
8085 (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
8087 (defun org-agenda-clockreport-mode (&optional with-filter)
8088 "Toggle clocktable mode in an agenda buffer.
8089 With prefix arg WITH-FILTER, make the clocktable respect the current
8090 agenda filter."
8091 (interactive "P")
8092 (org-agenda-check-type t 'agenda)
8093 (if with-filter
8094 (setq org-agenda-clockreport-mode 'with-filter)
8095 (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode)))
8096 (org-agenda-set-mode-name)
8097 (org-agenda-redo)
8098 (message "Clocktable mode is %s"
8099 (if org-agenda-clockreport-mode "on" "off")))
8101 (defun org-agenda-log-mode (&optional special)
8102 "Toggle log mode in an agenda buffer.
8103 With argument SPECIAL, show all possible log items, not only the ones
8104 configured in `org-agenda-log-mode-items'.
8105 With a double `C-u' prefix arg, show *only* log items, nothing else."
8106 (interactive "P")
8107 (org-agenda-check-type t 'agenda 'timeline)
8108 (setq org-agenda-show-log
8109 (cond
8110 ((equal special '(16)) 'only)
8111 ((eq special 'clockcheck)
8112 (if (eq org-agenda-show-log 'clockcheck)
8113 nil 'clockcheck))
8114 (special '(closed clock state))
8115 (t (not org-agenda-show-log))))
8116 (org-agenda-set-mode-name)
8117 (org-agenda-redo)
8118 (message "Log mode is %s"
8119 (if org-agenda-show-log "on" "off")))
8121 (defun org-agenda-archives-mode (&optional with-files)
8122 "Toggle inclusion of items in trees marked with :ARCHIVE:.
8123 When called with a prefix argument, include all archive files as well."
8124 (interactive "P")
8125 (setq org-agenda-archives-mode
8126 (if with-files t (if org-agenda-archives-mode nil 'trees)))
8127 (org-agenda-set-mode-name)
8128 (org-agenda-redo)
8129 (message
8130 "%s"
8131 (cond
8132 ((eq org-agenda-archives-mode nil)
8133 "No archives are included")
8134 ((eq org-agenda-archives-mode 'trees)
8135 (format "Trees with :%s: tag are included" org-archive-tag))
8136 ((eq org-agenda-archives-mode t)
8137 (format "Trees with :%s: tag and all active archive files are included"
8138 org-archive-tag)))))
8140 (defun org-agenda-toggle-diary ()
8141 "Toggle diary inclusion in an agenda buffer."
8142 (interactive)
8143 (org-agenda-check-type t 'agenda)
8144 (setq org-agenda-include-diary (not org-agenda-include-diary))
8145 (org-agenda-redo)
8146 (org-agenda-set-mode-name)
8147 (message "Diary inclusion turned %s"
8148 (if org-agenda-include-diary "on" "off")))
8150 (defun org-agenda-toggle-deadlines ()
8151 "Toggle inclusion of entries with a deadline in an agenda buffer."
8152 (interactive)
8153 (org-agenda-check-type t 'agenda)
8154 (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
8155 (org-agenda-redo)
8156 (org-agenda-set-mode-name)
8157 (message "Deadlines inclusion turned %s"
8158 (if org-agenda-include-deadlines "on" "off")))
8160 (defun org-agenda-toggle-time-grid ()
8161 "Toggle time grid in an agenda buffer."
8162 (interactive)
8163 (org-agenda-check-type t 'agenda)
8164 (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
8165 (org-agenda-redo)
8166 (org-agenda-set-mode-name)
8167 (message "Time-grid turned %s"
8168 (if org-agenda-use-time-grid "on" "off")))
8170 (defun org-agenda-set-mode-name ()
8171 "Set the mode name to indicate all the small mode settings."
8172 (setq mode-name
8173 (list "Org-Agenda"
8174 (if (get 'org-agenda-files 'org-restrict) " []" "")
8176 '(:eval (org-agenda-span-name org-agenda-current-span))
8177 (if org-agenda-follow-mode " Follow" "")
8178 (if org-agenda-entry-text-mode " ETxt" "")
8179 (if org-agenda-include-diary " Diary" "")
8180 (if org-agenda-include-deadlines " Ddl" "")
8181 (if org-agenda-use-time-grid " Grid" "")
8182 (if (and (boundp 'org-habit-show-habits)
8183 org-habit-show-habits) " Habit" "")
8184 (cond
8185 ((consp org-agenda-show-log) " LogAll")
8186 ((eq org-agenda-show-log 'clockcheck) " ClkCk")
8187 (org-agenda-show-log " Log")
8188 (t ""))
8189 (if (or org-agenda-category-filter
8190 (get 'org-agenda-category-filter :preset-filter))
8191 '(:eval (org-propertize
8192 (concat " <"
8193 (mapconcat
8194 'identity
8195 (append
8196 (get 'org-agenda-category-filter :preset-filter)
8197 org-agenda-category-filter)
8199 ">")
8200 'face 'org-agenda-filter-category
8201 'help-echo "Category used in filtering")) "")
8202 (if (or org-agenda-tag-filter
8203 (get 'org-agenda-tag-filter :preset-filter))
8204 '(:eval (org-propertize
8205 (concat " {"
8206 (mapconcat
8207 'identity
8208 (append
8209 (get 'org-agenda-tag-filter :preset-filter)
8210 org-agenda-tag-filter)
8212 "}")
8213 'face 'org-agenda-filter-tags
8214 'help-echo "Tags used in filtering")) "")
8215 (if (or org-agenda-regexp-filter
8216 (get 'org-agenda-regexp-filter :preset-filter))
8217 '(:eval (org-propertize
8218 (concat " ["
8219 (mapconcat
8220 'identity
8221 (append
8222 (get 'org-agenda-regexp-filter :preset-filter)
8223 org-agenda-regexp-filter)
8225 "]")
8226 'face 'org-agenda-filter-regexp
8227 'help-echo "Regexp used in filtering")) "")
8228 (if org-agenda-archives-mode
8229 (if (eq org-agenda-archives-mode t)
8230 " Archives"
8231 (format " :%s:" org-archive-tag))
8233 (if org-agenda-clockreport-mode
8234 (if (eq org-agenda-clockreport-mode 'with-filter)
8235 " Clock{}" " Clock")
8236 "")))
8237 (force-mode-line-update))
8239 (define-obsolete-function-alias
8240 'org-agenda-post-command-hook 'org-agenda-update-agenda-type "24.3")
8242 (defun org-agenda-update-agenda-type ()
8243 "Update the agenda type after each command."
8244 (setq org-agenda-type
8245 (or (get-text-property (point) 'org-agenda-type)
8246 (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
8248 (defun org-agenda-next-line ()
8249 "Move cursor to the next line, and show if follow mode is active."
8250 (interactive)
8251 (call-interactively 'next-line)
8252 (org-agenda-do-context-action))
8254 (defun org-agenda-previous-line ()
8255 "Move cursor to the previous line, and show if follow-mode is active."
8256 (interactive)
8257 (call-interactively 'previous-line)
8258 (org-agenda-do-context-action))
8260 (defun org-agenda-next-item (n)
8261 "Move cursor to next agenda item."
8262 (interactive "p")
8263 (let ((col (current-column)))
8264 (dotimes (c n)
8265 (when (next-single-property-change (point-at-eol) 'org-marker)
8266 (move-end-of-line 1)
8267 (goto-char (next-single-property-change (point) 'org-marker))))
8268 (org-move-to-column col))
8269 (org-agenda-do-context-action))
8271 (defun org-agenda-previous-item (n)
8272 "Move cursor to next agenda item."
8273 (interactive "p")
8274 (dotimes (c n)
8275 (let ((col (current-column))
8276 (goto (save-excursion
8277 (move-end-of-line 0)
8278 (previous-single-property-change (point) 'org-marker))))
8279 (if goto (goto-char goto))
8280 (org-move-to-column col)))
8281 (org-agenda-do-context-action))
8283 (defun org-agenda-do-context-action ()
8284 "Show outline path and, maybe, follow mode window."
8285 (let ((m (org-get-at-bol 'org-marker)))
8286 (when (and (markerp m) (marker-buffer m))
8287 (and org-agenda-follow-mode
8288 (if org-agenda-follow-indirect
8289 (org-agenda-tree-to-indirect-buffer nil)
8290 (org-agenda-show)))
8291 (and org-agenda-show-outline-path
8292 (org-with-point-at m (org-display-outline-path t))))))
8294 (defun org-agenda-show-tags ()
8295 "Show the tags applicable to the current item."
8296 (interactive)
8297 (let* ((tags (org-get-at-bol 'tags)))
8298 (if tags
8299 (message "Tags are :%s:"
8300 (org-no-properties (mapconcat 'identity tags ":")))
8301 (message "No tags associated with this line"))))
8303 (defun org-agenda-goto (&optional highlight)
8304 "Go to the Org-mode file which contains the item at point."
8305 (interactive)
8306 (let* ((marker (or (org-get-at-bol 'org-marker)
8307 (org-agenda-error)))
8308 (buffer (marker-buffer marker))
8309 (pos (marker-position marker)))
8310 (switch-to-buffer-other-window buffer)
8311 (widen)
8312 (push-mark)
8313 (goto-char pos)
8314 (when (derived-mode-p 'org-mode)
8315 (org-show-context 'agenda)
8316 (save-excursion
8317 (and (outline-next-heading)
8318 (org-flag-heading nil)))) ; show the next heading
8319 (when (outline-invisible-p)
8320 (show-entry)) ; display invisible text
8321 (recenter (/ (window-height) 2))
8322 (run-hooks 'org-agenda-after-show-hook)
8323 (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
8325 (defvar org-agenda-after-show-hook nil
8326 "Normal hook run after an item has been shown from the agenda.
8327 Point is in the buffer where the item originated.")
8329 (defun org-agenda-kill ()
8330 "Kill the entry or subtree belonging to the current agenda entry."
8331 (interactive)
8332 (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
8333 (let* ((bufname-orig (buffer-name))
8334 (marker (or (org-get-at-bol 'org-marker)
8335 (org-agenda-error)))
8336 (buffer (marker-buffer marker))
8337 (pos (marker-position marker))
8338 (type (org-get-at-bol 'type))
8339 dbeg dend (n 0) conf)
8340 (org-with-remote-undo buffer
8341 (with-current-buffer buffer
8342 (save-excursion
8343 (goto-char pos)
8344 (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
8345 (setq dbeg (progn (org-back-to-heading t) (point))
8346 dend (org-end-of-subtree t t))
8347 (setq dbeg (point-at-bol)
8348 dend (min (point-max) (1+ (point-at-eol)))))
8349 (goto-char dbeg)
8350 (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
8351 (setq conf (or (eq t org-agenda-confirm-kill)
8352 (and (numberp org-agenda-confirm-kill)
8353 (> n org-agenda-confirm-kill))))
8354 (and conf
8355 (not (y-or-n-p
8356 (format "Delete entry with %d lines in buffer \"%s\"? "
8357 n (buffer-name buffer))))
8358 (error "Abort"))
8359 (let ((org-agenda-buffer-name bufname-orig))
8360 (org-remove-subtree-entries-from-agenda buffer dbeg dend))
8361 (with-current-buffer buffer (delete-region dbeg dend))
8362 (message "Agenda item and source killed"))))
8364 (defvar org-archive-default-command) ; defined in org-archive.el
8365 (defun org-agenda-archive-default ()
8366 "Archive the entry or subtree belonging to the current agenda entry."
8367 (interactive)
8368 (require 'org-archive)
8369 (org-agenda-archive-with org-archive-default-command))
8371 (defun org-agenda-archive-default-with-confirmation ()
8372 "Archive the entry or subtree belonging to the current agenda entry."
8373 (interactive)
8374 (require 'org-archive)
8375 (org-agenda-archive-with org-archive-default-command 'confirm))
8377 (defun org-agenda-archive ()
8378 "Archive the entry or subtree belonging to the current agenda entry."
8379 (interactive)
8380 (org-agenda-archive-with 'org-archive-subtree))
8382 (defun org-agenda-archive-to-archive-sibling ()
8383 "Move the entry to the archive sibling."
8384 (interactive)
8385 (org-agenda-archive-with 'org-archive-to-archive-sibling))
8387 (defun org-agenda-archive-with (cmd &optional confirm)
8388 "Move the entry to the archive sibling."
8389 (interactive)
8390 (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
8391 (let* ((bufname-orig (buffer-name))
8392 (marker (or (org-get-at-bol 'org-marker)
8393 (org-agenda-error)))
8394 (buffer (marker-buffer marker))
8395 (pos (marker-position marker)))
8396 (org-with-remote-undo buffer
8397 (with-current-buffer buffer
8398 (if (derived-mode-p 'org-mode)
8399 (if (and confirm
8400 (not (y-or-n-p "Archive this subtree or entry? ")))
8401 (error "Abort")
8402 (save-window-excursion
8403 (goto-char pos)
8404 (let ((org-agenda-buffer-name bufname-orig))
8405 (org-remove-subtree-entries-from-agenda))
8406 (org-back-to-heading t)
8407 (funcall cmd)))
8408 (error "Archiving works only in Org-mode files"))))))
8410 (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
8411 "Remove all lines in the agenda that correspond to a given subtree.
8412 The subtree is the one in buffer BUF, starting at BEG and ending at END.
8413 If this information is not given, the function uses the tree at point."
8414 (let ((buf (or buf (current-buffer))) m p)
8415 (save-excursion
8416 (unless (and beg end)
8417 (org-back-to-heading t)
8418 (setq beg (point))
8419 (org-end-of-subtree t)
8420 (setq end (point)))
8421 (set-buffer (get-buffer org-agenda-buffer-name))
8422 (save-excursion
8423 (goto-char (point-max))
8424 (beginning-of-line 1)
8425 (while (not (bobp))
8426 (when (and (setq m (org-get-at-bol 'org-marker))
8427 (equal buf (marker-buffer m))
8428 (setq p (marker-position m))
8429 (>= p beg)
8430 (< p end))
8431 (let ((inhibit-read-only t))
8432 (delete-region (point-at-bol) (1+ (point-at-eol)))))
8433 (beginning-of-line 0))))))
8435 (defun org-agenda-refile (&optional goto rfloc no-update)
8436 "Refile the item at point.
8438 When GOTO is 0 or '(64), clear the refile cache.
8439 When GOTO is '(16), go to the location of the last refiled item.
8440 RFLOC can be a refile location obtained in a different way.
8441 When NO-UPDATE is non-nil, don't redo the agenda buffer."
8442 (interactive "P")
8443 (cond
8444 ((member goto '(0 (64)))
8445 (org-refile-cache-clear))
8446 ((equal goto '(16))
8447 (org-refile-goto-last-stored))
8449 (let* ((buffer-orig (buffer-name))
8450 (marker (or (org-get-at-bol 'org-hd-marker)
8451 (org-agenda-error)))
8452 (buffer (marker-buffer marker))
8453 (pos (marker-position marker))
8454 (rfloc (or rfloc
8455 (org-refile-get-location
8456 (if goto "Goto" "Refile to") buffer
8457 org-refile-allow-creating-parent-nodes))))
8458 (with-current-buffer buffer
8459 (save-excursion
8460 (save-restriction
8461 (widen)
8462 (goto-char marker)
8463 (let ((org-agenda-buffer-name buffer-orig))
8464 (org-remove-subtree-entries-from-agenda))
8465 (org-refile goto buffer rfloc)))))
8466 (unless no-update (org-agenda-redo)))))
8468 (defun org-agenda-open-link (&optional arg)
8469 "Open the link(s) in the current entry, if any.
8470 This looks for a link in the displayed line in the agenda.
8471 It also looks at the text of the entry itself."
8472 (interactive "P")
8473 (let* ((marker (or (org-get-at-bol 'org-hd-marker)
8474 (org-get-at-bol 'org-marker)))
8475 (buffer (and marker (marker-buffer marker)))
8476 (prefix (buffer-substring (point-at-bol) (point-at-eol)))
8477 (lkall (org-offer-links-in-entry buffer marker arg prefix))
8478 (lk0 (car lkall))
8479 (lk (if (stringp lk0) (list lk0) lk0))
8480 (lkend (cdr lkall))
8481 trg)
8482 (cond
8483 ((and buffer lk)
8484 (mapcar (lambda(l)
8485 (with-current-buffer buffer
8486 (setq trg (and (string-match org-bracket-link-regexp l)
8487 (match-string 1 l)))
8488 (if (or (not trg) (string-match org-any-link-re trg))
8489 (save-excursion
8490 (save-restriction
8491 (widen)
8492 (goto-char marker)
8493 (when (search-forward l nil lkend)
8494 (goto-char (match-beginning 0))
8495 (org-open-at-point))))
8496 ;; This is an internal link, widen the buffer
8497 (switch-to-buffer-other-window buffer)
8498 (widen)
8499 (goto-char marker)
8500 (when (search-forward l nil lkend)
8501 (goto-char (match-beginning 0))
8502 (org-open-at-point)))))
8503 lk))
8504 ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
8505 (save-excursion
8506 (beginning-of-line 1)
8507 (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
8508 (org-open-link-from-string (match-string 1)))
8509 (t (message "No link to open here")))))
8511 (defun org-agenda-copy-local-variable (var)
8512 "Get a variable from a referenced buffer and install it here."
8513 (let ((m (org-get-at-bol 'org-marker)))
8514 (when (and m (buffer-live-p (marker-buffer m)))
8515 (org-set-local var (with-current-buffer (marker-buffer m)
8516 (symbol-value var))))))
8518 (defun org-agenda-switch-to (&optional delete-other-windows)
8519 "Go to the Org-mode file which contains the item at point."
8520 (interactive)
8521 (if (and org-return-follows-link
8522 (not (org-get-at-bol 'org-marker))
8523 (org-in-regexp org-bracket-link-regexp))
8524 (org-open-link-from-string (match-string 0))
8525 (let* ((marker (or (org-get-at-bol 'org-marker)
8526 (org-agenda-error)))
8527 (buffer (marker-buffer marker))
8528 (pos (marker-position marker)))
8529 (org-pop-to-buffer-same-window buffer)
8530 (and delete-other-windows (delete-other-windows))
8531 (widen)
8532 (goto-char pos)
8533 (when (derived-mode-p 'org-mode)
8534 (org-show-context 'agenda)
8535 (save-excursion
8536 (and (outline-next-heading)
8537 (org-flag-heading nil))) ; show the next heading
8538 (when (outline-invisible-p)
8539 (show-entry)) ; display invisible text
8540 (run-hooks 'org-agenda-after-show-hook)))))
8542 (defun org-agenda-goto-mouse (ev)
8543 "Go to the Org-mode file which contains the item at the mouse click."
8544 (interactive "e")
8545 (mouse-set-point ev)
8546 (org-agenda-goto))
8548 (defun org-agenda-show (&optional full-entry)
8549 "Display the Org-mode file which contains the item at point.
8550 With prefix argument FULL-ENTRY, make the entire entry visible
8551 if it was hidden in the outline."
8552 (interactive "P")
8553 (let ((win (selected-window)))
8554 (if full-entry
8555 (let ((org-show-entry-below t))
8556 (org-agenda-goto t))
8557 (org-agenda-goto t))
8558 (select-window win)))
8560 (defvar org-agenda-show-window nil)
8561 (defun org-agenda-show-and-scroll-up (&optional arg)
8562 "Display the Org-mode file which contains the item at point.
8563 When called repeatedly, scroll the window that is displaying the buffer.
8564 With a \\[universal-argument] prefix, use `org-show-entry' instead of
8565 `show-subtree' to display the item, so that drawers and logbooks stay
8566 folded."
8567 (interactive "P")
8568 (let ((win (selected-window)))
8569 (if (and (window-live-p org-agenda-show-window)
8570 (eq this-command last-command))
8571 (progn
8572 (select-window org-agenda-show-window)
8573 (ignore-errors (scroll-up)))
8574 (org-agenda-goto t)
8575 (if arg (org-show-entry) (show-subtree))
8576 (setq org-agenda-show-window (selected-window)))
8577 (select-window win)))
8579 (defun org-agenda-show-scroll-down ()
8580 "Scroll down the window showing the agenda."
8581 (interactive)
8582 (let ((win (selected-window)))
8583 (when (window-live-p org-agenda-show-window)
8584 (select-window org-agenda-show-window)
8585 (ignore-errors (scroll-down))
8586 (select-window win))))
8588 (defun org-agenda-show-1 (&optional more)
8589 "Display the Org-mode file which contains the item at point.
8590 The prefix arg selects the amount of information to display:
8592 0 hide the subtree
8593 1 just show the entry according to defaults.
8594 2 show the children view
8595 3 show the subtree view
8596 4 show the entire subtree and any LOGBOOK drawers
8597 5 show the entire subtree and any drawers
8598 With prefix argument FULL-ENTRY, make the entire entry visible
8599 if it was hidden in the outline."
8600 (interactive "p")
8601 (let ((win (selected-window)))
8602 (org-agenda-goto t)
8603 (org-recenter-heading 1)
8604 (cond
8605 ((= more 0)
8606 (hide-subtree)
8607 (save-excursion
8608 (org-back-to-heading)
8609 (run-hook-with-args 'org-cycle-hook 'folded))
8610 (message "Remote: FOLDED"))
8611 ((and (org-called-interactively-p 'any) (= more 1))
8612 (message "Remote: show with default settings"))
8613 ((= more 2)
8614 (show-entry)
8615 (show-children)
8616 (save-excursion
8617 (org-back-to-heading)
8618 (run-hook-with-args 'org-cycle-hook 'children))
8619 (message "Remote: CHILDREN"))
8620 ((= more 3)
8621 (show-subtree)
8622 (save-excursion
8623 (org-back-to-heading)
8624 (run-hook-with-args 'org-cycle-hook 'subtree))
8625 (message "Remote: SUBTREE"))
8626 ((= more 4)
8627 (let* ((org-drawers (delete "LOGBOOK" (copy-sequence org-drawers)))
8628 (org-drawer-regexp
8629 (concat "^[ \t]*:\\("
8630 (mapconcat 'regexp-quote org-drawers "\\|")
8631 "\\):[ \t]*$")))
8632 (show-subtree)
8633 (save-excursion
8634 (org-back-to-heading)
8635 (org-cycle-hide-drawers 'subtree)))
8636 (message "Remote: SUBTREE AND LOGBOOK"))
8637 ((> more 4)
8638 (show-subtree)
8639 (message "Remote: SUBTREE AND ALL DRAWERS")))
8640 (select-window win)))
8642 (defun org-recenter-heading (n)
8643 (save-excursion
8644 (org-back-to-heading)
8645 (recenter n)))
8647 (defvar org-agenda-cycle-counter nil)
8648 (defun org-agenda-cycle-show (&optional n)
8649 "Show the current entry in another window, with default settings.
8650 Default settings are taken from `org-show-hierarchy-above' and siblings.
8651 When use repeatedly in immediate succession, the remote entry will cycle
8652 through visibility
8654 children -> subtree -> folded
8656 When called with a numeric prefix arg, that arg will be passed through to
8657 `org-agenda-show-1'. For the interpretation of that argument, see the
8658 docstring of `org-agenda-show-1'."
8659 (interactive "P")
8660 (if (integerp n)
8661 (setq org-agenda-cycle-counter n)
8662 (if (not (eq last-command this-command))
8663 (setq org-agenda-cycle-counter 1)
8664 (if (equal org-agenda-cycle-counter 0)
8665 (setq org-agenda-cycle-counter 2)
8666 (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
8667 (if (> org-agenda-cycle-counter 3)
8668 (setq org-agenda-cycle-counter 0)))))
8669 (org-agenda-show-1 org-agenda-cycle-counter))
8671 (defun org-agenda-recenter (arg)
8672 "Display the Org-mode file which contains the item at point and recenter."
8673 (interactive "P")
8674 (let ((win (selected-window)))
8675 (org-agenda-goto t)
8676 (recenter arg)
8677 (select-window win)))
8679 (defun org-agenda-show-mouse (ev)
8680 "Display the Org-mode file which contains the item at the mouse click."
8681 (interactive "e")
8682 (mouse-set-point ev)
8683 (org-agenda-show))
8685 (defun org-agenda-check-no-diary ()
8686 "Check if the entry is a diary link and abort if yes."
8687 (if (org-get-at-bol 'org-agenda-diary-link)
8688 (org-agenda-error)))
8690 (defun org-agenda-error ()
8691 (error "Command not allowed in this line"))
8693 (defun org-agenda-tree-to-indirect-buffer (arg)
8694 "Show the subtree corresponding to the current entry in an indirect buffer.
8695 This calls the command `org-tree-to-indirect-buffer' from the original buffer.
8697 With a numerical prefix ARG, go up to this level and then take that tree.
8698 With a negative numeric ARG, go up by this number of levels.
8699 With a \\[universal-argument] prefix, make a separate frame for this tree (i.e. don't
8700 use the dedicated frame)."
8701 (interactive "P")
8702 (if current-prefix-arg
8703 (org-agenda-do-tree-to-indirect-buffer arg)
8704 (let ((agenda-buffer (buffer-name))
8705 (agenda-window (selected-window))
8706 (indirect-window
8707 (and org-last-indirect-buffer
8708 (get-buffer-window org-last-indirect-buffer))))
8709 (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
8710 (unless (or (eq org-indirect-buffer-display 'new-frame)
8711 (eq org-indirect-buffer-display 'dedicated-frame))
8712 (unwind-protect
8713 (unless (and indirect-window (window-live-p indirect-window))
8714 (setq indirect-window (split-window agenda-window)))
8715 (and indirect-window (select-window indirect-window))
8716 (switch-to-buffer org-last-indirect-buffer :norecord)
8717 (fit-window-to-buffer indirect-window)))
8718 (select-window (get-buffer-window agenda-buffer)))))
8720 (defun org-agenda-do-tree-to-indirect-buffer (arg)
8721 "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
8722 (org-agenda-check-no-diary)
8723 (let* ((marker (or (org-get-at-bol 'org-marker)
8724 (org-agenda-error)))
8725 (buffer (marker-buffer marker))
8726 (pos (marker-position marker)))
8727 (with-current-buffer buffer
8728 (save-excursion
8729 (goto-char pos)
8730 (funcall 'org-tree-to-indirect-buffer arg)))))
8732 (defvar org-last-heading-marker (make-marker)
8733 "Marker pointing to the headline that last changed its TODO state
8734 by a remote command from the agenda.")
8736 (defun org-agenda-todo-nextset ()
8737 "Switch TODO entry to next sequence."
8738 (interactive)
8739 (org-agenda-todo 'nextset))
8741 (defun org-agenda-todo-previousset ()
8742 "Switch TODO entry to previous sequence."
8743 (interactive)
8744 (org-agenda-todo 'previousset))
8746 (defun org-agenda-todo (&optional arg)
8747 "Cycle TODO state of line at point, also in Org-mode file.
8748 This changes the line at point, all other lines in the agenda referring to
8749 the same tree node, and the headline of the tree node in the Org-mode file."
8750 (interactive "P")
8751 (org-agenda-check-no-diary)
8752 (let* ((col (current-column))
8753 (marker (or (org-get-at-bol 'org-marker)
8754 (org-agenda-error)))
8755 (buffer (marker-buffer marker))
8756 (pos (marker-position marker))
8757 (hdmarker (org-get-at-bol 'org-hd-marker))
8758 (todayp (org-agenda-todayp (org-get-at-bol 'day)))
8759 (inhibit-read-only t)
8760 org-agenda-headline-snapshot-before-repeat newhead just-one)
8761 (org-with-remote-undo buffer
8762 (with-current-buffer buffer
8763 (widen)
8764 (goto-char pos)
8765 (org-show-context 'agenda)
8766 (save-excursion
8767 (and (outline-next-heading)
8768 (org-flag-heading nil))) ; show the next heading
8769 (let ((current-prefix-arg arg))
8770 (call-interactively 'org-todo))
8771 (and (bolp) (forward-char 1))
8772 (setq newhead (org-get-heading))
8773 (when (and (org-bound-and-true-p
8774 org-agenda-headline-snapshot-before-repeat)
8775 (not (equal org-agenda-headline-snapshot-before-repeat
8776 newhead))
8777 todayp)
8778 (setq newhead org-agenda-headline-snapshot-before-repeat
8779 just-one t))
8780 (save-excursion
8781 (org-back-to-heading)
8782 (move-marker org-last-heading-marker (point))))
8783 (beginning-of-line 1)
8784 (save-excursion
8785 (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
8786 (org-move-to-column col))))
8788 (defun org-agenda-add-note (&optional arg)
8789 "Add a time-stamped note to the entry at point."
8790 (interactive "P")
8791 (org-agenda-check-no-diary)
8792 (let* ((marker (or (org-get-at-bol 'org-marker)
8793 (org-agenda-error)))
8794 (buffer (marker-buffer marker))
8795 (pos (marker-position marker))
8796 (hdmarker (org-get-at-bol 'org-hd-marker))
8797 (inhibit-read-only t))
8798 (with-current-buffer buffer
8799 (widen)
8800 (goto-char pos)
8801 (org-show-context 'agenda)
8802 (save-excursion
8803 (and (outline-next-heading)
8804 (org-flag-heading nil))) ; show the next heading
8805 (org-add-note))))
8807 (defun org-agenda-change-all-lines (newhead hdmarker
8808 &optional fixface just-this)
8809 "Change all lines in the agenda buffer which match HDMARKER.
8810 The new content of the line will be NEWHEAD (as modified by
8811 `org-agenda-format-item'). HDMARKER is checked with
8812 `equal' against all `org-hd-marker' text properties in the file.
8813 If FIXFACE is non-nil, the face of each item is modified according to
8814 the new TODO state.
8815 If JUST-THIS is non-nil, change just the current line, not all.
8816 If FORCE-TAGS is non nil, the car of it returns the new tags."
8817 (let* ((inhibit-read-only t)
8818 (line (org-current-line))
8819 (org-agenda-buffer (current-buffer))
8820 (thetags (with-current-buffer (marker-buffer hdmarker)
8821 (save-excursion (save-restriction (widen)
8822 (goto-char hdmarker)
8823 (org-get-tags-at)))))
8824 props m pl undone-face done-face finish new dotime level cat tags)
8825 (save-excursion
8826 (goto-char (point-max))
8827 (beginning-of-line 1)
8828 (while (not finish)
8829 (setq finish (bobp))
8830 (when (and (setq m (org-get-at-bol 'org-hd-marker))
8831 (or (not just-this) (= (org-current-line) line))
8832 (equal m hdmarker))
8833 (setq props (text-properties-at (point))
8834 dotime (org-get-at-bol 'dotime)
8835 cat (org-get-at-bol 'org-category)
8836 level (org-get-at-bol 'level)
8837 tags thetags
8839 (let ((org-prefix-format-compiled
8840 (or (get-text-property (min (1- (point-max)) (point)) 'format)
8841 org-prefix-format-compiled))
8842 (extra (org-get-at-bol 'extra)))
8843 (with-current-buffer (marker-buffer hdmarker)
8844 (save-excursion
8845 (save-restriction
8846 (widen)
8847 (org-agenda-format-item extra newhead level cat tags dotime)))))
8848 pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
8849 undone-face (org-get-at-bol 'undone-face)
8850 done-face (org-get-at-bol 'done-face))
8851 (beginning-of-line 1)
8852 (cond
8853 ((equal new "")
8854 (and (looking-at ".*\n?") (replace-match "")))
8855 ((looking-at ".*")
8856 (replace-match new t t)
8857 (beginning-of-line 1)
8858 (add-text-properties (point-at-bol) (point-at-eol) props)
8859 (when fixface
8860 (add-text-properties
8861 (point-at-bol) (point-at-eol)
8862 (list 'face
8863 (if org-last-todo-state-is-todo
8864 undone-face done-face))))
8865 (org-agenda-highlight-todo 'line)
8866 (beginning-of-line 1))
8867 (t (error "Line update did not work")))
8868 (save-restriction
8869 (narrow-to-region (point-at-bol) (point-at-eol))
8870 (org-agenda-finalize)))
8871 (beginning-of-line 0)))))
8873 (defun org-agenda-align-tags (&optional line)
8874 "Align all tags in agenda items to `org-agenda-tags-column'."
8875 (let ((inhibit-read-only t) l c)
8876 (save-excursion
8877 (goto-char (if line (point-at-bol) (point-min)))
8878 (while (re-search-forward (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
8879 (if line (point-at-eol) nil) t)
8880 (add-text-properties
8881 (match-beginning 2) (match-end 2)
8882 (list 'face (delq nil (let ((prop (get-text-property
8883 (match-beginning 2) 'face)))
8884 (or (listp prop) (setq prop (list prop)))
8885 (if (memq 'org-tag prop)
8886 prop
8887 (cons 'org-tag prop))))))
8888 (setq l (- (match-end 2) (match-beginning 2))
8889 c (if (< org-agenda-tags-column 0)
8890 (- (abs org-agenda-tags-column) l)
8891 org-agenda-tags-column))
8892 (delete-region (match-beginning 1) (match-end 1))
8893 (goto-char (match-beginning 1))
8894 (insert (org-add-props
8895 (make-string (max 1 (- c (current-column))) ?\ )
8896 (plist-put (copy-sequence (text-properties-at (point)))
8897 'face nil))))
8898 (goto-char (point-min))
8899 (org-font-lock-add-tag-faces (point-max)))))
8901 (defun org-agenda-priority-up ()
8902 "Increase the priority of line at point, also in Org-mode file."
8903 (interactive)
8904 (org-agenda-priority 'up))
8906 (defun org-agenda-priority-down ()
8907 "Decrease the priority of line at point, also in Org-mode file."
8908 (interactive)
8909 (org-agenda-priority 'down))
8911 (defun org-agenda-priority (&optional force-direction)
8912 "Set the priority of line at point, also in Org-mode file.
8913 This changes the line at point, all other lines in the agenda referring to
8914 the same tree node, and the headline of the tree node in the Org-mode file.
8915 Called with a universal prefix arg, show the priority instead of setting it."
8916 (interactive "P")
8917 (if (equal force-direction '(4))
8918 (org-show-priority)
8919 (unless org-enable-priority-commands
8920 (error "Priority commands are disabled"))
8921 (org-agenda-check-no-diary)
8922 (let* ((marker (or (org-get-at-bol 'org-marker)
8923 (org-agenda-error)))
8924 (hdmarker (org-get-at-bol 'org-hd-marker))
8925 (buffer (marker-buffer hdmarker))
8926 (pos (marker-position hdmarker))
8927 (inhibit-read-only t)
8928 newhead)
8929 (org-with-remote-undo buffer
8930 (with-current-buffer buffer
8931 (widen)
8932 (goto-char pos)
8933 (org-show-context 'agenda)
8934 (save-excursion
8935 (and (outline-next-heading)
8936 (org-flag-heading nil))) ; show the next heading
8937 (funcall 'org-priority force-direction)
8938 (end-of-line 1)
8939 (setq newhead (org-get-heading)))
8940 (org-agenda-change-all-lines newhead hdmarker)
8941 (beginning-of-line 1)))))
8943 ;; FIXME: should fix the tags property of the agenda line.
8944 (defun org-agenda-set-tags (&optional tag onoff)
8945 "Set tags for the current headline."
8946 (interactive)
8947 (org-agenda-check-no-diary)
8948 (if (and (org-region-active-p) (org-called-interactively-p 'any))
8949 (call-interactively 'org-change-tag-in-region)
8950 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
8951 (org-agenda-error)))
8952 (buffer (marker-buffer hdmarker))
8953 (pos (marker-position hdmarker))
8954 (inhibit-read-only t)
8955 newhead)
8956 (org-with-remote-undo buffer
8957 (with-current-buffer buffer
8958 (widen)
8959 (goto-char pos)
8960 (save-excursion
8961 (org-show-context 'agenda))
8962 (save-excursion
8963 (and (outline-next-heading)
8964 (org-flag-heading nil))) ; show the next heading
8965 (goto-char pos)
8966 (if tag
8967 (org-toggle-tag tag onoff)
8968 (call-interactively 'org-set-tags))
8969 (end-of-line 1)
8970 (setq newhead (org-get-heading)))
8971 (org-agenda-change-all-lines newhead hdmarker)
8972 (beginning-of-line 1)))))
8974 (defun org-agenda-set-property ()
8975 "Set a property for the current headline."
8976 (interactive)
8977 (org-agenda-check-no-diary)
8978 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
8979 (org-agenda-error)))
8980 (buffer (marker-buffer hdmarker))
8981 (pos (marker-position hdmarker))
8982 (inhibit-read-only t)
8983 newhead)
8984 (org-with-remote-undo buffer
8985 (with-current-buffer buffer
8986 (widen)
8987 (goto-char pos)
8988 (save-excursion
8989 (org-show-context 'agenda))
8990 (save-excursion
8991 (and (outline-next-heading)
8992 (org-flag-heading nil))) ; show the next heading
8993 (goto-char pos)
8994 (call-interactively 'org-set-property)))))
8996 (defun org-agenda-set-effort ()
8997 "Set the effort property for the current headline."
8998 (interactive)
8999 (org-agenda-check-no-diary)
9000 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
9001 (org-agenda-error)))
9002 (buffer (marker-buffer hdmarker))
9003 (pos (marker-position hdmarker))
9004 (inhibit-read-only t)
9005 newhead)
9006 (org-with-remote-undo buffer
9007 (with-current-buffer buffer
9008 (widen)
9009 (goto-char pos)
9010 (save-excursion
9011 (org-show-context 'agenda))
9012 (save-excursion
9013 (and (outline-next-heading)
9014 (org-flag-heading nil))) ; show the next heading
9015 (goto-char pos)
9016 (call-interactively 'org-set-effort)
9017 (end-of-line 1)
9018 (setq newhead (org-get-heading)))
9019 (org-agenda-change-all-lines newhead hdmarker))))
9021 (defun org-agenda-toggle-archive-tag ()
9022 "Toggle the archive tag for the current entry."
9023 (interactive)
9024 (org-agenda-check-no-diary)
9025 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
9026 (org-agenda-error)))
9027 (buffer (marker-buffer hdmarker))
9028 (pos (marker-position hdmarker))
9029 (inhibit-read-only t)
9030 newhead)
9031 (org-with-remote-undo buffer
9032 (with-current-buffer buffer
9033 (widen)
9034 (goto-char pos)
9035 (org-show-context 'agenda)
9036 (save-excursion
9037 (and (outline-next-heading)
9038 (org-flag-heading nil))) ; show the next heading
9039 (call-interactively 'org-toggle-archive-tag)
9040 (end-of-line 1)
9041 (setq newhead (org-get-heading)))
9042 (org-agenda-change-all-lines newhead hdmarker)
9043 (beginning-of-line 1))))
9045 (defun org-agenda-do-date-later (arg)
9046 (interactive "P")
9047 (cond
9048 ((or (equal arg '(16))
9049 (memq last-command
9050 '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
9051 (setq this-command 'org-agenda-date-later-minutes)
9052 (org-agenda-date-later-minutes 1))
9053 ((or (equal arg '(4))
9054 (memq last-command
9055 '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
9056 (setq this-command 'org-agenda-date-later-hours)
9057 (org-agenda-date-later-hours 1))
9059 (org-agenda-date-later (prefix-numeric-value arg)))))
9061 (defun org-agenda-do-date-earlier (arg)
9062 (interactive "P")
9063 (cond
9064 ((or (equal arg '(16))
9065 (memq last-command
9066 '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
9067 (setq this-command 'org-agenda-date-earlier-minutes)
9068 (org-agenda-date-earlier-minutes 1))
9069 ((or (equal arg '(4))
9070 (memq last-command
9071 '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
9072 (setq this-command 'org-agenda-date-earlier-hours)
9073 (org-agenda-date-earlier-hours 1))
9075 (org-agenda-date-earlier (prefix-numeric-value arg)))))
9077 (defun org-agenda-date-later (arg &optional what)
9078 "Change the date of this item to ARG day(s) later."
9079 (interactive "p")
9080 (org-agenda-check-type t 'agenda 'timeline)
9081 (org-agenda-check-no-diary)
9082 (let* ((marker (or (org-get-at-bol 'org-marker)
9083 (org-agenda-error)))
9084 (buffer (marker-buffer marker))
9085 (pos (marker-position marker))
9086 cdate today)
9087 (org-with-remote-undo buffer
9088 (with-current-buffer buffer
9089 (widen)
9090 (goto-char pos)
9091 (if (not (org-at-timestamp-p))
9092 (error "Cannot find time stamp"))
9093 (when (and org-agenda-move-date-from-past-immediately-to-today
9094 (equal arg 1)
9095 (or (not what) (eq what 'day))
9096 (not (save-match-data (org-at-date-range-p))))
9097 (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
9098 cdate (calendar-absolute-from-gregorian
9099 (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
9100 today (org-today))
9101 (if (> today cdate)
9102 ;; immediately shift to today
9103 (setq arg (- today cdate))))
9104 (org-timestamp-change arg (or what 'day))
9105 (when (and (org-at-date-range-p)
9106 (re-search-backward org-tr-regexp-both (point-at-bol)))
9107 (let ((end org-last-changed-timestamp))
9108 (org-timestamp-change arg (or what 'day))
9109 (setq org-last-changed-timestamp
9110 (concat org-last-changed-timestamp "--" end)))))
9111 (org-agenda-show-new-time marker org-last-changed-timestamp))
9112 (message "Time stamp changed to %s" org-last-changed-timestamp)))
9114 (defun org-agenda-date-earlier (arg &optional what)
9115 "Change the date of this item to ARG day(s) earlier."
9116 (interactive "p")
9117 (org-agenda-date-later (- arg) what))
9119 (defun org-agenda-date-later-minutes (arg)
9120 "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
9121 (interactive "p")
9122 (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
9123 (org-agenda-date-later arg 'minute))
9125 (defun org-agenda-date-earlier-minutes (arg)
9126 "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
9127 (interactive "p")
9128 (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
9129 (org-agenda-date-earlier arg 'minute))
9131 (defun org-agenda-date-later-hours (arg)
9132 "Change the time of this item, in hour steps."
9133 (interactive "p")
9134 (org-agenda-date-later arg 'hour))
9136 (defun org-agenda-date-earlier-hours (arg)
9137 "Change the time of this item, in hour steps."
9138 (interactive "p")
9139 (org-agenda-date-earlier arg 'hour))
9141 (defun org-agenda-show-new-time (marker stamp &optional prefix)
9142 "Show new date stamp via text properties."
9143 ;; We use text properties to make this undoable
9144 (let ((inhibit-read-only t))
9145 (setq stamp (concat prefix " => " stamp " "))
9146 (save-excursion
9147 (goto-char (point-max))
9148 (while (not (bobp))
9149 (when (equal marker (org-get-at-bol 'org-marker))
9150 (org-move-to-column (- (window-width) (length stamp)) t)
9151 (org-agenda-fix-tags-filter-overlays-at (point))
9152 (if (featurep 'xemacs)
9153 ;; Use `duplicable' property to trigger undo recording
9154 (let ((ex (make-extent nil nil))
9155 (gl (make-glyph stamp)))
9156 (set-glyph-face gl 'secondary-selection)
9157 (set-extent-properties
9158 ex (list 'invisible t 'end-glyph gl 'duplicable t))
9159 (insert-extent ex (1- (point)) (point-at-eol)))
9160 (add-text-properties
9161 (1- (point)) (point-at-eol)
9162 (list 'display (org-add-props stamp nil
9163 'face 'secondary-selection))))
9164 (beginning-of-line 1))
9165 (beginning-of-line 0)))))
9167 (defun org-agenda-date-prompt (arg)
9168 "Change the date of this item. Date is prompted for, with default today.
9169 The prefix ARG is passed to the `org-time-stamp' command and can therefore
9170 be used to request time specification in the time stamp."
9171 (interactive "P")
9172 (org-agenda-check-type t 'agenda 'timeline)
9173 (org-agenda-check-no-diary)
9174 (let* ((marker (or (org-get-at-bol 'org-marker)
9175 (org-agenda-error)))
9176 (buffer (marker-buffer marker))
9177 (pos (marker-position marker)))
9178 (org-with-remote-undo buffer
9179 (with-current-buffer buffer
9180 (widen)
9181 (goto-char pos)
9182 (if (not (org-at-timestamp-p t))
9183 (error "Cannot find time stamp"))
9184 (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
9185 (org-agenda-show-new-time marker org-last-changed-timestamp))
9186 (message "Time stamp changed to %s" org-last-changed-timestamp)))
9188 (defun org-agenda-schedule (arg &optional time)
9189 "Schedule the item at point.
9190 ARG is passed through to `org-schedule'."
9191 (interactive "P")
9192 (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
9193 (org-agenda-check-no-diary)
9194 (let* ((marker (or (org-get-at-bol 'org-marker)
9195 (org-agenda-error)))
9196 (type (marker-insertion-type marker))
9197 (buffer (marker-buffer marker))
9198 (pos (marker-position marker))
9199 (org-insert-labeled-timestamps-at-point nil)
9201 (set-marker-insertion-type marker t)
9202 (org-with-remote-undo buffer
9203 (with-current-buffer buffer
9204 (widen)
9205 (goto-char pos)
9206 (setq ts (org-schedule arg time)))
9207 (org-agenda-show-new-time marker ts " S"))
9208 (message "%s" ts)))
9210 (defun org-agenda-deadline (arg &optional time)
9211 "Schedule the item at point.
9212 ARG is passed through to `org-deadline'."
9213 (interactive "P")
9214 (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
9215 (org-agenda-check-no-diary)
9216 (let* ((marker (or (org-get-at-bol 'org-marker)
9217 (org-agenda-error)))
9218 (buffer (marker-buffer marker))
9219 (pos (marker-position marker))
9220 (org-insert-labeled-timestamps-at-point nil)
9222 (org-with-remote-undo buffer
9223 (with-current-buffer buffer
9224 (widen)
9225 (goto-char pos)
9226 (setq ts (org-deadline arg time)))
9227 (org-agenda-show-new-time marker ts " D"))
9228 (message "%s" ts)))
9230 (defun org-agenda-clock-in (&optional arg)
9231 "Start the clock on the currently selected item."
9232 (interactive "P")
9233 (org-agenda-check-no-diary)
9234 (if (equal arg '(4))
9235 (org-clock-in arg)
9236 (let* ((marker (or (org-get-at-bol 'org-marker)
9237 (org-agenda-error)))
9238 (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
9239 (pos (marker-position marker))
9240 (col (current-column))
9241 newhead)
9242 (org-with-remote-undo (marker-buffer marker)
9243 (with-current-buffer (marker-buffer marker)
9244 (widen)
9245 (goto-char pos)
9246 (org-show-context 'agenda)
9247 (org-show-entry)
9248 (org-cycle-hide-drawers 'children)
9249 (org-clock-in arg)
9250 (setq newhead (org-get-heading)))
9251 (org-agenda-change-all-lines newhead hdmarker))
9252 (org-move-to-column col))))
9254 (defun org-agenda-clock-out ()
9255 "Stop the currently running clock."
9256 (interactive)
9257 (unless (marker-buffer org-clock-marker)
9258 (error "No running clock"))
9259 (let ((marker (make-marker)) (col (current-column)) newhead)
9260 (org-with-remote-undo (marker-buffer org-clock-marker)
9261 (with-current-buffer (marker-buffer org-clock-marker)
9262 (save-excursion
9263 (save-restriction
9264 (widen)
9265 (goto-char org-clock-marker)
9266 (org-back-to-heading t)
9267 (move-marker marker (point))
9268 (org-clock-out)
9269 (setq newhead (org-get-heading))))))
9270 (org-agenda-change-all-lines newhead marker)
9271 (move-marker marker nil)
9272 (org-move-to-column col)
9273 (org-agenda-unmark-clocking-task)))
9275 (defun org-agenda-clock-cancel (&optional arg)
9276 "Cancel the currently running clock."
9277 (interactive "P")
9278 (unless (marker-buffer org-clock-marker)
9279 (user-error "No running clock"))
9280 (org-with-remote-undo (marker-buffer org-clock-marker)
9281 (org-clock-cancel)))
9283 (defun org-agenda-clock-goto ()
9284 "Jump to the currently clocked in task within the agenda.
9285 If the currently clocked in task is not listed in the agenda
9286 buffer, display it in another window."
9287 (interactive)
9288 (let (pos)
9289 (mapc (lambda (o)
9290 (if (eq (overlay-get o 'type) 'org-agenda-clocking)
9291 (setq pos (overlay-start o))))
9292 (overlays-in (point-min) (point-max)))
9293 (cond (pos (goto-char pos))
9294 ;; If the currently clocked entry is not in the agenda
9295 ;; buffer, we visit it in another window:
9296 (org-clock-current-task
9297 (org-switch-to-buffer-other-window (org-clock-goto)))
9298 (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
9300 (defun org-agenda-diary-entry-in-org-file ()
9301 "Make a diary entry in the file `org-agenda-diary-file'."
9302 (let (d1 d2 char (text "") dp1 dp2)
9303 (if (equal (buffer-name) "*Calendar*")
9304 (setq d1 (calendar-cursor-to-date t)
9305 d2 (car calendar-mark-ring))
9306 (setq dp1 (get-text-property (point-at-bol) 'day))
9307 (unless dp1 (user-error "No date defined in current line"))
9308 (setq d1 (calendar-gregorian-from-absolute dp1)
9309 d2 (and (ignore-errors (mark))
9310 (save-excursion
9311 (goto-char (mark))
9312 (setq dp2 (get-text-property (point-at-bol) 'day)))
9313 (calendar-gregorian-from-absolute dp2))))
9314 (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
9315 (setq char (read-char-exclusive))
9316 (cond
9317 ((equal char ?d)
9318 (setq text (read-string "Day entry: "))
9319 (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
9320 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
9321 ((equal char ?a)
9322 (setq d1 (list (car d1) (nth 1 d1)
9323 (read-number (format "Reference year [%d]: " (nth 2 d1))
9324 (nth 2 d1))))
9325 (setq text (read-string "Anniversary (use %d to show years): "))
9326 (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
9327 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
9328 ((equal char ?b)
9329 (setq text (read-string "Block entry: "))
9330 (unless (and d1 d2 (not (equal d1 d2)))
9331 (user-error "No block of days selected"))
9332 (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
9333 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
9334 ((equal char ?j)
9335 (org-switch-to-buffer-other-window
9336 (find-file-noselect org-agenda-diary-file))
9337 (require 'org-datetree)
9338 (org-datetree-find-date-create d1)
9339 (org-reveal t))
9340 (t (user-error "Invalid selection character `%c'" char)))))
9342 (defcustom org-agenda-insert-diary-strategy 'date-tree
9343 "Where in `org-agenda-diary-file' should new entries be added?
9344 Valid values:
9346 date-tree in the date tree, as child of the date
9347 top-level as top-level entries at the end of the file."
9348 :group 'org-agenda
9349 :type '(choice
9350 (const :tag "in a date tree" date-tree)
9351 (const :tag "as top level at end of file" top-level)))
9353 (defcustom org-agenda-insert-diary-extract-time nil
9354 "Non-nil means extract any time specification from the diary entry."
9355 :group 'org-agenda
9356 :version "24.1"
9357 :type 'boolean)
9359 (defcustom org-agenda-bulk-mark-char ">"
9360 "A single-character string to be used as the bulk mark."
9361 :group 'org-agenda
9362 :version "24.1"
9363 :type 'string)
9365 (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
9366 "Add a diary entry with TYPE to `org-agenda-diary-file'.
9367 If TEXT is not empty, it will become the headline of the new entry, and
9368 the resulting entry will not be shown. When TEXT is empty, switch to
9369 `org-agenda-diary-file' and let the user finish the entry there."
9370 (let ((cw (current-window-configuration)))
9371 (org-switch-to-buffer-other-window
9372 (find-file-noselect org-agenda-diary-file))
9373 (widen)
9374 (goto-char (point-min))
9375 (cond
9376 ((eq type 'anniversary)
9377 (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
9378 (progn
9379 (or (org-at-heading-p t)
9380 (progn
9381 (outline-next-heading)
9382 (insert "* Anniversaries\n\n")
9383 (beginning-of-line -1)))))
9384 (outline-next-heading)
9385 (org-back-over-empty-lines)
9386 (backward-char 1)
9387 (insert "\n")
9388 (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
9389 (nth 2 d1) (car d1) (nth 1 d1) text)))
9390 ((eq type 'day)
9391 (let ((org-prefix-has-time t)
9392 (org-agenda-time-leading-zero t)
9393 fmt time time2)
9394 (if org-agenda-insert-diary-extract-time
9395 ;; Use org-agenda-format-item to parse text for a time-range and
9396 ;; remove it. FIXME: This is a hack, we should refactor
9397 ;; that function to make time extraction available separately
9398 (setq fmt (org-agenda-format-item nil text nil nil nil t)
9399 time (get-text-property 0 'time fmt)
9400 time2 (if (> (length time) 0)
9401 ;; split-string removes trailing ...... if
9402 ;; no end time given. First space
9403 ;; separates time from date.
9404 (concat " " (car (split-string time "\\.")))
9405 nil)
9406 text (get-text-property 0 'txt fmt)))
9407 (if (eq org-agenda-insert-diary-strategy 'top-level)
9408 (org-agenda-insert-diary-as-top-level text)
9409 (require 'org-datetree)
9410 (org-datetree-find-date-create d1)
9411 (org-agenda-insert-diary-make-new-entry text))
9412 (org-insert-time-stamp (org-time-from-absolute
9413 (calendar-absolute-from-gregorian d1))
9414 nil nil nil nil time2))
9415 (end-of-line 0))
9416 ((eq type 'block)
9417 (if (> (calendar-absolute-from-gregorian d1)
9418 (calendar-absolute-from-gregorian d2))
9419 (setq d1 (prog1 d2 (setq d2 d1))))
9420 (if (eq org-agenda-insert-diary-strategy 'top-level)
9421 (org-agenda-insert-diary-as-top-level text)
9422 (require 'org-datetree)
9423 (org-datetree-find-date-create d1)
9424 (org-agenda-insert-diary-make-new-entry text))
9425 (org-insert-time-stamp (org-time-from-absolute
9426 (calendar-absolute-from-gregorian d1)))
9427 (insert "--")
9428 (org-insert-time-stamp (org-time-from-absolute
9429 (calendar-absolute-from-gregorian d2)))
9430 (end-of-line 0)))
9431 (if (string-match "\\S-" text)
9432 (progn
9433 (set-window-configuration cw)
9434 (message "%s entry added to %s"
9435 (capitalize (symbol-name type))
9436 (abbreviate-file-name org-agenda-diary-file)))
9437 (org-reveal t)
9438 (message "Please finish entry here"))))
9440 (defun org-agenda-insert-diary-as-top-level (text)
9441 "Make new entry as a top-level entry at the end of the file.
9442 Add TEXT as headline, and position the cursor in the second line so that
9443 a timestamp can be added there."
9444 (widen)
9445 (goto-char (point-max))
9446 (or (bolp) (insert "\n"))
9447 (insert "* " text "\n")
9448 (if org-adapt-indentation (org-indent-to-column 2)))
9450 (defun org-agenda-insert-diary-make-new-entry (text)
9451 "Make new entry as last child of current entry.
9452 Add TEXT as headline, and position the cursor in the second line so that
9453 a timestamp can be added there."
9454 (let ((org-show-following-heading t)
9455 (org-show-siblings t)
9456 (org-show-hierarchy-above t)
9457 (org-show-entry-below t)
9458 col)
9459 (outline-next-heading)
9460 (org-back-over-empty-lines)
9461 (or (looking-at "[ \t]*$")
9462 (progn (insert "\n") (backward-char 1)))
9463 (org-insert-heading nil t)
9464 (org-do-demote)
9465 (setq col (current-column))
9466 (insert text "\n")
9467 (if org-adapt-indentation (org-indent-to-column col))
9468 (let ((org-show-following-heading t)
9469 (org-show-siblings t)
9470 (org-show-hierarchy-above t)
9471 (org-show-entry-below t))
9472 (org-show-context))))
9474 (defun org-agenda-diary-entry ()
9475 "Make a diary entry, like the `i' command from the calendar.
9476 All the standard commands work: block, weekly etc.
9477 When `org-agenda-diary-file' points to a file,
9478 `org-agenda-diary-entry-in-org-file' is called instead to create
9479 entries in that Org-mode file."
9480 (interactive)
9481 (if (not (eq org-agenda-diary-file 'diary-file))
9482 (org-agenda-diary-entry-in-org-file)
9483 (require 'diary-lib)
9484 (let* ((char (progn
9485 (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
9486 (read-char-exclusive)))
9487 (cmd (cdr (assoc char
9488 '((?d . insert-diary-entry)
9489 (?w . insert-weekly-diary-entry)
9490 (?m . insert-monthly-diary-entry)
9491 (?y . insert-yearly-diary-entry)
9492 (?a . insert-anniversary-diary-entry)
9493 (?b . insert-block-diary-entry)
9494 (?c . insert-cyclic-diary-entry)))))
9495 (oldf (symbol-function 'calendar-cursor-to-date))
9496 ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
9497 (point (point))
9498 (mark (or (mark t) (point))))
9499 (unless cmd
9500 (user-error "No command associated with <%c>" char))
9501 (unless (and (get-text-property point 'day)
9502 (or (not (equal ?b char))
9503 (get-text-property mark 'day)))
9504 (user-error "Don't know which date to use for diary entry"))
9505 ;; We implement this by hacking the `calendar-cursor-to-date' function
9506 ;; and the `calendar-mark-ring' variable. Saves a lot of code.
9507 (let ((calendar-mark-ring
9508 (list (calendar-gregorian-from-absolute
9509 (or (get-text-property mark 'day)
9510 (get-text-property point 'day))))))
9511 (unwind-protect
9512 (progn
9513 (fset 'calendar-cursor-to-date
9514 (lambda (&optional error dummy)
9515 (calendar-gregorian-from-absolute
9516 (get-text-property point 'day))))
9517 (call-interactively cmd))
9518 (fset 'calendar-cursor-to-date oldf))))))
9520 (defun org-agenda-execute-calendar-command (cmd)
9521 "Execute a calendar command from the agenda with date from cursor."
9522 (org-agenda-check-type t 'agenda 'timeline)
9523 (require 'diary-lib)
9524 (unless (get-text-property (min (1- (point-max)) (point)) 'day)
9525 (user-error "Don't know which date to use for the calendar command"))
9526 (let* ((oldf (symbol-function 'calendar-cursor-to-date))
9527 (point (point))
9528 (date (calendar-gregorian-from-absolute
9529 (get-text-property point 'day)))
9530 ;; the following 2 vars are needed in the calendar
9531 (displayed-month (car date))
9532 (displayed-year (nth 2 date)))
9533 (unwind-protect
9534 (progn
9535 (fset 'calendar-cursor-to-date
9536 (lambda (&optional error dummy)
9537 (calendar-gregorian-from-absolute
9538 (get-text-property point 'day))))
9539 (call-interactively cmd))
9540 (fset 'calendar-cursor-to-date oldf))))
9542 (defun org-agenda-phases-of-moon ()
9543 "Display the phases of the moon for the 3 months around the cursor date."
9544 (interactive)
9545 (org-agenda-execute-calendar-command 'calendar-phases-of-moon))
9547 (defun org-agenda-holidays ()
9548 "Display the holidays for the 3 months around the cursor date."
9549 (interactive)
9550 (org-agenda-execute-calendar-command 'list-calendar-holidays))
9552 (defvar calendar-longitude) ; defined in calendar.el
9553 (defvar calendar-latitude) ; defined in calendar.el
9554 (defvar calendar-location-name) ; defined in calendar.el
9556 (defun org-agenda-sunrise-sunset (arg)
9557 "Display sunrise and sunset for the cursor date.
9558 Latitude and longitude can be specified with the variables
9559 `calendar-latitude' and `calendar-longitude'. When called with prefix
9560 argument, latitude and longitude will be prompted for."
9561 (interactive "P")
9562 (require 'solar)
9563 (let ((calendar-longitude (if arg nil calendar-longitude))
9564 (calendar-latitude (if arg nil calendar-latitude))
9565 (calendar-location-name
9566 (if arg "the given coordinates" calendar-location-name)))
9567 (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
9569 (defun org-agenda-goto-calendar ()
9570 "Open the Emacs calendar with the date at the cursor."
9571 (interactive)
9572 (org-agenda-check-type t 'agenda 'timeline)
9573 (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
9574 (user-error "Don't know which date to open in calendar")))
9575 (date (calendar-gregorian-from-absolute day))
9576 (calendar-move-hook nil)
9577 (calendar-view-holidays-initially-flag nil)
9578 (calendar-view-diary-initially-flag nil))
9579 (calendar)
9580 (calendar-goto-date date)))
9582 ;;;###autoload
9583 (defun org-calendar-goto-agenda ()
9584 "Compute the Org-mode agenda for the calendar date displayed at the cursor.
9585 This is a command that has to be installed in `calendar-mode-map'."
9586 (interactive)
9587 (org-agenda-list nil (calendar-absolute-from-gregorian
9588 (calendar-cursor-to-date))
9589 nil))
9591 (defun org-agenda-convert-date ()
9592 (interactive)
9593 (org-agenda-check-type t 'agenda 'timeline)
9594 (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
9595 date s)
9596 (unless day
9597 (user-error "Don't know which date to convert"))
9598 (setq date (calendar-gregorian-from-absolute day))
9599 (setq s (concat
9600 "Gregorian: " (calendar-date-string date) "\n"
9601 "ISO: " (calendar-iso-date-string date) "\n"
9602 "Day of Yr: " (calendar-day-of-year-string date) "\n"
9603 "Julian: " (calendar-julian-date-string date) "\n"
9604 "Astron. JD: " (calendar-astro-date-string date)
9605 " (Julian date number at noon UTC)\n"
9606 "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
9607 "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
9608 "French: " (calendar-french-date-string date) "\n"
9609 "Baha'i: " (calendar-bahai-date-string date) " (until sunset)\n"
9610 "Mayan: " (calendar-mayan-date-string date) "\n"
9611 "Coptic: " (calendar-coptic-date-string date) "\n"
9612 "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
9613 "Persian: " (calendar-persian-date-string date) "\n"
9614 "Chinese: " (calendar-chinese-date-string date) "\n"))
9615 (with-output-to-temp-buffer "*Dates*"
9616 (princ s))
9617 (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
9619 ;;; Bulk commands
9621 (defun org-agenda-bulk-marked-p ()
9622 (eq (get-char-property (point-at-bol) 'type)
9623 'org-marked-entry-overlay))
9625 (defun org-agenda-bulk-mark (&optional arg)
9626 "Mark the entry at point for future bulk action."
9627 (interactive "p")
9628 (dotimes (i (or arg 1))
9629 (unless (org-get-at-bol 'org-agenda-diary-link)
9630 (let* ((m (org-get-at-bol 'org-hd-marker))
9632 (unless (org-agenda-bulk-marked-p)
9633 (unless m (user-error "Nothing to mark at point"))
9634 (push m org-agenda-bulk-marked-entries)
9635 (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
9636 (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
9637 (org-get-todo-face "TODO")
9638 'evaporate)
9639 (overlay-put ov 'type 'org-marked-entry-overlay))
9640 (end-of-line 1)
9641 (or (ignore-errors
9642 (goto-char (next-single-property-change (point) 'txt)))
9643 (beginning-of-line 2))
9644 (while (and (get-char-property (point) 'invisible) (not (eobp)))
9645 (beginning-of-line 2))
9646 (message "%d entries marked for bulk action"
9647 (length org-agenda-bulk-marked-entries))))))
9649 (defun org-agenda-bulk-mark-all ()
9650 "Mark all entries for future agenda bulk action."
9651 (interactive)
9652 (org-agenda-bulk-mark-regexp "."))
9654 (defun org-agenda-bulk-mark-regexp (regexp)
9655 "Mark entries matching REGEXP for future agenda bulk action."
9656 (interactive "sMark entries matching regexp: ")
9657 (let ((entries-marked 0) txt-at-point)
9658 (save-excursion
9659 (goto-char (point-min))
9660 (goto-char (next-single-property-change (point) 'txt))
9661 (while (and (re-search-forward regexp nil t)
9662 (setq txt-at-point (get-text-property (point) 'txt)))
9663 (when (string-match regexp txt-at-point)
9664 (setq entries-marked (1+ entries-marked))
9665 (call-interactively 'org-agenda-bulk-mark))))
9666 (if (not entries-marked)
9667 (message "No entry matching this regexp."))))
9669 (defun org-agenda-bulk-unmark (&optional arg)
9670 "Unmark the entry at point for future bulk action."
9671 (interactive "P")
9672 (if arg
9673 (org-agenda-bulk-unmark-all)
9674 (cond ((org-agenda-bulk-marked-p)
9675 (org-agenda-bulk-remove-overlays
9676 (point-at-bol) (+ 2 (point-at-bol)))
9677 (setq org-agenda-bulk-marked-entries
9678 (delete (org-get-at-bol 'org-hd-marker)
9679 org-agenda-bulk-marked-entries))
9680 (end-of-line 1)
9681 (or (ignore-errors
9682 (goto-char (next-single-property-change (point) 'txt)))
9683 (beginning-of-line 2))
9684 (while (and (get-char-property (point) 'invisible) (not (eobp)))
9685 (beginning-of-line 2))
9686 (message "%d entries left marked for bulk action"
9687 (length org-agenda-bulk-marked-entries)))
9688 (t (message "No entry to unmark here")))))
9690 (defun org-agenda-bulk-toggle-all ()
9691 "Toggle all marks for bulk action."
9692 (interactive)
9693 (save-excursion
9694 (goto-char (point-min))
9695 (while (ignore-errors
9696 (goto-char (next-single-property-change (point) 'txt)))
9697 (org-agenda-bulk-toggle))))
9699 (defun org-agenda-bulk-toggle ()
9700 "Toggle the mark at point for bulk action."
9701 (interactive)
9702 (if (org-agenda-bulk-marked-p)
9703 (org-agenda-bulk-unmark)
9704 (org-agenda-bulk-mark)))
9706 (defun org-agenda-bulk-remove-overlays (&optional beg end)
9707 "Remove the mark overlays between BEG and END in the agenda buffer.
9708 BEG and END default to the buffer limits.
9710 This only removes the overlays, it does not remove the markers
9711 from the list in `org-agenda-bulk-marked-entries'."
9712 (interactive)
9713 (mapc (lambda (ov)
9714 (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
9715 (delete-overlay ov)))
9716 (overlays-in (or beg (point-min)) (or end (point-max)))))
9718 (defun org-agenda-bulk-unmark-all ()
9719 "Remove all marks in the agenda buffer.
9720 This will remove the markers and the overlays."
9721 (interactive)
9722 (if (null org-agenda-bulk-marked-entries)
9723 (message "No entry to unmark")
9724 (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
9725 (setq org-agenda-bulk-marked-entries nil)
9726 (org-agenda-bulk-remove-overlays (point-min) (point-max))))
9728 (defcustom org-agenda-persistent-marks nil
9729 "Non-nil means marked items will stay marked after a bulk action.
9730 You can toggle this interactively by typing `p' when prompted for a
9731 bulk action."
9732 :group 'org-agenda
9733 :version "24.1"
9734 :type 'boolean)
9736 (defun org-agenda-bulk-action (&optional arg)
9737 "Execute an remote-editing action on all marked entries.
9738 The prefix arg is passed through to the command if possible."
9739 (interactive "P")
9740 ;; Make sure we have markers, and only valid ones
9741 (unless org-agenda-bulk-marked-entries (user-error "No entries are marked"))
9742 (mapc
9743 (lambda (m)
9744 (unless (and (markerp m)
9745 (marker-buffer m)
9746 (buffer-live-p (marker-buffer m))
9747 (marker-position m))
9748 (user-error "Marker %s for bulk command is invalid" m)))
9749 org-agenda-bulk-marked-entries)
9751 ;; Prompt for the bulk command
9752 (let* ((msg (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")))
9753 (message (concat msg "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
9754 "[S]catter [f]unction "
9755 (when org-agenda-bulk-custom-functions
9756 (concat " Custom: ["
9757 (mapconcat (lambda(f) (char-to-string (car f)))
9758 org-agenda-bulk-custom-functions "")
9759 "]"))))
9760 (catch 'exit
9761 (let* ((action (read-char-exclusive))
9762 (org-log-refile (if org-log-refile 'time nil))
9763 (entries (reverse org-agenda-bulk-marked-entries))
9764 (org-overriding-default-time
9765 (if (get-text-property (point) 'org-agenda-date-header)
9766 (org-get-cursor-date)))
9767 redo-at-end
9768 cmd rfloc state e tag pos (cnt 0) (cntskip 0))
9769 (cond
9770 ((equal action ?p)
9771 (let ((org-agenda-persistent-marks
9772 (not org-agenda-persistent-marks)))
9773 (org-agenda-bulk-action)
9774 (throw 'exit nil)))
9776 ((equal action ?$)
9777 (setq cmd '(org-agenda-archive)))
9779 ((equal action ?A)
9780 (setq cmd '(org-agenda-archive-to-archive-sibling)))
9782 ((member action '(?r ?w))
9783 (setq rfloc (org-refile-get-location
9784 "Refile to"
9785 (marker-buffer (car entries))
9786 org-refile-allow-creating-parent-nodes))
9787 (if (nth 3 rfloc)
9788 (setcar (nthcdr 3 rfloc)
9789 (move-marker (make-marker) (nth 3 rfloc)
9790 (or (get-file-buffer (nth 1 rfloc))
9791 (find-buffer-visiting (nth 1 rfloc))
9792 (error "This should not happen")))))
9794 (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
9795 redo-at-end t))
9797 ((equal action ?t)
9798 (setq state (org-icompleting-read
9799 "Todo state: "
9800 (with-current-buffer (marker-buffer (car entries))
9801 (mapcar 'list org-todo-keywords-1))))
9802 (setq cmd `(let ((org-inhibit-blocking t)
9803 (org-inhibit-logging 'note))
9804 (org-agenda-todo ,state))))
9806 ((memq action '(?- ?+))
9807 (setq tag (org-icompleting-read
9808 (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
9809 (with-current-buffer (marker-buffer (car entries))
9810 (delq nil
9811 (mapcar (lambda (x)
9812 (if (stringp (car x)) x)) org-tag-alist)))))
9813 (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
9815 ((memq action '(?s ?d))
9816 (let* ((time
9817 (unless arg
9818 (org-read-date
9819 nil nil nil
9820 (if (eq action ?s) "(Re)Schedule to" "(Re)Set Deadline to")
9821 org-overriding-default-time)))
9822 (c1 (if (eq action ?s) 'org-agenda-schedule 'org-agenda-deadline)))
9823 (setq cmd `(eval '(,c1 arg ,time)))))
9825 ((equal action ?S)
9826 (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
9827 (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
9828 (let ((days (read-number
9829 (format "Scatter tasks across how many %sdays: "
9830 (if arg "week" "")) 7)))
9831 (setq cmd
9832 `(let ((distance (1+ (random ,days))))
9833 (if arg
9834 (let ((dist distance)
9835 (day-of-week
9836 (calendar-day-of-week
9837 (calendar-gregorian-from-absolute (org-today)))))
9838 (dotimes (i (1+ dist))
9839 (while (member day-of-week org-agenda-weekend-days)
9840 (incf distance)
9841 (incf day-of-week)
9842 (if (= day-of-week 7)
9843 (setq day-of-week 0)))
9844 (incf day-of-week)
9845 (if (= day-of-week 7)
9846 (setq day-of-week 0)))))
9847 ;; silently fail when try to replan a sexp entry
9848 (condition-case nil
9849 (let* ((date (calendar-gregorian-from-absolute
9850 (+ (org-today) distance)))
9851 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
9852 (nth 2 date))))
9853 (org-agenda-schedule nil time))
9854 (error nil)))))))
9856 ((assoc action org-agenda-bulk-custom-functions)
9857 (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
9858 redo-at-end t))
9860 ((equal action ?f)
9861 (setq cmd (list (intern
9862 (org-icompleting-read "Function: "
9863 obarray 'fboundp t nil nil)))))
9865 (t (user-error "Invalid bulk action")))
9867 ;; Sort the markers, to make sure that parents are handled before children
9868 (setq entries (sort entries
9869 (lambda (a b)
9870 (cond
9871 ((equal (marker-buffer a) (marker-buffer b))
9872 (< (marker-position a) (marker-position b)))
9874 (string< (buffer-name (marker-buffer a))
9875 (buffer-name (marker-buffer b))))))))
9877 ;; Now loop over all markers and apply cmd
9878 (while (setq e (pop entries))
9879 (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
9880 (if (not pos)
9881 (progn (message "Skipping removed entry at %s" e)
9882 (setq cntskip (1+ cntskip)))
9883 (goto-char pos)
9884 (let (org-loop-over-headlines-in-active-region)
9885 (eval cmd))
9886 (setq cnt (1+ cnt))))
9887 (when redo-at-end (org-agenda-redo))
9888 (unless org-agenda-persistent-marks
9889 (org-agenda-bulk-unmark-all))
9890 (message "Acted on %d entries%s%s"
9892 (if (= cntskip 0)
9894 (format ", skipped %d (disappeared before their turn)"
9895 cntskip))
9896 (if (not org-agenda-persistent-marks)
9897 "" " (kept marked)"))))))
9899 (defun org-agenda-capture (&optional with-time)
9900 "Call `org-capture' with the date at point.
9901 With a `C-1' prefix, use the HH:MM value at point (if any) or the
9902 current HH:MM time."
9903 (interactive "P")
9904 (if (not (eq major-mode 'org-agenda-mode))
9905 (user-error "You cannot do this outside of agenda buffers")
9906 (let ((org-overriding-default-time
9907 (org-get-cursor-date (equal with-time 1))))
9908 (call-interactively 'org-capture))))
9910 ;;; Dragging agenda lines forward/backward
9912 (defun org-agenda-drag-line-forward (arg)
9913 "Drag an agenda line forward by ARG lines."
9914 (interactive "p")
9915 (let ((inhibit-read-only t) lst)
9916 (if (or (not (get-text-property (point) 'txt))
9917 (save-excursion
9918 (dotimes (n arg)
9919 (move-beginning-of-line 2)
9920 (push (not (get-text-property (point) 'txt)) lst))
9921 (delq nil lst)))
9922 (message "Cannot move line forward")
9923 (org-drag-line-forward arg))))
9925 (defun org-agenda-drag-line-backward (arg)
9926 "Drag an agenda line backward by ARG lines."
9927 (interactive "p")
9928 (let ((inhibit-read-only t) lst)
9929 (if (or (not (get-text-property (point) 'txt))
9930 (save-excursion
9931 (dotimes (n arg)
9932 (move-beginning-of-line 0)
9933 (push (not (get-text-property (point) 'txt)) lst))
9934 (delq nil lst)))
9935 (message "Cannot move line backward")
9936 (org-drag-line-backward arg))))
9938 ;;; Flagging notes
9940 (defun org-agenda-show-the-flagging-note ()
9941 "Display the flagging note in the other window.
9942 When called a second time in direct sequence, offer to remove the FLAGGING
9943 tag and (if present) the flagging note."
9944 (interactive)
9945 (let ((hdmarker (org-get-at-bol 'org-hd-marker))
9946 (win (selected-window))
9947 note heading newhead)
9948 (unless hdmarker
9949 (user-error "No linked entry at point"))
9950 (if (and (eq this-command last-command)
9951 (y-or-n-p "Unflag and remove any flagging note? "))
9952 (progn
9953 (org-agenda-remove-flag hdmarker)
9954 (let ((win (get-buffer-window "*Flagging Note*")))
9955 (and win (delete-window win)))
9956 (message "Entry unflagged"))
9957 (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
9958 (unless note
9959 (user-error "No flagging note"))
9960 (org-kill-new note)
9961 (org-switch-to-buffer-other-window "*Flagging Note*")
9962 (erase-buffer)
9963 (insert note)
9964 (goto-char (point-min))
9965 (while (re-search-forward "\\\\n" nil t)
9966 (replace-match "\n" t t))
9967 (goto-char (point-min))
9968 (select-window win)
9969 (message "Flagging note pushed to kill ring. Press [?] again to remove tag and note"))))
9971 (defun org-agenda-remove-flag (marker)
9972 "Remove the FLAGGED tag and any flagging note in the entry."
9973 (let (newhead)
9974 (org-with-point-at marker
9975 (org-toggle-tag "FLAGGED" 'off)
9976 (org-entry-delete nil "THEFLAGGINGNOTE")
9977 (setq newhead (org-get-heading)))
9978 (org-agenda-change-all-lines newhead marker)
9979 (message "Entry unflagged")))
9981 (defun org-agenda-get-any-marker (&optional pos)
9982 (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
9983 (get-text-property (or pos (point-at-bol)) 'org-marker)))
9985 ;;; Appointment reminders
9987 (defvar appt-time-msg-list) ; defined in appt.el
9989 ;;;###autoload
9990 (defun org-agenda-to-appt (&optional refresh filter &rest args)
9991 "Activate appointments found in `org-agenda-files'.
9992 With a \\[universal-argument] prefix, refresh the list of
9993 appointments.
9995 If FILTER is t, interactively prompt the user for a regular
9996 expression, and filter out entries that don't match it.
9998 If FILTER is a string, use this string as a regular expression
9999 for filtering entries out.
10001 If FILTER is a function, filter out entries against which
10002 calling the function returns nil. This function takes one
10003 argument: an entry from `org-agenda-get-day-entries'.
10005 FILTER can also be an alist with the car of each cell being
10006 either 'headline or 'category. For example:
10008 '((headline \"IMPORTANT\")
10009 (category \"Work\"))
10011 will only add headlines containing IMPORTANT or headlines
10012 belonging to the \"Work\" category.
10014 ARGS are symbols indicating what kind of entries to consider.
10015 By default `org-agenda-to-appt' will use :deadline*, :scheduled*
10016 \(i.e., deadlines and scheduled items with a hh:mm specification)
10017 and :timestamp entries. See the docstring of `org-diary' for
10018 details and examples.
10020 If an entry has a APPT_WARNTIME property, its value will be used
10021 to override `appt-message-warning-time'."
10022 (interactive "P")
10023 (if refresh (setq appt-time-msg-list nil))
10024 (if (eq filter t)
10025 (setq filter (read-from-minibuffer "Regexp filter: ")))
10026 (let* ((cnt 0) ; count added events
10027 (scope (or args '(:deadline* :scheduled* :timestamp)))
10028 (org-agenda-new-buffers nil)
10029 (org-deadline-warning-days 0)
10030 ;; Do not use `org-today' here because appt only takes
10031 ;; time and without date as argument, so it may pass wrong
10032 ;; information otherwise
10033 (today (org-date-to-gregorian
10034 (time-to-days (current-time))))
10035 (org-agenda-restrict nil)
10036 (files (org-agenda-files 'unrestricted)) entries file
10037 (org-agenda-buffer nil))
10038 ;; Get all entries which may contain an appt
10039 (org-agenda-prepare-buffers files)
10040 (while (setq file (pop files))
10041 (setq entries
10042 (delq nil
10043 (append entries
10044 (apply 'org-agenda-get-day-entries
10045 file today scope)))))
10046 ;; Map thru entries and find if we should filter them out
10047 (mapc
10048 (lambda(x)
10049 (let* ((evt (org-trim
10050 (replace-regexp-in-string
10051 org-bracket-link-regexp "\\3"
10052 (or (get-text-property 1 'txt x) ""))))
10053 (cat (get-text-property 1 'org-category x))
10054 (tod (get-text-property 1 'time-of-day x))
10055 (ok (or (null filter)
10056 (and (stringp filter) (string-match filter evt))
10057 (and (functionp filter) (funcall filter x))
10058 (and (listp filter)
10059 (let ((cat-filter (cadr (assoc 'category filter)))
10060 (evt-filter (cadr (assoc 'headline filter))))
10061 (or (and (stringp cat-filter)
10062 (string-match cat-filter cat))
10063 (and (stringp evt-filter)
10064 (string-match evt-filter evt)))))))
10065 (wrn (get-text-property 1 'warntime x)))
10066 ;; FIXME: Shall we remove text-properties for the appt text?
10067 ;; (setq evt (set-text-properties 0 (length evt) nil evt))
10068 (when (and ok tod)
10069 (setq tod (concat "00" (number-to-string tod))
10070 tod (when (string-match
10071 "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
10072 (concat (match-string 1 tod) ":"
10073 (match-string 2 tod))))
10074 (if (version< emacs-version "23.3")
10075 (appt-add tod evt)
10076 (appt-add tod evt wrn))
10077 (setq cnt (1+ cnt))))) entries)
10078 (org-release-buffers org-agenda-new-buffers)
10079 (if (eq cnt 0)
10080 (message "No event to add")
10081 (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
10083 (defun org-agenda-todayp (date)
10084 "Does DATE mean today, when considering `org-extend-today-until'?"
10085 (let ((today (org-today))
10086 (date (if (and date (listp date)) (calendar-absolute-from-gregorian date)
10087 date)))
10088 (eq date today)))
10090 (defun org-agenda-todo-yesterday (&optional arg)
10091 "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
10092 (interactive "P")
10093 (let* ((hour (third (decode-time
10094 (org-current-time))))
10095 (org-extend-today-until (1+ hour)))
10096 (org-agenda-todo arg)))
10098 (provide 'org-agenda)
10100 ;;; org-agenda.el ends here