Merge branch 'master' of orgmode.org:org-mode
[org-mode.git] / lisp / org-agenda.el
blob3523770c33e577f4ff92396a41209da9d131a28b
1 ;;; org-agenda.el --- Dynamic task and appointment lists for Org
3 ;; Copyright (C) 2004-2011 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 conveniant 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 (eval-when-compile
50 (require 'cl))
52 (declare-function diary-add-to-list "diary-lib"
53 (date string specifier &optional marker globcolor literal))
54 (declare-function calendar-absolute-from-iso "cal-iso" (date))
55 (declare-function calendar-astro-date-string "cal-julian" (&optional date))
56 (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
57 (declare-function calendar-chinese-date-string "cal-china" (&optional date))
58 (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
59 (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
60 (declare-function calendar-french-date-string "cal-french" (&optional date))
61 (declare-function calendar-goto-date "cal-move" (date))
62 (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
63 (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
64 (declare-function calendar-iso-date-string "cal-iso" (&optional date))
65 (declare-function calendar-iso-from-absolute "cal-iso" (date))
66 (declare-function calendar-julian-date-string "cal-julian" (&optional date))
67 (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
68 (declare-function calendar-persian-date-string "cal-persia" (&optional date))
69 (declare-function org-datetree-find-date-create "org-datetree"
70 (date &optional keep-restriction))
71 (declare-function org-columns-quit "org-colview" ())
72 (declare-function diary-date-display-form "diary-lib" (&optional type))
73 (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
74 (declare-function org-habit-insert-consistency-graphs
75 "org-habit" (&optional line))
76 (declare-function org-is-habit-p "org-habit" (&optional pom))
77 (declare-function org-habit-parse-todo "org-habit" (&optional pom))
78 (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
79 (declare-function org-pop-to-buffer-same-window "org-compat"
80 (&optional buffer-or-name norecord label))
82 (defvar calendar-mode-map)
83 (defvar org-clock-current-task) ; defined in org-clock.el
84 (defvar org-mobile-force-id-on-agenda-items) ; defined in org-mobile.el
85 (defvar org-habit-show-habits)
86 (defvar org-habit-show-habits-only-for-today)
88 ;; Defined somewhere in this file, but used before definition.
89 (defvar org-agenda-buffer-name)
90 (defvar org-agenda-overriding-header)
91 (defvar org-agenda-title-append nil)
92 (defvar entry)
93 (defvar date)
94 (defvar org-agenda-undo-list)
95 (defvar org-agenda-pending-undo-list)
96 (defvar original-date) ; dynamically scoped, calendar.el does scope this
98 (defcustom org-agenda-confirm-kill 1
99 "When set, remote killing from the agenda buffer needs confirmation.
100 When t, a confirmation is always needed. When a number N, confirmation is
101 only needed when the text to be killed contains more than N non-white lines."
102 :group 'org-agenda
103 :type '(choice
104 (const :tag "Never" nil)
105 (const :tag "Always" t)
106 (integer :tag "When more than N lines")))
108 (defcustom org-agenda-compact-blocks nil
109 "Non-nil means make the block agenda more compact.
110 This is done globally by leaving out lines like the agenda span
111 name and week number or the separator lines."
112 :group 'org-agenda
113 :type 'boolean)
115 (defcustom org-agenda-block-separator ?=
116 "The separator between blocks in the agenda.
117 If this is a string, it will be used as the separator, with a newline added.
118 If it is a character, it will be repeated to fill the window width.
119 If nil the separator is disabled. In `org-agenda-custom-commands' this
120 addresses the separator between the current and the previous block."
121 :group 'org-agenda
122 :type '(choice
123 (const :tag "Disabled" nil)
124 (character)
125 (string)))
127 (defgroup org-agenda-export nil
128 "Options concerning exporting agenda views in Org-mode."
129 :tag "Org Agenda Export"
130 :group 'org-agenda)
132 (defcustom org-agenda-with-colors t
133 "Non-nil means use colors in agenda views."
134 :group 'org-agenda-export
135 :type 'boolean)
137 (defcustom org-agenda-exporter-settings nil
138 "Alist of variable/value pairs that should be active during agenda export.
139 This is a good place to set options for ps-print and for htmlize.
140 Note that the way this is implemented, the values will be evaluated
141 before assigned to the variables. So make sure to quote values you do
142 *not* want evaluated, for example
144 (setq org-agenda-exporter-settings
145 '((ps-print-color-p 'black-white)))"
146 :group 'org-agenda-export
147 :type '(repeat
148 (list
149 (variable)
150 (sexp :tag "Value"))))
152 (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
153 "Hook run in temporary buffer before writing it to an export file.
154 A useful function is `org-agenda-add-entry-text'."
155 :group 'org-agenda-export
156 :type 'hook
157 :options '(org-agenda-add-entry-text))
159 (defcustom org-agenda-add-entry-text-maxlines 0
160 "Maximum number of entry text lines to be added to agenda.
161 This is only relevant when `org-agenda-add-entry-text' is part of
162 `org-agenda-before-write-hook', which it is by default.
163 When this is 0, nothing will happen. When it is greater than 0, it
164 specifies the maximum number of lines that will be added for each entry
165 that is listed in the agenda view.
167 Note that this variable is not used during display, only when exporting
168 the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
169 and `org-agenda-entry-text-maxlines'."
170 :group 'org-agenda
171 :type 'integer)
173 (defcustom org-agenda-add-entry-text-descriptive-links t
174 "Non-nil means export org-links as descriptive links in agenda added text.
175 This variable applies to the text added to the agenda when
176 `org-agenda-add-entry-text-maxlines' is larger than 0.
177 When this variable nil, the URL will (also) be shown."
178 :group 'org-agenda
179 :type 'boolean)
181 (defcustom org-agenda-export-html-style ""
182 "The style specification for exported HTML Agenda files.
183 If this variable contains a string, it will replace the default <style>
184 section as produced by `htmlize'.
185 Since there are different ways of setting style information, this variable
186 needs to contain the full HTML structure to provide a style, including the
187 surrounding HTML tags. The style specifications should include definitions
188 the fonts used by the agenda, here is an example:
190 <style type=\"text/css\">
191 p { font-weight: normal; color: gray; }
192 .org-agenda-structure {
193 font-size: 110%;
194 color: #003399;
195 font-weight: 600;
197 .org-todo {
198 color: #cc6666;
199 font-weight: bold;
201 .org-agenda-done {
202 color: #339933;
204 .org-done {
205 color: #339933;
207 .title { text-align: center; }
208 .todo, .deadline { color: red; }
209 .done { color: green; }
210 </style>
212 or, if you want to keep the style in a file,
214 <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
216 As the value of this option simply gets inserted into the HTML <head> header,
217 you can \"misuse\" it to also add other text to the header. However,
218 <style>...</style> is required, if not present the variable will be ignored."
219 :group 'org-agenda-export
220 :group 'org-export-html
221 :type 'string)
223 (defcustom org-agenda-persistent-filter nil
224 "When set, keep filters from one agenda view to the next."
225 :group 'org-agenda
226 :type 'boolean)
228 (defgroup org-agenda-custom-commands nil
229 "Options concerning agenda views in Org-mode."
230 :tag "Org Agenda Custom Commands"
231 :group 'org-agenda)
233 (defconst org-sorting-choice
234 '(choice
235 (const time-up) (const time-down)
236 (const category-keep) (const category-up) (const category-down)
237 (const tag-down) (const tag-up)
238 (const priority-up) (const priority-down)
239 (const todo-state-up) (const todo-state-down)
240 (const effort-up) (const effort-down)
241 (const habit-up) (const habit-down)
242 (const alpha-up) (const alpha-down)
243 (const user-defined-up) (const user-defined-down))
244 "Sorting choices.")
246 (defconst org-agenda-custom-commands-local-options
247 `(repeat :tag "Local settings for this command. Remember to quote values"
248 (choice :tag "Setting"
249 (list :tag "Heading for this block"
250 (const org-agenda-overriding-header)
251 (string :tag "Headline"))
252 (list :tag "Files to be searched"
253 (const org-agenda-files)
254 (list
255 (const :format "" quote)
256 (repeat (file))))
257 (list :tag "Sorting strategy"
258 (const org-agenda-sorting-strategy)
259 (list
260 (const :format "" quote)
261 (repeat
262 ,org-sorting-choice)))
263 (list :tag "Prefix format"
264 (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
265 (string))
266 (list :tag "Number of days in agenda"
267 (const org-agenda-span)
268 (choice (const :tag "Day" 'day)
269 (const :tag "Week" 'week)
270 (const :tag "Month" 'month)
271 (const :tag "Year" 'year)
272 (integer :tag "Custom")))
273 (list :tag "Fixed starting date"
274 (const org-agenda-start-day)
275 (string :value "2007-11-01"))
276 (list :tag "Start on day of week"
277 (const org-agenda-start-on-weekday)
278 (choice :value 1
279 (const :tag "Today" nil)
280 (integer :tag "Weekday No.")))
281 (list :tag "Include data from diary"
282 (const org-agenda-include-diary)
283 (boolean))
284 (list :tag "Deadline Warning days"
285 (const org-deadline-warning-days)
286 (integer :value 1))
287 (list :tag "Tags filter preset"
288 (const org-agenda-filter-preset)
289 (list
290 (const :format "" quote)
291 (repeat
292 (string :tag "+tag or -tag"))))
293 (list :tag "Set daily/weekly entry types"
294 (const org-agenda-entry-types)
295 (set :greedy t :value (:deadline :scheduled :timestamp :sexp)
296 (const :deadline)
297 (const :scheduled)
298 (const :timestamp)
299 (const :sexp)))
300 (list :tag "Standard skipping condition"
301 :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
302 (const org-agenda-skip-function)
303 (list
304 (const :format "" quote)
305 (list
306 (choice
307 :tag "Skipping range"
308 (const :tag "Skip entry" org-agenda-skip-entry-if)
309 (const :tag "Skip subtree" org-agenda-skip-subtree-if))
310 (repeat :inline t :tag "Conditions for skipping"
311 (choice
312 :tag "Condition type"
313 (list :tag "Regexp matches" :inline t (const :format "" 'regexp) (regexp))
314 (list :tag "Regexp does not match" :inline t (const :format "" 'notregexp) (regexp))
315 (list :tag "TODO state is" :inline t
316 (const 'todo)
317 (choice
318 (const :tag "any not-done state" 'todo)
319 (const :tag "any done state" 'done)
320 (const :tag "any state" 'any)
321 (list :tag "Keyword list"
322 (const :format "" quote)
323 (repeat (string :tag "Keyword")))))
324 (list :tag "TODO state is not" :inline t
325 (const 'nottodo)
326 (choice
327 (const :tag "any not-done state" 'todo)
328 (const :tag "any done state" 'done)
329 (const :tag "any state" 'any)
330 (list :tag "Keyword list"
331 (const :format "" quote)
332 (repeat (string :tag "Keyword")))))
333 (const :tag "scheduled" 'scheduled)
334 (const :tag "not scheduled" 'notscheduled)
335 (const :tag "deadline" 'deadline)
336 (const :tag "no deadline" 'notdeadline)
337 (const :tag "timestamp" 'timestamp)
338 (const :tag "no timestamp" 'nottimestamp))))))
339 (list :tag "Non-standard skipping condition"
340 :value (org-agenda-skip-function)
341 (const org-agenda-skip-function)
342 (sexp :tag "Function or form (quoted!)"))
343 (list :tag "Any variable"
344 (variable :tag "Variable")
345 (sexp :tag "Value (sexp)"))))
346 "Selection of examples for agenda command settings.
347 This will be spliced into the custom type of
348 `org-agenda-custom-commands'.")
351 (defcustom org-agenda-custom-commands '(("n" "Agenda and all TODO's"
352 ((agenda "") (alltodo))))
353 "Custom commands for the agenda.
354 These commands will be offered on the splash screen displayed by the
355 agenda dispatcher \\[org-agenda]. Each entry is a list like this:
357 (key desc type match settings files)
359 key The key (one or more characters as a string) to be associated
360 with the command.
361 desc A description of the command, when omitted or nil, a default
362 description is built using MATCH.
363 type The command type, any of the following symbols:
364 agenda The daily/weekly agenda.
365 todo Entries with a specific TODO keyword, in all agenda files.
366 search Entries containing search words entry or headline.
367 tags Tags/Property/TODO match in all agenda files.
368 tags-todo Tags/P/T match in all agenda files, TODO entries only.
369 todo-tree Sparse tree of specific TODO keyword in *current* file.
370 tags-tree Sparse tree with all tags matches in *current* file.
371 occur-tree Occur sparse tree for *current* file.
372 ... A user-defined function.
373 match What to search for:
374 - a single keyword for TODO keyword searches
375 - a tags match expression for tags searches
376 - a word search expression for text searches.
377 - a regular expression for occur searches
378 For all other commands, this should be the empty string.
379 settings A list of option settings, similar to that in a let form, so like
380 this: ((opt1 val1) (opt2 val2) ...). The values will be
381 evaluated at the moment of execution, so quote them when needed.
382 files A list of files file to write the produced agenda buffer to
383 with the command `org-store-agenda-views'.
384 If a file name ends in \".html\", an HTML version of the buffer
385 is written out. If it ends in \".ps\", a postscript version is
386 produced. Otherwise, only the plain text is written to the file.
388 You can also define a set of commands, to create a composite agenda buffer.
389 In this case, an entry looks like this:
391 (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
393 where
395 desc A description string to be displayed in the dispatcher menu.
396 cmd An agenda command, similar to the above. However, tree commands
397 are no allowed, but instead you can get agenda and global todo list.
398 So valid commands for a set are:
399 (agenda \"\" settings)
400 (alltodo \"\" settings)
401 (stuck \"\" settings)
402 (todo \"match\" settings files)
403 (search \"match\" settings files)
404 (tags \"match\" settings files)
405 (tags-todo \"match\" settings files)
407 Each command can carry a list of options, and another set of options can be
408 given for the whole set of commands. Individual command options take
409 precedence over the general options.
411 When using several characters as key to a command, the first characters
412 are prefix commands. For the dispatcher to display useful information, you
413 should provide a description for the prefix, like
415 (setq org-agenda-custom-commands
416 '((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
417 (\"hl\" tags \"+HOME+Lisa\")
418 (\"hp\" tags \"+HOME+Peter\")
419 (\"hk\" tags \"+HOME+Kim\")))"
420 :group 'org-agenda-custom-commands
421 :type `(repeat
422 (choice :value ("x" "Describe command here" tags "" nil)
423 (list :tag "Single command"
424 (string :tag "Access Key(s) ")
425 (option (string :tag "Description"))
426 (choice
427 (const :tag "Agenda" agenda)
428 (const :tag "TODO list" alltodo)
429 (const :tag "Search words" search)
430 (const :tag "Stuck projects" stuck)
431 (const :tag "Tags/Property match (all agenda files)" tags)
432 (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
433 (const :tag "TODO keyword search (all agenda files)" todo)
434 (const :tag "Tags sparse tree (current buffer)" tags-tree)
435 (const :tag "TODO keyword tree (current buffer)" todo-tree)
436 (const :tag "Occur tree (current buffer)" occur-tree)
437 (sexp :tag "Other, user-defined function"))
438 (string :tag "Match (only for some commands)")
439 ,org-agenda-custom-commands-local-options
440 (option (repeat :tag "Export" (file :tag "Export to"))))
441 (list :tag "Command series, all agenda files"
442 (string :tag "Access Key(s)")
443 (string :tag "Description ")
444 (repeat :tag "Component"
445 (choice
446 (list :tag "Agenda"
447 (const :format "" agenda)
448 (const :tag "" :format "" "")
449 ,org-agenda-custom-commands-local-options)
450 (list :tag "TODO list (all keywords)"
451 (const :format "" alltodo)
452 (const :tag "" :format "" "")
453 ,org-agenda-custom-commands-local-options)
454 (list :tag "Search words"
455 (const :format "" search)
456 (string :tag "Match")
457 ,org-agenda-custom-commands-local-options)
458 (list :tag "Stuck projects"
459 (const :format "" stuck)
460 (const :tag "" :format "" "")
461 ,org-agenda-custom-commands-local-options)
462 (list :tag "Tags search"
463 (const :format "" tags)
464 (string :tag "Match")
465 ,org-agenda-custom-commands-local-options)
466 (list :tag "Tags search, TODO entries only"
467 (const :format "" tags-todo)
468 (string :tag "Match")
469 ,org-agenda-custom-commands-local-options)
470 (list :tag "TODO keyword search"
471 (const :format "" todo)
472 (string :tag "Match")
473 ,org-agenda-custom-commands-local-options)
474 (list :tag "Other, user-defined function"
475 (symbol :tag "function")
476 (string :tag "Match")
477 ,org-agenda-custom-commands-local-options)))
479 (repeat :tag "Settings for entire command set"
480 (list (variable :tag "Any variable")
481 (sexp :tag "Value")))
482 (option (repeat :tag "Export" (file :tag "Export to"))))
483 (cons :tag "Prefix key documentation"
484 (string :tag "Access Key(s)")
485 (string :tag "Description ")))))
487 (defcustom org-agenda-query-register ?o
488 "The register holding the current query string.
489 The purpose of this is that if you construct a query string interactively,
490 you can then use it to define a custom command."
491 :group 'org-agenda-custom-commands
492 :type 'character)
494 (defcustom org-stuck-projects
495 '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
496 "How to identify stuck projects.
497 This is a list of four items:
498 1. A tags/todo/property matcher string that is used to identify a project.
499 See the manual for a description of tag and property searches.
500 The entire tree below a headline matched by this is considered one project.
501 2. A list of TODO keywords identifying non-stuck projects.
502 If the project subtree contains any headline with one of these todo
503 keywords, the project is considered to be not stuck. If you specify
504 \"*\" as a keyword, any TODO keyword will mark the project unstuck.
505 3. A list of tags identifying non-stuck projects.
506 If the project subtree contains any headline with one of these tags,
507 the project is considered to be not stuck. If you specify \"*\" as
508 a tag, any tag will mark the project unstuck. Note that this is about
509 the explicit presence of a tag somewhere in the subtree, inherited
510 tags to not count here. If inherited tags make a project not stuck,
511 use \"-TAG\" in the tags part of the matcher under (1.) above.
512 4. An arbitrary regular expression matching non-stuck projects.
514 If the project turns out to be not stuck, search continues also in the
515 subtree to see if any of the subtasks have project status.
517 See also the variable `org-tags-match-list-sublevels' which applies
518 to projects matched by this search as well.
520 After defining this variable, you may use \\[org-agenda-list-stuck-projects]
521 or `C-c a #' to produce the list."
522 :group 'org-agenda-custom-commands
523 :type '(list
524 (string :tag "Tags/TODO match to identify a project")
525 (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
526 (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
527 (regexp :tag "Projects are *not* stuck if this regexp matches inside the subtree")))
529 (defcustom org-agenda-filter-effort-default-operator "<"
530 "The default operator for effort estimate filtering.
531 If you select an effort estimate limit without first pressing an operator,
532 this one will be used."
533 :group 'org-agenda-custom-commands
534 :type '(choice (const :tag "less or equal" "<")
535 (const :tag "greater or equal"">")
536 (const :tag "equal" "=")))
538 (defgroup org-agenda-skip nil
539 "Options concerning skipping parts of agenda files."
540 :tag "Org Agenda Skip"
541 :group 'org-agenda)
543 (defcustom org-agenda-skip-function-global nil
544 "Function to be called at each match during agenda construction.
545 If this function returns nil, the current match should not be skipped.
546 If the function decided to skip an agenda match, is must return the
547 buffer position from which the search should be continued.
548 This may also be a Lisp form, which will be evaluated.
550 This variable will be applied to every agenda match, including
551 tags/property searches and TODO lists. So try to make the test function
552 do its checking as efficiently as possible. To implement a skipping
553 condition just for specific agenda commands, use the variable
554 `org-agenda-skip-function' which can be set in the options section
555 of custom agenda commands."
556 :group 'org-agenda-skip
557 :type 'sexp)
559 (defgroup org-agenda-daily/weekly nil
560 "Options concerning the daily/weekly agenda."
561 :tag "Org Agenda Daily/Weekly"
562 :group 'org-agenda)
563 (defgroup org-agenda-todo-list nil
564 "Options concerning the global todo list agenda view."
565 :tag "Org Agenda Todo List"
566 :group 'org-agenda)
567 (defgroup org-agenda-match-view nil
568 "Options concerning the general tags/property/todo match agenda view."
569 :tag "Org Agenda Match View"
570 :group 'org-agenda)
571 (defgroup org-agenda-search-view nil
572 "Options concerning the general tags/property/todo match agenda view."
573 :tag "Org Agenda Match View"
574 :group 'org-agenda)
576 (defvar org-agenda-archives-mode nil
577 "Non-nil means the agenda will include archived items.
578 If this is the symbol `trees', trees in the selected agenda scope
579 that are marked with the ARCHIVE tag will be included anyway. When this is
580 t, also all archive files associated with the current selection of agenda
581 files will be included.")
583 (defcustom org-agenda-skip-comment-trees t
584 "Non-nil means skip trees that start with the COMMENT keyword.
585 When nil, these trees are also scanned by agenda commands."
586 :group 'org-agenda-skip
587 :type 'boolean)
589 (defcustom org-agenda-todo-list-sublevels t
590 "Non-nil means check also the sublevels of a TODO entry for TODO entries.
591 When nil, the sublevels of a TODO entry are not checked, resulting in
592 potentially much shorter TODO lists."
593 :group 'org-agenda-skip
594 :group 'org-agenda-todo-list
595 :type 'boolean)
597 (defcustom org-agenda-todo-ignore-with-date nil
598 "Non-nil means don't show entries with a date in the global todo list.
599 You can use this if you prefer to mark mere appointments with a TODO keyword,
600 but don't want them to show up in the TODO list.
601 When this is set, it also covers deadlines and scheduled items, the settings
602 of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
603 will be ignored.
604 See also the variable `org-agenda-tags-todo-honor-ignore-options'."
605 :group 'org-agenda-skip
606 :group 'org-agenda-todo-list
607 :type 'boolean)
609 (defcustom org-agenda-todo-ignore-timestamp nil
610 "Non-nil means don't show entries with a timestamp.
611 This applies when creating the global todo list.
612 Valid values are:
614 past Don't show entries for today or in the past.
616 future Don't show entries with a timestamp in the future.
617 The idea behind this is that if it has a future
618 timestamp, you don't want to think about it until the
619 date.
621 all Don't show any entries with a timestamp in the global todo list.
622 The idea behind this is that by setting a timestamp, you
623 have already \"taken care\" of this item.
625 This variable can also have an integer as a value. If positive (N),
626 todos with a timestamp N or more days in the future will be ignored. If
627 negative (-N), todos with a timestamp N or more days in the past will be
628 ignored. If 0, todos with a timestamp either today or in the future will
629 be ignored. For example, a value of -1 will exclude todos with a
630 timestamp in the past (yesterday or earlier), while a value of 7 will
631 exclude todos with a timestamp a week or more in the future.
633 See also `org-agenda-todo-ignore-with-date'.
634 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
635 to make his option also apply to the tags-todo list."
636 :group 'org-agenda-skip
637 :group 'org-agenda-todo-list
638 :type '(choice
639 (const :tag "Ignore future timestamp todos" future)
640 (const :tag "Ignore past or present timestamp todos" past)
641 (const :tag "Ignore all timestamp todos" all)
642 (const :tag "Show timestamp todos" nil)
643 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
645 (defcustom org-agenda-todo-ignore-scheduled nil
646 "Non-nil means, ignore some scheduled TODO items when making TODO list.
647 This applies when creating the global todo list.
648 Valid values are:
650 past Don't show entries scheduled today or in the past.
652 future Don't show entries scheduled in the future.
653 The idea behind this is that by scheduling it, you don't want to
654 think about it until the scheduled date.
656 all Don't show any scheduled entries in the global todo list.
657 The idea behind this is that by scheduling it, you have already
658 \"taken care\" of this item.
660 t Same as `all', for backward compatibility.
662 This variable can also have an integer as a value. See
663 `org-agenda-todo-ignore-timestamp' for more details.
665 See also `org-agenda-todo-ignore-with-date'.
666 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
667 to make his option also apply to the tags-todo list."
668 :group 'org-agenda-skip
669 :group 'org-agenda-todo-list
670 :type '(choice
671 (const :tag "Ignore future-scheduled todos" future)
672 (const :tag "Ignore past- or present-scheduled todos" past)
673 (const :tag "Ignore all scheduled todos" all)
674 (const :tag "Ignore all scheduled todos (compatibility)" t)
675 (const :tag "Show scheduled todos" nil)
676 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
678 (defcustom org-agenda-todo-ignore-deadlines nil
679 "Non-nil means ignore some deadlined TODO items when making TODO list.
680 There are different motivations for using different values, please think
681 carefully when configuring this variable.
683 This applies when creating the global todo list.
684 Valid values are:
686 near Don't show near deadline entries. A deadline is near when it is
687 closer than `org-deadline-warning-days' days. The idea behind this
688 is that such items will appear in the agenda anyway.
690 far Don't show TODO entries where a deadline has been defined, but
691 the deadline is not near. This is useful if you don't want to
692 use the todo list to figure out what to do now.
694 past Don't show entries with a deadline timestamp for today or in the past.
696 future Don't show entries with a deadline timestamp in the future, not even
697 when they become `near' ones. Use it with caution.
699 all Ignore all TODO entries that do have a deadline.
701 t Same as `near', for backward compatibility.
703 This variable can also have an integer as a value. See
704 `org-agenda-todo-ignore-timestamp' for more details.
706 See also `org-agenda-todo-ignore-with-date'.
707 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
708 to make his option also apply to the tags-todo list."
709 :group 'org-agenda-skip
710 :group 'org-agenda-todo-list
711 :type '(choice
712 (const :tag "Ignore near deadlines" near)
713 (const :tag "Ignore near deadlines (compatibility)" t)
714 (const :tag "Ignore far deadlines" far)
715 (const :tag "Ignore all TODOs with a deadlines" all)
716 (const :tag "Show all TODOs, even if they have a deadline" nil)
717 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
719 (defcustom org-agenda-tags-todo-honor-ignore-options nil
720 "Non-nil means honor todo-list ...ignore options also in tags-todo search.
721 The variables
722 `org-agenda-todo-ignore-with-date',
723 `org-agenda-todo-ignore-timestamp',
724 `org-agenda-todo-ignore-scheduled',
725 `org-agenda-todo-ignore-deadlines'
726 make the global TODO list skip entries that have time stamps of certain
727 kinds. If this option is set, the same options will also apply for the
728 tags-todo search, which is the general tags/property matcher
729 restricted to unfinished TODO entries only."
730 :group 'org-agenda-skip
731 :group 'org-agenda-todo-list
732 :group 'org-agenda-match-view
733 :type 'boolean)
735 (defcustom org-agenda-skip-scheduled-if-done nil
736 "Non-nil means don't show scheduled items in agenda when they are done.
737 This is relevant for the daily/weekly agenda, not for the TODO list. And
738 it applies only to the actual date of the scheduling. Warnings about
739 an item with a past scheduling dates are always turned off when the item
740 is DONE."
741 :group 'org-agenda-skip
742 :group 'org-agenda-daily/weekly
743 :type 'boolean)
745 (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
746 "Non-nil means skip scheduling line if same entry shows because of deadline.
747 In the agenda of today, an entry can show up multiple times because
748 it is both scheduled and has a nearby deadline, and maybe a plain time
749 stamp as well.
750 When this variable is t, then only the deadline is shown and the fact that
751 the entry is scheduled today or was scheduled previously is not shown.
752 When this variable is nil, the entry will be shown several times. When
753 the variable is the symbol `not-today', then skip scheduled previously,
754 but not scheduled today."
755 :group 'org-agenda-skip
756 :group 'org-agenda-daily/weekly
757 :type '(choice
758 (const :tag "Never" nil)
759 (const :tag "Always" t)
760 (const :tag "Not when scheduled today" not-today)))
762 (defcustom org-agenda-skip-deadline-if-done nil
763 "Non-nil means don't show deadlines when the corresponding item is done.
764 When nil, the deadline is still shown and should give you a happy feeling.
765 This is relevant for the daily/weekly agenda. And it applied only to the
766 actually date of the deadline. Warnings about approaching and past-due
767 deadlines are always turned off when the item is DONE."
768 :group 'org-agenda-skip
769 :group 'org-agenda-daily/weekly
770 :type 'boolean)
772 (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
773 "Non-nil means skip deadline prewarning when entry is also scheduled.
774 This will apply on all days where a prewarning for the deadline would
775 be shown, but not at the day when the entry is actually due. On that day,
776 the deadline will be shown anyway.
777 This variable may be set to nil, t, or a number which will then give
778 the number of days before the actual deadline when the prewarnings
779 should resume.
780 This can be used in a workflow where the first showing of the deadline will
781 trigger you to schedule it, and then you don't want to be reminded of it
782 because you will take care of it on the day when scheduled."
783 :group 'org-agenda-skip
784 :group 'org-agenda-daily/weekly
785 :type '(choice
786 (const :tag "Alwas show prewarning" nil)
787 (const :tag "Remove prewarning if entry is scheduled" t)
788 (integer :tag "Restart prewarning N days before deadline")))
790 (defcustom org-agenda-skip-additional-timestamps-same-entry nil
791 "When nil, multiple same-day timestamps in entry make multiple agenda lines.
792 When non-nil, after the search for timestamps has matched once in an
793 entry, the rest of the entry will not be searched."
794 :group 'org-agenda-skip
795 :type 'boolean)
797 (defcustom org-agenda-skip-timestamp-if-done nil
798 "Non-nil means don't select item by timestamp or -range if it is DONE."
799 :group 'org-agenda-skip
800 :group 'org-agenda-daily/weekly
801 :type 'boolean)
803 (defcustom org-agenda-dim-blocked-tasks t
804 "Non-nil means dim blocked tasks in the agenda display.
805 This causes some overhead during agenda construction, but if you
806 have turned on `org-enforce-todo-dependencies',
807 `org-enforce-todo-checkbox-dependencies', or any other blocking
808 mechanism, this will create useful feedback in the agenda.
810 Instead of t, this variable can also have the value `invisible'.
811 Then blocked tasks will be invisible and only become visible when
812 they become unblocked. An exemption to this behavior is when a task is
813 blocked because of unchecked checkboxes below it. Since checkboxes do
814 not show up in the agenda views, making this task invisible you remove any
815 trace from agenda views that there is something to do. Therefore, a task
816 that is blocked because of checkboxes will never be made invisible, it
817 will only be dimmed."
818 :group 'org-agenda-daily/weekly
819 :group 'org-agenda-todo-list
820 :type '(choice
821 (const :tag "Do not dim" nil)
822 (const :tag "Dim to a grey face" t)
823 (const :tag "Make invisible" invisible)))
825 (defcustom org-timeline-show-empty-dates 3
826 "Non-nil means `org-timeline' also shows dates without an entry.
827 When nil, only the days which actually have entries are shown.
828 When t, all days between the first and the last date are shown.
829 When an integer, show also empty dates, but if there is a gap of more than
830 N days, just insert a special line indicating the size of the gap."
831 :group 'org-agenda-skip
832 :type '(choice
833 (const :tag "None" nil)
834 (const :tag "All" t)
835 (integer :tag "at most")))
837 (defgroup org-agenda-startup nil
838 "Options concerning initial settings in the Agenda in Org Mode."
839 :tag "Org Agenda Startup"
840 :group 'org-agenda)
842 (defcustom org-agenda-menu-show-matcher t
843 "Non-nil means show the match string in the agenda dispatcher menu.
844 When nil, the matcher string is not shown, but is put into the help-echo
845 property so than moving the mouse over the command shows it.
846 Setting it to nil is good if matcher strings are very long and/or if
847 you want to use two-column display (see `org-agenda-menu-two-column')."
848 :group 'org-agenda
849 :type 'boolean)
851 (defcustom org-agenda-menu-two-column nil
852 "Non-nil means, use two columns to show custom commands in the dispatcher.
853 If you use this, you probably want to set `org-agenda-menu-show-matcher'
854 to nil."
855 :group 'org-agenda
856 :type 'boolean)
858 (defcustom org-finalize-agenda-hook nil
859 "Hook run just before displaying an agenda buffer."
860 :group 'org-agenda-startup
861 :type 'hook)
863 (defcustom org-agenda-mouse-1-follows-link nil
864 "Non-nil means mouse-1 on a link will follow the link in the agenda.
865 A longer mouse click will still set point. Does not work on XEmacs.
866 Needs to be set before org.el is loaded."
867 :group 'org-agenda-startup
868 :type 'boolean)
870 (defcustom org-agenda-start-with-follow-mode nil
871 "The initial value of follow mode in a newly created agenda window."
872 :group 'org-agenda-startup
873 :type 'boolean)
875 (defcustom org-agenda-follow-indirect nil
876 "Non-nil means `org-agenda-follow-mode' displays only the
877 current item's tree, in an indirect buffer."
878 :group 'org-agenda
879 :type 'boolean)
881 (defcustom org-agenda-show-outline-path t
882 "Non-nil means show outline path in echo area after line motion."
883 :group 'org-agenda-startup
884 :type 'boolean)
886 (defcustom org-agenda-start-with-entry-text-mode nil
887 "The initial value of entry-text-mode in a newly created agenda window."
888 :group 'org-agenda-startup
889 :type 'boolean)
891 (defcustom org-agenda-entry-text-maxlines 5
892 "Number of text lines to be added when `E' is pressed in the agenda.
894 Note that this variable only used during agenda display. Add add entry text
895 when exporting the agenda, configure the variable
896 `org-agenda-add-entry-ext-maxlines'."
897 :group 'org-agenda
898 :type 'integer)
900 (defcustom org-agenda-entry-text-exclude-regexps nil
901 "List of regular expressions to clean up entry text.
902 The complete matches of all regular expressions in this list will be
903 removed from entry text before it is shown in the agenda."
904 :group 'org-agenda
905 :type '(repeat (regexp)))
907 (defvar org-agenda-entry-text-cleanup-hook nil
908 "Hook that is run after basic cleanup of entry text to be shown in agenda.
909 This cleanup is done in a temporary buffer, so the function may inspect and
910 change the entire buffer.
911 Some default stuff like drawers and scheduling/deadline dates will already
912 have been removed when this is called, as will any matches for regular
913 expressions listed in `org-agenda-entry-text-exclude-regexps'.")
915 (defvar org-agenda-include-inactive-timestamps nil
916 "Non-nil means include inactive time stamps in agenda and timeline.")
918 (defgroup org-agenda-windows nil
919 "Options concerning the windows used by the Agenda in Org Mode."
920 :tag "Org Agenda Windows"
921 :group 'org-agenda)
923 (defcustom org-agenda-window-setup 'reorganize-frame
924 "How the agenda buffer should be displayed.
925 Possible values for this option are:
927 current-window Show agenda in the current window, keeping all other windows.
928 other-window Use `switch-to-buffer-other-window' to display agenda.
929 reorganize-frame Show only two windows on the current frame, the current
930 window and the agenda.
931 other-frame Use `switch-to-buffer-other-frame' to display agenda.
932 Also, when exiting the agenda, kill that frame.
933 See also the variable `org-agenda-restore-windows-after-quit'."
934 :group 'org-agenda-windows
935 :type '(choice
936 (const current-window)
937 (const other-frame)
938 (const other-window)
939 (const reorganize-frame)))
941 (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
942 "The min and max height of the agenda window as a fraction of frame height.
943 The value of the variable is a cons cell with two numbers between 0 and 1.
944 It only matters if `org-agenda-window-setup' is `reorganize-frame'."
945 :group 'org-agenda-windows
946 :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
948 (defcustom org-agenda-restore-windows-after-quit nil
949 "Non-nil means restore window configuration upon exiting agenda.
950 Before the window configuration is changed for displaying the agenda,
951 the current status is recorded. When the agenda is exited with
952 `q' or `x' and this option is set, the old state is restored. If
953 `org-agenda-window-setup' is `other-frame', the value of this
954 option will be ignored."
955 :group 'org-agenda-windows
956 :type 'boolean)
958 (defcustom org-agenda-ndays nil
959 "Number of days to include in overview display.
960 Should be 1 or 7.
961 Obsolete, see `org-agenda-span'."
962 :group 'org-agenda-daily/weekly
963 :type 'integer)
965 (make-obsolete-variable 'org-agenda-ndays 'org-agenda-span "24.1")
967 (defcustom org-agenda-span 'week
968 "Number of days to include in overview display.
969 Can be day, week, month, year, or any number of days.
970 Custom commands can set this variable in the options section."
971 :group 'org-agenda-daily/weekly
972 :type '(choice (const :tag "Day" day)
973 (const :tag "Week" week)
974 (const :tag "Month" month)
975 (const :tag "Year" year)
976 (integer :tag "Custom")))
978 (defcustom org-agenda-start-on-weekday 1
979 "Non-nil means start the overview always on the specified weekday.
980 0 denotes Sunday, 1 denotes Monday etc.
981 When nil, always start on the current day.
982 Custom commands can set this variable in the options section."
983 :group 'org-agenda-daily/weekly
984 :type '(choice (const :tag "Today" nil)
985 (integer :tag "Weekday No.")))
987 (defcustom org-agenda-show-all-dates t
988 "Non-nil means `org-agenda' shows every day in the selected range.
989 When nil, only the days which actually have entries are shown."
990 :group 'org-agenda-daily/weekly
991 :type 'boolean)
993 (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
994 "Format string for displaying dates in the agenda.
995 Used by the daily/weekly agenda and by the timeline. This should be
996 a format string understood by `format-time-string', or a function returning
997 the formatted date as a string. The function must take a single argument,
998 a calendar-style date list like (month day year)."
999 :group 'org-agenda-daily/weekly
1000 :type '(choice
1001 (string :tag "Format string")
1002 (function :tag "Function")))
1004 (defun org-agenda-format-date-aligned (date)
1005 "Format a date string for display in the daily/weekly agenda, or timeline.
1006 This function makes sure that dates are aligned for easy reading."
1007 (require 'cal-iso)
1008 (let* ((dayname (calendar-day-name date))
1009 (day (cadr date))
1010 (day-of-week (calendar-day-of-week date))
1011 (month (car date))
1012 (monthname (calendar-month-name month))
1013 (year (nth 2 date))
1014 (iso-week (org-days-to-iso-week
1015 (calendar-absolute-from-gregorian date)))
1016 (weekyear (cond ((and (= month 1) (>= iso-week 52))
1017 (1- year))
1018 ((and (= month 12) (<= iso-week 1))
1019 (1+ year))
1020 (t year)))
1021 (weekstring (if (= day-of-week 1)
1022 (format " W%02d" iso-week)
1023 "")))
1024 (format "%-10s %2d %s %4d%s"
1025 dayname day monthname year weekstring)))
1027 (defcustom org-agenda-time-leading-zero nil
1028 "Non-nil means use leading zero for military times in agenda.
1029 For example, 9:30am would become 09:30 rather than 9:30."
1030 :group 'org-agenda-daily/weekly
1031 :type 'boolean)
1033 (defcustom org-agenda-timegrid-use-ampm nil
1034 "When set, show AM/PM style timestamps on the timegrid."
1035 :group 'org-agenda
1036 :type 'boolean)
1038 (defun org-agenda-time-of-day-to-ampm (time)
1039 "Convert TIME of a string like '13:45' to an AM/PM style time string."
1040 (let* ((hour-number (string-to-number (substring time 0 -3)))
1041 (minute (substring time -2))
1042 (ampm "am"))
1043 (cond
1044 ((equal hour-number 12)
1045 (setq ampm "pm"))
1046 ((> hour-number 12)
1047 (setq ampm "pm")
1048 (setq hour-number (- hour-number 12))))
1049 (concat
1050 (if org-agenda-time-leading-zero
1051 (format "%02d" hour-number)
1052 (format "%02s" (number-to-string hour-number)))
1053 ":" minute ampm)))
1055 (defun org-agenda-time-of-day-to-ampm-maybe (time)
1056 "Conditionally convert TIME to AM/PM format
1057 based on `org-agenda-timegrid-use-ampm'"
1058 (if org-agenda-timegrid-use-ampm
1059 (org-agenda-time-of-day-to-ampm time)
1060 time))
1062 (defcustom org-agenda-weekend-days '(6 0)
1063 "Which days are weekend?
1064 These days get the special face `org-agenda-date-weekend' in the agenda
1065 and timeline buffers."
1066 :group 'org-agenda-daily/weekly
1067 :type '(set :greedy t
1068 (const :tag "Monday" 1)
1069 (const :tag "Tuesday" 2)
1070 (const :tag "Wednesday" 3)
1071 (const :tag "Thursday" 4)
1072 (const :tag "Friday" 5)
1073 (const :tag "Saturday" 6)
1074 (const :tag "Sunday" 0)))
1076 (defcustom org-agenda-move-date-from-past-immediately-to-today t
1077 "Non-nil means jumpt to today when moving a past date forward in time.
1078 When using S-right in the agenda to move a a date forward, and the date
1079 stamp currently points to the past, the first key press will move it
1080 to today. WHen nil, just move one day forward even if the date stays
1081 in the past."
1082 :group 'org-agenda-daily/weekly
1083 :type 'boolean)
1085 (defcustom org-agenda-include-diary nil
1086 "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
1087 Custom commands can set this variable in the options section."
1088 :group 'org-agenda-daily/weekly
1089 :type 'boolean)
1091 (defcustom org-agenda-include-deadlines t
1092 "If non-nil, include entries within their deadline warning period.
1093 Custom commands can set this variable in the options section."
1094 :group 'org-agenda-daily/weekly
1095 :type 'boolean)
1097 (defcustom org-agenda-repeating-timestamp-show-all t
1098 "Non-nil means show all occurrences of a repeating stamp in the agenda.
1099 When set to a list of strings, only show occurrences of repeating
1100 stamps for these TODO keywords. When nil, only one occurrence is
1101 shown, either today or the nearest into the future."
1102 :group 'org-agenda-daily/weekly
1103 :type '(choice
1104 (const :tag "Show repeating stamps" t)
1105 (repeat :tag "Show repeating stamps for these TODO keywords"
1106 (string :tag "TODO Keyword"))
1107 (const :tag "Don't show repeating stamps" nil)))
1109 (defcustom org-scheduled-past-days 10000
1110 "No. of days to continue listing scheduled items that are not marked DONE.
1111 When an item is scheduled on a date, it shows up in the agenda on this
1112 day and will be listed until it is marked done for the number of days
1113 given here."
1114 :group 'org-agenda-daily/weekly
1115 :type 'integer)
1117 (defcustom org-agenda-log-mode-items '(closed clock)
1118 "List of items that should be shown in agenda log mode.
1119 This list may contain the following symbols:
1121 closed Show entries that have been closed on that day.
1122 clock Show entries that have received clocked time on that day.
1123 state Show all logged state changes.
1124 Note that instead of changing this variable, you can also press `C-u l' in
1125 the agenda to display all available LOG items temporarily."
1126 :group 'org-agenda-daily/weekly
1127 :type '(set :greedy t (const closed) (const clock) (const state)))
1129 (defcustom org-agenda-clock-consistency-checks
1130 '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
1131 :gap-ok-around ("4:00")
1132 :default-face ((:background "DarkRed") (:foreground "white"))
1133 :overlap-face nil :gap-face nil :no-end-time-face nil
1134 :long-face nil :short-face nil)
1135 "This is a property list, with the following keys:
1137 :max-duration Mark clocking chunks that are longer than this time.
1138 This is a time string like \"HH:MM\", or the number
1139 of minutes as an integer.
1141 :min-duration Mark clocking chunks that are shorter that this.
1142 This is a time string like \"HH:MM\", or the number
1143 of minutes as an integer.
1145 :max-gap Mark gaps between clocking chunks that are longer than
1146 this duration. A number of minutes, or a string
1147 like \"HH:MM\".
1149 :gap-ok-around List of times during the day which are usually not working
1150 times. When a gap is detected, but the gap contains any
1151 of these times, the gap is *not* reported. For example,
1152 if this is (\"4:00\" \"13:00\") then gaps that contain
1153 4:00 in the morning (i.e. the night) and 13:00
1154 (i.e. a typical lunch time) do not cause a warning.
1155 You should have at least one time during the night in this
1156 list, or otherwise the first task each morning will trigger
1157 a warning because it follows a long gap.
1159 Furthermore, the following properties can be used to define faces for
1160 issue display.
1162 :default-face the default face, if the specific face is undefined
1163 :overlap-face face for overlapping clocks
1164 :gap-face face for gaps between clocks
1165 :no-end-time-face face for incomplete clocks
1166 :long-face face for clock intervals that are too long
1167 :short-face face for clock intervals that are too short"
1168 :group 'org-agenda-daily/weekly
1169 :group 'org-clock
1170 :type 'plist)
1172 (defcustom org-agenda-log-mode-add-notes t
1173 "Non-nil means add first line of notes to log entries in agenda views.
1174 If a log item like a state change or a clock entry is associated with
1175 notes, the first line of these notes will be added to the entry in the
1176 agenda display."
1177 :group 'org-agenda-daily/weekly
1178 :type 'boolean)
1180 (defcustom org-agenda-start-with-log-mode nil
1181 "The initial value of log-mode in a newly created agenda window."
1182 :group 'org-agenda-startup
1183 :group 'org-agenda-daily/weekly
1184 :type 'boolean)
1186 (defcustom org-agenda-start-with-clockreport-mode nil
1187 "The initial value of clockreport-mode in a newly created agenda window."
1188 :group 'org-agenda-startup
1189 :group 'org-agenda-daily/weekly
1190 :type 'boolean)
1192 (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
1193 "Property list with parameters for the clocktable in clockreport mode.
1194 This is the display mode that shows a clock table in the daily/weekly
1195 agenda, the properties for this dynamic block can be set here.
1196 The usual clocktable parameters are allowed here, but you cannot set
1197 the properties :name, :tstart, :tend, :block, and :scope - these will
1198 be overwritten to make sure the content accurately reflects the
1199 current display in the agenda."
1200 :group 'org-agenda-daily/weekly
1201 :type 'plist)
1203 (defcustom org-agenda-search-view-always-boolean nil
1204 "Non-nil means the search string is interpreted as individual parts.
1206 The search string for search view can either be interpreted as a phrase,
1207 or as a list of snippets that define a boolean search for a number of
1208 strings.
1210 When this is non-nil, the string will be split on whitespace, and each
1211 snippet will be searched individually, and all must match in order to
1212 select an entry. A snippet is then a single string of non-white
1213 characters, or a string in double quotes, or a regexp in {} braces.
1214 If a snippet is preceded by \"-\", the snippet must *not* match.
1215 \"+\" is syntactic sugar for positive selection. Each snippet may
1216 be found as a full word or a partial word, but see the variable
1217 `org-agenda-search-view-force-full-words'.
1219 When this is nil, search will look for the entire search phrase as one,
1220 with each space character matching any amount of whitespace, including
1221 line breaks.
1223 Even when this is nil, you can still switch to Boolean search dynamically
1224 by preceding the first snippet with \"+\" or \"-\". If the first snippet
1225 is a regexp marked with braces like \"{abc}\", this will also switch to
1226 boolean search."
1227 :group 'org-agenda-search-view
1228 :type 'boolean)
1230 (if (fboundp 'defvaralias)
1231 (defvaralias 'org-agenda-search-view-search-words-only
1232 'org-agenda-search-view-always-boolean))
1234 (defcustom org-agenda-search-view-force-full-words nil
1235 "Non-nil means, search words must be matches as complete words.
1236 When nil, they may also match part of a word."
1237 :group 'org-agenda-search-view
1238 :type 'boolean)
1240 (defgroup org-agenda-time-grid nil
1241 "Options concerning the time grid in the Org-mode Agenda."
1242 :tag "Org Agenda Time Grid"
1243 :group 'org-agenda)
1245 (defcustom org-agenda-search-headline-for-time t
1246 "Non-nil means search headline for a time-of-day.
1247 If the headline contains a time-of-day in one format or another, it will
1248 be used to sort the entry into the time sequence of items for a day.
1249 Some people have time stamps in the headline that refer to the creation
1250 time or so, and then this produces an unwanted side effect. If this is
1251 the case for your, use this variable to turn off searching the headline
1252 for a time."
1253 :group 'org-agenda-time-grid
1254 :type 'boolean)
1256 (defcustom org-agenda-use-time-grid t
1257 "Non-nil means show a time grid in the agenda schedule.
1258 A time grid is a set of lines for specific times (like every two hours between
1259 8:00 and 20:00). The items scheduled for a day at specific times are
1260 sorted in between these lines.
1261 For details about when the grid will be shown, and what it will look like, see
1262 the variable `org-agenda-time-grid'."
1263 :group 'org-agenda-time-grid
1264 :type 'boolean)
1266 (defcustom org-agenda-time-grid
1267 '((daily today require-timed)
1268 "----------------"
1269 (800 1000 1200 1400 1600 1800 2000))
1271 "The settings for time grid for agenda display.
1272 This is a list of three items. The first item is again a list. It contains
1273 symbols specifying conditions when the grid should be displayed:
1275 daily if the agenda shows a single day
1276 weekly if the agenda shows an entire week
1277 today show grid on current date, independent of daily/weekly display
1278 require-timed show grid only if at least one item has a time specification
1280 The second item is a string which will be placed behind the grid time.
1282 The third item is a list of integers, indicating the times that should have
1283 a grid line."
1284 :group 'org-agenda-time-grid
1285 :type
1286 '(list
1287 (set :greedy t :tag "Grid Display Options"
1288 (const :tag "Show grid in single day agenda display" daily)
1289 (const :tag "Show grid in weekly agenda display" weekly)
1290 (const :tag "Always show grid for today" today)
1291 (const :tag "Show grid only if any timed entries are present"
1292 require-timed)
1293 (const :tag "Skip grid times already present in an entry"
1294 remove-match))
1295 (string :tag "Grid String")
1296 (repeat :tag "Grid Times" (integer :tag "Time"))))
1298 (defcustom org-agenda-show-current-time-in-grid t
1299 "Non-nil means show the current time in the time grid."
1300 :group 'org-agenda-time-grid
1301 :type 'boolean)
1303 (defcustom org-agenda-current-time-string
1304 "now - - - - - - - - - - - - - - - - - - - - - - - - -"
1305 "The string for the current time marker in the agenda."
1306 :group 'org-agenda-time-grid
1307 :type 'string)
1309 (defgroup org-agenda-sorting nil
1310 "Options concerning sorting in the Org-mode Agenda."
1311 :tag "Org Agenda Sorting"
1312 :group 'org-agenda)
1314 (defcustom org-agenda-sorting-strategy
1315 '((agenda habit-down time-up priority-down category-keep)
1316 (todo priority-down category-keep)
1317 (tags priority-down category-keep)
1318 (search category-keep))
1319 "Sorting structure for the agenda items of a single day.
1320 This is a list of symbols which will be used in sequence to determine
1321 if an entry should be listed before another entry. The following
1322 symbols are recognized:
1324 time-up Put entries with time-of-day indications first, early first
1325 time-down Put entries with time-of-day indications first, late first
1326 category-keep Keep the default order of categories, corresponding to the
1327 sequence in `org-agenda-files'.
1328 category-up Sort alphabetically by category, A-Z.
1329 category-down Sort alphabetically by category, Z-A.
1330 tag-up Sort alphabetically by last tag, A-Z.
1331 tag-down Sort alphabetically by last tag, Z-A.
1332 priority-up Sort numerically by priority, high priority last.
1333 priority-down Sort numerically by priority, high priority first.
1334 todo-state-up Sort by todo state, tasks that are done last.
1335 todo-state-down Sort by todo state, tasks that are done first.
1336 effort-up Sort numerically by estimated effort, high effort last.
1337 effort-down Sort numerically by estimated effort, high effort first.
1338 user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
1339 user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
1340 habit-up Put entries that are habits first
1341 habit-down Put entries that are habits last
1342 alpha-up Sort headlines alphabetically
1343 alpha-down Sort headlines alphabetically, reversed
1345 The different possibilities will be tried in sequence, and testing stops
1346 if one comparison returns a \"not-equal\". For example, the default
1347 '(time-up category-keep priority-down)
1348 means: Pull out all entries having a specified time of day and sort them,
1349 in order to make a time schedule for the current day the first thing in the
1350 agenda listing for the day. Of the entries without a time indication, keep
1351 the grouped in categories, don't sort the categories, but keep them in
1352 the sequence given in `org-agenda-files'. Within each category sort by
1353 priority.
1355 Leaving out `category-keep' would mean that items will be sorted across
1356 categories by priority.
1358 Instead of a single list, this can also be a set of list for specific
1359 contents, with a context symbol in the car of the list, any of
1360 `agenda', `todo', `tags', `search' for the corresponding agenda views.
1362 Custom commands can bind this variable in the options section."
1363 :group 'org-agenda-sorting
1364 :type `(choice
1365 (repeat :tag "General" ,org-sorting-choice)
1366 (list :tag "Individually"
1367 (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
1368 (repeat ,org-sorting-choice))
1369 (cons (const :tag "Strategy for TODO lists" todo)
1370 (repeat ,org-sorting-choice))
1371 (cons (const :tag "Strategy for Tags matches" tags)
1372 (repeat ,org-sorting-choice))
1373 (cons (const :tag "Strategy for search matches" search)
1374 (repeat ,org-sorting-choice)))))
1376 (defcustom org-agenda-cmp-user-defined nil
1377 "A function to define the comparison `user-defined'.
1378 This function must receive two arguments, agenda entry a and b.
1379 If a>b, return +1. If a<b, return -1. If they are equal as seen by
1380 the user comparison, return nil.
1381 When this is defined, you can make `user-defined-up' and `user-defined-down'
1382 part of an agenda sorting strategy."
1383 :group 'org-agenda-sorting
1384 :type 'symbol)
1386 (defcustom org-sort-agenda-notime-is-late t
1387 "Non-nil means items without time are considered late.
1388 This is only relevant for sorting. When t, items which have no explicit
1389 time like 15:30 will be considered as 99:01, i.e. later than any items which
1390 do have a time. When nil, the default time is before 0:00. You can use this
1391 option to decide if the schedule for today should come before or after timeless
1392 agenda entries."
1393 :group 'org-agenda-sorting
1394 :type 'boolean)
1396 (defcustom org-sort-agenda-noeffort-is-high t
1397 "Non-nil means items without effort estimate are sorted as high effort.
1398 This also applies when filtering an agenda view with respect to the
1399 < or > effort operator. Then, tasks with no effort defined will be treated
1400 as tasks with high effort.
1401 When nil, such items are sorted as 0 minutes effort."
1402 :group 'org-agenda-sorting
1403 :type 'boolean)
1405 (defgroup org-agenda-line-format nil
1406 "Options concerning the entry prefix in the Org-mode agenda display."
1407 :tag "Org Agenda Line Format"
1408 :group 'org-agenda)
1410 (defcustom org-agenda-prefix-format
1411 '((agenda . " %i %-12:c%?-12t% s")
1412 (timeline . " % s")
1413 (todo . " %i %-12:c")
1414 (tags . " %i %-12:c")
1415 (search . " %i %-12:c"))
1416 "Format specifications for the prefix of items in the agenda views.
1417 An alist with five entries, each for the different agenda types. The
1418 keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
1419 The values are format strings.
1421 This format works similar to a printf format, with the following meaning:
1423 %c the category of the item, \"Diary\" for entries from the diary,
1424 or as given by the CATEGORY keyword or derived from the file name
1425 %e the effort required by the item
1426 %i the icon category of the item, see `org-agenda-category-icon-alist'
1427 %T the last tag of the item (ignore inherited tags, which come first)
1428 %t the HH:MM time-of-day specification if one applies to the entry
1429 %s Scheduling/Deadline information, a short string
1430 %(expression) Eval EXPRESSION and replace the control string
1431 by the result
1433 All specifiers work basically like the standard `%s' of printf, but may
1434 contain two additional characters: a question mark just after the `%'
1435 and a whitespace/punctuation character just before the final letter.
1437 If the first character after `%' is a question mark, the entire field
1438 will only be included if the corresponding value applies to the current
1439 entry. This is useful for fields which should have fixed width when
1440 present, but zero width when absent. For example, \"%?-12t\" will
1441 result in a 12 character time field if a time of the day is specified,
1442 but will completely disappear in entries which do not contain a time.
1444 If there is punctuation or whitespace character just before the final
1445 format letter, this character will be appended to the field value if
1446 the value is not empty. For example, the format \"%-12:c\" leads to
1447 \"Diary: \" if the category is \"Diary\". If the category were be
1448 empty, no additional colon would be inserted.
1450 The default value for the agenda sublist is \" %-12:c%?-12t% s\",
1451 which means:
1453 - Indent the line with two space characters
1454 - Give the category a 12 chars wide field, padded with whitespace on
1455 the right (because of `-'). Append a colon if there is a category
1456 (because of `:').
1457 - If there is a time-of-day, put it into a 12 chars wide field. If no
1458 time, don't put in an empty field, just skip it (because of '?').
1459 - Finally, put the scheduling information.
1461 See also the variables `org-agenda-remove-times-when-in-prefix' and
1462 `org-agenda-remove-tags'.
1464 Custom commands can set this variable in the options section."
1465 :type '(choice
1466 (string :tag "General format")
1467 (list :greedy t :tag "View dependent"
1468 (cons (const agenda) (string :tag "Format"))
1469 (cons (const timeline) (string :tag "Format"))
1470 (cons (const todo) (string :tag "Format"))
1471 (cons (const tags) (string :tag "Format"))
1472 (cons (const search) (string :tag "Format"))))
1473 :group 'org-agenda-line-format)
1475 (defvar org-prefix-format-compiled nil
1476 "The compiled version of the most recently used prefix format.
1477 See the variable `org-agenda-prefix-format'.")
1479 (defcustom org-agenda-todo-keyword-format "%-1s"
1480 "Format for the TODO keyword in agenda lines.
1481 Set this to something like \"%-12s\" if you want all TODO keywords
1482 to occupy a fixed space in the agenda display."
1483 :group 'org-agenda-line-format
1484 :type 'string)
1486 (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
1487 "Text preceding timerange entries in the agenda view.
1488 This is a list with two strings. The first applies when the range
1489 is entirely on one day. The second applies if the range spans several days.
1490 The strings may have two \"%d\" format specifiers which will be filled
1491 with the sequence number of the days, and the total number of days in the
1492 range, respectively."
1493 :group 'org-agenda-line-format
1494 :type '(list
1495 (string :tag "Deadline today ")
1496 (choice :tag "Deadline relative"
1497 (string :tag "Format string")
1498 (function))))
1500 (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
1501 "Text preceding scheduled items in the agenda view.
1502 This is a list with two strings. The first applies when the item is
1503 scheduled on the current day. The second applies when it has been scheduled
1504 previously, it may contain a %d indicating that this is the nth time that
1505 this item is scheduled, due to automatic rescheduling of unfinished items
1506 for the following day. So this number is one larger than the number of days
1507 that passed since this item was scheduled first."
1508 :group 'org-agenda-line-format
1509 :type '(list
1510 (string :tag "Scheduled today ")
1511 (string :tag "Scheduled previously")))
1513 (defcustom org-agenda-inactive-leader "["
1514 "Text preceding item pulled into the agenda by inactive time stamps.
1515 These entries are added to the agenda when pressing \"[\"."
1516 :group 'org-agenda-line-format
1517 :type '(list
1518 (string :tag "Scheduled today ")
1519 (string :tag "Scheduled previously")))
1521 (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: ")
1522 "Text preceding deadline items in the agenda view.
1523 This is a list with two strings. The first applies when the item has its
1524 deadline on the current day. The second applies when it is in the past or
1525 in the future, it may contain %d to capture how many days away the deadline
1526 is (was)."
1527 :group 'org-agenda-line-format
1528 :type '(list
1529 (string :tag "Deadline today ")
1530 (choice :tag "Deadline relative"
1531 (string :tag "Format string")
1532 (function))))
1534 (defcustom org-agenda-remove-times-when-in-prefix t
1535 "Non-nil means remove duplicate time specifications in agenda items.
1536 When the format `org-agenda-prefix-format' contains a `%t' specifier, a
1537 time-of-day specification in a headline or diary entry is extracted and
1538 placed into the prefix. If this option is non-nil, the original specification
1539 \(a timestamp or -range, or just a plain time(range) specification like
1540 11:30-4pm) will be removed for agenda display. This makes the agenda less
1541 cluttered.
1542 The option can be t or nil. It may also be the symbol `beg', indicating
1543 that the time should only be removed when it is located at the beginning of
1544 the headline/diary entry."
1545 :group 'org-agenda-line-format
1546 :type '(choice
1547 (const :tag "Always" t)
1548 (const :tag "Never" nil)
1549 (const :tag "When at beginning of entry" beg)))
1551 (defcustom org-agenda-remove-timeranges-from-blocks nil
1552 "Non-nil means remove time ranges specifications in agenda
1553 items that span on several days."
1554 :group 'org-agenda-line-format
1555 :type 'boolean)
1557 (defcustom org-agenda-default-appointment-duration nil
1558 "Default duration for appointments that only have a starting time.
1559 When nil, no duration is specified in such cases.
1560 When non-nil, this must be the number of minutes, e.g. 60 for one hour."
1561 :group 'org-agenda-line-format
1562 :type '(choice
1563 (integer :tag "Minutes")
1564 (const :tag "No default duration")))
1566 (defcustom org-agenda-show-inherited-tags t
1567 "Non-nil means show inherited tags in each agenda line."
1568 :group 'org-agenda-line-format
1569 :type 'boolean)
1571 (defcustom org-agenda-hide-tags-regexp nil
1572 "Regular expression used to filter away specific tags in agenda views.
1573 This means that these tags will be present, but not be shown in the agenda
1574 line. Secondary filtering will still work on the hidden tags.
1575 Nil means don't hide any tags."
1576 :group 'org-agenda-line-format
1577 :type '(choice
1578 (const :tag "Hide none" nil)
1579 (string :tag "Regexp ")))
1581 (defcustom org-agenda-remove-tags nil
1582 "Non-nil means remove the tags from the headline copy in the agenda.
1583 When this is the symbol `prefix', only remove tags when
1584 `org-agenda-prefix-format' contains a `%T' specifier."
1585 :group 'org-agenda-line-format
1586 :type '(choice
1587 (const :tag "Always" t)
1588 (const :tag "Never" nil)
1589 (const :tag "When prefix format contains %T" prefix)))
1591 (if (fboundp 'defvaralias)
1592 (defvaralias 'org-agenda-remove-tags-when-in-prefix
1593 'org-agenda-remove-tags))
1595 (defcustom org-agenda-tags-column (if (featurep 'xemacs) -79 -80)
1596 "Shift tags in agenda items to this column.
1597 If this number is positive, it specifies the column. If it is negative,
1598 it means that the tags should be flushright to that column. For example,
1599 -80 works well for a normal 80 character screen."
1600 :group 'org-agenda-line-format
1601 :type 'integer)
1603 (if (fboundp 'defvaralias)
1604 (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column))
1606 (defcustom org-agenda-fontify-priorities 'cookies
1607 "Non-nil means highlight low and high priorities in agenda.
1608 When t, the highest priority entries are bold, lowest priority italic.
1609 However, settings in `org-priority-faces' will overrule these faces.
1610 When this variable is the symbol `cookies', only fontify the
1611 cookies, not the entire task.
1612 This may also be an association list of priority faces, whose
1613 keys are the character values of `org-highest-priority',
1614 `org-default-priority', and `org-lowest-priority' (the default values
1615 are ?A, ?B, and ?C, respectively). The face may be a named face, a
1616 color as a string, or a list like `(:background \"Red\")'.
1617 If it is a color, the variable `org-faces-easy-properties'
1618 determines if it is a foreground or a background color."
1619 :group 'org-agenda-line-format
1620 :type '(choice
1621 (const :tag "Never" nil)
1622 (const :tag "Defaults" t)
1623 (const :tag "Cookies only" cookies)
1624 (repeat :tag "Specify"
1625 (list (character :tag "Priority" :value ?A)
1626 (choice :tag "Face "
1627 (string :tag "Color")
1628 (sexp :tag "Face"))))))
1630 (defcustom org-agenda-day-face-function nil
1631 "Function called to determine what face should be used to display a day.
1632 The only argument passed to that function is the day. It should
1633 returns a face, or nil if does not want to specify a face and let
1634 the normal rules apply."
1635 :group 'org-agenda-line-format
1636 :type 'function)
1638 (defcustom org-agenda-category-icon-alist nil
1639 "Alist of category icon to be displayed in agenda views.
1641 Each entry should have the following format:
1643 (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
1645 Where CATEGORY-REGEXP is a regexp matching the categories where
1646 the icon should be displayed.
1647 FILE-OR-DATA either a file path or a string containing image data.
1649 The other fields can be omited safely if not needed:
1650 TYPE indicates the image type.
1651 DATA-P is a boolean indicating whether the FILE-OR-DATA string is
1652 image data.
1653 PROPS are additional image attributes to assign to the image,
1654 like, e.g. `:ascent center'.
1656 (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
1658 If you want to set the display properties yourself, just put a
1659 list as second element:
1661 (CATEGORY-REGEXP (MY PROPERTY LIST))
1663 For example, to display a 16px horizontal space for Emacs
1664 category, you can use:
1666 (\"Emacs\" '(space . (:width (16))))"
1667 :group 'org-agenda-line-format
1668 :type '(alist :key-type (string :tag "Regexp matching category")
1669 :value-type (choice (list :tag "Icon"
1670 (string :tag "File or data")
1671 (symbol :tag "Type")
1672 (boolean :tag "Data?")
1673 (repeat :tag "Extra image properties" :inline t symbol))
1674 (list :tag "Display properties" sexp))))
1676 (defgroup org-agenda-column-view nil
1677 "Options concerning column view in the agenda."
1678 :tag "Org Agenda Column View"
1679 :group 'org-agenda)
1681 (defcustom org-agenda-columns-show-summaries t
1682 "Non-nil means show summaries for columns displayed in the agenda view."
1683 :group 'org-agenda-column-view
1684 :type 'boolean)
1686 (defcustom org-agenda-columns-compute-summary-properties t
1687 "Non-nil means recompute all summary properties before column view.
1688 When column view in the agenda is listing properties that have a summary
1689 operator, it can go to all relevant buffers and recompute the summaries
1690 there. This can mean overhead for the agenda column view, but is necessary
1691 to have thing up to date.
1692 As a special case, a CLOCKSUM property also makes sure that the clock
1693 computations are current."
1694 :group 'org-agenda-column-view
1695 :type 'boolean)
1697 (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
1698 "Non-nil means the duration of an appointment will add to day effort.
1699 The property to which appointment durations will be added is the one given
1700 in the option `org-effort-property'. If an appointment does not have
1701 an end time, `org-agenda-default-appointment-duration' will be used. If that
1702 is not set, an appointment without end time will not contribute to the time
1703 estimate."
1704 :group 'org-agenda-column-view
1705 :type 'boolean)
1707 (defcustom org-agenda-auto-exclude-function nil
1708 "A function called with a tag to decide if it is filtered on '/ RET'.
1709 The sole argument to the function, which is called once for each
1710 possible tag, is a string giving the name of the tag. The
1711 function should return either nil if the tag should be included
1712 as normal, or \"-<TAG>\" to exclude the tag.
1713 Note that for the purpose of tag filtering, only the lower-case version of
1714 all tags will be considered, so that this function will only ever see
1715 the lower-case version of all tags."
1716 :group 'org-agenda
1717 :type 'function)
1719 (defcustom org-agenda-bulk-custom-functions nil
1720 "Alist of characters and custom functions for bulk actions.
1721 For example, this value makes those two functions available:
1723 '((?R set-category)
1724 (?C bulk-cut))
1726 With selected entries in an agenda buffer, `B R' will call
1727 the custom function `set-category' on the selected entries.
1728 Note that functions in this alist don't need to be quoted."
1729 :type 'alist
1730 :group 'org-agenda)
1732 (eval-when-compile
1733 (require 'cl))
1734 (require 'org)
1736 (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
1737 "Execute BODY with point at location given by `org-hd-marker' property.
1738 If STRING is non-nil, the text property will be fetched from position 0
1739 in that string. If STRING is nil, it will be fetched from the beginning
1740 of the current line."
1741 (org-with-gensyms (marker)
1742 `(let ((,marker (get-text-property (if string 0 (point-at-bol))
1743 'org-hd-marker string)))
1744 (with-current-buffer (marker-buffer ,marker)
1745 (save-excursion
1746 (goto-char ,marker)
1747 ,@body)))))
1748 (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
1750 (defun org-add-agenda-custom-command (entry)
1751 "Replace or add a command in `org-agenda-custom-commands'.
1752 This is mostly for hacking and trying a new command - once the command
1753 works you probably want to add it to `org-agenda-custom-commands' for good."
1754 (let ((ass (assoc (car entry) org-agenda-custom-commands)))
1755 (if ass
1756 (setcdr ass (cdr entry))
1757 (push entry org-agenda-custom-commands))))
1759 ;;; Define the Org-agenda-mode
1761 (defvar org-agenda-mode-map (make-sparse-keymap)
1762 "Keymap for `org-agenda-mode'.")
1763 (if (fboundp 'defvaralias)
1764 (defvaralias 'org-agenda-keymap 'org-agenda-mode-map))
1766 (defvar org-agenda-menu) ; defined later in this file.
1767 (defvar org-agenda-restrict) ; defined later in this file.
1768 (defvar org-agenda-follow-mode nil)
1769 (defvar org-agenda-entry-text-mode nil)
1770 (defvar org-agenda-clockreport-mode nil)
1771 (defvar org-agenda-show-log nil)
1772 (defvar org-agenda-redo-command nil)
1773 (defvar org-agenda-query-string nil)
1774 (defvar org-agenda-mode-hook nil
1775 "Hook for `org-agenda-mode', run after the mode is turned on.")
1776 (defvar org-agenda-type nil)
1777 (defvar org-agenda-force-single-file nil)
1778 (defvar org-agenda-bulk-marked-entries) ;; Defined further down in this file
1780 (defun org-agenda-mode ()
1781 "Mode for time-sorted view on action items in Org-mode files.
1783 The following commands are available:
1785 \\{org-agenda-mode-map}"
1786 (interactive)
1787 (kill-all-local-variables)
1788 (setq org-agenda-undo-list nil
1789 org-agenda-pending-undo-list nil
1790 org-agenda-bulk-marked-entries nil)
1791 (setq major-mode 'org-agenda-mode)
1792 ;; Keep global-font-lock-mode from turning on font-lock-mode
1793 (org-set-local 'font-lock-global-modes (list 'not major-mode))
1794 (setq mode-name "Org-Agenda")
1795 (use-local-map org-agenda-mode-map)
1796 (easy-menu-add org-agenda-menu)
1797 (if org-startup-truncated (setq truncate-lines t))
1798 (org-set-local 'line-move-visual nil)
1799 (org-add-hook 'post-command-hook 'org-agenda-post-command-hook nil 'local)
1800 (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
1801 ;; Make sure properties are removed when copying text
1802 (when (boundp 'buffer-substring-filters)
1803 (org-set-local 'buffer-substring-filters
1804 (cons (lambda (x)
1805 (set-text-properties 0 (length x) nil x) x)
1806 buffer-substring-filters)))
1807 (unless org-agenda-keep-modes
1808 (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
1809 org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
1810 org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode
1811 org-agenda-show-log org-agenda-start-with-log-mode))
1813 (easy-menu-change
1814 '("Agenda") "Agenda Files"
1815 (append
1816 (list
1817 (vector
1818 (if (get 'org-agenda-files 'org-restrict)
1819 "Restricted to single file"
1820 "Edit File List")
1821 '(org-edit-agenda-file-list)
1822 (not (get 'org-agenda-files 'org-restrict)))
1823 "--")
1824 (mapcar 'org-file-menu-entry (org-agenda-files))))
1825 (org-agenda-set-mode-name)
1826 (apply
1827 (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
1828 (list 'org-agenda-mode-hook)))
1830 (substitute-key-definition 'undo 'org-agenda-undo
1831 org-agenda-mode-map global-map)
1832 (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
1833 (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
1834 (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
1835 (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
1836 (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
1837 (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
1838 (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
1839 (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
1840 (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-remove-all-marks)
1841 (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
1842 (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
1843 (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
1844 (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
1845 (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
1846 (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
1847 (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
1848 (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
1849 (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
1850 (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
1851 (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
1852 (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
1853 (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
1854 (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
1855 (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
1856 (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
1857 (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
1858 (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
1859 (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
1860 (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
1861 (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
1862 (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
1863 (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
1864 (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
1865 (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
1866 (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
1867 (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
1868 (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
1869 (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
1870 (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
1871 (org-defkey org-agenda-mode-map "k" 'org-agenda-action)
1872 (org-defkey org-agenda-mode-map "\C-c\C-x\C-k" 'org-agenda-action)
1873 (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
1874 (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
1875 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
1876 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
1878 (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
1879 (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
1880 (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
1881 (let ((l '(1 2 3 4 5 6 7 8 9 0)))
1882 (while l (org-defkey org-agenda-mode-map
1883 (int-to-string (pop l)) 'digit-argument)))
1885 (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
1886 (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
1887 (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
1888 (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
1889 (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
1890 (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
1891 (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
1892 (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
1893 (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
1894 (org-defkey org-agenda-mode-map "g" 'org-agenda-redo)
1895 (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
1896 (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
1897 (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
1898 'org-clock-modify-effort-estimate)
1899 (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
1900 (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
1901 (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
1902 (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-write-agenda)
1903 (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
1904 (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
1905 (org-defkey org-agenda-mode-map "P" 'org-agenda-show-priority)
1906 (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
1907 (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
1908 (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
1909 (substitute-key-definition 'next-line 'org-agenda-next-line
1910 org-agenda-mode-map global-map)
1911 (substitute-key-definition 'previous-line 'org-agenda-previous-line
1912 org-agenda-mode-map global-map)
1913 (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
1914 (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
1915 (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
1916 (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
1917 (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
1918 (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
1919 (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
1920 (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
1921 (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
1922 (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
1923 (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
1924 (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
1925 (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
1926 (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
1927 (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
1928 (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
1929 (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
1930 (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
1931 (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
1932 (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
1933 (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
1934 (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
1935 (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
1936 (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
1937 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
1938 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
1939 (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
1940 (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
1941 (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
1942 (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
1944 (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
1945 (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
1946 (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
1947 (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
1948 (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
1949 (org-defkey org-agenda-mode-map "\\" 'org-agenda-filter-by-tag-refine)
1950 (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
1951 (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
1952 (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
1953 (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
1955 (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
1956 (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
1957 (when org-agenda-mouse-1-follows-link
1958 (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
1959 (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
1960 '("Agenda"
1961 ("Agenda Files")
1962 "--"
1963 ("Agenda Dates"
1964 ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
1965 ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
1966 ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
1967 ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
1968 "--"
1969 ("View"
1970 ["Day View" org-agenda-day-view
1971 :active (org-agenda-check-type nil 'agenda)
1972 :style radio :selected (eq org-agenda-current-span 'day)
1973 :keys "v d (or just d)"]
1974 ["Week View" org-agenda-week-view
1975 :active (org-agenda-check-type nil 'agenda)
1976 :style radio :selected (eq org-agenda-current-span 'week)
1977 :keys "v w (or just w)"]
1978 ["Month View" org-agenda-month-view
1979 :active (org-agenda-check-type nil 'agenda)
1980 :style radio :selected (eq org-agenda-current-span 'month)
1981 :keys "v m"]
1982 ["Year View" org-agenda-year-view
1983 :active (org-agenda-check-type nil 'agenda)
1984 :style radio :selected (eq org-agenda-current-span 'year)
1985 :keys "v y"]
1986 "--"
1987 ["Include Diary" org-agenda-toggle-diary
1988 :style toggle :selected org-agenda-include-diary
1989 :active (org-agenda-check-type nil 'agenda)]
1990 ["Include Deadlines" org-agenda-toggle-deadlines
1991 :style toggle :selected org-agenda-include-deadlines
1992 :active (org-agenda-check-type nil 'agenda)]
1993 ["Use Time Grid" org-agenda-toggle-time-grid
1994 :style toggle :selected org-agenda-use-time-grid
1995 :active (org-agenda-check-type nil 'agenda)]
1996 "--"
1997 ["Show clock report" org-agenda-clockreport-mode
1998 :style toggle :selected org-agenda-clockreport-mode
1999 :active (org-agenda-check-type nil 'agenda)]
2000 ["Show some entry text" org-agenda-entry-text-mode
2001 :style toggle :selected org-agenda-entry-text-mode
2002 :active t]
2003 "--"
2004 ["Show Logbook entries" org-agenda-log-mode
2005 :style toggle :selected org-agenda-show-log
2006 :active (org-agenda-check-type nil 'agenda 'timeline)
2007 :keys "v l (or just l)"]
2008 ["Include archived trees" org-agenda-archives-mode
2009 :style toggle :selected org-agenda-archives-mode :active t
2010 :keys "v a"]
2011 ["Include archive files" (org-agenda-archives-mode t)
2012 :style toggle :selected (eq org-agenda-archives-mode t) :active t
2013 :keys "v A"]
2014 "--"
2015 ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
2016 ["Write view to file" org-write-agenda t]
2017 ["Rebuild buffer" org-agenda-redo t]
2018 ["Save all Org-mode Buffers" org-save-all-org-buffers t]
2019 "--"
2020 ["Show original entry" org-agenda-show t]
2021 ["Go To (other window)" org-agenda-goto t]
2022 ["Go To (this window)" org-agenda-switch-to t]
2023 ["Follow Mode" org-agenda-follow-mode
2024 :style toggle :selected org-agenda-follow-mode :active t]
2025 ; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
2026 "--"
2027 ("TODO"
2028 ["Cycle TODO" org-agenda-todo t]
2029 ["Next TODO set" org-agenda-todo-nextset t]
2030 ["Previous TODO set" org-agenda-todo-previousset t]
2031 ["Add note" org-agenda-add-note t])
2032 ("Archive/Refile/Delete"
2033 ["Archive default" org-agenda-archive-default t]
2034 ["Archive default" org-agenda-archive-default-with-confirmation t]
2035 ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
2036 ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
2037 ["Archive subtree" org-agenda-archive t]
2038 "--"
2039 ["Refile" org-agenda-refile t]
2040 "--"
2041 ["Delete subtree" org-agenda-kill t])
2042 ("Bulk action"
2043 ["Mark entry" org-agenda-bulk-mark t]
2044 ["Mark matching regexp" org-agenda-bulk-mark-regexp t]
2045 ["Unmark entry" org-agenda-bulk-unmark t]
2046 ["Unmark all entries" org-agenda-bulk-remove-all-marks :active t :keys "C-u s"])
2047 ["Act on all marked" org-agenda-bulk-action t]
2048 "--"
2049 ("Tags and Properties"
2050 ["Show all Tags" org-agenda-show-tags t]
2051 ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
2052 ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
2053 "--"
2054 ["Column View" org-columns t])
2055 ("Deadline/Schedule"
2056 ["Schedule" org-agenda-schedule t]
2057 ["Set Deadline" org-agenda-deadline t]
2058 "--"
2059 ["Mark item" org-agenda-action :active t :keys "k m"]
2060 ["Show mark item" org-agenda-action :active t :keys "k v"]
2061 ["Schedule marked item" org-agenda-action :active t :keys "k s"]
2062 ["Set Deadline for marked item" org-agenda-action :active t :keys "k d"]
2063 "--"
2064 ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
2065 ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
2066 ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
2067 ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
2068 ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
2069 ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
2070 ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
2071 ("Clock and Effort"
2072 ["Clock in" org-agenda-clock-in t]
2073 ["Clock out" org-agenda-clock-out t]
2074 ["Clock cancel" org-agenda-clock-cancel t]
2075 ["Goto running clock" org-clock-goto t]
2076 "--"
2077 ["Set Effort" org-agenda-set-effort t]
2078 ["Change clocked effort" org-clock-modify-effort-estimate
2079 (org-clock-is-active)])
2080 ("Priority"
2081 ["Set Priority" org-agenda-priority t]
2082 ["Increase Priority" org-agenda-priority-up t]
2083 ["Decrease Priority" org-agenda-priority-down t]
2084 ["Show Priority" org-agenda-show-priority t])
2085 ("Calendar/Diary"
2086 ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
2087 ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
2088 ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
2089 ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
2090 ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
2091 ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
2092 "--"
2093 ["Create iCalendar File" org-export-icalendar-combine-agenda-files t])
2094 "--"
2095 ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
2096 "--"
2097 ("MobileOrg"
2098 ["Push Files and Views" org-mobile-push t]
2099 ["Get Captured and Flagged" org-mobile-pull t]
2100 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
2101 ["Show note / unflag" org-agenda-show-the-flagging-note t]
2102 "--"
2103 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
2104 "--"
2105 ["Quit" org-agenda-quit t]
2106 ["Exit and Release Buffers" org-agenda-exit t]
2109 ;;; Agenda undo
2111 (defvar org-agenda-allow-remote-undo t
2112 "Non-nil means allow remote undo from the agenda buffer.")
2113 (defvar org-agenda-undo-list nil
2114 "List of undoable operations in the agenda since last refresh.")
2115 (defvar org-agenda-undo-has-started-in nil
2116 "Buffers that have already seen `undo-start' in the current undo sequence.")
2117 (defvar org-agenda-pending-undo-list nil
2118 "In a series of undo commands, this is the list of remaining undo items.")
2120 (defun org-agenda-undo ()
2121 "Undo a remote editing step in the agenda.
2122 This undoes changes both in the agenda buffer and in the remote buffer
2123 that have been changed along."
2124 (interactive)
2125 (or org-agenda-allow-remote-undo
2126 (error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
2127 (if (not (eq this-command last-command))
2128 (setq org-agenda-undo-has-started-in nil
2129 org-agenda-pending-undo-list org-agenda-undo-list))
2130 (if (not org-agenda-pending-undo-list)
2131 (error "No further undo information"))
2132 (let* ((entry (pop org-agenda-pending-undo-list))
2133 buf line cmd rembuf)
2134 (setq cmd (pop entry) line (pop entry))
2135 (setq rembuf (nth 2 entry))
2136 (org-with-remote-undo rembuf
2137 (while (bufferp (setq buf (pop entry)))
2138 (if (pop entry)
2139 (with-current-buffer buf
2140 (let ((last-undo-buffer buf)
2141 (inhibit-read-only t))
2142 (unless (memq buf org-agenda-undo-has-started-in)
2143 (push buf org-agenda-undo-has-started-in)
2144 (make-local-variable 'pending-undo-list)
2145 (undo-start))
2146 (while (and pending-undo-list
2147 (listp pending-undo-list)
2148 (not (car pending-undo-list)))
2149 (pop pending-undo-list))
2150 (undo-more 1))))))
2151 (org-goto-line line)
2152 (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
2154 (defun org-verify-change-for-undo (l1 l2)
2155 "Verify that a real change occurred between the undo lists L1 and L2."
2156 (while (and l1 (listp l1) (null (car l1))) (pop l1))
2157 (while (and l2 (listp l2) (null (car l2))) (pop l2))
2158 (not (eq l1 l2)))
2160 ;;; Agenda dispatch
2162 (defvar org-agenda-restrict nil)
2163 (defvar org-agenda-restrict-begin (make-marker))
2164 (defvar org-agenda-restrict-end (make-marker))
2165 (defvar org-agenda-last-dispatch-buffer nil)
2166 (defvar org-agenda-overriding-restriction nil)
2168 ;;;###autoload
2169 (defun org-agenda (&optional arg keys restriction)
2170 "Dispatch agenda commands to collect entries to the agenda buffer.
2171 Prompts for a command to execute. Any prefix arg will be passed
2172 on to the selected command. The default selections are:
2174 a Call `org-agenda-list' to display the agenda for current day or week.
2175 t Call `org-todo-list' to display the global todo list.
2176 T Call `org-todo-list' to display the global todo list, select only
2177 entries with a specific TODO keyword (the user gets a prompt).
2178 m Call `org-tags-view' to display headlines with tags matching
2179 a condition (the user is prompted for the condition).
2180 M Like `m', but select only TODO entries, no ordinary headlines.
2181 L Create a timeline for the current buffer.
2182 e Export views to associated files.
2183 s Search entries for keywords.
2184 / Multi occur across all agenda files and also files listed
2185 in `org-agenda-text-search-extra-files'.
2186 < Restrict agenda commands to buffer, subtree, or region.
2187 Press several times to get the desired effect.
2188 > Remove a previous restriction.
2189 # List \"stuck\" projects.
2190 ! Configure what \"stuck\" means.
2191 C Configure custom agenda commands.
2193 More commands can be added by configuring the variable
2194 `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
2195 searches can be pre-defined in this way.
2197 If the current buffer is in Org-mode and visiting a file, you can also
2198 first press `<' once to indicate that the agenda should be temporarily
2199 \(until the next use of \\[org-agenda]) restricted to the current file.
2200 Pressing `<' twice means to restrict to the current subtree or region
2201 \(if active)."
2202 (interactive "P")
2203 (catch 'exit
2204 (let* ((prefix-descriptions nil)
2205 (org-agenda-window-setup (if (equal (buffer-name)
2206 org-agenda-buffer-name)
2207 'current-window
2208 org-agenda-window-setup))
2209 (org-agenda-custom-commands-orig org-agenda-custom-commands)
2210 (org-agenda-custom-commands
2211 ;; normalize different versions
2212 (delq nil
2213 (mapcar
2214 (lambda (x)
2215 (cond ((stringp (cdr x))
2216 (push x prefix-descriptions)
2217 nil)
2218 ((stringp (nth 1 x)) x)
2219 ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
2220 (t (cons (car x) (cons "" (cdr x))))))
2221 org-agenda-custom-commands)))
2222 (buf (current-buffer))
2223 (bfn (buffer-file-name (buffer-base-buffer)))
2224 entry key type match lprops ans)
2225 ;; Turn off restriction unless there is an overriding one,
2226 (unless org-agenda-overriding-restriction
2227 (unless (org-bound-and-true-p org-agenda-keep-restricted-file-list)
2228 ;; There is a request to keep the file list in place
2229 (put 'org-agenda-files 'org-restrict nil))
2230 (setq org-agenda-restrict nil)
2231 (move-marker org-agenda-restrict-begin nil)
2232 (move-marker org-agenda-restrict-end nil))
2233 ;; Delete old local properties
2234 (put 'org-agenda-redo-command 'org-lprops nil)
2235 ;; Delete previously set last-arguments
2236 (put 'org-agenda-redo-command 'last-args nil)
2237 ;; Remember where this call originated
2238 (setq org-agenda-last-dispatch-buffer (current-buffer))
2239 (unless keys
2240 (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
2241 keys (car ans)
2242 restriction (cdr ans)))
2243 ;; Establish the restriction, if any
2244 (when (and (not org-agenda-overriding-restriction) restriction)
2245 (put 'org-agenda-files 'org-restrict (list bfn))
2246 (cond
2247 ((eq restriction 'region)
2248 (setq org-agenda-restrict t)
2249 (move-marker org-agenda-restrict-begin (region-beginning))
2250 (move-marker org-agenda-restrict-end (region-end)))
2251 ((eq restriction 'subtree)
2252 (save-excursion
2253 (setq org-agenda-restrict t)
2254 (org-back-to-heading t)
2255 (move-marker org-agenda-restrict-begin (point))
2256 (move-marker org-agenda-restrict-end
2257 (progn (org-end-of-subtree t)))))))
2259 ;; For example the todo list should not need it (but does...)
2260 (cond
2261 ((setq entry (assoc keys org-agenda-custom-commands))
2262 (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
2263 (progn
2264 (setq type (nth 2 entry) match (eval (nth 3 entry))
2265 lprops (nth 4 entry))
2266 (put 'org-agenda-redo-command 'org-lprops lprops)
2267 (cond
2268 ((eq type 'agenda)
2269 (org-let lprops '(org-agenda-list current-prefix-arg)))
2270 ((eq type 'alltodo)
2271 (org-let lprops '(org-todo-list current-prefix-arg)))
2272 ((eq type 'search)
2273 (org-let lprops '(org-search-view current-prefix-arg match nil)))
2274 ((eq type 'stuck)
2275 (org-let lprops '(org-agenda-list-stuck-projects
2276 current-prefix-arg)))
2277 ((eq type 'tags)
2278 (org-let lprops '(org-tags-view current-prefix-arg match)))
2279 ((eq type 'tags-todo)
2280 (org-let lprops '(org-tags-view '(4) match)))
2281 ((eq type 'todo)
2282 (org-let lprops '(org-todo-list match)))
2283 ((eq type 'tags-tree)
2284 (org-check-for-org-mode)
2285 (org-let lprops '(org-match-sparse-tree current-prefix-arg match)))
2286 ((eq type 'todo-tree)
2287 (org-check-for-org-mode)
2288 (org-let lprops
2289 '(org-occur (concat "^" org-outline-regexp "[ \t]*"
2290 (regexp-quote match) "\\>"))))
2291 ((eq type 'occur-tree)
2292 (org-check-for-org-mode)
2293 (org-let lprops '(org-occur match)))
2294 ((functionp type)
2295 (org-let lprops '(funcall type match)))
2296 ((fboundp type)
2297 (org-let lprops '(funcall type match)))
2298 (t (error "Invalid custom agenda command type %s" type))))
2299 (org-agenda-run-series (nth 1 entry) (cddr entry))))
2300 ((equal keys "C")
2301 (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
2302 (customize-variable 'org-agenda-custom-commands))
2303 ((equal keys "a") (call-interactively 'org-agenda-list))
2304 ((equal keys "s") (call-interactively 'org-search-view))
2305 ((equal keys "t") (call-interactively 'org-todo-list))
2306 ((equal keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
2307 ((equal keys "m") (call-interactively 'org-tags-view))
2308 ((equal keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
2309 ((equal keys "e") (call-interactively 'org-store-agenda-views))
2310 ((equal keys "?") (org-tags-view nil "+FLAGGED")
2311 (org-add-hook
2312 'post-command-hook
2313 (lambda ()
2314 (unless (current-message)
2315 (let* ((m (org-agenda-get-any-marker))
2316 (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
2317 (when note
2318 (message (concat
2319 "FLAGGING-NOTE ([?] for more info): "
2320 (org-add-props
2321 (replace-regexp-in-string
2322 "\\\\n" "//"
2323 (copy-sequence note))
2324 nil 'face 'org-warning)))))))
2325 t t))
2326 ((equal keys "L")
2327 (unless (eq major-mode 'org-mode)
2328 (error "This is not an Org-mode file"))
2329 (unless restriction
2330 (put 'org-agenda-files 'org-restrict (list bfn))
2331 (org-call-with-arg 'org-timeline arg)))
2332 ((equal keys "#") (call-interactively 'org-agenda-list-stuck-projects))
2333 ((equal keys "/") (call-interactively 'org-occur-in-agenda-files))
2334 ((equal keys "!") (customize-variable 'org-stuck-projects))
2335 (t (error "Invalid agenda key"))))))
2337 (defun org-agenda-append-agenda ()
2338 "Append another agenda view to the current one.
2339 This function allows interactive building of block agendas.
2340 Agenda views are separated by `org-agenda-block-separator'."
2341 (interactive)
2342 (unless (string= (buffer-name) org-agenda-buffer-name)
2343 (error "Can only append from within agenda buffer"))
2344 (let ((org-agenda-multi t))
2345 (org-agenda)
2346 (widen)))
2348 (defun org-agenda-normalize-custom-commands (cmds)
2349 (delq nil
2350 (mapcar
2351 (lambda (x)
2352 (cond ((stringp (cdr x)) nil)
2353 ((stringp (nth 1 x)) x)
2354 ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
2355 (t (cons (car x) (cons "" (cdr x))))))
2356 cmds)))
2358 (defun org-agenda-get-restriction-and-command (prefix-descriptions)
2359 "The user interface for selecting an agenda command."
2360 (catch 'exit
2361 (let* ((bfn (buffer-file-name (buffer-base-buffer)))
2362 (restrict-ok (and bfn (eq major-mode 'org-mode)))
2363 (region-p (org-region-active-p))
2364 (custom org-agenda-custom-commands)
2365 (selstring "")
2366 restriction second-time
2367 c entry key type match prefixes rmheader header-end custom1 desc
2368 line lines left right n n1)
2369 (save-window-excursion
2370 (delete-other-windows)
2371 (org-switch-to-buffer-other-window " *Agenda Commands*")
2372 (erase-buffer)
2373 (insert (eval-when-compile
2374 (let ((header
2376 Press key for an agenda command: < Buffer, subtree/region restriction
2377 -------------------------------- > Remove restriction
2378 a Agenda for current week or day e Export agenda views
2379 t List of all TODO entries T Entries with special TODO kwd
2380 m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
2381 L Timeline for current buffer # List stuck projects (!=configure)
2382 s Search for keywords C Configure custom agenda commands
2383 / Multi-occur ? Find :FLAGGED: entries
2385 (start 0))
2386 (while (string-match
2387 "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
2388 header start)
2389 (setq start (match-end 0))
2390 (add-text-properties (match-beginning 2) (match-end 2)
2391 '(face bold) header))
2392 header)))
2393 (setq header-end (move-marker (make-marker) (point)))
2394 (while t
2395 (setq custom1 custom)
2396 (when (eq rmheader t)
2397 (org-goto-line 1)
2398 (re-search-forward ":" nil t)
2399 (delete-region (match-end 0) (point-at-eol))
2400 (forward-char 1)
2401 (looking-at "-+")
2402 (delete-region (match-end 0) (point-at-eol))
2403 (move-marker header-end (match-end 0)))
2404 (goto-char header-end)
2405 (delete-region (point) (point-max))
2407 ;; Produce all the lines that describe custom commands and prefixes
2408 (setq lines nil)
2409 (while (setq entry (pop custom1))
2410 (setq key (car entry) desc (nth 1 entry)
2411 type (nth 2 entry)
2412 match (nth 3 entry))
2413 (if (> (length key) 1)
2414 (add-to-list 'prefixes (string-to-char key))
2415 (setq line
2416 (format
2417 "%-4s%-14s"
2418 (org-add-props (copy-sequence key)
2419 '(face bold))
2420 (cond
2421 ((string-match "\\S-" desc) desc)
2422 ((eq type 'agenda) "Agenda for current week or day")
2423 ((eq type 'alltodo) "List of all TODO entries")
2424 ((eq type 'search) "Word search")
2425 ((eq type 'stuck) "List of stuck projects")
2426 ((eq type 'todo) "TODO keyword")
2427 ((eq type 'tags) "Tags query")
2428 ((eq type 'tags-todo) "Tags (TODO)")
2429 ((eq type 'tags-tree) "Tags tree")
2430 ((eq type 'todo-tree) "TODO kwd tree")
2431 ((eq type 'occur-tree) "Occur tree")
2432 ((functionp type) (if (symbolp type)
2433 (symbol-name type)
2434 "Lambda expression"))
2435 (t "???"))))
2436 (if org-agenda-menu-show-matcher
2437 (setq line
2438 (concat line ": "
2439 (cond
2440 ((stringp match)
2441 (setq match (copy-sequence match))
2442 (org-add-props match nil 'face 'org-warning))
2443 (match
2444 (format "set of %d commands" (length match)))
2445 (t ""))))
2446 (if (org-string-nw-p match)
2447 (add-text-properties
2448 0 (length line) (list 'help-echo
2449 (concat "Matcher: "match)) line)))
2450 (push line lines)))
2451 (setq lines (nreverse lines))
2452 (when prefixes
2453 (mapc (lambda (x)
2454 (push
2455 (format "%s %s"
2456 (org-add-props (char-to-string x)
2457 nil 'face 'bold)
2458 (or (cdr (assoc (concat selstring
2459 (char-to-string x))
2460 prefix-descriptions))
2461 "Prefix key"))
2462 lines))
2463 prefixes))
2465 ;; Check if we should display in two columns
2466 (if org-agenda-menu-two-column
2467 (progn
2468 (setq n (length lines)
2469 n1 (+ (/ n 2) (mod n 2))
2470 right (nthcdr n1 lines)
2471 left (copy-sequence lines))
2472 (setcdr (nthcdr (1- n1) left) nil))
2473 (setq left lines right nil))
2474 (while left
2475 (insert "\n" (pop left))
2476 (when right
2477 (if (< (current-column) 40)
2478 (move-to-column 40 t)
2479 (insert " "))
2480 (insert (pop right))))
2482 ;; Make the window the right size
2483 (goto-char (point-min))
2484 (if second-time
2485 (if (not (pos-visible-in-window-p (point-max)))
2486 (org-fit-window-to-buffer))
2487 (setq second-time t)
2488 (org-fit-window-to-buffer))
2490 ;; Ask for selection
2491 (message "Press key for agenda command%s:"
2492 (if (or restrict-ok org-agenda-overriding-restriction)
2493 (if org-agenda-overriding-restriction
2494 " (restriction lock active)"
2495 (if restriction
2496 (format " (restricted to %s)" restriction)
2497 " (unrestricted)"))
2498 ""))
2499 (setq c (read-char-exclusive))
2500 (message "")
2501 (cond
2502 ((assoc (char-to-string c) custom)
2503 (setq selstring (concat selstring (char-to-string c)))
2504 (throw 'exit (cons selstring restriction)))
2505 ((memq c prefixes)
2506 (setq selstring (concat selstring (char-to-string c))
2507 prefixes nil
2508 rmheader (or rmheader t)
2509 custom (delq nil (mapcar
2510 (lambda (x)
2511 (if (or (= (length (car x)) 1)
2512 (/= (string-to-char (car x)) c))
2514 (cons (substring (car x) 1) (cdr x))))
2515 custom))))
2516 ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
2517 (message "Restriction is only possible in Org-mode buffers")
2518 (ding) (sit-for 1))
2519 ((eq c ?1)
2520 (org-agenda-remove-restriction-lock 'noupdate)
2521 (setq restriction 'buffer))
2522 ((eq c ?0)
2523 (org-agenda-remove-restriction-lock 'noupdate)
2524 (setq restriction (if region-p 'region 'subtree)))
2525 ((eq c ?<)
2526 (org-agenda-remove-restriction-lock 'noupdate)
2527 (setq restriction
2528 (cond
2529 ((eq restriction 'buffer)
2530 (if region-p 'region 'subtree))
2531 ((memq restriction '(subtree region))
2532 nil)
2533 (t 'buffer))))
2534 ((eq c ?>)
2535 (org-agenda-remove-restriction-lock 'noupdate)
2536 (setq restriction nil))
2537 ((and (equal selstring "") (memq c '(?s ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
2538 (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
2539 ((and (> (length selstring) 0) (eq c ?\d))
2540 (delete-window)
2541 (org-agenda-get-restriction-and-command prefix-descriptions))
2543 ((equal c ?q) (error "Abort"))
2544 (t (error "Invalid key %c" c))))))))
2546 (defvar org-agenda-overriding-arguments nil) ; dynamically scoped parameter
2547 (defvar org-agenda-last-arguments nil
2548 "The arguments of the previous call to `org-agenda'.")
2549 (defun org-agenda-run-series (name series)
2550 (org-let (nth 1 series) '(org-prepare-agenda name))
2551 (let* ((org-agenda-multi t)
2552 (redo (list 'org-agenda-run-series name (list 'quote series)))
2553 (org-agenda-overriding-arguments
2554 (or org-agenda-overriding-arguments
2555 (unless (null (delq nil (get 'org-agenda-redo-command 'last-args)))
2556 (get 'org-agenda-redo-command 'last-args))))
2557 (cmds (car series))
2558 (gprops (nth 1 series))
2559 match ;; The byte compiler incorrectly complains about this. Keep it!
2560 cmd type lprops)
2561 (while (setq cmd (pop cmds))
2562 (setq type (car cmd) match (eval (nth 1 cmd)) lprops (nth 2 cmd))
2563 (cond
2564 ((eq type 'agenda)
2565 (org-let2 gprops lprops
2566 '(call-interactively 'org-agenda-list)))
2567 ((eq type 'alltodo)
2568 (org-let2 gprops lprops
2569 '(call-interactively 'org-todo-list)))
2570 ((eq type 'search)
2571 (org-let2 gprops lprops
2572 '(org-search-view current-prefix-arg match nil)))
2573 ((eq type 'stuck)
2574 (org-let2 gprops lprops
2575 '(call-interactively 'org-agenda-list-stuck-projects)))
2576 ((eq type 'tags)
2577 (org-let2 gprops lprops
2578 '(org-tags-view current-prefix-arg match)))
2579 ((eq type 'tags-todo)
2580 (org-let2 gprops lprops
2581 '(org-tags-view '(4) match)))
2582 ((eq type 'todo)
2583 (org-let2 gprops lprops
2584 '(org-todo-list match)))
2585 ((fboundp type)
2586 (org-let2 gprops lprops
2587 '(funcall type match)))
2588 (t (error "Invalid type in command series"))))
2589 (widen)
2590 (setq org-agenda-redo-command redo)
2591 (put 'org-agenda-redo-command 'last-args org-agenda-last-arguments)
2592 (goto-char (point-min)))
2593 (org-fit-agenda-window)
2594 (org-let (nth 1 series) '(org-finalize-agenda)))
2596 ;;;###autoload
2597 (defmacro org-batch-agenda (cmd-key &rest parameters)
2598 "Run an agenda command in batch mode and send the result to STDOUT.
2599 If CMD-KEY is a string of length 1, it is used as a key in
2600 `org-agenda-custom-commands' and triggers this command. If it is a
2601 longer string it is used as a tags/todo match string.
2602 Parameters are alternating variable names and values that will be bound
2603 before running the agenda command."
2604 (org-eval-in-environment (org-make-parameter-alist parameters)
2605 (if (> (length cmd-key) 2)
2606 (org-tags-view nil cmd-key)
2607 (org-agenda nil cmd-key)))
2608 (set-buffer org-agenda-buffer-name)
2609 (princ (org-encode-for-stdout (buffer-string))))
2610 (def-edebug-spec org-batch-agenda (form &rest sexp))
2612 ;(defun org-encode-for-stdout (string)
2613 ; (if (fboundp 'encode-coding-string)
2614 ; (encode-coding-string string buffer-file-coding-system)
2615 ; string))
2617 (defun org-encode-for-stdout (string)
2618 string)
2620 (defvar org-agenda-info nil)
2622 ;;;###autoload
2623 (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
2624 "Run an agenda command in batch mode and send the result to STDOUT.
2625 If CMD-KEY is a string of length 1, it is used as a key in
2626 `org-agenda-custom-commands' and triggers this command. If it is a
2627 longer string it is used as a tags/todo match string.
2628 Parameters are alternating variable names and values that will be bound
2629 before running the agenda command.
2631 The output gives a line for each selected agenda item. Each
2632 item is a list of comma-separated values, like this:
2634 category,head,type,todo,tags,date,time,extra,priority-l,priority-n
2636 category The category of the item
2637 head The headline, without TODO kwd, TAGS and PRIORITY
2638 type The type of the agenda entry, can be
2639 todo selected in TODO match
2640 tagsmatch selected in tags match
2641 diary imported from diary
2642 deadline a deadline on given date
2643 scheduled scheduled on given date
2644 timestamp entry has timestamp on given date
2645 closed entry was closed on given date
2646 upcoming-deadline warning about deadline
2647 past-scheduled forwarded scheduled item
2648 block entry has date block including g. date
2649 todo The todo keyword, if any
2650 tags All tags including inherited ones, separated by colons
2651 date The relevant date, like 2007-2-14
2652 time The time, like 15:00-16:50
2653 extra Sting with extra planning info
2654 priority-l The priority letter if any was given
2655 priority-n The computed numerical priority
2656 agenda-day The day in the agenda where this is listed"
2657 (org-eval-in-environment (append '((org-agenda-remove-tags t))
2658 (org-make-parameter-alist parameters))
2659 (if (> (length cmd-key) 2)
2660 (org-tags-view nil cmd-key)
2661 (org-agenda nil cmd-key)))
2662 (set-buffer org-agenda-buffer-name)
2663 (let* ((lines (org-split-string (buffer-string) "\n"))
2664 line)
2665 (while (setq line (pop lines))
2666 (catch 'next
2667 (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
2668 (setq org-agenda-info
2669 (org-fix-agenda-info (text-properties-at 0 line)))
2670 (princ
2671 (org-encode-for-stdout
2672 (mapconcat 'org-agenda-export-csv-mapper
2673 '(org-category txt type todo tags date time extra
2674 priority-letter priority agenda-day)
2675 ",")))
2676 (princ "\n")))))
2677 (def-edebug-spec org-batch-agenda-csv (form &rest sexp))
2679 (defun org-fix-agenda-info (props)
2680 "Make sure all properties on an agenda item have a canonical form.
2681 This ensures the export commands can easily use it."
2682 (let (tmp re)
2683 (when (setq tmp (plist-get props 'tags))
2684 (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
2685 (when (setq tmp (plist-get props 'date))
2686 (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
2687 (let ((calendar-date-display-form '(year "-" month "-" day)))
2688 '((format "%4d, %9s %2s, %4s" dayname monthname day year))
2690 (setq tmp (calendar-date-string tmp)))
2691 (setq props (plist-put props 'date tmp)))
2692 (when (setq tmp (plist-get props 'day))
2693 (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
2694 (let ((calendar-date-display-form '(year "-" month "-" day)))
2695 (setq tmp (calendar-date-string tmp)))
2696 (setq props (plist-put props 'day tmp))
2697 (setq props (plist-put props 'agenda-day tmp)))
2698 (when (setq tmp (plist-get props 'txt))
2699 (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
2700 (plist-put props 'priority-letter (match-string 1 tmp))
2701 (setq tmp (replace-match "" t t tmp)))
2702 (when (and (setq re (plist-get props 'org-todo-regexp))
2703 (setq re (concat "\\`\\.*" re " ?"))
2704 (string-match re tmp))
2705 (plist-put props 'todo (match-string 1 tmp))
2706 (setq tmp (replace-match "" t t tmp)))
2707 (plist-put props 'txt tmp)))
2708 props)
2710 (defun org-agenda-export-csv-mapper (prop)
2711 (let ((res (plist-get org-agenda-info prop)))
2712 (setq res
2713 (cond
2714 ((not res) "")
2715 ((stringp res) res)
2716 (t (prin1-to-string res))))
2717 (while (string-match "," res)
2718 (setq res (replace-match ";" t t res)))
2719 (org-trim res)))
2722 ;;;###autoload
2723 (defun org-store-agenda-views (&rest parameters)
2724 (interactive)
2725 (eval (list 'org-batch-store-agenda-views)))
2727 ;;;###autoload
2728 (defmacro org-batch-store-agenda-views (&rest parameters)
2729 "Run all custom agenda commands that have a file argument."
2730 (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
2731 (pop-up-frames nil)
2732 (dir default-directory)
2733 (pars (org-make-parameter-alist parameters))
2734 cmd thiscmdkey files opts cmd-or-set)
2735 (save-window-excursion
2736 (while cmds
2737 (setq cmd (pop cmds)
2738 thiscmdkey (car cmd)
2739 cmd-or-set (nth 2 cmd)
2740 opts (nth (if (listp cmd-or-set) 3 4) cmd)
2741 files (nth (if (listp cmd-or-set) 4 5) cmd))
2742 (if (stringp files) (setq files (list files)))
2743 (when files
2744 (org-eval-in-environment (append org-agenda-exporter-settings
2745 opts pars)
2746 (org-agenda nil thiscmdkey))
2747 (set-buffer org-agenda-buffer-name)
2748 (while files
2749 (org-eval-in-environment (append org-agenda-exporter-settings
2750 opts pars)
2751 (org-write-agenda (expand-file-name (pop files) dir) nil t)))
2752 (and (get-buffer org-agenda-buffer-name)
2753 (kill-buffer org-agenda-buffer-name)))))))
2754 (def-edebug-spec org-batch-store-agenda-views (&rest sexp))
2756 (defun org-agenda-mark-header-line (pos)
2757 "Mark the line at POS as an agenda structure header."
2758 (save-excursion
2759 (goto-char pos)
2760 (put-text-property (point-at-bol) (point-at-eol)
2761 'org-agenda-structural-header t)
2762 (when org-agenda-title-append
2763 (put-text-property (point-at-bol) (point-at-eol)
2764 'org-agenda-title-append org-agenda-title-append))))
2766 (defvar org-mobile-creating-agendas)
2767 (defun org-write-agenda (file &optional open nosettings)
2768 "Write the current buffer (an agenda view) as a file.
2769 Depending on the extension of the file name, plain text (.txt),
2770 HTML (.html or .htm) or Postscript (.ps) is produced.
2771 If the extension is .ics, run icalendar export over all files used
2772 to construct the agenda and limit the export to entries listed in the
2773 agenda now.
2774 With prefix argument OPEN, open the new file immediately.
2775 If NOSETTINGS is given, do not scope the settings of
2776 `org-agenda-exporter-settings' into the export commands. This is used when
2777 the settings have already been scoped and we do not wish to overrule other,
2778 higher priority settings."
2779 (interactive "FWrite agenda to file: \nP")
2780 (if (not (file-writable-p file))
2781 (error "Cannot write agenda to file %s" file))
2782 (org-let (if nosettings nil org-agenda-exporter-settings)
2783 '(save-excursion
2784 (save-window-excursion
2785 (org-agenda-mark-filtered-text)
2786 (let ((bs (copy-sequence (buffer-string))) beg)
2787 (org-agenda-unmark-filtered-text)
2788 (with-temp-buffer
2789 (rename-buffer "Agenda View" t)
2790 (set-buffer-modified-p nil)
2791 (insert bs)
2792 (org-agenda-remove-marked-text 'org-filtered)
2793 (while (setq beg (text-property-any (point-min) (point-max)
2794 'org-filtered t))
2795 (delete-region
2796 beg (or (next-single-property-change beg 'org-filtered)
2797 (point-max))))
2798 (run-hooks 'org-agenda-before-write-hook)
2799 (cond
2800 ((org-bound-and-true-p org-mobile-creating-agendas)
2801 (org-mobile-write-agenda-for-mobile file))
2802 ((string-match "\\.html?\\'" file)
2803 (require 'htmlize)
2804 (set-buffer (htmlize-buffer (current-buffer)))
2806 (when (and org-agenda-export-html-style
2807 (string-match "<style>" org-agenda-export-html-style))
2808 ;; replace <style> section with org-agenda-export-html-style
2809 (goto-char (point-min))
2810 (kill-region (- (search-forward "<style") 6)
2811 (search-forward "</style>"))
2812 (insert org-agenda-export-html-style))
2813 (write-file file)
2814 (kill-buffer (current-buffer))
2815 (message "HTML written to %s" file))
2816 ((string-match "\\.ps\\'" file)
2817 (require 'ps-print)
2818 (ps-print-buffer-with-faces file)
2819 (message "Postscript written to %s" file))
2820 ((string-match "\\.pdf\\'" file)
2821 (require 'ps-print)
2822 (ps-print-buffer-with-faces
2823 (concat (file-name-sans-extension file) ".ps"))
2824 (call-process "ps2pdf" nil nil nil
2825 (expand-file-name
2826 (concat (file-name-sans-extension file) ".ps"))
2827 (expand-file-name file))
2828 (delete-file (concat (file-name-sans-extension file) ".ps"))
2829 (message "PDF written to %s" file))
2830 ((string-match "\\.ics\\'" file)
2831 (require 'org-icalendar)
2832 (let ((org-agenda-marker-table
2833 (org-create-marker-find-array
2834 (org-agenda-collect-markers)))
2835 (org-icalendar-verify-function 'org-check-agenda-marker-table)
2836 (org-combined-agenda-icalendar-file file))
2837 (apply 'org-export-icalendar 'combine
2838 (org-agenda-files nil 'ifmode))))
2840 (let ((bs (buffer-string)))
2841 (find-file file)
2842 (erase-buffer)
2843 (insert bs)
2844 (save-buffer 0)
2845 (kill-buffer (current-buffer))
2846 (message "Plain text written to %s" file))))))))
2847 (set-buffer org-agenda-buffer-name))
2848 (when open (org-open-file file)))
2850 (defvar org-agenda-filter-overlays nil)
2852 (defun org-agenda-mark-filtered-text ()
2853 "Mark all text hidden by filtering with a text property."
2854 (let ((inhibit-read-only t))
2855 (mapc
2856 (lambda (o)
2857 (when (equal (overlay-buffer o) (current-buffer))
2858 (put-text-property
2859 (overlay-start o) (overlay-end o)
2860 'org-filtered t)))
2861 org-agenda-filter-overlays)))
2863 (defun org-agenda-unmark-filtered-text ()
2864 "Remove the filtering text property."
2865 (let ((inhibit-read-only t))
2866 (remove-text-properties (point-min) (point-max) '(org-filtered t))))
2868 (defun org-agenda-remove-marked-text (property &optional value)
2869 "Delete all text marked with VALUE of PROPERTY.
2870 VALUE defaults to t."
2871 (let (beg)
2872 (setq value (or value t))
2873 (while (setq beg (text-property-any (point-min) (point-max)
2874 property value))
2875 (delete-region
2876 beg (or (next-single-property-change beg 'org-filtered)
2877 (point-max))))))
2879 (defun org-agenda-add-entry-text ()
2880 "Add entry text to agenda lines.
2881 This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
2882 entry text following headings shown in the agenda.
2883 Drawers will be excluded, also the line with scheduling/deadline info."
2884 (when (and (> org-agenda-add-entry-text-maxlines 0)
2885 (not (org-bound-and-true-p org-mobile-creating-agendas)))
2886 (let (m txt)
2887 (goto-char (point-min))
2888 (while (not (eobp))
2889 (if (not (setq m (org-get-at-bol 'org-hd-marker)))
2890 (beginning-of-line 2)
2891 (setq txt (org-agenda-get-some-entry-text
2892 m org-agenda-add-entry-text-maxlines " > "))
2893 (end-of-line 1)
2894 (if (string-match "\\S-" txt)
2895 (insert "\n" txt)
2896 (or (eobp) (forward-char 1))))))))
2898 (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
2899 &rest keep)
2900 "Extract entry text from MARKER, at most N-LINES lines.
2901 This will ignore drawers etc, just get the text.
2902 If INDENT is given, prefix every line with this string. If KEEP is
2903 given, it is a list of symbols, defining stuff that should not be
2904 removed from the entry content. Currently only `planning' is allowed here."
2905 (let (txt drawer-re kwd-time-re ind)
2906 (save-excursion
2907 (with-current-buffer (marker-buffer marker)
2908 (if (not (eq major-mode 'org-mode))
2909 (setq txt "")
2910 (save-excursion
2911 (save-restriction
2912 (widen)
2913 (goto-char marker)
2914 (end-of-line 1)
2915 (setq txt (buffer-substring
2916 (min (1+ (point)) (point-max))
2917 (progn (outline-next-heading) (point)))
2918 drawer-re org-drawer-regexp
2919 kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
2920 ".*\n?"))
2921 (with-temp-buffer
2922 (insert txt)
2923 (when org-agenda-add-entry-text-descriptive-links
2924 (goto-char (point-min))
2925 (while (org-activate-bracket-links (point-max))
2926 (add-text-properties (match-beginning 0) (match-end 0)
2927 '(face org-link))))
2928 (goto-char (point-min))
2929 (while (re-search-forward org-bracket-link-regexp (point-max) t)
2930 (set-text-properties (match-beginning 0) (match-end 0)
2931 nil))
2932 (goto-char (point-min))
2933 (while (re-search-forward drawer-re nil t)
2934 (delete-region
2935 (match-beginning 0)
2936 (progn (re-search-forward
2937 "^[ \t]*:END:.*\n?" nil 'move)
2938 (point))))
2939 (unless (member 'planning keep)
2940 (goto-char (point-min))
2941 (while (re-search-forward kwd-time-re nil t)
2942 (replace-match "")))
2943 (goto-char (point-min))
2944 (when org-agenda-entry-text-exclude-regexps
2945 (let ((re-list org-agenda-entry-text-exclude-regexps) re)
2946 (while (setq re (pop re-list))
2947 (goto-char (point-min))
2948 (while (re-search-forward re nil t)
2949 (replace-match "")))))
2950 (goto-char (point-max))
2951 (skip-chars-backward " \t\n")
2952 (if (looking-at "[ \t\n]+\\'") (replace-match ""))
2954 ;; find and remove min common indentation
2955 (goto-char (point-min))
2956 (untabify (point-min) (point-max))
2957 (setq ind (org-get-indentation))
2958 (while (not (eobp))
2959 (unless (looking-at "[ \t]*$")
2960 (setq ind (min ind (org-get-indentation))))
2961 (beginning-of-line 2))
2962 (goto-char (point-min))
2963 (while (not (eobp))
2964 (unless (looking-at "[ \t]*$")
2965 (move-to-column ind)
2966 (delete-region (point-at-bol) (point)))
2967 (beginning-of-line 2))
2969 (run-hooks 'org-agenda-entry-text-cleanup-hook)
2971 (goto-char (point-min))
2972 (when indent
2973 (while (and (not (eobp)) (re-search-forward "^" nil t))
2974 (replace-match indent t t)))
2975 (goto-char (point-min))
2976 (while (looking-at "[ \t]*\n") (replace-match ""))
2977 (goto-char (point-max))
2978 (when (> (org-current-line)
2979 n-lines)
2980 (org-goto-line (1+ n-lines))
2981 (backward-char 1))
2982 (setq txt (buffer-substring (point-min) (point)))))))))
2983 txt))
2985 (defun org-agenda-collect-markers ()
2986 "Collect the markers pointing to entries in the agenda buffer."
2987 (let (m markers)
2988 (save-excursion
2989 (goto-char (point-min))
2990 (while (not (eobp))
2991 (when (setq m (or (org-get-at-bol 'org-hd-marker)
2992 (org-get-at-bol 'org-marker)))
2993 (push m markers))
2994 (beginning-of-line 2)))
2995 (nreverse markers)))
2997 (defun org-create-marker-find-array (marker-list)
2998 "Create a alist of files names with all marker positions in that file."
2999 (let (f tbl m a p)
3000 (while (setq m (pop marker-list))
3001 (setq p (marker-position m)
3002 f (buffer-file-name (or (buffer-base-buffer
3003 (marker-buffer m))
3004 (marker-buffer m))))
3005 (if (setq a (assoc f tbl))
3006 (push (marker-position m) (cdr a))
3007 (push (list f p) tbl)))
3008 (mapcar (lambda (x) (setcdr x (sort (copy-sequence (cdr x)) '<)) x)
3009 tbl)))
3011 (defvar org-agenda-marker-table nil) ; dynamically scoped parameter
3012 (defun org-check-agenda-marker-table ()
3013 "Check of the current entry is on the marker list."
3014 (let ((file (buffer-file-name (or (buffer-base-buffer) (current-buffer))))
3016 (and (setq a (assoc file org-agenda-marker-table))
3017 (save-match-data
3018 (save-excursion
3019 (org-back-to-heading t)
3020 (member (point) (cdr a)))))))
3022 (defun org-check-for-org-mode ()
3023 "Make sure current buffer is in org-mode. Error if not."
3024 (or (eq major-mode 'org-mode)
3025 (error "Cannot execute org-mode agenda command on buffer in %s"
3026 major-mode)))
3028 (defun org-fit-agenda-window ()
3029 "Fit the window to the buffer size."
3030 (and (memq org-agenda-window-setup '(reorganize-frame))
3031 (fboundp 'fit-window-to-buffer)
3032 (org-fit-window-to-buffer
3034 (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
3035 (floor (* (frame-height) (car org-agenda-window-frame-fractions))))))
3037 ;;; Agenda prepare and finalize
3039 (defvar org-agenda-multi nil) ; dynamically scoped
3040 (defvar org-agenda-buffer-name "*Org Agenda*")
3041 (defvar org-pre-agenda-window-conf nil)
3042 (defvar org-agenda-columns-active nil)
3043 (defvar org-agenda-name nil)
3044 (defvar org-agenda-filter nil)
3045 (defvar org-agenda-filter-while-redo nil)
3046 (defvar org-agenda-filter-preset nil
3047 "A preset of the tags filter used for secondary agenda filtering.
3048 This must be a list of strings, each string must be a single tag preceded
3049 by \"+\" or \"-\".
3050 This variable should not be set directly, but agenda custom commands can
3051 bind it in the options section. The preset filter is a global property of
3052 the entire agenda view. In a block agenda, it will not work reliably to
3053 define a filter for one of the individual blocks. You need to set it in
3054 the global options and expect it to be applied to the entire view.")
3056 (defun org-prepare-agenda (&optional name)
3057 (setq org-todo-keywords-for-agenda nil)
3058 (setq org-done-keywords-for-agenda nil)
3059 (setq org-drawers-for-agenda nil)
3060 (unless org-agenda-persistent-filter
3061 (setq org-agenda-filter nil))
3062 (put 'org-agenda-filter :preset-filter org-agenda-filter-preset)
3063 (if org-agenda-multi
3064 (progn
3065 (setq buffer-read-only nil)
3066 (goto-char (point-max))
3067 (unless (or (bobp) org-agenda-compact-blocks
3068 (not org-agenda-block-separator))
3069 (insert "\n"
3070 (if (stringp org-agenda-block-separator)
3071 org-agenda-block-separator
3072 (make-string (window-width) org-agenda-block-separator))
3073 "\n"))
3074 (narrow-to-region (point) (point-max)))
3075 (org-agenda-reset-markers)
3076 (setq org-agenda-contributing-files nil)
3077 (setq org-agenda-columns-active nil)
3078 (org-prepare-agenda-buffers (org-agenda-files nil 'ifmode))
3079 (setq org-todo-keywords-for-agenda
3080 (org-uniquify org-todo-keywords-for-agenda))
3081 (setq org-done-keywords-for-agenda
3082 (org-uniquify org-done-keywords-for-agenda))
3083 (setq org-drawers-for-agenda (org-uniquify org-drawers-for-agenda))
3084 (let* ((abuf (get-buffer-create org-agenda-buffer-name))
3085 (awin (get-buffer-window abuf)))
3086 (cond
3087 ((equal (current-buffer) abuf) nil)
3088 (awin (select-window awin))
3089 ((not (setq org-pre-agenda-window-conf (current-window-configuration))))
3090 ((equal org-agenda-window-setup 'current-window)
3091 (org-pop-to-buffer-same-window abuf))
3092 ((equal org-agenda-window-setup 'other-window)
3093 (org-switch-to-buffer-other-window abuf))
3094 ((equal org-agenda-window-setup 'other-frame)
3095 (switch-to-buffer-other-frame abuf))
3096 ((equal org-agenda-window-setup 'reorganize-frame)
3097 (delete-other-windows)
3098 (org-switch-to-buffer-other-window abuf)))
3099 ;; additional test in case agenda is invoked from within agenda
3100 ;; buffer via elisp link
3101 (unless (equal (current-buffer) abuf)
3102 (org-pop-to-buffer-same-window abuf)))
3103 (setq buffer-read-only nil)
3104 (let ((inhibit-read-only t)) (erase-buffer))
3105 (org-agenda-mode)
3106 (and name (not org-agenda-name)
3107 (org-set-local 'org-agenda-name name)))
3108 (setq buffer-read-only nil))
3110 (defun org-finalize-agenda ()
3111 "Finishing touch for the agenda buffer, called just before displaying it."
3112 (unless org-agenda-multi
3113 (save-excursion
3114 (let ((inhibit-read-only t))
3115 (goto-char (point-min))
3116 (while (org-activate-bracket-links (point-max))
3117 (add-text-properties (match-beginning 0) (match-end 0)
3118 '(face org-link)))
3119 (org-agenda-align-tags)
3120 (unless org-agenda-with-colors
3121 (remove-text-properties (point-min) (point-max) '(face nil))))
3122 (if (and (boundp 'org-agenda-overriding-columns-format)
3123 org-agenda-overriding-columns-format)
3124 (org-set-local 'org-agenda-overriding-columns-format
3125 org-agenda-overriding-columns-format))
3126 (if (and (boundp 'org-agenda-view-columns-initially)
3127 org-agenda-view-columns-initially)
3128 (org-agenda-columns))
3129 (when org-agenda-fontify-priorities
3130 (org-agenda-fontify-priorities))
3131 (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
3132 (org-agenda-dim-blocked-tasks))
3133 (org-agenda-mark-clocking-task)
3134 (when org-agenda-entry-text-mode
3135 (org-agenda-entry-text-hide)
3136 (org-agenda-entry-text-show))
3137 (if (functionp 'org-habit-insert-consistency-graphs)
3138 (org-habit-insert-consistency-graphs))
3139 (run-hooks 'org-finalize-agenda-hook)
3140 (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
3141 (when (or org-agenda-filter (get 'org-agenda-filter :preset-filter))
3142 (org-agenda-filter-apply org-agenda-filter))
3145 (defun org-agenda-mark-clocking-task ()
3146 "Mark the current clock entry in the agenda if it is present."
3147 (mapc (lambda (o)
3148 (if (eq (overlay-get o 'type) 'org-agenda-clocking)
3149 (delete-overlay o)))
3150 (overlays-in (point-min) (point-max)))
3151 (when (marker-buffer org-clock-hd-marker)
3152 (save-excursion
3153 (goto-char (point-min))
3154 (let (s ov)
3155 (while (setq s (next-single-property-change (point) 'org-hd-marker))
3156 (goto-char s)
3157 (when (equal (org-get-at-bol 'org-hd-marker)
3158 org-clock-hd-marker)
3159 (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
3160 (overlay-put ov 'type 'org-agenda-clocking)
3161 (overlay-put ov 'face 'org-agenda-clocking)
3162 (overlay-put ov 'help-echo
3163 "The clock is running in this item")))))))
3165 (defun org-agenda-fontify-priorities ()
3166 "Make highest priority lines bold, and lowest italic."
3167 (interactive)
3168 (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
3169 (delete-overlay o)))
3170 (overlays-in (point-min) (point-max)))
3171 (save-excursion
3172 (let ((inhibit-read-only t)
3173 b e p ov h l)
3174 (goto-char (point-min))
3175 (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
3176 (setq h (or (get-char-property (point) 'org-highest-priority)
3177 org-highest-priority)
3178 l (or (get-char-property (point) 'org-lowest-priority)
3179 org-lowest-priority)
3180 p (string-to-char (match-string 1))
3181 b (match-beginning 0)
3182 e (if (eq org-agenda-fontify-priorities 'cookies)
3183 (match-end 0)
3184 (point-at-eol))
3185 ov (make-overlay b e))
3186 (overlay-put
3187 ov 'face
3188 (cond ((org-face-from-face-or-color
3189 'priority nil
3190 (cdr (assoc p org-priority-faces))))
3191 ((and (listp org-agenda-fontify-priorities)
3192 (org-face-from-face-or-color
3193 'priority nil
3194 (cdr (assoc p org-agenda-fontify-priorities)))))
3195 ((equal p l) 'italic)
3196 ((equal p h) 'bold)))
3197 (overlay-put ov 'org-type 'org-priority)))))
3199 (defun org-agenda-dim-blocked-tasks ()
3200 "Dim currently blocked TODO's in the agenda display."
3201 (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-blocked-todo)
3202 (delete-overlay o)))
3203 (overlays-in (point-min) (point-max)))
3204 (save-excursion
3205 (let ((inhibit-read-only t)
3206 (org-depend-tag-blocked nil)
3207 (invis (eq org-agenda-dim-blocked-tasks 'invisible))
3208 org-blocked-by-checkboxes
3209 invis1 b e p ov h l)
3210 (goto-char (point-min))
3211 (while (let ((pos (next-single-property-change (point) 'todo-state)))
3212 (and pos (goto-char (1+ pos))))
3213 (setq org-blocked-by-checkboxes nil invis1 invis)
3214 (let ((marker (org-get-at-bol 'org-hd-marker)))
3215 (when (and marker
3216 (with-current-buffer (marker-buffer marker)
3217 (save-excursion (goto-char marker)
3218 (org-entry-blocked-p))))
3219 (if org-blocked-by-checkboxes (setq invis1 nil))
3220 (setq b (if invis1
3221 (max (point-min) (1- (point-at-bol)))
3222 (point-at-bol))
3223 e (point-at-eol)
3224 ov (make-overlay b e))
3225 (if invis1
3226 (overlay-put ov 'invisible t)
3227 (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
3228 (overlay-put ov 'org-type 'org-blocked-todo)))))))
3230 (defvar org-agenda-skip-function nil
3231 "Function to be called at each match during agenda construction.
3232 If this function returns nil, the current match should not be skipped.
3233 Otherwise, the function must return a position from where the search
3234 should be continued.
3235 This may also be a Lisp form, it will be evaluated.
3236 Never set this variable using `setq' or so, because then it will apply
3237 to all future agenda commands. If you do want a global skipping condition,
3238 use the option `org-agenda-skip-function-global' instead.
3239 The correct usage for `org-agenda-skip-function' is to bind it with
3240 `let' to scope it dynamically into the agenda-constructing command.
3241 A good way to set it is through options in `org-agenda-custom-commands'.")
3243 (defun org-agenda-skip ()
3244 "Throw to `:skip' in places that should be skipped.
3245 Also moves point to the end of the skipped region, so that search can
3246 continue from there."
3247 (let ((p (point-at-bol)) to)
3248 (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
3249 (get-text-property p :org-archived)
3250 (org-end-of-subtree t)
3251 (throw :skip t))
3252 (and org-agenda-skip-comment-trees
3253 (get-text-property p :org-comment)
3254 (org-end-of-subtree t)
3255 (throw :skip t))
3256 (if (equal (char-after p) ?#) (throw :skip t))
3257 (when (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
3258 (org-agenda-skip-eval org-agenda-skip-function)))
3259 (goto-char to)
3260 (throw :skip t))))
3262 (defun org-agenda-skip-eval (form)
3263 "If FORM is a function or a list, call (or eval) is and return result.
3264 `save-excursion' and `save-match-data' are wrapped around the call, so point
3265 and match data are returned to the previous state no matter what these
3266 functions do."
3267 (let (fp)
3268 (and form
3269 (or (setq fp (functionp form))
3270 (consp form))
3271 (save-excursion
3272 (save-match-data
3273 (if fp
3274 (funcall form)
3275 (eval form)))))))
3277 (defvar org-agenda-markers nil
3278 "List of all currently active markers created by `org-agenda'.")
3279 (defvar org-agenda-last-marker-time (org-float-time)
3280 "Creation time of the last agenda marker.")
3282 (defun org-agenda-new-marker (&optional pos)
3283 "Return a new agenda marker.
3284 Org-mode keeps a list of these markers and resets them when they are
3285 no longer in use."
3286 (let ((m (copy-marker (or pos (point)))))
3287 (setq org-agenda-last-marker-time (org-float-time))
3288 (push m org-agenda-markers)
3291 (defun org-agenda-reset-markers ()
3292 "Reset markers created by `org-agenda'."
3293 (while org-agenda-markers
3294 (move-marker (pop org-agenda-markers) nil)))
3296 (defun org-agenda-save-markers-for-cut-and-paste (beg end)
3297 "Save relative positions of markers in region."
3298 (mapc (lambda (m) (org-check-and-save-marker m beg end))
3299 org-agenda-markers))
3301 ;;; Entry text mode
3303 (defun org-agenda-entry-text-show-here ()
3304 "Add some text from the entry as context to the current line."
3305 (let (m txt o)
3306 (setq m (org-get-at-bol 'org-hd-marker))
3307 (unless (marker-buffer m)
3308 (error "No marker points to an entry here"))
3309 (setq txt (concat "\n" (org-no-properties
3310 (org-agenda-get-some-entry-text
3311 m org-agenda-entry-text-maxlines " > "))))
3312 (when (string-match "\\S-" txt)
3313 (setq o (make-overlay (point-at-bol) (point-at-eol)))
3314 (overlay-put o 'evaporate t)
3315 (overlay-put o 'org-overlay-type 'agenda-entry-content)
3316 (overlay-put o 'after-string txt))))
3318 (defun org-agenda-entry-text-show ()
3319 "Add entry context for all agenda lines."
3320 (interactive)
3321 (save-excursion
3322 (goto-char (point-max))
3323 (beginning-of-line 1)
3324 (while (not (bobp))
3325 (when (org-get-at-bol 'org-hd-marker)
3326 (org-agenda-entry-text-show-here))
3327 (beginning-of-line 0))))
3329 (defun org-agenda-entry-text-hide ()
3330 "Remove any shown entry context."
3331 (delq nil
3332 (mapcar (lambda (o)
3333 (if (eq (overlay-get o 'org-overlay-type)
3334 'agenda-entry-content)
3335 (progn (delete-overlay o) t)))
3336 (overlays-in (point-min) (point-max)))))
3338 (defun org-agenda-get-day-face (date)
3339 "Return the face DATE should be displayed with."
3340 (or (and (functionp org-agenda-day-face-function)
3341 (funcall org-agenda-day-face-function date))
3342 (cond ((org-agenda-todayp date)
3343 'org-agenda-date-today)
3344 ((member (calendar-day-of-week date) org-agenda-weekend-days)
3345 'org-agenda-date-weekend)
3346 (t 'org-agenda-date))))
3348 ;;; Agenda timeline
3350 (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
3352 (defun org-timeline (&optional dotodo)
3353 "Show a time-sorted view of the entries in the current org file.
3354 Only entries with a time stamp of today or later will be listed. With
3355 \\[universal-argument] prefix, all unfinished TODO items will also be shown,
3356 under the current date.
3357 If the buffer contains an active region, only check the region for
3358 dates."
3359 (interactive "P")
3360 (org-compile-prefix-format 'timeline)
3361 (org-set-sorting-strategy 'timeline)
3362 (let* ((dopast t)
3363 (doclosed org-agenda-show-log)
3364 (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
3365 (current-buffer))))
3366 (date (calendar-current-date))
3367 (beg (if (org-region-active-p) (region-beginning) (point-min)))
3368 (end (if (org-region-active-p) (region-end) (point-max)))
3369 (day-numbers (org-get-all-dates beg end 'no-ranges
3370 t doclosed ; always include today
3371 org-timeline-show-empty-dates))
3372 (org-deadline-warning-days 0)
3373 (org-agenda-only-exact-dates t)
3374 (today (org-today))
3375 (past t)
3376 args
3377 s e rtn d emptyp)
3378 (setq org-agenda-redo-command
3379 (list 'progn
3380 (list 'org-switch-to-buffer-other-window (current-buffer))
3381 (list 'org-timeline (list 'quote dotodo))))
3382 (if (not dopast)
3383 ;; Remove past dates from the list of dates.
3384 (setq day-numbers (delq nil (mapcar (lambda(x)
3385 (if (>= x today) x nil))
3386 day-numbers))))
3387 (org-prepare-agenda (concat "Timeline " (file-name-nondirectory entry)))
3388 (if doclosed (push :closed args))
3389 (push :timestamp args)
3390 (push :deadline args)
3391 (push :scheduled args)
3392 (push :sexp args)
3393 (if dotodo (push :todo args))
3394 (insert "Timeline of file " entry "\n")
3395 (add-text-properties (point-min) (point)
3396 (list 'face 'org-agenda-structure))
3397 (org-agenda-mark-header-line (point-min))
3398 (while (setq d (pop day-numbers))
3399 (if (and (listp d) (eq (car d) :omitted))
3400 (progn
3401 (setq s (point))
3402 (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
3403 (put-text-property s (1- (point)) 'face 'org-agenda-structure))
3404 (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
3405 (if (and (>= d today)
3406 dopast
3407 past)
3408 (progn
3409 (setq past nil)
3410 (insert (make-string 79 ?-) "\n")))
3411 (setq date (calendar-gregorian-from-absolute d))
3412 (setq s (point))
3413 (setq rtn (and (not emptyp)
3414 (apply 'org-agenda-get-day-entries entry
3415 date args)))
3416 (if (or rtn (equal d today) org-timeline-show-empty-dates)
3417 (progn
3418 (insert
3419 (if (stringp org-agenda-format-date)
3420 (format-time-string org-agenda-format-date
3421 (org-time-from-absolute date))
3422 (funcall org-agenda-format-date date))
3423 "\n")
3424 (put-text-property s (1- (point)) 'face
3425 (org-agenda-get-day-face date))
3426 (put-text-property s (1- (point)) 'org-date-line t)
3427 (put-text-property s (1- (point)) 'org-agenda-date-header t)
3428 (if (equal d today)
3429 (put-text-property s (1- (point)) 'org-today t))
3430 (and rtn (insert (org-finalize-agenda-entries rtn) "\n"))
3431 (put-text-property s (1- (point)) 'day d)))))
3432 (goto-char (point-min))
3433 (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
3434 (point-min)))
3435 (add-text-properties (point-min) (point-max) '(org-agenda-type timeline))
3436 (org-finalize-agenda)
3437 (setq buffer-read-only t)))
3439 (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
3440 "Return a list of all relevant day numbers from BEG to END buffer positions.
3441 If NO-RANGES is non-nil, include only the start and end dates of a range,
3442 not every single day in the range. If FORCE-TODAY is non-nil, make
3443 sure that TODAY is included in the list. If INACTIVE is non-nil, also
3444 inactive time stamps (those in square brackets) are included.
3445 When EMPTY is non-nil, also include days without any entries."
3446 (let ((re (concat
3447 (if pre-re pre-re "")
3448 (if inactive org-ts-regexp-both org-ts-regexp)))
3449 dates dates1 date day day1 day2 ts1 ts2 pos)
3450 (if force-today
3451 (setq dates (list (org-today))))
3452 (save-excursion
3453 (goto-char beg)
3454 (while (re-search-forward re end t)
3455 (setq day (time-to-days (org-time-string-to-time
3456 (substring (match-string 1) 0 10)
3457 (current-buffer) (match-beginning 0))))
3458 (or (memq day dates) (push day dates)))
3459 (unless no-ranges
3460 (goto-char beg)
3461 (while (re-search-forward org-tr-regexp end t)
3462 (setq pos (match-beginning 0))
3463 (setq ts1 (substring (match-string 1) 0 10)
3464 ts2 (substring (match-string 2) 0 10)
3465 day1 (time-to-days (org-time-string-to-time
3466 ts1 (current-buffer) pos))
3467 day2 (time-to-days (org-time-string-to-time
3468 ts2 (current-buffer) pos)))
3469 (while (< (setq day1 (1+ day1)) day2)
3470 (or (memq day1 dates) (push day1 dates)))))
3471 (setq dates (sort dates '<))
3472 (when empty
3473 (while (setq day (pop dates))
3474 (setq day2 (car dates))
3475 (push day dates1)
3476 (when (and day2 empty)
3477 (if (or (eq empty t)
3478 (and (numberp empty) (<= (- day2 day) empty)))
3479 (while (< (setq day (1+ day)) day2)
3480 (push (list day) dates1))
3481 (push (cons :omitted (- day2 day)) dates1))))
3482 (setq dates (nreverse dates1)))
3483 dates)))
3485 ;;; Agenda Daily/Weekly
3487 (defvar org-agenda-start-day nil ; dynamically scoped parameter
3488 "Start day for the agenda view.
3489 Custom commands can set this variable in the options section.")
3490 (defvar org-starting-day nil) ; local variable in the agenda buffer
3491 (defvar org-agenda-current-span nil
3492 "The current span used in the agenda view.") ; local variable in the agenda buffer
3493 (defvar org-arg-loc nil) ; local variable
3495 (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
3496 "List of types searched for when creating the daily/weekly agenda.
3497 This variable is a list of symbols that controls the types of
3498 items that appear in the daily/weekly agenda. Allowed symbols in this
3499 list are are
3501 :timestamp List items containing a date stamp or date range matching
3502 the selected date. This includes sexp entries in
3503 angular brackets.
3505 :sexp List entries resulting from plain diary-like sexps.
3507 :deadline List deadline due on that date. When the date is today,
3508 also list any deadlines past due, or due within
3509 `org-deadline-warning-days'. `:deadline' must appear before
3510 `:scheduled' if the setting of
3511 `org-agenda-skip-scheduled-if-deadline-is-shown' is to have
3512 any effect.
3514 :scheduled List all items which are scheduled for the given date.
3515 The diary for *today* also contains items which were
3516 scheduled earlier and are not yet marked DONE.
3518 By default, all four types are turned on.
3520 Never set this variable globally using `setq', because then it
3521 will apply to all future agenda commands. Instead, bind it with
3522 `let' to scope it dynamically into the agenda-constructing
3523 command. A good way to set it is through options in
3524 `org-agenda-custom-commands'. For a more flexible (though
3525 somewhat less efficient) way of determining what is included in
3526 the daily/weekly agenda, see `org-agenda-skip-function'.")
3528 ;;;###autoload
3529 (defun org-agenda-list (&optional arg start-day span)
3530 "Produce a daily/weekly view from all files in variable `org-agenda-files'.
3531 The view will be for the current day or week, but from the overview buffer
3532 you will be able to go to other days/weeks.
3534 With a numeric prefix argument in an interactive call, the agenda will
3535 span ARG days. Lisp programs should instead specify SPAN to change
3536 the number of days. SPAN defaults to `org-agenda-span'.
3538 START-DAY defaults to TODAY, or to the most recent match for the weekday
3539 given in `org-agenda-start-on-weekday'."
3540 (interactive "P")
3541 (if (and (integerp arg) (> arg 0))
3542 (setq span arg arg nil))
3543 (setq start-day (or start-day org-agenda-start-day))
3544 (if org-agenda-overriding-arguments
3545 (setq arg (car org-agenda-overriding-arguments)
3546 start-day (nth 1 org-agenda-overriding-arguments)
3547 span (nth 2 org-agenda-overriding-arguments)))
3548 (if (stringp start-day)
3549 ;; Convert to an absolute day number
3550 (setq start-day (time-to-days (org-read-date nil t start-day))))
3551 (setq org-agenda-last-arguments (list arg start-day span))
3552 (org-compile-prefix-format 'agenda)
3553 (org-set-sorting-strategy 'agenda)
3554 (let* ((span (org-agenda-ndays-to-span
3555 (or span org-agenda-ndays org-agenda-span)))
3556 (today (org-today))
3557 (sd (or start-day today))
3558 (ndays (org-agenda-span-to-ndays span sd))
3559 (org-agenda-start-on-weekday
3560 (if (eq ndays 7)
3561 org-agenda-start-on-weekday))
3562 (thefiles (org-agenda-files nil 'ifmode))
3563 (files thefiles)
3564 (start (if (or (null org-agenda-start-on-weekday)
3565 (< ndays 7))
3567 (let* ((nt (calendar-day-of-week
3568 (calendar-gregorian-from-absolute sd)))
3569 (n1 org-agenda-start-on-weekday)
3570 (d (- nt n1)))
3571 (- sd (+ (if (< d 0) 7 0) d)))))
3572 (day-numbers (list start))
3573 (day-cnt 0)
3574 (inhibit-redisplay (not debug-on-error))
3575 s e rtn rtnall file date d start-pos end-pos todayp
3576 clocktable-start clocktable-end filter)
3577 (setq org-agenda-redo-command
3578 (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span)))
3579 (dotimes (n (1- ndays))
3580 (push (1+ (car day-numbers)) day-numbers))
3581 (setq day-numbers (nreverse day-numbers))
3582 (setq clocktable-start (car day-numbers)
3583 clocktable-end (1+ (or (org-last day-numbers) 0)))
3584 (org-prepare-agenda "Day/Week")
3585 (org-set-local 'org-starting-day (car day-numbers))
3586 (org-set-local 'org-arg-loc arg)
3587 (org-set-local 'org-agenda-current-span (org-agenda-ndays-to-span span))
3588 (unless org-agenda-compact-blocks
3589 (let* ((d1 (car day-numbers))
3590 (d2 (org-last day-numbers))
3591 (w1 (org-days-to-iso-week d1))
3592 (w2 (org-days-to-iso-week d2)))
3593 (setq s (point))
3594 (if org-agenda-overriding-header
3595 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
3596 nil 'face 'org-agenda-structure) "\n")
3597 (insert (org-agenda-span-name span)
3598 "-agenda"
3599 (if (< (- d2 d1) 350)
3600 (if (= w1 w2)
3601 (format " (W%02d)" w1)
3602 (format " (W%02d-W%02d)" w1 w2))
3604 ":\n")))
3605 (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
3606 'org-date-line t))
3607 (org-agenda-mark-header-line s))
3608 (while (setq d (pop day-numbers))
3609 (setq date (calendar-gregorian-from-absolute d)
3610 s (point))
3611 (if (or (setq todayp (= d today))
3612 (and (not start-pos) (= d sd)))
3613 (setq start-pos (point))
3614 (if (and start-pos (not end-pos))
3615 (setq end-pos (point))))
3616 (setq files thefiles
3617 rtnall nil)
3618 (while (setq file (pop files))
3619 (catch 'nextfile
3620 (org-check-agenda-file file)
3621 (let ((org-agenda-entry-types org-agenda-entry-types))
3622 (unless org-agenda-include-deadlines
3623 (setq org-agenda-entry-types
3624 (delq :deadline org-agenda-entry-types)))
3625 (cond
3626 ((memq org-agenda-show-log '(only clockcheck))
3627 (setq rtn (org-agenda-get-day-entries
3628 file date :closed)))
3629 (org-agenda-show-log
3630 (setq rtn (apply 'org-agenda-get-day-entries
3631 file date
3632 (append '(:closed) org-agenda-entry-types))))
3634 (setq rtn (apply 'org-agenda-get-day-entries
3635 file date
3636 org-agenda-entry-types)))))
3637 (setq rtnall (append rtnall rtn))))
3638 (if org-agenda-include-diary
3639 (let ((org-agenda-search-headline-for-time t))
3640 (require 'diary-lib)
3641 (setq rtn (org-get-entries-from-diary date))
3642 (setq rtnall (append rtnall rtn))))
3643 (if (or rtnall org-agenda-show-all-dates)
3644 (progn
3645 (setq day-cnt (1+ day-cnt))
3646 (insert
3647 (if (stringp org-agenda-format-date)
3648 (format-time-string org-agenda-format-date
3649 (org-time-from-absolute date))
3650 (funcall org-agenda-format-date date))
3651 "\n")
3652 (put-text-property s (1- (point)) 'face
3653 (org-agenda-get-day-face date))
3654 (put-text-property s (1- (point)) 'org-date-line t)
3655 (put-text-property s (1- (point)) 'org-agenda-date-header t)
3656 (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
3657 (when todayp
3658 (put-text-property s (1- (point)) 'org-today t))
3659 (if rtnall (insert
3660 (org-finalize-agenda-entries
3661 (org-agenda-add-time-grid-maybe
3662 rtnall ndays todayp))
3663 "\n"))
3664 (put-text-property s (1- (point)) 'day d)
3665 (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
3666 (when (and org-agenda-clockreport-mode clocktable-start)
3667 (let ((org-agenda-files (org-agenda-files nil 'ifmode))
3668 ;; the above line is to ensure the restricted range!
3669 (p (copy-sequence org-agenda-clockreport-parameter-plist))
3670 tbl)
3671 (setq p (org-plist-delete p :block))
3672 (setq p (plist-put p :tstart clocktable-start))
3673 (setq p (plist-put p :tend clocktable-end))
3674 (setq p (plist-put p :scope 'agenda))
3675 (when (and (eq org-agenda-clockreport-mode 'with-filter)
3676 (setq filter (or org-agenda-filter-while-redo
3677 (get 'org-agenda-filter :preset-filter))))
3678 (setq p (plist-put p :tags (mapconcat (lambda (x)
3679 (if (string-match "[<>=]" x)
3682 filter ""))))
3683 (setq tbl (apply 'org-get-clocktable p))
3684 (insert tbl)))
3685 (goto-char (point-min))
3686 (or org-agenda-multi (org-fit-agenda-window))
3687 (unless (and (pos-visible-in-window-p (point-min))
3688 (pos-visible-in-window-p (point-max)))
3689 (goto-char (1- (point-max)))
3690 (recenter -1)
3691 (if (not (pos-visible-in-window-p (or start-pos 1)))
3692 (progn
3693 (goto-char (or start-pos 1))
3694 (recenter 1))))
3695 (goto-char (or start-pos 1))
3696 (add-text-properties (point-min) (point-max) '(org-agenda-type agenda))
3697 (if (eq org-agenda-show-log 'clockcheck)
3698 (org-agenda-show-clocking-issues))
3699 (org-finalize-agenda)
3700 (setq buffer-read-only t)
3701 (message "")))
3703 (defun org-agenda-ndays-to-span (n)
3704 "Return a span symbol for a span of N days, or N if none matches."
3705 (cond ((symbolp n) n)
3706 ((= n 1) 'day)
3707 ((= n 7) 'week)
3708 (t n)))
3710 (defun org-agenda-span-to-ndays (span start-day)
3711 "Return ndays from SPAN starting at START-DAY."
3712 (cond ((numberp span) span)
3713 ((eq span 'day) 1)
3714 ((eq span 'week) 7)
3715 ((eq span 'month)
3716 (let ((date (calendar-gregorian-from-absolute start-day)))
3717 (calendar-last-day-of-month (car date) (caddr date))))
3718 ((eq span 'year)
3719 (let ((date (calendar-gregorian-from-absolute start-day)))
3720 (if (calendar-leap-year-p (caddr date)) 366 365)))))
3722 (defun org-agenda-span-name (span)
3723 "Return a SPAN name."
3724 (if (null span)
3726 (if (symbolp span)
3727 (capitalize (symbol-name span))
3728 (format "%d days" span))))
3730 ;;; Agenda word search
3732 (defvar org-agenda-search-history nil)
3733 (defvar org-todo-only nil)
3735 (defvar org-search-syntax-table nil
3736 "Special syntax table for org-mode search.
3737 In this table, we have single quotes not as word constituents, to
3738 that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
3740 (defun org-search-syntax-table ()
3741 (unless org-search-syntax-table
3742 (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
3743 (modify-syntax-entry ?' "." org-search-syntax-table)
3744 (modify-syntax-entry ?` "." org-search-syntax-table))
3745 org-search-syntax-table)
3747 (defvar org-agenda-last-search-view-search-was-boolean nil)
3749 ;;;###autoload
3750 (defun org-search-view (&optional todo-only string edit-at)
3751 "Show all entries that contain a phrase or words or regular expressions.
3753 With optional prefix argument TODO-ONLY, only consider entries that are
3754 TODO entries. The argument STRING can be used to pass a default search
3755 string into this function. If EDIT-AT is non-nil, it means that the
3756 user should get a chance to edit this string, with cursor at position
3757 EDIT-AT.
3759 The search string can be viewed either as a phrase that should be found as
3760 is, or it can be broken into a number of snippets, each of which must match
3761 in a Boolean way to select an entry. The default depends on the variable
3762 `org-agenda-search-view-always-boolean'.
3763 Even if this is turned off (the default) you can always switch to
3764 Boolean search dynamically by preceding the first word with \"+\" or \"-\".
3766 The default is a direct search of the whole phrase, where each space in
3767 the search string can expand to an arbitrary amount of whitespace,
3768 including newlines.
3770 If using a Boolean search, the search string is split on whitespace and
3771 each snippet is searched separately, with logical AND to select an entry.
3772 Words prefixed with a minus must *not* occur in the entry. Words without
3773 a prefix or prefixed with a plus must occur in the entry. Matching is
3774 case-insensitive. Words are enclosed by word delimiters (i.e. they must
3775 match whole words, not parts of a word) if
3776 `org-agenda-search-view-force-full-words' is set (default is nil).
3778 Boolean search snippets enclosed by curly braces are interpreted as
3779 regular expressions that must or (when preceded with \"-\") must not
3780 match in the entry. Snippets enclosed into double quotes will be taken
3781 as a whole, to include whitespace.
3783 - If the search string starts with an asterisk, search only in headlines.
3784 - If (possibly after the leading star) the search string starts with an
3785 exclamation mark, this also means to look at TODO entries only, an effect
3786 that can also be achieved with a prefix argument.
3787 - If (possibly after star and exclamation mark) the search string starts
3788 with a colon, this will mean that the (non-regexp) snippets of the
3789 Boolean search must match as full words.
3791 This command searches the agenda files, and in addition the files listed
3792 in `org-agenda-text-search-extra-files'."
3793 (interactive "P")
3794 (org-compile-prefix-format 'search)
3795 (org-set-sorting-strategy 'search)
3796 (org-prepare-agenda "SEARCH")
3797 (let* ((props (list 'face nil
3798 'done-face 'org-agenda-done
3799 'org-not-done-regexp org-not-done-regexp
3800 'org-todo-regexp org-todo-regexp
3801 'org-complex-heading-regexp org-complex-heading-regexp
3802 'mouse-face 'highlight
3803 'help-echo (format "mouse-2 or RET jump to location")))
3804 (full-words org-agenda-search-view-force-full-words)
3805 (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
3806 regexp rtn rtnall files file pos
3807 marker category org-category-pos tags c neg re boolean
3808 ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
3809 (unless (and (not edit-at)
3810 (stringp string)
3811 (string-match "\\S-" string))
3812 (setq string (read-string
3813 (if org-agenda-search-view-always-boolean
3814 "[+-]Word/{Regexp} ...: "
3815 "Phrase, or [+-]Word/{Regexp} ...: ")
3816 (cond
3817 ((integerp edit-at) (cons string edit-at))
3818 (edit-at string))
3819 'org-agenda-search-history)))
3820 (org-set-local 'org-todo-only todo-only)
3821 (setq org-agenda-redo-command
3822 (list 'org-search-view (if todo-only t nil) string
3823 '(if current-prefix-arg 1 nil)))
3824 (setq org-agenda-query-string string)
3826 (if (equal (string-to-char string) ?*)
3827 (setq hdl-only t
3828 words (substring string 1))
3829 (setq words string))
3830 (when (equal (string-to-char words) ?!)
3831 (setq todo-only t
3832 words (substring words 1)))
3833 (when (equal (string-to-char words) ?:)
3834 (setq full-words t
3835 words (substring words 1)))
3836 (if (or org-agenda-search-view-always-boolean
3837 (member (string-to-char words) '(?- ?+ ?\{)))
3838 (setq boolean t))
3839 (setq words (org-split-string words))
3840 (let (www w)
3841 (while (setq w (pop words))
3842 (while (and (string-match "\\\\\\'" w) words)
3843 (setq w (concat (substring w 0 -1) " " (pop words))))
3844 (push w www))
3845 (setq words (nreverse www) www nil)
3846 (while (setq w (pop words))
3847 (when (and (string-match "\\`[-+]?{" w)
3848 (not (string-match "}\\'" w)))
3849 (while (and words (not (string-match "}\\'" (car words))))
3850 (setq w (concat w " " (pop words))))
3851 (setq w (concat w " " (pop words))))
3852 (push w www))
3853 (setq words (nreverse www)))
3854 (setq org-agenda-last-search-view-search-was-boolean boolean)
3855 (when boolean
3856 (let (wds w)
3857 (while (setq w (pop words))
3858 (if (or (equal (substring w 0 1) "\"")
3859 (and (> (length w) 1)
3860 (member (substring w 0 1) '("+" "-"))
3861 (equal (substring w 1 2) "\"")))
3862 (while (and words (not (equal (substring w -1) "\"")))
3863 (setq w (concat w " " (pop words)))))
3864 (and (string-match "\\`\\([-+]?\\)\"" w)
3865 (setq w (replace-match "\\1" nil nil w)))
3866 (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
3867 (push w wds))
3868 (setq words (nreverse wds))))
3869 (if boolean
3870 (mapc (lambda (w)
3871 (setq c (string-to-char w))
3872 (if (equal c ?-)
3873 (setq neg t w (substring w 1))
3874 (if (equal c ?+)
3875 (setq neg nil w (substring w 1))
3876 (setq neg nil)))
3877 (if (string-match "\\`{.*}\\'" w)
3878 (setq re (substring w 1 -1))
3879 (if full-words
3880 (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
3881 (setq re (regexp-quote (downcase w)))))
3882 (if neg (push re regexps-) (push re regexps+)))
3883 words)
3884 (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
3885 regexps+))
3886 (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
3887 (if (not regexps+)
3888 (setq regexp org-outline-regexp-bol)
3889 (setq regexp (pop regexps+))
3890 (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
3891 regexp))))
3892 (setq files (org-agenda-files nil 'ifmode))
3893 (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
3894 (pop org-agenda-text-search-extra-files)
3895 (setq files (org-add-archive-files files)))
3896 (setq files (append files org-agenda-text-search-extra-files)
3897 rtnall nil)
3898 (while (setq file (pop files))
3899 (setq ee nil)
3900 (catch 'nextfile
3901 (org-check-agenda-file file)
3902 (setq buffer (if (file-exists-p file)
3903 (org-get-agenda-file-buffer file)
3904 (error "No such file %s" file)))
3905 (if (not buffer)
3906 ;; If file does not exist, make sure an error message is sent
3907 (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
3908 file))))
3909 (with-current-buffer buffer
3910 (with-syntax-table (org-search-syntax-table)
3911 (unless (eq major-mode 'org-mode)
3912 (error "Agenda file %s is not in `org-mode'" file))
3913 (let ((case-fold-search t))
3914 (save-excursion
3915 (save-restriction
3916 (if org-agenda-restrict
3917 (narrow-to-region org-agenda-restrict-begin
3918 org-agenda-restrict-end)
3919 (widen))
3920 (goto-char (point-min))
3921 (unless (or (org-on-heading-p)
3922 (outline-next-heading))
3923 (throw 'nextfile t))
3924 (goto-char (max (point-min) (1- (point))))
3925 (while (re-search-forward regexp nil t)
3926 (org-back-to-heading t)
3927 (skip-chars-forward "* ")
3928 (setq beg (point-at-bol)
3929 beg1 (point)
3930 end (progn (outline-next-heading) (point)))
3931 (catch :skip
3932 (goto-char beg)
3933 (org-agenda-skip)
3934 (setq str (buffer-substring-no-properties
3935 (point-at-bol)
3936 (if hdl-only (point-at-eol) end)))
3937 (mapc (lambda (wr) (when (string-match wr str)
3938 (goto-char (1- end))
3939 (throw :skip t)))
3940 regexps-)
3941 (mapc (lambda (wr) (unless (string-match wr str)
3942 (goto-char (1- end))
3943 (throw :skip t)))
3944 (if todo-only
3945 (cons (concat "^\*+[ \t]+" org-not-done-regexp)
3946 regexps+)
3947 regexps+))
3948 (goto-char beg)
3949 (setq marker (org-agenda-new-marker (point))
3950 category (org-get-category)
3951 org-category-pos (get-text-property (point) 'org-category-position)
3952 tags (org-get-tags-at (point))
3953 txt (org-agenda-format-item
3955 (buffer-substring-no-properties
3956 beg1 (point-at-eol))
3957 category tags))
3958 (org-add-props txt props
3959 'org-marker marker 'org-hd-marker marker
3960 'org-todo-regexp org-todo-regexp
3961 'org-complex-heading-regexp org-complex-heading-regexp
3962 'priority 1000 'org-category category
3963 'org-category-position org-category-pos
3964 'type "search")
3965 (push txt ee)
3966 (goto-char (1- end))))))))))
3967 (setq rtn (nreverse ee))
3968 (setq rtnall (append rtnall rtn)))
3969 (if org-agenda-overriding-header
3970 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
3971 nil 'face 'org-agenda-structure) "\n")
3972 (insert "Search words: ")
3973 (add-text-properties (point-min) (1- (point))
3974 (list 'face 'org-agenda-structure))
3975 (setq pos (point))
3976 (insert string "\n")
3977 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
3978 (setq pos (point))
3979 (unless org-agenda-multi
3980 (insert "Press `[', `]' to add/sub word, `{', `}' to add/sub regexp, `C-u r' to edit\n")
3981 (add-text-properties pos (1- (point))
3982 (list 'face 'org-agenda-structure))))
3983 (org-agenda-mark-header-line (point-min))
3984 (when rtnall
3985 (insert (org-finalize-agenda-entries rtnall) "\n"))
3986 (goto-char (point-min))
3987 (or org-agenda-multi (org-fit-agenda-window))
3988 (add-text-properties (point-min) (point-max) '(org-agenda-type search))
3989 (org-finalize-agenda)
3990 (setq buffer-read-only t)))
3992 ;;; Agenda TODO list
3994 (defvar org-select-this-todo-keyword nil)
3995 (defvar org-last-arg nil)
3997 ;;;###autoload
3998 (defun org-todo-list (arg)
3999 "Show all (not done) TODO entries from all agenda file in a single list.
4000 The prefix arg can be used to select a specific TODO keyword and limit
4001 the list to these. When using \\[universal-argument], you will be prompted
4002 for a keyword. A numeric prefix directly selects the Nth keyword in
4003 `org-todo-keywords-1'."
4004 (interactive "P")
4005 (org-compile-prefix-format 'todo)
4006 (org-set-sorting-strategy 'todo)
4007 (org-prepare-agenda "TODO")
4008 (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
4009 (let* ((today (org-today))
4010 (date (calendar-gregorian-from-absolute today))
4011 (kwds org-todo-keywords-for-agenda)
4012 (completion-ignore-case t)
4013 (org-select-this-todo-keyword
4014 (if (stringp arg) arg
4015 (and arg (integerp arg) (> arg 0)
4016 (nth (1- arg) kwds))))
4017 rtn rtnall files file pos)
4018 (when (equal arg '(4))
4019 (setq org-select-this-todo-keyword
4020 (org-icompleting-read "Keyword (or KWD1|K2D2|...): "
4021 (mapcar 'list kwds) nil nil)))
4022 (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
4023 (org-set-local 'org-last-arg arg)
4024 (setq org-agenda-redo-command
4025 '(org-todo-list (or current-prefix-arg org-last-arg)))
4026 (setq files (org-agenda-files nil 'ifmode)
4027 rtnall nil)
4028 (while (setq file (pop files))
4029 (catch 'nextfile
4030 (org-check-agenda-file file)
4031 (setq rtn (org-agenda-get-day-entries file date :todo))
4032 (setq rtnall (append rtnall rtn))))
4033 (if org-agenda-overriding-header
4034 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4035 nil 'face 'org-agenda-structure) "\n")
4036 (insert "Global list of TODO items of type: ")
4037 (add-text-properties (point-min) (1- (point))
4038 (list 'face 'org-agenda-structure
4039 'short-heading
4040 (concat "ToDo: "
4041 (or org-select-this-todo-keyword "ALL"))))
4042 (org-agenda-mark-header-line (point-min))
4043 (setq pos (point))
4044 (insert (or org-select-this-todo-keyword "ALL") "\n")
4045 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
4046 (setq pos (point))
4047 (unless org-agenda-multi
4048 (insert "Available with `N r': (0)ALL")
4049 (let ((n 0) s)
4050 (mapc (lambda (x)
4051 (setq s (format "(%d)%s" (setq n (1+ n)) x))
4052 (if (> (+ (current-column) (string-width s) 1) (frame-width))
4053 (insert "\n "))
4054 (insert " " s))
4055 kwds))
4056 (insert "\n"))
4057 (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
4058 (org-agenda-mark-header-line (point-min))
4059 (when rtnall
4060 (insert (org-finalize-agenda-entries rtnall) "\n"))
4061 (goto-char (point-min))
4062 (or org-agenda-multi (org-fit-agenda-window))
4063 (add-text-properties (point-min) (point-max) '(org-agenda-type todo))
4064 (org-finalize-agenda)
4065 (setq buffer-read-only t)))
4067 ;;; Agenda tags match
4069 ;;;###autoload
4070 (defun org-tags-view (&optional todo-only match)
4071 "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
4072 The prefix arg TODO-ONLY limits the search to TODO entries."
4073 (interactive "P")
4074 (org-compile-prefix-format 'tags)
4075 (org-set-sorting-strategy 'tags)
4076 (let* ((org-tags-match-list-sublevels
4077 org-tags-match-list-sublevels)
4078 (completion-ignore-case t)
4079 rtn rtnall files file pos matcher
4080 buffer)
4081 (when (and (stringp match) (not (string-match "\\S-" match)))
4082 (setq match nil))
4083 (setq matcher (org-make-tags-matcher match)
4084 match (car matcher) matcher (cdr matcher))
4085 (org-prepare-agenda (concat "TAGS " match))
4086 (setq org-agenda-query-string match)
4087 (setq org-agenda-redo-command
4088 (list 'org-tags-view (list 'quote todo-only)
4089 (list 'if 'current-prefix-arg nil 'org-agenda-query-string)))
4090 (setq files (org-agenda-files nil 'ifmode)
4091 rtnall nil)
4092 (while (setq file (pop files))
4093 (catch 'nextfile
4094 (org-check-agenda-file file)
4095 (setq buffer (if (file-exists-p file)
4096 (org-get-agenda-file-buffer file)
4097 (error "No such file %s" file)))
4098 (if (not buffer)
4099 ;; If file does not exist, error message to agenda
4100 (setq rtn (list
4101 (format "ORG-AGENDA-ERROR: No such org-file %s" file))
4102 rtnall (append rtnall rtn))
4103 (with-current-buffer buffer
4104 (unless (eq major-mode 'org-mode)
4105 (error "Agenda file %s is not in `org-mode'" file))
4106 (save-excursion
4107 (save-restriction
4108 (if org-agenda-restrict
4109 (narrow-to-region org-agenda-restrict-begin
4110 org-agenda-restrict-end)
4111 (widen))
4112 (setq rtn (org-scan-tags 'agenda matcher todo-only))
4113 (setq rtnall (append rtnall rtn))))))))
4114 (if org-agenda-overriding-header
4115 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4116 nil 'face 'org-agenda-structure) "\n")
4117 (insert "Headlines with TAGS match: ")
4118 (add-text-properties (point-min) (1- (point))
4119 (list 'face 'org-agenda-structure
4120 'short-heading
4121 (concat "Match: " match)))
4122 (setq pos (point))
4123 (insert match "\n")
4124 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
4125 (setq pos (point))
4126 (unless org-agenda-multi
4127 (insert "Press `C-u r' to search again with new search string\n"))
4128 (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
4129 (org-agenda-mark-header-line (point-min))
4130 (when rtnall
4131 (insert (org-finalize-agenda-entries rtnall) "\n"))
4132 (goto-char (point-min))
4133 (or org-agenda-multi (org-fit-agenda-window))
4134 (add-text-properties (point-min) (point-max) '(org-agenda-type tags))
4135 (org-finalize-agenda)
4136 (setq buffer-read-only t)))
4138 ;;; Agenda Finding stuck projects
4140 (defvar org-agenda-skip-regexp nil
4141 "Regular expression used in skipping subtrees for the agenda.
4142 This is basically a temporary global variable that can be set and then
4143 used by user-defined selections using `org-agenda-skip-function'.")
4145 (defvar org-agenda-overriding-header nil
4146 "When set during agenda, todo and tags searches it replaces the header.
4147 This variable should not be set directly, but custom commands can bind it
4148 in the options section.")
4150 (defun org-agenda-skip-entry-when-regexp-matches ()
4151 "Check if the current entry contains match for `org-agenda-skip-regexp'.
4152 If yes, it returns the end position of this entry, causing agenda commands
4153 to skip the entry but continuing the search in the subtree. This is a
4154 function that can be put into `org-agenda-skip-function' for the duration
4155 of a command."
4156 (let ((end (save-excursion (org-end-of-subtree t)))
4157 skip)
4158 (save-excursion
4159 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4160 (and skip end)))
4162 (defun org-agenda-skip-subtree-when-regexp-matches ()
4163 "Check if the current subtree contains match for `org-agenda-skip-regexp'.
4164 If yes, it returns the end position of this tree, causing agenda commands
4165 to skip this subtree. This is a function that can be put into
4166 `org-agenda-skip-function' for the duration of a command."
4167 (let ((end (save-excursion (org-end-of-subtree t)))
4168 skip)
4169 (save-excursion
4170 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4171 (and skip end)))
4173 (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
4174 "Check if the current subtree contains match for `org-agenda-skip-regexp'.
4175 If yes, it returns the end position of the current entry (NOT the tree),
4176 causing agenda commands to skip the entry but continuing the search in
4177 the subtree. This is a function that can be put into
4178 `org-agenda-skip-function' for the duration of a command. An important
4179 use of this function is for the stuck project list."
4180 (let ((end (save-excursion (org-end-of-subtree t)))
4181 (entry-end (save-excursion (outline-next-heading) (1- (point))))
4182 skip)
4183 (save-excursion
4184 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4185 (and skip entry-end)))
4187 (defun org-agenda-skip-entry-if (&rest conditions)
4188 "Skip entry if any of CONDITIONS is true.
4189 See `org-agenda-skip-if' for details."
4190 (org-agenda-skip-if nil conditions))
4192 (defun org-agenda-skip-subtree-if (&rest conditions)
4193 "Skip entry if any of CONDITIONS is true.
4194 See `org-agenda-skip-if' for details."
4195 (org-agenda-skip-if t conditions))
4197 (defun org-agenda-skip-if (subtree conditions)
4198 "Checks current entity for CONDITIONS.
4199 If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
4200 the entry, i.e. the text before the next heading is checked.
4202 CONDITIONS is a list of symbols, boolean OR is used to combine the results
4203 from different tests. Valid conditions are:
4205 scheduled Check if there is a scheduled cookie
4206 notscheduled Check if there is no scheduled cookie
4207 deadline Check if there is a deadline
4208 notdeadline Check if there is no deadline
4209 timestamp Check if there is a timestamp (also deadline or scheduled)
4210 nottimestamp Check if there is no timestamp (also deadline or scheduled)
4211 regexp Check if regexp matches
4212 notregexp Check if regexp does not match.
4213 todo Check if TODO keyword matches
4214 nottodo Check if TODO keyword does not match
4216 The regexp is taken from the conditions list, it must come right after
4217 the `regexp' or `notregexp' element.
4219 `todo' and `nottodo' accept as an argument a list of todo
4220 keywords, which may include \"*\" to match any todo keyword.
4222 (org-agenda-skip-entry-if 'todo '(\"TODO\" \"WAITING\"))
4224 would skip all entries with \"TODO\" or \"WAITING\" keywords.
4226 Instead of a list a keyword class may be given
4228 (org-agenda-skip-entry-if 'nottodo 'done)
4230 would skip entries that haven't been marked with any of \"DONE\"
4231 keywords. Possible classes are: `todo', `done', `any'.
4233 If any of these conditions is met, this function returns the end point of
4234 the entity, causing the search to continue from there. This is a function
4235 that can be put into `org-agenda-skip-function' for the duration of a command."
4236 (let (beg end m)
4237 (org-back-to-heading t)
4238 (setq beg (point)
4239 end (if subtree
4240 (progn (org-end-of-subtree t) (point))
4241 (progn (outline-next-heading) (1- (point)))))
4242 (goto-char beg)
4243 (and
4245 (and (memq 'scheduled conditions)
4246 (re-search-forward org-scheduled-time-regexp end t))
4247 (and (memq 'notscheduled conditions)
4248 (not (re-search-forward org-scheduled-time-regexp end t)))
4249 (and (memq 'deadline conditions)
4250 (re-search-forward org-deadline-time-regexp end t))
4251 (and (memq 'notdeadline conditions)
4252 (not (re-search-forward org-deadline-time-regexp end t)))
4253 (and (memq 'timestamp conditions)
4254 (re-search-forward org-ts-regexp end t))
4255 (and (memq 'nottimestamp conditions)
4256 (not (re-search-forward org-ts-regexp end t)))
4257 (and (setq m (memq 'regexp conditions))
4258 (stringp (nth 1 m))
4259 (re-search-forward (nth 1 m) end t))
4260 (and (setq m (memq 'notregexp conditions))
4261 (stringp (nth 1 m))
4262 (not (re-search-forward (nth 1 m) end t)))
4263 (and (or
4264 (setq m (memq 'todo conditions))
4265 (setq m (memq 'nottodo conditions)))
4266 (org-agenda-skip-if-todo m end)))
4267 end)))
4269 (defun org-agenda-skip-if-todo (args end)
4270 "Helper function for `org-agenda-skip-if', do not use it directly.
4271 ARGS is a list with first element either `todo' or `nottodo'.
4272 The remainder is either a list of TODO keywords, or a state symbol
4273 `todo' or `done' or `any'."
4274 (let ((kw (car args))
4275 (arg (cadr args))
4276 todo-wds todo-re)
4277 (setq todo-wds
4278 (org-uniquify
4279 (cond
4280 ((listp arg) ;; list of keywords
4281 (if (member "*" arg)
4282 (mapcar 'substring-no-properties org-todo-keywords-1)
4283 arg))
4284 ((symbolp arg) ;; keyword class name
4285 (cond
4286 ((eq arg 'todo)
4287 (org-delete-all org-done-keywords
4288 (mapcar 'substring-no-properties
4289 org-todo-keywords-1)))
4290 ((eq arg 'done) org-done-keywords)
4291 ((eq arg 'any)
4292 (mapcar 'substring-no-properties org-todo-keywords-1)))))))
4293 (setq todo-re
4294 (concat "^\\*+[ \t]+\\<\\("
4295 (mapconcat 'identity todo-wds "\\|")
4296 "\\)\\>"))
4297 (if (eq kw 'todo)
4298 (re-search-forward todo-re end t)
4299 (not (re-search-forward todo-re end t)))))
4301 ;;;###autoload
4302 (defun org-agenda-list-stuck-projects (&rest ignore)
4303 "Create agenda view for projects that are stuck.
4304 Stuck projects are project that have no next actions. For the definitions
4305 of what a project is and how to check if it stuck, customize the variable
4306 `org-stuck-projects'."
4307 (interactive)
4308 (let* ((org-agenda-skip-function
4309 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
4310 ;; We could have used org-agenda-skip-if here.
4311 (org-agenda-overriding-header
4312 (or org-agenda-overriding-header "List of stuck projects: "))
4313 (matcher (nth 0 org-stuck-projects))
4314 (todo (nth 1 org-stuck-projects))
4315 (todo-wds (if (member "*" todo)
4316 (progn
4317 (org-prepare-agenda-buffers (org-agenda-files
4318 nil 'ifmode))
4319 (org-delete-all
4320 org-done-keywords-for-agenda
4321 (copy-sequence org-todo-keywords-for-agenda)))
4322 todo))
4323 (todo-re (concat "^\\*+[ \t]+\\("
4324 (mapconcat 'identity todo-wds "\\|")
4325 "\\)\\>"))
4326 (tags (nth 2 org-stuck-projects))
4327 (tags-re (if (member "*" tags)
4328 (concat org-outline-regexp-bol
4329 (org-re ".*:[[:alnum:]_@#%]+:[ \t]*$"))
4330 (if tags
4331 (concat org-outline-regexp-bol
4332 ".*:\\("
4333 (mapconcat 'identity tags "\\|")
4334 (org-re "\\):[[:alnum:]_@#%:]*[ \t]*$")))))
4335 (gen-re (nth 3 org-stuck-projects))
4336 (re-list
4337 (delq nil
4338 (list
4339 (if todo todo-re)
4340 (if tags tags-re)
4341 (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
4342 gen-re)))))
4343 (setq org-agenda-skip-regexp
4344 (if re-list
4345 (mapconcat 'identity re-list "\\|")
4346 (error "No information how to identify unstuck projects")))
4347 (org-tags-view nil matcher)
4348 (with-current-buffer org-agenda-buffer-name
4349 (setq org-agenda-redo-command
4350 '(org-agenda-list-stuck-projects
4351 (or current-prefix-arg org-last-arg))))))
4353 ;;; Diary integration
4355 (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
4356 (defvar list-diary-entries-hook)
4357 (defvar diary-time-regexp)
4358 (defun org-get-entries-from-diary (date)
4359 "Get the (Emacs Calendar) diary entries for DATE."
4360 (require 'diary-lib)
4361 (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
4362 (diary-display-hook '(fancy-diary-display))
4363 (diary-display-function 'fancy-diary-display)
4364 (pop-up-frames nil)
4365 (list-diary-entries-hook
4366 (cons 'org-diary-default-entry list-diary-entries-hook))
4367 (diary-file-name-prefix-function nil) ; turn this feature off
4368 (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
4369 entries
4370 (org-disable-agenda-to-diary t))
4371 (save-excursion
4372 (save-window-excursion
4373 (funcall (if (fboundp 'diary-list-entries)
4374 'diary-list-entries 'list-diary-entries)
4375 date 1)))
4376 (if (not (get-buffer diary-fancy-buffer))
4377 (setq entries nil)
4378 (with-current-buffer diary-fancy-buffer
4379 (setq buffer-read-only nil)
4380 (if (zerop (buffer-size))
4381 ;; No entries
4382 (setq entries nil)
4383 ;; Omit the date and other unnecessary stuff
4384 (org-agenda-cleanup-fancy-diary)
4385 ;; Add prefix to each line and extend the text properties
4386 (if (zerop (buffer-size))
4387 (setq entries nil)
4388 (setq entries (buffer-substring (point-min) (- (point-max) 1)))
4389 (setq entries
4390 (with-temp-buffer
4391 (insert entries) (goto-char (point-min))
4392 (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
4393 (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
4394 (replace-match (concat "; " (match-string 1)))))
4395 (buffer-string)))))
4396 (set-buffer-modified-p nil)
4397 (kill-buffer diary-fancy-buffer)))
4398 (when entries
4399 (setq entries (org-split-string entries "\n"))
4400 (setq entries
4401 (mapcar
4402 (lambda (x)
4403 (setq x (org-agenda-format-item "" x "Diary" nil 'time))
4404 ;; Extend the text properties to the beginning of the line
4405 (org-add-props x (text-properties-at (1- (length x)) x)
4406 'type "diary" 'date date 'face 'org-agenda-diary))
4407 entries)))))
4409 (defvar org-agenda-cleanup-fancy-diary-hook nil
4410 "Hook run when the fancy diary buffer is cleaned up.")
4412 (defun org-agenda-cleanup-fancy-diary ()
4413 "Remove unwanted stuff in buffer created by `fancy-diary-display'.
4414 This gets rid of the date, the underline under the date, and
4415 the dummy entry installed by `org-mode' to ensure non-empty diary for each
4416 date. It also removes lines that contain only whitespace."
4417 (goto-char (point-min))
4418 (if (looking-at ".*?:[ \t]*")
4419 (progn
4420 (replace-match "")
4421 (re-search-forward "\n=+$" nil t)
4422 (replace-match "")
4423 (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
4424 (re-search-forward "\n=+$" nil t)
4425 (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
4426 (goto-char (point-min))
4427 (while (re-search-forward "^ +\n" nil t)
4428 (replace-match ""))
4429 (goto-char (point-min))
4430 (if (re-search-forward "^Org-mode dummy\n?" nil t)
4431 (replace-match ""))
4432 (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
4434 ;; Make sure entries from the diary have the right text properties.
4435 (eval-after-load "diary-lib"
4436 '(if (boundp 'diary-modify-entry-list-string-function)
4437 ;; We can rely on the hook, nothing to do
4439 ;; Hook not available, must use advice to make this work
4440 (defadvice add-to-diary-list (before org-mark-diary-entry activate)
4441 "Make the position visible."
4442 (if (and org-disable-agenda-to-diary ;; called from org-agenda
4443 (stringp string)
4444 buffer-file-name)
4445 (setq string (org-modify-diary-entry-string string))))))
4447 (defun org-modify-diary-entry-string (string)
4448 "Add text properties to string, allowing org-mode to act on it."
4449 (org-add-props string nil
4450 'mouse-face 'highlight
4451 'help-echo (if buffer-file-name
4452 (format "mouse-2 or RET jump to diary file %s"
4453 (abbreviate-file-name buffer-file-name))
4455 'org-agenda-diary-link t
4456 'org-marker (org-agenda-new-marker (point-at-bol))))
4458 (defun org-diary-default-entry ()
4459 "Add a dummy entry to the diary.
4460 Needed to avoid empty dates which mess up holiday display."
4461 ;; Catch the error if dealing with the new add-to-diary-alist
4462 (when org-disable-agenda-to-diary
4463 (condition-case nil
4464 (org-add-to-diary-list original-date "Org-mode dummy" "")
4465 (error
4466 (org-add-to-diary-list original-date "Org-mode dummy" "" nil)))))
4468 (defun org-add-to-diary-list (&rest args)
4469 (if (fboundp 'diary-add-to-list)
4470 (apply 'diary-add-to-list args)
4471 (apply 'add-to-diary-list args)))
4473 (defvar org-diary-last-run-time nil)
4475 ;;;###autoload
4476 (defun org-diary (&rest args)
4477 "Return diary information from org-files.
4478 This function can be used in a \"sexp\" diary entry in the Emacs calendar.
4479 It accesses org files and extracts information from those files to be
4480 listed in the diary. The function accepts arguments specifying what
4481 items should be listed. For a list of arguments allowed here, see the
4482 variable `org-agenda-entry-types'.
4484 The call in the diary file should look like this:
4486 &%%(org-diary) ~/path/to/some/orgfile.org
4488 Use a separate line for each org file to check. Or, if you omit the file name,
4489 all files listed in `org-agenda-files' will be checked automatically:
4491 &%%(org-diary)
4493 If you don't give any arguments (as in the example above), the default
4494 arguments (:deadline :scheduled :timestamp :sexp) are used.
4495 So the example above may also be written as
4497 &%%(org-diary :deadline :timestamp :sexp :scheduled)
4499 The function expects the lisp variables `entry' and `date' to be provided
4500 by the caller, because this is how the calendar works. Don't use this
4501 function from a program - use `org-agenda-get-day-entries' instead."
4502 (when (> (- (org-float-time)
4503 org-agenda-last-marker-time)
4505 (org-agenda-reset-markers))
4506 (org-compile-prefix-format 'agenda)
4507 (org-set-sorting-strategy 'agenda)
4508 (setq args (or args '(:deadline :scheduled :timestamp :sexp)))
4509 (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
4510 (list entry)
4511 (org-agenda-files t)))
4512 (time (org-float-time))
4513 file rtn results)
4514 (when (or (not org-diary-last-run-time)
4515 (> (- time
4516 org-diary-last-run-time)
4518 (org-prepare-agenda-buffers files))
4519 (setq org-diary-last-run-time time)
4520 ;; If this is called during org-agenda, don't return any entries to
4521 ;; the calendar. Org Agenda will list these entries itself.
4522 (if org-disable-agenda-to-diary (setq files nil))
4523 (while (setq file (pop files))
4524 (setq rtn (apply 'org-agenda-get-day-entries file date args))
4525 (setq results (append results rtn)))
4526 (if results
4527 (concat (org-finalize-agenda-entries results) "\n"))))
4529 ;;; Agenda entry finders
4531 (defun org-agenda-get-day-entries (file date &rest args)
4532 "Does the work for `org-diary' and `org-agenda'.
4533 FILE is the path to a file to be checked for entries. DATE is date like
4534 the one returned by `calendar-current-date'. ARGS are symbols indicating
4535 which kind of entries should be extracted. For details about these, see
4536 the documentation of `org-diary'."
4537 (setq args (or args '(:deadline :scheduled :timestamp :sexp)))
4538 (let* ((org-startup-folded nil)
4539 (org-startup-align-all-tables nil)
4540 (buffer (if (file-exists-p file)
4541 (org-get-agenda-file-buffer file)
4542 (error "No such file %s" file)))
4543 arg results rtn deadline-results)
4544 (if (not buffer)
4545 ;; If file does not exist, make sure an error message ends up in diary
4546 (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
4547 (with-current-buffer buffer
4548 (unless (eq major-mode 'org-mode)
4549 (error "Agenda file %s is not in `org-mode'" file))
4550 (let ((case-fold-search nil))
4551 (save-excursion
4552 (save-restriction
4553 (if org-agenda-restrict
4554 (narrow-to-region org-agenda-restrict-begin
4555 org-agenda-restrict-end)
4556 (widen))
4557 ;; The way we repeatedly append to `results' makes it O(n^2) :-(
4558 (while (setq arg (pop args))
4559 (cond
4560 ((and (eq arg :todo)
4561 (equal date (calendar-gregorian-from-absolute
4562 (org-today))))
4563 (setq rtn (org-agenda-get-todos))
4564 (setq results (append results rtn)))
4565 ((eq arg :timestamp)
4566 (setq rtn (org-agenda-get-blocks))
4567 (setq results (append results rtn))
4568 (setq rtn (org-agenda-get-timestamps))
4569 (setq results (append results rtn)))
4570 ((eq arg :sexp)
4571 (setq rtn (org-agenda-get-sexps))
4572 (setq results (append results rtn)))
4573 ((eq arg :scheduled)
4574 (setq rtn (org-agenda-get-scheduled deadline-results))
4575 (setq results (append results rtn)))
4576 ((eq arg :closed)
4577 (setq rtn (org-agenda-get-progress))
4578 (setq results (append results rtn)))
4579 ((eq arg :deadline)
4580 (setq rtn (org-agenda-get-deadlines))
4581 (setq deadline-results (copy-sequence rtn))
4582 (setq results (append results rtn))))))))
4583 results))))
4585 (defun org-agenda-get-todos ()
4586 "Return the TODO information for agenda display."
4587 (let* ((props (list 'face nil
4588 'done-face 'org-agenda-done
4589 'org-not-done-regexp org-not-done-regexp
4590 'org-todo-regexp org-todo-regexp
4591 'org-complex-heading-regexp org-complex-heading-regexp
4592 'mouse-face 'highlight
4593 'help-echo
4594 (format "mouse-2 or RET jump to org file %s"
4595 (abbreviate-file-name buffer-file-name))))
4596 (regexp (format org-heading-keyword-regexp-format
4597 (cond
4598 ((and org-select-this-todo-keyword
4599 (equal org-select-this-todo-keyword "*"))
4600 org-todo-regexp)
4601 (org-select-this-todo-keyword
4602 (concat "\\("
4603 (mapconcat 'identity
4604 (org-split-string
4605 org-select-this-todo-keyword
4606 "|")
4607 "\\|") "\\)"))
4608 (t org-not-done-regexp))))
4609 marker priority category org-category-pos tags todo-state
4610 ee txt beg end)
4611 (goto-char (point-min))
4612 (while (re-search-forward regexp nil t)
4613 (catch :skip
4614 (save-match-data
4615 (beginning-of-line)
4616 (org-agenda-skip)
4617 (setq beg (point) end (save-excursion (outline-next-heading) (point)))
4618 (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
4619 (goto-char (1+ beg))
4620 (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
4621 (throw :skip nil)))
4622 (goto-char (match-beginning 2))
4623 (setq marker (org-agenda-new-marker (match-beginning 0))
4624 category (org-get-category)
4625 org-category-pos (get-text-property (point) 'org-category-position)
4626 txt (buffer-substring (match-beginning 2) (match-end 3))
4627 tags (org-get-tags-at (point))
4628 txt (org-agenda-format-item "" txt category tags)
4629 priority (1+ (org-get-priority txt))
4630 todo-state (org-get-todo-state))
4631 (org-add-props txt props
4632 'org-marker marker 'org-hd-marker marker
4633 'priority priority 'org-category category
4634 'org-category-position org-category-pos
4635 'type "todo" 'todo-state todo-state)
4636 (push txt ee)
4637 (if org-agenda-todo-list-sublevels
4638 (goto-char (match-end 2))
4639 (org-end-of-subtree 'invisible))))
4640 (nreverse ee)))
4642 (defun org-agenda-todo-custom-ignore-p (time n)
4643 "Check whether timestamp is farther away then n number of days.
4644 This function is invoked if `org-agenda-todo-ignore-deadlines',
4645 `org-agenda-todo-ignore-scheduled' or
4646 `org-agenda-todo-ignore-timestamp' is set to an integer."
4647 (let ((days (org-days-to-time time)))
4648 (if (>= n 0)
4649 (>= days n)
4650 (<= days n))))
4652 ;;;###autoload
4653 (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4654 (&optional end)
4655 "Do we have a reason to ignore this TODO entry because it has a time stamp?"
4656 (when (or org-agenda-todo-ignore-with-date
4657 org-agenda-todo-ignore-scheduled
4658 org-agenda-todo-ignore-deadlines
4659 org-agenda-todo-ignore-timestamp)
4660 (setq end (or end (save-excursion (outline-next-heading) (point))))
4661 (save-excursion
4662 (or (and org-agenda-todo-ignore-with-date
4663 (re-search-forward org-ts-regexp end t))
4664 (and org-agenda-todo-ignore-scheduled
4665 (re-search-forward org-scheduled-time-regexp end t)
4666 (cond
4667 ((eq org-agenda-todo-ignore-scheduled 'future)
4668 (> (org-days-to-time (match-string 1)) 0))
4669 ((eq org-agenda-todo-ignore-scheduled 'past)
4670 (<= (org-days-to-time (match-string 1)) 0))
4671 ((numberp org-agenda-todo-ignore-scheduled)
4672 (org-agenda-todo-custom-ignore-p
4673 (match-string 1) org-agenda-todo-ignore-scheduled))
4674 (t)))
4675 (and org-agenda-todo-ignore-deadlines
4676 (re-search-forward org-deadline-time-regexp end t)
4677 (cond
4678 ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
4679 ((eq org-agenda-todo-ignore-deadlines 'far)
4680 (not (org-deadline-close (match-string 1))))
4681 ((eq org-agenda-todo-ignore-deadlines 'future)
4682 (> (org-days-to-time (match-string 1)) 0))
4683 ((eq org-agenda-todo-ignore-deadlines 'past)
4684 (<= (org-days-to-time (match-string 1)) 0))
4685 ((numberp org-agenda-todo-ignore-deadlines)
4686 (org-agenda-todo-custom-ignore-p
4687 (match-string 1) org-agenda-todo-ignore-deadlines))
4688 (t (org-deadline-close (match-string 1)))))
4689 (and org-agenda-todo-ignore-timestamp
4690 (let ((buffer (current-buffer))
4691 (regexp
4692 (concat
4693 org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
4694 (start (point)))
4695 ;; Copy current buffer into a temporary one
4696 (with-temp-buffer
4697 (insert-buffer-substring buffer start end)
4698 (goto-char (point-min))
4699 ;; Delete SCHEDULED and DEADLINE items
4700 (while (re-search-forward regexp end t)
4701 (delete-region (match-beginning 0) (match-end 0)))
4702 (goto-char (point-min))
4703 ;; No search for timestamp left
4704 (when (re-search-forward org-ts-regexp nil t)
4705 (cond
4706 ((eq org-agenda-todo-ignore-timestamp 'future)
4707 (> (org-days-to-time (match-string 1)) 0))
4708 ((eq org-agenda-todo-ignore-timestamp 'past)
4709 (<= (org-days-to-time (match-string 1)) 0))
4710 ((numberp org-agenda-todo-ignore-timestamp)
4711 (org-agenda-todo-custom-ignore-p
4712 (match-string 1) org-agenda-todo-ignore-timestamp))
4713 (t))))))))))
4715 (defconst org-agenda-no-heading-message
4716 "No heading for this item in buffer or region.")
4718 (defun org-agenda-get-timestamps ()
4719 "Return the date stamp information for agenda display."
4720 (let* ((props (list 'face nil
4721 'org-not-done-regexp org-not-done-regexp
4722 'org-todo-regexp org-todo-regexp
4723 'org-complex-heading-regexp org-complex-heading-regexp
4724 'mouse-face 'highlight
4725 'help-echo
4726 (format "mouse-2 or RET jump to org file %s"
4727 (abbreviate-file-name buffer-file-name))))
4728 (d1 (calendar-absolute-from-gregorian date))
4729 (remove-re
4730 (concat
4731 (regexp-quote
4732 (format-time-string
4733 "<%Y-%m-%d"
4734 (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
4735 ".*?>"))
4736 (regexp
4737 (concat
4738 (if org-agenda-include-inactive-timestamps "[[<]" "<")
4739 (regexp-quote
4740 (substring
4741 (format-time-string
4742 (car org-time-stamp-formats)
4743 (apply 'encode-time ; DATE bound by calendar
4744 (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
4745 1 11))
4746 "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[dwmy]>\\)"
4747 "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
4748 marker hdmarker deadlinep scheduledp clockp closedp inactivep
4749 donep tmp priority category org-category-pos ee txt timestr tags
4750 b0 b3 e3 head todo-state end-of-match show-all)
4751 (goto-char (point-min))
4752 (while (setq end-of-match (re-search-forward regexp nil t))
4753 (setq b0 (match-beginning 0)
4754 b3 (match-beginning 3) e3 (match-end 3)
4755 todo-state (save-match-data (ignore-errors (org-get-todo-state)))
4756 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
4757 (member todo-state
4758 org-agenda-repeating-timestamp-show-all)))
4759 (catch :skip
4760 (and (org-at-date-range-p) (throw :skip nil))
4761 (org-agenda-skip)
4762 (if (and (match-end 1)
4763 (not (= d1 (org-time-string-to-absolute
4764 (match-string 1) d1 nil show-all
4765 (current-buffer) b0))))
4766 (throw :skip nil))
4767 (if (and e3
4768 (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
4769 (throw :skip nil))
4770 (setq tmp (buffer-substring (max (point-min)
4771 (- b0 org-ds-keyword-length))
4773 timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
4774 inactivep (= (char-after b0) ?\[)
4775 deadlinep (string-match org-deadline-regexp tmp)
4776 scheduledp (string-match org-scheduled-regexp tmp)
4777 closedp (and org-agenda-include-inactive-timestamps
4778 (string-match org-closed-string tmp))
4779 clockp (and org-agenda-include-inactive-timestamps
4780 (or (string-match org-clock-string tmp)
4781 (string-match "]-+\\'" tmp)))
4782 donep (member todo-state org-done-keywords))
4783 (if (or scheduledp deadlinep closedp clockp
4784 (and donep org-agenda-skip-timestamp-if-done))
4785 (throw :skip t))
4786 (if (string-match ">" timestr)
4787 ;; substring should only run to end of time stamp
4788 (setq timestr (substring timestr 0 (match-end 0))))
4789 (setq marker (org-agenda-new-marker b0)
4790 category (org-get-category b0)
4791 org-category-pos (get-text-property b0 'org-category-position))
4792 (save-excursion
4793 (if (not (re-search-backward org-outline-regexp-bol nil t))
4794 (setq txt org-agenda-no-heading-message)
4795 (goto-char (match-beginning 0))
4796 (setq hdmarker (org-agenda-new-marker)
4797 tags (org-get-tags-at))
4798 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
4799 (setq head (or (match-string 1) ""))
4800 (setq txt (org-agenda-format-item
4801 (if inactivep org-agenda-inactive-leader nil)
4802 head category tags timestr
4803 remove-re)))
4804 (setq priority (org-get-priority txt))
4805 (org-add-props txt props
4806 'org-marker marker 'org-hd-marker hdmarker)
4807 (org-add-props txt nil 'priority priority
4808 'org-category category 'date date
4809 'org-category-position org-category-pos
4810 'todo-state todo-state
4811 'type "timestamp")
4812 (push txt ee))
4813 (if org-agenda-skip-additional-timestamps-same-entry
4814 (outline-next-heading)
4815 (goto-char end-of-match))))
4816 (nreverse ee)))
4818 (defun org-agenda-get-sexps ()
4819 "Return the sexp information for agenda display."
4820 (require 'diary-lib)
4821 (let* ((props (list 'mouse-face 'highlight
4822 'help-echo
4823 (format "mouse-2 or RET jump to org file %s"
4824 (abbreviate-file-name buffer-file-name))))
4825 (regexp "^&?%%(")
4826 marker category org-category-pos ee txt tags entry
4827 result beg b sexp sexp-entry todo-state)
4828 (goto-char (point-min))
4829 (while (re-search-forward regexp nil t)
4830 (catch :skip
4831 (org-agenda-skip)
4832 (setq beg (match-beginning 0))
4833 (goto-char (1- (match-end 0)))
4834 (setq b (point))
4835 (forward-sexp 1)
4836 (setq sexp (buffer-substring b (point)))
4837 (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
4838 (org-trim (match-string 1))
4839 ""))
4840 (setq result (org-diary-sexp-entry sexp sexp-entry date))
4841 (when result
4842 (setq marker (org-agenda-new-marker beg)
4843 category (org-get-category beg)
4844 org-category-pos (get-text-property beg 'org-category-position)
4845 todo-state (org-get-todo-state))
4847 (dolist (r (if (stringp result)
4848 (list result)
4849 result)) ;; we expect a list here
4850 (if (string-match "\\S-" r)
4851 (setq txt r)
4852 (setq txt "SEXP entry returned empty string"))
4854 (setq txt (org-agenda-format-item
4855 "" txt category tags 'time))
4856 (org-add-props txt props 'org-marker marker)
4857 (org-add-props txt nil
4858 'org-category category 'date date 'todo-state todo-state
4859 'org-category-position org-category-pos
4860 'type "sexp")
4861 (push txt ee)))))
4862 (nreverse ee)))
4864 ;; Calendar sanity: define some functions that are independent of
4865 ;; `calendar-date-style'.
4866 ;; Normally I would like to use ISO format when calling the diary functions,
4867 ;; but to make sure we still have Emacs 22 compatibility we bind
4868 ;; also `european-calendar-style' and use european format
4869 (defun org-anniversary (year month day &optional mark)
4870 "Like `diary-anniversary', but with fixed (ISO) order of arguments."
4871 (org-no-warnings
4872 (let ((calendar-date-style 'european) (european-calendar-style t))
4873 (diary-anniversary day month year mark))))
4874 (defun org-cyclic (N year month day &optional mark)
4875 "Like `diary-cyclic', but with fixed (ISO) order of arguments."
4876 (org-no-warnings
4877 (let ((calendar-date-style 'european) (european-calendar-style t))
4878 (diary-cyclic N day month year mark))))
4879 (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
4880 "Like `diary-block', but with fixed (ISO) order of arguments."
4881 (org-no-warnings
4882 (let ((calendar-date-style 'european) (european-calendar-style t))
4883 (diary-block D1 M1 Y1 D2 M2 Y2 mark))))
4884 (defun org-date (year month day &optional mark)
4885 "Like `diary-date', but with fixed (ISO) order of arguments."
4886 (org-no-warnings
4887 (let ((calendar-date-style 'european) (european-calendar-style t))
4888 (diary-date day month year mark))))
4889 (defalias 'org-float 'diary-float)
4891 ;; Define the` org-class' function
4892 (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
4893 "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
4894 DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
4895 is any number of ISO weeks in the block period for which the item should
4896 be skipped."
4897 (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
4898 (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
4899 (d (calendar-absolute-from-gregorian date)))
4900 (and
4901 (<= date1 d)
4902 (<= d date2)
4903 (= (calendar-day-of-week date) dayname)
4904 (or (not skip-weeks)
4905 (progn
4906 (require 'cal-iso)
4907 (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
4908 entry)))
4910 (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname &rest skip-weeks)
4911 "Like `org-class', but honor `calendar-date-style'.
4912 The order of the first 2 times 3 arguments depends on the variable
4913 `calendar-date-style' or, if that is not defined, on `european-calendar-style'.
4914 So for American calendars, give this as MONTH DAY YEAR, for European as
4915 DAY MONTH YEAR, and for ISO as YEAR MONTH DAY.
4916 DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
4917 is any number of ISO weeks in the block period for which the item should
4918 be skipped.
4920 This function is here only for backward compatibility and it is deprecated,
4921 please use `org-class' instead."
4922 (let* ((date1 (org-order-calendar-date-args m1 d1 y1))
4923 (date2 (org-order-calendar-date-args m2 d2 y2)))
4924 (org-class
4925 (nth 2 date1) (car date1) (nth 1 date1)
4926 (nth 2 date2) (car date2) (nth 1 date2)
4927 dayname skip-weeks)))
4929 (defalias 'org-get-closed 'org-agenda-get-progress)
4930 (defun org-agenda-get-progress ()
4931 "Return the logged TODO entries for agenda display."
4932 (let* ((props (list 'mouse-face 'highlight
4933 'org-not-done-regexp org-not-done-regexp
4934 'org-todo-regexp org-todo-regexp
4935 'org-complex-heading-regexp org-complex-heading-regexp
4936 'help-echo
4937 (format "mouse-2 or RET jump to org file %s"
4938 (abbreviate-file-name buffer-file-name))))
4939 (items (if (consp org-agenda-show-log)
4940 org-agenda-show-log
4941 (if (eq org-agenda-show-log 'clockcheck)
4942 '(clock)
4943 org-agenda-log-mode-items)))
4944 (parts
4945 (delq nil
4946 (list
4947 (if (memq 'closed items) (concat "\\<" org-closed-string))
4948 (if (memq 'clock items) (concat "\\<" org-clock-string))
4949 (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
4950 (parts-re (if parts (mapconcat 'identity parts "\\|")
4951 (error "`org-agenda-log-mode-items' is empty")))
4952 (regexp (concat
4953 "\\(" parts-re "\\)"
4954 " *\\["
4955 (regexp-quote
4956 (substring
4957 (format-time-string
4958 (car org-time-stamp-formats)
4959 (apply 'encode-time ; DATE bound by calendar
4960 (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
4961 1 11))))
4962 (org-agenda-search-headline-for-time nil)
4963 marker hdmarker priority category org-category-pos tags closedp
4964 statep clockp state ee txt extra timestr rest clocked)
4965 (goto-char (point-min))
4966 (while (re-search-forward regexp nil t)
4967 (catch :skip
4968 (org-agenda-skip)
4969 (setq marker (org-agenda-new-marker (match-beginning 0))
4970 closedp (equal (match-string 1) org-closed-string)
4971 statep (equal (string-to-char (match-string 1)) ?-)
4972 clockp (not (or closedp statep))
4973 state (and statep (match-string 2))
4974 category (org-get-category (match-beginning 0))
4975 org-category-pos (get-text-property (match-beginning 0) 'org-category-position)
4976 timestr (buffer-substring (match-beginning 0) (point-at-eol)))
4977 (when (string-match "\\]" timestr)
4978 ;; substring should only run to end of time stamp
4979 (setq rest (substring timestr (match-end 0))
4980 timestr (substring timestr 0 (match-end 0)))
4981 (if (and (not closedp) (not statep)
4982 (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
4983 rest))
4984 (progn (setq timestr (concat (substring timestr 0 -1)
4985 "-" (match-string 1 rest) "]"))
4986 (setq clocked (match-string 2 rest)))
4987 (setq clocked "-")))
4988 (save-excursion
4989 (setq extra
4990 (cond
4991 ((not org-agenda-log-mode-add-notes) nil)
4992 (statep
4993 (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
4994 (match-string 1)))
4995 (clockp
4996 (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
4997 (match-string 1)))))
4998 (if (not (re-search-backward org-outline-regexp-bol nil t))
4999 (setq txt org-agenda-no-heading-message)
5000 (goto-char (match-beginning 0))
5001 (setq hdmarker (org-agenda-new-marker)
5002 tags (org-get-tags-at))
5003 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
5004 (setq txt (match-string 1))
5005 (when extra
5006 (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
5007 (setq txt (concat (substring txt 0 (match-beginning 1))
5008 " - " extra " " (match-string 2 txt)))
5009 (setq txt (concat txt " - " extra))))
5010 (setq txt (org-agenda-format-item
5011 (cond
5012 (closedp "Closed: ")
5013 (statep (concat "State: (" state ")"))
5014 (t (concat "Clocked: (" clocked ")")))
5015 txt category tags timestr)))
5016 (setq priority 100000)
5017 (org-add-props txt props
5018 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
5019 'priority priority 'org-category category
5020 'org-category-position org-category-pos
5021 'type "closed" 'date date
5022 'undone-face 'org-warning 'done-face 'org-agenda-done)
5023 (push txt ee))
5024 (goto-char (point-at-eol))))
5025 (nreverse ee)))
5027 (defun org-agenda-show-clocking-issues ()
5028 "Add overlays, showing issues with clocking.
5029 See also the user option `org-agenda-clock-consistency-checks'."
5030 (interactive)
5031 (let* ((pl org-agenda-clock-consistency-checks)
5032 (re (concat "^[ \t]*"
5033 org-clock-string
5034 "[ \t]+"
5035 "\\(\\[.*?\\]\\)" ; group 1 is first stamp
5036 "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
5037 (tlstart 0.)
5038 (tlend 0.)
5039 (maxtime (org-hh:mm-string-to-minutes
5040 (or (plist-get pl :max-duration) "24:00")))
5041 (mintime (org-hh:mm-string-to-minutes
5042 (or (plist-get pl :min-duration) 0)))
5043 (maxgap (org-hh:mm-string-to-minutes
5044 ;; default 30:00 means never complain
5045 (or (plist-get pl :max-gap) "30:00")))
5046 (gapok (mapcar 'org-hh:mm-string-to-minutes
5047 (plist-get pl :gap-ok-around)))
5048 (def-face (or (plist-get pl :default-face)
5049 '((:background "DarkRed") (:foreground "white"))))
5050 issue face m te ts dt ov)
5051 (goto-char (point-min))
5052 (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
5053 (setq issue nil face def-face)
5054 (catch 'next
5055 (setq m (org-get-at-bol 'org-marker)
5056 te nil ts nil)
5057 (unless (and m (markerp m))
5058 (setq issue "No valid clock line") (throw 'next t))
5059 (org-with-point-at m
5060 (save-excursion
5061 (goto-char (point-at-bol))
5062 (unless (looking-at re)
5063 (error "No valid Clock line")
5064 (throw 'next t))
5065 (unless (match-end 3)
5066 (setq issue "No end time"
5067 face (or (plist-get pl :no-end-time-face) face))
5068 (throw 'next t))
5069 (setq ts (match-string 1)
5070 te (match-string 3)
5071 ts (org-float-time
5072 (apply 'encode-time (org-parse-time-string ts)))
5073 te (org-float-time
5074 (apply 'encode-time (org-parse-time-string te)))
5075 dt (- te ts))))
5076 (cond
5077 ((> dt (* 60 maxtime))
5078 ;; a very long clocking chunk
5079 (setq issue (format "Clocking interval is very long: %s"
5080 (org-minutes-to-hh:mm-string
5081 (floor (/ (float dt) 60.))))
5082 face (or (plist-get pl :long-face) face)))
5083 ((< dt (* 60 mintime))
5084 ;; a very short clocking chunk
5085 (setq issue (format "Clocking interval is very short: %s"
5086 (org-minutes-to-hh:mm-string
5087 (floor (/ (float dt) 60.))))
5088 face (or (plist-get pl :short-face) face)))
5089 ((and (> tlend 0) (< ts tlend))
5090 ;; Two clock entries are overlapping
5091 (setq issue (format "Clocking overlap: %d minutes"
5092 (/ (- tlend ts) 60))
5093 face (or (plist-get pl :overlap-face) face)))
5094 ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
5095 ;; There is a gap, lets see if we need to report it
5096 (unless (org-agenda-check-clock-gap tlend ts gapok)
5097 (setq issue (format "Clocking gap: %d minutes"
5098 (/ (- ts tlend) 60))
5099 face (or (plist-get pl :gap-face) face))))
5100 (t nil)))
5101 (setq tlend (or te tlend) tlstart (or ts tlstart))
5102 (when issue
5103 ;; OK, there was some issue, add an overlay to show the issue
5104 (setq ov (make-overlay (point-at-bol) (point-at-eol)))
5105 (overlay-put ov 'before-string
5106 (concat
5107 (org-add-props
5108 (format "%-43s" (concat " " issue))
5110 'face face)
5111 "\n"))
5112 (overlay-put ov 'evaporate t)))))
5114 (defun org-agenda-check-clock-gap (t1 t2 ok-list)
5115 "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
5116 (catch 'exit
5117 (unless ok-list
5118 ;; there are no OK times for gaps...
5119 (throw 'exit nil))
5120 (if (> (- (/ t2 36000) (/ t1 36000)) 24)
5121 ;; This is more than 24 hours, so it is OK.
5122 ;; because we have at least one OK time, that must be in the
5123 ;; 24 hour interval.
5124 (throw 'exit t))
5125 ;; We have a shorter gap.
5126 ;; Now we have to get the minute of the day when these times are
5127 (let* ((t1dec (decode-time (seconds-to-time t1)))
5128 (t2dec (decode-time (seconds-to-time t2)))
5129 ;; compute the minute on the day
5130 (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
5131 (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
5132 (when (< min2 min1)
5133 ;; if min2 is smaller than min1, this means it is on the next day.
5134 ;; Wrap it to after midnight.
5135 (setq min2 (+ min2 1440)))
5136 ;; Now check if any of the OK times is in the gap
5137 (mapc (lambda (x)
5138 ;; Wrap the time to after midnight if necessary
5139 (if (< x min1) (setq x (+ x 1440)))
5140 ;; Check if in interval
5141 (and (<= min1 x) (>= min2 x) (throw 'exit t)))
5142 ok-list)
5143 ;; Nope, this gap is not OK
5144 nil)))
5146 (defun org-agenda-get-deadlines ()
5147 "Return the deadline information for agenda display."
5148 (let* ((props (list 'mouse-face 'highlight
5149 'org-not-done-regexp org-not-done-regexp
5150 'org-todo-regexp org-todo-regexp
5151 'org-complex-heading-regexp org-complex-heading-regexp
5152 'help-echo
5153 (format "mouse-2 or RET jump to org file %s"
5154 (abbreviate-file-name buffer-file-name))))
5155 (regexp org-deadline-time-regexp)
5156 (todayp (org-agenda-todayp date)) ; DATE bound by calendar
5157 (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
5158 d2 diff dfrac wdays pos pos1 category org-category-pos
5159 tags suppress-prewarning ee txt head face s todo-state
5160 show-all upcomingp donep timestr)
5161 (goto-char (point-min))
5162 (while (re-search-forward regexp nil t)
5163 (setq suppress-prewarning nil)
5164 (catch :skip
5165 (org-agenda-skip)
5166 (when (and org-agenda-skip-deadline-prewarning-if-scheduled
5167 (save-match-data
5168 (string-match org-scheduled-time-regexp
5169 (buffer-substring (point-at-bol)
5170 (point-at-eol)))))
5171 (setq suppress-prewarning
5172 (if (integerp org-agenda-skip-deadline-prewarning-if-scheduled)
5173 org-agenda-skip-deadline-prewarning-if-scheduled
5174 0)))
5175 (setq s (match-string 1)
5176 txt nil
5177 pos (1- (match-beginning 1))
5178 todo-state (save-match-data (org-get-todo-state))
5179 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
5180 (member todo-state
5181 org-agenda-repeating-timestamp-show-all))
5182 d2 (org-time-string-to-absolute
5183 (match-string 1) d1 'past show-all
5184 (current-buffer) pos)
5185 diff (- d2 d1)
5186 wdays (if suppress-prewarning
5187 (let ((org-deadline-warning-days suppress-prewarning))
5188 (org-get-wdays s))
5189 (org-get-wdays s))
5190 dfrac (- 1 (/ (* 1.0 diff) (max wdays 1)))
5191 upcomingp (and todayp (> diff 0)))
5192 ;; When to show a deadline in the calendar:
5193 ;; If the expiration is within wdays warning time.
5194 ;; Past-due deadlines are only shown on the current date
5195 (if (and (or (and (<= diff wdays)
5196 (and todayp (not org-agenda-only-exact-dates)))
5197 (= diff 0)))
5198 (save-excursion
5199 ;; (setq todo-state (org-get-todo-state))
5200 (setq donep (member todo-state org-done-keywords))
5201 (if (and donep
5202 (or org-agenda-skip-deadline-if-done
5203 (not (= diff 0))))
5204 (setq txt nil)
5205 (setq category (org-get-category)
5206 org-category-pos (get-text-property (point) 'org-category-position))
5207 (if (not (re-search-backward "^\\*+[ \t]+" nil t))
5208 (setq txt org-agenda-no-heading-message)
5209 (goto-char (match-end 0))
5210 (setq pos1 (match-beginning 0))
5211 (setq tags (org-get-tags-at pos1))
5212 (setq head (buffer-substring-no-properties
5213 (point)
5214 (progn (skip-chars-forward "^\r\n")
5215 (point))))
5216 (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
5217 (setq timestr
5218 (concat (substring s (match-beginning 1)) " "))
5219 (setq timestr 'time))
5220 (setq txt (org-agenda-format-item
5221 (if (= diff 0)
5222 (car org-agenda-deadline-leaders)
5223 (if (functionp
5224 (nth 1 org-agenda-deadline-leaders))
5225 (funcall
5226 (nth 1 org-agenda-deadline-leaders)
5227 diff date)
5228 (format (nth 1 org-agenda-deadline-leaders)
5229 diff)))
5230 head category tags
5231 (if (not (= diff 0)) nil timestr)))))
5232 (when txt
5233 (setq face (org-agenda-deadline-face dfrac))
5234 (org-add-props txt props
5235 'org-marker (org-agenda-new-marker pos)
5236 'org-hd-marker (org-agenda-new-marker pos1)
5237 'priority (+ (- diff)
5238 (org-get-priority txt))
5239 'org-category category
5240 'org-category-position org-category-pos
5241 'todo-state todo-state
5242 'type (if upcomingp "upcoming-deadline" "deadline")
5243 'date (if upcomingp date d2)
5244 'face (if donep 'org-agenda-done face)
5245 'undone-face face 'done-face 'org-agenda-done)
5246 (push txt ee))))))
5247 (nreverse ee)))
5249 (defun org-agenda-deadline-face (fraction)
5250 "Return the face to displaying a deadline item.
5251 FRACTION is what fraction of the head-warning time has passed."
5252 (let ((faces org-agenda-deadline-faces) f)
5253 (catch 'exit
5254 (while (setq f (pop faces))
5255 (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
5257 (defun org-agenda-get-scheduled (&optional deadline-results)
5258 "Return the scheduled information for agenda display."
5259 (let* ((props (list 'org-not-done-regexp org-not-done-regexp
5260 'org-todo-regexp org-todo-regexp
5261 'org-complex-heading-regexp org-complex-heading-regexp
5262 'done-face 'org-agenda-done
5263 'mouse-face 'highlight
5264 'help-echo
5265 (format "mouse-2 or RET jump to org file %s"
5266 (abbreviate-file-name buffer-file-name))))
5267 (regexp org-scheduled-time-regexp)
5268 (todayp (org-agenda-todayp date)) ; DATE bound by calendar
5269 (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
5271 (deadline-position-alist
5272 (mapcar (lambda (a) (and (setq mm (get-text-property
5273 0 'org-hd-marker a))
5274 (cons (marker-position mm) a)))
5275 deadline-results))
5276 d2 diff pos pos1 category org-category-pos tags donep
5277 ee txt head pastschedp todo-state face timestr s habitp show-all)
5278 (goto-char (point-min))
5279 (while (re-search-forward regexp nil t)
5280 (catch :skip
5281 (org-agenda-skip)
5282 (setq s (match-string 1)
5283 txt nil
5284 pos (1- (match-beginning 1))
5285 todo-state (save-match-data (org-get-todo-state))
5286 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
5287 (member todo-state
5288 org-agenda-repeating-timestamp-show-all))
5289 d2 (org-time-string-to-absolute
5290 (match-string 1) d1 'past show-all
5291 (current-buffer) pos)
5292 diff (- d2 d1))
5293 (setq pastschedp (and todayp (< diff 0)))
5294 ;; When to show a scheduled item in the calendar:
5295 ;; If it is on or past the date.
5296 (when (or (and (< diff 0)
5297 (< (abs diff) org-scheduled-past-days)
5298 (and todayp (not org-agenda-only-exact-dates)))
5299 (= diff 0))
5300 (save-excursion
5301 (setq donep (member todo-state org-done-keywords))
5302 (if (and donep
5303 (or org-agenda-skip-scheduled-if-done
5304 (not (= diff 0))
5305 (and (functionp 'org-is-habit-p)
5306 (org-is-habit-p))))
5307 (setq txt nil)
5308 (setq habitp (and (functionp 'org-is-habit-p)
5309 (org-is-habit-p)))
5310 (setq category (org-get-category)
5311 org-category-pos (get-text-property (point) 'org-category-position))
5312 (if (not (re-search-backward "^\\*+[ \t]+" nil t))
5313 (setq txt org-agenda-no-heading-message)
5314 (goto-char (match-end 0))
5315 (setq pos1 (match-beginning 0))
5316 (if habitp
5317 (if (or (not org-habit-show-habits)
5318 (and (not todayp)
5319 org-habit-show-habits-only-for-today))
5320 (throw :skip nil))
5321 (if (and
5322 (or (eq t org-agenda-skip-scheduled-if-deadline-is-shown)
5323 (and org-agenda-skip-scheduled-if-deadline-is-shown
5324 pastschedp))
5325 (setq mm (assoc pos1 deadline-position-alist)))
5326 (throw :skip nil)))
5327 (setq tags (org-get-tags-at))
5328 (setq head (buffer-substring-no-properties
5329 (point)
5330 (progn (skip-chars-forward "^\r\n") (point))))
5331 (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
5332 (setq timestr
5333 (concat (substring s (match-beginning 1)) " "))
5334 (setq timestr 'time))
5335 (setq txt (org-agenda-format-item
5336 (if (= diff 0)
5337 (car org-agenda-scheduled-leaders)
5338 (format (nth 1 org-agenda-scheduled-leaders)
5339 (- 1 diff)))
5340 head category tags
5341 (if (not (= diff 0)) nil timestr)
5342 nil habitp))))
5343 (when txt
5344 (setq face
5345 (cond
5346 ((and (not habitp) pastschedp)
5347 'org-scheduled-previously)
5348 (todayp 'org-scheduled-today)
5349 (t 'org-scheduled))
5350 habitp (and habitp (org-habit-parse-todo)))
5351 (org-add-props txt props
5352 'undone-face face
5353 'face (if donep 'org-agenda-done face)
5354 'org-marker (org-agenda-new-marker pos)
5355 'org-hd-marker (org-agenda-new-marker pos1)
5356 'type (if pastschedp "past-scheduled" "scheduled")
5357 'date (if pastschedp d2 date)
5358 'priority (if habitp
5359 (org-habit-get-priority habitp)
5360 (+ 94 (- 5 diff) (org-get-priority txt)))
5361 'org-category category
5362 'org-category-position org-category-pos
5363 'org-habit-p habitp
5364 'todo-state todo-state)
5365 (push txt ee))))))
5366 (nreverse ee)))
5368 (defun org-agenda-get-blocks ()
5369 "Return the date-range information for agenda display."
5370 (let* ((props (list 'face nil
5371 'org-not-done-regexp org-not-done-regexp
5372 'org-todo-regexp org-todo-regexp
5373 'org-complex-heading-regexp org-complex-heading-regexp
5374 'mouse-face 'highlight
5375 'help-echo
5376 (format "mouse-2 or RET jump to org file %s"
5377 (abbreviate-file-name buffer-file-name))))
5378 (regexp org-tr-regexp)
5379 (d0 (calendar-absolute-from-gregorian date))
5380 marker hdmarker ee txt d1 d2 s1 s2 category org-category-pos
5381 todo-state tags pos head donep)
5382 (goto-char (point-min))
5383 (while (re-search-forward regexp nil t)
5384 (catch :skip
5385 (org-agenda-skip)
5386 (setq pos (point))
5387 (let ((start-time (match-string 1))
5388 (end-time (match-string 2)))
5389 (setq s1 (match-string 1)
5390 s2 (match-string 2)
5391 d1 (time-to-days (org-time-string-to-time s1 (current-buffer) pos))
5392 d2 (time-to-days (org-time-string-to-time s2 (current-buffer) pos)))
5393 (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
5394 ;; Only allow days between the limits, because the normal
5395 ;; date stamps will catch the limits.
5396 (save-excursion
5397 (setq todo-state (org-get-todo-state))
5398 (setq donep (member todo-state org-done-keywords))
5399 (if (and donep org-agenda-skip-timestamp-if-done)
5400 (throw :skip t))
5401 (setq marker (org-agenda-new-marker (point)))
5402 (setq category (org-get-category)
5403 org-category-pos (get-text-property (point) 'org-category-position))
5404 (if (not (re-search-backward org-outline-regexp-bol nil t))
5405 (setq txt org-agenda-no-heading-message)
5406 (goto-char (match-beginning 0))
5407 (setq hdmarker (org-agenda-new-marker (point)))
5408 (setq tags (org-get-tags-at))
5409 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
5410 (setq head (match-string 1))
5411 (let ((remove-re
5412 (if org-agenda-remove-timeranges-from-blocks
5413 (concat
5414 "<" (regexp-quote s1) ".*?>"
5415 "--"
5416 "<" (regexp-quote s2) ".*?>")
5417 nil)))
5418 (setq txt (org-agenda-format-item
5419 (format
5420 (nth (if (= d1 d2) 0 1)
5421 org-agenda-timerange-leaders)
5422 (1+ (- d0 d1)) (1+ (- d2 d1)))
5423 head category tags
5424 (cond ((and (= d1 d0) (= d2 d0))
5425 (concat "<" start-time ">--<" end-time ">"))
5426 ((= d1 d0)
5427 (concat "<" start-time ">"))
5428 ((= d2 d0)
5429 (concat "<" end-time ">"))
5430 (t nil))
5431 remove-re))))
5432 (org-add-props txt props
5433 'org-marker marker 'org-hd-marker hdmarker
5434 'type "block" 'date date
5435 'todo-state todo-state
5436 'priority (org-get-priority txt) 'org-category category
5437 'org-category-position org-category-pos)
5438 (push txt ee))))
5439 (goto-char pos)))
5440 ;; Sort the entries by expiration date.
5441 (nreverse ee)))
5443 ;;; Agenda presentation and sorting
5445 (defvar org-prefix-has-time nil
5446 "A flag, set by `org-compile-prefix-format'.
5447 The flag is set if the currently compiled format contains a `%t'.")
5448 (defvar org-prefix-has-tag nil
5449 "A flag, set by `org-compile-prefix-format'.
5450 The flag is set if the currently compiled format contains a `%T'.")
5451 (defvar org-prefix-has-effort nil
5452 "A flag, set by `org-compile-prefix-format'.
5453 The flag is set if the currently compiled format contains a `%e'.")
5454 (defvar org-prefix-category-length nil
5455 "Used by `org-compile-prefix-format' to remember the category field width.")
5456 (defvar org-prefix-category-max-length nil
5457 "Used by `org-compile-prefix-format' to remember the category field width.")
5459 (defun org-agenda-get-category-icon (category)
5460 "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
5461 (dolist (entry org-agenda-category-icon-alist)
5462 (when (org-string-match-p (car entry) category)
5463 (if (listp (cadr entry))
5464 (return (cadr entry))
5465 (return (apply 'create-image (cdr entry)))))))
5467 (defun org-agenda-format-item (extra txt &optional category tags dotime
5468 remove-re habitp)
5469 "Format TXT to be inserted into the agenda buffer.
5470 In particular, it adds the prefix and corresponding text properties. EXTRA
5471 must be a string and replaces the `%s' specifier in the prefix format.
5472 CATEGORY (string, symbol or nil) may be used to overrule the default
5473 category taken from local variable or file name. It will replace the `%c'
5474 specifier in the format. DOTIME, when non-nil, indicates that a
5475 time-of-day should be extracted from TXT for sorting of this entry, and for
5476 the `%t' specifier in the format. When DOTIME is a string, this string is
5477 searched for a time before TXT is. TAGS can be the tags of the headline.
5478 Any match of REMOVE-RE will be removed from TXT."
5479 (save-match-data
5480 ;; Diary entries sometimes have extra whitespace at the beginning
5481 (if (string-match "^ +" txt) (setq txt (replace-match "" nil nil txt)))
5483 ;; Fix the tags part in txt
5484 (setq txt (org-agenda-fix-displayed-tags
5485 txt tags
5486 org-agenda-show-inherited-tags
5487 org-agenda-hide-tags-regexp))
5488 (let* ((category (or category
5489 (if (stringp org-category)
5490 org-category
5491 (and org-category (symbol-name org-category)))
5492 (if buffer-file-name
5493 (file-name-sans-extension
5494 (file-name-nondirectory buffer-file-name))
5495 "")))
5496 (category-icon (org-agenda-get-category-icon category))
5497 (category-icon (if category-icon
5498 (propertize " " 'display category-icon)
5499 ""))
5500 ;; time, tag, effort are needed for the eval of the prefix format
5501 (tag (if tags (nth (1- (length tags)) tags) ""))
5502 time effort neffort
5503 (ts (if dotime (concat
5504 (if (stringp dotime) dotime "")
5505 (and org-agenda-search-headline-for-time txt))))
5506 (time-of-day (and dotime (org-get-time-of-day ts)))
5507 stamp plain s0 s1 s2 rtn srp l
5508 duration thecategory)
5509 (and (eq major-mode 'org-mode) buffer-file-name
5510 (add-to-list 'org-agenda-contributing-files buffer-file-name))
5511 (when (and dotime time-of-day)
5512 ;; Extract starting and ending time and move them to prefix
5513 (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
5514 (setq plain (string-match org-plain-time-of-day-regexp ts)))
5515 (setq s0 (match-string 0 ts)
5516 srp (and stamp (match-end 3))
5517 s1 (match-string (if plain 1 2) ts)
5518 s2 (match-string (if plain 8 (if srp 4 6)) ts))
5520 ;; If the times are in TXT (not in DOTIMES), and the prefix will list
5521 ;; them, we might want to remove them there to avoid duplication.
5522 ;; The user can turn this off with a variable.
5523 (if (and org-prefix-has-time
5524 org-agenda-remove-times-when-in-prefix (or stamp plain)
5525 (string-match (concat (regexp-quote s0) " *") txt)
5526 (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
5527 (if (eq org-agenda-remove-times-when-in-prefix 'beg)
5528 (= (match-beginning 0) 0)
5530 (setq txt (replace-match "" nil nil txt))))
5531 ;; Normalize the time(s) to 24 hour
5532 (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
5533 (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
5535 ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
5536 (when (and s1 (not s2) org-agenda-default-appointment-duration)
5537 (setq s2
5538 (org-minutes-to-hh:mm-string
5539 (+ (org-hh:mm-string-to-minutes s1) org-agenda-default-appointment-duration))))
5541 ;; Compute the duration
5542 (when s2
5543 (setq duration (- (org-hh:mm-string-to-minutes s2)
5544 (org-hh:mm-string-to-minutes s1)))))
5546 (when (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
5547 txt)
5548 ;; Tags are in the string
5549 (if (or (eq org-agenda-remove-tags t)
5550 (and org-agenda-remove-tags
5551 org-prefix-has-tag))
5552 (setq txt (replace-match "" t t txt))
5553 (setq txt (replace-match
5554 (concat (make-string (max (- 50 (length txt)) 1) ?\ )
5555 (match-string 2 txt))
5556 t t txt))))
5557 (when (eq major-mode 'org-mode)
5558 (setq effort
5559 (condition-case nil
5560 (org-get-effort
5561 (or (get-text-property 0 'org-hd-marker txt)
5562 (get-text-property 0 'org-marker txt)))
5563 (error nil)))
5564 (when effort
5565 (setq neffort (org-duration-string-to-minutes effort)
5566 effort (setq effort (concat "[" effort "]")))))
5567 ;; prevent erroring out with %e format when there is no effort
5568 (or effort (setq effort ""))
5570 (when remove-re
5571 (while (string-match remove-re txt)
5572 (setq txt (replace-match "" t t txt))))
5574 ;; Set org-heading property on `txt' to mark the start of the
5575 ;; heading.
5576 (add-text-properties 0 (length txt) '(org-heading t) txt)
5578 ;; Prepare the variables needed in the eval of the compiled format
5579 (setq time (cond (s2 (concat
5580 (org-agenda-time-of-day-to-ampm-maybe s1)
5581 "-" (org-agenda-time-of-day-to-ampm-maybe s2)
5582 (if org-agenda-timegrid-use-ampm " ")))
5583 (s1 (concat
5584 (org-agenda-time-of-day-to-ampm-maybe s1)
5585 (if org-agenda-timegrid-use-ampm
5586 "........ "
5587 "......")))
5588 (t ""))
5589 extra (or (and (not habitp) extra) "")
5590 category (if (symbolp category) (symbol-name category) category)
5591 thecategory (copy-sequence category))
5592 (if (string-match org-bracket-link-regexp category)
5593 (progn
5594 (setq l (if (match-end 3)
5595 (- (match-end 3) (match-beginning 3))
5596 (- (match-end 1) (match-beginning 1))))
5597 (when (< l (or org-prefix-category-length 0))
5598 (setq category (copy-sequence category))
5599 (org-add-props category nil
5600 'extra-space (make-string
5601 (- org-prefix-category-length l 1) ?\ ))))
5602 (if (and org-prefix-category-max-length
5603 (>= (length category) org-prefix-category-max-length))
5604 (setq category (substring category 0 (1- org-prefix-category-max-length)))))
5605 ;; Evaluate the compiled format
5606 (setq rtn (concat (eval org-prefix-format-compiled) txt))
5608 ;; And finally add the text properties
5609 (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
5610 (org-add-props rtn nil
5611 'org-category (if thecategory (downcase thecategory) category)
5612 'tags (mapcar 'org-downcase-keep-props tags)
5613 'org-highest-priority org-highest-priority
5614 'org-lowest-priority org-lowest-priority
5615 'time-of-day time-of-day
5616 'duration duration
5617 'effort effort
5618 'effort-minutes neffort
5619 'txt txt
5620 'time time
5621 'extra extra
5622 'format org-prefix-format-compiled
5623 'dotime dotime))))
5625 (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
5626 "Remove tags string from TXT, and add a modified list of tags.
5627 The modified list may contain inherited tags, and tags matched by
5628 `org-agenda-hide-tags-regexp' will be removed."
5629 (when (or add-inherited hide-re)
5630 (if (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") txt)
5631 (setq txt (substring txt 0 (match-beginning 0))))
5632 (setq tags
5633 (delq nil
5634 (mapcar (lambda (tg)
5635 (if (or (and hide-re (string-match hide-re tg))
5636 (and (not add-inherited)
5637 (get-text-property 0 'inherited tg)))
5639 tg))
5640 tags)))
5641 (when tags
5642 (let ((have-i (get-text-property 0 'inherited (car tags)))
5644 (setq txt (concat txt " :"
5645 (mapconcat
5646 (lambda (x)
5647 (setq i (get-text-property 0 'inherited x))
5648 (if (and have-i (not i))
5649 (progn
5650 (setq have-i nil)
5651 (concat ":" x))
5653 tags ":")
5654 (if have-i "::" ":"))))))
5655 txt)
5657 (defun org-downcase-keep-props (s)
5658 (let ((props (text-properties-at 0 s)))
5659 (setq s (downcase s))
5660 (add-text-properties 0 (length s) props s)
5663 (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
5664 (defvar org-agenda-sorting-strategy-selected nil)
5666 (defun org-agenda-add-time-grid-maybe (list ndays todayp)
5667 (catch 'exit
5668 (cond ((not org-agenda-use-time-grid) (throw 'exit list))
5669 ((and todayp (member 'today (car org-agenda-time-grid))))
5670 ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
5671 ((member 'weekly (car org-agenda-time-grid)))
5672 (t (throw 'exit list)))
5673 (let* ((have (delq nil (mapcar
5674 (lambda (x) (get-text-property 1 'time-of-day x))
5675 list)))
5676 (string (nth 1 org-agenda-time-grid))
5677 (gridtimes (nth 2 org-agenda-time-grid))
5678 (req (car org-agenda-time-grid))
5679 (remove (member 'remove-match req))
5680 new time)
5681 (if (and (member 'require-timed req) (not have))
5682 ;; don't show empty grid
5683 (throw 'exit list))
5684 (while (setq time (pop gridtimes))
5685 (unless (and remove (member time have))
5686 (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
5687 (push (org-agenda-format-item
5688 nil string "" nil
5689 (concat (substring time 0 -2) ":" (substring time -2)))
5690 new)
5691 (put-text-property
5692 2 (length (car new)) 'face 'org-time-grid (car new))))
5693 (when (and todayp org-agenda-show-current-time-in-grid)
5694 (push (org-agenda-format-item
5696 org-agenda-current-time-string
5697 "" nil
5698 (format-time-string "%H:%M "))
5699 new)
5700 (put-text-property
5701 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
5703 (if (member 'time-up org-agenda-sorting-strategy-selected)
5704 (append new list)
5705 (append list new)))))
5707 (defun org-compile-prefix-format (key)
5708 "Compile the prefix format into a Lisp form that can be evaluated.
5709 The resulting form is returned and stored in the variable
5710 `org-prefix-format-compiled'."
5711 (setq org-prefix-has-time nil org-prefix-has-tag nil
5712 org-prefix-category-length nil
5713 org-prefix-has-effort nil)
5714 (let ((s (cond
5715 ((stringp org-agenda-prefix-format)
5716 org-agenda-prefix-format)
5717 ((assq key org-agenda-prefix-format)
5718 (cdr (assq key org-agenda-prefix-format)))
5719 (t " %-12:c%?-12t% s")))
5720 (start 0)
5721 varform vars var e c f opt)
5722 (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([ctsei]\\|(.+)\\)"
5723 s start)
5724 (setq var (or (cdr (assoc (match-string 4 s)
5725 '(("c" . category) ("t" . time) ("s" . extra)
5726 ("i" . category-icon) ("T" . tag) ("e" . effort))))
5727 'eval)
5728 c (or (match-string 3 s) "")
5729 opt (match-beginning 1)
5730 start (1+ (match-beginning 0)))
5731 (if (equal var 'time) (setq org-prefix-has-time t))
5732 (if (equal var 'tag) (setq org-prefix-has-tag t))
5733 (if (equal var 'effort) (setq org-prefix-has-effort t))
5734 (setq f (concat "%" (match-string 2 s) "s"))
5735 (when (equal var 'category)
5736 (setq org-prefix-category-length
5737 (floor (abs (string-to-number (match-string 2 s)))))
5738 (setq org-prefix-category-max-length
5739 (let ((x (match-string 2 s)))
5740 (save-match-data
5741 (if (string-match "\\.[0-9]+" x)
5742 (string-to-number (substring (match-string 0 x) 1)))))))
5743 (if (eq var 'eval)
5744 (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
5745 (if opt
5746 (setq varform
5747 `(if (equal "" ,var)
5749 (format ,f (if (equal "" ,var) "" (concat ,var ,c)))))
5750 (setq varform `(format ,f (if (equal ,var "") "" (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
5751 (setq s (replace-match "%s" t nil s))
5752 (push varform vars))
5753 (setq vars (nreverse vars))
5754 (setq org-prefix-format-compiled `(format ,s ,@vars))))
5756 (defun org-set-sorting-strategy (key)
5757 (if (symbolp (car org-agenda-sorting-strategy))
5758 ;; the old format
5759 (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
5760 (setq org-agenda-sorting-strategy-selected
5761 (or (cdr (assq key org-agenda-sorting-strategy))
5762 (cdr (assq 'agenda org-agenda-sorting-strategy))
5763 '(time-up category-keep priority-down)))))
5765 (defun org-get-time-of-day (s &optional string mod24)
5766 "Check string S for a time of day.
5767 If found, return it as a military time number between 0 and 2400.
5768 If not found, return nil.
5769 The optional STRING argument forces conversion into a 5 character wide string
5770 HH:MM."
5771 (save-match-data
5772 (when
5773 (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
5774 (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
5775 (let* ((h (string-to-number (match-string 1 s)))
5776 (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
5777 (ampm (if (match-end 4) (downcase (match-string 4 s))))
5778 (am-p (equal ampm "am"))
5779 (h1 (cond ((not ampm) h)
5780 ((= h 12) (if am-p 0 12))
5781 (t (+ h (if am-p 0 12)))))
5782 (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
5783 (mod h1 24) h1))
5784 (t0 (+ (* 100 h2) m))
5785 (t1 (concat (if (>= h1 24) "+" " ")
5786 (if (and org-agenda-time-leading-zero
5787 (< t0 1000)) "0" "")
5788 (if (< t0 100) "0" "")
5789 (if (< t0 10) "0" "")
5790 (int-to-string t0))))
5791 (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
5793 (defvar org-agenda-before-sorting-filter-function nil
5794 "Function to be applied to agenda items prior to sorting.
5795 Prior to sorting also means just before they are inserted into the agenda.
5797 To aid sorting, you may revisit the original entries and add more text
5798 properties which will later be used by the sorting functions.
5800 The function should take a string argument, an agenda line.
5801 It has access to the text properties in that line, which contain among
5802 other things, the property `org-hd-marker' that points to the entry
5803 where the line comes from. Note that not all lines going into the agenda
5804 have this property, only most.
5806 The function should return the modified string. It is probably best
5807 to ONLY change text properties.
5809 You can also use this function as a filter, by returning nil for lines
5810 you don't want to have in the agenda at all. For this application, you
5811 could bind the variable in the options section of a custom command.")
5813 (defun org-finalize-agenda-entries (list &optional nosort)
5814 "Sort and concatenate the agenda items."
5815 (setq list (mapcar 'org-agenda-highlight-todo list))
5816 (if nosort
5817 list
5818 (when org-agenda-before-sorting-filter-function
5819 (setq list (delq nil (mapcar org-agenda-before-sorting-filter-function list))))
5820 (mapconcat 'identity (sort list 'org-entries-lessp) "\n")))
5822 (defun org-agenda-highlight-todo (x)
5823 (let ((org-done-keywords org-done-keywords-for-agenda)
5824 (case-fold-search nil)
5826 (if (eq x 'line)
5827 (save-excursion
5828 (beginning-of-line 1)
5829 (setq re (org-get-at-bol 'org-todo-regexp))
5830 (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
5831 (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
5832 (add-text-properties (match-beginning 0) (match-end 1)
5833 (list 'face (org-get-todo-face 1)))
5834 (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
5835 (delete-region (match-beginning 1) (1- (match-end 0)))
5836 (goto-char (match-beginning 1))
5837 (insert (format org-agenda-todo-keyword-format s)))))
5838 (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
5839 (setq re (get-text-property 0 'org-todo-regexp x))
5840 (when (and re
5841 (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
5842 x (or pl 0)) pl))
5843 (add-text-properties
5844 (or (match-end 1) (match-end 0)) (match-end 0)
5845 (list 'face (org-get-todo-face (match-string 2 x)))
5847 (when (match-end 1)
5848 (setq x (concat (substring x 0 (match-end 1))
5849 (format org-agenda-todo-keyword-format
5850 (match-string 2 x))
5851 (org-add-props " " (text-properties-at 0 x))
5852 (substring x (match-end 3)))))))
5853 x)))
5855 (defsubst org-cmp-priority (a b)
5856 "Compare the priorities of string A and B."
5857 (let ((pa (or (get-text-property 1 'priority a) 0))
5858 (pb (or (get-text-property 1 'priority b) 0)))
5859 (cond ((> pa pb) +1)
5860 ((< pa pb) -1)
5861 (t nil))))
5863 (defsubst org-cmp-effort (a b)
5864 "Compare the effort values of string A and B."
5865 (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
5866 (ea (or (get-text-property 1 'effort-minutes a) def))
5867 (eb (or (get-text-property 1 'effort-minutes b) def)))
5868 (cond ((> ea eb) +1)
5869 ((< ea eb) -1)
5870 (t nil))))
5872 (defsubst org-cmp-category (a b)
5873 "Compare the string values of categories of strings A and B."
5874 (let ((ca (or (get-text-property 1 'org-category a) ""))
5875 (cb (or (get-text-property 1 'org-category b) "")))
5876 (cond ((string-lessp ca cb) -1)
5877 ((string-lessp cb ca) +1)
5878 (t nil))))
5880 (defsubst org-cmp-todo-state (a b)
5881 "Compare the todo states of strings A and B."
5882 (let* ((ma (or (get-text-property 1 'org-marker a)
5883 (get-text-property 1 'org-hd-marker a)))
5884 (mb (or (get-text-property 1 'org-marker b)
5885 (get-text-property 1 'org-hd-marker b)))
5886 (fa (and ma (marker-buffer ma)))
5887 (fb (and mb (marker-buffer mb)))
5888 (todo-kwds
5889 (or (and fa (with-current-buffer fa org-todo-keywords-1))
5890 (and fb (with-current-buffer fb org-todo-keywords-1))))
5891 (ta (or (get-text-property 1 'todo-state a) ""))
5892 (tb (or (get-text-property 1 'todo-state b) ""))
5893 (la (- (length (member ta todo-kwds))))
5894 (lb (- (length (member tb todo-kwds))))
5895 (donepa (member ta org-done-keywords-for-agenda))
5896 (donepb (member tb org-done-keywords-for-agenda)))
5897 (cond ((and donepa (not donepb)) -1)
5898 ((and (not donepa) donepb) +1)
5899 ((< la lb) -1)
5900 ((< lb la) +1)
5901 (t nil))))
5903 (defsubst org-cmp-alpha (a b)
5904 "Compare the headlines, alphabetically."
5905 (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
5906 (plb (text-property-any 0 (length b) 'org-heading t b))
5907 (ta (and pla (substring a pla)))
5908 (tb (and plb (substring b plb))))
5909 (when pla
5910 (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
5911 "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
5912 (setq ta (substring ta (match-end 0))))
5913 (setq ta (downcase ta)))
5914 (when plb
5915 (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
5916 "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
5917 (setq tb (substring tb (match-end 0))))
5918 (setq tb (downcase tb)))
5919 (cond ((not ta) +1)
5920 ((not tb) -1)
5921 ((string-lessp ta tb) -1)
5922 ((string-lessp tb ta) +1)
5923 (t nil))))
5925 (defsubst org-cmp-tag (a b)
5926 "Compare the string values of the first tags of A and B."
5927 (let ((ta (car (last (get-text-property 1 'tags a))))
5928 (tb (car (last (get-text-property 1 'tags b)))))
5929 (cond ((not ta) +1)
5930 ((not tb) -1)
5931 ((string-lessp ta tb) -1)
5932 ((string-lessp tb ta) +1)
5933 (t nil))))
5935 (defsubst org-cmp-time (a b)
5936 "Compare the time-of-day values of strings A and B."
5937 (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
5938 (ta (or (get-text-property 1 'time-of-day a) def))
5939 (tb (or (get-text-property 1 'time-of-day b) def)))
5940 (cond ((< ta tb) -1)
5941 ((< tb ta) +1)
5942 (t nil))))
5944 (defsubst org-cmp-habit-p (a b)
5945 "Compare the todo states of strings A and B."
5946 (let ((ha (get-text-property 1 'org-habit-p a))
5947 (hb (get-text-property 1 'org-habit-p b)))
5948 (cond ((and ha (not hb)) -1)
5949 ((and (not ha) hb) +1)
5950 (t nil))))
5952 (defsubst org-em (x y list) (or (memq x list) (memq y list)))
5954 (defun org-entries-lessp (a b)
5955 "Predicate for sorting agenda entries."
5956 ;; The following variables will be used when the form is evaluated.
5957 ;; So even though the compiler complains, keep them.
5958 (let* ((ss org-agenda-sorting-strategy-selected)
5959 (time-up (and (org-em 'time-up 'time-down ss)
5960 (org-cmp-time a b)))
5961 (time-down (if time-up (- time-up) nil))
5962 (priority-up (and (org-em 'priority-up 'priority-down ss)
5963 (org-cmp-priority a b)))
5964 (priority-down (if priority-up (- priority-up) nil))
5965 (effort-up (and (org-em 'effort-up 'effort-down ss)
5966 (org-cmp-effort a b)))
5967 (effort-down (if effort-up (- effort-up) nil))
5968 (category-up (and (or (org-em 'category-up 'category-down ss)
5969 (memq 'category-keep ss))
5970 (org-cmp-category a b)))
5971 (category-down (if category-up (- category-up) nil))
5972 (category-keep (if category-up +1 nil))
5973 (tag-up (and (org-em 'tag-up 'tag-down ss)
5974 (org-cmp-tag a b)))
5975 (tag-down (if tag-up (- tag-up) nil))
5976 (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
5977 (org-cmp-todo-state a b)))
5978 (todo-state-down (if todo-state-up (- todo-state-up) nil))
5979 (habit-up (and (org-em 'habit-up 'habit-down ss)
5980 (org-cmp-habit-p a b)))
5981 (habit-down (if habit-up (- habit-up) nil))
5982 (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
5983 (org-cmp-alpha a b)))
5984 (alpha-down (if alpha-up (- alpha-up) nil))
5985 (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
5986 user-defined-up user-defined-down)
5987 (if (and need-user-cmp org-agenda-cmp-user-defined
5988 (functionp org-agenda-cmp-user-defined))
5989 (setq user-defined-up
5990 (funcall org-agenda-cmp-user-defined a b)
5991 user-defined-down (if user-defined-up (- user-defined-up) nil)))
5992 (cdr (assoc
5993 (eval (cons 'or org-agenda-sorting-strategy-selected))
5994 '((-1 . t) (1 . nil) (nil . nil))))))
5996 ;;; Agenda restriction lock
5998 (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
5999 "Overlay to mark the headline to which agenda commands are restricted.")
6000 (overlay-put org-agenda-restriction-lock-overlay
6001 'face 'org-agenda-restriction-lock)
6002 (overlay-put org-agenda-restriction-lock-overlay
6003 'help-echo "Agendas are currently limited to this subtree.")
6004 (org-detach-overlay org-agenda-restriction-lock-overlay)
6006 (defun org-agenda-set-restriction-lock (&optional type)
6007 "Set restriction lock for agenda, to current subtree or file.
6008 Restriction will be the file if TYPE is `file', or if type is the
6009 universal prefix '(4), or if the cursor is before the first headline
6010 in the file. Otherwise, restriction will be to the current subtree."
6011 (interactive "P")
6012 (and (equal type '(4)) (setq type 'file))
6013 (setq type (cond
6014 (type type)
6015 ((org-at-heading-p) 'subtree)
6016 ((condition-case nil (org-back-to-heading t) (error nil))
6017 'subtree)
6018 (t 'file)))
6019 (if (eq type 'subtree)
6020 (progn
6021 (setq org-agenda-restrict t)
6022 (setq org-agenda-overriding-restriction 'subtree)
6023 (put 'org-agenda-files 'org-restrict
6024 (list (buffer-file-name (buffer-base-buffer))))
6025 (org-back-to-heading t)
6026 (move-overlay org-agenda-restriction-lock-overlay (point) (point-at-eol))
6027 (move-marker org-agenda-restrict-begin (point))
6028 (move-marker org-agenda-restrict-end
6029 (save-excursion (org-end-of-subtree t)))
6030 (message "Locking agenda restriction to subtree"))
6031 (put 'org-agenda-files 'org-restrict
6032 (list (buffer-file-name (buffer-base-buffer))))
6033 (setq org-agenda-restrict nil)
6034 (setq org-agenda-overriding-restriction 'file)
6035 (move-marker org-agenda-restrict-begin nil)
6036 (move-marker org-agenda-restrict-end nil)
6037 (message "Locking agenda restriction to file"))
6038 (setq current-prefix-arg nil)
6039 (org-agenda-maybe-redo))
6041 (defun org-agenda-remove-restriction-lock (&optional noupdate)
6042 "Remove the agenda restriction lock."
6043 (interactive "P")
6044 (org-detach-overlay org-agenda-restriction-lock-overlay)
6045 (org-detach-overlay org-speedbar-restriction-lock-overlay)
6046 (setq org-agenda-overriding-restriction nil)
6047 (setq org-agenda-restrict nil)
6048 (put 'org-agenda-files 'org-restrict nil)
6049 (move-marker org-agenda-restrict-begin nil)
6050 (move-marker org-agenda-restrict-end nil)
6051 (setq current-prefix-arg nil)
6052 (message "Agenda restriction lock removed")
6053 (or noupdate (org-agenda-maybe-redo)))
6055 (defun org-agenda-maybe-redo ()
6056 "If there is any window showing the agenda view, update it."
6057 (let ((w (get-buffer-window org-agenda-buffer-name t))
6058 (w0 (selected-window)))
6059 (when w
6060 (select-window w)
6061 (org-agenda-redo)
6062 (select-window w0)
6063 (if org-agenda-overriding-restriction
6064 (message "Agenda view shifted to new %s restriction"
6065 org-agenda-overriding-restriction)
6066 (message "Agenda restriction lock removed")))))
6068 ;;; Agenda commands
6070 (defun org-agenda-check-type (error &rest types)
6071 "Check if agenda buffer is of allowed type.
6072 If ERROR is non-nil, throw an error, otherwise just return nil."
6073 (if (memq org-agenda-type types)
6075 (if error
6076 (error "Not allowed in %s-type agenda buffers" org-agenda-type)
6077 nil)))
6079 (defun org-agenda-quit ()
6080 "Exit agenda by removing the window or the buffer."
6081 (interactive)
6082 (if org-agenda-columns-active
6083 (org-columns-quit)
6084 (let ((buf (current-buffer)))
6085 (if (eq org-agenda-window-setup 'other-frame)
6086 (progn
6087 (kill-buffer buf)
6088 (org-agenda-reset-markers)
6089 (org-columns-remove-overlays)
6090 (setq org-agenda-archives-mode nil)
6091 (delete-frame))
6092 (and (not (eq org-agenda-window-setup 'current-window))
6093 (not (one-window-p))
6094 (delete-window))
6095 (kill-buffer buf)
6096 (org-agenda-reset-markers)
6097 (org-columns-remove-overlays)
6098 (setq org-agenda-archives-mode nil)))
6099 ;; Maybe restore the pre-agenda window configuration.
6100 (and org-agenda-restore-windows-after-quit
6101 (not (eq org-agenda-window-setup 'other-frame))
6102 org-pre-agenda-window-conf
6103 (set-window-configuration org-pre-agenda-window-conf))))
6105 (defun org-agenda-exit ()
6106 "Exit agenda by removing the window or the buffer.
6107 Also kill all Org-mode buffers which have been loaded by `org-agenda'.
6108 Org-mode buffers visited directly by the user will not be touched."
6109 (interactive)
6110 (org-release-buffers org-agenda-new-buffers)
6111 (setq org-agenda-new-buffers nil)
6112 (org-agenda-quit))
6114 (defun org-agenda-execute (arg)
6115 "Execute another agenda command, keeping same window.
6116 So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
6117 in the agenda."
6118 (interactive "P")
6119 (let ((org-agenda-window-setup 'current-window))
6120 (org-agenda arg)))
6122 (defun org-agenda-redo ()
6123 "Rebuild Agenda.
6124 When this is the global TODO list, a prefix argument will be interpreted."
6125 (interactive)
6126 (let* ((org-agenda-keep-modes t)
6127 (filter org-agenda-filter)
6128 (preset (get 'org-agenda-filter :preset-filter))
6129 (org-agenda-filter-while-redo (or filter preset))
6130 (cols org-agenda-columns-active)
6131 (line (org-current-line))
6132 (window-line (- line (org-current-line (window-start))))
6133 (lprops (get 'org-agenda-redo-command 'org-lprops)))
6134 (put 'org-agenda-filter :preset-filter nil)
6135 (and cols (org-columns-quit))
6136 (message "Rebuilding agenda buffer...")
6137 (org-let lprops '(eval org-agenda-redo-command))
6138 (setq org-agenda-undo-list nil
6139 org-agenda-pending-undo-list nil)
6140 (message "Rebuilding agenda buffer...done")
6141 (put 'org-agenda-filter :preset-filter preset)
6142 (and (or filter preset) (org-agenda-filter-apply filter))
6143 (and cols (org-called-interactively-p 'any) (org-agenda-columns))
6144 (org-goto-line line)
6145 (recenter window-line)))
6148 (defvar org-global-tags-completion-table nil)
6149 (defvar org-agenda-filter-form nil)
6150 (defun org-agenda-filter-by-tag (strip &optional char narrow)
6151 "Keep only those lines in the agenda buffer that have a specific tag.
6152 The tag is selected with its fast selection letter, as configured.
6153 With prefix argument STRIP, remove all lines that do have the tag.
6154 A lisp caller can specify CHAR. NARROW means that the new tag should be
6155 used to narrow the search - the interactive user can also press `-' or `+'
6156 to switch to narrowing."
6157 (interactive "P")
6158 (let* ((alist org-tag-alist-for-agenda)
6159 (tag-chars (mapconcat
6160 (lambda (x) (if (and (not (symbolp (car x)))
6161 (cdr x))
6162 (char-to-string (cdr x))
6163 ""))
6164 alist ""))
6165 (efforts (org-split-string
6166 (or (cdr (assoc (concat org-effort-property "_ALL")
6167 org-global-properties))
6168 "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
6169 "")))
6170 (effort-op org-agenda-filter-effort-default-operator)
6171 (effort-prompt "")
6172 (inhibit-read-only t)
6173 (current org-agenda-filter)
6174 maybe-refresh a n tag)
6175 (unless char
6176 (message
6177 "%s by tag [%s ], [TAB], %s[/]:off, [+-]:narrow, [>=<?]:effort: "
6178 (if narrow "Narrow" "Filter") tag-chars
6179 (if org-agenda-auto-exclude-function "[RET], " ""))
6180 (setq char (read-char)))
6181 (when (member char '(?+ ?-))
6182 ;; Narrowing down
6183 (cond ((equal char ?-) (setq strip t narrow t))
6184 ((equal char ?+) (setq strip nil narrow t)))
6185 (message
6186 "Narrow by tag [%s ], [TAB], [/]:off, [>=<]:effort: " tag-chars)
6187 (setq char (read-char)))
6188 (when (member char '(?< ?> ?= ??))
6189 ;; An effort operator
6190 (setq effort-op (char-to-string char))
6191 (setq alist nil) ; to make sure it will be interpreted as effort.
6192 (unless (equal char ??)
6193 (loop for i from 0 to 9 do
6194 (setq effort-prompt
6195 (concat
6196 effort-prompt " ["
6197 (if (= i 9) "0" (int-to-string (1+ i)))
6198 "]" (nth i efforts))))
6199 (message "Effort%s: %s " effort-op effort-prompt)
6200 (setq char (read-char))
6201 (when (or (< char ?0) (> char ?9))
6202 (error "Need 1-9,0 to select effort" ))))
6203 (when (equal char ?\t)
6204 (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
6205 (org-set-local 'org-global-tags-completion-table
6206 (org-global-tags-completion-table)))
6207 (let ((completion-ignore-case t))
6208 (setq tag (org-icompleting-read
6209 "Tag: " org-global-tags-completion-table))))
6210 (cond
6211 ((equal char ?\r)
6212 (org-agenda-filter-by-tag-show-all)
6213 (when org-agenda-auto-exclude-function
6214 (setq org-agenda-filter '())
6215 (dolist (tag (org-agenda-get-represented-tags))
6216 (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
6217 (if modifier
6218 (push modifier org-agenda-filter))))
6219 (if (not (null org-agenda-filter))
6220 (org-agenda-filter-apply org-agenda-filter)))
6221 (setq maybe-refresh t))
6222 ((equal char ?/)
6223 (org-agenda-filter-by-tag-show-all)
6224 (when (get 'org-agenda-filter :preset-filter)
6225 (org-agenda-filter-apply org-agenda-filter))
6226 (setq maybe-refresh t))
6227 ((or (equal char ?\ )
6228 (setq a (rassoc char alist))
6229 (and (>= char ?0) (<= char ?9)
6230 (setq n (if (= char ?0) 9 (- char ?0 1))
6231 tag (concat effort-op (nth n efforts))
6232 a (cons tag nil)))
6233 (and (= char ??)
6234 (setq tag "?eff")
6235 a (cons tag nil))
6236 (and tag (setq a (cons tag nil))))
6237 (org-agenda-filter-by-tag-show-all)
6238 (setq tag (car a))
6239 (setq org-agenda-filter
6240 (cons (concat (if strip "-" "+") tag)
6241 (if narrow current nil)))
6242 (org-agenda-filter-apply org-agenda-filter)
6243 (setq maybe-refresh t))
6244 (t (error "Invalid tag selection character %c" char)))
6245 (when (and maybe-refresh
6246 (eq org-agenda-clockreport-mode 'with-filter))
6247 (org-agenda-redo))))
6249 (defun org-agenda-get-represented-tags ()
6250 "Get a list of all tags currently represented in the agenda."
6251 (let (p tags)
6252 (save-excursion
6253 (goto-char (point-min))
6254 (while (setq p (next-single-property-change (point) 'tags))
6255 (goto-char p)
6256 (mapc (lambda (x) (add-to-list 'tags x))
6257 (get-text-property (point) 'tags))))
6258 tags))
6260 (defun org-agenda-filter-by-tag-refine (strip &optional char)
6261 "Refine the current filter. See `org-agenda-filter-by-tag'."
6262 (interactive "P")
6263 (org-agenda-filter-by-tag strip char 'refine))
6265 (defun org-agenda-filter-make-matcher ()
6266 "Create the form that tests a line for the agenda filter."
6267 (let (f f1)
6268 (dolist (x (append (get 'org-agenda-filter :preset-filter)
6269 org-agenda-filter))
6270 (if (member x '("-" "+"))
6271 (setq f1 (if (equal x "-") 'tags '(not tags)))
6272 (if (string-match "[<=>?]" x)
6273 (setq f1 (org-agenda-filter-effort-form x))
6274 (setq f1 (list 'member (downcase (substring x 1)) 'tags)))
6275 (if (equal (string-to-char x) ?-)
6276 (setq f1 (list 'not f1))))
6277 (push f1 f))
6278 (cons 'and (nreverse f))))
6280 (defun org-agenda-filter-effort-form (e)
6281 "Return the form to compare the effort of the current line with what E says.
6282 E looks like \"+<2:25\"."
6283 (let (op)
6284 (setq e (substring e 1))
6285 (setq op (string-to-char e) e (substring e 1))
6286 (setq op (cond ((equal op ?<) '<=)
6287 ((equal op ?>) '>=)
6288 ((equal op ??) op)
6289 (t '=)))
6290 (list 'org-agenda-compare-effort (list 'quote op)
6291 (org-duration-string-to-minutes e))))
6293 (defun org-agenda-compare-effort (op value)
6294 "Compare the effort of the current line with VALUE, using OP.
6295 If the line does not have an effort defined, return nil."
6296 (let ((eff (org-get-at-bol 'effort-minutes)))
6297 (if (equal op ??)
6298 (not eff)
6299 (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 0))
6300 value))))
6302 (defun org-agenda-filter-apply (filter)
6303 "Set FILTER as the new agenda filter and apply it."
6304 (let (tags)
6305 (setq org-agenda-filter filter
6306 org-agenda-filter-form (org-agenda-filter-make-matcher))
6307 (org-agenda-set-mode-name)
6308 (save-excursion
6309 (goto-char (point-min))
6310 (while (not (eobp))
6311 (if (org-get-at-bol 'org-marker)
6312 (progn
6313 (setq tags (org-get-at-bol 'tags)) ; used in eval
6314 (if (not (eval org-agenda-filter-form))
6315 (org-agenda-filter-by-tag-hide-line))
6316 (beginning-of-line 2))
6317 (beginning-of-line 2))))
6318 (if (get-char-property (point) 'invisible)
6319 (org-agenda-previous-line))))
6321 (defun org-agenda-filter-by-tag-hide-line ()
6322 (let (ov)
6323 (setq ov (make-overlay (max (point-min) (1- (point-at-bol)))
6324 (point-at-eol)))
6325 (overlay-put ov 'invisible t)
6326 (overlay-put ov 'type 'tags-filter)
6327 (push ov org-agenda-filter-overlays)))
6329 (defun org-agenda-fix-tags-filter-overlays-at (&optional pos)
6330 (setq pos (or pos (point)))
6331 (save-excursion
6332 (dolist (ov (overlays-at pos))
6333 (when (and (overlay-get ov 'invisible)
6334 (eq (overlay-get ov 'type) 'tags-filter))
6335 (goto-char pos)
6336 (if (< (overlay-start ov) (point-at-eol))
6337 (move-overlay ov (point-at-eol)
6338 (overlay-end ov)))))))
6340 (defun org-agenda-filter-by-tag-show-all ()
6341 (mapc 'delete-overlay org-agenda-filter-overlays)
6342 (setq org-agenda-filter-overlays nil)
6343 (setq org-agenda-filter nil)
6344 (setq org-agenda-filter-form nil)
6345 (org-agenda-set-mode-name))
6347 (defun org-agenda-manipulate-query-add ()
6348 "Manipulate the query by adding a search term with positive selection.
6349 Positive selection means the term must be matched for selection of an entry."
6350 (interactive)
6351 (org-agenda-manipulate-query ?\[))
6352 (defun org-agenda-manipulate-query-subtract ()
6353 "Manipulate the query by adding a search term with negative selection.
6354 Negative selection means term must not be matched for selection of an entry."
6355 (interactive)
6356 (org-agenda-manipulate-query ?\]))
6357 (defun org-agenda-manipulate-query-add-re ()
6358 "Manipulate the query by adding a search regexp with positive selection.
6359 Positive selection means the regexp must match for selection of an entry."
6360 (interactive)
6361 (org-agenda-manipulate-query ?\{))
6362 (defun org-agenda-manipulate-query-subtract-re ()
6363 "Manipulate the query by adding a search regexp with negative selection.
6364 Negative selection means regexp must not match for selection of an entry."
6365 (interactive)
6366 (org-agenda-manipulate-query ?\}))
6367 (defun org-agenda-manipulate-query (char)
6368 (cond
6369 ((memq org-agenda-type '(timeline agenda))
6370 (let ((org-agenda-include-inactive-timestamps t))
6371 (org-agenda-redo))
6372 (message "Display now includes inactive timestamps as well"))
6373 ((eq org-agenda-type 'search)
6374 (org-add-to-string
6375 'org-agenda-query-string
6376 (if org-agenda-last-search-view-search-was-boolean
6377 (cdr (assoc char '((?\[ . " +") (?\] . " -")
6378 (?\{ . " +{}") (?\} . " -{}"))))
6379 " "))
6380 (setq org-agenda-redo-command
6381 (list 'org-search-view
6382 org-todo-only
6383 org-agenda-query-string
6384 (+ (length org-agenda-query-string)
6385 (if (member char '(?\{ ?\})) 0 1))))
6386 (set-register org-agenda-query-register org-agenda-query-string)
6387 (org-agenda-redo))
6388 (t (error "Cannot manipulate query for %s-type agenda buffers"
6389 org-agenda-type))))
6391 (defun org-add-to-string (var string)
6392 (set var (concat (symbol-value var) string)))
6394 (defun org-agenda-goto-date (date)
6395 "Jump to DATE in agenda."
6396 (interactive (list (let ((org-read-date-prefer-future
6397 (eval org-agenda-jump-prefer-future)))
6398 (org-read-date))))
6399 (org-agenda-list nil date))
6401 (defun org-agenda-goto-today ()
6402 "Go to today."
6403 (interactive)
6404 (org-agenda-check-type t 'timeline 'agenda)
6405 (let ((tdpos (text-property-any (point-min) (point-max) 'org-today t)))
6406 (cond
6407 (tdpos (goto-char tdpos))
6408 ((eq org-agenda-type 'agenda)
6409 (let* ((sd (org-agenda-compute-starting-span
6410 (org-today) (or org-agenda-current-span org-agenda-ndays org-agenda-span)))
6411 (org-agenda-overriding-arguments org-agenda-last-arguments))
6412 (setf (nth 1 org-agenda-overriding-arguments) sd)
6413 (org-agenda-redo)
6414 (org-agenda-find-same-or-today-or-agenda)))
6415 (t (error "Cannot find today")))))
6417 (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
6418 (goto-char
6419 (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
6420 (text-property-any (point-min) (point-max) 'org-today t)
6421 (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
6422 (point-min))))
6424 (defun org-agenda-later (arg)
6425 "Go forward in time by thee current span.
6426 With prefix ARG, go forward that many times the current span."
6427 (interactive "p")
6428 (org-agenda-check-type t 'agenda)
6429 (let* ((span org-agenda-current-span)
6430 (sd org-starting-day)
6431 (greg (calendar-gregorian-from-absolute sd))
6432 (cnt (org-get-at-bol 'org-day-cnt))
6433 greg2)
6434 (cond
6435 ((eq span 'day)
6436 (setq sd (+ arg sd)))
6437 ((eq span 'week)
6438 (setq sd (+ (* 7 arg) sd)))
6439 ((eq span 'month)
6440 (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
6441 sd (calendar-absolute-from-gregorian greg2))
6442 (setcar greg2 (1+ (car greg2))))
6443 ((eq span 'year)
6444 (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
6445 sd (calendar-absolute-from-gregorian greg2))
6446 (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
6448 (setq sd (+ (* span arg) sd))))
6449 (let ((org-agenda-overriding-arguments
6450 (list (car org-agenda-last-arguments) sd span t)))
6451 (org-agenda-redo)
6452 (org-agenda-find-same-or-today-or-agenda cnt))))
6454 (defun org-agenda-earlier (arg)
6455 "Go backward in time by the current span.
6456 With prefix ARG, go backward that many times the current span."
6457 (interactive "p")
6458 (org-agenda-later (- arg)))
6460 (defun org-agenda-view-mode-dispatch ()
6461 "Call one of the view mode commands."
6462 (interactive)
6463 (message "View: [d]ay [w]eek [m]onth [y]ear [SPC]reset [q]uit/abort
6464 time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
6465 [a]rch-trees [A]rch-files clock[R]eport include[D]iary
6466 [E]ntryText")
6467 (let ((a (read-char-exclusive)))
6468 (case a
6469 (?\ (call-interactively 'org-agenda-reset-view))
6470 (?d (call-interactively 'org-agenda-day-view))
6471 (?w (call-interactively 'org-agenda-week-view))
6472 (?m (call-interactively 'org-agenda-month-view))
6473 (?y (call-interactively 'org-agenda-year-view))
6474 (?l (call-interactively 'org-agenda-log-mode))
6475 (?L (org-agenda-log-mode '(4)))
6476 (?c (org-agenda-log-mode 'clockcheck))
6477 ((?F ?f) (call-interactively 'org-agenda-follow-mode))
6478 (?a (call-interactively 'org-agenda-archives-mode))
6479 (?A (org-agenda-archives-mode 'files))
6480 ((?R ?r) (call-interactively 'org-agenda-clockreport-mode))
6481 ((?E ?e) (call-interactively 'org-agenda-entry-text-mode))
6482 (?G (call-interactively 'org-agenda-toggle-time-grid))
6483 (?D (call-interactively 'org-agenda-toggle-diary))
6484 (?\! (call-interactively 'org-agenda-toggle-deadlines))
6485 (?\[ (let ((org-agenda-include-inactive-timestamps t))
6486 (org-agenda-check-type t 'timeline 'agenda)
6487 (org-agenda-redo))
6488 (message "Display now includes inactive timestamps as well"))
6489 (?q (message "Abort"))
6490 (otherwise (error "Invalid key" )))))
6492 (defun org-agenda-reset-view ()
6493 "Switch to default view for agenda."
6494 (interactive)
6495 (org-agenda-change-time-span (or org-agenda-ndays org-agenda-span)))
6496 (defun org-agenda-day-view (&optional day-of-year)
6497 "Switch to daily view for agenda.
6498 With argument DAY-OF-YEAR, switch to that day of the year."
6499 (interactive "P")
6500 (org-agenda-change-time-span 'day day-of-year))
6501 (defun org-agenda-week-view (&optional iso-week)
6502 "Switch to daily view for agenda.
6503 With argument ISO-WEEK, switch to the corresponding ISO week.
6504 If ISO-WEEK has more then 2 digits, only the last two encode the
6505 week. Any digits before this encode a year. So 200712 means
6506 week 12 of year 2007. Years in the range 1938-2037 can also be
6507 written as 2-digit years."
6508 (interactive "P")
6509 (org-agenda-change-time-span 'week iso-week))
6510 (defun org-agenda-month-view (&optional month)
6511 "Switch to monthly view for agenda.
6512 With argument MONTH, switch to that month."
6513 (interactive "P")
6514 (org-agenda-change-time-span 'month month))
6515 (defun org-agenda-year-view (&optional year)
6516 "Switch to yearly view for agenda.
6517 With argument YEAR, switch to that year.
6518 If MONTH has more then 2 digits, only the last two encode the
6519 month. Any digits before this encode a year. So 200712 means
6520 December year 2007. Years in the range 1938-2037 can also be
6521 written as 2-digit years."
6522 (interactive "P")
6523 (when year
6524 (setq year (org-small-year-to-year year)))
6525 (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
6526 (org-agenda-change-time-span 'year year)
6527 (error "Abort")))
6529 (defun org-agenda-change-time-span (span &optional n)
6530 "Change the agenda view to SPAN.
6531 SPAN may be `day', `week', `month', `year'."
6532 (org-agenda-check-type t 'agenda)
6533 (if (and (not n) (equal org-agenda-current-span span))
6534 (error "Viewing span is already \"%s\"" span))
6535 (let* ((sd (or (org-get-at-bol 'day)
6536 org-starting-day))
6537 (sd (org-agenda-compute-starting-span sd span n))
6538 (org-agenda-overriding-arguments
6539 (or org-agenda-overriding-arguments
6540 (list (car org-agenda-last-arguments) sd span t))))
6541 (org-agenda-redo)
6542 (org-agenda-find-same-or-today-or-agenda))
6543 (org-agenda-set-mode-name)
6544 (message "Switched to %s view" span))
6546 (defun org-agenda-compute-starting-span (sd span &optional n)
6547 "Compute starting date for agenda.
6548 SPAN may be `day', `week', `month', `year'. The return value
6549 is a cons cell with the starting date and the number of days,
6550 so that the date SD will be in that range."
6551 (let* ((greg (calendar-gregorian-from-absolute sd))
6552 (dg (nth 1 greg))
6553 (mg (car greg))
6554 (yg (nth 2 greg)))
6555 (cond
6556 ((eq span 'day)
6557 (when n
6558 (setq sd (+ (calendar-absolute-from-gregorian
6559 (list mg 1 yg))
6560 n -1))))
6561 ((eq span 'week)
6562 (let* ((nt (calendar-day-of-week
6563 (calendar-gregorian-from-absolute sd)))
6564 (d (if org-agenda-start-on-weekday
6565 (- nt org-agenda-start-on-weekday)
6568 (setq sd (- sd (+ (if (< d 0) 7 0) d)))
6569 (when n
6570 (require 'cal-iso)
6571 (when (> n 99)
6572 (setq y1 (org-small-year-to-year (/ n 100))
6573 n (mod n 100)))
6574 (setq sd
6575 (calendar-absolute-from-iso
6576 (list n 1
6577 (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
6578 ((eq span 'month)
6579 (let (y1)
6580 (when (and n (> n 99))
6581 (setq y1 (org-small-year-to-year (/ n 100))
6582 n (mod n 100)))
6583 (setq sd (calendar-absolute-from-gregorian
6584 (list (or n mg) 1 (or y1 yg))))))
6585 ((eq span 'year)
6586 (setq sd (calendar-absolute-from-gregorian
6587 (list 1 1 (or n yg))))))
6588 sd))
6590 (defun org-agenda-next-date-line (&optional arg)
6591 "Jump to the next line indicating a date in agenda buffer."
6592 (interactive "p")
6593 (org-agenda-check-type t 'agenda 'timeline)
6594 (beginning-of-line 1)
6595 ;; This does not work if user makes date format that starts with a blank
6596 (if (looking-at "^\\S-") (forward-char 1))
6597 (if (not (re-search-forward "^\\S-" nil t arg))
6598 (progn
6599 (backward-char 1)
6600 (error "No next date after this line in this buffer")))
6601 (goto-char (match-beginning 0)))
6603 (defun org-agenda-previous-date-line (&optional arg)
6604 "Jump to the previous line indicating a date in agenda buffer."
6605 (interactive "p")
6606 (org-agenda-check-type t 'agenda 'timeline)
6607 (beginning-of-line 1)
6608 (if (not (re-search-backward "^\\S-" nil t arg))
6609 (error "No previous date before this line in this buffer")))
6611 ;; Initialize the highlight
6612 (defvar org-hl (make-overlay 1 1))
6613 (overlay-put org-hl 'face 'highlight)
6615 (defun org-highlight (begin end &optional buffer)
6616 "Highlight a region with overlay."
6617 (move-overlay org-hl begin end (or buffer (current-buffer))))
6619 (defun org-unhighlight ()
6620 "Detach overlay INDEX."
6621 (org-detach-overlay org-hl))
6623 ;; FIXME this is currently not used.
6624 (defun org-highlight-until-next-command (beg end &optional buffer)
6625 "Move the highlight overlay to BEG/END, remove it before the next command."
6626 (org-highlight beg end buffer)
6627 (add-hook 'pre-command-hook 'org-unhighlight-once))
6628 (defun org-unhighlight-once ()
6629 "Remove the highlight from its position, and this function from the hook."
6630 (remove-hook 'pre-command-hook 'org-unhighlight-once)
6631 (org-unhighlight))
6633 (defun org-agenda-follow-mode ()
6634 "Toggle follow mode in an agenda buffer."
6635 (interactive)
6636 (setq org-agenda-follow-mode (not org-agenda-follow-mode))
6637 (org-agenda-set-mode-name)
6638 (org-agenda-do-context-action)
6639 (message "Follow mode is %s"
6640 (if org-agenda-follow-mode "on" "off")))
6642 (defun org-agenda-entry-text-mode (&optional arg)
6643 "Toggle entry text mode in an agenda buffer."
6644 (interactive "P")
6645 (setq org-agenda-entry-text-mode (or (integerp arg)
6646 (not org-agenda-entry-text-mode)))
6647 (org-agenda-entry-text-hide)
6648 (and org-agenda-entry-text-mode
6649 (let ((org-agenda-entry-text-maxlines
6650 (if (integerp arg) arg org-agenda-entry-text-maxlines)))
6651 (org-agenda-entry-text-show)))
6652 (org-agenda-set-mode-name)
6653 (message "Entry text mode is %s. Maximum number of lines is %d"
6654 (if org-agenda-entry-text-mode "on" "off")
6655 (if (integerp arg) arg org-agenda-entry-text-maxlines)))
6657 (defun org-agenda-clockreport-mode (&optional with-filter)
6658 "Toggle clocktable mode in an agenda buffer.
6659 With prefix arg WITH-FILTER, make the clocktable respect the current
6660 agenda filter."
6661 (interactive "P")
6662 (org-agenda-check-type t 'agenda)
6663 (if with-filter
6664 (setq org-agenda-clockreport-mode 'with-filter)
6665 (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode)))
6666 (org-agenda-set-mode-name)
6667 (org-agenda-redo)
6668 (message "Clocktable mode is %s"
6669 (if org-agenda-clockreport-mode "on" "off")))
6671 (defun org-agenda-log-mode (&optional special)
6672 "Toggle log mode in an agenda buffer.
6673 With argument SPECIAL, show all possible log items, not only the ones
6674 configured in `org-agenda-log-mode-items'.
6675 With a double `C-u' prefix arg, show *only* log items, nothing else."
6676 (interactive "P")
6677 (org-agenda-check-type t 'agenda 'timeline)
6678 (setq org-agenda-show-log
6679 (cond
6680 ((equal special '(16)) 'only)
6681 ((eq special 'clockcheck)
6682 (if (eq org-agenda-show-log 'clockcheck)
6683 nil 'clockcheck))
6684 (special '(closed clock state))
6685 (t (not org-agenda-show-log))))
6686 (org-agenda-set-mode-name)
6687 (org-agenda-redo)
6688 (message "Log mode is %s"
6689 (if org-agenda-show-log "on" "off")))
6691 (defun org-agenda-archives-mode (&optional with-files)
6692 "Toggle inclusion of items in trees marked with :ARCHIVE:.
6693 When called with a prefix argument, include all archive files as well."
6694 (interactive "P")
6695 (setq org-agenda-archives-mode
6696 (if with-files t (if org-agenda-archives-mode nil 'trees)))
6697 (org-agenda-set-mode-name)
6698 (org-agenda-redo)
6699 (message
6700 "%s"
6701 (cond
6702 ((eq org-agenda-archives-mode nil)
6703 "No archives are included")
6704 ((eq org-agenda-archives-mode 'trees)
6705 (format "Trees with :%s: tag are included" org-archive-tag))
6706 ((eq org-agenda-archives-mode t)
6707 (format "Trees with :%s: tag and all active archive files are included"
6708 org-archive-tag)))))
6710 (defun org-agenda-toggle-diary ()
6711 "Toggle diary inclusion in an agenda buffer."
6712 (interactive)
6713 (org-agenda-check-type t 'agenda)
6714 (setq org-agenda-include-diary (not org-agenda-include-diary))
6715 (org-agenda-redo)
6716 (org-agenda-set-mode-name)
6717 (message "Diary inclusion turned %s"
6718 (if org-agenda-include-diary "on" "off")))
6720 (defun org-agenda-toggle-deadlines ()
6721 "Toggle inclusion of entries with a deadline in an agenda buffer."
6722 (interactive)
6723 (org-agenda-check-type t 'agenda)
6724 (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
6725 (org-agenda-redo)
6726 (org-agenda-set-mode-name)
6727 (message "Deadlines inclusion turned %s"
6728 (if org-agenda-include-deadlines "on" "off")))
6730 (defun org-agenda-toggle-time-grid ()
6731 "Toggle time grid in an agenda buffer."
6732 (interactive)
6733 (org-agenda-check-type t 'agenda)
6734 (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
6735 (org-agenda-redo)
6736 (org-agenda-set-mode-name)
6737 (message "Time-grid turned %s"
6738 (if org-agenda-use-time-grid "on" "off")))
6740 (defun org-agenda-set-mode-name ()
6741 "Set the mode name to indicate all the small mode settings."
6742 (setq mode-name
6743 (list "Org-Agenda"
6744 (if (get 'org-agenda-files 'org-restrict) " []" "")
6746 '(:eval (org-agenda-span-name org-agenda-current-span))
6747 (if org-agenda-follow-mode " Follow" "")
6748 (if org-agenda-entry-text-mode " ETxt" "")
6749 (if org-agenda-include-diary " Diary" "")
6750 (if org-agenda-include-deadlines " Ddl" "")
6751 (if org-agenda-use-time-grid " Grid" "")
6752 (if (and (boundp 'org-habit-show-habits)
6753 org-habit-show-habits) " Habit" "")
6754 (cond
6755 ((consp org-agenda-show-log) " LogAll")
6756 ((eq org-agenda-show-log 'clockcheck) " ClkCk")
6757 (org-agenda-show-log " Log")
6758 (t ""))
6759 (if (or org-agenda-filter (get 'org-agenda-filter
6760 :preset-filter))
6761 (concat " {" (mapconcat
6762 'identity
6763 (append (get 'org-agenda-filter
6764 :preset-filter)
6765 org-agenda-filter) "") "}")
6767 (if org-agenda-archives-mode
6768 (if (eq org-agenda-archives-mode t)
6769 " Archives"
6770 (format " :%s:" org-archive-tag))
6772 (if org-agenda-clockreport-mode
6773 (if (eq org-agenda-clockreport-mode 'with-filter)
6774 " Clock{}" " Clock")
6775 "")))
6776 (force-mode-line-update))
6778 (defun org-agenda-post-command-hook ()
6779 (setq org-agenda-type
6780 (or (get-text-property (point) 'org-agenda-type)
6781 (get-text-property (max (point-min) (1- (point)))
6782 'org-agenda-type))))
6784 (defun org-agenda-next-line ()
6785 "Move cursor to the next line, and show if follow mode is active."
6786 (interactive)
6787 (call-interactively 'next-line)
6788 (org-agenda-do-context-action))
6790 (defun org-agenda-previous-line ()
6791 "Move cursor to the previous line, and show if follow-mode is active."
6792 (interactive)
6793 (call-interactively 'previous-line)
6794 (org-agenda-do-context-action))
6796 (defun org-agenda-do-context-action ()
6797 "Show outline path and, maybe, follow mode window."
6798 (let ((m (org-get-at-bol 'org-marker)))
6799 (when (and (markerp m) (marker-buffer m))
6800 (and org-agenda-follow-mode
6801 (if org-agenda-follow-indirect
6802 (org-agenda-tree-to-indirect-buffer)
6803 (org-agenda-show)))
6804 (and org-agenda-show-outline-path
6805 (org-with-point-at m (org-display-outline-path t))))))
6807 (defun org-agenda-show-priority ()
6808 "Show the priority of the current item.
6809 This priority is composed of the main priority given with the [#A] cookies,
6810 and by additional input from the age of a schedules or deadline entry."
6811 (interactive)
6812 (let* ((pri (org-get-at-bol 'priority)))
6813 (message "Priority is %d" (if pri pri -1000))))
6815 (defun org-agenda-show-tags ()
6816 "Show the tags applicable to the current item."
6817 (interactive)
6818 (let* ((tags (org-get-at-bol 'tags)))
6819 (if tags
6820 (message "Tags are :%s:"
6821 (org-no-properties (mapconcat 'identity tags ":")))
6822 (message "No tags associated with this line"))))
6824 (defun org-agenda-goto (&optional highlight)
6825 "Go to the Org-mode file which contains the item at point."
6826 (interactive)
6827 (let* ((marker (or (org-get-at-bol 'org-marker)
6828 (org-agenda-error)))
6829 (buffer (marker-buffer marker))
6830 (pos (marker-position marker)))
6831 (switch-to-buffer-other-window buffer)
6832 (widen)
6833 (push-mark)
6834 (goto-char pos)
6835 (when (eq major-mode 'org-mode)
6836 (org-show-context 'agenda)
6837 (save-excursion
6838 (and (outline-next-heading)
6839 (org-flag-heading nil)))) ; show the next heading
6840 (when (outline-invisible-p)
6841 (show-entry)) ; display invisible text
6842 (recenter (/ (window-height) 2))
6843 (run-hooks 'org-agenda-after-show-hook)
6844 (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
6846 (defvar org-agenda-after-show-hook nil
6847 "Normal hook run after an item has been shown from the agenda.
6848 Point is in the buffer where the item originated.")
6850 (defun org-agenda-kill ()
6851 "Kill the entry or subtree belonging to the current agenda entry."
6852 (interactive)
6853 (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
6854 (let* ((marker (or (org-get-at-bol 'org-marker)
6855 (org-agenda-error)))
6856 (buffer (marker-buffer marker))
6857 (pos (marker-position marker))
6858 (type (org-get-at-bol 'type))
6859 dbeg dend (n 0) conf)
6860 (org-with-remote-undo buffer
6861 (with-current-buffer buffer
6862 (save-excursion
6863 (goto-char pos)
6864 (if (and (eq major-mode 'org-mode) (not (member type '("sexp"))))
6865 (setq dbeg (progn (org-back-to-heading t) (point))
6866 dend (org-end-of-subtree t t))
6867 (setq dbeg (point-at-bol)
6868 dend (min (point-max) (1+ (point-at-eol)))))
6869 (goto-char dbeg)
6870 (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
6871 (setq conf (or (eq t org-agenda-confirm-kill)
6872 (and (numberp org-agenda-confirm-kill)
6873 (> n org-agenda-confirm-kill))))
6874 (and conf
6875 (not (y-or-n-p
6876 (format "Delete entry with %d lines in buffer \"%s\"? "
6877 n (buffer-name buffer))))
6878 (error "Abort"))
6879 (org-remove-subtree-entries-from-agenda buffer dbeg dend)
6880 (with-current-buffer buffer (delete-region dbeg dend))
6881 (message "Agenda item and source killed"))))
6883 (defvar org-archive-default-command)
6884 (defun org-agenda-archive-default ()
6885 "Archive the entry or subtree belonging to the current agenda entry."
6886 (interactive)
6887 (require 'org-archive)
6888 (org-agenda-archive-with org-archive-default-command))
6890 (defun org-agenda-archive-default-with-confirmation ()
6891 "Archive the entry or subtree belonging to the current agenda entry."
6892 (interactive)
6893 (require 'org-archive)
6894 (org-agenda-archive-with org-archive-default-command 'confirm))
6896 (defun org-agenda-archive ()
6897 "Archive the entry or subtree belonging to the current agenda entry."
6898 (interactive)
6899 (org-agenda-archive-with 'org-archive-subtree))
6901 (defun org-agenda-archive-to-archive-sibling ()
6902 "Move the entry to the archive sibling."
6903 (interactive)
6904 (org-agenda-archive-with 'org-archive-to-archive-sibling))
6906 (defun org-agenda-archive-with (cmd &optional confirm)
6907 "Move the entry to the archive sibling."
6908 (interactive)
6909 (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
6910 (let* ((marker (or (org-get-at-bol 'org-marker)
6911 (org-agenda-error)))
6912 (buffer (marker-buffer marker))
6913 (pos (marker-position marker)))
6914 (org-with-remote-undo buffer
6915 (with-current-buffer buffer
6916 (if (eq major-mode 'org-mode)
6917 (if (and confirm
6918 (not (y-or-n-p "Archive this subtree or entry? ")))
6919 (error "Abort")
6920 (save-excursion
6921 (goto-char pos)
6922 (org-remove-subtree-entries-from-agenda)
6923 (org-back-to-heading t)
6924 (funcall cmd)))
6925 (error "Archiving works only in Org-mode files"))))))
6927 (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
6928 "Remove all lines in the agenda that correspond to a given subtree.
6929 The subtree is the one in buffer BUF, starting at BEG and ending at END.
6930 If this information is not given, the function uses the tree at point."
6931 (let ((buf (or buf (current-buffer))) m p)
6932 (save-excursion
6933 (unless (and beg end)
6934 (org-back-to-heading t)
6935 (setq beg (point))
6936 (org-end-of-subtree t)
6937 (setq end (point)))
6938 (set-buffer (get-buffer org-agenda-buffer-name))
6939 (save-excursion
6940 (goto-char (point-max))
6941 (beginning-of-line 1)
6942 (while (not (bobp))
6943 (when (and (setq m (org-get-at-bol 'org-marker))
6944 (equal buf (marker-buffer m))
6945 (setq p (marker-position m))
6946 (>= p beg)
6947 (< p end))
6948 (let ((inhibit-read-only t))
6949 (delete-region (point-at-bol) (1+ (point-at-eol)))))
6950 (beginning-of-line 0))))))
6952 (defun org-agenda-refile (&optional goto rfloc no-update)
6953 "Refile the item at point."
6954 (interactive "P")
6955 (if (equal goto '(16))
6956 (org-refile-goto-last-stored)
6957 (let* ((marker (or (org-get-at-bol 'org-hd-marker)
6958 (org-agenda-error)))
6959 (buffer (marker-buffer marker))
6960 (pos (marker-position marker))
6961 (rfloc (or rfloc
6962 (org-refile-get-location
6963 (if goto "Goto" "Refile to") buffer
6964 org-refile-allow-creating-parent-nodes))))
6965 (with-current-buffer buffer
6966 (save-excursion
6967 (save-restriction
6968 (widen)
6969 (goto-char marker)
6970 (org-remove-subtree-entries-from-agenda)
6971 (org-refile goto buffer rfloc)))))
6972 (unless no-update (org-agenda-redo))))
6974 (defun org-agenda-open-link (&optional arg)
6975 "Follow the link in the current line, if any.
6976 This looks for a link in the displayed line in the agenda. It also looks
6977 at the text of the entry itself."
6978 (interactive "P")
6979 (let* ((marker (or (org-get-at-bol 'org-hd-marker)
6980 (org-get-at-bol 'org-marker)))
6981 (buffer (and marker (marker-buffer marker)))
6982 (prefix (buffer-substring
6983 (point-at-bol) (point-at-eol))))
6984 (cond
6985 (buffer
6986 (with-current-buffer buffer
6987 (save-excursion
6988 (save-restriction
6989 (widen)
6990 (goto-char marker)
6991 (org-offer-links-in-entry arg prefix)))))
6992 ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
6993 (save-excursion
6994 (beginning-of-line 1)
6995 (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
6996 (org-open-link-from-string (match-string 1)))
6997 (t (error "No link to open here")))))
6999 (defun org-agenda-copy-local-variable (var)
7000 "Get a variable from a referenced buffer and install it here."
7001 (let ((m (org-get-at-bol 'org-marker)))
7002 (when (and m (buffer-live-p (marker-buffer m)))
7003 (org-set-local var (with-current-buffer (marker-buffer m)
7004 (symbol-value var))))))
7006 (defun org-agenda-switch-to (&optional delete-other-windows)
7007 "Go to the Org-mode file which contains the item at point."
7008 (interactive)
7009 (if (and org-return-follows-link
7010 (not (org-get-at-bol 'org-marker))
7011 (org-in-regexp org-bracket-link-regexp))
7012 (org-open-link-from-string (match-string 0))
7013 (let* ((marker (or (org-get-at-bol 'org-marker)
7014 (org-agenda-error)))
7015 (buffer (marker-buffer marker))
7016 (pos (marker-position marker)))
7017 (org-pop-to-buffer-same-window buffer)
7018 (and delete-other-windows (delete-other-windows))
7019 (widen)
7020 (goto-char pos)
7021 (when (eq major-mode 'org-mode)
7022 (org-show-context 'agenda)
7023 (save-excursion
7024 (and (outline-next-heading)
7025 (org-flag-heading nil))) ; show the next heading
7026 (when (outline-invisible-p)
7027 (show-entry)))))) ; display invisible text
7029 (defun org-agenda-goto-mouse (ev)
7030 "Go to the Org-mode file which contains the item at the mouse click."
7031 (interactive "e")
7032 (mouse-set-point ev)
7033 (org-agenda-goto))
7035 (defun org-agenda-show (&optional full-entry)
7036 "Display the Org-mode file which contains the item at point.
7037 With prefix argument FULL-ENTRY, make the entire entry visible
7038 if it was hidden in the outline."
7039 (interactive "P")
7040 (let ((win (selected-window)))
7041 (if full-entry
7042 (let ((org-show-entry-below t))
7043 (org-agenda-goto t))
7044 (org-agenda-goto t))
7045 (select-window win)))
7047 (defvar org-agenda-show-window nil)
7048 (defun org-agenda-show-and-scroll-up ()
7049 "Display the Org-mode file which contains the item at point.
7050 When called repeatedly, scroll the window that is displaying the buffer."
7051 (interactive)
7052 (let ((win (selected-window)))
7053 (if (and (window-live-p org-agenda-show-window)
7054 (eq this-command last-command))
7055 (progn
7056 (select-window org-agenda-show-window)
7057 (ignore-errors (scroll-up)))
7058 (org-agenda-goto t)
7059 (show-subtree)
7060 (setq org-agenda-show-window (selected-window)))
7061 (select-window win)))
7063 (defun org-agenda-show-scroll-down ()
7064 "Scroll down the window showing the agenda."
7065 (interactive)
7066 (let ((win (selected-window)))
7067 (when (window-live-p org-agenda-show-window)
7068 (select-window org-agenda-show-window)
7069 (ignore-errors (scroll-down))
7070 (select-window win))))
7072 (defun org-agenda-show-1 (&optional more)
7073 "Display the Org-mode file which contains the item at point.
7074 The prefix arg selects the amount of information to display:
7076 0 hide the subtree
7077 1 just show the entry according to defaults.
7078 2 show the children view
7079 3 show the subtree view
7080 4 show the entire subtree and any LOGBOOK drawers
7081 5 show the entire subtree and any drawers
7082 With prefix argument FULL-ENTRY, make the entire entry visible
7083 if it was hidden in the outline."
7084 (interactive "p")
7085 (let ((win (selected-window)))
7086 (org-agenda-goto t)
7087 (org-recenter-heading 1)
7088 (cond
7089 ((= more 0)
7090 (hide-subtree)
7091 (save-excursion
7092 (org-back-to-heading)
7093 (run-hook-with-args 'org-cycle-hook 'folded))
7094 (message "Remote: FOLDED"))
7095 ((and (org-called-interactively-p 'any) (= more 1))
7096 (message "Remote: show with default settings"))
7097 ((= more 2)
7098 (show-entry)
7099 (show-children)
7100 (save-excursion
7101 (org-back-to-heading)
7102 (run-hook-with-args 'org-cycle-hook 'children))
7103 (message "Remote: CHILDREN"))
7104 ((= more 3)
7105 (show-subtree)
7106 (save-excursion
7107 (org-back-to-heading)
7108 (run-hook-with-args 'org-cycle-hook 'subtree))
7109 (message "Remote: SUBTREE"))
7110 ((= more 4)
7111 (let* ((org-drawers (delete "LOGBOOK" (copy-sequence org-drawers)))
7112 (org-drawer-regexp
7113 (concat "^[ \t]*:\\("
7114 (mapconcat 'regexp-quote org-drawers "\\|")
7115 "\\):[ \t]*$")))
7116 (show-subtree)
7117 (save-excursion
7118 (org-back-to-heading)
7119 (org-cycle-hide-drawers 'subtree)))
7120 (message "Remote: SUBTREE AND LOGBOOK"))
7121 ((> more 4)
7122 (show-subtree)
7123 (message "Remote: SUBTREE AND ALL DRAWERS")))
7124 (select-window win)))
7126 (defun org-recenter-heading (n)
7127 (save-excursion
7128 (org-back-to-heading)
7129 (recenter n)))
7131 (defvar org-agenda-cycle-counter nil)
7132 (defun org-agenda-cycle-show (&optional n)
7133 "Show the current entry in another window, with default settings.
7134 Default settings are taken from `org-show-hierarchy-above' and siblings.
7135 When use repeatedly in immediate succession, the remote entry will cycle
7136 through visibility
7138 children -> subtree -> folded
7140 When called with a numeric prefix arg, that arg will be passed through to
7141 `org-agenda-show-1'. For the interpretation of that argument, see the
7142 docstring of `org-agenda-show-1'."
7143 (interactive "P")
7144 (if (integerp n)
7145 (setq org-agenda-cycle-counter n)
7146 (if (not (eq last-command this-command))
7147 (setq org-agenda-cycle-counter 1)
7148 (if (equal org-agenda-cycle-counter 0)
7149 (setq org-agenda-cycle-counter 2)
7150 (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
7151 (if (> org-agenda-cycle-counter 3)
7152 (setq org-agenda-cycle-counter 0)))))
7153 (org-agenda-show-1 org-agenda-cycle-counter))
7155 (defun org-agenda-recenter (arg)
7156 "Display the Org-mode file which contains the item at point and recenter."
7157 (interactive "P")
7158 (let ((win (selected-window)))
7159 (org-agenda-goto t)
7160 (recenter arg)
7161 (select-window win)))
7163 (defun org-agenda-show-mouse (ev)
7164 "Display the Org-mode file which contains the item at the mouse click."
7165 (interactive "e")
7166 (mouse-set-point ev)
7167 (org-agenda-show))
7169 (defun org-agenda-check-no-diary ()
7170 "Check if the entry is a diary link and abort if yes."
7171 (if (org-get-at-bol 'org-agenda-diary-link)
7172 (org-agenda-error)))
7174 (defun org-agenda-error ()
7175 (error "Command not allowed in this line"))
7177 (defun org-agenda-tree-to-indirect-buffer ()
7178 "Show the subtree corresponding to the current entry in an indirect buffer.
7179 This calls the command `org-tree-to-indirect-buffer' from the original
7180 Org-mode buffer.
7181 With numerical prefix arg ARG, go up to this level and then take that tree.
7182 With a \\[universal-argument] prefix, make a separate frame for this tree (i.e. don't
7183 use the dedicated frame)."
7184 (interactive)
7185 (org-agenda-check-no-diary)
7186 (let* ((marker (or (org-get-at-bol 'org-marker)
7187 (org-agenda-error)))
7188 (buffer (marker-buffer marker))
7189 (pos (marker-position marker)))
7190 (with-current-buffer buffer
7191 (save-excursion
7192 (goto-char pos)
7193 (call-interactively 'org-tree-to-indirect-buffer)))))
7195 (defvar org-last-heading-marker (make-marker)
7196 "Marker pointing to the headline that last changed its TODO state
7197 by a remote command from the agenda.")
7199 (defun org-agenda-todo-nextset ()
7200 "Switch TODO entry to next sequence."
7201 (interactive)
7202 (org-agenda-todo 'nextset))
7204 (defun org-agenda-todo-previousset ()
7205 "Switch TODO entry to previous sequence."
7206 (interactive)
7207 (org-agenda-todo 'previousset))
7209 (defun org-agenda-todo (&optional arg)
7210 "Cycle TODO state of line at point, also in Org-mode file.
7211 This changes the line at point, all other lines in the agenda referring to
7212 the same tree node, and the headline of the tree node in the Org-mode file."
7213 (interactive "P")
7214 (org-agenda-check-no-diary)
7215 (let* ((col (current-column))
7216 (marker (or (org-get-at-bol 'org-marker)
7217 (org-agenda-error)))
7218 (buffer (marker-buffer marker))
7219 (pos (marker-position marker))
7220 (hdmarker (org-get-at-bol 'org-hd-marker))
7221 (todayp (org-agenda-todayp (org-get-at-bol 'day)))
7222 (inhibit-read-only t)
7223 org-agenda-headline-snapshot-before-repeat newhead just-one)
7224 (org-with-remote-undo buffer
7225 (with-current-buffer buffer
7226 (widen)
7227 (goto-char pos)
7228 (org-show-context 'agenda)
7229 (save-excursion
7230 (and (outline-next-heading)
7231 (org-flag-heading nil))) ; show the next heading
7232 (let ((current-prefix-arg arg))
7233 (call-interactively 'org-todo))
7234 (and (bolp) (forward-char 1))
7235 (setq newhead (org-get-heading))
7236 (when (and (org-bound-and-true-p
7237 org-agenda-headline-snapshot-before-repeat)
7238 (not (equal org-agenda-headline-snapshot-before-repeat
7239 newhead))
7240 todayp)
7241 (setq newhead org-agenda-headline-snapshot-before-repeat
7242 just-one t))
7243 (save-excursion
7244 (org-back-to-heading)
7245 (move-marker org-last-heading-marker (point))))
7246 (beginning-of-line 1)
7247 (save-excursion
7248 (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
7249 (org-move-to-column col))))
7251 (defun org-agenda-add-note (&optional arg)
7252 "Add a time-stamped note to the entry at point."
7253 (interactive "P")
7254 (org-agenda-check-no-diary)
7255 (let* ((marker (or (org-get-at-bol 'org-marker)
7256 (org-agenda-error)))
7257 (buffer (marker-buffer marker))
7258 (pos (marker-position marker))
7259 (hdmarker (org-get-at-bol 'org-hd-marker))
7260 (inhibit-read-only t))
7261 (with-current-buffer buffer
7262 (widen)
7263 (goto-char pos)
7264 (org-show-context 'agenda)
7265 (save-excursion
7266 (and (outline-next-heading)
7267 (org-flag-heading nil))) ; show the next heading
7268 (org-add-note))))
7270 (defun org-agenda-change-all-lines (newhead hdmarker
7271 &optional fixface just-this)
7272 "Change all lines in the agenda buffer which match HDMARKER.
7273 The new content of the line will be NEWHEAD (as modified by
7274 `org-agenda-format-item'). HDMARKER is checked with
7275 `equal' against all `org-hd-marker' text properties in the file.
7276 If FIXFACE is non-nil, the face of each item is modified according to
7277 the new TODO state.
7278 If JUST-THIS is non-nil, change just the current line, not all.
7279 If FORCE-TAGS is non nil, the car of it returns the new tags."
7280 (let* ((inhibit-read-only t)
7281 (line (org-current-line))
7282 (thetags (with-current-buffer (marker-buffer hdmarker)
7283 (save-excursion (save-restriction (widen)
7284 (goto-char hdmarker)
7285 (org-get-tags-at)))))
7286 props m pl undone-face done-face finish new dotime cat tags)
7287 (save-excursion
7288 (goto-char (point-max))
7289 (beginning-of-line 1)
7290 (while (not finish)
7291 (setq finish (bobp))
7292 (when (and (setq m (org-get-at-bol 'org-hd-marker))
7293 (or (not just-this) (= (org-current-line) line))
7294 (equal m hdmarker))
7295 (setq props (text-properties-at (point))
7296 dotime (org-get-at-bol 'dotime)
7297 cat (org-get-at-bol 'org-category)
7298 tags thetags
7300 (let ((org-prefix-format-compiled
7301 (or (get-text-property (point) 'format)
7302 org-prefix-format-compiled)))
7303 (with-current-buffer (marker-buffer hdmarker)
7304 (save-excursion
7305 (save-restriction
7306 (widen)
7307 (org-agenda-format-item (org-get-at-bol 'extra)
7308 newhead cat tags dotime)))))
7309 pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
7310 undone-face (org-get-at-bol 'undone-face)
7311 done-face (org-get-at-bol 'done-face))
7312 (beginning-of-line 1)
7313 (cond
7314 ((equal new "")
7315 (and (looking-at ".*\n?") (replace-match "")))
7316 ((looking-at ".*")
7317 (replace-match new t t)
7318 (beginning-of-line 1)
7319 (add-text-properties (point-at-bol) (point-at-eol) props)
7320 (when fixface
7321 (add-text-properties
7322 (point-at-bol) (point-at-eol)
7323 (list 'face
7324 (if org-last-todo-state-is-todo
7325 undone-face done-face))))
7326 (org-agenda-highlight-todo 'line)
7327 (beginning-of-line 1))
7328 (t (error "Line update did not work"))))
7329 (beginning-of-line 0)))
7330 (org-finalize-agenda)))
7332 (defun org-agenda-align-tags (&optional line)
7333 "Align all tags in agenda items to `org-agenda-tags-column'."
7334 (let ((inhibit-read-only t) l c)
7335 (save-excursion
7336 (goto-char (if line (point-at-bol) (point-min)))
7337 (while (re-search-forward (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
7338 (if line (point-at-eol) nil) t)
7339 (add-text-properties
7340 (match-beginning 2) (match-end 2)
7341 (list 'face (delq nil (let ((prop (get-text-property
7342 (match-beginning 2) 'face)))
7343 (or (listp prop) (setq prop (list prop)))
7344 (if (memq 'org-tag prop)
7345 prop
7346 (cons 'org-tag prop))))))
7347 (setq l (- (match-end 2) (match-beginning 2))
7348 c (if (< org-agenda-tags-column 0)
7349 (- (abs org-agenda-tags-column) l)
7350 org-agenda-tags-column))
7351 (delete-region (match-beginning 1) (match-end 1))
7352 (goto-char (match-beginning 1))
7353 (insert (org-add-props
7354 (make-string (max 1 (- c (current-column))) ?\ )
7355 (plist-put (copy-sequence (text-properties-at (point)))
7356 'face nil))))
7357 (goto-char (point-min))
7358 (org-font-lock-add-tag-faces (point-max)))))
7360 (defun org-agenda-priority-up ()
7361 "Increase the priority of line at point, also in Org-mode file."
7362 (interactive)
7363 (org-agenda-priority 'up))
7365 (defun org-agenda-priority-down ()
7366 "Decrease the priority of line at point, also in Org-mode file."
7367 (interactive)
7368 (org-agenda-priority 'down))
7370 (defun org-agenda-priority (&optional force-direction)
7371 "Set the priority of line at point, also in Org-mode file.
7372 This changes the line at point, all other lines in the agenda referring to
7373 the same tree node, and the headline of the tree node in the Org-mode file."
7374 (interactive)
7375 (unless org-enable-priority-commands
7376 (error "Priority commands are disabled"))
7377 (org-agenda-check-no-diary)
7378 (let* ((marker (or (org-get-at-bol 'org-marker)
7379 (org-agenda-error)))
7380 (hdmarker (org-get-at-bol 'org-hd-marker))
7381 (buffer (marker-buffer hdmarker))
7382 (pos (marker-position hdmarker))
7383 (inhibit-read-only t)
7384 newhead)
7385 (org-with-remote-undo buffer
7386 (with-current-buffer buffer
7387 (widen)
7388 (goto-char pos)
7389 (org-show-context 'agenda)
7390 (save-excursion
7391 (and (outline-next-heading)
7392 (org-flag-heading nil))) ; show the next heading
7393 (funcall 'org-priority force-direction)
7394 (end-of-line 1)
7395 (setq newhead (org-get-heading)))
7396 (org-agenda-change-all-lines newhead hdmarker)
7397 (beginning-of-line 1))))
7399 ;; FIXME: should fix the tags property of the agenda line.
7400 (defun org-agenda-set-tags (&optional tag onoff)
7401 "Set tags for the current headline."
7402 (interactive)
7403 (org-agenda-check-no-diary)
7404 (if (and (org-region-active-p) (org-called-interactively-p 'any))
7405 (call-interactively 'org-change-tag-in-region)
7406 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
7407 (org-agenda-error)))
7408 (buffer (marker-buffer hdmarker))
7409 (pos (marker-position hdmarker))
7410 (inhibit-read-only t)
7411 newhead)
7412 (org-with-remote-undo buffer
7413 (with-current-buffer buffer
7414 (widen)
7415 (goto-char pos)
7416 (save-excursion
7417 (org-show-context 'agenda))
7418 (save-excursion
7419 (and (outline-next-heading)
7420 (org-flag-heading nil))) ; show the next heading
7421 (goto-char pos)
7422 (if tag
7423 (org-toggle-tag tag onoff)
7424 (call-interactively 'org-set-tags))
7425 (end-of-line 1)
7426 (setq newhead (org-get-heading)))
7427 (org-agenda-change-all-lines newhead hdmarker)
7428 (beginning-of-line 1)))))
7430 (defun org-agenda-set-property ()
7431 "Set a property for the current headline."
7432 (interactive)
7433 (org-agenda-check-no-diary)
7434 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
7435 (org-agenda-error)))
7436 (buffer (marker-buffer hdmarker))
7437 (pos (marker-position hdmarker))
7438 (inhibit-read-only t)
7439 newhead)
7440 (org-with-remote-undo buffer
7441 (with-current-buffer buffer
7442 (widen)
7443 (goto-char pos)
7444 (save-excursion
7445 (org-show-context 'agenda))
7446 (save-excursion
7447 (and (outline-next-heading)
7448 (org-flag-heading nil))) ; show the next heading
7449 (goto-char pos)
7450 (call-interactively 'org-set-property)))))
7452 (defun org-agenda-set-effort ()
7453 "Set the effort property for the current headline."
7454 (interactive)
7455 (org-agenda-check-no-diary)
7456 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
7457 (org-agenda-error)))
7458 (buffer (marker-buffer hdmarker))
7459 (pos (marker-position hdmarker))
7460 (inhibit-read-only t)
7461 newhead)
7462 (org-with-remote-undo buffer
7463 (with-current-buffer buffer
7464 (widen)
7465 (goto-char pos)
7466 (save-excursion
7467 (org-show-context 'agenda))
7468 (save-excursion
7469 (and (outline-next-heading)
7470 (org-flag-heading nil))) ; show the next heading
7471 (goto-char pos)
7472 (call-interactively 'org-set-effort)
7473 (end-of-line 1)
7474 (setq newhead (org-get-heading)))
7475 (org-agenda-change-all-lines newhead hdmarker))))
7477 (defun org-agenda-toggle-archive-tag ()
7478 "Toggle the archive tag for the current entry."
7479 (interactive)
7480 (org-agenda-check-no-diary)
7481 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
7482 (org-agenda-error)))
7483 (buffer (marker-buffer hdmarker))
7484 (pos (marker-position hdmarker))
7485 (inhibit-read-only t)
7486 newhead)
7487 (org-with-remote-undo buffer
7488 (with-current-buffer buffer
7489 (widen)
7490 (goto-char pos)
7491 (org-show-context 'agenda)
7492 (save-excursion
7493 (and (outline-next-heading)
7494 (org-flag-heading nil))) ; show the next heading
7495 (call-interactively 'org-toggle-archive-tag)
7496 (end-of-line 1)
7497 (setq newhead (org-get-heading)))
7498 (org-agenda-change-all-lines newhead hdmarker)
7499 (beginning-of-line 1))))
7501 (defun org-agenda-do-date-later (arg)
7502 (interactive "P")
7503 (cond
7504 ((or (equal arg '(16))
7505 (memq last-command
7506 '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
7507 (setq this-command 'org-agenda-date-later-minutes)
7508 (org-agenda-date-later-minutes 1))
7509 ((or (equal arg '(4))
7510 (memq last-command
7511 '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
7512 (setq this-command 'org-agenda-date-later-hours)
7513 (org-agenda-date-later-hours 1))
7515 (org-agenda-date-later (prefix-numeric-value arg)))))
7517 (defun org-agenda-do-date-earlier (arg)
7518 (interactive "P")
7519 (cond
7520 ((or (equal arg '(16))
7521 (memq last-command
7522 '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
7523 (setq this-command 'org-agenda-date-earlier-minutes)
7524 (org-agenda-date-earlier-minutes 1))
7525 ((or (equal arg '(4))
7526 (memq last-command
7527 '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
7528 (setq this-command 'org-agenda-date-earlier-hours)
7529 (org-agenda-date-earlier-hours 1))
7531 (org-agenda-date-earlier (prefix-numeric-value arg)))))
7533 (defun org-agenda-date-later (arg &optional what)
7534 "Change the date of this item to ARG day(s) later."
7535 (interactive "p")
7536 (org-agenda-check-type t 'agenda 'timeline)
7537 (org-agenda-check-no-diary)
7538 (let* ((marker (or (org-get-at-bol 'org-marker)
7539 (org-agenda-error)))
7540 (buffer (marker-buffer marker))
7541 (pos (marker-position marker))
7542 cdate today)
7543 (org-with-remote-undo buffer
7544 (with-current-buffer buffer
7545 (widen)
7546 (goto-char pos)
7547 (if (not (org-at-timestamp-p))
7548 (error "Cannot find time stamp"))
7549 (when (and org-agenda-move-date-from-past-immediately-to-today
7550 (equal arg 1)
7551 (or (not what) (eq what 'day))
7552 (not (save-match-data (org-at-date-range-p))))
7553 (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
7554 cdate (calendar-absolute-from-gregorian
7555 (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
7556 today (org-today))
7557 (if (> today cdate)
7558 ;; immediately shift to today
7559 (setq arg (- today cdate))))
7560 (org-timestamp-change arg (or what 'day))
7561 (when (and (org-at-date-range-p)
7562 (re-search-backward org-tr-regexp-both (point-at-bol)))
7563 (let ((end org-last-changed-timestamp))
7564 (org-timestamp-change arg (or what 'day))
7565 (setq org-last-changed-timestamp
7566 (concat org-last-changed-timestamp "--" end)))))
7567 (org-agenda-show-new-time marker org-last-changed-timestamp))
7568 (message "Time stamp changed to %s" org-last-changed-timestamp)))
7570 (defun org-agenda-date-earlier (arg &optional what)
7571 "Change the date of this item to ARG day(s) earlier."
7572 (interactive "p")
7573 (org-agenda-date-later (- arg) what))
7575 (defun org-agenda-date-later-minutes (arg)
7576 "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
7577 (interactive "p")
7578 (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
7579 (org-agenda-date-later arg 'minute))
7581 (defun org-agenda-date-earlier-minutes (arg)
7582 "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
7583 (interactive "p")
7584 (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
7585 (org-agenda-date-earlier arg 'minute))
7587 (defun org-agenda-date-later-hours (arg)
7588 "Change the time of this item, in hour steps."
7589 (interactive "p")
7590 (org-agenda-date-later arg 'hour))
7592 (defun org-agenda-date-earlier-hours (arg)
7593 "Change the time of this item, in hour steps."
7594 (interactive "p")
7595 (org-agenda-date-earlier arg 'hour))
7597 (defun org-agenda-show-new-time (marker stamp &optional prefix)
7598 "Show new date stamp via text properties."
7599 ;; We use text properties to make this undoable
7600 (let ((inhibit-read-only t)
7601 (buffer-invisibility-spec))
7602 (setq stamp (concat " " prefix " => " stamp))
7603 (save-excursion
7604 (goto-char (point-max))
7605 (while (not (bobp))
7606 (when (equal marker (org-get-at-bol 'org-marker))
7607 (org-move-to-column (- (window-width) (length stamp)) t)
7608 (org-agenda-fix-tags-filter-overlays-at (point))
7609 (if (featurep 'xemacs)
7610 ;; Use `duplicable' property to trigger undo recording
7611 (let ((ex (make-extent nil nil))
7612 (gl (make-glyph stamp)))
7613 (set-glyph-face gl 'secondary-selection)
7614 (set-extent-properties
7615 ex (list 'invisible t 'end-glyph gl 'duplicable t))
7616 (insert-extent ex (1- (point)) (point-at-eol)))
7617 (add-text-properties
7618 (1- (point)) (point-at-eol)
7619 (list 'display (org-add-props stamp nil
7620 'face 'secondary-selection))))
7621 (beginning-of-line 1))
7622 (beginning-of-line 0)))))
7624 (defun org-agenda-date-prompt (arg)
7625 "Change the date of this item. Date is prompted for, with default today.
7626 The prefix ARG is passed to the `org-time-stamp' command and can therefore
7627 be used to request time specification in the time stamp."
7628 (interactive "P")
7629 (org-agenda-check-type t 'agenda 'timeline)
7630 (org-agenda-check-no-diary)
7631 (let* ((marker (or (org-get-at-bol 'org-marker)
7632 (org-agenda-error)))
7633 (buffer (marker-buffer marker))
7634 (pos (marker-position marker)))
7635 (org-with-remote-undo buffer
7636 (with-current-buffer buffer
7637 (widen)
7638 (goto-char pos)
7639 (if (not (org-at-timestamp-p t))
7640 (error "Cannot find time stamp"))
7641 (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
7642 (org-agenda-show-new-time marker org-last-changed-timestamp))
7643 (message "Time stamp changed to %s" org-last-changed-timestamp)))
7645 (defun org-agenda-schedule (arg &optional time)
7646 "Schedule the item at point.
7647 ARG is passed through to `org-schedule'."
7648 (interactive "P")
7649 (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
7650 (org-agenda-check-no-diary)
7651 (let* ((marker (or (org-get-at-bol 'org-marker)
7652 (org-agenda-error)))
7653 (type (marker-insertion-type marker))
7654 (buffer (marker-buffer marker))
7655 (pos (marker-position marker))
7656 (org-insert-labeled-timestamps-at-point nil)
7658 (set-marker-insertion-type marker t)
7659 (org-with-remote-undo buffer
7660 (with-current-buffer buffer
7661 (widen)
7662 (goto-char pos)
7663 (setq ts (org-schedule arg time)))
7664 (org-agenda-show-new-time marker ts "S"))
7665 (message "Item scheduled for %s" ts)))
7667 (defun org-agenda-deadline (arg &optional time)
7668 "Schedule the item at point.
7669 ARG is passed through to `org-deadline'."
7670 (interactive "P")
7671 (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
7672 (org-agenda-check-no-diary)
7673 (let* ((marker (or (org-get-at-bol 'org-marker)
7674 (org-agenda-error)))
7675 (buffer (marker-buffer marker))
7676 (pos (marker-position marker))
7677 (org-insert-labeled-timestamps-at-point nil)
7679 (org-with-remote-undo buffer
7680 (with-current-buffer buffer
7681 (widen)
7682 (goto-char pos)
7683 (setq ts (org-deadline arg time)))
7684 (org-agenda-show-new-time marker ts "D"))
7685 (message "Deadline for this item set to %s" ts)))
7687 (defun org-agenda-action ()
7688 "Select entry for agenda action, or execute an agenda action.
7689 This command prompts for another letter. Valid inputs are:
7691 m Mark the entry at point for an agenda action
7692 s Schedule the marked entry to the date at the cursor
7693 d Set the deadline of the marked entry to the date at the cursor
7694 r Call `org-remember' with cursor date as the default date
7695 c Call `org-capture' with cursor date as the default date
7696 SPC Show marked entry in other window
7697 TAB Visit marked entry in other window
7699 The cursor may be at a date in the calendar, or in the Org agenda."
7700 (interactive)
7701 (let (ans)
7702 (message "Select action: [m]ark | [s]chedule [d]eadline [r]emember [c]apture [ ]show")
7703 (setq ans (read-char-exclusive))
7704 (cond
7705 ((equal ans ?m)
7706 ;; Mark this entry
7707 (if (eq major-mode 'org-agenda-mode)
7708 (let ((m (or (org-get-at-bol 'org-hd-marker)
7709 (org-get-at-bol 'org-marker))))
7710 (if m
7711 (progn
7712 (move-marker org-agenda-action-marker
7713 (marker-position m) (marker-buffer m))
7714 (message "Entry marked for action; press `k' at desired date in agenda or calendar"))
7715 (error "Don't know which entry to mark")))
7716 (error "This command works only in the agenda")))
7717 ((equal ans ?s)
7718 (org-agenda-do-action '(org-schedule nil org-overriding-default-time)))
7719 ((equal ans ?d)
7720 (org-agenda-do-action '(org-deadline nil org-overriding-default-time)))
7721 ((equal ans ?r)
7722 (org-agenda-do-action '(org-remember) t))
7723 ((equal ans ?c)
7724 (org-agenda-do-action '(org-capture) t))
7725 ((equal ans ?\ )
7726 (let ((cw (selected-window)))
7727 (org-switch-to-buffer-other-window
7728 (marker-buffer org-agenda-action-marker))
7729 (goto-char org-agenda-action-marker)
7730 (org-show-context 'agenda)
7731 (select-window cw)))
7732 ((equal ans ?\C-i)
7733 (org-switch-to-buffer-other-window
7734 (marker-buffer org-agenda-action-marker))
7735 (goto-char org-agenda-action-marker)
7736 (org-show-context 'agenda))
7737 (t (error "Invalid agenda action %c" ans)))))
7739 (defun org-agenda-do-action (form &optional current-buffer)
7740 "Evaluate FORM at the entry pointed to by `org-agenda-action-marker'."
7741 (let ((org-overriding-default-time (org-get-cursor-date)))
7742 (if current-buffer
7743 (eval form)
7744 (if (not (marker-buffer org-agenda-action-marker))
7745 (error "No entry has been selected for agenda action")
7746 (with-current-buffer (marker-buffer org-agenda-action-marker)
7747 (save-excursion
7748 (save-restriction
7749 (widen)
7750 (goto-char org-agenda-action-marker)
7751 (eval form))))))))
7753 (defun org-agenda-clock-in (&optional arg)
7754 "Start the clock on the currently selected item."
7755 (interactive "P")
7756 (org-agenda-check-no-diary)
7757 (if (equal arg '(4))
7758 (org-clock-in arg)
7759 (let* ((marker (or (org-get-at-bol 'org-marker)
7760 (org-agenda-error)))
7761 (hdmarker (or (org-get-at-bol 'org-hd-marker)
7762 marker))
7763 (pos (marker-position marker))
7764 newhead)
7765 (org-with-remote-undo (marker-buffer marker)
7766 (with-current-buffer (marker-buffer marker)
7767 (widen)
7768 (goto-char pos)
7769 (org-show-context 'agenda)
7770 (org-show-entry)
7771 (org-cycle-hide-drawers 'children)
7772 (org-clock-in arg)
7773 (setq newhead (org-get-heading)))
7774 (org-agenda-change-all-lines newhead hdmarker)))))
7776 (defun org-agenda-clock-out ()
7777 "Stop the currently running clock."
7778 (interactive)
7779 (unless (marker-buffer org-clock-marker)
7780 (error "No running clock"))
7781 (let ((marker (make-marker)) newhead)
7782 (org-with-remote-undo (marker-buffer org-clock-marker)
7783 (with-current-buffer (marker-buffer org-clock-marker)
7784 (save-excursion
7785 (save-restriction
7786 (widen)
7787 (goto-char org-clock-marker)
7788 (org-back-to-heading t)
7789 (move-marker marker (point))
7790 (org-clock-out)
7791 (setq newhead (org-get-heading))))))
7792 (org-agenda-change-all-lines newhead marker)
7793 (move-marker marker nil)))
7795 (defun org-agenda-clock-cancel (&optional arg)
7796 "Cancel the currently running clock."
7797 (interactive "P")
7798 (unless (marker-buffer org-clock-marker)
7799 (error "No running clock"))
7800 (org-with-remote-undo (marker-buffer org-clock-marker)
7801 (org-clock-cancel)))
7803 (defun org-agenda-clock-goto ()
7804 "Jump to the currently clocked in task within the agenda.
7805 If the currently clocked in task is not listed in the agenda
7806 buffer, display it in another window."
7807 (interactive)
7808 (let (pos)
7809 (mapc (lambda (o)
7810 (if (eq (overlay-get o 'type) 'org-agenda-clocking)
7811 (setq pos (overlay-start o))))
7812 (overlays-in (point-min) (point-max)))
7813 (cond (pos (goto-char pos))
7814 ;; If the currently clocked entry is not in the agenda
7815 ;; buffer, we visit it in another window:
7816 (org-clock-current-task
7817 (org-switch-to-buffer-other-window (org-clock-goto)))
7818 (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
7820 (defun org-agenda-diary-entry-in-org-file ()
7821 "Make a diary entry in the file `org-agenda-diary-file'."
7822 (let (d1 d2 char (text "") dp1 dp2)
7823 (if (equal (buffer-name) "*Calendar*")
7824 (setq d1 (calendar-cursor-to-date t)
7825 d2 (car calendar-mark-ring))
7826 (setq dp1 (get-text-property (point-at-bol) 'day))
7827 (unless dp1 (error "No date defined in current line"))
7828 (setq d1 (calendar-gregorian-from-absolute dp1)
7829 d2 (and (ignore-errors (mark))
7830 (save-excursion
7831 (goto-char (mark))
7832 (setq dp2 (get-text-property (point-at-bol) 'day)))
7833 (calendar-gregorian-from-absolute dp2))))
7834 (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
7835 (setq char (read-char-exclusive))
7836 (cond
7837 ((equal char ?d)
7838 (setq text (read-string "Day entry: "))
7839 (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
7840 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
7841 ((equal char ?a)
7842 (setq d1 (list (car d1) (nth 1 d1)
7843 (read-number (format "Reference year [%d]: " (nth 2 d1))
7844 (nth 2 d1))))
7845 (setq text (read-string "Anniversary (use %d to show years): "))
7846 (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
7847 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
7848 ((equal char ?b)
7849 (setq text (read-string "Block entry: "))
7850 (unless (and d1 d2 (not (equal d1 d2)))
7851 (error "No block of days selected"))
7852 (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
7853 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
7854 ((equal char ?j)
7855 (org-switch-to-buffer-other-window
7856 (find-file-noselect org-agenda-diary-file))
7857 (require 'org-datetree)
7858 (org-datetree-find-date-create d1)
7859 (org-reveal t))
7860 (t (error "Invalid selection character `%c'" char)))))
7862 (defcustom org-agenda-insert-diary-strategy 'date-tree
7863 "Where in `org-agenda-diary-file' should new entries be added?
7864 Valid values:
7866 date-tree in the date tree, as child of the date
7867 top-level as top-level entries at the end of the file."
7868 :group 'org-agenda
7869 :type '(choice
7870 (const :tag "in a date tree" date-tree)
7871 (const :tag "as top level at end of file" top-level)))
7873 (defcustom org-agenda-insert-diary-extract-time nil
7874 "Non-nil means extract any time specification from the diary entry."
7875 :group 'org-agenda
7876 :type 'boolean)
7878 (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
7879 "Add a diary entry with TYPE to `org-agenda-diary-file'.
7880 If TEXT is not empty, it will become the headline of the new entry, and
7881 the resulting entry will not be shown. When TEXT is empty, switch to
7882 `org-agenda-diary-file' and let the user finish the entry there."
7883 (let ((cw (current-window-configuration)))
7884 (org-switch-to-buffer-other-window
7885 (find-file-noselect org-agenda-diary-file))
7886 (widen)
7887 (goto-char (point-min))
7888 (cond
7889 ((eq type 'anniversary)
7890 (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
7891 (progn
7892 (or (org-on-heading-p t)
7893 (progn
7894 (outline-next-heading)
7895 (insert "* Anniversaries\n\n")
7896 (beginning-of-line -1)))))
7897 (outline-next-heading)
7898 (org-back-over-empty-lines)
7899 (backward-char 1)
7900 (insert "\n")
7901 (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
7902 (nth 2 d1) (car d1) (nth 1 d1) text)))
7903 ((eq type 'day)
7904 (let ((org-prefix-has-time t)
7905 (org-agenda-time-leading-zero t)
7906 fmt time time2)
7907 (if org-agenda-insert-diary-extract-time
7908 ;; Use org-agenda-format-item to parse text for a time-range and
7909 ;; remove it. FIXME: This is a hack, we should refactor
7910 ;; that function to make time extraction available separately
7911 (setq fmt (org-agenda-format-item nil text nil nil t)
7912 time (get-text-property 0 'time fmt)
7913 time2 (if (> (length time) 0)
7914 ;; split-string removes trailing ...... if
7915 ;; no end time given. First space
7916 ;; separates time from date.
7917 (concat " " (car (split-string time "\\.")))
7918 nil)
7919 text (get-text-property 0 'txt fmt)))
7920 (if (eq org-agenda-insert-diary-strategy 'top-level)
7921 (org-agenda-insert-diary-as-top-level text)
7922 (require 'org-datetree)
7923 (org-datetree-find-date-create d1)
7924 (org-agenda-insert-diary-make-new-entry text))
7925 (org-insert-time-stamp (org-time-from-absolute
7926 (calendar-absolute-from-gregorian d1))
7927 nil nil nil nil time2))
7928 (end-of-line 0))
7929 ((eq type 'block)
7930 (if (> (calendar-absolute-from-gregorian d1)
7931 (calendar-absolute-from-gregorian d2))
7932 (setq d1 (prog1 d2 (setq d2 d1))))
7933 (if (eq org-agenda-insert-diary-strategy 'top-level)
7934 (org-agenda-insert-diary-as-top-level text)
7935 (require 'org-datetree)
7936 (org-datetree-find-date-create d1)
7937 (org-agenda-insert-diary-make-new-entry text))
7938 (org-insert-time-stamp (org-time-from-absolute
7939 (calendar-absolute-from-gregorian d1)))
7940 (insert "--")
7941 (org-insert-time-stamp (org-time-from-absolute
7942 (calendar-absolute-from-gregorian d2)))
7943 (end-of-line 0)))
7944 (if (string-match "\\S-" text)
7945 (progn
7946 (set-window-configuration cw)
7947 (message "%s entry added to %s"
7948 (capitalize (symbol-name type))
7949 (abbreviate-file-name org-agenda-diary-file)))
7950 (org-reveal t)
7951 (message "Please finish entry here"))))
7953 (defun org-agenda-insert-diary-as-top-level (text)
7954 "Make new entry as a top-level entry at the end of the file.
7955 Add TEXT as headline, and position the cursor in the second line so that
7956 a timestamp can be added there."
7957 (widen)
7958 (goto-char (point-max))
7959 (or (bolp) (insert "\n"))
7960 (insert "* " text "\n")
7961 (if org-adapt-indentation (org-indent-to-column 2)))
7963 (defun org-agenda-insert-diary-make-new-entry (text)
7964 "Make new entry as last child of current entry.
7965 Add TEXT as headline, and position the cursor in the second line so that
7966 a timestamp can be added there."
7967 (let ((org-show-following-heading t)
7968 (org-show-siblings t)
7969 (org-show-hierarchy-above t)
7970 (org-show-entry-below t)
7971 col)
7972 (outline-next-heading)
7973 (org-back-over-empty-lines)
7974 (or (looking-at "[ \t]*$")
7975 (progn (insert "\n") (backward-char 1)))
7976 (org-insert-heading nil t)
7977 (org-do-demote)
7978 (setq col (current-column))
7979 (insert text "\n")
7980 (if org-adapt-indentation (org-indent-to-column col))
7981 (let ((org-show-following-heading t)
7982 (org-show-siblings t)
7983 (org-show-hierarchy-above t)
7984 (org-show-entry-below t))
7985 (org-show-context))))
7987 (defun org-agenda-diary-entry ()
7988 "Make a diary entry, like the `i' command from the calendar.
7989 All the standard commands work: block, weekly etc.
7990 When `org-agenda-diary-file' points to a file,
7991 `org-agenda-diary-entry-in-org-file' is called instead to create
7992 entries in that Org-mode file."
7993 (interactive)
7994 (org-agenda-check-type t 'agenda 'timeline)
7995 (if (not (eq org-agenda-diary-file 'diary-file))
7996 (org-agenda-diary-entry-in-org-file)
7997 (require 'diary-lib)
7998 (let* ((char (progn
7999 (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
8000 (read-char-exclusive)))
8001 (cmd (cdr (assoc char
8002 '((?d . insert-diary-entry)
8003 (?w . insert-weekly-diary-entry)
8004 (?m . insert-monthly-diary-entry)
8005 (?y . insert-yearly-diary-entry)
8006 (?a . insert-anniversary-diary-entry)
8007 (?b . insert-block-diary-entry)
8008 (?c . insert-cyclic-diary-entry)))))
8009 (oldf (symbol-function 'calendar-cursor-to-date))
8010 ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
8011 (point (point))
8012 (mark (or (mark t) (point))))
8013 (unless cmd
8014 (error "No command associated with <%c>" char))
8015 (unless (and (get-text-property point 'day)
8016 (or (not (equal ?b char))
8017 (get-text-property mark 'day)))
8018 (error "Don't know which date to use for diary entry"))
8019 ;; We implement this by hacking the `calendar-cursor-to-date' function
8020 ;; and the `calendar-mark-ring' variable. Saves a lot of code.
8021 (let ((calendar-mark-ring
8022 (list (calendar-gregorian-from-absolute
8023 (or (get-text-property mark 'day)
8024 (get-text-property point 'day))))))
8025 (unwind-protect
8026 (progn
8027 (fset 'calendar-cursor-to-date
8028 (lambda (&optional error dummy)
8029 (calendar-gregorian-from-absolute
8030 (get-text-property point 'day))))
8031 (call-interactively cmd))
8032 (fset 'calendar-cursor-to-date oldf))))))
8034 (defun org-agenda-execute-calendar-command (cmd)
8035 "Execute a calendar command from the agenda, with the date associated to
8036 the cursor position."
8037 (org-agenda-check-type t 'agenda 'timeline)
8038 (require 'diary-lib)
8039 (unless (get-text-property (point) 'day)
8040 (error "Don't know which date to use for calendar command"))
8041 (let* ((oldf (symbol-function 'calendar-cursor-to-date))
8042 (point (point))
8043 (date (calendar-gregorian-from-absolute
8044 (get-text-property point 'day)))
8045 ;; the following 2 vars are needed in the calendar
8046 (displayed-month (car date))
8047 (displayed-year (nth 2 date)))
8048 (unwind-protect
8049 (progn
8050 (fset 'calendar-cursor-to-date
8051 (lambda (&optional error dummy)
8052 (calendar-gregorian-from-absolute
8053 (get-text-property point 'day))))
8054 (call-interactively cmd))
8055 (fset 'calendar-cursor-to-date oldf))))
8057 (defun org-agenda-phases-of-moon ()
8058 "Display the phases of the moon for the 3 months around the cursor date."
8059 (interactive)
8060 (org-agenda-execute-calendar-command 'calendar-phases-of-moon))
8062 (defun org-agenda-holidays ()
8063 "Display the holidays for the 3 months around the cursor date."
8064 (interactive)
8065 (org-agenda-execute-calendar-command 'list-calendar-holidays))
8067 (defvar calendar-longitude)
8068 (defvar calendar-latitude)
8069 (defvar calendar-location-name)
8071 (defun org-agenda-sunrise-sunset (arg)
8072 "Display sunrise and sunset for the cursor date.
8073 Latitude and longitude can be specified with the variables
8074 `calendar-latitude' and `calendar-longitude'. When called with prefix
8075 argument, latitude and longitude will be prompted for."
8076 (interactive "P")
8077 (require 'solar)
8078 (let ((calendar-longitude (if arg nil calendar-longitude))
8079 (calendar-latitude (if arg nil calendar-latitude))
8080 (calendar-location-name
8081 (if arg "the given coordinates" calendar-location-name)))
8082 (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
8084 (defun org-agenda-goto-calendar ()
8085 "Open the Emacs calendar with the date at the cursor."
8086 (interactive)
8087 (org-agenda-check-type t 'agenda 'timeline)
8088 (let* ((day (or (get-text-property (point) 'day)
8089 (error "Don't know which date to open in calendar")))
8090 (date (calendar-gregorian-from-absolute day))
8091 (calendar-move-hook nil)
8092 (calendar-view-holidays-initially-flag nil)
8093 (calendar-view-diary-initially-flag nil))
8094 (calendar)
8095 (calendar-goto-date date)))
8097 ;;;###autoload
8098 (defun org-calendar-goto-agenda ()
8099 "Compute the Org-mode agenda for the calendar date displayed at the cursor.
8100 This is a command that has to be installed in `calendar-mode-map'."
8101 (interactive)
8102 (org-agenda-list nil (calendar-absolute-from-gregorian
8103 (calendar-cursor-to-date))
8104 nil))
8106 (defun org-agenda-convert-date ()
8107 (interactive)
8108 (org-agenda-check-type t 'agenda 'timeline)
8109 (let ((day (get-text-property (point) 'day))
8110 date s)
8111 (unless day
8112 (error "Don't know which date to convert"))
8113 (setq date (calendar-gregorian-from-absolute day))
8114 (setq s (concat
8115 "Gregorian: " (calendar-date-string date) "\n"
8116 "ISO: " (calendar-iso-date-string date) "\n"
8117 "Day of Yr: " (calendar-day-of-year-string date) "\n"
8118 "Julian: " (calendar-julian-date-string date) "\n"
8119 "Astron. JD: " (calendar-astro-date-string date)
8120 " (Julian date number at noon UTC)\n"
8121 "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
8122 "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
8123 "French: " (calendar-french-date-string date) "\n"
8124 "Baha'i: " (calendar-bahai-date-string date) " (until sunset)\n"
8125 "Mayan: " (calendar-mayan-date-string date) "\n"
8126 "Coptic: " (calendar-coptic-date-string date) "\n"
8127 "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
8128 "Persian: " (calendar-persian-date-string date) "\n"
8129 "Chinese: " (calendar-chinese-date-string date) "\n"))
8130 (with-output-to-temp-buffer "*Dates*"
8131 (princ s))
8132 (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
8134 ;;; Bulk commands
8136 (defvar org-agenda-bulk-marked-entries nil
8137 "List of markers that refer to marked entries in the agenda.")
8139 (defun org-agenda-bulk-marked-p ()
8140 (eq (get-char-property (point-at-bol) 'type)
8141 'org-marked-entry-overlay))
8143 (defun org-agenda-bulk-mark (&optional arg)
8144 "Mark the entry at point for future bulk action."
8145 (interactive "p")
8146 (dotimes (i (max arg 1))
8147 (unless (org-get-at-bol 'org-agenda-diary-link)
8148 (let* ((m (org-get-at-bol 'org-hd-marker))
8150 (unless (org-agenda-bulk-marked-p)
8151 (unless m (error "Nothing to mark at point"))
8152 (push m org-agenda-bulk-marked-entries)
8153 (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
8154 (org-overlay-display ov "> "
8155 (org-get-todo-face "TODO")
8156 'evaporate)
8157 (overlay-put ov 'type 'org-marked-entry-overlay))
8158 (beginning-of-line 2)
8159 (while (and (get-char-property (point) 'invisible) (not (eobp)))
8160 (beginning-of-line 2))
8161 (message "%d entries marked for bulk action"
8162 (length org-agenda-bulk-marked-entries))))))
8164 (defun org-agenda-bulk-mark-regexp (regexp)
8165 "Mark entries match REGEXP."
8166 (interactive "sMark entries matching regexp: ")
8167 (let (entries-marked)
8168 (save-excursion
8169 (goto-char (point-min))
8170 (goto-char (next-single-property-change (point) 'txt))
8171 (while (re-search-forward regexp nil t)
8172 (when (string-match regexp (get-text-property (point) 'txt))
8173 (setq entries-marked (+ entries-marked 1))
8174 (call-interactively 'org-agenda-bulk-mark))))
8175 (if (not entries-marked)
8176 (message "No entry matching this regexp."))))
8178 (defun org-agenda-bulk-unmark ()
8179 "Unmark the entry at point for future bulk action."
8180 (interactive)
8181 (when (org-agenda-bulk-marked-p)
8182 (org-agenda-bulk-remove-overlays
8183 (point-at-bol) (+ 2 (point-at-bol)))
8184 (setq org-agenda-bulk-marked-entries
8185 (delete (org-get-at-bol 'org-hd-marker)
8186 org-agenda-bulk-marked-entries)))
8187 (beginning-of-line 2)
8188 (while (and (get-char-property (point) 'invisible) (not (eobp)))
8189 (beginning-of-line 2))
8190 (message "%d entries marked for bulk action"
8191 (length org-agenda-bulk-marked-entries)))
8193 (defun org-agenda-bulk-toggle ()
8194 "Toggle marking the entry at point for bulk action."
8195 (interactive)
8196 (if (org-agenda-bulk-marked-p)
8197 (org-agenda-bulk-unmark)
8198 (org-agenda-bulk-mark)))
8200 (defun org-agenda-bulk-remove-overlays (&optional beg end)
8201 "Remove the mark overlays between BEG and END in the agenda buffer.
8202 BEG and END default to the buffer limits.
8204 This only removes the overlays, it does not remove the markers
8205 from the list in `org-agenda-bulk-marked-entries'."
8206 (interactive)
8207 (mapc (lambda (ov)
8208 (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
8209 (delete-overlay ov)))
8210 (overlays-in (or beg (point-min)) (or end (point-max)))))
8212 (defun org-agenda-bulk-remove-all-marks ()
8213 "Remove all marks in the agenda buffer.
8214 This will remove the markers, and the overlays."
8215 (interactive)
8216 (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
8217 (setq org-agenda-bulk-marked-entries nil)
8218 (org-agenda-bulk-remove-overlays (point-min) (point-max)))
8220 (defun org-agenda-bulk-action (&optional arg)
8221 "Execute an remote-editing action on all marked entries.
8222 The prefix arg is passed through to the command if possible."
8223 (interactive "P")
8224 ;; Make sure we have markers, and only valid ones
8225 (unless org-agenda-bulk-marked-entries (error "No entries are marked"))
8226 (mapc
8227 (lambda (m)
8228 (unless (and (markerp m)
8229 (marker-buffer m)
8230 (buffer-live-p (marker-buffer m))
8231 (marker-position m))
8232 (error "Marker %s for bulk command is invalid" m)))
8233 org-agenda-bulk-marked-entries)
8235 ;; Prompt for the bulk command
8236 (message (concat "Bulk: [r]efile [$]arch [A]rch->sib [t]odo"
8237 " [+/-]tag [s]chd [S]catter [d]eadline [f]unction"
8238 (when org-agenda-bulk-custom-functions
8239 (concat " Custom: ["
8240 (mapconcat (lambda(f) (char-to-string (car f)))
8241 org-agenda-bulk-custom-functions "")
8242 "]"))))
8243 (let* ((action (read-char-exclusive))
8244 (org-log-refile (if org-log-refile 'time nil))
8245 (entries (reverse org-agenda-bulk-marked-entries))
8246 redo-at-end
8247 cmd rfloc state e tag pos (cnt 0) (cntskip 0))
8248 (cond
8249 ((equal action ?$)
8250 (setq cmd '(org-agenda-archive)))
8252 ((equal action ?A)
8253 (setq cmd '(org-agenda-archive-to-archive-sibling)))
8255 ((member action '(?r ?w))
8256 (setq rfloc (org-refile-get-location
8257 "Refile to"
8258 (marker-buffer (car org-agenda-bulk-marked-entries))
8259 org-refile-allow-creating-parent-nodes))
8260 (if (nth 3 rfloc)
8261 (setcar (nthcdr 3 rfloc)
8262 (move-marker (make-marker) (nth 3 rfloc)
8263 (or (get-file-buffer (nth 1 rfloc))
8264 (find-buffer-visiting (nth 1 rfloc))
8265 (error "This should not happen")))))
8267 (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
8268 redo-at-end t))
8270 ((equal action ?t)
8271 (setq state (org-icompleting-read
8272 "Todo state: "
8273 (with-current-buffer (marker-buffer (car entries))
8274 (mapcar 'list org-todo-keywords-1))))
8275 (setq cmd `(let ((org-inhibit-blocking t)
8276 (org-inhibit-logging 'note))
8277 (org-agenda-todo ,state))))
8279 ((memq action '(?- ?+))
8280 (setq tag (org-icompleting-read
8281 (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
8282 (with-current-buffer (marker-buffer (car entries))
8283 (delq nil
8284 (mapcar (lambda (x)
8285 (if (stringp (car x)) x)) org-tag-alist)))))
8286 (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
8288 ((memq action '(?s ?d))
8289 (let* ((date (unless arg
8290 (org-read-date
8291 nil nil nil
8292 (if (eq action ?s) "(Re)Schedule to" "Set Deadline to"))))
8293 (ans (if arg nil org-read-date-final-answer))
8294 (c1 (if (eq action ?s) 'org-agenda-schedule 'org-agenda-deadline)))
8295 (setq cmd `(let* ((bound (fboundp 'read-string))
8296 (old (and bound (symbol-function 'read-string))))
8297 (unwind-protect
8298 (progn
8299 (fset 'read-string (lambda (&rest ignore) ,ans))
8300 (eval '(,c1 arg)))
8301 (if bound
8302 (fset 'read-string old)
8303 (fmakunbound 'read-string)))))))
8305 ((equal action ?S)
8306 (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
8307 (error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
8308 (let ((days (read-number
8309 (format "Scatter tasks across how many %sdays: "
8310 (if arg "week" "")) 7)))
8311 (setq cmd
8312 `(let ((distance (1+ (random ,days))))
8313 (if arg
8314 (let ((dist distance)
8315 (day-of-week
8316 (calendar-day-of-week
8317 (calendar-gregorian-from-absolute (org-today)))))
8318 (dotimes (i (1+ dist))
8319 (while (member day-of-week org-agenda-weekend-days)
8320 (incf distance)
8321 (incf day-of-week)
8322 (if (= day-of-week 7)
8323 (setq day-of-week 0)))
8324 (incf day-of-week)
8325 (if (= day-of-week 7)
8326 (setq day-of-week 0)))))
8327 ;; silently fail when try to replan a sexp entry
8328 (condition-case nil
8329 (let* ((date (calendar-gregorian-from-absolute
8330 (+ (org-today) distance)))
8331 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
8332 (nth 2 date))))
8333 (org-agenda-schedule nil time))
8334 (error nil)))))))
8336 ((assoc action org-agenda-bulk-custom-functions)
8337 (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
8338 redo-at-end t))
8340 ((equal action ?f)
8341 (setq cmd (list (intern
8342 (org-icompleting-read "Function: "
8343 obarray 'fboundp t nil nil)))))
8345 (t (error "Invalid bulk action")))
8347 ;; Sort the markers, to make sure that parents are handled before children
8348 (setq entries (sort entries
8349 (lambda (a b)
8350 (cond
8351 ((equal (marker-buffer a) (marker-buffer b))
8352 (< (marker-position a) (marker-position b)))
8354 (string< (buffer-name (marker-buffer a))
8355 (buffer-name (marker-buffer b))))))))
8357 ;; Now loop over all markers and apply cmd
8358 (while (setq e (pop entries))
8359 (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
8360 (if (not pos)
8361 (progn (message "Skipping removed entry at %s" e)
8362 (setq cntskip (1+ cntskip)))
8363 (goto-char pos)
8364 (let (org-loop-over-headlines-in-active-region)
8365 (eval cmd))
8366 (setq org-agenda-bulk-marked-entries
8367 (delete e org-agenda-bulk-marked-entries))
8368 (setq cnt (1+ cnt))))
8369 (setq org-agenda-bulk-marked-entries nil)
8370 (org-agenda-bulk-remove-all-marks)
8371 (when redo-at-end (org-agenda-redo))
8372 (message "Acted on %d entries%s"
8374 (if (= cntskip 0)
8376 (format ", skipped %d (disappeared before their turn)"
8377 cntskip)))))
8379 ;;; Flagging notes
8381 (defun org-agenda-show-the-flagging-note ()
8382 "Display the flagging note in the other window.
8383 When called a second time in direct sequence, offer to remove the FLAGGING
8384 tag and (if present) the flagging note."
8385 (interactive)
8386 (let ((hdmarker (org-get-at-bol 'org-hd-marker))
8387 (win (selected-window))
8388 note heading newhead)
8389 (unless hdmarker
8390 (error "No linked entry at point"))
8391 (if (and (eq this-command last-command)
8392 (y-or-n-p "Unflag and remove any flagging note? "))
8393 (progn
8394 (org-agenda-remove-flag hdmarker)
8395 (let ((win (get-buffer-window "*Flagging Note*")))
8396 (and win (delete-window win)))
8397 (message "Entry unflaged"))
8398 (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
8399 (unless note
8400 (error "No flagging note"))
8401 (org-kill-new note)
8402 (org-switch-to-buffer-other-window "*Flagging Note*")
8403 (erase-buffer)
8404 (insert note)
8405 (goto-char (point-min))
8406 (while (re-search-forward "\\\\n" nil t)
8407 (replace-match "\n" t t))
8408 (goto-char (point-min))
8409 (select-window win)
8410 (message "Flagging note pushed to kill ring. Press [?] again to remove tag and note"))))
8412 (defun org-agenda-remove-flag (marker)
8413 "Remove the FLAGGED tag and any flagging note in the entry."
8414 (let (newhead)
8415 (org-with-point-at marker
8416 (org-toggle-tag "FLAGGED" 'off)
8417 (org-entry-delete nil "THEFLAGGINGNOTE")
8418 (setq newhead (org-get-heading)))
8419 (org-agenda-change-all-lines newhead marker)
8420 (message "Entry unflaged")))
8422 (defun org-agenda-get-any-marker (&optional pos)
8423 (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
8424 (get-text-property (or pos (point-at-bol)) 'org-marker)))
8426 ;;; Appointment reminders
8428 (defvar appt-time-msg-list)
8430 ;;;###autoload
8431 (defun org-agenda-to-appt (&optional refresh filter)
8432 "Activate appointments found in `org-agenda-files'.
8433 With a \\[universal-argument] prefix, refresh the list of
8434 appointments.
8436 If FILTER is t, interactively prompt the user for a regular
8437 expression, and filter out entries that don't match it.
8439 If FILTER is a string, use this string as a regular expression
8440 for filtering entries out.
8442 FILTER can also be an alist with the car of each cell being
8443 either 'headline or 'category. For example:
8445 '((headline \"IMPORTANT\")
8446 (category \"Work\"))
8448 will only add headlines containing IMPORTANT or headlines
8449 belonging to the \"Work\" category."
8450 (interactive "P")
8451 (if refresh (setq appt-time-msg-list nil))
8452 (if (eq filter t)
8453 (setq filter (read-from-minibuffer "Regexp filter: ")))
8454 (let* ((cnt 0) ; count added events
8455 (org-agenda-new-buffers nil)
8456 (org-deadline-warning-days 0)
8457 ;; Do not use `org-today' here because appt only takes
8458 ;; time and without date as argument, so it may pass wrong
8459 ;; information otherwise
8460 (today (org-date-to-gregorian
8461 (time-to-days (current-time))))
8462 (org-agenda-restrict nil)
8463 (files (org-agenda-files 'unrestricted)) entries file)
8464 ;; Get all entries which may contain an appt
8465 (org-prepare-agenda-buffers files)
8466 (while (setq file (pop files))
8467 (setq entries
8468 (append entries
8469 (org-agenda-get-day-entries
8470 file today :timestamp :scheduled :deadline))))
8471 (setq entries (delq nil entries))
8472 ;; Map thru entries and find if we should filter them out
8473 (mapc
8474 (lambda(x)
8475 (let* ((evt (org-trim (or (get-text-property 1 'txt x) "")))
8476 (cat (get-text-property 1 'org-category x))
8477 (tod (get-text-property 1 'time-of-day x))
8478 (ok (or (null filter)
8479 (and (stringp filter) (string-match filter evt))
8480 (and (listp filter)
8481 (or (string-match
8482 (cadr (assoc 'category filter)) cat)
8483 (string-match
8484 (cadr (assoc 'headline filter)) evt))))))
8485 ;; FIXME: Shall we remove text-properties for the appt text?
8486 ;; (setq evt (set-text-properties 0 (length evt) nil evt))
8487 (when (and ok tod)
8488 (setq tod (concat "00" (number-to-string tod))
8489 tod (when (string-match
8490 "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
8491 (concat (match-string 1 tod) ":"
8492 (match-string 2 tod))))
8493 (appt-add tod evt)
8494 (setq cnt (1+ cnt))))) entries)
8495 (org-release-buffers org-agenda-new-buffers)
8496 (if (eq cnt 0)
8497 (message "No event to add")
8498 (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
8500 (defun org-agenda-todayp (date)
8501 "Does DATE mean today, when considering `org-extend-today-until'?"
8502 (let ((today (org-today))
8503 (date (if (and date (listp date)) (calendar-absolute-from-gregorian date)
8504 date)))
8505 (eq date today)))
8507 (defun org-agenda-todo-yesterday (&optional arg)
8508 "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday"
8509 (interactive "P")
8510 (let* ((hour (third (decode-time
8511 (org-current-time))))
8512 (org-extend-today-until (1+ hour)))
8513 (org-agenda-todo arg)))
8515 (provide 'org-agenda)
8517 ;;; org-agenda.el ends here