]> code.delx.au - gnu-emacs/blob - lisp/org/org-agenda.el
Merge from trunk
[gnu-emacs] / lisp / org / org-agenda.el
1 ;;; org-agenda.el --- Dynamic task and appointment lists for Org
2
3 ;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
4
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.
10 ;;
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.
15
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.
20
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 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
24 ;;
25 ;;; Commentary:
26
27 ;; This file contains the code for creating and using the Agenda for Org-mode.
28 ;;
29 ;; The functions `org-batch-agenda', `org-batch-agenda-csv', and
30 ;; `org-batch-store-agenda-views' are implemented as macros to provide
31 ;; a convenient way for extracting agenda information from the command
32 ;; line. The Lisp does not evaluate parameters of a macro call; thus
33 ;; it is not necessary to quote the parameters passed to one of those
34 ;; functions. E.g. you can write:
35 ;;
36 ;; emacs -batch -l ~/.emacs -eval '(org-batch-agenda "a" org-agenda-span 7)'
37 ;;
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.
42 ;;
43 ;; This is a hack, but it works even when running Org byte-compiled.
44 ;;
45
46 ;;; Code:
47
48 (require 'org)
49 (require 'org-macs)
50 (eval-when-compile
51 (require 'cl))
52
53 (declare-function diary-add-to-list "diary-lib"
54 (date string specifier &optional marker globcolor literal))
55 (declare-function calendar-absolute-from-iso "cal-iso" (date))
56 (declare-function calendar-astro-date-string "cal-julian" (&optional date))
57 (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
58 (declare-function calendar-chinese-date-string "cal-china" (&optional date))
59 (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
60 (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
61 (declare-function calendar-french-date-string "cal-french" (&optional date))
62 (declare-function calendar-goto-date "cal-move" (date))
63 (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
64 (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
65 (declare-function calendar-iso-date-string "cal-iso" (&optional date))
66 (declare-function calendar-iso-from-absolute "cal-iso" (date))
67 (declare-function calendar-julian-date-string "cal-julian" (&optional date))
68 (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
69 (declare-function calendar-persian-date-string "cal-persia" (&optional date))
70 (declare-function calendar-check-holidays "holidays" (date))
71
72 (declare-function org-datetree-find-date-create "org-datetree"
73 (date &optional keep-restriction))
74 (declare-function org-columns-quit "org-colview" ())
75 (declare-function diary-date-display-form "diary-lib" (&optional type))
76 (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
77 (declare-function org-habit-insert-consistency-graphs
78 "org-habit" (&optional line))
79 (declare-function org-is-habit-p "org-habit" (&optional pom))
80 (declare-function org-habit-parse-todo "org-habit" (&optional pom))
81 (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
82 (declare-function org-pop-to-buffer-same-window "org-compat"
83 (&optional buffer-or-name norecord label))
84 (declare-function org-agenda-columns "org-colview" ())
85 (declare-function org-add-archive-files "org-archive" (files))
86 (declare-function org-capture "org-capture" (&optional goto keys))
87
88 (defvar calendar-mode-map) ; defined in calendar.el
89 (defvar org-clock-current-task nil) ; defined in org-clock.el
90 (defvar org-mobile-force-id-on-agenda-items) ; defined in org-mobile.el
91 (defvar org-habit-show-habits) ; defined in org-habit.el
92 (defvar org-habit-show-habits-only-for-today)
93 (defvar org-habit-show-all-today)
94
95 ;; Defined somewhere in this file, but used before definition.
96 (defvar org-agenda-buffer-name "*Org Agenda*")
97 (defvar org-agenda-overriding-header nil)
98 (defvar org-agenda-title-append nil)
99 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
100 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
101 (defvar original-date) ; dynamically scoped, calendar.el does scope this
102
103 (defvar org-agenda-undo-list nil
104 "List of undoable operations in the agenda since last refresh.")
105 (defvar org-agenda-pending-undo-list nil
106 "In a series of undo commands, this is the list of remaining undo items.")
107
108 (defcustom org-agenda-confirm-kill 1
109 "When set, remote killing from the agenda buffer needs confirmation.
110 When t, a confirmation is always needed. When a number N, confirmation is
111 only needed when the text to be killed contains more than N non-white lines."
112 :group 'org-agenda
113 :type '(choice
114 (const :tag "Never" nil)
115 (const :tag "Always" t)
116 (integer :tag "When more than N lines")))
117
118 (defcustom org-agenda-compact-blocks nil
119 "Non-nil means make the block agenda more compact.
120 This is done globally by leaving out lines like the agenda span
121 name and week number or the separator lines."
122 :group 'org-agenda
123 :type 'boolean)
124
125 (defcustom org-agenda-block-separator ?=
126 "The separator between blocks in the agenda.
127 If this is a string, it will be used as the separator, with a newline added.
128 If it is a character, it will be repeated to fill the window width.
129 If nil the separator is disabled. In `org-agenda-custom-commands' this
130 addresses the separator between the current and the previous block."
131 :group 'org-agenda
132 :type '(choice
133 (const :tag "Disabled" nil)
134 (character)
135 (string)))
136
137 (defgroup org-agenda-export nil
138 "Options concerning exporting agenda views in Org-mode."
139 :tag "Org Agenda Export"
140 :group 'org-agenda)
141
142 (defcustom org-agenda-with-colors t
143 "Non-nil means use colors in agenda views."
144 :group 'org-agenda-export
145 :type 'boolean)
146
147 (defcustom org-agenda-exporter-settings nil
148 "Alist of variable/value pairs that should be active during agenda export.
149 This is a good place to set options for ps-print and for htmlize.
150 Note that the way this is implemented, the values will be evaluated
151 before assigned to the variables. So make sure to quote values you do
152 *not* want evaluated, for example
153
154 (setq org-agenda-exporter-settings
155 '((ps-print-color-p 'black-white)))"
156 :group 'org-agenda-export
157 :type '(repeat
158 (list
159 (variable)
160 (sexp :tag "Value"))))
161
162 (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
163 "Hook run in a temporary buffer before writing the agenda to an export file.
164 A useful function for this hook is `org-agenda-add-entry-text'."
165 :group 'org-agenda-export
166 :type 'hook
167 :options '(org-agenda-add-entry-text))
168
169 (defcustom org-agenda-add-entry-text-maxlines 0
170 "Maximum number of entry text lines to be added to agenda.
171 This is only relevant when `org-agenda-add-entry-text' is part of
172 `org-agenda-before-write-hook', which is the default.
173 When this is 0, nothing will happen. When it is greater than 0, it
174 specifies the maximum number of lines that will be added for each entry
175 that is listed in the agenda view.
176
177 Note that this variable is not used during display, only when exporting
178 the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
179 and `org-agenda-entry-text-maxlines'."
180 :group 'org-agenda
181 :type 'integer)
182
183 (defcustom org-agenda-add-entry-text-descriptive-links t
184 "Non-nil means export org-links as descriptive links in agenda added text.
185 This variable applies to the text added to the agenda when
186 `org-agenda-add-entry-text-maxlines' is larger than 0.
187 When this variable nil, the URL will (also) be shown."
188 :group 'org-agenda
189 :type 'boolean)
190
191 (defcustom org-agenda-export-html-style nil
192 "The style specification for exported HTML Agenda files.
193 If this variable contains a string, it will replace the default <style>
194 section as produced by `htmlize'.
195 Since there are different ways of setting style information, this variable
196 needs to contain the full HTML structure to provide a style, including the
197 surrounding HTML tags. The style specifications should include definitions
198 the fonts used by the agenda, here is an example:
199
200 <style type=\"text/css\">
201 p { font-weight: normal; color: gray; }
202 .org-agenda-structure {
203 font-size: 110%;
204 color: #003399;
205 font-weight: 600;
206 }
207 .org-todo {
208 color: #cc6666;
209 font-weight: bold;
210 }
211 .org-agenda-done {
212 color: #339933;
213 }
214 .org-done {
215 color: #339933;
216 }
217 .title { text-align: center; }
218 .todo, .deadline { color: red; }
219 .done { color: green; }
220 </style>
221
222 or, if you want to keep the style in a file,
223
224 <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
225
226 As the value of this option simply gets inserted into the HTML <head> header,
227 you can \"misuse\" it to also add other text to the header."
228 :group 'org-agenda-export
229 :group 'org-export-html
230 :type 'string)
231
232 (defcustom org-agenda-persistent-filter nil
233 "When set, keep filters from one agenda view to the next."
234 :group 'org-agenda
235 :type 'boolean)
236
237 (defgroup org-agenda-custom-commands nil
238 "Options concerning agenda views in Org-mode."
239 :tag "Org Agenda Custom Commands"
240 :group 'org-agenda)
241
242 (defconst org-sorting-choice
243 '(choice
244 (const time-up) (const time-down)
245 (const category-keep) (const category-up) (const category-down)
246 (const tag-down) (const tag-up)
247 (const priority-up) (const priority-down)
248 (const todo-state-up) (const todo-state-down)
249 (const effort-up) (const effort-down)
250 (const habit-up) (const habit-down)
251 (const alpha-up) (const alpha-down)
252 (const user-defined-up) (const user-defined-down))
253 "Sorting choices.")
254
255 ;; Keep custom values for `org-agenda-filter-preset' compatible with
256 ;; the new variable `org-agenda-tag-filter-preset'.
257 (if (fboundp 'defvaralias)
258 (defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
259 (defvaralias 'org-agenda-filter 'org-agenda-tag-filter))
260
261 (defconst org-agenda-custom-commands-local-options
262 `(repeat :tag "Local settings for this command. Remember to quote values"
263 (choice :tag "Setting"
264 (list :tag "Heading for this block"
265 (const org-agenda-overriding-header)
266 (string :tag "Headline"))
267 (list :tag "Files to be searched"
268 (const org-agenda-files)
269 (list
270 (const :format "" quote)
271 (repeat (file))))
272 (list :tag "Sorting strategy"
273 (const org-agenda-sorting-strategy)
274 (list
275 (const :format "" quote)
276 (repeat
277 ,org-sorting-choice)))
278 (list :tag "Prefix format"
279 (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
280 (string))
281 (list :tag "Number of days in agenda"
282 (const org-agenda-span)
283 (choice (const :tag "Day" 'day)
284 (const :tag "Week" 'week)
285 (const :tag "Month" 'month)
286 (const :tag "Year" 'year)
287 (integer :tag "Custom")))
288 (list :tag "Fixed starting date"
289 (const org-agenda-start-day)
290 (string :value "2007-11-01"))
291 (list :tag "Start on day of week"
292 (const org-agenda-start-on-weekday)
293 (choice :value 1
294 (const :tag "Today" nil)
295 (integer :tag "Weekday No.")))
296 (list :tag "Include data from diary"
297 (const org-agenda-include-diary)
298 (boolean))
299 (list :tag "Deadline Warning days"
300 (const org-deadline-warning-days)
301 (integer :value 1))
302 (list :tag "Category filter preset"
303 (const org-agenda-category-filter-preset)
304 (list
305 (const :format "" quote)
306 (repeat
307 (string :tag "+category or -category"))))
308 (list :tag "Tags filter preset"
309 (const org-agenda-tag-filter-preset)
310 (list
311 (const :format "" quote)
312 (repeat
313 (string :tag "+tag or -tag"))))
314 (list :tag "Set daily/weekly entry types"
315 (const org-agenda-entry-types)
316 (list
317 (const :format "" quote)
318 (set :greedy t :value (:deadline :scheduled :timestamp :sexp)
319 (const :deadline)
320 (const :scheduled)
321 (const :timestamp)
322 (const :sexp))))
323 (list :tag "Standard skipping condition"
324 :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
325 (const org-agenda-skip-function)
326 (list
327 (const :format "" quote)
328 (list
329 (choice
330 :tag "Skipping range"
331 (const :tag "Skip entry" org-agenda-skip-entry-if)
332 (const :tag "Skip subtree" org-agenda-skip-subtree-if))
333 (repeat :inline t :tag "Conditions for skipping"
334 (choice
335 :tag "Condition type"
336 (list :tag "Regexp matches" :inline t (const :format "" 'regexp) (regexp))
337 (list :tag "Regexp does not match" :inline t (const :format "" 'notregexp) (regexp))
338 (list :tag "TODO state is" :inline t
339 (const 'todo)
340 (choice
341 (const :tag "any not-done state" 'todo)
342 (const :tag "any done state" 'done)
343 (const :tag "any state" 'any)
344 (list :tag "Keyword list"
345 (const :format "" quote)
346 (repeat (string :tag "Keyword")))))
347 (list :tag "TODO state is not" :inline t
348 (const 'nottodo)
349 (choice
350 (const :tag "any not-done state" 'todo)
351 (const :tag "any done state" 'done)
352 (const :tag "any state" 'any)
353 (list :tag "Keyword list"
354 (const :format "" quote)
355 (repeat (string :tag "Keyword")))))
356 (const :tag "scheduled" 'scheduled)
357 (const :tag "not scheduled" 'notscheduled)
358 (const :tag "deadline" 'deadline)
359 (const :tag "no deadline" 'notdeadline)
360 (const :tag "timestamp" 'timestamp)
361 (const :tag "no timestamp" 'nottimestamp))))))
362 (list :tag "Non-standard skipping condition"
363 :value (org-agenda-skip-function)
364 (const org-agenda-skip-function)
365 (sexp :tag "Function or form (quoted!)"))
366 (list :tag "Any variable"
367 (variable :tag "Variable")
368 (sexp :tag "Value (sexp)"))))
369 "Selection of examples for agenda command settings.
370 This will be spliced into the custom type of
371 `org-agenda-custom-commands'.")
372
373
374 (defcustom org-agenda-custom-commands '(("n" "Agenda and all TODO's"
375 ((agenda "") (alltodo))))
376 "Custom commands for the agenda.
377 These commands will be offered on the splash screen displayed by the
378 agenda dispatcher \\[org-agenda]. Each entry is a list like this:
379
380 (key desc type match settings files)
381
382 key The key (one or more characters as a string) to be associated
383 with the command.
384 desc A description of the command, when omitted or nil, a default
385 description is built using MATCH.
386 type The command type, any of the following symbols:
387 agenda The daily/weekly agenda.
388 todo Entries with a specific TODO keyword, in all agenda files.
389 search Entries containing search words entry or headline.
390 tags Tags/Property/TODO match in all agenda files.
391 tags-todo Tags/P/T match in all agenda files, TODO entries only.
392 todo-tree Sparse tree of specific TODO keyword in *current* file.
393 tags-tree Sparse tree with all tags matches in *current* file.
394 occur-tree Occur sparse tree for *current* file.
395 ... A user-defined function.
396 match What to search for:
397 - a single keyword for TODO keyword searches
398 - a tags match expression for tags searches
399 - a word search expression for text searches.
400 - a regular expression for occur searches
401 For all other commands, this should be the empty string.
402 settings A list of option settings, similar to that in a let form, so like
403 this: ((opt1 val1) (opt2 val2) ...). The values will be
404 evaluated at the moment of execution, so quote them when needed.
405 files A list of files file to write the produced agenda buffer to
406 with the command `org-store-agenda-views'.
407 If a file name ends in \".html\", an HTML version of the buffer
408 is written out. If it ends in \".ps\", a postscript version is
409 produced. Otherwise, only the plain text is written to the file.
410
411 You can also define a set of commands, to create a composite agenda buffer.
412 In this case, an entry looks like this:
413
414 (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
415
416 where
417
418 desc A description string to be displayed in the dispatcher menu.
419 cmd An agenda command, similar to the above. However, tree commands
420 are not allowed, but instead you can get agenda and global todo list.
421 So valid commands for a set are:
422 (agenda \"\" settings)
423 (alltodo \"\" settings)
424 (stuck \"\" settings)
425 (todo \"match\" settings files)
426 (search \"match\" settings files)
427 (tags \"match\" settings files)
428 (tags-todo \"match\" settings files)
429
430 Each command can carry a list of options, and another set of options can be
431 given for the whole set of commands. Individual command options take
432 precedence over the general options.
433
434 When using several characters as key to a command, the first characters
435 are prefix commands. For the dispatcher to display useful information, you
436 should provide a description for the prefix, like
437
438 (setq org-agenda-custom-commands
439 '((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
440 (\"hl\" tags \"+HOME+Lisa\")
441 (\"hp\" tags \"+HOME+Peter\")
442 (\"hk\" tags \"+HOME+Kim\")))"
443 :group 'org-agenda-custom-commands
444 :type `(repeat
445 (choice :value ("x" "Describe command here" tags "" nil)
446 (list :tag "Single command"
447 (string :tag "Access Key(s) ")
448 (option (string :tag "Description"))
449 (choice
450 (const :tag "Agenda" agenda)
451 (const :tag "TODO list" alltodo)
452 (const :tag "Search words" search)
453 (const :tag "Stuck projects" stuck)
454 (const :tag "Tags/Property match (all agenda files)" tags)
455 (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
456 (const :tag "TODO keyword search (all agenda files)" todo)
457 (const :tag "Tags sparse tree (current buffer)" tags-tree)
458 (const :tag "TODO keyword tree (current buffer)" todo-tree)
459 (const :tag "Occur tree (current buffer)" occur-tree)
460 (sexp :tag "Other, user-defined function"))
461 (string :tag "Match (only for some commands)")
462 ,org-agenda-custom-commands-local-options
463 (option (repeat :tag "Export" (file :tag "Export to"))))
464 (list :tag "Command series, all agenda files"
465 (string :tag "Access Key(s)")
466 (string :tag "Description ")
467 (repeat :tag "Component"
468 (choice
469 (list :tag "Agenda"
470 (const :format "" agenda)
471 (const :tag "" :format "" "")
472 ,org-agenda-custom-commands-local-options)
473 (list :tag "TODO list (all keywords)"
474 (const :format "" alltodo)
475 (const :tag "" :format "" "")
476 ,org-agenda-custom-commands-local-options)
477 (list :tag "Search words"
478 (const :format "" search)
479 (string :tag "Match")
480 ,org-agenda-custom-commands-local-options)
481 (list :tag "Stuck projects"
482 (const :format "" stuck)
483 (const :tag "" :format "" "")
484 ,org-agenda-custom-commands-local-options)
485 (list :tag "Tags search"
486 (const :format "" tags)
487 (string :tag "Match")
488 ,org-agenda-custom-commands-local-options)
489 (list :tag "Tags search, TODO entries only"
490 (const :format "" tags-todo)
491 (string :tag "Match")
492 ,org-agenda-custom-commands-local-options)
493 (list :tag "TODO keyword search"
494 (const :format "" todo)
495 (string :tag "Match")
496 ,org-agenda-custom-commands-local-options)
497 (list :tag "Other, user-defined function"
498 (symbol :tag "function")
499 (string :tag "Match")
500 ,org-agenda-custom-commands-local-options)))
501
502 (repeat :tag "Settings for entire command set"
503 (list (variable :tag "Any variable")
504 (sexp :tag "Value")))
505 (option (repeat :tag "Export" (file :tag "Export to"))))
506 (cons :tag "Prefix key documentation"
507 (string :tag "Access Key(s)")
508 (string :tag "Description ")))))
509
510 (defcustom org-agenda-query-register ?o
511 "The register holding the current query string.
512 The purpose of this is that if you construct a query string interactively,
513 you can then use it to define a custom command."
514 :group 'org-agenda-custom-commands
515 :type 'character)
516
517 (defcustom org-stuck-projects
518 '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
519 "How to identify stuck projects.
520 This is a list of four items:
521 1. A tags/todo/property matcher string that is used to identify a project.
522 See the manual for a description of tag and property searches.
523 The entire tree below a headline matched by this is considered one project.
524 2. A list of TODO keywords identifying non-stuck projects.
525 If the project subtree contains any headline with one of these todo
526 keywords, the project is considered to be not stuck. If you specify
527 \"*\" as a keyword, any TODO keyword will mark the project unstuck.
528 3. A list of tags identifying non-stuck projects.
529 If the project subtree contains any headline with one of these tags,
530 the project is considered to be not stuck. If you specify \"*\" as
531 a tag, any tag will mark the project unstuck. Note that this is about
532 the explicit presence of a tag somewhere in the subtree, inherited
533 tags to not count here. If inherited tags make a project not stuck,
534 use \"-TAG\" in the tags part of the matcher under (1.) above.
535 4. An arbitrary regular expression matching non-stuck projects.
536
537 If the project turns out to be not stuck, search continues also in the
538 subtree to see if any of the subtasks have project status.
539
540 See also the variable `org-tags-match-list-sublevels' which applies
541 to projects matched by this search as well.
542
543 After defining this variable, you may use \\[org-agenda-list-stuck-projects]
544 or `C-c a #' to produce the list."
545 :group 'org-agenda-custom-commands
546 :type '(list
547 (string :tag "Tags/TODO match to identify a project")
548 (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
549 (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
550 (regexp :tag "Projects are *not* stuck if this regexp matches inside the subtree")))
551
552 (defcustom org-agenda-filter-effort-default-operator "<"
553 "The default operator for effort estimate filtering.
554 If you select an effort estimate limit without first pressing an operator,
555 this one will be used."
556 :group 'org-agenda-custom-commands
557 :type '(choice (const :tag "less or equal" "<")
558 (const :tag "greater or equal"">")
559 (const :tag "equal" "=")))
560
561 (defgroup org-agenda-skip nil
562 "Options concerning skipping parts of agenda files."
563 :tag "Org Agenda Skip"
564 :group 'org-agenda)
565
566 (defcustom org-agenda-skip-function-global nil
567 "Function to be called at each match during agenda construction.
568 If this function returns nil, the current match should not be skipped.
569 If the function decided to skip an agenda match, is must return the
570 buffer position from which the search should be continued.
571 This may also be a Lisp form, which will be evaluated.
572
573 This variable will be applied to every agenda match, including
574 tags/property searches and TODO lists. So try to make the test function
575 do its checking as efficiently as possible. To implement a skipping
576 condition just for specific agenda commands, use the variable
577 `org-agenda-skip-function' which can be set in the options section
578 of custom agenda commands."
579 :group 'org-agenda-skip
580 :type 'sexp)
581
582 (defgroup org-agenda-daily/weekly nil
583 "Options concerning the daily/weekly agenda."
584 :tag "Org Agenda Daily/Weekly"
585 :group 'org-agenda)
586 (defgroup org-agenda-todo-list nil
587 "Options concerning the global todo list agenda view."
588 :tag "Org Agenda Todo List"
589 :group 'org-agenda)
590 (defgroup org-agenda-match-view nil
591 "Options concerning the general tags/property/todo match agenda view."
592 :tag "Org Agenda Match View"
593 :group 'org-agenda)
594 (defgroup org-agenda-search-view nil
595 "Options concerning the general tags/property/todo match agenda view."
596 :tag "Org Agenda Match View"
597 :group 'org-agenda)
598
599 (defvar org-agenda-archives-mode nil
600 "Non-nil means the agenda will include archived items.
601 If this is the symbol `trees', trees in the selected agenda scope
602 that are marked with the ARCHIVE tag will be included anyway. When this is
603 t, also all archive files associated with the current selection of agenda
604 files will be included.")
605
606 (defcustom org-agenda-skip-comment-trees t
607 "Non-nil means skip trees that start with the COMMENT keyword.
608 When nil, these trees are also scanned by agenda commands."
609 :group 'org-agenda-skip
610 :type 'boolean)
611
612 (defcustom org-agenda-todo-list-sublevels t
613 "Non-nil means check also the sublevels of a TODO entry for TODO entries.
614 When nil, the sublevels of a TODO entry are not checked, resulting in
615 potentially much shorter TODO lists."
616 :group 'org-agenda-skip
617 :group 'org-agenda-todo-list
618 :type 'boolean)
619
620 (defcustom org-agenda-todo-ignore-with-date nil
621 "Non-nil means don't show entries with a date in the global todo list.
622 You can use this if you prefer to mark mere appointments with a TODO keyword,
623 but don't want them to show up in the TODO list.
624 When this is set, it also covers deadlines and scheduled items, the settings
625 of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
626 will be ignored.
627 See also the variable `org-agenda-tags-todo-honor-ignore-options'."
628 :group 'org-agenda-skip
629 :group 'org-agenda-todo-list
630 :type 'boolean)
631
632 (defcustom org-agenda-todo-ignore-timestamp nil
633 "Non-nil means don't show entries with a timestamp.
634 This applies when creating the global todo list.
635 Valid values are:
636
637 past Don't show entries for today or in the past.
638
639 future Don't show entries with a timestamp in the future.
640 The idea behind this is that if it has a future
641 timestamp, you don't want to think about it until the
642 date.
643
644 all Don't show any entries with a timestamp in the global todo list.
645 The idea behind this is that by setting a timestamp, you
646 have already \"taken care\" of this item.
647
648 This variable can also have an integer as a value. If positive (N),
649 todos with a timestamp N or more days in the future will be ignored. If
650 negative (-N), todos with a timestamp N or more days in the past will be
651 ignored. If 0, todos with a timestamp either today or in the future will
652 be ignored. For example, a value of -1 will exclude todos with a
653 timestamp in the past (yesterday or earlier), while a value of 7 will
654 exclude todos with a timestamp a week or more in the future.
655
656 See also `org-agenda-todo-ignore-with-date'.
657 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
658 to make his option also apply to the tags-todo list."
659 :group 'org-agenda-skip
660 :group 'org-agenda-todo-list
661 :version "24.1"
662 :type '(choice
663 (const :tag "Ignore future timestamp todos" future)
664 (const :tag "Ignore past or present timestamp todos" past)
665 (const :tag "Ignore all timestamp todos" all)
666 (const :tag "Show timestamp todos" nil)
667 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
668
669 (defcustom org-agenda-todo-ignore-scheduled nil
670 "Non-nil means, ignore some scheduled TODO items when making TODO list.
671 This applies when creating the global todo list.
672 Valid values are:
673
674 past Don't show entries scheduled today or in the past.
675
676 future Don't show entries scheduled in the future.
677 The idea behind this is that by scheduling it, you don't want to
678 think about it until the scheduled date.
679
680 all Don't show any scheduled entries in the global todo list.
681 The idea behind this is that by scheduling it, you have already
682 \"taken care\" of this item.
683
684 t Same as `all', for backward compatibility.
685
686 This variable can also have an integer as a value. See
687 `org-agenda-todo-ignore-timestamp' for more details.
688
689 See also `org-agenda-todo-ignore-with-date'.
690 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
691 to make his option also apply to the tags-todo list."
692 :group 'org-agenda-skip
693 :group 'org-agenda-todo-list
694 :type '(choice
695 (const :tag "Ignore future-scheduled todos" future)
696 (const :tag "Ignore past- or present-scheduled todos" past)
697 (const :tag "Ignore all scheduled todos" all)
698 (const :tag "Ignore all scheduled todos (compatibility)" t)
699 (const :tag "Show scheduled todos" nil)
700 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
701
702 (defcustom org-agenda-todo-ignore-deadlines nil
703 "Non-nil means ignore some deadlined TODO items when making TODO list.
704 There are different motivations for using different values, please think
705 carefully when configuring this variable.
706
707 This applies when creating the global todo list.
708 Valid values are:
709
710 near Don't show near deadline entries. A deadline is near when it is
711 closer than `org-deadline-warning-days' days. The idea behind this
712 is that such items will appear in the agenda anyway.
713
714 far Don't show TODO entries where a deadline has been defined, but
715 the deadline is not near. This is useful if you don't want to
716 use the todo list to figure out what to do now.
717
718 past Don't show entries with a deadline timestamp for today or in the past.
719
720 future Don't show entries with a deadline timestamp in the future, not even
721 when they become `near' ones. Use it with caution.
722
723 all Ignore all TODO entries that do have a deadline.
724
725 t Same as `near', for backward compatibility.
726
727 This variable can also have an integer as a value. See
728 `org-agenda-todo-ignore-timestamp' for more details.
729
730 See also `org-agenda-todo-ignore-with-date'.
731 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
732 to make his option also apply to the tags-todo list."
733 :group 'org-agenda-skip
734 :group 'org-agenda-todo-list
735 :type '(choice
736 (const :tag "Ignore near deadlines" near)
737 (const :tag "Ignore near deadlines (compatibility)" t)
738 (const :tag "Ignore far deadlines" far)
739 (const :tag "Ignore all TODOs with a deadlines" all)
740 (const :tag "Show all TODOs, even if they have a deadline" nil)
741 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
742
743 (defcustom org-agenda-tags-todo-honor-ignore-options nil
744 "Non-nil means honor todo-list ...ignore options also in tags-todo search.
745 The variables
746 `org-agenda-todo-ignore-with-date',
747 `org-agenda-todo-ignore-timestamp',
748 `org-agenda-todo-ignore-scheduled',
749 `org-agenda-todo-ignore-deadlines'
750 make the global TODO list skip entries that have time stamps of certain
751 kinds. If this option is set, the same options will also apply for the
752 tags-todo search, which is the general tags/property matcher
753 restricted to unfinished TODO entries only."
754 :group 'org-agenda-skip
755 :group 'org-agenda-todo-list
756 :group 'org-agenda-match-view
757 :type 'boolean)
758
759 (defcustom org-agenda-skip-scheduled-if-done nil
760 "Non-nil means don't show scheduled items in agenda when they are done.
761 This is relevant for the daily/weekly agenda, not for the TODO list. And
762 it applies only to the actual date of the scheduling. Warnings about
763 an item with a past scheduling dates are always turned off when the item
764 is DONE."
765 :group 'org-agenda-skip
766 :group 'org-agenda-daily/weekly
767 :type 'boolean)
768
769 (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
770 "Non-nil means skip scheduling line if same entry shows because of deadline.
771 In the agenda of today, an entry can show up multiple times because
772 it is both scheduled and has a nearby deadline, and maybe a plain time
773 stamp as well.
774 When this variable is t, then only the deadline is shown and the fact that
775 the entry is scheduled today or was scheduled previously is not shown.
776 When this variable is nil, the entry will be shown several times. When
777 the variable is the symbol `not-today', then skip scheduled previously,
778 but not scheduled today."
779 :group 'org-agenda-skip
780 :group 'org-agenda-daily/weekly
781 :type '(choice
782 (const :tag "Never" nil)
783 (const :tag "Always" t)
784 (const :tag "Not when scheduled today" not-today)))
785
786 (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
787 "Non-nil means skip timestamp line if same entry shows because of deadline.
788 In the agenda of today, an entry can show up multiple times
789 because it has both a plain timestamp and has a nearby deadline.
790 When this variable is t, then only the deadline is shown and the
791 fact that the entry has a timestamp for or including today is not
792 shown. When this variable is nil, the entry will be shown
793 several times."
794 :group 'org-agenda-skip
795 :group 'org-agenda-daily/weekly
796 :version "24.1"
797 :type '(choice
798 (const :tag "Never" nil)
799 (const :tag "Always" t)))
800
801 (defcustom org-agenda-skip-deadline-if-done nil
802 "Non-nil means don't show deadlines when the corresponding item is done.
803 When nil, the deadline is still shown and should give you a happy feeling.
804 This is relevant for the daily/weekly agenda. And it applied only to the
805 actually date of the deadline. Warnings about approaching and past-due
806 deadlines are always turned off when the item is DONE."
807 :group 'org-agenda-skip
808 :group 'org-agenda-daily/weekly
809 :type 'boolean)
810
811 (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
812 "Non-nil means skip deadline prewarning when entry is also scheduled.
813 This will apply on all days where a prewarning for the deadline would
814 be shown, but not at the day when the entry is actually due. On that day,
815 the deadline will be shown anyway.
816 This variable may be set to nil, t, or a number which will then give
817 the number of days before the actual deadline when the prewarnings
818 should resume.
819 This can be used in a workflow where the first showing of the deadline will
820 trigger you to schedule it, and then you don't want to be reminded of it
821 because you will take care of it on the day when scheduled."
822 :group 'org-agenda-skip
823 :group 'org-agenda-daily/weekly
824 :version "24.1"
825 :type '(choice
826 (const :tag "Always show prewarning" nil)
827 (const :tag "Remove prewarning if entry is scheduled" t)
828 (integer :tag "Restart prewarning N days before deadline")))
829
830 (defcustom org-agenda-skip-additional-timestamps-same-entry nil
831 "When nil, multiple same-day timestamps in entry make multiple agenda lines.
832 When non-nil, after the search for timestamps has matched once in an
833 entry, the rest of the entry will not be searched."
834 :group 'org-agenda-skip
835 :type 'boolean)
836
837 (defcustom org-agenda-skip-timestamp-if-done nil
838 "Non-nil means don't select item by timestamp or -range if it is DONE."
839 :group 'org-agenda-skip
840 :group 'org-agenda-daily/weekly
841 :type 'boolean)
842
843 (defcustom org-agenda-dim-blocked-tasks t
844 "Non-nil means dim blocked tasks in the agenda display.
845 This causes some overhead during agenda construction, but if you
846 have turned on `org-enforce-todo-dependencies',
847 `org-enforce-todo-checkbox-dependencies', or any other blocking
848 mechanism, this will create useful feedback in the agenda.
849
850 Instead of t, this variable can also have the value `invisible'.
851 Then blocked tasks will be invisible and only become visible when
852 they become unblocked. An exemption to this behavior is when a task is
853 blocked because of unchecked checkboxes below it. Since checkboxes do
854 not show up in the agenda views, making this task invisible you remove any
855 trace from agenda views that there is something to do. Therefore, a task
856 that is blocked because of checkboxes will never be made invisible, it
857 will only be dimmed."
858 :group 'org-agenda-daily/weekly
859 :group 'org-agenda-todo-list
860 :type '(choice
861 (const :tag "Do not dim" nil)
862 (const :tag "Dim to a gray face" t)
863 (const :tag "Make invisible" invisible)))
864
865 (defcustom org-timeline-show-empty-dates 3
866 "Non-nil means `org-timeline' also shows dates without an entry.
867 When nil, only the days which actually have entries are shown.
868 When t, all days between the first and the last date are shown.
869 When an integer, show also empty dates, but if there is a gap of more than
870 N days, just insert a special line indicating the size of the gap."
871 :group 'org-agenda-skip
872 :type '(choice
873 (const :tag "None" nil)
874 (const :tag "All" t)
875 (integer :tag "at most")))
876
877 (defgroup org-agenda-startup nil
878 "Options concerning initial settings in the Agenda in Org Mode."
879 :tag "Org Agenda Startup"
880 :group 'org-agenda)
881
882 (defcustom org-agenda-menu-show-matcher t
883 "Non-nil means show the match string in the agenda dispatcher menu.
884 When nil, the matcher string is not shown, but is put into the help-echo
885 property so than moving the mouse over the command shows it.
886 Setting it to nil is good if matcher strings are very long and/or if
887 you want to use two-columns display (see `org-agenda-menu-two-columns')."
888 :group 'org-agenda
889 :version "24.1"
890 :type 'boolean)
891
892 (define-obsolete-variable-alias 'org-agenda-menu-two-column 'org-agenda-menu-two-columns "24.3")
893
894 (defcustom org-agenda-menu-two-columns nil
895 "Non-nil means, use two columns to show custom commands in the dispatcher.
896 If you use this, you probably want to set `org-agenda-menu-show-matcher'
897 to nil."
898 :group 'org-agenda
899 :version "24.1"
900 :type 'boolean)
901
902 (define-obsolete-variable-alias 'org-finalize-agenda-hook 'org-agenda-finalize-hook "24.3")
903 (defcustom org-agenda-finalize-hook nil
904 "Hook run just before displaying an agenda buffer.
905 The buffer is still writable when the hook is called.
906
907 You can modify some of the buffer substrings but you should be
908 extra careful not to modify the text properties of the agenda
909 headlines as the agenda display heavily relies on them."
910 :group 'org-agenda-startup
911 :type 'hook)
912
913 (defcustom org-agenda-mouse-1-follows-link nil
914 "Non-nil means mouse-1 on a link will follow the link in the agenda.
915 A longer mouse click will still set point. Does not work on XEmacs.
916 Needs to be set before org.el is loaded."
917 :group 'org-agenda-startup
918 :type 'boolean)
919
920 (defcustom org-agenda-start-with-follow-mode nil
921 "The initial value of follow mode in a newly created agenda window."
922 :group 'org-agenda-startup
923 :type 'boolean)
924
925 (defcustom org-agenda-follow-indirect nil
926 "Non-nil means `org-agenda-follow-mode' displays only the
927 current item's tree, in an indirect buffer."
928 :group 'org-agenda
929 :version "24.1"
930 :type 'boolean)
931
932 (defcustom org-agenda-show-outline-path t
933 "Non-nil means show outline path in echo area after line motion."
934 :group 'org-agenda-startup
935 :type 'boolean)
936
937 (defcustom org-agenda-start-with-entry-text-mode nil
938 "The initial value of entry-text-mode in a newly created agenda window."
939 :group 'org-agenda-startup
940 :type 'boolean)
941
942 (defcustom org-agenda-entry-text-maxlines 5
943 "Number of text lines to be added when `E' is pressed in the agenda.
944
945 Note that this variable only used during agenda display. Add add entry text
946 when exporting the agenda, configure the variable
947 `org-agenda-add-entry-ext-maxlines'."
948 :group 'org-agenda
949 :type 'integer)
950
951 (defcustom org-agenda-entry-text-exclude-regexps nil
952 "List of regular expressions to clean up entry text.
953 The complete matches of all regular expressions in this list will be
954 removed from entry text before it is shown in the agenda."
955 :group 'org-agenda
956 :type '(repeat (regexp)))
957
958 (defvar org-agenda-entry-text-cleanup-hook nil
959 "Hook that is run after basic cleanup of entry text to be shown in agenda.
960 This cleanup is done in a temporary buffer, so the function may inspect and
961 change the entire buffer.
962 Some default stuff like drawers and scheduling/deadline dates will already
963 have been removed when this is called, as will any matches for regular
964 expressions listed in `org-agenda-entry-text-exclude-regexps'.")
965
966 (defvar org-agenda-include-inactive-timestamps nil
967 "Non-nil means include inactive time stamps in agenda and timeline.
968 Dynamically scoped.")
969
970 (defgroup org-agenda-windows nil
971 "Options concerning the windows used by the Agenda in Org Mode."
972 :tag "Org Agenda Windows"
973 :group 'org-agenda)
974
975 (defcustom org-agenda-window-setup 'reorganize-frame
976 "How the agenda buffer should be displayed.
977 Possible values for this option are:
978
979 current-window Show agenda in the current window, keeping all other windows.
980 other-window Use `switch-to-buffer-other-window' to display agenda.
981 reorganize-frame Show only two windows on the current frame, the current
982 window and the agenda.
983 other-frame Use `switch-to-buffer-other-frame' to display agenda.
984 Also, when exiting the agenda, kill that frame.
985 See also the variable `org-agenda-restore-windows-after-quit'."
986 :group 'org-agenda-windows
987 :type '(choice
988 (const current-window)
989 (const other-frame)
990 (const other-window)
991 (const reorganize-frame)))
992
993 (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
994 "The min and max height of the agenda window as a fraction of frame height.
995 The value of the variable is a cons cell with two numbers between 0 and 1.
996 It only matters if `org-agenda-window-setup' is `reorganize-frame'."
997 :group 'org-agenda-windows
998 :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
999
1000 (defcustom org-agenda-restore-windows-after-quit nil
1001 "Non-nil means restore window configuration upon exiting agenda.
1002 Before the window configuration is changed for displaying the agenda,
1003 the current status is recorded. When the agenda is exited with
1004 `q' or `x' and this option is set, the old state is restored. If
1005 `org-agenda-window-setup' is `other-frame', the value of this
1006 option will be ignored."
1007 :group 'org-agenda-windows
1008 :type 'boolean)
1009
1010 (defcustom org-agenda-ndays nil
1011 "Number of days to include in overview display.
1012 Should be 1 or 7.
1013 Obsolete, see `org-agenda-span'."
1014 :group 'org-agenda-daily/weekly
1015 :type 'integer)
1016
1017 (make-obsolete-variable 'org-agenda-ndays 'org-agenda-span "24.1")
1018
1019 (defcustom org-agenda-span 'week
1020 "Number of days to include in overview display.
1021 Can be day, week, month, year, or any number of days.
1022 Custom commands can set this variable in the options section."
1023 :group 'org-agenda-daily/weekly
1024 :type '(choice (const :tag "Day" day)
1025 (const :tag "Week" week)
1026 (const :tag "Month" month)
1027 (const :tag "Year" year)
1028 (integer :tag "Custom")))
1029
1030 (defcustom org-agenda-start-on-weekday 1
1031 "Non-nil means start the overview always on the specified weekday.
1032 0 denotes Sunday, 1 denotes Monday etc.
1033 When nil, always start on the current day.
1034 Custom commands can set this variable in the options section."
1035 :group 'org-agenda-daily/weekly
1036 :type '(choice (const :tag "Today" nil)
1037 (integer :tag "Weekday No.")))
1038
1039 (defcustom org-agenda-show-all-dates t
1040 "Non-nil means `org-agenda' shows every day in the selected range.
1041 When nil, only the days which actually have entries are shown."
1042 :group 'org-agenda-daily/weekly
1043 :type 'boolean)
1044
1045 (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
1046 "Format string for displaying dates in the agenda.
1047 Used by the daily/weekly agenda and by the timeline. This should be
1048 a format string understood by `format-time-string', or a function returning
1049 the formatted date as a string. The function must take a single argument,
1050 a calendar-style date list like (month day year)."
1051 :group 'org-agenda-daily/weekly
1052 :type '(choice
1053 (string :tag "Format string")
1054 (function :tag "Function")))
1055
1056 (defun org-agenda-format-date-aligned (date)
1057 "Format a date string for display in the daily/weekly agenda, or timeline.
1058 This function makes sure that dates are aligned for easy reading."
1059 (require 'cal-iso)
1060 (let* ((dayname (calendar-day-name date))
1061 (day (cadr date))
1062 (day-of-week (calendar-day-of-week date))
1063 (month (car date))
1064 (monthname (calendar-month-name month))
1065 (year (nth 2 date))
1066 (iso-week (org-days-to-iso-week
1067 (calendar-absolute-from-gregorian date)))
1068 (weekyear (cond ((and (= month 1) (>= iso-week 52))
1069 (1- year))
1070 ((and (= month 12) (<= iso-week 1))
1071 (1+ year))
1072 (t year)))
1073 (weekstring (if (= day-of-week 1)
1074 (format " W%02d" iso-week)
1075 "")))
1076 (format "%-10s %2d %s %4d%s"
1077 dayname day monthname year weekstring)))
1078
1079 (defcustom org-agenda-time-leading-zero nil
1080 "Non-nil means use leading zero for military times in agenda.
1081 For example, 9:30am would become 09:30 rather than 9:30."
1082 :group 'org-agenda-daily/weekly
1083 :version "24.1"
1084 :type 'boolean)
1085
1086 (defcustom org-agenda-timegrid-use-ampm nil
1087 "When set, show AM/PM style timestamps on the timegrid."
1088 :group 'org-agenda
1089 :version "24.1"
1090 :type 'boolean)
1091
1092 (defun org-agenda-time-of-day-to-ampm (time)
1093 "Convert TIME of a string like '13:45' to an AM/PM style time string."
1094 (let* ((hour-number (string-to-number (substring time 0 -3)))
1095 (minute (substring time -2))
1096 (ampm "am"))
1097 (cond
1098 ((equal hour-number 12)
1099 (setq ampm "pm"))
1100 ((> hour-number 12)
1101 (setq ampm "pm")
1102 (setq hour-number (- hour-number 12))))
1103 (concat
1104 (if org-agenda-time-leading-zero
1105 (format "%02d" hour-number)
1106 (format "%02s" (number-to-string hour-number)))
1107 ":" minute ampm)))
1108
1109 (defun org-agenda-time-of-day-to-ampm-maybe (time)
1110 "Conditionally convert TIME to AM/PM format
1111 based on `org-agenda-timegrid-use-ampm'"
1112 (if org-agenda-timegrid-use-ampm
1113 (org-agenda-time-of-day-to-ampm time)
1114 time))
1115
1116 (defcustom org-agenda-weekend-days '(6 0)
1117 "Which days are weekend?
1118 These days get the special face `org-agenda-date-weekend' in the agenda
1119 and timeline buffers."
1120 :group 'org-agenda-daily/weekly
1121 :type '(set :greedy t
1122 (const :tag "Monday" 1)
1123 (const :tag "Tuesday" 2)
1124 (const :tag "Wednesday" 3)
1125 (const :tag "Thursday" 4)
1126 (const :tag "Friday" 5)
1127 (const :tag "Saturday" 6)
1128 (const :tag "Sunday" 0)))
1129
1130 (defcustom org-agenda-move-date-from-past-immediately-to-today t
1131 "Non-nil means jump to today when moving a past date forward in time.
1132 When using S-right in the agenda to move a a date forward, and the date
1133 stamp currently points to the past, the first key press will move it
1134 to today. WHen nil, just move one day forward even if the date stays
1135 in the past."
1136 :group 'org-agenda-daily/weekly
1137 :version "24.1"
1138 :type 'boolean)
1139
1140 (defcustom org-agenda-include-diary nil
1141 "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
1142 Custom commands can set this variable in the options section."
1143 :group 'org-agenda-daily/weekly
1144 :type 'boolean)
1145
1146 (defcustom org-agenda-include-deadlines t
1147 "If non-nil, include entries within their deadline warning period.
1148 Custom commands can set this variable in the options section."
1149 :group 'org-agenda-daily/weekly
1150 :version "24.1"
1151 :type 'boolean)
1152
1153 (defcustom org-agenda-repeating-timestamp-show-all t
1154 "Non-nil means show all occurrences of a repeating stamp in the agenda.
1155 When set to a list of strings, only show occurrences of repeating
1156 stamps for these TODO keywords. When nil, only one occurrence is
1157 shown, either today or the nearest into the future."
1158 :group 'org-agenda-daily/weekly
1159 :type '(choice
1160 (const :tag "Show repeating stamps" t)
1161 (repeat :tag "Show repeating stamps for these TODO keywords"
1162 (string :tag "TODO Keyword"))
1163 (const :tag "Don't show repeating stamps" nil)))
1164
1165 (defcustom org-scheduled-past-days 10000
1166 "No. of days to continue listing scheduled items that are not marked DONE.
1167 When an item is scheduled on a date, it shows up in the agenda on this
1168 day and will be listed until it is marked done for the number of days
1169 given here."
1170 :group 'org-agenda-daily/weekly
1171 :type 'integer)
1172
1173 (defcustom org-agenda-log-mode-items '(closed clock)
1174 "List of items that should be shown in agenda log mode.
1175 This list may contain the following symbols:
1176
1177 closed Show entries that have been closed on that day.
1178 clock Show entries that have received clocked time on that day.
1179 state Show all logged state changes.
1180 Note that instead of changing this variable, you can also press `C-u l' in
1181 the agenda to display all available LOG items temporarily."
1182 :group 'org-agenda-daily/weekly
1183 :type '(set :greedy t (const closed) (const clock) (const state)))
1184
1185 (defcustom org-agenda-clock-consistency-checks
1186 '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
1187 :gap-ok-around ("4:00")
1188 :default-face ((:background "DarkRed") (:foreground "white"))
1189 :overlap-face nil :gap-face nil :no-end-time-face nil
1190 :long-face nil :short-face nil)
1191 "This is a property list, with the following keys:
1192
1193 :max-duration Mark clocking chunks that are longer than this time.
1194 This is a time string like \"HH:MM\", or the number
1195 of minutes as an integer.
1196
1197 :min-duration Mark clocking chunks that are shorter that this.
1198 This is a time string like \"HH:MM\", or the number
1199 of minutes as an integer.
1200
1201 :max-gap Mark gaps between clocking chunks that are longer than
1202 this duration. A number of minutes, or a string
1203 like \"HH:MM\".
1204
1205 :gap-ok-around List of times during the day which are usually not working
1206 times. When a gap is detected, but the gap contains any
1207 of these times, the gap is *not* reported. For example,
1208 if this is (\"4:00\" \"13:00\") then gaps that contain
1209 4:00 in the morning (i.e. the night) and 13:00
1210 (i.e. a typical lunch time) do not cause a warning.
1211 You should have at least one time during the night in this
1212 list, or otherwise the first task each morning will trigger
1213 a warning because it follows a long gap.
1214
1215 Furthermore, the following properties can be used to define faces for
1216 issue display.
1217
1218 :default-face the default face, if the specific face is undefined
1219 :overlap-face face for overlapping clocks
1220 :gap-face face for gaps between clocks
1221 :no-end-time-face face for incomplete clocks
1222 :long-face face for clock intervals that are too long
1223 :short-face face for clock intervals that are too short"
1224 :group 'org-agenda-daily/weekly
1225 :group 'org-clock
1226 :version "24.1"
1227 :type 'plist)
1228
1229 (defcustom org-agenda-log-mode-add-notes t
1230 "Non-nil means add first line of notes to log entries in agenda views.
1231 If a log item like a state change or a clock entry is associated with
1232 notes, the first line of these notes will be added to the entry in the
1233 agenda display."
1234 :group 'org-agenda-daily/weekly
1235 :type 'boolean)
1236
1237 (defcustom org-agenda-start-with-log-mode nil
1238 "The initial value of log-mode in a newly created agenda window.
1239 See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
1240 explanations on the possible values."
1241 :group 'org-agenda-startup
1242 :group 'org-agenda-daily/weekly
1243 :type '(choice (const :tag "Don't show log items" nil)
1244 (const :tag "Show only log items" 'only)
1245 (const :tag "Show all possible log items" 'clockcheck)
1246 (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
1247 (choice (const :tag "Show closed log items" 'closed)
1248 (const :tag "Show clocked log items" 'clock)
1249 (const :tag "Show all logged state changes" 'state)))))
1250
1251 (defcustom org-agenda-start-with-clockreport-mode nil
1252 "The initial value of clockreport-mode in a newly created agenda window."
1253 :group 'org-agenda-startup
1254 :group 'org-agenda-daily/weekly
1255 :type 'boolean)
1256
1257 (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
1258 "Property list with parameters for the clocktable in clockreport mode.
1259 This is the display mode that shows a clock table in the daily/weekly
1260 agenda, the properties for this dynamic block can be set here.
1261 The usual clocktable parameters are allowed here, but you cannot set
1262 the properties :name, :tstart, :tend, :block, and :scope - these will
1263 be overwritten to make sure the content accurately reflects the
1264 current display in the agenda."
1265 :group 'org-agenda-daily/weekly
1266 :type 'plist)
1267
1268 (defcustom org-agenda-search-view-always-boolean nil
1269 "Non-nil means the search string is interpreted as individual parts.
1270
1271 The search string for search view can either be interpreted as a phrase,
1272 or as a list of snippets that define a boolean search for a number of
1273 strings.
1274
1275 When this is non-nil, the string will be split on whitespace, and each
1276 snippet will be searched individually, and all must match in order to
1277 select an entry. A snippet is then a single string of non-white
1278 characters, or a string in double quotes, or a regexp in {} braces.
1279 If a snippet is preceded by \"-\", the snippet must *not* match.
1280 \"+\" is syntactic sugar for positive selection. Each snippet may
1281 be found as a full word or a partial word, but see the variable
1282 `org-agenda-search-view-force-full-words'.
1283
1284 When this is nil, search will look for the entire search phrase as one,
1285 with each space character matching any amount of whitespace, including
1286 line breaks.
1287
1288 Even when this is nil, you can still switch to Boolean search dynamically
1289 by preceding the first snippet with \"+\" or \"-\". If the first snippet
1290 is a regexp marked with braces like \"{abc}\", this will also switch to
1291 boolean search."
1292 :group 'org-agenda-search-view
1293 :version "24.1"
1294 :type 'boolean)
1295
1296 (if (fboundp 'defvaralias)
1297 (defvaralias 'org-agenda-search-view-search-words-only
1298 'org-agenda-search-view-always-boolean))
1299
1300 (defcustom org-agenda-search-view-force-full-words nil
1301 "Non-nil means, search words must be matches as complete words.
1302 When nil, they may also match part of a word."
1303 :group 'org-agenda-search-view
1304 :version "24.1"
1305 :type 'boolean)
1306
1307 (defgroup org-agenda-time-grid nil
1308 "Options concerning the time grid in the Org-mode Agenda."
1309 :tag "Org Agenda Time Grid"
1310 :group 'org-agenda)
1311
1312 (defcustom org-agenda-search-headline-for-time t
1313 "Non-nil means search headline for a time-of-day.
1314 If the headline contains a time-of-day in one format or another, it will
1315 be used to sort the entry into the time sequence of items for a day.
1316 Some people have time stamps in the headline that refer to the creation
1317 time or so, and then this produces an unwanted side effect. If this is
1318 the case for your, use this variable to turn off searching the headline
1319 for a time."
1320 :group 'org-agenda-time-grid
1321 :type 'boolean)
1322
1323 (defcustom org-agenda-use-time-grid t
1324 "Non-nil means show a time grid in the agenda schedule.
1325 A time grid is a set of lines for specific times (like every two hours between
1326 8:00 and 20:00). The items scheduled for a day at specific times are
1327 sorted in between these lines.
1328 For details about when the grid will be shown, and what it will look like, see
1329 the variable `org-agenda-time-grid'."
1330 :group 'org-agenda-time-grid
1331 :type 'boolean)
1332
1333 (defcustom org-agenda-time-grid
1334 '((daily today require-timed)
1335 "----------------"
1336 (800 1000 1200 1400 1600 1800 2000))
1337
1338 "The settings for time grid for agenda display.
1339 This is a list of three items. The first item is again a list. It contains
1340 symbols specifying conditions when the grid should be displayed:
1341
1342 daily if the agenda shows a single day
1343 weekly if the agenda shows an entire week
1344 today show grid on current date, independent of daily/weekly display
1345 require-timed show grid only if at least one item has a time specification
1346
1347 The second item is a string which will be placed behind the grid time.
1348
1349 The third item is a list of integers, indicating the times that should have
1350 a grid line."
1351 :group 'org-agenda-time-grid
1352 :type
1353 '(list
1354 (set :greedy t :tag "Grid Display Options"
1355 (const :tag "Show grid in single day agenda display" daily)
1356 (const :tag "Show grid in weekly agenda display" weekly)
1357 (const :tag "Always show grid for today" today)
1358 (const :tag "Show grid only if any timed entries are present"
1359 require-timed)
1360 (const :tag "Skip grid times already present in an entry"
1361 remove-match))
1362 (string :tag "Grid String")
1363 (repeat :tag "Grid Times" (integer :tag "Time"))))
1364
1365 (defcustom org-agenda-show-current-time-in-grid t
1366 "Non-nil means show the current time in the time grid."
1367 :group 'org-agenda-time-grid
1368 :version "24.1"
1369 :type 'boolean)
1370
1371 (defcustom org-agenda-current-time-string
1372 "now - - - - - - - - - - - - - - - - - - - - - - - - -"
1373 "The string for the current time marker in the agenda."
1374 :group 'org-agenda-time-grid
1375 :version "24.1"
1376 :type 'string)
1377
1378 (defgroup org-agenda-sorting nil
1379 "Options concerning sorting in the Org-mode Agenda."
1380 :tag "Org Agenda Sorting"
1381 :group 'org-agenda)
1382
1383 (defcustom org-agenda-sorting-strategy
1384 '((agenda habit-down time-up priority-down category-keep)
1385 (todo priority-down category-keep)
1386 (tags priority-down category-keep)
1387 (search category-keep))
1388 "Sorting structure for the agenda items of a single day.
1389 This is a list of symbols which will be used in sequence to determine
1390 if an entry should be listed before another entry. The following
1391 symbols are recognized:
1392
1393 time-up Put entries with time-of-day indications first, early first
1394 time-down Put entries with time-of-day indications first, late first
1395 category-keep Keep the default order of categories, corresponding to the
1396 sequence in `org-agenda-files'.
1397 category-up Sort alphabetically by category, A-Z.
1398 category-down Sort alphabetically by category, Z-A.
1399 tag-up Sort alphabetically by last tag, A-Z.
1400 tag-down Sort alphabetically by last tag, Z-A.
1401 priority-up Sort numerically by priority, high priority last.
1402 priority-down Sort numerically by priority, high priority first.
1403 todo-state-up Sort by todo state, tasks that are done last.
1404 todo-state-down Sort by todo state, tasks that are done first.
1405 effort-up Sort numerically by estimated effort, high effort last.
1406 effort-down Sort numerically by estimated effort, high effort first.
1407 user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
1408 user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
1409 habit-up Put entries that are habits first
1410 habit-down Put entries that are habits last
1411 alpha-up Sort headlines alphabetically
1412 alpha-down Sort headlines alphabetically, reversed
1413
1414 The different possibilities will be tried in sequence, and testing stops
1415 if one comparison returns a \"not-equal\". For example, the default
1416 '(time-up category-keep priority-down)
1417 means: Pull out all entries having a specified time of day and sort them,
1418 in order to make a time schedule for the current day the first thing in the
1419 agenda listing for the day. Of the entries without a time indication, keep
1420 the grouped in categories, don't sort the categories, but keep them in
1421 the sequence given in `org-agenda-files'. Within each category sort by
1422 priority.
1423
1424 Leaving out `category-keep' would mean that items will be sorted across
1425 categories by priority.
1426
1427 Instead of a single list, this can also be a set of list for specific
1428 contents, with a context symbol in the car of the list, any of
1429 `agenda', `todo', `tags', `search' for the corresponding agenda views.
1430
1431 Custom commands can bind this variable in the options section."
1432 :group 'org-agenda-sorting
1433 :type `(choice
1434 (repeat :tag "General" ,org-sorting-choice)
1435 (list :tag "Individually"
1436 (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
1437 (repeat ,org-sorting-choice))
1438 (cons (const :tag "Strategy for TODO lists" todo)
1439 (repeat ,org-sorting-choice))
1440 (cons (const :tag "Strategy for Tags matches" tags)
1441 (repeat ,org-sorting-choice))
1442 (cons (const :tag "Strategy for search matches" search)
1443 (repeat ,org-sorting-choice)))))
1444
1445 (defcustom org-agenda-cmp-user-defined nil
1446 "A function to define the comparison `user-defined'.
1447 This function must receive two arguments, agenda entry a and b.
1448 If a>b, return +1. If a<b, return -1. If they are equal as seen by
1449 the user comparison, return nil.
1450 When this is defined, you can make `user-defined-up' and `user-defined-down'
1451 part of an agenda sorting strategy."
1452 :group 'org-agenda-sorting
1453 :type 'symbol)
1454
1455 (defcustom org-sort-agenda-notime-is-late t
1456 "Non-nil means items without time are considered late.
1457 This is only relevant for sorting. When t, items which have no explicit
1458 time like 15:30 will be considered as 99:01, i.e. later than any items which
1459 do have a time. When nil, the default time is before 0:00. You can use this
1460 option to decide if the schedule for today should come before or after timeless
1461 agenda entries."
1462 :group 'org-agenda-sorting
1463 :type 'boolean)
1464
1465 (defcustom org-sort-agenda-noeffort-is-high t
1466 "Non-nil means items without effort estimate are sorted as high effort.
1467 This also applies when filtering an agenda view with respect to the
1468 < or > effort operator. Then, tasks with no effort defined will be treated
1469 as tasks with high effort.
1470 When nil, such items are sorted as 0 minutes effort."
1471 :group 'org-agenda-sorting
1472 :type 'boolean)
1473
1474 (defgroup org-agenda-line-format nil
1475 "Options concerning the entry prefix in the Org-mode agenda display."
1476 :tag "Org Agenda Line Format"
1477 :group 'org-agenda)
1478
1479 (defcustom org-agenda-prefix-format
1480 '((agenda . " %i %-12:c%?-12t% s")
1481 (timeline . " % s")
1482 (todo . " %i %-12:c")
1483 (tags . " %i %-12:c")
1484 (search . " %i %-12:c"))
1485 "Format specifications for the prefix of items in the agenda views.
1486 An alist with five entries, each for the different agenda types. The
1487 keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
1488 The values are format strings.
1489
1490 This format works similar to a printf format, with the following meaning:
1491
1492 %c the category of the item, \"Diary\" for entries from the diary,
1493 or as given by the CATEGORY keyword or derived from the file name
1494 %e the effort required by the item
1495 %i the icon category of the item, see `org-agenda-category-icon-alist'
1496 %T the last tag of the item (ignore inherited tags, which come first)
1497 %t the HH:MM time-of-day specification if one applies to the entry
1498 %s Scheduling/Deadline information, a short string
1499 %(expression) Eval EXPRESSION and replace the control string
1500 by the result
1501
1502 All specifiers work basically like the standard `%s' of printf, but may
1503 contain two additional characters: a question mark just after the `%'
1504 and a whitespace/punctuation character just before the final letter.
1505
1506 If the first character after `%' is a question mark, the entire field
1507 will only be included if the corresponding value applies to the current
1508 entry. This is useful for fields which should have fixed width when
1509 present, but zero width when absent. For example, \"%?-12t\" will
1510 result in a 12 character time field if a time of the day is specified,
1511 but will completely disappear in entries which do not contain a time.
1512
1513 If there is punctuation or whitespace character just before the final
1514 format letter, this character will be appended to the field value if
1515 the value is not empty. For example, the format \"%-12:c\" leads to
1516 \"Diary: \" if the category is \"Diary\". If the category were be
1517 empty, no additional colon would be inserted.
1518
1519 The default value for the agenda sublist is \" %-12:c%?-12t% s\",
1520 which means:
1521
1522 - Indent the line with two space characters
1523 - Give the category a 12 chars wide field, padded with whitespace on
1524 the right (because of `-'). Append a colon if there is a category
1525 (because of `:').
1526 - If there is a time-of-day, put it into a 12 chars wide field. If no
1527 time, don't put in an empty field, just skip it (because of '?').
1528 - Finally, put the scheduling information.
1529
1530 See also the variables `org-agenda-remove-times-when-in-prefix' and
1531 `org-agenda-remove-tags'.
1532
1533 Custom commands can set this variable in the options section."
1534 :type '(choice
1535 (string :tag "General format")
1536 (list :greedy t :tag "View dependent"
1537 (cons (const agenda) (string :tag "Format"))
1538 (cons (const timeline) (string :tag "Format"))
1539 (cons (const todo) (string :tag "Format"))
1540 (cons (const tags) (string :tag "Format"))
1541 (cons (const search) (string :tag "Format"))))
1542 :group 'org-agenda-line-format)
1543
1544 (defvar org-prefix-format-compiled nil
1545 "The compiled prefix format and associated variables.
1546 This is a list where first element is a list of variable bindings, and second
1547 element is the compiled format expression. See the variable
1548 `org-agenda-prefix-format'.")
1549
1550 (defcustom org-agenda-todo-keyword-format "%-1s"
1551 "Format for the TODO keyword in agenda lines.
1552 Set this to something like \"%-12s\" if you want all TODO keywords
1553 to occupy a fixed space in the agenda display."
1554 :group 'org-agenda-line-format
1555 :type 'string)
1556
1557 (defcustom org-agenda-diary-sexp-prefix nil
1558 "A regexp that matches part of a diary sexp entry
1559 which should be treated as scheduling/deadline information in
1560 `org-agenda'.
1561
1562 For example, you can use this to extract the `diary-remind-message' from
1563 `diary-remind' entries."
1564 :group 'org-agenda-line-format
1565 :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
1566
1567 (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
1568 "Text preceding timerange entries in the agenda view.
1569 This is a list with two strings. The first applies when the range
1570 is entirely on one day. The second applies if the range spans several days.
1571 The strings may have two \"%d\" format specifiers which will be filled
1572 with the sequence number of the days, and the total number of days in the
1573 range, respectively."
1574 :group 'org-agenda-line-format
1575 :type '(list
1576 (string :tag "Deadline today ")
1577 (choice :tag "Deadline relative"
1578 (string :tag "Format string")
1579 (function))))
1580
1581 (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
1582 "Text preceding scheduled items in the agenda view.
1583 This is a list with two strings. The first applies when the item is
1584 scheduled on the current day. The second applies when it has been scheduled
1585 previously, it may contain a %d indicating that this is the nth time that
1586 this item is scheduled, due to automatic rescheduling of unfinished items
1587 for the following day. So this number is one larger than the number of days
1588 that passed since this item was scheduled first."
1589 :group 'org-agenda-line-format
1590 :type '(list
1591 (string :tag "Scheduled today ")
1592 (string :tag "Scheduled previously")))
1593
1594 (defcustom org-agenda-inactive-leader "["
1595 "Text preceding item pulled into the agenda by inactive time stamps.
1596 These entries are added to the agenda when pressing \"[\"."
1597 :group 'org-agenda-line-format
1598 :version "24.1"
1599 :type '(list
1600 (string :tag "Scheduled today ")
1601 (string :tag "Scheduled previously")))
1602
1603 (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: ")
1604 "Text preceding deadline items in the agenda view.
1605 This is a list with two strings. The first applies when the item has its
1606 deadline on the current day. The second applies when it is in the past or
1607 in the future, it may contain %d to capture how many days away the deadline
1608 is (was)."
1609 :group 'org-agenda-line-format
1610 :type '(list
1611 (string :tag "Deadline today ")
1612 (choice :tag "Deadline relative"
1613 (string :tag "Format string")
1614 (function))))
1615
1616 (defcustom org-agenda-remove-times-when-in-prefix t
1617 "Non-nil means remove duplicate time specifications in agenda items.
1618 When the format `org-agenda-prefix-format' contains a `%t' specifier, a
1619 time-of-day specification in a headline or diary entry is extracted and
1620 placed into the prefix. If this option is non-nil, the original specification
1621 \(a timestamp or -range, or just a plain time(range) specification like
1622 11:30-4pm) will be removed for agenda display. This makes the agenda less
1623 cluttered.
1624 The option can be t or nil. It may also be the symbol `beg', indicating
1625 that the time should only be removed when it is located at the beginning of
1626 the headline/diary entry."
1627 :group 'org-agenda-line-format
1628 :type '(choice
1629 (const :tag "Always" t)
1630 (const :tag "Never" nil)
1631 (const :tag "When at beginning of entry" beg)))
1632
1633 (defcustom org-agenda-remove-timeranges-from-blocks nil
1634 "Non-nil means remove time ranges specifications in agenda
1635 items that span on several days."
1636 :group 'org-agenda-line-format
1637 :version "24.1"
1638 :type 'boolean)
1639
1640 (defcustom org-agenda-default-appointment-duration nil
1641 "Default duration for appointments that only have a starting time.
1642 When nil, no duration is specified in such cases.
1643 When non-nil, this must be the number of minutes, e.g. 60 for one hour."
1644 :group 'org-agenda-line-format
1645 :type '(choice
1646 (integer :tag "Minutes")
1647 (const :tag "No default duration")))
1648
1649 (defcustom org-agenda-show-inherited-tags t
1650 "Non-nil means show inherited tags in each agenda line."
1651 :group 'org-agenda-line-format
1652 :type 'boolean)
1653
1654 (defcustom org-agenda-hide-tags-regexp nil
1655 "Regular expression used to filter away specific tags in agenda views.
1656 This means that these tags will be present, but not be shown in the agenda
1657 line. Secondary filtering will still work on the hidden tags.
1658 Nil means don't hide any tags."
1659 :group 'org-agenda-line-format
1660 :type '(choice
1661 (const :tag "Hide none" nil)
1662 (string :tag "Regexp ")))
1663
1664 (defcustom org-agenda-remove-tags nil
1665 "Non-nil means remove the tags from the headline copy in the agenda.
1666 When this is the symbol `prefix', only remove tags when
1667 `org-agenda-prefix-format' contains a `%T' specifier."
1668 :group 'org-agenda-line-format
1669 :type '(choice
1670 (const :tag "Always" t)
1671 (const :tag "Never" nil)
1672 (const :tag "When prefix format contains %T" prefix)))
1673
1674 (if (fboundp 'defvaralias)
1675 (defvaralias 'org-agenda-remove-tags-when-in-prefix
1676 'org-agenda-remove-tags))
1677
1678 (defcustom org-agenda-tags-column (if (featurep 'xemacs) -79 -80)
1679 "Shift tags in agenda items to this column.
1680 If this number is positive, it specifies the column. If it is negative,
1681 it means that the tags should be flushright to that column. For example,
1682 -80 works well for a normal 80 character screen."
1683 :group 'org-agenda-line-format
1684 :type 'integer)
1685
1686 (if (fboundp 'defvaralias)
1687 (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column))
1688
1689 (defcustom org-agenda-fontify-priorities 'cookies
1690 "Non-nil means highlight low and high priorities in agenda.
1691 When t, the highest priority entries are bold, lowest priority italic.
1692 However, settings in `org-priority-faces' will overrule these faces.
1693 When this variable is the symbol `cookies', only fontify the
1694 cookies, not the entire task.
1695 This may also be an association list of priority faces, whose
1696 keys are the character values of `org-highest-priority',
1697 `org-default-priority', and `org-lowest-priority' (the default values
1698 are ?A, ?B, and ?C, respectively). The face may be a named face, a
1699 color as a string, or a list like `(:background \"Red\")'.
1700 If it is a color, the variable `org-faces-easy-properties'
1701 determines if it is a foreground or a background color."
1702 :group 'org-agenda-line-format
1703 :type '(choice
1704 (const :tag "Never" nil)
1705 (const :tag "Defaults" t)
1706 (const :tag "Cookies only" cookies)
1707 (repeat :tag "Specify"
1708 (list (character :tag "Priority" :value ?A)
1709 (choice :tag "Face "
1710 (string :tag "Color")
1711 (sexp :tag "Face"))))))
1712
1713 (defcustom org-agenda-day-face-function nil
1714 "Function called to determine what face should be used to display a day.
1715 The only argument passed to that function is the day. It should
1716 returns a face, or nil if does not want to specify a face and let
1717 the normal rules apply."
1718 :group 'org-agenda-line-format
1719 :version "24.1"
1720 :type 'function)
1721
1722 (defcustom org-agenda-category-icon-alist nil
1723 "Alist of category icon to be displayed in agenda views.
1724
1725 Each entry should have the following format:
1726
1727 (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
1728
1729 Where CATEGORY-REGEXP is a regexp matching the categories where
1730 the icon should be displayed.
1731 FILE-OR-DATA either a file path or a string containing image data.
1732
1733 The other fields can be omitted safely if not needed:
1734 TYPE indicates the image type.
1735 DATA-P is a boolean indicating whether the FILE-OR-DATA string is
1736 image data.
1737 PROPS are additional image attributes to assign to the image,
1738 like, e.g. `:ascent center'.
1739
1740 (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
1741
1742 If you want to set the display properties yourself, just put a
1743 list as second element:
1744
1745 (CATEGORY-REGEXP (MY PROPERTY LIST))
1746
1747 For example, to display a 16px horizontal space for Emacs
1748 category, you can use:
1749
1750 (\"Emacs\" '(space . (:width (16))))"
1751 :group 'org-agenda-line-format
1752 :version "24.1"
1753 :type '(alist :key-type (string :tag "Regexp matching category")
1754 :value-type (choice (list :tag "Icon"
1755 (string :tag "File or data")
1756 (symbol :tag "Type")
1757 (boolean :tag "Data?")
1758 (repeat :tag "Extra image properties" :inline t symbol))
1759 (list :tag "Display properties" sexp))))
1760
1761 (defgroup org-agenda-column-view nil
1762 "Options concerning column view in the agenda."
1763 :tag "Org Agenda Column View"
1764 :group 'org-agenda)
1765
1766 (defcustom org-agenda-columns-show-summaries t
1767 "Non-nil means show summaries for columns displayed in the agenda view."
1768 :group 'org-agenda-column-view
1769 :type 'boolean)
1770
1771 (defcustom org-agenda-columns-compute-summary-properties t
1772 "Non-nil means recompute all summary properties before column view.
1773 When column view in the agenda is listing properties that have a summary
1774 operator, it can go to all relevant buffers and recompute the summaries
1775 there. This can mean overhead for the agenda column view, but is necessary
1776 to have thing up to date.
1777 As a special case, a CLOCKSUM property also makes sure that the clock
1778 computations are current."
1779 :group 'org-agenda-column-view
1780 :type 'boolean)
1781
1782 (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
1783 "Non-nil means the duration of an appointment will add to day effort.
1784 The property to which appointment durations will be added is the one given
1785 in the option `org-effort-property'. If an appointment does not have
1786 an end time, `org-agenda-default-appointment-duration' will be used. If that
1787 is not set, an appointment without end time will not contribute to the time
1788 estimate."
1789 :group 'org-agenda-column-view
1790 :type 'boolean)
1791
1792 (defcustom org-agenda-auto-exclude-function nil
1793 "A function called with a tag to decide if it is filtered on '/ RET'.
1794 The sole argument to the function, which is called once for each
1795 possible tag, is a string giving the name of the tag. The
1796 function should return either nil if the tag should be included
1797 as normal, or \"-<TAG>\" to exclude the tag.
1798 Note that for the purpose of tag filtering, only the lower-case version of
1799 all tags will be considered, so that this function will only ever see
1800 the lower-case version of all tags."
1801 :group 'org-agenda
1802 :type 'function)
1803
1804 (defcustom org-agenda-bulk-custom-functions nil
1805 "Alist of characters and custom functions for bulk actions.
1806 For example, this value makes those two functions available:
1807
1808 '((?R set-category)
1809 (?C bulk-cut))
1810
1811 With selected entries in an agenda buffer, `B R' will call
1812 the custom function `set-category' on the selected entries.
1813 Note that functions in this alist don't need to be quoted."
1814 :type 'alist
1815 :version "24.1"
1816 :group 'org-agenda)
1817
1818 (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
1819 "Execute BODY with point at location given by `org-hd-marker' property.
1820 If STRING is non-nil, the text property will be fetched from position 0
1821 in that string. If STRING is nil, it will be fetched from the beginning
1822 of the current line."
1823 (org-with-gensyms (marker)
1824 `(let ((,marker (get-text-property (if string 0 (point-at-bol))
1825 'org-hd-marker ,string)))
1826 (with-current-buffer (marker-buffer ,marker)
1827 (save-excursion
1828 (goto-char ,marker)
1829 ,@body)))))
1830 (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
1831
1832 (defun org-add-agenda-custom-command (entry)
1833 "Replace or add a command in `org-agenda-custom-commands'.
1834 This is mostly for hacking and trying a new command - once the command
1835 works you probably want to add it to `org-agenda-custom-commands' for good."
1836 (let ((ass (assoc (car entry) org-agenda-custom-commands)))
1837 (if ass
1838 (setcdr ass (cdr entry))
1839 (push entry org-agenda-custom-commands))))
1840
1841 ;;; Define the org-agenda-mode
1842
1843 (defvar org-agenda-mode-map (make-sparse-keymap)
1844 "Keymap for `org-agenda-mode'.")
1845 (if (fboundp 'defvaralias)
1846 (defvaralias 'org-agenda-keymap 'org-agenda-mode-map))
1847
1848 (defvar org-agenda-menu) ; defined later in this file.
1849 (defvar org-agenda-restrict nil) ; defined later in this file.
1850 (defvar org-agenda-follow-mode nil)
1851 (defvar org-agenda-entry-text-mode nil)
1852 (defvar org-agenda-clockreport-mode nil)
1853 (defvar org-agenda-show-log nil)
1854 (defvar org-agenda-redo-command nil)
1855 (defvar org-agenda-query-string nil)
1856 (defvar org-agenda-mode-hook nil
1857 "Hook run after `org-agenda-mode' is turned on.
1858 The buffer is still writable when this hook is called.")
1859 (defvar org-agenda-type nil)
1860 (defvar org-agenda-force-single-file nil)
1861 (defvar org-agenda-bulk-marked-entries nil
1862 "List of markers that refer to marked entries in the agenda.")
1863
1864 ;;; Multiple agenda buffers support
1865
1866 (defcustom org-agenda-sticky nil
1867 "Non-nil means agenda q key will bury agenda buffers.
1868 Agenda commands will then show existing buffer instead of generating new ones.
1869 When nil, `q' will kill the single agenda buffer."
1870 :group 'org-agenda
1871 :version "24.3"
1872 :type 'boolean)
1873
1874 ;;;###autoload
1875 (defun org-toggle-sticky-agenda (&optional arg)
1876 "Toggle `org-agenda-sticky'."
1877 (interactive "P")
1878 (let ((new-value (if arg
1879 (> (prefix-numeric-value arg) 0)
1880 (not org-agenda-sticky))))
1881 (if (equal new-value org-agenda-sticky)
1882 (and (org-called-interactively-p 'interactive)
1883 (message "Sticky agenda was already %s"
1884 (if org-agenda-sticky "enabled" "disabled")))
1885 (setq org-agenda-sticky new-value)
1886 (org-agenda-kill-all-agenda-buffers)
1887 (and (org-called-interactively-p 'interactive)
1888 (message "Sticky agenda was %s"
1889 (if org-agenda-sticky "enabled" "disabled"))))))
1890
1891 (defvar org-agenda-buffer nil
1892 "Agenda buffer currently being generated.")
1893
1894 (defvar org-agenda-last-prefix-arg nil)
1895 (defvar org-agenda-this-buffer-name nil)
1896 (defvar org-agenda-doing-sticky-redo nil)
1897 (defvar org-agenda-this-buffer-is-sticky nil)
1898
1899 (defconst org-agenda-local-vars
1900 '(org-agenda-this-buffer-name
1901 org-agenda-undo-list
1902 org-agenda-pending-undo-list
1903 org-agenda-follow-mode
1904 org-agenda-entry-text-mode
1905 org-agenda-clockreport-mode
1906 org-agenda-show-log
1907 org-agenda-redo-command
1908 org-agenda-query-string
1909 org-agenda-type
1910 org-agenda-bulk-marked-entries
1911 org-agenda-undo-has-started-in
1912 org-agenda-info
1913 org-agenda-tag-filter-overlays
1914 org-agenda-cat-filter-overlays
1915 org-agenda-pre-window-conf
1916 org-agenda-columns-active
1917 org-agenda-tag-filter
1918 org-agenda-category-filter
1919 org-agenda-markers
1920 org-agenda-last-search-view-search-was-boolean
1921 org-agenda-filtered-by-category
1922 org-agenda-filter-form
1923 org-agenda-show-window
1924 org-agenda-cycle-counter
1925 org-agenda-last-prefix-arg)
1926 "Variables that must be local in agenda buffers to allow multiple buffers.")
1927
1928 (defun org-agenda-mode ()
1929 "Mode for time-sorted view on action items in Org-mode files.
1930
1931 The following commands are available:
1932
1933 \\{org-agenda-mode-map}"
1934 (interactive)
1935 (cond (org-agenda-doing-sticky-redo
1936 ;; Refreshing sticky agenda-buffer
1937 ;;
1938 ;; Preserve the value of `org-agenda-local-vars' variables,
1939 ;; while letting `kill-all-local-variables' kill the rest
1940 (let ((save (buffer-local-variables)))
1941 (kill-all-local-variables)
1942 (mapc 'make-local-variable org-agenda-local-vars)
1943 (dolist (elem save)
1944 (let ((var (car elem))
1945 (val (cdr elem)))
1946 (when (and val
1947 (member var org-agenda-local-vars))
1948 (set var val)))))
1949 (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
1950 (org-agenda-sticky
1951 ;; Creating a sticky Agenda buffer for the first time
1952 (kill-all-local-variables)
1953 (mapc 'make-local-variable org-agenda-local-vars)
1954 (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
1955 (t
1956 ;; Creating a non-sticky agenda buffer
1957 (kill-all-local-variables)
1958 (set (make-local-variable 'org-agenda-this-buffer-is-sticky) nil)))
1959 (setq org-agenda-undo-list nil
1960 org-agenda-pending-undo-list nil
1961 org-agenda-bulk-marked-entries nil)
1962 (setq major-mode 'org-agenda-mode)
1963 ;; Keep global-font-lock-mode from turning on font-lock-mode
1964 (org-set-local 'font-lock-global-modes (list 'not major-mode))
1965 (setq mode-name "Org-Agenda")
1966 (use-local-map org-agenda-mode-map)
1967 (easy-menu-add org-agenda-menu)
1968 (if org-startup-truncated (setq truncate-lines t))
1969 (org-set-local 'line-move-visual nil)
1970 (org-add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
1971 (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
1972 ;; Make sure properties are removed when copying text
1973 (make-local-variable 'filter-buffer-substring-functions)
1974 (add-hook 'filter-buffer-substring-functions
1975 (lambda (fun start end delete)
1976 (substring-no-properties (funcall fun start end delete))))
1977 (unless org-agenda-keep-modes
1978 (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
1979 org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
1980 org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode
1981 org-agenda-show-log org-agenda-start-with-log-mode))
1982
1983 (easy-menu-change
1984 '("Agenda") "Agenda Files"
1985 (append
1986 (list
1987 (vector
1988 (if (get 'org-agenda-files 'org-restrict)
1989 "Restricted to single file"
1990 "Edit File List")
1991 '(org-edit-agenda-file-list)
1992 (not (get 'org-agenda-files 'org-restrict)))
1993 "--")
1994 (mapcar 'org-file-menu-entry (org-agenda-files))))
1995 (org-agenda-set-mode-name)
1996 (apply
1997 (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
1998 (list 'org-agenda-mode-hook)))
1999
2000 (substitute-key-definition 'undo 'org-agenda-undo
2001 org-agenda-mode-map global-map)
2002 (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
2003 (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
2004 (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
2005 (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
2006 (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
2007 (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
2008 (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
2009 (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
2010 (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
2011 (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
2012 (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
2013 (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
2014 (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
2015 (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
2016 (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
2017 (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
2018 (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
2019 (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
2020 (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
2021 (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
2022 (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
2023 (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
2024 (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
2025 (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
2026 (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
2027 (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
2028 (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
2029 (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
2030 (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
2031 (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
2032 (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
2033 (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
2034 (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
2035 (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
2036 (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
2037 (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
2038 (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
2039 (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
2040 (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
2041 (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
2042 (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
2043 (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
2044 (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
2045 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
2046 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
2047
2048 (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
2049 (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
2050 (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
2051 (let ((l '(1 2 3 4 5 6 7 8 9 0)))
2052 (while l (org-defkey org-agenda-mode-map
2053 (int-to-string (pop l)) 'digit-argument)))
2054
2055 (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
2056 (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
2057 (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
2058 (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
2059 (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
2060 (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
2061 (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
2062 (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
2063 (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
2064 (org-defkey org-agenda-mode-map "g" (lambda () (interactive) (org-agenda-redo t)))
2065 (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
2066 (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
2067 (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
2068 'org-clock-modify-effort-estimate)
2069 (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
2070 (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
2071 (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
2072 (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
2073 (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
2074 (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
2075 (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
2076 (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
2077 (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
2078 (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
2079 (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
2080 (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
2081 (substitute-key-definition 'next-line 'org-agenda-next-line
2082 org-agenda-mode-map global-map)
2083 (substitute-key-definition 'previous-line 'org-agenda-previous-line
2084 org-agenda-mode-map global-map)
2085 (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
2086 (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
2087 (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
2088 (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
2089 (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
2090 (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
2091 (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
2092 (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
2093 (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
2094 (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
2095 (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
2096 (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
2097 (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
2098 (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
2099 (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
2100 (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
2101 (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
2102 (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
2103 (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
2104 (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
2105 (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
2106 (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
2107 (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
2108 (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
2109 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
2110 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
2111 (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
2112 (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
2113 (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
2114 (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
2115
2116 (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
2117 (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
2118 (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
2119 (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
2120 (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
2121 (org-defkey org-agenda-mode-map "\\" 'org-agenda-filter-by-tag-refine)
2122 (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
2123 (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-category)
2124 (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
2125 (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
2126 (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
2127 (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
2128
2129 (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
2130 (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
2131 (when org-agenda-mouse-1-follows-link
2132 (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
2133 (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
2134 '("Agenda"
2135 ("Agenda Files")
2136 "--"
2137 ("Agenda Dates"
2138 ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
2139 ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
2140 ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
2141 ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
2142 "--"
2143 ("View"
2144 ["Day View" org-agenda-day-view
2145 :active (org-agenda-check-type nil 'agenda)
2146 :style radio :selected (eq org-agenda-current-span 'day)
2147 :keys "v d (or just d)"]
2148 ["Week View" org-agenda-week-view
2149 :active (org-agenda-check-type nil 'agenda)
2150 :style radio :selected (eq org-agenda-current-span 'week)
2151 :keys "v w (or just w)"]
2152 ["Month View" org-agenda-month-view
2153 :active (org-agenda-check-type nil 'agenda)
2154 :style radio :selected (eq org-agenda-current-span 'month)
2155 :keys "v m"]
2156 ["Year View" org-agenda-year-view
2157 :active (org-agenda-check-type nil 'agenda)
2158 :style radio :selected (eq org-agenda-current-span 'year)
2159 :keys "v y"]
2160 "--"
2161 ["Include Diary" org-agenda-toggle-diary
2162 :style toggle :selected org-agenda-include-diary
2163 :active (org-agenda-check-type nil 'agenda)]
2164 ["Include Deadlines" org-agenda-toggle-deadlines
2165 :style toggle :selected org-agenda-include-deadlines
2166 :active (org-agenda-check-type nil 'agenda)]
2167 ["Use Time Grid" org-agenda-toggle-time-grid
2168 :style toggle :selected org-agenda-use-time-grid
2169 :active (org-agenda-check-type nil 'agenda)]
2170 "--"
2171 ["Show clock report" org-agenda-clockreport-mode
2172 :style toggle :selected org-agenda-clockreport-mode
2173 :active (org-agenda-check-type nil 'agenda)]
2174 ["Show some entry text" org-agenda-entry-text-mode
2175 :style toggle :selected org-agenda-entry-text-mode
2176 :active t]
2177 "--"
2178 ["Show Logbook entries" org-agenda-log-mode
2179 :style toggle :selected org-agenda-show-log
2180 :active (org-agenda-check-type nil 'agenda 'timeline)
2181 :keys "v l (or just l)"]
2182 ["Include archived trees" org-agenda-archives-mode
2183 :style toggle :selected org-agenda-archives-mode :active t
2184 :keys "v a"]
2185 ["Include archive files" (org-agenda-archives-mode t)
2186 :style toggle :selected (eq org-agenda-archives-mode t) :active t
2187 :keys "v A"]
2188 "--"
2189 ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
2190 ["Write view to file" org-agenda-write t]
2191 ["Rebuild buffer" org-agenda-redo t]
2192 ["Save all Org-mode Buffers" org-save-all-org-buffers t]
2193 "--"
2194 ["Show original entry" org-agenda-show t]
2195 ["Go To (other window)" org-agenda-goto t]
2196 ["Go To (this window)" org-agenda-switch-to t]
2197 ["Capture with cursor date" org-agenda-capture t]
2198 ["Follow Mode" org-agenda-follow-mode
2199 :style toggle :selected org-agenda-follow-mode :active t]
2200 ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
2201 "--"
2202 ("TODO"
2203 ["Cycle TODO" org-agenda-todo t]
2204 ["Next TODO set" org-agenda-todo-nextset t]
2205 ["Previous TODO set" org-agenda-todo-previousset t]
2206 ["Add note" org-agenda-add-note t])
2207 ("Archive/Refile/Delete"
2208 ["Archive default" org-agenda-archive-default t]
2209 ["Archive default" org-agenda-archive-default-with-confirmation t]
2210 ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
2211 ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
2212 ["Archive subtree" org-agenda-archive t]
2213 "--"
2214 ["Refile" org-agenda-refile t]
2215 "--"
2216 ["Delete subtree" org-agenda-kill t])
2217 ("Bulk action"
2218 ["Mark entry" org-agenda-bulk-mark t]
2219 ["Mark all" org-agenda-bulk-mark-all t]
2220 ["Mark matching regexp" org-agenda-bulk-mark-regexp t]
2221 ["Unmark entry" org-agenda-bulk-unmark t]
2222 ["Unmark all entries" org-agenda-bulk-unmark-all :active t :keys "U"])
2223 ["Act on all marked" org-agenda-bulk-action t]
2224 "--"
2225 ("Tags and Properties"
2226 ["Show all Tags" org-agenda-show-tags t]
2227 ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
2228 ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
2229 "--"
2230 ["Column View" org-columns t])
2231 ("Deadline/Schedule"
2232 ["Schedule" org-agenda-schedule t]
2233 ["Set Deadline" org-agenda-deadline t]
2234 "--"
2235 ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
2236 ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
2237 ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
2238 ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
2239 ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
2240 ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
2241 ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
2242 ("Clock and Effort"
2243 ["Clock in" org-agenda-clock-in t]
2244 ["Clock out" org-agenda-clock-out t]
2245 ["Clock cancel" org-agenda-clock-cancel t]
2246 ["Goto running clock" org-clock-goto t]
2247 "--"
2248 ["Set Effort" org-agenda-set-effort t]
2249 ["Change clocked effort" org-clock-modify-effort-estimate
2250 (org-clock-is-active)])
2251 ("Priority"
2252 ["Set Priority" org-agenda-priority t]
2253 ["Increase Priority" org-agenda-priority-up t]
2254 ["Decrease Priority" org-agenda-priority-down t]
2255 ["Show Priority" org-show-priority t])
2256 ("Calendar/Diary"
2257 ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
2258 ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
2259 ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
2260 ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
2261 ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
2262 ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
2263 "--"
2264 ["Create iCalendar File" org-export-icalendar-combine-agenda-files t])
2265 "--"
2266 ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
2267 "--"
2268 ("MobileOrg"
2269 ["Push Files and Views" org-mobile-push t]
2270 ["Get Captured and Flagged" org-mobile-pull t]
2271 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
2272 ["Show note / unflag" org-agenda-show-the-flagging-note t]
2273 "--"
2274 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
2275 "--"
2276 ["Quit" org-agenda-quit t]
2277 ["Exit and Release Buffers" org-agenda-exit t]
2278 ))
2279
2280 ;;; Agenda undo
2281
2282 (defvar org-agenda-allow-remote-undo t
2283 "Non-nil means allow remote undo from the agenda buffer.")
2284 (defvar org-agenda-undo-has-started-in nil
2285 "Buffers that have already seen `undo-start' in the current undo sequence.")
2286
2287 (defun org-agenda-undo ()
2288 "Undo a remote editing step in the agenda.
2289 This undoes changes both in the agenda buffer and in the remote buffer
2290 that have been changed along."
2291 (interactive)
2292 (or org-agenda-allow-remote-undo
2293 (error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
2294 (if (not (eq this-command last-command))
2295 (setq org-agenda-undo-has-started-in nil
2296 org-agenda-pending-undo-list org-agenda-undo-list))
2297 (if (not org-agenda-pending-undo-list)
2298 (error "No further undo information"))
2299 (let* ((entry (pop org-agenda-pending-undo-list))
2300 buf line cmd rembuf)
2301 (setq cmd (pop entry) line (pop entry))
2302 (setq rembuf (nth 2 entry))
2303 (org-with-remote-undo rembuf
2304 (while (bufferp (setq buf (pop entry)))
2305 (if (pop entry)
2306 (with-current-buffer buf
2307 (let ((last-undo-buffer buf)
2308 (inhibit-read-only t))
2309 (unless (memq buf org-agenda-undo-has-started-in)
2310 (push buf org-agenda-undo-has-started-in)
2311 (make-local-variable 'pending-undo-list)
2312 (undo-start))
2313 (while (and pending-undo-list
2314 (listp pending-undo-list)
2315 (not (car pending-undo-list)))
2316 (pop pending-undo-list))
2317 (undo-more 1))))))
2318 (org-goto-line line)
2319 (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
2320
2321 (defun org-verify-change-for-undo (l1 l2)
2322 "Verify that a real change occurred between the undo lists L1 and L2."
2323 (while (and l1 (listp l1) (null (car l1))) (pop l1))
2324 (while (and l2 (listp l2) (null (car l2))) (pop l2))
2325 (not (eq l1 l2)))
2326
2327 ;;; Agenda dispatch
2328
2329 (defvar org-agenda-restrict-begin (make-marker))
2330 (defvar org-agenda-restrict-end (make-marker))
2331 (defvar org-agenda-last-dispatch-buffer nil)
2332 (defvar org-agenda-overriding-restriction nil)
2333
2334 (defcustom org-agenda-custom-commands-contexts nil
2335 "Alist of custom agenda keys and contextual rules.
2336
2337 For example, if you have a custom agenda command \"p\" and you
2338 want this command to be accessible only from plain text files,
2339 use this:
2340
2341 '((\"p\" (in-file . \"\\.txt\")))
2342
2343 Here are the available contexts definitions:
2344
2345 in-file: command displayed only in matching files
2346 in-mode: command displayed only in matching modes
2347 not-in-file: command not displayed in matching files
2348 not-in-mode: command not displayed in matching modes
2349 [function]: a custom function taking no argument
2350
2351 If you define several checks, the agenda command will be
2352 accessible if there is at least one valid check.
2353
2354 You can also bind a key to another agenda custom command
2355 depending on contextual rules.
2356
2357 '((\"p\" \"q\" (in-file . \"\\.txt\")))
2358
2359 Here it means: in .txt files, use \"p\" as the key for the
2360 agenda command otherwise associated with \"q\". (The command
2361 originally associated with \"q\" is not displayed to avoid
2362 duplicates.)"
2363 :version "24.3"
2364 :group 'org-agenda-custom-commands
2365 :type '(repeat (list :tag "Rule"
2366 (string :tag " Agenda key")
2367 (string :tag "Replace by command")
2368 (repeat :tag "Available when"
2369 (choice
2370 (cons :tag "Condition"
2371 (choice
2372 (const :tag "In file" in-file)
2373 (const :tag "Not in file" not-in-file)
2374 (const :tag "In mode" in-mode)
2375 (const :tag "Not in mode" not-in-mode))
2376 (regexp))
2377 (function :tag "Custom function"))))))
2378
2379 (defvar org-keys nil)
2380 (defvar org-match nil)
2381 ;;;###autoload
2382 (defun org-agenda (&optional arg org-keys restriction)
2383 "Dispatch agenda commands to collect entries to the agenda buffer.
2384 Prompts for a command to execute. Any prefix arg will be passed
2385 on to the selected command. The default selections are:
2386
2387 a Call `org-agenda-list' to display the agenda for current day or week.
2388 t Call `org-todo-list' to display the global todo list.
2389 T Call `org-todo-list' to display the global todo list, select only
2390 entries with a specific TODO keyword (the user gets a prompt).
2391 m Call `org-tags-view' to display headlines with tags matching
2392 a condition (the user is prompted for the condition).
2393 M Like `m', but select only TODO entries, no ordinary headlines.
2394 L Create a timeline for the current buffer.
2395 e Export views to associated files.
2396 s Search entries for keywords.
2397 S Search entries for keywords, only with TODO keywords.
2398 / Multi occur across all agenda files and also files listed
2399 in `org-agenda-text-search-extra-files'.
2400 < Restrict agenda commands to buffer, subtree, or region.
2401 Press several times to get the desired effect.
2402 > Remove a previous restriction.
2403 # List \"stuck\" projects.
2404 ! Configure what \"stuck\" means.
2405 C Configure custom agenda commands.
2406
2407 More commands can be added by configuring the variable
2408 `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
2409 searches can be pre-defined in this way.
2410
2411 If the current buffer is in Org-mode and visiting a file, you can also
2412 first press `<' once to indicate that the agenda should be temporarily
2413 \(until the next use of \\[org-agenda]) restricted to the current file.
2414 Pressing `<' twice means to restrict to the current subtree or region
2415 \(if active)."
2416 (interactive "P")
2417 (catch 'exit
2418 (let* ((prefix-descriptions nil)
2419 (org-agenda-buffer-name org-agenda-buffer-name)
2420 (org-agenda-window-setup (if (equal (buffer-name)
2421 org-agenda-buffer-name)
2422 'current-window
2423 org-agenda-window-setup))
2424 (org-agenda-custom-commands-orig org-agenda-custom-commands)
2425 (org-agenda-custom-commands
2426 ;; normalize different versions
2427 (delq nil
2428 (mapcar
2429 (lambda (x)
2430 (cond ((stringp (cdr x))
2431 (push x prefix-descriptions)
2432 nil)
2433 ((stringp (nth 1 x)) x)
2434 ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
2435 (t (cons (car x) (cons "" (cdr x))))))
2436 org-agenda-custom-commands)))
2437 (org-agenda-custom-commands
2438 (org-contextualize-keys
2439 org-agenda-custom-commands org-agenda-custom-commands-contexts))
2440 (buf (current-buffer))
2441 (bfn (buffer-file-name (buffer-base-buffer)))
2442 entry key type org-match lprops ans)
2443 ;; Turn off restriction unless there is an overriding one,
2444 (unless org-agenda-overriding-restriction
2445 (unless (org-bound-and-true-p org-agenda-keep-restricted-file-list)
2446 ;; There is a request to keep the file list in place
2447 (put 'org-agenda-files 'org-restrict nil))
2448 (setq org-agenda-restrict nil)
2449 (move-marker org-agenda-restrict-begin nil)
2450 (move-marker org-agenda-restrict-end nil))
2451 ;; Delete old local properties
2452 (put 'org-agenda-redo-command 'org-lprops nil)
2453 ;; Delete previously set last-arguments
2454 (put 'org-agenda-redo-command 'last-args nil)
2455 ;; Remember where this call originated
2456 (setq org-agenda-last-dispatch-buffer (current-buffer))
2457 (unless org-keys
2458 (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
2459 org-keys (car ans)
2460 restriction (cdr ans)))
2461 ;; If we have sticky agenda buffers, set a name for the buffer,
2462 ;; depending on the invoking keys. The user may still set this
2463 ;; as a command option, which will overwrite what we do here.
2464 (if org-agenda-sticky
2465 (setq org-agenda-buffer-name
2466 (format "*Org Agenda(%s)*" org-keys)))
2467 ;; Establish the restriction, if any
2468 (when (and (not org-agenda-overriding-restriction) restriction)
2469 (put 'org-agenda-files 'org-restrict (list bfn))
2470 (cond
2471 ((eq restriction 'region)
2472 (setq org-agenda-restrict t)
2473 (move-marker org-agenda-restrict-begin (region-beginning))
2474 (move-marker org-agenda-restrict-end (region-end)))
2475 ((eq restriction 'subtree)
2476 (save-excursion
2477 (setq org-agenda-restrict t)
2478 (org-back-to-heading t)
2479 (move-marker org-agenda-restrict-begin (point))
2480 (move-marker org-agenda-restrict-end
2481 (progn (org-end-of-subtree t)))))))
2482
2483 ;; For example the todo list should not need it (but does...)
2484 (cond
2485 ((setq entry (assoc org-keys org-agenda-custom-commands))
2486 (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
2487 (progn
2488 (setq type (nth 2 entry) org-match (eval (nth 3 entry))
2489 lprops (nth 4 entry))
2490 (if org-agenda-sticky
2491 (setq org-agenda-buffer-name
2492 (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
2493 (format "*Org Agenda(%s)*" org-keys))))
2494 (put 'org-agenda-redo-command 'org-lprops lprops)
2495 (cond
2496 ((eq type 'agenda)
2497 (org-let lprops '(org-agenda-list current-prefix-arg)))
2498 ((eq type 'alltodo)
2499 (org-let lprops '(org-todo-list current-prefix-arg)))
2500 ((eq type 'search)
2501 (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
2502 ((eq type 'stuck)
2503 (org-let lprops '(org-agenda-list-stuck-projects
2504 current-prefix-arg)))
2505 ((eq type 'tags)
2506 (org-let lprops '(org-tags-view current-prefix-arg org-match)))
2507 ((eq type 'tags-todo)
2508 (org-let lprops '(org-tags-view '(4) org-match)))
2509 ((eq type 'todo)
2510 (org-let lprops '(org-todo-list org-match)))
2511 ((eq type 'tags-tree)
2512 (org-check-for-org-mode)
2513 (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
2514 ((eq type 'todo-tree)
2515 (org-check-for-org-mode)
2516 (org-let lprops
2517 '(org-occur (concat "^" org-outline-regexp "[ \t]*"
2518 (regexp-quote org-match) "\\>"))))
2519 ((eq type 'occur-tree)
2520 (org-check-for-org-mode)
2521 (org-let lprops '(org-occur org-match)))
2522 ((functionp type)
2523 (org-let lprops '(funcall type org-match)))
2524 ((fboundp type)
2525 (org-let lprops '(funcall type org-match)))
2526 (t (error "Invalid custom agenda command type %s" type))))
2527 (org-agenda-run-series (nth 1 entry) (cddr entry))))
2528 ((equal org-keys "C")
2529 (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
2530 (customize-variable 'org-agenda-custom-commands))
2531 ((equal org-keys "a") (call-interactively 'org-agenda-list))
2532 ((equal org-keys "s") (call-interactively 'org-search-view))
2533 ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
2534 ((equal org-keys "t") (call-interactively 'org-todo-list))
2535 ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
2536 ((equal org-keys "m") (call-interactively 'org-tags-view))
2537 ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
2538 ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
2539 ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
2540 (org-add-hook
2541 'post-command-hook
2542 (lambda ()
2543 (unless (current-message)
2544 (let* ((m (org-agenda-get-any-marker))
2545 (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
2546 (when note
2547 (message (concat
2548 "FLAGGING-NOTE ([?] for more info): "
2549 (org-add-props
2550 (replace-regexp-in-string
2551 "\\\\n" "//"
2552 (copy-sequence note))
2553 nil 'face 'org-warning)))))))
2554 t t))
2555 ((equal org-keys "L")
2556 (unless (derived-mode-p 'org-mode)
2557 (error "This is not an Org-mode file"))
2558 (unless restriction
2559 (put 'org-agenda-files 'org-restrict (list bfn))
2560 (org-call-with-arg 'org-timeline arg)))
2561 ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
2562 ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
2563 ((equal org-keys "!") (customize-variable 'org-stuck-projects))
2564 (t (error "Invalid agenda key"))))))
2565
2566 (defun org-agenda-append-agenda ()
2567 "Append another agenda view to the current one.
2568 This function allows interactive building of block agendas.
2569 Agenda views are separated by `org-agenda-block-separator'."
2570 (interactive)
2571 (unless (derived-mode-p 'org-agenda-mode)
2572 (error "Can only append from within agenda buffer"))
2573 (let ((org-agenda-multi t))
2574 (org-agenda)
2575 (widen)
2576 (org-agenda-finalize)
2577 (org-agenda-fit-window-to-buffer)))
2578
2579 (defun org-agenda-normalize-custom-commands (cmds)
2580 (delq nil
2581 (mapcar
2582 (lambda (x)
2583 (cond ((stringp (cdr x)) nil)
2584 ((stringp (nth 1 x)) x)
2585 ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
2586 (t (cons (car x) (cons "" (cdr x))))))
2587 cmds)))
2588
2589 (defun org-agenda-get-restriction-and-command (prefix-descriptions)
2590 "The user interface for selecting an agenda command."
2591 (catch 'exit
2592 (let* ((bfn (buffer-file-name (buffer-base-buffer)))
2593 (restrict-ok (and bfn (derived-mode-p 'org-mode)))
2594 (region-p (org-region-active-p))
2595 (custom org-agenda-custom-commands)
2596 (selstring "")
2597 restriction second-time
2598 c entry key type match prefixes rmheader header-end custom1 desc
2599 line lines left right n n1)
2600 (save-window-excursion
2601 (delete-other-windows)
2602 (org-switch-to-buffer-other-window " *Agenda Commands*")
2603 (erase-buffer)
2604 (insert (eval-when-compile
2605 (let ((header
2606 "Press key for an agenda command: < Buffer, subtree/region restriction
2607 -------------------------------- > Remove restriction
2608 a Agenda for current week or day e Export agenda views
2609 t List of all TODO entries T Entries with special TODO kwd
2610 m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
2611 s Search for keywords S Like s, but only TODO entries
2612 L Timeline for current buffer # List stuck projects (!=configure)
2613 / Multi-occur C Configure custom agenda commands
2614 ? Find :FLAGGED: entries * Toggle sticky agenda views
2615 ")
2616 (start 0))
2617 (while (string-match
2618 "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
2619 header start)
2620 (setq start (match-end 0))
2621 (add-text-properties (match-beginning 2) (match-end 2)
2622 '(face bold) header))
2623 header)))
2624 (setq header-end (move-marker (make-marker) (point)))
2625 (while t
2626 (setq custom1 custom)
2627 (when (eq rmheader t)
2628 (org-goto-line 1)
2629 (re-search-forward ":" nil t)
2630 (delete-region (match-end 0) (point-at-eol))
2631 (forward-char 1)
2632 (looking-at "-+")
2633 (delete-region (match-end 0) (point-at-eol))
2634 (move-marker header-end (match-end 0)))
2635 (goto-char header-end)
2636 (delete-region (point) (point-max))
2637
2638 ;; Produce all the lines that describe custom commands and prefixes
2639 (setq lines nil)
2640 (while (setq entry (pop custom1))
2641 (setq key (car entry) desc (nth 1 entry)
2642 type (nth 2 entry)
2643 match (nth 3 entry))
2644 (if (> (length key) 1)
2645 (add-to-list 'prefixes (string-to-char key))
2646 (setq line
2647 (format
2648 "%-4s%-14s"
2649 (org-add-props (copy-sequence key)
2650 '(face bold))
2651 (cond
2652 ((string-match "\\S-" desc) desc)
2653 ((eq type 'agenda) "Agenda for current week or day")
2654 ((eq type 'alltodo) "List of all TODO entries")
2655 ((eq type 'search) "Word search")
2656 ((eq type 'stuck) "List of stuck projects")
2657 ((eq type 'todo) "TODO keyword")
2658 ((eq type 'tags) "Tags query")
2659 ((eq type 'tags-todo) "Tags (TODO)")
2660 ((eq type 'tags-tree) "Tags tree")
2661 ((eq type 'todo-tree) "TODO kwd tree")
2662 ((eq type 'occur-tree) "Occur tree")
2663 ((functionp type) (if (symbolp type)
2664 (symbol-name type)
2665 "Lambda expression"))
2666 (t "???"))))
2667 (if org-agenda-menu-show-matcher
2668 (setq line
2669 (concat line ": "
2670 (cond
2671 ((stringp match)
2672 (setq match (copy-sequence match))
2673 (org-add-props match nil 'face 'org-warning))
2674 ((listp type)
2675 (format "set of %d commands" (length type))))))
2676 (if (org-string-nw-p match)
2677 (add-text-properties
2678 0 (length line) (list 'help-echo
2679 (concat "Matcher: " match)) line)))
2680 (push line lines)))
2681 (setq lines (nreverse lines))
2682 (when prefixes
2683 (mapc (lambda (x)
2684 (push
2685 (format "%s %s"
2686 (org-add-props (char-to-string x)
2687 nil 'face 'bold)
2688 (or (cdr (assoc (concat selstring
2689 (char-to-string x))
2690 prefix-descriptions))
2691 "Prefix key"))
2692 lines))
2693 prefixes))
2694
2695 ;; Check if we should display in two columns
2696 (if org-agenda-menu-two-columns
2697 (progn
2698 (setq n (length lines)
2699 n1 (+ (/ n 2) (mod n 2))
2700 right (nthcdr n1 lines)
2701 left (copy-sequence lines))
2702 (setcdr (nthcdr (1- n1) left) nil))
2703 (setq left lines right nil))
2704 (while left
2705 (insert "\n" (pop left))
2706 (when right
2707 (if (< (current-column) 40)
2708 (move-to-column 40 t)
2709 (insert " "))
2710 (insert (pop right))))
2711
2712 ;; Make the window the right size
2713 (goto-char (point-min))
2714 (if second-time
2715 (if (not (pos-visible-in-window-p (point-max)))
2716 (org-fit-window-to-buffer))
2717 (setq second-time t)
2718 (org-fit-window-to-buffer))
2719
2720 ;; Ask for selection
2721 (message "Press key for agenda command%s:"
2722 (if (or restrict-ok org-agenda-overriding-restriction)
2723 (if org-agenda-overriding-restriction
2724 " (restriction lock active)"
2725 (if restriction
2726 (format " (restricted to %s)" restriction)
2727 " (unrestricted)"))
2728 ""))
2729 (setq c (read-char-exclusive))
2730 (message "")
2731 (cond
2732 ((assoc (char-to-string c) custom)
2733 (setq selstring (concat selstring (char-to-string c)))
2734 (throw 'exit (cons selstring restriction)))
2735 ((memq c prefixes)
2736 (setq selstring (concat selstring (char-to-string c))
2737 prefixes nil
2738 rmheader (or rmheader t)
2739 custom (delq nil (mapcar
2740 (lambda (x)
2741 (if (or (= (length (car x)) 1)
2742 (/= (string-to-char (car x)) c))
2743 nil
2744 (cons (substring (car x) 1) (cdr x))))
2745 custom))))
2746 ((eq c ?*)
2747 (call-interactively 'org-toggle-sticky-agenda)
2748 (sit-for 2))
2749 ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
2750 (message "Restriction is only possible in Org-mode buffers")
2751 (ding) (sit-for 1))
2752 ((eq c ?1)
2753 (org-agenda-remove-restriction-lock 'noupdate)
2754 (setq restriction 'buffer))
2755 ((eq c ?0)
2756 (org-agenda-remove-restriction-lock 'noupdate)
2757 (setq restriction (if region-p 'region 'subtree)))
2758 ((eq c ?<)
2759 (org-agenda-remove-restriction-lock 'noupdate)
2760 (setq restriction
2761 (cond
2762 ((eq restriction 'buffer)
2763 (if region-p 'region 'subtree))
2764 ((memq restriction '(subtree region))
2765 nil)
2766 (t 'buffer))))
2767 ((eq c ?>)
2768 (org-agenda-remove-restriction-lock 'noupdate)
2769 (setq restriction nil))
2770 ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
2771 (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
2772 ((and (> (length selstring) 0) (eq c ?\d))
2773 (delete-window)
2774 (org-agenda-get-restriction-and-command prefix-descriptions))
2775
2776 ((equal c ?q) (error "Abort"))
2777 (t (error "Invalid key %c" c))))))))
2778
2779 (defun org-agenda-fit-window-to-buffer ()
2780 "Fit the window to the buffer size."
2781 (and (memq org-agenda-window-setup '(reorganize-frame))
2782 (fboundp 'fit-window-to-buffer)
2783 (org-fit-window-to-buffer
2784 nil
2785 (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
2786 (floor (* (frame-height) (car org-agenda-window-frame-fractions))))))
2787
2788 (defvar org-cmd nil)
2789 (defvar org-agenda-overriding-cmd nil)
2790 (defvar org-agenda-overriding-arguments nil)
2791 (defvar org-agenda-overriding-cmd-arguments nil)
2792 (defun org-agenda-run-series (name series)
2793 (org-let (nth 1 series) '(org-agenda-prepare name))
2794 ;; We need to reset agenda markers here, because when constructing a
2795 ;; block agenda, the individual blocks do not do that.
2796 (org-agenda-reset-markers)
2797 (let* ((org-agenda-multi t)
2798 (redo (list 'org-agenda-run-series name (list 'quote series)))
2799 (cmds (car series))
2800 (gprops (nth 1 series))
2801 match ;; The byte compiler incorrectly complains about this. Keep it!
2802 org-cmd type lprops)
2803 (while (setq org-cmd (pop cmds))
2804 (setq type (car org-cmd)
2805 match (eval (nth 1 org-cmd))
2806 lprops (nth 2 org-cmd))
2807 (let ((org-agenda-overriding-arguments
2808 (if (eq org-agenda-overriding-cmd org-cmd)
2809 (or org-agenda-overriding-arguments
2810 org-agenda-overriding-cmd-arguments))))
2811 (cond
2812 ((eq type 'agenda)
2813 (org-let2 gprops lprops
2814 '(call-interactively 'org-agenda-list)))
2815 ((eq type 'alltodo)
2816 (org-let2 gprops lprops
2817 '(call-interactively 'org-todo-list)))
2818 ((eq type 'search)
2819 (org-let2 gprops lprops
2820 '(org-search-view current-prefix-arg match nil)))
2821 ((eq type 'stuck)
2822 (org-let2 gprops lprops
2823 '(call-interactively 'org-agenda-list-stuck-projects)))
2824 ((eq type 'tags)
2825 (org-let2 gprops lprops
2826 '(org-tags-view current-prefix-arg match)))
2827 ((eq type 'tags-todo)
2828 (org-let2 gprops lprops
2829 '(org-tags-view '(4) match)))
2830 ((eq type 'todo)
2831 (org-let2 gprops lprops
2832 '(org-todo-list match)))
2833 ((fboundp type)
2834 (org-let2 gprops lprops
2835 '(funcall type match)))
2836 (t (error "Invalid type in command series")))))
2837 (widen)
2838 (let ((inhibit-read-only t))
2839 (add-text-properties (point-min) (point-max)
2840 `(org-series t org-series-redo-cmd ,redo)))
2841 (setq org-agenda-redo-command redo)
2842 (goto-char (point-min)))
2843 (org-agenda-fit-window-to-buffer)
2844 (org-let (nth 1 series) '(org-agenda-finalize)))
2845
2846 ;;;###autoload
2847 (defmacro org-batch-agenda (cmd-key &rest parameters)
2848 "Run an agenda command in batch mode and send the result to STDOUT.
2849 If CMD-KEY is a string of length 1, it is used as a key in
2850 `org-agenda-custom-commands' and triggers this command. If it is a
2851 longer string it is used as a tags/todo match string.
2852 Parameters are alternating variable names and values that will be bound
2853 before running the agenda command."
2854 (org-eval-in-environment (org-make-parameter-alist parameters)
2855 (if (> (length cmd-key) 2)
2856 (org-tags-view nil cmd-key)
2857 (org-agenda nil cmd-key)))
2858 (set-buffer org-agenda-buffer-name)
2859 (princ (buffer-string)))
2860 (def-edebug-spec org-batch-agenda (form &rest sexp))
2861
2862 (defvar org-agenda-info nil)
2863
2864 ;;;###autoload
2865 (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
2866 "Run an agenda command in batch mode and send the result to STDOUT.
2867 If CMD-KEY is a string of length 1, it is used as a key in
2868 `org-agenda-custom-commands' and triggers this command. If it is a
2869 longer string it is used as a tags/todo match string.
2870 Parameters are alternating variable names and values that will be bound
2871 before running the agenda command.
2872
2873 The output gives a line for each selected agenda item. Each
2874 item is a list of comma-separated values, like this:
2875
2876 category,head,type,todo,tags,date,time,extra,priority-l,priority-n
2877
2878 category The category of the item
2879 head The headline, without TODO kwd, TAGS and PRIORITY
2880 type The type of the agenda entry, can be
2881 todo selected in TODO match
2882 tagsmatch selected in tags match
2883 diary imported from diary
2884 deadline a deadline on given date
2885 scheduled scheduled on given date
2886 timestamp entry has timestamp on given date
2887 closed entry was closed on given date
2888 upcoming-deadline warning about deadline
2889 past-scheduled forwarded scheduled item
2890 block entry has date block including g. date
2891 todo The todo keyword, if any
2892 tags All tags including inherited ones, separated by colons
2893 date The relevant date, like 2007-2-14
2894 time The time, like 15:00-16:50
2895 extra Sting with extra planning info
2896 priority-l The priority letter if any was given
2897 priority-n The computed numerical priority
2898 agenda-day The day in the agenda where this is listed"
2899 (org-eval-in-environment (append '((org-agenda-remove-tags t))
2900 (org-make-parameter-alist parameters))
2901 (if (> (length cmd-key) 2)
2902 (org-tags-view nil cmd-key)
2903 (org-agenda nil cmd-key)))
2904 (set-buffer org-agenda-buffer-name)
2905 (let* ((lines (org-split-string (buffer-string) "\n"))
2906 line)
2907 (while (setq line (pop lines))
2908 (catch 'next
2909 (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
2910 (setq org-agenda-info
2911 (org-fix-agenda-info (text-properties-at 0 line)))
2912 (princ
2913 (mapconcat 'org-agenda-export-csv-mapper
2914 '(org-category txt type todo tags date time extra
2915 priority-letter priority agenda-day)
2916 ","))
2917 (princ "\n")))))
2918 (def-edebug-spec org-batch-agenda-csv (form &rest sexp))
2919
2920 (defun org-fix-agenda-info (props)
2921 "Make sure all properties on an agenda item have a canonical form.
2922 This ensures the export commands can easily use it."
2923 (let (tmp re)
2924 (when (setq tmp (plist-get props 'tags))
2925 (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
2926 (when (setq tmp (plist-get props 'date))
2927 (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
2928 (let ((calendar-date-display-form '(year "-" month "-" day)))
2929 '((format "%4d, %9s %2s, %4s" dayname monthname day year))
2930
2931 (setq tmp (calendar-date-string tmp)))
2932 (setq props (plist-put props 'date tmp)))
2933 (when (setq tmp (plist-get props 'day))
2934 (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
2935 (let ((calendar-date-display-form '(year "-" month "-" day)))
2936 (setq tmp (calendar-date-string tmp)))
2937 (setq props (plist-put props 'day tmp))
2938 (setq props (plist-put props 'agenda-day tmp)))
2939 (when (setq tmp (plist-get props 'txt))
2940 (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
2941 (plist-put props 'priority-letter (match-string 1 tmp))
2942 (setq tmp (replace-match "" t t tmp)))
2943 (when (and (setq re (plist-get props 'org-todo-regexp))
2944 (setq re (concat "\\`\\.*" re " ?"))
2945 (string-match re tmp))
2946 (plist-put props 'todo (match-string 1 tmp))
2947 (setq tmp (replace-match "" t t tmp)))
2948 (plist-put props 'txt tmp)))
2949 props)
2950
2951 (defun org-agenda-export-csv-mapper (prop)
2952 (let ((res (plist-get org-agenda-info prop)))
2953 (setq res
2954 (cond
2955 ((not res) "")
2956 ((stringp res) res)
2957 (t (prin1-to-string res))))
2958 (while (string-match "," res)
2959 (setq res (replace-match ";" t t res)))
2960 (org-trim res)))
2961
2962 ;;;###autoload
2963 (defun org-store-agenda-views (&rest parameters)
2964 (interactive)
2965 (eval (list 'org-batch-store-agenda-views)))
2966
2967 ;;;###autoload
2968 (defmacro org-batch-store-agenda-views (&rest parameters)
2969 "Run all custom agenda commands that have a file argument."
2970 (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
2971 (pop-up-frames nil)
2972 (dir default-directory)
2973 (pars (org-make-parameter-alist parameters))
2974 cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
2975 (save-window-excursion
2976 (while cmds
2977 (setq cmd (pop cmds)
2978 thiscmdkey (car cmd)
2979 thiscmdcmd (cdr cmd)
2980 match (nth 2 thiscmdcmd)
2981 bufname (if org-agenda-sticky
2982 (or (and (stringp match)
2983 (format "*Org Agenda(%s:%s)*" thiscmdkey match))
2984 (format "*Org Agenda(%s)*" thiscmdkey))
2985 org-agenda-buffer-name)
2986 cmd-or-set (nth 2 cmd)
2987 opts (nth (if (listp cmd-or-set) 3 4) cmd)
2988 files (nth (if (listp cmd-or-set) 4 5) cmd))
2989 (if (stringp files) (setq files (list files)))
2990 (when files
2991 (org-eval-in-environment (append org-agenda-exporter-settings
2992 opts pars)
2993 (org-agenda nil thiscmdkey))
2994 (set-buffer bufname)
2995 (while files
2996 (org-eval-in-environment (append org-agenda-exporter-settings
2997 opts pars)
2998 (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
2999 (and (get-buffer bufname)
3000 (kill-buffer bufname)))))))
3001 (def-edebug-spec org-batch-store-agenda-views (&rest sexp))
3002
3003 (defvar org-agenda-current-span nil
3004 "The current span used in the agenda view.") ; local variable in the agenda buffer
3005 (defun org-agenda-mark-header-line (pos)
3006 "Mark the line at POS as an agenda structure header."
3007 (save-excursion
3008 (goto-char pos)
3009 (put-text-property (point-at-bol) (point-at-eol)
3010 'org-agenda-structural-header t)
3011 (when org-agenda-title-append
3012 (put-text-property (point-at-bol) (point-at-eol)
3013 'org-agenda-title-append org-agenda-title-append))))
3014
3015 (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
3016 (defvar org-agenda-write-buffer-name "Agenda View")
3017 (defun org-agenda-write (file &optional open nosettings agenda-bufname)
3018 "Write the current buffer (an agenda view) as a file.
3019 Depending on the extension of the file name, plain text (.txt),
3020 HTML (.html or .htm) or Postscript (.ps) is produced.
3021 If the extension is .ics, run icalendar export over all files used
3022 to construct the agenda and limit the export to entries listed in the
3023 agenda now.
3024 With prefix argument OPEN, open the new file immediately.
3025 If NOSETTINGS is given, do not scope the settings of
3026 `org-agenda-exporter-settings' into the export commands. This is used when
3027 the settings have already been scoped and we do not wish to overrule other,
3028 higher priority settings.
3029 If AGENDA-BUFFER-NAME, use this as the buffer name for the agenda to write."
3030 (interactive "FWrite agenda to file: \nP")
3031 (if (not (file-writable-p file))
3032 (error "Cannot write agenda to file %s" file))
3033 (org-let (if nosettings nil org-agenda-exporter-settings)
3034 '(save-excursion
3035 (save-window-excursion
3036 (org-agenda-mark-filtered-text)
3037 (let ((bs (copy-sequence (buffer-string))) beg)
3038 (org-agenda-unmark-filtered-text)
3039 (with-temp-buffer
3040 (rename-buffer org-agenda-write-buffer-name t)
3041 (set-buffer-modified-p nil)
3042 (insert bs)
3043 (org-agenda-remove-marked-text 'org-filtered)
3044 (while (setq beg (text-property-any (point-min) (point-max)
3045 'org-filtered t))
3046 (delete-region
3047 beg (or (next-single-property-change beg 'org-filtered)
3048 (point-max))))
3049 (run-hooks 'org-agenda-before-write-hook)
3050 (cond
3051 ((org-bound-and-true-p org-mobile-creating-agendas)
3052 (org-mobile-write-agenda-for-mobile file))
3053 ((string-match "\\.html?\\'" file)
3054 (require 'htmlize)
3055 (set-buffer (htmlize-buffer (current-buffer)))
3056 (when org-agenda-export-html-style
3057 ;; replace <style> section with org-agenda-export-html-style
3058 (goto-char (point-min))
3059 (kill-region (- (search-forward "<style") 6)
3060 (search-forward "</style>"))
3061 (insert org-agenda-export-html-style))
3062 (write-file file)
3063 (kill-buffer (current-buffer))
3064 (message "HTML written to %s" file))
3065 ((string-match "\\.ps\\'" file)
3066 (require 'ps-print)
3067 (ps-print-buffer-with-faces file)
3068 (message "Postscript written to %s" file))
3069 ((string-match "\\.pdf\\'" file)
3070 (require 'ps-print)
3071 (ps-print-buffer-with-faces
3072 (concat (file-name-sans-extension file) ".ps"))
3073 (call-process "ps2pdf" nil nil nil
3074 (expand-file-name
3075 (concat (file-name-sans-extension file) ".ps"))
3076 (expand-file-name file))
3077 (delete-file (concat (file-name-sans-extension file) ".ps"))
3078 (message "PDF written to %s" file))
3079 ((string-match "\\.ics\\'" file)
3080 (require 'org-icalendar)
3081 (let ((org-agenda-marker-table
3082 (org-create-marker-find-array
3083 (org-agenda-collect-markers)))
3084 (org-icalendar-verify-function 'org-check-agenda-marker-table)
3085 (org-combined-agenda-icalendar-file file))
3086 (apply 'org-export-icalendar 'combine
3087 (org-agenda-files nil 'ifmode))))
3088 (t
3089 (let ((bs (buffer-string)))
3090 (find-file file)
3091 (erase-buffer)
3092 (insert bs)
3093 (save-buffer 0)
3094 (kill-buffer (current-buffer))
3095 (message "Plain text written to %s" file))))))))
3096 (set-buffer (or agenda-bufname
3097 (and (called-interactively-p 'any) (buffer-name))
3098 org-agenda-buffer-name)))
3099 (when open (org-open-file file)))
3100
3101 (defvar org-agenda-tag-filter-overlays nil)
3102 (defvar org-agenda-cat-filter-overlays nil)
3103
3104 (defun org-agenda-mark-filtered-text ()
3105 "Mark all text hidden by filtering with a text property."
3106 (let ((inhibit-read-only t))
3107 (mapc
3108 (lambda (o)
3109 (when (equal (overlay-buffer o) (current-buffer))
3110 (put-text-property
3111 (overlay-start o) (overlay-end o)
3112 'org-filtered t)))
3113 (append org-agenda-tag-filter-overlays
3114 org-agenda-cat-filter-overlays))))
3115
3116 (defun org-agenda-unmark-filtered-text ()
3117 "Remove the filtering text property."
3118 (let ((inhibit-read-only t))
3119 (remove-text-properties (point-min) (point-max) '(org-filtered t))))
3120
3121 (defun org-agenda-remove-marked-text (property &optional value)
3122 "Delete all text marked with VALUE of PROPERTY.
3123 VALUE defaults to t."
3124 (let (beg)
3125 (setq value (or value t))
3126 (while (setq beg (text-property-any (point-min) (point-max)
3127 property value))
3128 (delete-region
3129 beg (or (next-single-property-change beg 'org-filtered)
3130 (point-max))))))
3131
3132 (defun org-agenda-add-entry-text ()
3133 "Add entry text to agenda lines.
3134 This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
3135 entry text following headings shown in the agenda.
3136 Drawers will be excluded, also the line with scheduling/deadline info."
3137 (when (and (> org-agenda-add-entry-text-maxlines 0)
3138 (not (org-bound-and-true-p org-mobile-creating-agendas)))
3139 (let (m txt)
3140 (goto-char (point-min))
3141 (while (not (eobp))
3142 (if (not (setq m (org-get-at-bol 'org-hd-marker)))
3143 (beginning-of-line 2)
3144 (setq txt (org-agenda-get-some-entry-text
3145 m org-agenda-add-entry-text-maxlines " > "))
3146 (end-of-line 1)
3147 (if (string-match "\\S-" txt)
3148 (insert "\n" txt)
3149 (or (eobp) (forward-char 1))))))))
3150
3151 (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
3152 &rest keep)
3153 "Extract entry text from MARKER, at most N-LINES lines.
3154 This will ignore drawers etc, just get the text.
3155 If INDENT is given, prefix every line with this string. If KEEP is
3156 given, it is a list of symbols, defining stuff that should not be
3157 removed from the entry content. Currently only `planning' is allowed here."
3158 (let (txt drawer-re kwd-time-re ind)
3159 (save-excursion
3160 (with-current-buffer (marker-buffer marker)
3161 (if (not (derived-mode-p 'org-mode))
3162 (setq txt "")
3163 (save-excursion
3164 (save-restriction
3165 (widen)
3166 (goto-char marker)
3167 (end-of-line 1)
3168 (setq txt (buffer-substring
3169 (min (1+ (point)) (point-max))
3170 (progn (outline-next-heading) (point)))
3171 drawer-re org-drawer-regexp
3172 kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
3173 ".*\n?"))
3174 (with-temp-buffer
3175 (insert txt)
3176 (when org-agenda-add-entry-text-descriptive-links
3177 (goto-char (point-min))
3178 (while (org-activate-bracket-links (point-max))
3179 (add-text-properties (match-beginning 0) (match-end 0)
3180 '(face org-link))))
3181 (goto-char (point-min))
3182 (while (re-search-forward org-bracket-link-regexp (point-max) t)
3183 (set-text-properties (match-beginning 0) (match-end 0)
3184 nil))
3185 (goto-char (point-min))
3186 (while (re-search-forward drawer-re nil t)
3187 (delete-region
3188 (match-beginning 0)
3189 (progn (re-search-forward
3190 "^[ \t]*:END:.*\n?" nil 'move)
3191 (point))))
3192 (unless (member 'planning keep)
3193 (goto-char (point-min))
3194 (while (re-search-forward kwd-time-re nil t)
3195 (replace-match "")))
3196 (goto-char (point-min))
3197 (when org-agenda-entry-text-exclude-regexps
3198 (let ((re-list org-agenda-entry-text-exclude-regexps) re)
3199 (while (setq re (pop re-list))
3200 (goto-char (point-min))
3201 (while (re-search-forward re nil t)
3202 (replace-match "")))))
3203 (goto-char (point-max))
3204 (skip-chars-backward " \t\n")
3205 (if (looking-at "[ \t\n]+\\'") (replace-match ""))
3206
3207 ;; find and remove min common indentation
3208 (goto-char (point-min))
3209 (untabify (point-min) (point-max))
3210 (setq ind (org-get-indentation))
3211 (while (not (eobp))
3212 (unless (looking-at "[ \t]*$")
3213 (setq ind (min ind (org-get-indentation))))
3214 (beginning-of-line 2))
3215 (goto-char (point-min))
3216 (while (not (eobp))
3217 (unless (looking-at "[ \t]*$")
3218 (move-to-column ind)
3219 (delete-region (point-at-bol) (point)))
3220 (beginning-of-line 2))
3221
3222 (run-hooks 'org-agenda-entry-text-cleanup-hook)
3223
3224 (goto-char (point-min))
3225 (when indent
3226 (while (and (not (eobp)) (re-search-forward "^" nil t))
3227 (replace-match indent t t)))
3228 (goto-char (point-min))
3229 (while (looking-at "[ \t]*\n") (replace-match ""))
3230 (goto-char (point-max))
3231 (when (> (org-current-line)
3232 n-lines)
3233 (org-goto-line (1+ n-lines))
3234 (backward-char 1))
3235 (setq txt (buffer-substring (point-min) (point)))))))))
3236 txt))
3237
3238 (defun org-agenda-collect-markers ()
3239 "Collect the markers pointing to entries in the agenda buffer."
3240 (let (m markers)
3241 (save-excursion
3242 (goto-char (point-min))
3243 (while (not (eobp))
3244 (when (setq m (or (org-get-at-bol 'org-hd-marker)
3245 (org-get-at-bol 'org-marker)))
3246 (push m markers))
3247 (beginning-of-line 2)))
3248 (nreverse markers)))
3249
3250 (defun org-create-marker-find-array (marker-list)
3251 "Create a alist of files names with all marker positions in that file."
3252 (let (f tbl m a p)
3253 (while (setq m (pop marker-list))
3254 (setq p (marker-position m)
3255 f (buffer-file-name (or (buffer-base-buffer
3256 (marker-buffer m))
3257 (marker-buffer m))))
3258 (if (setq a (assoc f tbl))
3259 (push (marker-position m) (cdr a))
3260 (push (list f p) tbl)))
3261 (mapcar (lambda (x) (setcdr x (sort (copy-sequence (cdr x)) '<)) x)
3262 tbl)))
3263
3264 (defvar org-agenda-marker-table nil) ; dynamically scoped parameter
3265 (defun org-check-agenda-marker-table ()
3266 "Check of the current entry is on the marker list."
3267 (let ((file (buffer-file-name (or (buffer-base-buffer) (current-buffer))))
3268 a)
3269 (and (setq a (assoc file org-agenda-marker-table))
3270 (save-match-data
3271 (save-excursion
3272 (org-back-to-heading t)
3273 (member (point) (cdr a)))))))
3274
3275 (defun org-check-for-org-mode ()
3276 "Make sure current buffer is in org-mode. Error if not."
3277 (or (derived-mode-p 'org-mode)
3278 (error "Cannot execute org-mode agenda command on buffer in %s"
3279 major-mode)))
3280
3281 ;;; Agenda prepare and finalize
3282
3283 (defvar org-agenda-multi nil) ; dynamically scoped
3284 (defvar org-agenda-pre-window-conf nil)
3285 (defvar org-agenda-columns-active nil)
3286 (defvar org-agenda-name nil)
3287 (defvar org-agenda-tag-filter nil)
3288 (defvar org-agenda-category-filter nil)
3289 (defvar org-agenda-top-category-filter nil)
3290 (defvar org-agenda-tag-filter-while-redo nil)
3291 (defvar org-agenda-tag-filter-preset nil
3292 "A preset of the tags filter used for secondary agenda filtering.
3293 This must be a list of strings, each string must be a single tag preceded
3294 by \"+\" or \"-\".
3295 This variable should not be set directly, but agenda custom commands can
3296 bind it in the options section. The preset filter is a global property of
3297 the entire agenda view. In a block agenda, it will not work reliably to
3298 define a filter for one of the individual blocks. You need to set it in
3299 the global options and expect it to be applied to the entire view.")
3300
3301 (defvar org-agenda-category-filter-preset nil
3302 "A preset of the category filter used for secondary agenda filtering.
3303 This must be a list of strings, each string must be a single category
3304 preceded by \"+\" or \"-\".
3305 This variable should not be set directly, but agenda custom commands can
3306 bind it in the options section. The preset filter is a global property of
3307 the entire agenda view. In a block agenda, it will not work reliably to
3308 define a filter for one of the individual blocks. You need to set it in
3309 the global options and expect it to be applied to the entire view.")
3310
3311
3312 (defun org-agenda-use-sticky-p ()
3313 "Return non-nil if an agenda buffer named
3314 `org-agenda-buffer-name' exists and should be shown instead of
3315 generating a new one."
3316 (and
3317 ;; turned off by user
3318 org-agenda-sticky
3319 ;; For multi-agenda buffer already exists
3320 (not org-agenda-multi)
3321 ;; buffer found
3322 (get-buffer org-agenda-buffer-name)
3323 ;; C-u parameter is same as last call
3324 (with-current-buffer (get-buffer org-agenda-buffer-name)
3325 (and
3326 (equal current-prefix-arg
3327 org-agenda-last-prefix-arg)
3328 ;; In case user turned stickiness on, while having existing
3329 ;; Agenda buffer active, don't reuse that buffer, because it
3330 ;; does not have org variables local
3331 org-agenda-this-buffer-is-sticky))))
3332
3333 (defun org-agenda-prepare-window (abuf)
3334 "Setup agenda buffer in the window."
3335 (let* ((awin (get-buffer-window abuf))
3336 wconf)
3337 (cond
3338 ((equal (current-buffer) abuf) nil)
3339 (awin (select-window awin))
3340 ((not (setq wconf (current-window-configuration))))
3341 ((equal org-agenda-window-setup 'current-window)
3342 (org-pop-to-buffer-same-window abuf))
3343 ((equal org-agenda-window-setup 'other-window)
3344 (org-switch-to-buffer-other-window abuf))
3345 ((equal org-agenda-window-setup 'other-frame)
3346 (switch-to-buffer-other-frame abuf))
3347 ((equal org-agenda-window-setup 'reorganize-frame)
3348 (delete-other-windows)
3349 (org-switch-to-buffer-other-window abuf)))
3350 ;; additional test in case agenda is invoked from within agenda
3351 ;; buffer via elisp link
3352 (unless (equal (current-buffer) abuf)
3353 (org-pop-to-buffer-same-window abuf))
3354 (setq org-agenda-pre-window-conf
3355 (or org-agenda-pre-window-conf wconf))))
3356
3357 (defun org-agenda-prepare (&optional name)
3358 (if (org-agenda-use-sticky-p)
3359 (progn
3360 ;; Popup existing buffer
3361 (org-agenda-prepare-window (get-buffer org-agenda-buffer-name))
3362 (message "Sticky Agenda buffer, use `r' to refresh")
3363 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
3364 (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
3365 (setq org-todo-keywords-for-agenda nil)
3366 (setq org-drawers-for-agenda nil)
3367 (unless org-agenda-persistent-filter
3368 (setq org-agenda-tag-filter nil
3369 org-agenda-category-filter nil))
3370 (put 'org-agenda-tag-filter :preset-filter
3371 org-agenda-tag-filter-preset)
3372 (put 'org-agenda-category-filter :preset-filter
3373 org-agenda-category-filter-preset)
3374 (if org-agenda-multi
3375 (progn
3376 (setq buffer-read-only nil)
3377 (goto-char (point-max))
3378 (unless (or (bobp) org-agenda-compact-blocks
3379 (not org-agenda-block-separator))
3380 (insert "\n"
3381 (if (stringp org-agenda-block-separator)
3382 org-agenda-block-separator
3383 (make-string (window-width) org-agenda-block-separator))
3384 "\n"))
3385 (narrow-to-region (point) (point-max)))
3386 (setq org-done-keywords-for-agenda nil)
3387
3388 ;; Setting any org variables that are in org-agenda-local-vars
3389 ;; list need to be done after the prepare call
3390 (org-agenda-prepare-window (get-buffer-create org-agenda-buffer-name))
3391 (setq buffer-read-only nil)
3392 (org-agenda-reset-markers)
3393 (let ((inhibit-read-only t)) (erase-buffer))
3394 (org-agenda-mode)
3395 (setq org-agenda-buffer (current-buffer))
3396 (setq org-agenda-contributing-files nil)
3397 (setq org-agenda-columns-active nil)
3398 (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
3399 (setq org-todo-keywords-for-agenda
3400 (org-uniquify org-todo-keywords-for-agenda))
3401 (setq org-done-keywords-for-agenda
3402 (org-uniquify org-done-keywords-for-agenda))
3403 (setq org-drawers-for-agenda (org-uniquify org-drawers-for-agenda))
3404 (setq org-agenda-last-prefix-arg current-prefix-arg)
3405 (setq org-agenda-this-buffer-name org-agenda-buffer-name)
3406 (and name (not org-agenda-name)
3407 (org-set-local 'org-agenda-name name)))
3408 (setq buffer-read-only nil)))
3409
3410 (defvar org-agenda-overriding-columns-format) ; From org-colview.el
3411 (defun org-agenda-finalize ()
3412 "Finishing touch for the agenda buffer, called just before displaying it."
3413 (unless org-agenda-multi
3414 (save-excursion
3415 (let ((inhibit-read-only t))
3416 (goto-char (point-min))
3417 (while (org-activate-bracket-links (point-max))
3418 (add-text-properties (match-beginning 0) (match-end 0)
3419 '(face org-link)))
3420 (org-agenda-align-tags)
3421 (unless org-agenda-with-colors
3422 (remove-text-properties (point-min) (point-max) '(face nil))))
3423 (if (and (boundp 'org-agenda-overriding-columns-format)
3424 org-agenda-overriding-columns-format)
3425 (org-set-local 'org-agenda-overriding-columns-format
3426 org-agenda-overriding-columns-format))
3427 (if (and (boundp 'org-agenda-view-columns-initially)
3428 org-agenda-view-columns-initially)
3429 (org-agenda-columns))
3430 (when org-agenda-fontify-priorities
3431 (org-agenda-fontify-priorities))
3432 (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
3433 (org-agenda-dim-blocked-tasks))
3434 (org-agenda-mark-clocking-task)
3435 (when org-agenda-entry-text-mode
3436 (org-agenda-entry-text-hide)
3437 (org-agenda-entry-text-show))
3438 (if (functionp 'org-habit-insert-consistency-graphs)
3439 (org-habit-insert-consistency-graphs))
3440 (let ((inhibit-read-only t))
3441 (run-hooks 'org-agenda-finalize-hook))
3442 (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
3443 (when (or org-agenda-tag-filter (get 'org-agenda-tag-filter :preset-filter))
3444 (org-agenda-filter-apply org-agenda-tag-filter 'tag))
3445 (when (or org-agenda-category-filter (get 'org-agenda-category-filter :preset-filter))
3446 (org-agenda-filter-apply org-agenda-category-filter 'category))
3447 (org-add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local))))
3448
3449 (defun org-agenda-mark-clocking-task ()
3450 "Mark the current clock entry in the agenda if it is present."
3451 (mapc (lambda (o)
3452 (if (eq (overlay-get o 'type) 'org-agenda-clocking)
3453 (delete-overlay o)))
3454 (overlays-in (point-min) (point-max)))
3455 (when (marker-buffer org-clock-hd-marker)
3456 (save-excursion
3457 (goto-char (point-min))
3458 (let (s ov)
3459 (while (setq s (next-single-property-change (point) 'org-hd-marker))
3460 (goto-char s)
3461 (when (equal (org-get-at-bol 'org-hd-marker)
3462 org-clock-hd-marker)
3463 (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
3464 (overlay-put ov 'type 'org-agenda-clocking)
3465 (overlay-put ov 'face 'org-agenda-clocking)
3466 (overlay-put ov 'help-echo
3467 "The clock is running in this item")))))))
3468
3469 (defun org-agenda-fontify-priorities ()
3470 "Make highest priority lines bold, and lowest italic."
3471 (interactive)
3472 (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
3473 (delete-overlay o)))
3474 (overlays-in (point-min) (point-max)))
3475 (save-excursion
3476 (let ((inhibit-read-only t)
3477 b e p ov h l)
3478 (goto-char (point-min))
3479 (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
3480 (setq h (or (get-char-property (point) 'org-highest-priority)
3481 org-highest-priority)
3482 l (or (get-char-property (point) 'org-lowest-priority)
3483 org-lowest-priority)
3484 p (string-to-char (match-string 1))
3485 b (match-beginning 0)
3486 e (if (eq org-agenda-fontify-priorities 'cookies)
3487 (match-end 0)
3488 (point-at-eol))
3489 ov (make-overlay b e))
3490 (overlay-put
3491 ov 'face
3492 (cond ((org-face-from-face-or-color
3493 'priority nil
3494 (cdr (assoc p org-priority-faces))))
3495 ((and (listp org-agenda-fontify-priorities)
3496 (org-face-from-face-or-color
3497 'priority nil
3498 (cdr (assoc p org-agenda-fontify-priorities)))))
3499 ((equal p l) 'italic)
3500 ((equal p h) 'bold)))
3501 (overlay-put ov 'org-type 'org-priority)))))
3502
3503 (defun org-agenda-dim-blocked-tasks ()
3504 "Dim currently blocked TODO's in the agenda display."
3505 (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-blocked-todo)
3506 (delete-overlay o)))
3507 (overlays-in (point-min) (point-max)))
3508 (save-excursion
3509 (let ((inhibit-read-only t)
3510 (org-depend-tag-blocked nil)
3511 (invis (eq org-agenda-dim-blocked-tasks 'invisible))
3512 org-blocked-by-checkboxes
3513 invis1 b e p ov h l)
3514 (goto-char (point-min))
3515 (while (let ((pos (next-single-property-change (point) 'todo-state)))
3516 (and pos (goto-char (1+ pos))))
3517 (setq org-blocked-by-checkboxes nil invis1 invis)
3518 (let ((marker (org-get-at-bol 'org-hd-marker)))
3519 (when (and marker
3520 (with-current-buffer (marker-buffer marker)
3521 (save-excursion (goto-char marker)
3522 (org-entry-blocked-p))))
3523 (if org-blocked-by-checkboxes (setq invis1 nil))
3524 (setq b (if invis1
3525 (max (point-min) (1- (point-at-bol)))
3526 (point-at-bol))
3527 e (point-at-eol)
3528 ov (make-overlay b e))
3529 (if invis1
3530 (overlay-put ov 'invisible t)
3531 (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
3532 (overlay-put ov 'org-type 'org-blocked-todo)))))))
3533
3534 (defvar org-agenda-skip-function nil
3535 "Function to be called at each match during agenda construction.
3536 If this function returns nil, the current match should not be skipped.
3537 Otherwise, the function must return a position from where the search
3538 should be continued.
3539 This may also be a Lisp form, it will be evaluated.
3540 Never set this variable using `setq' or so, because then it will apply
3541 to all future agenda commands. If you do want a global skipping condition,
3542 use the option `org-agenda-skip-function-global' instead.
3543 The correct usage for `org-agenda-skip-function' is to bind it with
3544 `let' to scope it dynamically into the agenda-constructing command.
3545 A good way to set it is through options in `org-agenda-custom-commands'.")
3546
3547 (defun org-agenda-skip ()
3548 "Throw to `:skip' in places that should be skipped.
3549 Also moves point to the end of the skipped region, so that search can
3550 continue from there."
3551 (let ((p (point-at-bol)) to)
3552 (when (org-in-src-block-p) (throw :skip t))
3553 (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
3554 (get-text-property p :org-archived)
3555 (org-end-of-subtree t)
3556 (throw :skip t))
3557 (and org-agenda-skip-comment-trees
3558 (get-text-property p :org-comment)
3559 (org-end-of-subtree t)
3560 (throw :skip t))
3561 (if (equal (char-after p) ?#) (throw :skip t))
3562 (when (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
3563 (org-agenda-skip-eval org-agenda-skip-function)))
3564 (goto-char to)
3565 (throw :skip t))))
3566
3567 (defun org-agenda-skip-eval (form)
3568 "If FORM is a function or a list, call (or eval) is and return result.
3569 `save-excursion' and `save-match-data' are wrapped around the call, so point
3570 and match data are returned to the previous state no matter what these
3571 functions do."
3572 (let (fp)
3573 (and form
3574 (or (setq fp (functionp form))
3575 (consp form))
3576 (save-excursion
3577 (save-match-data
3578 (if fp
3579 (funcall form)
3580 (eval form)))))))
3581
3582 (defvar org-agenda-markers nil
3583 "List of all currently active markers created by `org-agenda'.")
3584 (defvar org-agenda-last-marker-time (org-float-time)
3585 "Creation time of the last agenda marker.")
3586
3587 (defun org-agenda-new-marker (&optional pos)
3588 "Return a new agenda marker.
3589 Org-mode keeps a list of these markers and resets them when they are
3590 no longer in use."
3591 (let ((m (copy-marker (or pos (point)))))
3592 (setq org-agenda-last-marker-time (org-float-time))
3593 (if org-agenda-buffer
3594 (with-current-buffer org-agenda-buffer
3595 (push m org-agenda-markers))
3596 (push m org-agenda-markers))
3597 m))
3598
3599 (defun org-agenda-reset-markers ()
3600 "Reset markers created by `org-agenda'."
3601 (while org-agenda-markers
3602 (move-marker (pop org-agenda-markers) nil)))
3603
3604 (defun org-agenda-save-markers-for-cut-and-paste (beg end)
3605 "Save relative positions of markers in region.
3606 This check for agenda markers in all agenda buffers currently active."
3607 (dolist (buf (buffer-list))
3608 (with-current-buffer buf
3609 (when (eq major-mode 'org-agenda-mode)
3610 (mapc (lambda (m) (org-check-and-save-marker m beg end))
3611 org-agenda-markers)))))
3612
3613 ;;; Entry text mode
3614
3615 (defun org-agenda-entry-text-show-here ()
3616 "Add some text from the entry as context to the current line."
3617 (let (m txt o)
3618 (setq m (org-get-at-bol 'org-hd-marker))
3619 (unless (marker-buffer m)
3620 (error "No marker points to an entry here"))
3621 (setq txt (concat "\n" (org-no-properties
3622 (org-agenda-get-some-entry-text
3623 m org-agenda-entry-text-maxlines " > "))))
3624 (when (string-match "\\S-" txt)
3625 (setq o (make-overlay (point-at-bol) (point-at-eol)))
3626 (overlay-put o 'evaporate t)
3627 (overlay-put o 'org-overlay-type 'agenda-entry-content)
3628 (overlay-put o 'after-string txt))))
3629
3630 (defun org-agenda-entry-text-show ()
3631 "Add entry context for all agenda lines."
3632 (interactive)
3633 (save-excursion
3634 (goto-char (point-max))
3635 (beginning-of-line 1)
3636 (while (not (bobp))
3637 (when (org-get-at-bol 'org-hd-marker)
3638 (org-agenda-entry-text-show-here))
3639 (beginning-of-line 0))))
3640
3641 (defun org-agenda-entry-text-hide ()
3642 "Remove any shown entry context."
3643 (delq nil
3644 (mapcar (lambda (o)
3645 (if (eq (overlay-get o 'org-overlay-type)
3646 'agenda-entry-content)
3647 (progn (delete-overlay o) t)))
3648 (overlays-in (point-min) (point-max)))))
3649
3650 (defun org-agenda-get-day-face (date)
3651 "Return the face DATE should be displayed with."
3652 (or (and (functionp org-agenda-day-face-function)
3653 (funcall org-agenda-day-face-function date))
3654 (cond ((org-agenda-todayp date)
3655 'org-agenda-date-today)
3656 ((member (calendar-day-of-week date) org-agenda-weekend-days)
3657 'org-agenda-date-weekend)
3658 (t 'org-agenda-date))))
3659
3660 ;;; Agenda timeline
3661
3662 (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
3663
3664 (defun org-timeline (&optional dotodo)
3665 "Show a time-sorted view of the entries in the current org file.
3666 Only entries with a time stamp of today or later will be listed. With
3667 \\[universal-argument] prefix, all unfinished TODO items will also be shown,
3668 under the current date.
3669 If the buffer contains an active region, only check the region for
3670 dates."
3671 (interactive "P")
3672 (let* ((dopast t)
3673 (org-agenda-show-log-scoped org-agenda-show-log)
3674 (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
3675 (current-buffer))))
3676 (date (calendar-current-date))
3677 (beg (if (org-region-active-p) (region-beginning) (point-min)))
3678 (end (if (org-region-active-p) (region-end) (point-max)))
3679 (day-numbers (org-get-all-dates
3680 beg end 'no-ranges
3681 t org-agenda-show-log-scoped ; always include today
3682 org-timeline-show-empty-dates))
3683 (org-deadline-warning-days 0)
3684 (org-agenda-only-exact-dates t)
3685 (today (org-today))
3686 (past t)
3687 args
3688 s e rtn d emptyp)
3689 (setq org-agenda-redo-command
3690 (list 'progn
3691 (list 'org-switch-to-buffer-other-window (current-buffer))
3692 (list 'org-timeline (list 'quote dotodo))))
3693 (if (not dopast)
3694 ;; Remove past dates from the list of dates.
3695 (setq day-numbers (delq nil (mapcar (lambda(x)
3696 (if (>= x today) x nil))
3697 day-numbers))))
3698 (org-agenda-prepare (concat "Timeline " (file-name-nondirectory entry)))
3699 (org-compile-prefix-format 'timeline)
3700 (org-set-sorting-strategy 'timeline)
3701 (if org-agenda-show-log-scoped (push :closed args))
3702 (push :timestamp args)
3703 (push :deadline args)
3704 (push :scheduled args)
3705 (push :sexp args)
3706 (if dotodo (push :todo args))
3707 (insert "Timeline of file " entry "\n")
3708 (add-text-properties (point-min) (point)
3709 (list 'face 'org-agenda-structure))
3710 (org-agenda-mark-header-line (point-min))
3711 (while (setq d (pop day-numbers))
3712 (if (and (listp d) (eq (car d) :omitted))
3713 (progn
3714 (setq s (point))
3715 (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
3716 (put-text-property s (1- (point)) 'face 'org-agenda-structure))
3717 (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
3718 (if (and (>= d today)
3719 dopast
3720 past)
3721 (progn
3722 (setq past nil)
3723 (insert (make-string 79 ?-) "\n")))
3724 (setq date (calendar-gregorian-from-absolute d))
3725 (setq s (point))
3726 (setq rtn (and (not emptyp)
3727 (apply 'org-agenda-get-day-entries entry
3728 date args)))
3729 (if (or rtn (equal d today) org-timeline-show-empty-dates)
3730 (progn
3731 (insert
3732 (if (stringp org-agenda-format-date)
3733 (format-time-string org-agenda-format-date
3734 (org-time-from-absolute date))
3735 (funcall org-agenda-format-date date))
3736 "\n")
3737 (put-text-property s (1- (point)) 'face
3738 (org-agenda-get-day-face date))
3739 (put-text-property s (1- (point)) 'org-date-line t)
3740 (put-text-property s (1- (point)) 'org-agenda-date-header t)
3741 (if (equal d today)
3742 (put-text-property s (1- (point)) 'org-today t))
3743 (and rtn (insert (org-agenda-finalize-entries rtn) "\n"))
3744 (put-text-property s (1- (point)) 'day d)))))
3745 (goto-char (point-min))
3746 (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
3747 (point-min)))
3748 (add-text-properties (point-min) (point-max) '(org-agenda-type timeline))
3749 (org-agenda-finalize)
3750 (setq buffer-read-only t)))
3751
3752 (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
3753 "Return a list of all relevant day numbers from BEG to END buffer positions.
3754 If NO-RANGES is non-nil, include only the start and end dates of a range,
3755 not every single day in the range. If FORCE-TODAY is non-nil, make
3756 sure that TODAY is included in the list. If INACTIVE is non-nil, also
3757 inactive time stamps (those in square brackets) are included.
3758 When EMPTY is non-nil, also include days without any entries."
3759 (let ((re (concat
3760 (if pre-re pre-re "")
3761 (if inactive org-ts-regexp-both org-ts-regexp)))
3762 dates dates1 date day day1 day2 ts1 ts2 pos)
3763 (if force-today
3764 (setq dates (list (org-today))))
3765 (save-excursion
3766 (goto-char beg)
3767 (while (re-search-forward re end t)
3768 (setq day (time-to-days (org-time-string-to-time
3769 (substring (match-string 1) 0 10)
3770 (current-buffer) (match-beginning 0))))
3771 (or (memq day dates) (push day dates)))
3772 (unless no-ranges
3773 (goto-char beg)
3774 (while (re-search-forward org-tr-regexp end t)
3775 (setq pos (match-beginning 0))
3776 (setq ts1 (substring (match-string 1) 0 10)
3777 ts2 (substring (match-string 2) 0 10)
3778 day1 (time-to-days (org-time-string-to-time
3779 ts1 (current-buffer) pos))
3780 day2 (time-to-days (org-time-string-to-time
3781 ts2 (current-buffer) pos)))
3782 (while (< (setq day1 (1+ day1)) day2)
3783 (or (memq day1 dates) (push day1 dates)))))
3784 (setq dates (sort dates '<))
3785 (when empty
3786 (while (setq day (pop dates))
3787 (setq day2 (car dates))
3788 (push day dates1)
3789 (when (and day2 empty)
3790 (if (or (eq empty t)
3791 (and (numberp empty) (<= (- day2 day) empty)))
3792 (while (< (setq day (1+ day)) day2)
3793 (push (list day) dates1))
3794 (push (cons :omitted (- day2 day)) dates1))))
3795 (setq dates (nreverse dates1)))
3796 dates)))
3797
3798 ;;; Agenda Daily/Weekly
3799
3800 (defvar org-agenda-start-day nil ; dynamically scoped parameter
3801 "Start day for the agenda view.
3802 Custom commands can set this variable in the options section.")
3803 (defvar org-starting-day nil) ; local variable in the agenda buffer
3804 (defvar org-arg-loc nil) ; local variable
3805
3806 (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
3807 "List of types searched for when creating the daily/weekly agenda.
3808 This variable is a list of symbols that controls the types of
3809 items that appear in the daily/weekly agenda. Allowed symbols in this
3810 list are are
3811
3812 :timestamp List items containing a date stamp or date range matching
3813 the selected date. This includes sexp entries in
3814 angular brackets.
3815
3816 :sexp List entries resulting from plain diary-like sexps.
3817
3818 :deadline List deadline due on that date. When the date is today,
3819 also list any deadlines past due, or due within
3820 `org-deadline-warning-days'. `:deadline' must appear before
3821 `:scheduled' if the setting of
3822 `org-agenda-skip-scheduled-if-deadline-is-shown' is to have
3823 any effect.
3824
3825 :scheduled List all items which are scheduled for the given date.
3826 The diary for *today* also contains items which were
3827 scheduled earlier and are not yet marked DONE.
3828
3829 By default, all four types are turned on.
3830
3831 Never set this variable globally using `setq', because then it
3832 will apply to all future agenda commands. Instead, bind it with
3833 `let' to scope it dynamically into the agenda-constructing
3834 command. A good way to set it is through options in
3835 `org-agenda-custom-commands'. For a more flexible (though
3836 somewhat less efficient) way of determining what is included in
3837 the daily/weekly agenda, see `org-agenda-skip-function'.")
3838
3839 (defvar org-agenda-buffer-tmp-name nil)
3840 ;;;###autoload
3841 (defun org-agenda-list (&optional arg start-day span)
3842 "Produce a daily/weekly view from all files in variable `org-agenda-files'.
3843 The view will be for the current day or week, but from the overview buffer
3844 you will be able to go to other days/weeks.
3845
3846 With a numeric prefix argument in an interactive call, the agenda will
3847 span ARG days. Lisp programs should instead specify SPAN to change
3848 the number of days. SPAN defaults to `org-agenda-span'.
3849
3850 START-DAY defaults to TODAY, or to the most recent match for the weekday
3851 given in `org-agenda-start-on-weekday'."
3852 (interactive "P")
3853 (if org-agenda-overriding-arguments
3854 (setq arg (car org-agenda-overriding-arguments)
3855 start-day (nth 1 org-agenda-overriding-arguments)
3856 span (nth 2 org-agenda-overriding-arguments)))
3857 (if (and (integerp arg) (> arg 0))
3858 (setq span arg arg nil))
3859 (catch 'exit
3860 (setq org-agenda-buffer-name
3861 (or org-agenda-buffer-tmp-name
3862 (if org-agenda-sticky
3863 (cond ((and org-keys (stringp org-match))
3864 (format "*Org Agenda(%s:%s)*" org-keys org-match))
3865 (org-keys
3866 (format "*Org Agenda(%s)*" org-keys))
3867 (t "*Org Agenda(a)*")))
3868 org-agenda-buffer-name))
3869 (org-agenda-prepare "Day/Week")
3870 (setq start-day (or start-day org-agenda-start-day))
3871 (if (stringp start-day)
3872 ;; Convert to an absolute day number
3873 (setq start-day (time-to-days (org-read-date nil t start-day))))
3874 (org-compile-prefix-format 'agenda)
3875 (org-set-sorting-strategy 'agenda)
3876 (let* ((span (org-agenda-ndays-to-span
3877 (or span org-agenda-ndays org-agenda-span)))
3878 (today (org-today))
3879 (sd (or start-day today))
3880 (ndays (org-agenda-span-to-ndays span sd))
3881 (org-agenda-start-on-weekday
3882 (if (eq ndays 7)
3883 org-agenda-start-on-weekday))
3884 (thefiles (org-agenda-files nil 'ifmode))
3885 (files thefiles)
3886 (start (if (or (null org-agenda-start-on-weekday)
3887 (< ndays 7))
3888 sd
3889 (let* ((nt (calendar-day-of-week
3890 (calendar-gregorian-from-absolute sd)))
3891 (n1 org-agenda-start-on-weekday)
3892 (d (- nt n1)))
3893 (- sd (+ (if (< d 0) 7 0) d)))))
3894 (day-numbers (list start))
3895 (day-cnt 0)
3896 (inhibit-redisplay (not debug-on-error))
3897 (org-agenda-show-log-scoped org-agenda-show-log)
3898 s e rtn rtnall file date d start-pos end-pos todayp
3899 clocktable-start clocktable-end filter)
3900 (setq org-agenda-redo-command
3901 (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span)))
3902 (dotimes (n (1- ndays))
3903 (push (1+ (car day-numbers)) day-numbers))
3904 (setq day-numbers (nreverse day-numbers))
3905 (setq clocktable-start (car day-numbers)
3906 clocktable-end (1+ (or (org-last day-numbers) 0)))
3907 (org-set-local 'org-starting-day (car day-numbers))
3908 (org-set-local 'org-arg-loc arg)
3909 (org-set-local 'org-agenda-current-span (org-agenda-ndays-to-span span))
3910 (unless org-agenda-compact-blocks
3911 (let* ((d1 (car day-numbers))
3912 (d2 (org-last day-numbers))
3913 (w1 (org-days-to-iso-week d1))
3914 (w2 (org-days-to-iso-week d2)))
3915 (setq s (point))
3916 (if org-agenda-overriding-header
3917 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
3918 nil 'face 'org-agenda-structure) "\n")
3919 (insert (org-agenda-span-name span)
3920 "-agenda"
3921 (if (< (- d2 d1) 350)
3922 (if (= w1 w2)
3923 (format " (W%02d)" w1)
3924 (format " (W%02d-W%02d)" w1 w2))
3925 "")
3926 ":\n")))
3927 (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
3928 'org-date-line t))
3929 (org-agenda-mark-header-line s))
3930 (while (setq d (pop day-numbers))
3931 (setq date (calendar-gregorian-from-absolute d)
3932 s (point))
3933 (if (or (setq todayp (= d today))
3934 (and (not start-pos) (= d sd)))
3935 (setq start-pos (point))
3936 (if (and start-pos (not end-pos))
3937 (setq end-pos (point))))
3938 (setq files thefiles
3939 rtnall nil)
3940 (while (setq file (pop files))
3941 (catch 'nextfile
3942 (org-check-agenda-file file)
3943 (let ((org-agenda-entry-types org-agenda-entry-types))
3944 (unless org-agenda-include-deadlines
3945 (setq org-agenda-entry-types
3946 (delq :deadline org-agenda-entry-types)))
3947 (cond
3948 ((memq org-agenda-show-log-scoped '(only clockcheck))
3949 (setq rtn (org-agenda-get-day-entries
3950 file date :closed)))
3951 (org-agenda-show-log-scoped
3952 (setq rtn (apply 'org-agenda-get-day-entries
3953 file date
3954 (append '(:closed) org-agenda-entry-types))))
3955 (t
3956 (setq rtn (apply 'org-agenda-get-day-entries
3957 file date
3958 org-agenda-entry-types)))))
3959 (setq rtnall (append rtnall rtn)))) ;; all entries
3960 (if org-agenda-include-diary
3961 (let ((org-agenda-search-headline-for-time t))
3962 (require 'diary-lib)
3963 (setq rtn (org-get-entries-from-diary date))
3964 (setq rtnall (append rtnall rtn))))
3965 (if (or rtnall org-agenda-show-all-dates)
3966 (progn
3967 (setq day-cnt (1+ day-cnt))
3968 (insert
3969 (if (stringp org-agenda-format-date)
3970 (format-time-string org-agenda-format-date
3971 (org-time-from-absolute date))
3972 (funcall org-agenda-format-date date))
3973 "\n")
3974 (put-text-property s (1- (point)) 'face
3975 (org-agenda-get-day-face date))
3976 (put-text-property s (1- (point)) 'org-date-line t)
3977 (put-text-property s (1- (point)) 'org-agenda-date-header t)
3978 (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
3979 (when todayp
3980 (put-text-property s (1- (point)) 'org-today t))
3981 (setq rtnall
3982 (org-agenda-add-time-grid-maybe rtnall ndays todayp))
3983 (if rtnall (insert ;; all entries
3984 (org-agenda-finalize-entries rtnall)
3985 "\n"))
3986 (put-text-property s (1- (point)) 'day d)
3987 (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
3988 (when (and org-agenda-clockreport-mode clocktable-start)
3989 (let ((org-agenda-files (org-agenda-files nil 'ifmode))
3990 ;; the above line is to ensure the restricted range!
3991 (p (copy-sequence org-agenda-clockreport-parameter-plist))
3992 tbl)
3993 (setq p (org-plist-delete p :block))
3994 (setq p (plist-put p :tstart clocktable-start))
3995 (setq p (plist-put p :tend clocktable-end))
3996 (setq p (plist-put p :scope 'agenda))
3997 (when (and (eq org-agenda-clockreport-mode 'with-filter)
3998 (setq filter (or org-agenda-tag-filter-while-redo
3999 (get 'org-agenda-tag-filter :preset-filter))))
4000 (setq p (plist-put p :tags (mapconcat (lambda (x)
4001 (if (string-match "[<>=]" x)
4002 ""
4003 x))
4004 filter ""))))
4005 (setq tbl (apply 'org-get-clocktable p))
4006 (insert tbl)))
4007 (goto-char (point-min))
4008 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4009 (unless (and (pos-visible-in-window-p (point-min))
4010 (pos-visible-in-window-p (point-max)))
4011 (goto-char (1- (point-max)))
4012 (recenter -1)
4013 (if (not (pos-visible-in-window-p (or start-pos 1)))
4014 (progn
4015 (goto-char (or start-pos 1))
4016 (recenter 1))))
4017 (goto-char (or start-pos 1))
4018 (add-text-properties (point-min) (point-max)
4019 `(org-agenda-type agenda
4020 org-last-args (,arg ,start-day ,span)
4021 org-redo-cmd ,org-agenda-redo-command
4022 org-series-cmd ,org-cmd))
4023 (if (eq org-agenda-show-log-scoped 'clockcheck)
4024 (org-agenda-show-clocking-issues))
4025 (org-agenda-finalize)
4026 (setq buffer-read-only t)
4027 (message ""))))
4028
4029 (defun org-agenda-ndays-to-span (n)
4030 "Return a span symbol for a span of N days, or N if none matches."
4031 (cond ((symbolp n) n)
4032 ((= n 1) 'day)
4033 ((= n 7) 'week)
4034 (t n)))
4035
4036 (defun org-agenda-span-to-ndays (span &optional start-day)
4037 "Return ndays from SPAN, possibly starting at START-DAY."
4038 (cond ((numberp span) span)
4039 ((eq span 'day) 1)
4040 ((eq span 'week) 7)
4041 ((eq span 'month)
4042 (let ((date (calendar-gregorian-from-absolute start-day)))
4043 (calendar-last-day-of-month (car date) (caddr date))))
4044 ((eq span 'year)
4045 (let ((date (calendar-gregorian-from-absolute start-day)))
4046 (if (calendar-leap-year-p (caddr date)) 366 365)))))
4047
4048 (defun org-agenda-span-name (span)
4049 "Return a SPAN name."
4050 (if (null span)
4051 ""
4052 (if (symbolp span)
4053 (capitalize (symbol-name span))
4054 (format "%d days" span))))
4055
4056 ;;; Agenda word search
4057
4058 (defvar org-agenda-search-history nil)
4059
4060 (defvar org-search-syntax-table nil
4061 "Special syntax table for org-mode search.
4062 In this table, we have single quotes not as word constituents, to
4063 that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
4064
4065 (defvar org-mode-syntax-table) ; From org.el
4066 (defun org-search-syntax-table ()
4067 (unless org-search-syntax-table
4068 (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
4069 (modify-syntax-entry ?' "." org-search-syntax-table)
4070 (modify-syntax-entry ?` "." org-search-syntax-table))
4071 org-search-syntax-table)
4072
4073 (defvar org-agenda-last-search-view-search-was-boolean nil)
4074
4075 ;;;###autoload
4076 (defun org-search-view (&optional todo-only string edit-at)
4077 "Show all entries that contain a phrase or words or regular expressions.
4078
4079 With optional prefix argument TODO-ONLY, only consider entries that are
4080 TODO entries. The argument STRING can be used to pass a default search
4081 string into this function. If EDIT-AT is non-nil, it means that the
4082 user should get a chance to edit this string, with cursor at position
4083 EDIT-AT.
4084
4085 The search string can be viewed either as a phrase that should be found as
4086 is, or it can be broken into a number of snippets, each of which must match
4087 in a Boolean way to select an entry. The default depends on the variable
4088 `org-agenda-search-view-always-boolean'.
4089 Even if this is turned off (the default) you can always switch to
4090 Boolean search dynamically by preceding the first word with \"+\" or \"-\".
4091
4092 The default is a direct search of the whole phrase, where each space in
4093 the search string can expand to an arbitrary amount of whitespace,
4094 including newlines.
4095
4096 If using a Boolean search, the search string is split on whitespace and
4097 each snippet is searched separately, with logical AND to select an entry.
4098 Words prefixed with a minus must *not* occur in the entry. Words without
4099 a prefix or prefixed with a plus must occur in the entry. Matching is
4100 case-insensitive. Words are enclosed by word delimiters (i.e. they must
4101 match whole words, not parts of a word) if
4102 `org-agenda-search-view-force-full-words' is set (default is nil).
4103
4104 Boolean search snippets enclosed by curly braces are interpreted as
4105 regular expressions that must or (when preceded with \"-\") must not
4106 match in the entry. Snippets enclosed into double quotes will be taken
4107 as a whole, to include whitespace.
4108
4109 - If the search string starts with an asterisk, search only in headlines.
4110 - If (possibly after the leading star) the search string starts with an
4111 exclamation mark, this also means to look at TODO entries only, an effect
4112 that can also be achieved with a prefix argument.
4113 - If (possibly after star and exclamation mark) the search string starts
4114 with a colon, this will mean that the (non-regexp) snippets of the
4115 Boolean search must match as full words.
4116
4117 This command searches the agenda files, and in addition the files listed
4118 in `org-agenda-text-search-extra-files'."
4119 (interactive "P")
4120 (if org-agenda-overriding-arguments
4121 (setq todo-only (car org-agenda-overriding-arguments)
4122 string (nth 1 org-agenda-overriding-arguments)
4123 edit-at (nth 2 org-agenda-overriding-arguments)))
4124 (let* ((props (list 'face nil
4125 'done-face 'org-agenda-done
4126 'org-not-done-regexp org-not-done-regexp
4127 'org-todo-regexp org-todo-regexp
4128 'org-complex-heading-regexp org-complex-heading-regexp
4129 'mouse-face 'highlight
4130 'help-echo (format "mouse-2 or RET jump to location")))
4131 (full-words org-agenda-search-view-force-full-words)
4132 (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
4133 regexp rtn rtnall files file pos
4134 marker category category-pos tags c neg re boolean
4135 ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
4136 (unless (and (not edit-at)
4137 (stringp string)
4138 (string-match "\\S-" string))
4139 (setq string (read-string
4140 (if org-agenda-search-view-always-boolean
4141 "[+-]Word/{Regexp} ...: "
4142 "Phrase or [+-]Word/{Regexp} ...: ")
4143 (cond
4144 ((integerp edit-at) (cons string edit-at))
4145 (edit-at string))
4146 'org-agenda-search-history)))
4147 (catch 'exit
4148 (if org-agenda-sticky
4149 (setq org-agenda-buffer-name
4150 (if (stringp string)
4151 (format "*Org Agenda(%s:%s)*"
4152 (or org-keys (or (and todo-only "S") "s")) string)
4153 (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
4154 (org-agenda-prepare "SEARCH")
4155 (org-compile-prefix-format 'search)
4156 (org-set-sorting-strategy 'search)
4157 (setq org-agenda-redo-command
4158 (list 'org-search-view (if todo-only t nil)
4159 (list 'if 'current-prefix-arg nil string)))
4160 (setq org-agenda-query-string string)
4161 (if (equal (string-to-char string) ?*)
4162 (setq hdl-only t
4163 words (substring string 1))
4164 (setq words string))
4165 (when (equal (string-to-char words) ?!)
4166 (setq todo-only t
4167 words (substring words 1)))
4168 (when (equal (string-to-char words) ?:)
4169 (setq full-words t
4170 words (substring words 1)))
4171 (if (or org-agenda-search-view-always-boolean
4172 (member (string-to-char words) '(?- ?+ ?\{)))
4173 (setq boolean t))
4174 (setq words (org-split-string words))
4175 (let (www w)
4176 (while (setq w (pop words))
4177 (while (and (string-match "\\\\\\'" w) words)
4178 (setq w (concat (substring w 0 -1) " " (pop words))))
4179 (push w www))
4180 (setq words (nreverse www) www nil)
4181 (while (setq w (pop words))
4182 (when (and (string-match "\\`[-+]?{" w)
4183 (not (string-match "}\\'" w)))
4184 (while (and words (not (string-match "}\\'" (car words))))
4185 (setq w (concat w " " (pop words))))
4186 (setq w (concat w " " (pop words))))
4187 (push w www))
4188 (setq words (nreverse www)))
4189 (setq org-agenda-last-search-view-search-was-boolean boolean)
4190 (when boolean
4191 (let (wds w)
4192 (while (setq w (pop words))
4193 (if (or (equal (substring w 0 1) "\"")
4194 (and (> (length w) 1)
4195 (member (substring w 0 1) '("+" "-"))
4196 (equal (substring w 1 2) "\"")))
4197 (while (and words (not (equal (substring w -1) "\"")))
4198 (setq w (concat w " " (pop words)))))
4199 (and (string-match "\\`\\([-+]?\\)\"" w)
4200 (setq w (replace-match "\\1" nil nil w)))
4201 (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
4202 (push w wds))
4203 (setq words (nreverse wds))))
4204 (if boolean
4205 (mapc (lambda (w)
4206 (setq c (string-to-char w))
4207 (if (equal c ?-)
4208 (setq neg t w (substring w 1))
4209 (if (equal c ?+)
4210 (setq neg nil w (substring w 1))
4211 (setq neg nil)))
4212 (if (string-match "\\`{.*}\\'" w)
4213 (setq re (substring w 1 -1))
4214 (if full-words
4215 (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
4216 (setq re (regexp-quote (downcase w)))))
4217 (if neg (push re regexps-) (push re regexps+)))
4218 words)
4219 (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
4220 regexps+))
4221 (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
4222 (if (not regexps+)
4223 (setq regexp org-outline-regexp-bol)
4224 (setq regexp (pop regexps+))
4225 (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
4226 regexp))))
4227 (setq files (org-agenda-files nil 'ifmode))
4228 (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
4229 (pop org-agenda-text-search-extra-files)
4230 (setq files (org-add-archive-files files)))
4231 (setq files (append files org-agenda-text-search-extra-files)
4232 rtnall nil)
4233 (while (setq file (pop files))
4234 (setq ee nil)
4235 (catch 'nextfile
4236 (org-check-agenda-file file)
4237 (setq buffer (if (file-exists-p file)
4238 (org-get-agenda-file-buffer file)
4239 (error "No such file %s" file)))
4240 (if (not buffer)
4241 ;; If file does not exist, make sure an error message is sent
4242 (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
4243 file))))
4244 (with-current-buffer buffer
4245 (with-syntax-table (org-search-syntax-table)
4246 (unless (derived-mode-p 'org-mode)
4247 (error "Agenda file %s is not in `org-mode'" file))
4248 (let ((case-fold-search t))
4249 (save-excursion
4250 (save-restriction
4251 (if org-agenda-restrict
4252 (narrow-to-region org-agenda-restrict-begin
4253 org-agenda-restrict-end)
4254 (widen))
4255 (goto-char (point-min))
4256 (unless (or (org-at-heading-p)
4257 (outline-next-heading))
4258 (throw 'nextfile t))
4259 (goto-char (max (point-min) (1- (point))))
4260 (while (re-search-forward regexp nil t)
4261 (org-back-to-heading t)
4262 (skip-chars-forward "* ")
4263 (setq beg (point-at-bol)
4264 beg1 (point)
4265 end (progn (outline-next-heading) (point)))
4266 (catch :skip
4267 (goto-char beg)
4268 (org-agenda-skip)
4269 (setq str (buffer-substring-no-properties
4270 (point-at-bol)
4271 (if hdl-only (point-at-eol) end)))
4272 (mapc (lambda (wr) (when (string-match wr str)
4273 (goto-char (1- end))
4274 (throw :skip t)))
4275 regexps-)
4276 (mapc (lambda (wr) (unless (string-match wr str)
4277 (goto-char (1- end))
4278 (throw :skip t)))
4279 (if todo-only
4280 (cons (concat "^\*+[ \t]+" org-not-done-regexp)
4281 regexps+)
4282 regexps+))
4283 (goto-char beg)
4284 (setq marker (org-agenda-new-marker (point))
4285 category (org-get-category)
4286 category-pos (get-text-property (point) 'org-category-position)
4287 tags (org-get-tags-at (point))
4288 txt (org-agenda-format-item
4289 ""
4290 (buffer-substring-no-properties
4291 beg1 (point-at-eol))
4292 category tags t))
4293 (org-add-props txt props
4294 'org-marker marker 'org-hd-marker marker
4295 'org-todo-regexp org-todo-regexp
4296 'org-complex-heading-regexp org-complex-heading-regexp
4297 'priority 1000 'org-category category
4298 'org-category-position category-pos
4299 'type "search")
4300 (push txt ee)
4301 (goto-char (1- end))))))))))
4302 (setq rtn (nreverse ee))
4303 (setq rtnall (append rtnall rtn)))
4304 (if org-agenda-overriding-header
4305 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4306 nil 'face 'org-agenda-structure) "\n")
4307 (insert "Search words: ")
4308 (add-text-properties (point-min) (1- (point))
4309 (list 'face 'org-agenda-structure))
4310 (setq pos (point))
4311 (insert string "\n")
4312 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
4313 (setq pos (point))
4314 (unless org-agenda-multi
4315 (insert "Press `[', `]' to add/sub word, `{', `}' to add/sub regexp, `C-u r' to edit\n")
4316 (add-text-properties pos (1- (point))
4317 (list 'face 'org-agenda-structure))))
4318 (org-agenda-mark-header-line (point-min))
4319 (when rtnall
4320 (insert (org-agenda-finalize-entries rtnall) "\n"))
4321 (goto-char (point-min))
4322 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4323 (add-text-properties (point-min) (point-max)
4324 `(org-agenda-type search
4325 org-last-args (,todo-only ,string ,edit-at)
4326 org-redo-cmd ,org-agenda-redo-command
4327 org-series-cmd ,org-cmd))
4328 (org-agenda-finalize)
4329 (setq buffer-read-only t))))
4330
4331 ;;; Agenda TODO list
4332
4333 (defvar org-select-this-todo-keyword nil)
4334 (defvar org-last-arg nil)
4335
4336 ;;;###autoload
4337 (defun org-todo-list (&optional arg)
4338 "Show all (not done) TODO entries from all agenda file in a single list.
4339 The prefix arg can be used to select a specific TODO keyword and limit
4340 the list to these. When using \\[universal-argument], you will be prompted
4341 for a keyword. A numeric prefix directly selects the Nth keyword in
4342 `org-todo-keywords-1'."
4343 (interactive "P")
4344 (if org-agenda-overriding-arguments
4345 (setq arg org-agenda-overriding-arguments))
4346 (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
4347 (let* ((today (org-today))
4348 (date (calendar-gregorian-from-absolute today))
4349 (kwds org-todo-keywords-for-agenda)
4350 (completion-ignore-case t)
4351 (org-select-this-todo-keyword
4352 (if (stringp arg) arg
4353 (and arg (integerp arg) (> arg 0)
4354 (nth (1- arg) kwds))))
4355 rtn rtnall files file pos)
4356 (when (equal arg '(4))
4357 (setq org-select-this-todo-keyword
4358 (org-icompleting-read "Keyword (or KWD1|K2D2|...): "
4359 (mapcar 'list kwds) nil nil)))
4360 (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
4361 (catch 'exit
4362 (if org-agenda-sticky
4363 (setq org-agenda-buffer-name
4364 (if (stringp org-select-this-todo-keyword)
4365 (format "*Org Agenda(%s:%s)*" (or org-keys "t")
4366 org-select-this-todo-keyword)
4367 (format "*Org Agenda(%s)*" (or org-keys "t")))))
4368 (org-agenda-prepare "TODO")
4369 (org-compile-prefix-format 'todo)
4370 (org-set-sorting-strategy 'todo)
4371 (setq org-agenda-redo-command
4372 `(org-todo-list (or (and (numberp current-prefix-arg)
4373 current-prefix-arg)
4374 ,org-select-this-todo-keyword
4375 current-prefix-arg ,arg)))
4376 (setq files (org-agenda-files nil 'ifmode)
4377 rtnall nil)
4378 (while (setq file (pop files))
4379 (catch 'nextfile
4380 (org-check-agenda-file file)
4381 (setq rtn (org-agenda-get-day-entries file date :todo))
4382 (setq rtnall (append rtnall rtn))))
4383 (if org-agenda-overriding-header
4384 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4385 nil 'face 'org-agenda-structure) "\n")
4386 (insert "Global list of TODO items of type: ")
4387 (add-text-properties (point-min) (1- (point))
4388 (list 'face 'org-agenda-structure
4389 'short-heading
4390 (concat "ToDo: "
4391 (or org-select-this-todo-keyword "ALL"))))
4392 (org-agenda-mark-header-line (point-min))
4393 (setq pos (point))
4394 (insert (or org-select-this-todo-keyword "ALL") "\n")
4395 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
4396 (setq pos (point))
4397 (unless org-agenda-multi
4398 (insert "Available with `N r': (0)[ALL]")
4399 (let ((n 0) s)
4400 (mapc (lambda (x)
4401 (setq s (format "(%d)%s" (setq n (1+ n)) x))
4402 (if (> (+ (current-column) (string-width s) 1) (frame-width))
4403 (insert "\n "))
4404 (insert " " s))
4405 kwds))
4406 (insert "\n"))
4407 (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
4408 (org-agenda-mark-header-line (point-min))
4409 (when rtnall
4410 (insert (org-agenda-finalize-entries rtnall) "\n"))
4411 (goto-char (point-min))
4412 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4413 (add-text-properties (point-min) (point-max)
4414 `(org-agenda-type todo
4415 org-last-args ,arg
4416 org-redo-cmd ,org-agenda-redo-command
4417 org-series-cmd ,org-cmd))
4418 (org-agenda-finalize)
4419 (setq buffer-read-only t))))
4420
4421 ;;; Agenda tags match
4422
4423 ;;;###autoload
4424 (defun org-tags-view (&optional todo-only match)
4425 "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
4426 The prefix arg TODO-ONLY limits the search to TODO entries."
4427 (interactive "P")
4428 (if org-agenda-overriding-arguments
4429 (setq todo-only (car org-agenda-overriding-arguments)
4430 match (nth 1 org-agenda-overriding-arguments)))
4431 (let* ((org-tags-match-list-sublevels
4432 org-tags-match-list-sublevels)
4433 (completion-ignore-case t)
4434 rtn rtnall files file pos matcher
4435 buffer)
4436 (when (and (stringp match) (not (string-match "\\S-" match)))
4437 (setq match nil))
4438 (setq matcher (org-make-tags-matcher match)
4439 match (car matcher) matcher (cdr matcher))
4440 (catch 'exit
4441 (if org-agenda-sticky
4442 (setq org-agenda-buffer-name
4443 (if (stringp match)
4444 (format "*Org Agenda(%s:%s)*"
4445 (or org-keys (or (and todo-only "M") "m")) match)
4446 (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
4447 (org-agenda-prepare (concat "TAGS " match))
4448 (org-compile-prefix-format 'tags)
4449 (org-set-sorting-strategy 'tags)
4450 (setq org-agenda-query-string match)
4451 (setq org-agenda-redo-command
4452 (list 'org-tags-view `(quote ,todo-only)
4453 (list 'if 'current-prefix-arg nil `(quote ,org-agenda-query-string))))
4454 (setq files (org-agenda-files nil 'ifmode)
4455 rtnall nil)
4456 (while (setq file (pop files))
4457 (catch 'nextfile
4458 (org-check-agenda-file file)
4459 (setq buffer (if (file-exists-p file)
4460 (org-get-agenda-file-buffer file)
4461 (error "No such file %s" file)))
4462 (if (not buffer)
4463 ;; If file does not exist, error message to agenda
4464 (setq rtn (list
4465 (format "ORG-AGENDA-ERROR: No such org-file %s" file))
4466 rtnall (append rtnall rtn))
4467 (with-current-buffer buffer
4468 (unless (derived-mode-p 'org-mode)
4469 (error "Agenda file %s is not in `org-mode'" file))
4470 (save-excursion
4471 (save-restriction
4472 (if org-agenda-restrict
4473 (narrow-to-region org-agenda-restrict-begin
4474 org-agenda-restrict-end)
4475 (widen))
4476 (setq rtn (org-scan-tags 'agenda matcher todo-only))
4477 (setq rtnall (append rtnall rtn))))))))
4478 (if org-agenda-overriding-header
4479 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4480 nil 'face 'org-agenda-structure) "\n")
4481 (insert "Headlines with TAGS match: ")
4482 (add-text-properties (point-min) (1- (point))
4483 (list 'face 'org-agenda-structure
4484 'short-heading
4485 (concat "Match: " match)))
4486 (setq pos (point))
4487 (insert match "\n")
4488 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
4489 (setq pos (point))
4490 (unless org-agenda-multi
4491 (insert "Press `C-u r' to search again with new search string\n"))
4492 (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
4493 (org-agenda-mark-header-line (point-min))
4494 (when rtnall
4495 (insert (org-agenda-finalize-entries rtnall) "\n"))
4496 (goto-char (point-min))
4497 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4498 (add-text-properties (point-min) (point-max)
4499 `(org-agenda-type tags
4500 org-last-args (,todo-only ,match)
4501 org-redo-cmd ,org-agenda-redo-command
4502 org-series-cmd ,org-cmd))
4503 (org-agenda-finalize)
4504 (setq buffer-read-only t))))
4505
4506 ;;; Agenda Finding stuck projects
4507
4508 (defvar org-agenda-skip-regexp nil
4509 "Regular expression used in skipping subtrees for the agenda.
4510 This is basically a temporary global variable that can be set and then
4511 used by user-defined selections using `org-agenda-skip-function'.")
4512
4513 (defvar org-agenda-overriding-header nil
4514 "When set during agenda, todo and tags searches it replaces the header.
4515 This variable should not be set directly, but custom commands can bind it
4516 in the options section.")
4517
4518 (defun org-agenda-skip-entry-when-regexp-matches ()
4519 "Check if the current entry contains match for `org-agenda-skip-regexp'.
4520 If yes, it returns the end position of this entry, causing agenda commands
4521 to skip the entry but continuing the search in the subtree. This is a
4522 function that can be put into `org-agenda-skip-function' for the duration
4523 of a command."
4524 (let ((end (save-excursion (org-end-of-subtree t)))
4525 skip)
4526 (save-excursion
4527 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4528 (and skip end)))
4529
4530 (defun org-agenda-skip-subtree-when-regexp-matches ()
4531 "Check if the current subtree contains match for `org-agenda-skip-regexp'.
4532 If yes, it returns the end position of this tree, causing agenda commands
4533 to skip this subtree. This is a function that can be put into
4534 `org-agenda-skip-function' for the duration of a command."
4535 (let ((end (save-excursion (org-end-of-subtree t)))
4536 skip)
4537 (save-excursion
4538 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4539 (and skip end)))
4540
4541 (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
4542 "Check if the current subtree contains match for `org-agenda-skip-regexp'.
4543 If yes, it returns the end position of the current entry (NOT the tree),
4544 causing agenda commands to skip the entry but continuing the search in
4545 the subtree. This is a function that can be put into
4546 `org-agenda-skip-function' for the duration of a command. An important
4547 use of this function is for the stuck project list."
4548 (let ((end (save-excursion (org-end-of-subtree t)))
4549 (entry-end (save-excursion (outline-next-heading) (1- (point))))
4550 skip)
4551 (save-excursion
4552 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4553 (and skip entry-end)))
4554
4555 (defun org-agenda-skip-entry-if (&rest conditions)
4556 "Skip entry if any of CONDITIONS is true.
4557 See `org-agenda-skip-if' for details."
4558 (org-agenda-skip-if nil conditions))
4559
4560 (defun org-agenda-skip-subtree-if (&rest conditions)
4561 "Skip entry if any of CONDITIONS is true.
4562 See `org-agenda-skip-if' for details."
4563 (org-agenda-skip-if t conditions))
4564
4565 (defun org-agenda-skip-if (subtree conditions)
4566 "Checks current entity for CONDITIONS.
4567 If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
4568 the entry (i.e. the text before the next heading) is checked.
4569
4570 CONDITIONS is a list of symbols, boolean OR is used to combine the results
4571 from different tests. Valid conditions are:
4572
4573 scheduled Check if there is a scheduled cookie
4574 notscheduled Check if there is no scheduled cookie
4575 deadline Check if there is a deadline
4576 notdeadline Check if there is no deadline
4577 timestamp Check if there is a timestamp (also deadline or scheduled)
4578 nottimestamp Check if there is no timestamp (also deadline or scheduled)
4579 regexp Check if regexp matches
4580 notregexp Check if regexp does not match.
4581 todo Check if TODO keyword matches
4582 nottodo Check if TODO keyword does not match
4583
4584 The regexp is taken from the conditions list, it must come right after
4585 the `regexp' or `notregexp' element.
4586
4587 `todo' and `nottodo' accept as an argument a list of todo
4588 keywords, which may include \"*\" to match any todo keyword.
4589
4590 (org-agenda-skip-entry-if 'todo '(\"TODO\" \"WAITING\"))
4591
4592 would skip all entries with \"TODO\" or \"WAITING\" keywords.
4593
4594 Instead of a list, a keyword class may be given. For example:
4595
4596 (org-agenda-skip-entry-if 'nottodo 'done)
4597
4598 would skip entries that haven't been marked with any of \"DONE\"
4599 keywords. Possible classes are: `todo', `done', `any'.
4600
4601 If any of these conditions is met, this function returns the end point of
4602 the entity, causing the search to continue from there. This is a function
4603 that can be put into `org-agenda-skip-function' for the duration of a command."
4604 (let (beg end m)
4605 (org-back-to-heading t)
4606 (setq beg (point)
4607 end (if subtree
4608 (progn (org-end-of-subtree t) (point))
4609 (progn (outline-next-heading) (1- (point)))))
4610 (goto-char beg)
4611 (and
4612 (or
4613 (and (memq 'scheduled conditions)
4614 (re-search-forward org-scheduled-time-regexp end t))
4615 (and (memq 'notscheduled conditions)
4616 (not (re-search-forward org-scheduled-time-regexp end t)))
4617 (and (memq 'deadline conditions)
4618 (re-search-forward org-deadline-time-regexp end t))
4619 (and (memq 'notdeadline conditions)
4620 (not (re-search-forward org-deadline-time-regexp end t)))
4621 (and (memq 'timestamp conditions)
4622 (re-search-forward org-ts-regexp end t))
4623 (and (memq 'nottimestamp conditions)
4624 (not (re-search-forward org-ts-regexp end t)))
4625 (and (setq m (memq 'regexp conditions))
4626 (stringp (nth 1 m))
4627 (re-search-forward (nth 1 m) end t))
4628 (and (setq m (memq 'notregexp conditions))
4629 (stringp (nth 1 m))
4630 (not (re-search-forward (nth 1 m) end t)))
4631 (and (or
4632 (setq m (memq 'nottodo conditions))
4633 (setq m (memq 'todo-unblocked conditions))
4634 (setq m (memq 'nottodo-unblocked conditions))
4635 (setq m (memq 'todo conditions)))
4636 (org-agenda-skip-if-todo m end)))
4637 end)))
4638
4639 (defun org-agenda-skip-if-todo (args end)
4640 "Helper function for `org-agenda-skip-if', do not use it directly.
4641 ARGS is a list with first element either `todo', `nottodo',
4642 `todo-unblocked' or `nottodo-unblocked'. The remainder is either
4643 a list of TODO keywords, or a state symbol `todo' or `done' or
4644 `any'."
4645 (let ((kw (car args))
4646 (arg (cadr args))
4647 todo-wds todo-re)
4648 (setq todo-wds
4649 (org-uniquify
4650 (cond
4651 ((listp arg) ;; list of keywords
4652 (if (member "*" arg)
4653 (mapcar 'substring-no-properties org-todo-keywords-1)
4654 arg))
4655 ((symbolp arg) ;; keyword class name
4656 (cond
4657 ((eq arg 'todo)
4658 (org-delete-all org-done-keywords
4659 (mapcar 'substring-no-properties
4660 org-todo-keywords-1)))
4661 ((eq arg 'done) org-done-keywords)
4662 ((eq arg 'any)
4663 (mapcar 'substring-no-properties org-todo-keywords-1)))))))
4664 (setq todo-re
4665 (concat "^\\*+[ \t]+\\<\\("
4666 (mapconcat 'identity todo-wds "\\|")
4667 "\\)\\>"))
4668 (cond
4669 ((eq kw 'todo) (re-search-forward todo-re end t))
4670 ((eq kw 'nottodo) (not (re-search-forward todo-re end t)))
4671 ((eq kw 'todo-unblocked)
4672 (catch 'unblocked
4673 (while (re-search-forward todo-re end t)
4674 (or (org-entry-blocked-p) (throw 'unblocked t)))
4675 nil))
4676 ((eq kw 'nottodo-unblocked)
4677 (catch 'unblocked
4678 (while (re-search-forward todo-re end t)
4679 (or (org-entry-blocked-p) (throw 'unblocked nil)))
4680 t))
4681 )))
4682
4683 ;;;###autoload
4684 (defun org-agenda-list-stuck-projects (&rest ignore)
4685 "Create agenda view for projects that are stuck.
4686 Stuck projects are project that have no next actions. For the definitions
4687 of what a project is and how to check if it stuck, customize the variable
4688 `org-stuck-projects'."
4689 (interactive)
4690 (let* ((org-agenda-skip-function
4691 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
4692 ;; We could have used org-agenda-skip-if here.
4693 (org-agenda-overriding-header
4694 (or org-agenda-overriding-header "List of stuck projects: "))
4695 (matcher (nth 0 org-stuck-projects))
4696 (todo (nth 1 org-stuck-projects))
4697 (todo-wds (if (member "*" todo)
4698 (progn
4699 (org-agenda-prepare-buffers (org-agenda-files
4700 nil 'ifmode))
4701 (org-delete-all
4702 org-done-keywords-for-agenda
4703 (copy-sequence org-todo-keywords-for-agenda)))
4704 todo))
4705 (todo-re (concat "^\\*+[ \t]+\\("
4706 (mapconcat 'identity todo-wds "\\|")
4707 "\\)\\>"))
4708 (tags (nth 2 org-stuck-projects))
4709 (tags-re (if (member "*" tags)
4710 (concat org-outline-regexp-bol
4711 (org-re ".*:[[:alnum:]_@#%]+:[ \t]*$"))
4712 (if tags
4713 (concat org-outline-regexp-bol
4714 ".*:\\("
4715 (mapconcat 'identity tags "\\|")
4716 (org-re "\\):[[:alnum:]_@#%:]*[ \t]*$")))))
4717 (gen-re (nth 3 org-stuck-projects))
4718 (re-list
4719 (delq nil
4720 (list
4721 (if todo todo-re)
4722 (if tags tags-re)
4723 (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
4724 gen-re)))))
4725 (setq org-agenda-skip-regexp
4726 (if re-list
4727 (mapconcat 'identity re-list "\\|")
4728 (error "No information how to identify unstuck projects")))
4729 (org-tags-view nil matcher)
4730 (with-current-buffer org-agenda-buffer-name
4731 (setq org-agenda-redo-command
4732 `(org-agenda-list-stuck-projects ,current-prefix-arg)))))
4733
4734 ;;; Diary integration
4735
4736 (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
4737 (defvar diary-list-entries-hook)
4738 (defvar diary-time-regexp)
4739 (defun org-get-entries-from-diary (date)
4740 "Get the (Emacs Calendar) diary entries for DATE."
4741 (require 'diary-lib)
4742 (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
4743 (diary-display-hook '(fancy-diary-display))
4744 (diary-display-function 'fancy-diary-display)
4745 (pop-up-frames nil)
4746 (diary-list-entries-hook
4747 (cons 'org-diary-default-entry diary-list-entries-hook))
4748 (diary-file-name-prefix-function nil) ; turn this feature off
4749 (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
4750 entries
4751 (org-disable-agenda-to-diary t))
4752 (save-excursion
4753 (save-window-excursion
4754 (funcall (if (fboundp 'diary-list-entries)
4755 'diary-list-entries 'list-diary-entries)
4756 date 1)))
4757 (if (not (get-buffer diary-fancy-buffer))
4758 (setq entries nil)
4759 (with-current-buffer diary-fancy-buffer
4760 (setq buffer-read-only nil)
4761 (if (zerop (buffer-size))
4762 ;; No entries
4763 (setq entries nil)
4764 ;; Omit the date and other unnecessary stuff
4765 (org-agenda-cleanup-fancy-diary)
4766 ;; Add prefix to each line and extend the text properties
4767 (if (zerop (buffer-size))
4768 (setq entries nil)
4769 (setq entries (buffer-substring (point-min) (- (point-max) 1)))
4770 (setq entries
4771 (with-temp-buffer
4772 (insert entries) (goto-char (point-min))
4773 (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
4774 (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
4775 (replace-match (concat "; " (match-string 1)))))
4776 (buffer-string)))))
4777 (set-buffer-modified-p nil)
4778 (kill-buffer diary-fancy-buffer)))
4779 (when entries
4780 (setq entries (org-split-string entries "\n"))
4781 (setq entries
4782 (mapcar
4783 (lambda (x)
4784 (setq x (org-agenda-format-item "" x "Diary" nil 'time))
4785 ;; Extend the text properties to the beginning of the line
4786 (org-add-props x (text-properties-at (1- (length x)) x)
4787 'type "diary" 'date date 'face 'org-agenda-diary))
4788 entries)))))
4789
4790 (defvar org-agenda-cleanup-fancy-diary-hook nil
4791 "Hook run when the fancy diary buffer is cleaned up.")
4792
4793 (defun org-agenda-cleanup-fancy-diary ()
4794 "Remove unwanted stuff in buffer created by `fancy-diary-display'.
4795 This gets rid of the date, the underline under the date, and
4796 the dummy entry installed by `org-mode' to ensure non-empty diary for each
4797 date. It also removes lines that contain only whitespace."
4798 (goto-char (point-min))
4799 (if (looking-at ".*?:[ \t]*")
4800 (progn
4801 (replace-match "")
4802 (re-search-forward "\n=+$" nil t)
4803 (replace-match "")
4804 (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
4805 (re-search-forward "\n=+$" nil t)
4806 (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
4807 (goto-char (point-min))
4808 (while (re-search-forward "^ +\n" nil t)
4809 (replace-match ""))
4810 (goto-char (point-min))
4811 (if (re-search-forward "^Org-mode dummy\n?" nil t)
4812 (replace-match ""))
4813 (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
4814
4815 ;; Make sure entries from the diary have the right text properties.
4816 (eval-after-load "diary-lib"
4817 '(if (boundp 'diary-modify-entry-list-string-function)
4818 ;; We can rely on the hook, nothing to do
4819 nil
4820 ;; Hook not available, must use advice to make this work
4821 (defadvice add-to-diary-list (before org-mark-diary-entry activate)
4822 "Make the position visible."
4823 (if (and org-disable-agenda-to-diary ;; called from org-agenda
4824 (stringp string)
4825 buffer-file-name)
4826 (setq string (org-modify-diary-entry-string string))))))
4827
4828 (defun org-modify-diary-entry-string (string)
4829 "Add text properties to string, allowing org-mode to act on it."
4830 (org-add-props string nil
4831 'mouse-face 'highlight
4832 'help-echo (if buffer-file-name
4833 (format "mouse-2 or RET jump to diary file %s"
4834 (abbreviate-file-name buffer-file-name))
4835 "")
4836 'org-agenda-diary-link t
4837 'org-marker (org-agenda-new-marker (point-at-bol))))
4838
4839 (defun org-diary-default-entry ()
4840 "Add a dummy entry to the diary.
4841 Needed to avoid empty dates which mess up holiday display."
4842 ;; Catch the error if dealing with the new add-to-diary-alist
4843 (when org-disable-agenda-to-diary
4844 (condition-case nil
4845 (org-add-to-diary-list original-date "Org-mode dummy" "")
4846 (error
4847 (org-add-to-diary-list original-date "Org-mode dummy" "" nil)))))
4848
4849 (defun org-add-to-diary-list (&rest args)
4850 (if (fboundp 'diary-add-to-list)
4851 (apply 'diary-add-to-list args)
4852 (apply 'add-to-diary-list args)))
4853
4854 (defvar org-diary-last-run-time nil)
4855
4856 ;;;###autoload
4857 (defun org-diary (&rest args)
4858 "Return diary information from org files.
4859 This function can be used in a \"sexp\" diary entry in the Emacs calendar.
4860 It accesses org files and extracts information from those files to be
4861 listed in the diary. The function accepts arguments specifying what
4862 items should be listed. For a list of arguments allowed here, see the
4863 variable `org-agenda-entry-types'.
4864
4865 The call in the diary file should look like this:
4866
4867 &%%(org-diary) ~/path/to/some/orgfile.org
4868
4869 Use a separate line for each org file to check. Or, if you omit the file name,
4870 all files listed in `org-agenda-files' will be checked automatically:
4871
4872 &%%(org-diary)
4873
4874 If you don't give any arguments (as in the example above), the default
4875 arguments (:deadline :scheduled :timestamp :sexp) are used.
4876 So the example above may also be written as
4877
4878 &%%(org-diary :deadline :timestamp :sexp :scheduled)
4879
4880 The function expects the lisp variables `entry' and `date' to be provided
4881 by the caller, because this is how the calendar works. Don't use this
4882 function from a program - use `org-agenda-get-day-entries' instead."
4883 (when (> (- (org-float-time)
4884 org-agenda-last-marker-time)
4885 5)
4886 ;; I am not sure if this works with sticky agendas, because the marker
4887 ;; list is then no longer a global variable.
4888 (org-agenda-reset-markers))
4889 (org-compile-prefix-format 'agenda)
4890 (org-set-sorting-strategy 'agenda)
4891 (setq args (or args '(:deadline :scheduled :timestamp :sexp)))
4892 (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
4893 (list entry)
4894 (org-agenda-files t)))
4895 (time (org-float-time))
4896 file rtn results)
4897 (when (or (not org-diary-last-run-time)
4898 (> (- time
4899 org-diary-last-run-time)
4900 3))
4901 (org-agenda-prepare-buffers files))
4902 (setq org-diary-last-run-time time)
4903 ;; If this is called during org-agenda, don't return any entries to
4904 ;; the calendar. Org Agenda will list these entries itself.
4905 (if org-disable-agenda-to-diary (setq files nil))
4906 (while (setq file (pop files))
4907 (setq rtn (apply 'org-agenda-get-day-entries file date args))
4908 (setq results (append results rtn)))
4909 (if results
4910 (concat (org-agenda-finalize-entries results) "\n"))))
4911
4912 ;;; Agenda entry finders
4913
4914 (defun org-agenda-get-day-entries (file date &rest args)
4915 "Does the work for `org-diary' and `org-agenda'.
4916 FILE is the path to a file to be checked for entries. DATE is date like
4917 the one returned by `calendar-current-date'. ARGS are symbols indicating
4918 which kind of entries should be extracted. For details about these, see
4919 the documentation of `org-diary'."
4920 (setq args (or args '(:deadline :scheduled :timestamp :sexp)))
4921 (let* ((org-startup-folded nil)
4922 (org-startup-align-all-tables nil)
4923 (buffer (if (file-exists-p file)
4924 (org-get-agenda-file-buffer file)
4925 (error "No such file %s" file)))
4926 arg results rtn deadline-results)
4927 (if (not buffer)
4928 ;; If file does not exist, make sure an error message ends up in diary
4929 (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
4930 (with-current-buffer buffer
4931 (unless (derived-mode-p 'org-mode)
4932 (error "Agenda file %s is not in `org-mode'" file))
4933 (setq org-agenda-buffer (or org-agenda-buffer buffer))
4934 (let ((case-fold-search nil))
4935 (save-excursion
4936 (save-restriction
4937 (if org-agenda-restrict
4938 (narrow-to-region org-agenda-restrict-begin
4939 org-agenda-restrict-end)
4940 (widen))
4941 ;; The way we repeatedly append to `results' makes it O(n^2) :-(
4942 (while (setq arg (pop args))
4943 (cond
4944 ((and (eq arg :todo)
4945 (equal date (calendar-gregorian-from-absolute
4946 (org-today))))
4947 (setq rtn (org-agenda-get-todos))
4948 (setq results (append results rtn)))
4949 ((eq arg :timestamp)
4950 (setq rtn (org-agenda-get-blocks))
4951 (setq results (append results rtn))
4952 (setq rtn (org-agenda-get-timestamps deadline-results))
4953 (setq results (append results rtn)))
4954 ((eq arg :sexp)
4955 (setq rtn (org-agenda-get-sexps))
4956 (setq results (append results rtn)))
4957 ((eq arg :scheduled)
4958 (setq rtn (org-agenda-get-scheduled deadline-results))
4959 (setq results (append results rtn)))
4960 ((eq arg :closed)
4961 (setq rtn (org-agenda-get-progress))
4962 (setq results (append results rtn)))
4963 ((eq arg :deadline)
4964 (setq rtn (org-agenda-get-deadlines))
4965 (setq deadline-results (copy-sequence rtn))
4966 (setq results (append results rtn))))))))
4967 results))))
4968
4969 (defvar org-heading-keyword-regexp-format) ; defined in org.el
4970 (defun org-agenda-get-todos ()
4971 "Return the TODO information for agenda display."
4972 (let* ((props (list 'face nil
4973 'done-face 'org-agenda-done
4974 'org-not-done-regexp org-not-done-regexp
4975 'org-todo-regexp org-todo-regexp
4976 'org-complex-heading-regexp org-complex-heading-regexp
4977 'mouse-face 'highlight
4978 'help-echo
4979 (format "mouse-2 or RET jump to org file %s"
4980 (abbreviate-file-name buffer-file-name))))
4981 (regexp (format org-heading-keyword-regexp-format
4982 (cond
4983 ((and org-select-this-todo-keyword
4984 (equal org-select-this-todo-keyword "*"))
4985 org-todo-regexp)
4986 (org-select-this-todo-keyword
4987 (concat "\\("
4988 (mapconcat 'identity
4989 (org-split-string
4990 org-select-this-todo-keyword
4991 "|")
4992 "\\|") "\\)"))
4993 (t org-not-done-regexp))))
4994 marker priority category category-pos tags todo-state
4995 ee txt beg end)
4996 (goto-char (point-min))
4997 (while (re-search-forward regexp nil t)
4998 (catch :skip
4999 (save-match-data
5000 (beginning-of-line)
5001 (org-agenda-skip)
5002 (setq beg (point) end (save-excursion (outline-next-heading) (point)))
5003 (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
5004 (goto-char (1+ beg))
5005 (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
5006 (throw :skip nil)))
5007 (goto-char (match-beginning 2))
5008 (setq marker (org-agenda-new-marker (match-beginning 0))
5009 category (org-get-category)
5010 category-pos (get-text-property (point) 'org-category-position)
5011 txt (org-trim
5012 (buffer-substring (match-beginning 2) (match-end 0)))
5013 tags (org-get-tags-at (point))
5014 txt (org-agenda-format-item "" txt category tags t)
5015 priority (1+ (org-get-priority txt))
5016 todo-state (org-get-todo-state))
5017 (org-add-props txt props
5018 'org-marker marker 'org-hd-marker marker
5019 'priority priority 'org-category category
5020 'org-category-position category-pos
5021 'type "todo" 'todo-state todo-state)
5022 (push txt ee)
5023 (if org-agenda-todo-list-sublevels
5024 (goto-char (match-end 2))
5025 (org-end-of-subtree 'invisible))))
5026 (nreverse ee)))
5027
5028 (defun org-agenda-todo-custom-ignore-p (time n)
5029 "Check whether timestamp is farther away than n number of days.
5030 This function is invoked if `org-agenda-todo-ignore-deadlines',
5031 `org-agenda-todo-ignore-scheduled' or
5032 `org-agenda-todo-ignore-timestamp' is set to an integer."
5033 (let ((days (org-days-to-time time)))
5034 (if (>= n 0)
5035 (>= days n)
5036 (<= days n))))
5037
5038 ;;;###autoload
5039 (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
5040 (&optional end)
5041 "Do we have a reason to ignore this TODO entry because it has a time stamp?"
5042 (when (or org-agenda-todo-ignore-with-date
5043 org-agenda-todo-ignore-scheduled
5044 org-agenda-todo-ignore-deadlines
5045 org-agenda-todo-ignore-timestamp)
5046 (setq end (or end (save-excursion (outline-next-heading) (point))))
5047 (save-excursion
5048 (or (and org-agenda-todo-ignore-with-date
5049 (re-search-forward org-ts-regexp end t))
5050 (and org-agenda-todo-ignore-scheduled
5051 (re-search-forward org-scheduled-time-regexp end t)
5052 (cond
5053 ((eq org-agenda-todo-ignore-scheduled 'future)
5054 (> (org-days-to-time (match-string 1)) 0))
5055 ((eq org-agenda-todo-ignore-scheduled 'past)
5056 (<= (org-days-to-time (match-string 1)) 0))
5057 ((numberp org-agenda-todo-ignore-scheduled)
5058 (org-agenda-todo-custom-ignore-p
5059 (match-string 1) org-agenda-todo-ignore-scheduled))
5060 (t)))
5061 (and org-agenda-todo-ignore-deadlines
5062 (re-search-forward org-deadline-time-regexp end t)
5063 (cond
5064 ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
5065 ((eq org-agenda-todo-ignore-deadlines 'far)
5066 (not (org-deadline-close (match-string 1))))
5067 ((eq org-agenda-todo-ignore-deadlines 'future)
5068 (> (org-days-to-time (match-string 1)) 0))
5069 ((eq org-agenda-todo-ignore-deadlines 'past)
5070 (<= (org-days-to-time (match-string 1)) 0))
5071 ((numberp org-agenda-todo-ignore-deadlines)
5072 (org-agenda-todo-custom-ignore-p
5073 (match-string 1) org-agenda-todo-ignore-deadlines))
5074 (t (org-deadline-close (match-string 1)))))
5075 (and org-agenda-todo-ignore-timestamp
5076 (let ((buffer (current-buffer))
5077 (regexp
5078 (concat
5079 org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
5080 (start (point)))
5081 ;; Copy current buffer into a temporary one
5082 (with-temp-buffer
5083 (insert-buffer-substring buffer start end)
5084 (goto-char (point-min))
5085 ;; Delete SCHEDULED and DEADLINE items
5086 (while (re-search-forward regexp end t)
5087 (delete-region (match-beginning 0) (match-end 0)))
5088 (goto-char (point-min))
5089 ;; No search for timestamp left
5090 (when (re-search-forward org-ts-regexp nil t)
5091 (cond
5092 ((eq org-agenda-todo-ignore-timestamp 'future)
5093 (> (org-days-to-time (match-string 1)) 0))
5094 ((eq org-agenda-todo-ignore-timestamp 'past)
5095 (<= (org-days-to-time (match-string 1)) 0))
5096 ((numberp org-agenda-todo-ignore-timestamp)
5097 (org-agenda-todo-custom-ignore-p
5098 (match-string 1) org-agenda-todo-ignore-timestamp))
5099 (t))))))))))
5100
5101 (defconst org-agenda-no-heading-message
5102 "No heading for this item in buffer or region.")
5103
5104 (defun org-agenda-get-timestamps (&optional deadline-results)
5105 "Return the date stamp information for agenda display."
5106 (let* ((props (list 'face 'org-agenda-calendar-event
5107 'org-not-done-regexp org-not-done-regexp
5108 'org-todo-regexp org-todo-regexp
5109 'org-complex-heading-regexp org-complex-heading-regexp
5110 'mouse-face 'highlight
5111 'help-echo
5112 (format "mouse-2 or RET jump to org file %s"
5113 (abbreviate-file-name buffer-file-name))))
5114 (d1 (calendar-absolute-from-gregorian date))
5115 mm
5116 (deadline-position-alist
5117 (mapcar (lambda (a) (and (setq mm (get-text-property
5118 0 'org-hd-marker a))
5119 (cons (marker-position mm) a)))
5120 deadline-results))
5121 (remove-re org-ts-regexp)
5122 (regexp
5123 (concat
5124 (if org-agenda-include-inactive-timestamps "[[<]" "<")
5125 (regexp-quote
5126 (substring
5127 (format-time-string
5128 (car org-time-stamp-formats)
5129 (apply 'encode-time ; DATE bound by calendar
5130 (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
5131 1 11))
5132 "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
5133 "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
5134 marker hdmarker deadlinep scheduledp clockp closedp inactivep
5135 donep tmp priority category category-pos ee txt timestr tags
5136 b0 b3 e3 head todo-state end-of-match show-all warntime)
5137 (goto-char (point-min))
5138 (while (setq end-of-match (re-search-forward regexp nil t))
5139 (setq b0 (match-beginning 0)
5140 b3 (match-beginning 3) e3 (match-end 3)
5141 todo-state (save-match-data (ignore-errors (org-get-todo-state)))
5142 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
5143 (member todo-state
5144 org-agenda-repeating-timestamp-show-all)))
5145 (catch :skip
5146 (and (org-at-date-range-p) (throw :skip nil))
5147 (org-agenda-skip)
5148 (if (and (match-end 1)
5149 (not (= d1 (org-time-string-to-absolute
5150 (match-string 1) d1 nil show-all
5151 (current-buffer) b0))))
5152 (throw :skip nil))
5153 (if (and e3
5154 (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
5155 (throw :skip nil))
5156 (setq tmp (buffer-substring (max (point-min)
5157 (- b0 org-ds-keyword-length))
5158 b0)
5159 timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
5160 inactivep (= (char-after b0) ?\[)
5161 deadlinep (string-match org-deadline-regexp tmp)
5162 scheduledp (string-match org-scheduled-regexp tmp)
5163 closedp (and org-agenda-include-inactive-timestamps
5164 (string-match org-closed-string tmp))
5165 clockp (and org-agenda-include-inactive-timestamps
5166 (or (string-match org-clock-string tmp)
5167 (string-match "]-+\\'" tmp)))
5168 warntime (org-entry-get (point) "APPT_WARNTIME")
5169 donep (member todo-state org-done-keywords))
5170 (if (or scheduledp deadlinep closedp clockp
5171 (and donep org-agenda-skip-timestamp-if-done))
5172 (throw :skip t))
5173 (if (string-match ">" timestr)
5174 ;; substring should only run to end of time stamp
5175 (setq timestr (substring timestr 0 (match-end 0))))
5176 (setq marker (org-agenda-new-marker b0)
5177 category (org-get-category b0)
5178 category-pos (get-text-property b0 'org-category-position))
5179 (save-excursion
5180 (if (not (re-search-backward org-outline-regexp-bol nil t))
5181 (setq txt org-agenda-no-heading-message)
5182 (goto-char (match-beginning 0))
5183 (if (and (eq t org-agenda-skip-timestamp-if-deadline-is-shown)
5184 (assoc (point) deadline-position-alist))
5185 (throw :skip nil))
5186 (setq hdmarker (org-agenda-new-marker)
5187 tags (org-get-tags-at))
5188 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
5189 (setq head (or (match-string 1) ""))
5190 (setq txt (org-agenda-format-item
5191 (if inactivep org-agenda-inactive-leader nil)
5192 head category tags timestr
5193 remove-re t)))
5194 (setq priority (org-get-priority txt))
5195 (org-add-props txt props
5196 'org-marker marker 'org-hd-marker hdmarker)
5197 (org-add-props txt nil 'priority priority
5198 'org-category category 'date date
5199 'org-category-position category-pos
5200 'todo-state todo-state
5201 'warntime warntime
5202 'type "timestamp")
5203 (push txt ee))
5204 (if org-agenda-skip-additional-timestamps-same-entry
5205 (outline-next-heading)
5206 (goto-char end-of-match))))
5207 (nreverse ee)))
5208
5209 (defun org-agenda-get-sexps ()
5210 "Return the sexp information for agenda display."
5211 (require 'diary-lib)
5212 (let* ((props (list 'face 'org-agenda-calendar-sexp
5213 'mouse-face 'highlight
5214 'help-echo
5215 (format "mouse-2 or RET jump to org file %s"
5216 (abbreviate-file-name buffer-file-name))))
5217 (regexp "^&?%%(")
5218 marker category extra category-pos ee txt tags entry
5219 result beg b sexp sexp-entry todo-state warntime)
5220 (goto-char (point-min))
5221 (while (re-search-forward regexp nil t)
5222 (catch :skip
5223 (org-agenda-skip)
5224 (setq beg (match-beginning 0))
5225 (goto-char (1- (match-end 0)))
5226 (setq b (point))
5227 (forward-sexp 1)
5228 (setq sexp (buffer-substring b (point)))
5229 (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
5230 (org-trim (match-string 1))
5231 ""))
5232 (setq result (org-diary-sexp-entry sexp sexp-entry date))
5233 (when result
5234 (setq marker (org-agenda-new-marker beg)
5235 category (org-get-category beg)
5236 category-pos (get-text-property beg 'org-category-position)
5237 tags (save-excursion (org-backward-heading-same-level 0)
5238 (org-get-tags-at))
5239 todo-state (org-get-todo-state)
5240 warntime (org-entry-get (point) "APPT_WARNTIME"))
5241
5242 (dolist (r (if (stringp result)
5243 (list result)
5244 result)) ;; we expect a list here
5245 (when (and org-agenda-diary-sexp-prefix
5246 (string-match org-agenda-diary-sexp-prefix r))
5247 (setq extra (match-string 0 r)
5248 r (replace-match "" nil nil r)))
5249 (if (string-match "\\S-" r)
5250 (setq txt r)
5251 (setq txt "SEXP entry returned empty string"))
5252
5253 (setq txt (org-agenda-format-item
5254 extra txt category tags 'time))
5255 (org-add-props txt props 'org-marker marker)
5256 (org-add-props txt nil
5257 'org-category category 'date date 'todo-state todo-state
5258 'org-category-position category-pos 'tags tags
5259 'type "sexp" 'warntime warntime)
5260 (push txt ee)))))
5261 (nreverse ee)))
5262
5263 ;; Calendar sanity: define some functions that are independent of
5264 ;; `calendar-date-style'.
5265 ;; Normally I would like to use ISO format when calling the diary functions,
5266 ;; but to make sure we still have Emacs 22 compatibility we bind
5267 ;; also `european-calendar-style' and use european format
5268 (defun org-anniversary (year month day &optional mark)
5269 "Like `diary-anniversary', but with fixed (ISO) order of arguments."
5270 (org-no-warnings
5271 (let ((calendar-date-style 'european) (european-calendar-style t))
5272 (diary-anniversary day month year mark))))
5273 (defun org-cyclic (N year month day &optional mark)
5274 "Like `diary-cyclic', but with fixed (ISO) order of arguments."
5275 (org-no-warnings
5276 (let ((calendar-date-style 'european) (european-calendar-style t))
5277 (diary-cyclic N day month year mark))))
5278 (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
5279 "Like `diary-block', but with fixed (ISO) order of arguments."
5280 (org-no-warnings
5281 (let ((calendar-date-style 'european) (european-calendar-style t))
5282 (diary-block D1 M1 Y1 D2 M2 Y2 mark))))
5283 (defun org-date (year month day &optional mark)
5284 "Like `diary-date', but with fixed (ISO) order of arguments."
5285 (org-no-warnings
5286 (let ((calendar-date-style 'european) (european-calendar-style t))
5287 (diary-date day month year mark))))
5288 (defalias 'org-float 'diary-float)
5289
5290 ;; Define the` org-class' function
5291 (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
5292 "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
5293 DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
5294 SKIP-WEEKS is any number of ISO weeks in the block period for which the
5295 item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
5296 `holidays', then any date that is known by the Emacs calendar to be a
5297 holiday will also be skipped."
5298 (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
5299 (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
5300 (d (calendar-absolute-from-gregorian date)))
5301 (and
5302 (<= date1 d)
5303 (<= d date2)
5304 (= (calendar-day-of-week date) dayname)
5305 (or (not skip-weeks)
5306 (progn
5307 (require 'cal-iso)
5308 (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
5309 (not (and (memq 'holidays skip-weeks)
5310 (calendar-check-holidays date)))
5311 entry)))
5312
5313 (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname &rest skip-weeks)
5314 "Like `org-class', but honor `calendar-date-style'.
5315 The order of the first 2 times 3 arguments depends on the variable
5316 `calendar-date-style' or, if that is not defined, on `european-calendar-style'.
5317 So for American calendars, give this as MONTH DAY YEAR, for European as
5318 DAY MONTH YEAR, and for ISO as YEAR MONTH DAY.
5319 DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
5320 is any number of ISO weeks in the block period for which the item should
5321 be skipped.
5322
5323 This function is here only for backward compatibility and it is deprecated,
5324 please use `org-class' instead."
5325 (let* ((date1 (org-order-calendar-date-args m1 d1 y1))
5326 (date2 (org-order-calendar-date-args m2 d2 y2)))
5327 (org-class
5328 (nth 2 date1) (car date1) (nth 1 date1)
5329 (nth 2 date2) (car date2) (nth 1 date2)
5330 dayname skip-weeks)))
5331 (make-obsolete 'org-diary-class 'org-class "")
5332
5333 (defvar org-agenda-show-log-scoped) ;; dynamically scope in `org-timeline' or `org-agenda-list'
5334 (defalias 'org-get-closed 'org-agenda-get-progress)
5335 (defun org-agenda-get-progress ()
5336 "Return the logged TODO entries for agenda display."
5337 (let* ((props (list 'mouse-face 'highlight
5338 'org-not-done-regexp org-not-done-regexp
5339 'org-todo-regexp org-todo-regexp
5340 'org-complex-heading-regexp org-complex-heading-regexp
5341 'help-echo
5342 (format "mouse-2 or RET jump to org file %s"
5343 (abbreviate-file-name buffer-file-name))))
5344 (items (if (consp org-agenda-show-log-scoped)
5345 org-agenda-show-log-scoped
5346 (if (eq org-agenda-show-log-scoped 'clockcheck)
5347 '(clock)
5348 org-agenda-log-mode-items)))
5349 (parts
5350 (delq nil
5351 (list
5352 (if (memq 'closed items) (concat "\\<" org-closed-string))
5353 (if (memq 'clock items) (concat "\\<" org-clock-string))
5354 (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
5355 (parts-re (if parts (mapconcat 'identity parts "\\|")
5356 (error "`org-agenda-log-mode-items' is empty")))
5357 (regexp (concat
5358 "\\(" parts-re "\\)"
5359 " *\\["
5360 (regexp-quote
5361 (substring
5362 (format-time-string
5363 (car org-time-stamp-formats)
5364 (apply 'encode-time ; DATE bound by calendar
5365 (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
5366 1 11))))
5367 (org-agenda-search-headline-for-time nil)
5368 marker hdmarker priority category category-pos tags closedp
5369 statep clockp state ee txt extra timestr rest clocked)
5370 (goto-char (point-min))
5371 (while (re-search-forward regexp nil t)
5372 (catch :skip
5373 (org-agenda-skip)
5374 (setq marker (org-agenda-new-marker (match-beginning 0))
5375 closedp (equal (match-string 1) org-closed-string)
5376 statep (equal (string-to-char (match-string 1)) ?-)
5377 clockp (not (or closedp statep))
5378 state (and statep (match-string 2))
5379 category (org-get-category (match-beginning 0))
5380 category-pos (get-text-property (match-beginning 0) 'org-category-position)
5381 timestr (buffer-substring (match-beginning 0) (point-at-eol)))
5382 (when (string-match "\\]" timestr)
5383 ;; substring should only run to end of time stamp
5384 (setq rest (substring timestr (match-end 0))
5385 timestr (substring timestr 0 (match-end 0)))
5386 (if (and (not closedp) (not statep)
5387 (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
5388 rest))
5389 (progn (setq timestr (concat (substring timestr 0 -1)
5390 "-" (match-string 1 rest) "]"))
5391 (setq clocked (match-string 2 rest)))
5392 (setq clocked "-")))
5393 (save-excursion
5394 (setq extra
5395 (cond
5396 ((not org-agenda-log-mode-add-notes) nil)
5397 (statep
5398 (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
5399 (match-string 1)))
5400 (clockp
5401 (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
5402 (match-string 1)))))
5403 (if (not (re-search-backward org-outline-regexp-bol nil t))
5404 (setq txt org-agenda-no-heading-message)
5405 (goto-char (match-beginning 0))
5406 (setq hdmarker (org-agenda-new-marker)
5407 tags (org-get-tags-at))
5408 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
5409 (setq txt (match-string 1))
5410 (when extra
5411 (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
5412 (setq txt (concat (substring txt 0 (match-beginning 1))
5413 " - " extra " " (match-string 2 txt)))
5414 (setq txt (concat txt " - " extra))))
5415 (setq txt (org-agenda-format-item
5416 (cond
5417 (closedp "Closed: ")
5418 (statep (concat "State: (" state ")"))
5419 (t (concat "Clocked: (" clocked ")")))
5420 txt category tags timestr)))
5421 (setq priority 100000)
5422 (org-add-props txt props
5423 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
5424 'priority priority 'org-category category
5425 'org-category-position category-pos
5426 'type "closed" 'date date
5427 'undone-face 'org-warning 'done-face 'org-agenda-done)
5428 (push txt ee))
5429 (goto-char (point-at-eol))))
5430 (nreverse ee)))
5431
5432 (defun org-agenda-show-clocking-issues ()
5433 "Add overlays, showing issues with clocking.
5434 See also the user option `org-agenda-clock-consistency-checks'."
5435 (interactive)
5436 (let* ((pl org-agenda-clock-consistency-checks)
5437 (re (concat "^[ \t]*"
5438 org-clock-string
5439 "[ \t]+"
5440 "\\(\\[.*?\\]\\)" ; group 1 is first stamp
5441 "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
5442 (tlstart 0.)
5443 (tlend 0.)
5444 (maxtime (org-hh:mm-string-to-minutes
5445 (or (plist-get pl :max-duration) "24:00")))
5446 (mintime (org-hh:mm-string-to-minutes
5447 (or (plist-get pl :min-duration) 0)))
5448 (maxgap (org-hh:mm-string-to-minutes
5449 ;; default 30:00 means never complain
5450 (or (plist-get pl :max-gap) "30:00")))
5451 (gapok (mapcar 'org-hh:mm-string-to-minutes
5452 (plist-get pl :gap-ok-around)))
5453 (def-face (or (plist-get pl :default-face)
5454 '((:background "DarkRed") (:foreground "white"))))
5455 issue face m te ts dt ov)
5456 (goto-char (point-min))
5457 (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
5458 (setq issue nil face def-face)
5459 (catch 'next
5460 (setq m (org-get-at-bol 'org-marker)
5461 te nil ts nil)
5462 (unless (and m (markerp m))
5463 (setq issue "No valid clock line") (throw 'next t))
5464 (org-with-point-at m
5465 (save-excursion
5466 (goto-char (point-at-bol))
5467 (unless (looking-at re)
5468 (error "No valid Clock line")
5469 (throw 'next t))
5470 (unless (match-end 3)
5471 (setq issue "No end time"
5472 face (or (plist-get pl :no-end-time-face) face))
5473 (throw 'next t))
5474 (setq ts (match-string 1)
5475 te (match-string 3)
5476 ts (org-float-time
5477 (apply 'encode-time (org-parse-time-string ts)))
5478 te (org-float-time
5479 (apply 'encode-time (org-parse-time-string te)))
5480 dt (- te ts))))
5481 (cond
5482 ((> dt (* 60 maxtime))
5483 ;; a very long clocking chunk
5484 (setq issue (format "Clocking interval is very long: %s"
5485 (org-minutes-to-hh:mm-string
5486 (floor (/ (float dt) 60.))))
5487 face (or (plist-get pl :long-face) face)))
5488 ((< dt (* 60 mintime))
5489 ;; a very short clocking chunk
5490 (setq issue (format "Clocking interval is very short: %s"
5491 (org-minutes-to-hh:mm-string
5492 (floor (/ (float dt) 60.))))
5493 face (or (plist-get pl :short-face) face)))
5494 ((and (> tlend 0) (< ts tlend))
5495 ;; Two clock entries are overlapping
5496 (setq issue (format "Clocking overlap: %d minutes"
5497 (/ (- tlend ts) 60))
5498 face (or (plist-get pl :overlap-face) face)))
5499 ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
5500 ;; There is a gap, lets see if we need to report it
5501 (unless (org-agenda-check-clock-gap tlend ts gapok)
5502 (setq issue (format "Clocking gap: %d minutes"
5503 (/ (- ts tlend) 60))
5504 face (or (plist-get pl :gap-face) face))))
5505 (t nil)))
5506 (setq tlend (or te tlend) tlstart (or ts tlstart))
5507 (when issue
5508 ;; OK, there was some issue, add an overlay to show the issue
5509 (setq ov (make-overlay (point-at-bol) (point-at-eol)))
5510 (overlay-put ov 'before-string
5511 (concat
5512 (org-add-props
5513 (format "%-43s" (concat " " issue))
5514 nil
5515 'face face)
5516 "\n"))
5517 (overlay-put ov 'evaporate t)))))
5518
5519 (defun org-agenda-check-clock-gap (t1 t2 ok-list)
5520 "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
5521 (catch 'exit
5522 (unless ok-list
5523 ;; there are no OK times for gaps...
5524 (throw 'exit nil))
5525 (if (> (- (/ t2 36000) (/ t1 36000)) 24)
5526 ;; This is more than 24 hours, so it is OK.
5527 ;; because we have at least one OK time, that must be in the
5528 ;; 24 hour interval.
5529 (throw 'exit t))
5530 ;; We have a shorter gap.
5531 ;; Now we have to get the minute of the day when these times are
5532 (let* ((t1dec (decode-time (seconds-to-time t1)))
5533 (t2dec (decode-time (seconds-to-time t2)))
5534 ;; compute the minute on the day
5535 (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
5536 (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
5537 (when (< min2 min1)
5538 ;; if min2 is smaller than min1, this means it is on the next day.
5539 ;; Wrap it to after midnight.
5540 (setq min2 (+ min2 1440)))
5541 ;; Now check if any of the OK times is in the gap
5542 (mapc (lambda (x)
5543 ;; Wrap the time to after midnight if necessary
5544 (if (< x min1) (setq x (+ x 1440)))
5545 ;; Check if in interval
5546 (and (<= min1 x) (>= min2 x) (throw 'exit t)))
5547 ok-list)
5548 ;; Nope, this gap is not OK
5549 nil)))
5550
5551 (defun org-agenda-get-deadlines ()
5552 "Return the deadline information for agenda display."
5553 (let* ((props (list 'mouse-face 'highlight
5554 'org-not-done-regexp org-not-done-regexp
5555 'org-todo-regexp org-todo-regexp
5556 'org-complex-heading-regexp org-complex-heading-regexp
5557 'help-echo
5558 (format "mouse-2 or RET jump to org file %s"
5559 (abbreviate-file-name buffer-file-name))))
5560 (regexp org-deadline-time-regexp)
5561 (todayp (org-agenda-todayp date)) ; DATE bound by calendar
5562 (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
5563 d2 diff dfrac wdays pos pos1 category category-pos
5564 tags suppress-prewarning ee txt head face s todo-state
5565 show-all upcomingp donep timestr warntime)
5566 (goto-char (point-min))
5567 (while (re-search-forward regexp nil t)
5568 (setq suppress-prewarning nil)
5569 (catch :skip
5570 (org-agenda-skip)
5571 (when (and org-agenda-skip-deadline-prewarning-if-scheduled
5572 (save-match-data
5573 (string-match org-scheduled-time-regexp
5574 (buffer-substring (point-at-bol)
5575 (point-at-eol)))))
5576 (setq suppress-prewarning
5577 (if (integerp org-agenda-skip-deadline-prewarning-if-scheduled)
5578 org-agenda-skip-deadline-prewarning-if-scheduled
5579 0)))
5580 (setq s (match-string 1)
5581 txt nil
5582 pos (1- (match-beginning 1))
5583 todo-state (save-match-data (org-get-todo-state))
5584 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
5585 (member todo-state
5586 org-agenda-repeating-timestamp-show-all))
5587 d2 (org-time-string-to-absolute
5588 (match-string 1) d1 'past show-all
5589 (current-buffer) pos)
5590 diff (- d2 d1)
5591 wdays (if suppress-prewarning
5592 (let ((org-deadline-warning-days suppress-prewarning))
5593 (org-get-wdays s))
5594 (org-get-wdays s))
5595 dfrac (- 1 (/ (* 1.0 diff) (max wdays 1)))
5596 upcomingp (and todayp (> diff 0)))
5597 ;; When to show a deadline in the calendar:
5598 ;; If the expiration is within wdays warning time.
5599 ;; Past-due deadlines are only shown on the current date
5600 (if (and (or (and (<= diff wdays)
5601 (and todayp (not org-agenda-only-exact-dates)))
5602 (= diff 0)))
5603 (save-excursion
5604 ;; (setq todo-state (org-get-todo-state))
5605 (setq donep (member todo-state org-done-keywords))
5606 (if (and donep
5607 (or org-agenda-skip-deadline-if-done
5608 (not (= diff 0))))
5609 (setq txt nil)
5610 (setq category (org-get-category)
5611 warntime (org-entry-get (point) "APPT_WARNTIME")
5612 category-pos (get-text-property (point) 'org-category-position))
5613 (if (not (re-search-backward "^\\*+[ \t]+" nil t))
5614 (setq txt org-agenda-no-heading-message)
5615 (goto-char (match-end 0))
5616 (setq pos1 (match-beginning 0))
5617 (setq tags (org-get-tags-at pos1))
5618 (setq head (buffer-substring-no-properties
5619 (point)
5620 (progn (skip-chars-forward "^\r\n")
5621 (point))))
5622 (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
5623 (setq timestr
5624 (concat (substring s (match-beginning 1)) " "))
5625 (setq timestr 'time))
5626 (setq txt (org-agenda-format-item
5627 (if (= diff 0)
5628 (car org-agenda-deadline-leaders)
5629 (if (functionp
5630 (nth 1 org-agenda-deadline-leaders))
5631 (funcall
5632 (nth 1 org-agenda-deadline-leaders)
5633 diff date)
5634 (format (nth 1 org-agenda-deadline-leaders)
5635 diff)))
5636 head category tags
5637 (if (not (= diff 0)) nil timestr)))))
5638 (when txt
5639 (setq face (org-agenda-deadline-face dfrac))
5640 (org-add-props txt props
5641 'org-marker (org-agenda-new-marker pos)
5642 'warntime warntime
5643 'org-hd-marker (org-agenda-new-marker pos1)
5644 'priority (+ (- diff)
5645 (org-get-priority txt))
5646 'org-category category
5647 'org-category-position category-pos
5648 'todo-state todo-state
5649 'type (if upcomingp "upcoming-deadline" "deadline")
5650 'date (if upcomingp date d2)
5651 'face (if donep 'org-agenda-done face)
5652 'undone-face face 'done-face 'org-agenda-done)
5653 (push txt ee))))))
5654 (nreverse ee)))
5655
5656 (defun org-agenda-deadline-face (fraction)
5657 "Return the face to displaying a deadline item.
5658 FRACTION is what fraction of the head-warning time has passed."
5659 (let ((faces org-agenda-deadline-faces) f)
5660 (catch 'exit
5661 (while (setq f (pop faces))
5662 (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
5663
5664 (defun org-agenda-get-scheduled (&optional deadline-results)
5665 "Return the scheduled information for agenda display."
5666 (let* ((props (list 'org-not-done-regexp org-not-done-regexp
5667 'org-todo-regexp org-todo-regexp
5668 'org-complex-heading-regexp org-complex-heading-regexp
5669 'done-face 'org-agenda-done
5670 'mouse-face 'highlight
5671 'help-echo
5672 (format "mouse-2 or RET jump to org file %s"
5673 (abbreviate-file-name buffer-file-name))))
5674 (regexp org-scheduled-time-regexp)
5675 (todayp (org-agenda-todayp date)) ; DATE bound by calendar
5676 (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
5677 mm
5678 (deadline-position-alist
5679 (mapcar (lambda (a) (and (setq mm (get-text-property
5680 0 'org-hd-marker a))
5681 (cons (marker-position mm) a)))
5682 deadline-results))
5683 d2 diff pos pos1 category category-pos tags donep
5684 ee txt head pastschedp todo-state face timestr s habitp show-all
5685 did-habit-check-p warntime)
5686 (goto-char (point-min))
5687 (while (re-search-forward regexp nil t)
5688 (catch :skip
5689 (org-agenda-skip)
5690 (setq s (match-string 1)
5691 txt nil
5692 pos (1- (match-beginning 1))
5693 todo-state (save-match-data (org-get-todo-state))
5694 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
5695 (member todo-state
5696 org-agenda-repeating-timestamp-show-all))
5697 d2 (org-time-string-to-absolute
5698 (match-string 1) d1 'past show-all
5699 (current-buffer) pos)
5700 diff (- d2 d1)
5701 warntime (org-entry-get (point) "APPT_WARNTIME"))
5702 (setq pastschedp (and todayp (< diff 0)))
5703 (setq did-habit-check-p nil)
5704 ;; When to show a scheduled item in the calendar:
5705 ;; If it is on or past the date.
5706 (when (or (and (< diff 0)
5707 (< (abs diff) org-scheduled-past-days)
5708 (and todayp (not org-agenda-only-exact-dates)))
5709 (= diff 0)
5710 ;; org-is-habit-p uses org-entry-get, which is expansive
5711 ;; so we go extra mile to only call it once
5712 (and todayp
5713 (boundp 'org-habit-show-all-today)
5714 org-habit-show-all-today
5715 (setq did-habit-check-p t)
5716 (setq habitp (and (functionp 'org-is-habit-p)
5717 (org-is-habit-p)))))
5718 (save-excursion
5719 (setq donep (member todo-state org-done-keywords))
5720 (if (and donep
5721 (or org-agenda-skip-scheduled-if-done
5722 (not (= diff 0))
5723 (and (functionp 'org-is-habit-p)
5724 (org-is-habit-p))))
5725 (setq txt nil)
5726 (setq habitp (if did-habit-check-p habitp
5727 (and (functionp 'org-is-habit-p)
5728 (org-is-habit-p))))
5729 (setq category (org-get-category)
5730 category-pos (get-text-property (point) 'org-category-position))
5731 (if (not (re-search-backward "^\\*+[ \t]+" nil t))
5732 (setq txt org-agenda-no-heading-message)
5733 (goto-char (match-end 0))
5734 (setq pos1 (match-beginning 0))
5735 (if habitp
5736 (if (or (not org-habit-show-habits)
5737 (and (not todayp)
5738 (boundp 'org-habit-show-habits-only-for-today)
5739 org-habit-show-habits-only-for-today))
5740 (throw :skip nil))
5741 (if (and
5742 (or (eq t org-agenda-skip-scheduled-if-deadline-is-shown)
5743 (and org-agenda-skip-scheduled-if-deadline-is-shown
5744 pastschedp))
5745 (setq mm (assoc pos1 deadline-position-alist)))
5746 (throw :skip nil)))
5747 (setq tags (org-get-tags-at))
5748 (setq head (buffer-substring-no-properties
5749 (point)
5750 (progn (skip-chars-forward "^\r\n") (point))))
5751 (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
5752 (setq timestr
5753 (concat (substring s (match-beginning 1)) " "))
5754 (setq timestr 'time))
5755 (setq txt (org-agenda-format-item
5756 (if (= diff 0)
5757 (car org-agenda-scheduled-leaders)
5758 (format (nth 1 org-agenda-scheduled-leaders)
5759 (- 1 diff)))
5760 head category tags
5761 (if (not (= diff 0)) nil timestr)
5762 nil habitp))))
5763 (when txt
5764 (setq face
5765 (cond
5766 ((and (not habitp) pastschedp)
5767 'org-scheduled-previously)
5768 (todayp 'org-scheduled-today)
5769 (t 'org-scheduled))
5770 habitp (and habitp (org-habit-parse-todo)))
5771 (org-add-props txt props
5772 'undone-face face
5773 'face (if donep 'org-agenda-done face)
5774 'org-marker (org-agenda-new-marker pos)
5775 'org-hd-marker (org-agenda-new-marker pos1)
5776 'type (if pastschedp "past-scheduled" "scheduled")
5777 'date (if pastschedp d2 date)
5778 'warntime warntime
5779 'priority (if habitp
5780 (org-habit-get-priority habitp)
5781 (+ 94 (- 5 diff) (org-get-priority txt)))
5782 'org-category category
5783 'category-position category-pos
5784 'org-habit-p habitp
5785 'todo-state todo-state)
5786 (push txt ee))))))
5787 (nreverse ee)))
5788
5789 (defun org-agenda-get-blocks ()
5790 "Return the date-range information for agenda display."
5791 (let* ((props (list 'face nil
5792 'org-not-done-regexp org-not-done-regexp
5793 'org-todo-regexp org-todo-regexp
5794 'org-complex-heading-regexp org-complex-heading-regexp
5795 'mouse-face 'highlight
5796 'help-echo
5797 (format "mouse-2 or RET jump to org file %s"
5798 (abbreviate-file-name buffer-file-name))))
5799 (regexp org-tr-regexp)
5800 (d0 (calendar-absolute-from-gregorian date))
5801 marker hdmarker ee txt d1 d2 s1 s2 category category-pos
5802 todo-state tags pos head donep)
5803 (goto-char (point-min))
5804 (while (re-search-forward regexp nil t)
5805 (catch :skip
5806 (org-agenda-skip)
5807 (setq pos (point))
5808 (let ((start-time (match-string 1))
5809 (end-time (match-string 2)))
5810 (setq s1 (match-string 1)
5811 s2 (match-string 2)
5812 d1 (time-to-days (org-time-string-to-time s1 (current-buffer) pos))
5813 d2 (time-to-days (org-time-string-to-time s2 (current-buffer) pos)))
5814 (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
5815 ;; Only allow days between the limits, because the normal
5816 ;; date stamps will catch the limits.
5817 (save-excursion
5818 (setq todo-state (org-get-todo-state))
5819 (setq donep (member todo-state org-done-keywords))
5820 (if (and donep org-agenda-skip-timestamp-if-done)
5821 (throw :skip t))
5822 (setq marker (org-agenda-new-marker (point)))
5823 (setq category (org-get-category)
5824 category-pos (get-text-property (point) 'org-category-position))
5825 (if (not (re-search-backward org-outline-regexp-bol nil t))
5826 (setq txt org-agenda-no-heading-message)
5827 (goto-char (match-beginning 0))
5828 (setq hdmarker (org-agenda-new-marker (point)))
5829 (setq tags (org-get-tags-at))
5830 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
5831 (setq head (match-string 1))
5832 (let ((remove-re
5833 (if org-agenda-remove-timeranges-from-blocks
5834 (concat
5835 "<" (regexp-quote s1) ".*?>"
5836 "--"
5837 "<" (regexp-quote s2) ".*?>")
5838 nil)))
5839 (setq txt (org-agenda-format-item
5840 (format
5841 (nth (if (= d1 d2) 0 1)
5842 org-agenda-timerange-leaders)
5843 (1+ (- d0 d1)) (1+ (- d2 d1)))
5844 head category tags
5845 (cond ((and (= d1 d0) (= d2 d0))
5846 (concat "<" start-time ">--<" end-time ">"))
5847 ((= d1 d0)
5848 (concat "<" start-time ">"))
5849 ((= d2 d0)
5850 (concat "<" end-time ">")))
5851 remove-re t))))
5852 (org-add-props txt props
5853 'org-marker marker 'org-hd-marker hdmarker
5854 'type "block" 'date date
5855 'todo-state todo-state
5856 'priority (org-get-priority txt) 'org-category category
5857 'org-category-position category-pos)
5858 (push txt ee))))
5859 (goto-char pos)))
5860 ;; Sort the entries by expiration date.
5861 (nreverse ee)))
5862
5863 ;;; Agenda presentation and sorting
5864
5865 (defvar org-prefix-has-time nil
5866 "A flag, set by `org-compile-prefix-format'.
5867 The flag is set if the currently compiled format contains a `%t'.")
5868 (defvar org-prefix-has-tag nil
5869 "A flag, set by `org-compile-prefix-format'.
5870 The flag is set if the currently compiled format contains a `%T'.")
5871 (defvar org-prefix-has-effort nil
5872 "A flag, set by `org-compile-prefix-format'.
5873 The flag is set if the currently compiled format contains a `%e'.")
5874 (defvar org-prefix-category-length nil
5875 "Used by `org-compile-prefix-format' to remember the category field width.")
5876 (defvar org-prefix-category-max-length nil
5877 "Used by `org-compile-prefix-format' to remember the category field width.")
5878
5879 (defun org-agenda-get-category-icon (category)
5880 "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
5881 (dolist (entry org-agenda-category-icon-alist)
5882 (when (org-string-match-p (car entry) category)
5883 (if (listp (cadr entry))
5884 (return (cadr entry))
5885 (return (apply 'create-image (cdr entry)))))))
5886
5887 (defun org-agenda-format-item (extra txt &optional category tags dotime
5888 remove-re habitp)
5889 "Format TXT to be inserted into the agenda buffer.
5890 In particular, it adds the prefix and corresponding text properties. EXTRA
5891 must be a string and replaces the `%s' specifier in the prefix format.
5892 CATEGORY (string, symbol or nil) may be used to overrule the default
5893 category taken from local variable or file name. It will replace the `%c'
5894 specifier in the format. DOTIME, when non-nil, indicates that a
5895 time-of-day should be extracted from TXT for sorting of this entry, and for
5896 the `%t' specifier in the format. When DOTIME is a string, this string is
5897 searched for a time before TXT is. TAGS can be the tags of the headline.
5898 Any match of REMOVE-RE will be removed from TXT."
5899 ;; We keep the org-prefix-* variable values along with a compiled
5900 ;; formatter, so that multiple agendas existing at the same time, do
5901 ;; not step on each other toes.
5902 ;;
5903 ;; It was inconvenient to make these variables buffer local in
5904 ;; Agenda buffers, because this function expects to be called with
5905 ;; the buffer where item comes from being current, and not agenda
5906 ;; buffer
5907 (let* ((bindings (car org-prefix-format-compiled))
5908 (formatter (cadr org-prefix-format-compiled)))
5909 (loop for (var value) in bindings
5910 do (set var value))
5911 (save-match-data
5912 ;; Diary entries sometimes have extra whitespace at the beginning
5913 (if (string-match "^ +" txt) (setq txt (replace-match "" nil nil txt)))
5914
5915 ;; Fix the tags part in txt
5916 (setq txt (org-agenda-fix-displayed-tags
5917 txt tags
5918 org-agenda-show-inherited-tags
5919 org-agenda-hide-tags-regexp))
5920 (let* ((category (or category
5921 (if (stringp org-category)
5922 org-category
5923 (and org-category (symbol-name org-category)))
5924 (if buffer-file-name
5925 (file-name-sans-extension
5926 (file-name-nondirectory buffer-file-name))
5927 "")))
5928 (category-icon (org-agenda-get-category-icon category))
5929 (category-icon (if category-icon
5930 (propertize " " 'display category-icon)
5931 ""))
5932 ;; time, tag, effort are needed for the eval of the prefix format
5933 (tag (if tags (nth (1- (length tags)) tags) ""))
5934 time effort neffort
5935 (ts (if dotime (concat
5936 (if (stringp dotime) dotime "")
5937 (and org-agenda-search-headline-for-time txt))))
5938 (time-of-day (and dotime (org-get-time-of-day ts)))
5939 stamp plain s0 s1 s2 rtn srp l
5940 duration thecategory)
5941 (and (derived-mode-p 'org-mode) buffer-file-name
5942 (add-to-list 'org-agenda-contributing-files buffer-file-name))
5943 (when (and dotime time-of-day)
5944 ;; Extract starting and ending time and move them to prefix
5945 (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
5946 (setq plain (string-match org-plain-time-of-day-regexp ts)))
5947 (setq s0 (match-string 0 ts)
5948 srp (and stamp (match-end 3))
5949 s1 (match-string (if plain 1 2) ts)
5950 s2 (match-string (if plain 8 (if srp 4 6)) ts))
5951
5952 ;; If the times are in TXT (not in DOTIMES), and the prefix will list
5953 ;; them, we might want to remove them there to avoid duplication.
5954 ;; The user can turn this off with a variable.
5955 (if (and org-prefix-has-time
5956 org-agenda-remove-times-when-in-prefix (or stamp plain)
5957 (string-match (concat (regexp-quote s0) " *") txt)
5958 (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
5959 (if (eq org-agenda-remove-times-when-in-prefix 'beg)
5960 (= (match-beginning 0) 0)
5961 t))
5962 (setq txt (replace-match "" nil nil txt))))
5963 ;; Normalize the time(s) to 24 hour
5964 (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
5965 (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
5966
5967 ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
5968 (when (and s1 (not s2) org-agenda-default-appointment-duration)
5969 (setq s2
5970 (org-minutes-to-hh:mm-string
5971 (+ (org-hh:mm-string-to-minutes s1) org-agenda-default-appointment-duration))))
5972
5973 ;; Compute the duration
5974 (when s2
5975 (setq duration (- (org-hh:mm-string-to-minutes s2)
5976 (org-hh:mm-string-to-minutes s1)))))
5977
5978 (when (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
5979 txt)
5980 ;; Tags are in the string
5981 (if (or (eq org-agenda-remove-tags t)
5982 (and org-agenda-remove-tags
5983 org-prefix-has-tag))
5984 (setq txt (replace-match "" t t txt))
5985 (setq txt (replace-match
5986 (concat (make-string (max (- 50 (length txt)) 1) ?\ )
5987 (match-string 2 txt))
5988 t t txt))))
5989 (when (derived-mode-p 'org-mode)
5990 (setq effort
5991 (condition-case nil
5992 (org-get-effort
5993 (or (get-text-property 0 'org-hd-marker txt)
5994 (get-text-property 0 'org-marker txt)))
5995 (error nil)))
5996 (when effort
5997 (setq neffort (org-duration-string-to-minutes effort)
5998 effort (setq effort (concat "[" effort "]")))))
5999 ;; prevent erroring out with %e format when there is no effort
6000 (or effort (setq effort ""))
6001
6002 (when remove-re
6003 (while (string-match remove-re txt)
6004 (setq txt (replace-match "" t t txt))))
6005
6006 ;; Set org-heading property on `txt' to mark the start of the
6007 ;; heading.
6008 (add-text-properties 0 (length txt) '(org-heading t) txt)
6009
6010 ;; Prepare the variables needed in the eval of the compiled format
6011 (setq time (cond (s2 (concat
6012 (org-agenda-time-of-day-to-ampm-maybe s1)
6013 "-" (org-agenda-time-of-day-to-ampm-maybe s2)
6014 (if org-agenda-timegrid-use-ampm " ")))
6015 (s1 (concat
6016 (org-agenda-time-of-day-to-ampm-maybe s1)
6017 (if org-agenda-timegrid-use-ampm
6018 "........ "
6019 "......")))
6020 (t ""))
6021 extra (or (and (not habitp) extra) "")
6022 category (if (symbolp category) (symbol-name category) category)
6023 thecategory (copy-sequence category))
6024 (if (string-match org-bracket-link-regexp category)
6025 (progn
6026 (setq l (if (match-end 3)
6027 (- (match-end 3) (match-beginning 3))
6028 (- (match-end 1) (match-beginning 1))))
6029 (when (< l (or org-prefix-category-length 0))
6030 (setq category (copy-sequence category))
6031 (org-add-props category nil
6032 'extra-space (make-string
6033 (- org-prefix-category-length l 1) ?\ ))))
6034 (if (and org-prefix-category-max-length
6035 (>= (length category) org-prefix-category-max-length))
6036 (setq category (substring category 0 (1- org-prefix-category-max-length)))))
6037 ;; Evaluate the compiled format
6038 (setq rtn (concat (eval formatter) txt))
6039
6040 ;; And finally add the text properties
6041 (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
6042 (org-add-props rtn nil
6043 'org-category (if thecategory (downcase thecategory) category)
6044 'tags (mapcar 'org-downcase-keep-props tags)
6045 'org-highest-priority org-highest-priority
6046 'org-lowest-priority org-lowest-priority
6047 'time-of-day time-of-day
6048 'duration duration
6049 'effort effort
6050 'effort-minutes neffort
6051 'txt txt
6052 'time time
6053 'extra extra
6054 'format org-prefix-format-compiled
6055 'dotime dotime)))))
6056
6057 (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
6058 "Remove tags string from TXT, and add a modified list of tags.
6059 The modified list may contain inherited tags, and tags matched by
6060 `org-agenda-hide-tags-regexp' will be removed."
6061 (when (or add-inherited hide-re)
6062 (if (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") txt)
6063 (setq txt (substring txt 0 (match-beginning 0))))
6064 (setq tags
6065 (delq nil
6066 (mapcar (lambda (tg)
6067 (if (or (and hide-re (string-match hide-re tg))
6068 (and (not add-inherited)
6069 (get-text-property 0 'inherited tg)))
6070 nil
6071 tg))
6072 tags)))
6073 (when tags
6074 (let ((have-i (get-text-property 0 'inherited (car tags)))
6075 i)
6076 (setq txt (concat txt " :"
6077 (mapconcat
6078 (lambda (x)
6079 (setq i (get-text-property 0 'inherited x))
6080 (if (and have-i (not i))
6081 (progn
6082 (setq have-i nil)
6083 (concat ":" x))
6084 x))
6085 tags ":")
6086 (if have-i "::" ":"))))))
6087 txt)
6088
6089 (defun org-downcase-keep-props (s)
6090 (let ((props (text-properties-at 0 s)))
6091 (setq s (downcase s))
6092 (add-text-properties 0 (length s) props s)
6093 s))
6094
6095 (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
6096 (defvar org-agenda-sorting-strategy-selected nil)
6097
6098 (defun org-agenda-add-time-grid-maybe (list ndays todayp)
6099 (catch 'exit
6100 (cond ((not org-agenda-use-time-grid) (throw 'exit list))
6101 ((and todayp (member 'today (car org-agenda-time-grid))))
6102 ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
6103 ((member 'weekly (car org-agenda-time-grid)))
6104 (t (throw 'exit list)))
6105 (let* ((have (delq nil (mapcar
6106 (lambda (x) (get-text-property 1 'time-of-day x))
6107 list)))
6108 (string (nth 1 org-agenda-time-grid))
6109 (gridtimes (nth 2 org-agenda-time-grid))
6110 (req (car org-agenda-time-grid))
6111 (remove (member 'remove-match req))
6112 new time)
6113 (if (and (member 'require-timed req) (not have))
6114 ;; don't show empty grid
6115 (throw 'exit list))
6116 (while (setq time (pop gridtimes))
6117 (unless (and remove (member time have))
6118 (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
6119 (push (org-agenda-format-item
6120 nil string "" nil
6121 (concat (substring time 0 -2) ":" (substring time -2)))
6122 new)
6123 (put-text-property
6124 2 (length (car new)) 'face 'org-time-grid (car new))))
6125 (when (and todayp org-agenda-show-current-time-in-grid)
6126 (push (org-agenda-format-item
6127 nil
6128 org-agenda-current-time-string
6129 "" nil
6130 (format-time-string "%H:%M "))
6131 new)
6132 (put-text-property
6133 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
6134
6135 (if (member 'time-up org-agenda-sorting-strategy-selected)
6136 (append new list)
6137 (append list new)))))
6138
6139 (defun org-compile-prefix-format (key)
6140 "Compile the prefix format into a Lisp form that can be evaluated.
6141 The resulting form and associated variable bindings is returned
6142 and stored in the variable `org-prefix-format-compiled'."
6143 (setq org-prefix-has-time nil org-prefix-has-tag nil
6144 org-prefix-category-length nil
6145 org-prefix-has-effort nil)
6146 (let ((s (cond
6147 ((stringp org-agenda-prefix-format)
6148 org-agenda-prefix-format)
6149 ((assq key org-agenda-prefix-format)
6150 (cdr (assq key org-agenda-prefix-format)))
6151 (t " %-12:c%?-12t% s")))
6152 (start 0)
6153 varform vars var e c f opt)
6154 (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([ctsei]\\|(.+)\\)"
6155 s start)
6156 (setq var (or (cdr (assoc (match-string 4 s)
6157 '(("c" . category) ("t" . time) ("s" . extra)
6158 ("i" . category-icon) ("T" . tag) ("e" . effort))))
6159 'eval)
6160 c (or (match-string 3 s) "")
6161 opt (match-beginning 1)
6162 start (1+ (match-beginning 0)))
6163 (if (equal var 'time) (setq org-prefix-has-time t))
6164 (if (equal var 'tag) (setq org-prefix-has-tag t))
6165 (if (equal var 'effort) (setq org-prefix-has-effort t))
6166 (setq f (concat "%" (match-string 2 s) "s"))
6167 (when (equal var 'category)
6168 (setq org-prefix-category-length
6169 (floor (abs (string-to-number (match-string 2 s)))))
6170 (setq org-prefix-category-max-length
6171 (let ((x (match-string 2 s)))
6172 (save-match-data
6173 (if (string-match "\\.[0-9]+" x)
6174 (string-to-number (substring (match-string 0 x) 1)))))))
6175 (if (eq var 'eval)
6176 (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
6177 (if opt
6178 (setq varform
6179 `(if (equal "" ,var)
6180 ""
6181 (format ,f (if (equal "" ,var) "" (concat ,var ,c)))))
6182 (setq varform `(format ,f (if (equal ,var "") "" (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
6183 (setq s (replace-match "%s" t nil s))
6184 (push varform vars))
6185 (setq vars (nreverse vars))
6186 (with-current-buffer (or org-agenda-buffer (current-buffer))
6187 (setq org-prefix-format-compiled
6188 (list
6189 `((org-prefix-has-time ,org-prefix-has-time)
6190 (org-prefix-has-tag ,org-prefix-has-tag)
6191 (org-prefix-category-length ,org-prefix-category-length)
6192 (org-prefix-has-effort ,org-prefix-has-effort))
6193 `(format ,s ,@vars))))))
6194
6195 (defun org-set-sorting-strategy (key)
6196 (if (symbolp (car org-agenda-sorting-strategy))
6197 ;; the old format
6198 (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
6199 (setq org-agenda-sorting-strategy-selected
6200 (or (cdr (assq key org-agenda-sorting-strategy))
6201 (cdr (assq 'agenda org-agenda-sorting-strategy))
6202 '(time-up category-keep priority-down)))))
6203
6204 (defun org-get-time-of-day (s &optional string mod24)
6205 "Check string S for a time of day.
6206 If found, return it as a military time number between 0 and 2400.
6207 If not found, return nil.
6208 The optional STRING argument forces conversion into a 5 character wide string
6209 HH:MM."
6210 (save-match-data
6211 (when
6212 (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
6213 (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
6214 (let* ((h (string-to-number (match-string 1 s)))
6215 (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
6216 (ampm (if (match-end 4) (downcase (match-string 4 s))))
6217 (am-p (equal ampm "am"))
6218 (h1 (cond ((not ampm) h)
6219 ((= h 12) (if am-p 0 12))
6220 (t (+ h (if am-p 0 12)))))
6221 (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
6222 (mod h1 24) h1))
6223 (t0 (+ (* 100 h2) m))
6224 (t1 (concat (if (>= h1 24) "+" " ")
6225 (if (and org-agenda-time-leading-zero
6226 (< t0 1000)) "0" "")
6227 (if (< t0 100) "0" "")
6228 (if (< t0 10) "0" "")
6229 (int-to-string t0))))
6230 (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
6231
6232 (defvar org-agenda-before-sorting-filter-function nil
6233 "Function to be applied to agenda items prior to sorting.
6234 Prior to sorting also means just before they are inserted into the agenda.
6235
6236 To aid sorting, you may revisit the original entries and add more text
6237 properties which will later be used by the sorting functions.
6238
6239 The function should take a string argument, an agenda line.
6240 It has access to the text properties in that line, which contain among
6241 other things, the property `org-hd-marker' that points to the entry
6242 where the line comes from. Note that not all lines going into the agenda
6243 have this property, only most.
6244
6245 The function should return the modified string. It is probably best
6246 to ONLY change text properties.
6247
6248 You can also use this function as a filter, by returning nil for lines
6249 you don't want to have in the agenda at all. For this application, you
6250 could bind the variable in the options section of a custom command.")
6251
6252 (defun org-agenda-finalize-entries (list &optional nosort)
6253 "Sort and concatenate the agenda items."
6254 (setq list (mapcar 'org-agenda-highlight-todo list))
6255 (if nosort
6256 list
6257 (when org-agenda-before-sorting-filter-function
6258 (setq list (delq nil (mapcar org-agenda-before-sorting-filter-function list))))
6259 (mapconcat 'identity (sort list 'org-entries-lessp) "\n")))
6260
6261 (defun org-agenda-highlight-todo (x)
6262 (let ((org-done-keywords org-done-keywords-for-agenda)
6263 (case-fold-search nil)
6264 re)
6265 (if (eq x 'line)
6266 (save-excursion
6267 (beginning-of-line 1)
6268 (setq re (org-get-at-bol 'org-todo-regexp))
6269 (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
6270 (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
6271 (add-text-properties (match-beginning 0) (match-end 1)
6272 (list 'face (org-get-todo-face 1)))
6273 (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
6274 (delete-region (match-beginning 1) (1- (match-end 0)))
6275 (goto-char (match-beginning 1))
6276 (insert (format org-agenda-todo-keyword-format s)))))
6277 (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
6278 (setq re (get-text-property 0 'org-todo-regexp x))
6279 (when (and re
6280 ;; Test `pl' because if there's no heading content,
6281 ;; there's no point matching to highlight. Note
6282 ;; that if we didn't test `pl' first, and there
6283 ;; happened to be no keyword from `org-todo-regexp'
6284 ;; on this heading line, then the `equal' comparison
6285 ;; afterwards would spuriously succeed in the case
6286 ;; where `pl' is nil -- causing an args-out-of-range
6287 ;; error when we try to add text properties to text
6288 ;; that isn't there.
6289 pl
6290 (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
6291 x pl) pl))
6292 (add-text-properties
6293 (or (match-end 1) (match-end 0)) (match-end 0)
6294 (list 'face (org-get-todo-face (match-string 2 x)))
6295 x)
6296 (when (match-end 1)
6297 (setq x (concat (substring x 0 (match-end 1))
6298 (format org-agenda-todo-keyword-format
6299 (match-string 2 x))
6300 (org-add-props " " (text-properties-at 0 x))
6301 (substring x (match-end 3)))))))
6302 x)))
6303
6304 (defsubst org-cmp-priority (a b)
6305 "Compare the priorities of string A and B."
6306 (let ((pa (or (get-text-property 1 'priority a) 0))
6307 (pb (or (get-text-property 1 'priority b) 0)))
6308 (cond ((> pa pb) +1)
6309 ((< pa pb) -1))))
6310
6311 (defsubst org-cmp-effort (a b)
6312 "Compare the effort values of string A and B."
6313 (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
6314 (ea (or (get-text-property 1 'effort-minutes a) def))
6315 (eb (or (get-text-property 1 'effort-minutes b) def)))
6316 (cond ((> ea eb) +1)
6317 ((< ea eb) -1))))
6318
6319 (defsubst org-cmp-category (a b)
6320 "Compare the string values of categories of strings A and B."
6321 (let ((ca (or (get-text-property 1 'org-category a) ""))
6322 (cb (or (get-text-property 1 'org-category b) "")))
6323 (cond ((string-lessp ca cb) -1)
6324 ((string-lessp cb ca) +1))))
6325
6326 (defsubst org-cmp-todo-state (a b)
6327 "Compare the todo states of strings A and B."
6328 (let* ((ma (or (get-text-property 1 'org-marker a)
6329 (get-text-property 1 'org-hd-marker a)))
6330 (mb (or (get-text-property 1 'org-marker b)
6331 (get-text-property 1 'org-hd-marker b)))
6332 (fa (and ma (marker-buffer ma)))
6333 (fb (and mb (marker-buffer mb)))
6334 (todo-kwds
6335 (or (and fa (with-current-buffer fa org-todo-keywords-1))
6336 (and fb (with-current-buffer fb org-todo-keywords-1))))
6337 (ta (or (get-text-property 1 'todo-state a) ""))
6338 (tb (or (get-text-property 1 'todo-state b) ""))
6339 (la (- (length (member ta todo-kwds))))
6340 (lb (- (length (member tb todo-kwds))))
6341 (donepa (member ta org-done-keywords-for-agenda))
6342 (donepb (member tb org-done-keywords-for-agenda)))
6343 (cond ((and donepa (not donepb)) -1)
6344 ((and (not donepa) donepb) +1)
6345 ((< la lb) -1)
6346 ((< lb la) +1))))
6347
6348 (defsubst org-cmp-alpha (a b)
6349 "Compare the headlines, alphabetically."
6350 (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
6351 (plb (text-property-any 0 (length b) 'org-heading t b))
6352 (ta (and pla (substring a pla)))
6353 (tb (and plb (substring b plb))))
6354 (when pla
6355 (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
6356 "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
6357 (setq ta (substring ta (match-end 0))))
6358 (setq ta (downcase ta)))
6359 (when plb
6360 (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
6361 "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
6362 (setq tb (substring tb (match-end 0))))
6363 (setq tb (downcase tb)))
6364 (cond ((not ta) +1)
6365 ((not tb) -1)
6366 ((string-lessp ta tb) -1)
6367 ((string-lessp tb ta) +1))))
6368
6369 (defsubst org-cmp-tag (a b)
6370 "Compare the string values of the first tags of A and B."
6371 (let ((ta (car (last (get-text-property 1 'tags a))))
6372 (tb (car (last (get-text-property 1 'tags b)))))
6373 (cond ((not ta) +1)
6374 ((not tb) -1)
6375 ((string-lessp ta tb) -1)
6376 ((string-lessp tb ta) +1))))
6377
6378 (defsubst org-cmp-time (a b)
6379 "Compare the time-of-day values of strings A and B."
6380 (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
6381 (ta (or (get-text-property 1 'time-of-day a) def))
6382 (tb (or (get-text-property 1 'time-of-day b) def)))
6383 (cond ((< ta tb) -1)
6384 ((< tb ta) +1))))
6385
6386 (defsubst org-cmp-habit-p (a b)
6387 "Compare the todo states of strings A and B."
6388 (let ((ha (get-text-property 1 'org-habit-p a))
6389 (hb (get-text-property 1 'org-habit-p b)))
6390 (cond ((and ha (not hb)) -1)
6391 ((and (not ha) hb) +1))))
6392
6393 (defsubst org-em (x y list) (or (memq x list) (memq y list)))
6394
6395 (defun org-entries-lessp (a b)
6396 "Predicate for sorting agenda entries."
6397 ;; The following variables will be used when the form is evaluated.
6398 ;; So even though the compiler complains, keep them.
6399 (let* ((ss org-agenda-sorting-strategy-selected)
6400 (time-up (and (org-em 'time-up 'time-down ss)
6401 (org-cmp-time a b)))
6402 (time-down (if time-up (- time-up) nil))
6403 (priority-up (and (org-em 'priority-up 'priority-down ss)
6404 (org-cmp-priority a b)))
6405 (priority-down (if priority-up (- priority-up) nil))
6406 (effort-up (and (org-em 'effort-up 'effort-down ss)
6407 (org-cmp-effort a b)))
6408 (effort-down (if effort-up (- effort-up) nil))
6409 (category-up (and (or (org-em 'category-up 'category-down ss)
6410 (memq 'category-keep ss))
6411 (org-cmp-category a b)))
6412 (category-down (if category-up (- category-up) nil))
6413 (category-keep (if category-up +1 nil))
6414 (tag-up (and (org-em 'tag-up 'tag-down ss)
6415 (org-cmp-tag a b)))
6416 (tag-down (if tag-up (- tag-up) nil))
6417 (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
6418 (org-cmp-todo-state a b)))
6419 (todo-state-down (if todo-state-up (- todo-state-up) nil))
6420 (habit-up (and (org-em 'habit-up 'habit-down ss)
6421 (org-cmp-habit-p a b)))
6422 (habit-down (if habit-up (- habit-up) nil))
6423 (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
6424 (org-cmp-alpha a b)))
6425 (alpha-down (if alpha-up (- alpha-up) nil))
6426 (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
6427 user-defined-up user-defined-down)
6428 (if (and need-user-cmp org-agenda-cmp-user-defined
6429 (functionp org-agenda-cmp-user-defined))
6430 (setq user-defined-up
6431 (funcall org-agenda-cmp-user-defined a b)
6432 user-defined-down (if user-defined-up (- user-defined-up) nil)))
6433 (cdr (assoc
6434 (eval (cons 'or org-agenda-sorting-strategy-selected))
6435 '((-1 . t) (1 . nil) (nil . nil))))))
6436
6437 ;;; Agenda restriction lock
6438
6439 (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
6440 "Overlay to mark the headline to which agenda commands are restricted.")
6441 (overlay-put org-agenda-restriction-lock-overlay
6442 'face 'org-agenda-restriction-lock)
6443 (overlay-put org-agenda-restriction-lock-overlay
6444 'help-echo "Agendas are currently limited to this subtree.")
6445 (org-detach-overlay org-agenda-restriction-lock-overlay)
6446
6447 (defun org-agenda-set-restriction-lock (&optional type)
6448 "Set restriction lock for agenda, to current subtree or file.
6449 Restriction will be the file if TYPE is `file', or if type is the
6450 universal prefix '(4), or if the cursor is before the first headline
6451 in the file. Otherwise, restriction will be to the current subtree."
6452 (interactive "P")
6453 (and (equal type '(4)) (setq type 'file))
6454 (setq type (cond
6455 (type type)
6456 ((org-at-heading-p) 'subtree)
6457 ((condition-case nil (org-back-to-heading t) (error nil))
6458 'subtree)
6459 (t 'file)))
6460 (if (eq type 'subtree)
6461 (progn
6462 (setq org-agenda-restrict t)
6463 (setq org-agenda-overriding-restriction 'subtree)
6464 (put 'org-agenda-files 'org-restrict
6465 (list (buffer-file-name (buffer-base-buffer))))
6466 (org-back-to-heading t)
6467 (move-overlay org-agenda-restriction-lock-overlay (point) (point-at-eol))
6468 (move-marker org-agenda-restrict-begin (point))
6469 (move-marker org-agenda-restrict-end
6470 (save-excursion (org-end-of-subtree t)))
6471 (message "Locking agenda restriction to subtree"))
6472 (put 'org-agenda-files 'org-restrict
6473 (list (buffer-file-name (buffer-base-buffer))))
6474 (setq org-agenda-restrict nil)
6475 (setq org-agenda-overriding-restriction 'file)
6476 (move-marker org-agenda-restrict-begin nil)
6477 (move-marker org-agenda-restrict-end nil)
6478 (message "Locking agenda restriction to file"))
6479 (setq current-prefix-arg nil)
6480 (org-agenda-maybe-redo))
6481
6482 (defun org-agenda-remove-restriction-lock (&optional noupdate)
6483 "Remove the agenda restriction lock."
6484 (interactive "P")
6485 (org-detach-overlay org-agenda-restriction-lock-overlay)
6486 (org-detach-overlay org-speedbar-restriction-lock-overlay)
6487 (setq org-agenda-overriding-restriction nil)
6488 (setq org-agenda-restrict nil)
6489 (put 'org-agenda-files 'org-restrict nil)
6490 (move-marker org-agenda-restrict-begin nil)
6491 (move-marker org-agenda-restrict-end nil)
6492 (setq current-prefix-arg nil)
6493 (message "Agenda restriction lock removed")
6494 (or noupdate (org-agenda-maybe-redo)))
6495
6496 (defun org-agenda-maybe-redo ()
6497 "If there is any window showing the agenda view, update it."
6498 (let ((w (get-buffer-window org-agenda-buffer-name t))
6499 (w0 (selected-window)))
6500 (when w
6501 (select-window w)
6502 (org-agenda-redo)
6503 (select-window w0)
6504 (if org-agenda-overriding-restriction
6505 (message "Agenda view shifted to new %s restriction"
6506 org-agenda-overriding-restriction)
6507 (message "Agenda restriction lock removed")))))
6508
6509 ;;; Agenda commands
6510
6511 (defun org-agenda-check-type (error &rest types)
6512 "Check if agenda buffer is of allowed type.
6513 If ERROR is non-nil, throw an error, otherwise just return nil."
6514 (if (not org-agenda-type)
6515 (error "No Org agenda currently displayed")
6516 (if (memq org-agenda-type types)
6517 t
6518 (if error
6519 (error "Not allowed in %s-type agenda buffers" org-agenda-type)
6520 nil))))
6521
6522 (defun org-agenda-Quit (&optional arg)
6523 "Exit agenda by removing the window or the buffer."
6524 (interactive)
6525 (if org-agenda-columns-active
6526 (org-columns-quit)
6527 (let ((buf (current-buffer)))
6528 (if (eq org-agenda-window-setup 'other-frame)
6529 (progn
6530 (org-agenda-reset-markers)
6531 (kill-buffer buf)
6532 (org-columns-remove-overlays)
6533 (setq org-agenda-archives-mode nil)
6534 (delete-frame))
6535 (and (not (eq org-agenda-window-setup 'current-window))
6536 (not (one-window-p))
6537 (delete-window))
6538 (org-agenda-reset-markers)
6539 (kill-buffer buf)
6540 (org-columns-remove-overlays)
6541 (setq org-agenda-archives-mode nil)))
6542 ;; Maybe restore the pre-agenda window configuration.
6543 (and org-agenda-restore-windows-after-quit
6544 (not (eq org-agenda-window-setup 'other-frame))
6545 org-agenda-pre-window-conf
6546 (set-window-configuration org-agenda-pre-window-conf)
6547 (setq org-agenda-pre-window-conf nil))))
6548
6549 (defun org-agenda-quit ()
6550 "Exit agenda by killing agenda buffer or burying it when
6551 `org-agenda-sticky' is non-NIL"
6552 (interactive)
6553 (if (and (eq org-indirect-buffer-display 'other-window)
6554 org-last-indirect-buffer)
6555 (delete-window (get-buffer-window org-last-indirect-buffer)))
6556 (if org-agenda-columns-active
6557 (org-columns-quit)
6558 (if org-agenda-sticky
6559 (let ((buf (current-buffer)))
6560 (if (eq org-agenda-window-setup 'other-frame)
6561 (progn
6562 (delete-frame))
6563 (and (not (eq org-agenda-window-setup 'current-window))
6564 (not (one-window-p))
6565 (delete-window)))
6566 (with-current-buffer buf
6567 (bury-buffer)
6568 ;; Maybe restore the pre-agenda window configuration.
6569 (and org-agenda-restore-windows-after-quit
6570 (not (eq org-agenda-window-setup 'other-frame))
6571 org-agenda-pre-window-conf
6572 (set-window-configuration org-agenda-pre-window-conf)
6573 (setq org-agenda-pre-window-conf nil))))
6574 (org-agenda-Quit))))
6575
6576 (defun org-agenda-exit ()
6577 "Exit agenda by removing the window or the buffer.
6578 Also kill all Org-mode buffers which have been loaded by `org-agenda'.
6579 Org-mode buffers visited directly by the user will not be touched."
6580 (interactive)
6581 (org-release-buffers org-agenda-new-buffers)
6582 (setq org-agenda-new-buffers nil)
6583 (org-agenda-Quit))
6584
6585 (defun org-agenda-kill-all-agenda-buffers ()
6586 "Kill all buffers in `org-agenda-mode'.
6587 This is used when toggling sticky agendas. You can also explicitly invoke it
6588 with `C-c a C-k'."
6589 (interactive)
6590 (let (blist)
6591 (dolist (buf (buffer-list))
6592 (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
6593 (push buf blist)))
6594 (mapc 'kill-buffer blist)))
6595
6596 (defun org-agenda-execute (arg)
6597 "Execute another agenda command, keeping same window.
6598 So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
6599 in the agenda."
6600 (interactive "P")
6601 (let ((org-agenda-window-setup 'current-window))
6602 (org-agenda arg)))
6603
6604 (defun org-agenda-redo (&optional all)
6605 "Rebuild possibly ALL agenda view(s) in the current buffer."
6606 (interactive "P")
6607 (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
6608 (cpa (unless (eq all t) current-prefix-arg))
6609 (org-agenda-doing-sticky-redo org-agenda-sticky)
6610 (org-agenda-sticky nil)
6611 (org-agenda-buffer-name (or org-agenda-this-buffer-name
6612 org-agenda-buffer-name))
6613 (org-agenda-keep-modes t)
6614 (tag-filter org-agenda-tag-filter)
6615 (tag-preset (get 'org-agenda-tag-filter :preset-filter))
6616 (top-cat-filter org-agenda-top-category-filter)
6617 (cat-filter org-agenda-category-filter)
6618 (cat-preset (get 'org-agenda-category-filter :preset-filter))
6619 (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
6620 (cols org-agenda-columns-active)
6621 (line (org-current-line))
6622 (window-line (- line (org-current-line (window-start))))
6623 (lprops (get 'org-agenda-redo-command 'org-lprops))
6624 (redo-cmd (get-text-property p 'org-redo-cmd))
6625 (last-args (get-text-property p 'org-last-args))
6626 (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
6627 (org-agenda-overriding-cmd-arguments
6628 (unless (eq all t)
6629 (cond ((listp last-args)
6630 (cons (or cpa (car last-args)) (cdr last-args)))
6631 ((stringp last-args)
6632 last-args))))
6633 (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
6634 (put 'org-agenda-tag-filter :preset-filter nil)
6635 (put 'org-agenda-category-filter :preset-filter nil)
6636 (and cols (org-columns-quit))
6637 (message "Rebuilding agenda buffer...")
6638 (if series-redo-cmd
6639 (eval series-redo-cmd)
6640 (org-let lprops '(eval redo-cmd)))
6641 (setq org-agenda-undo-list nil
6642 org-agenda-pending-undo-list nil)
6643 (message "Rebuilding agenda buffer...done")
6644 (put 'org-agenda-tag-filter :preset-filter tag-preset)
6645 (put 'org-agenda-category-filter :preset-filter cat-preset)
6646 (and (or tag-filter tag-preset) (org-agenda-filter-apply tag-filter 'tag))
6647 (and (or cat-filter cat-preset) (org-agenda-filter-apply cat-filter 'category))
6648 (and top-cat-filter (org-agenda-filter-top-category-apply top-cat-filter))
6649 (and cols (org-called-interactively-p 'any) (org-agenda-columns))
6650 (org-goto-line line)
6651 (recenter window-line)))
6652
6653 (defvar org-global-tags-completion-table nil)
6654 (defvar org-agenda-filter-form nil)
6655 (defvar org-agenda-filtered-by-category nil)
6656
6657 (defun org-agenda-filter-by-category (strip)
6658 "Keep only those lines in the agenda buffer that have a specific category.
6659 The category is that of the current line."
6660 (interactive "P")
6661 (if (and org-agenda-filtered-by-category
6662 org-agenda-category-filter)
6663 (org-agenda-filter-show-all-cat)
6664 (let ((cat (org-no-properties (get-text-property (point) 'org-category))))
6665 (if cat (org-agenda-filter-apply
6666 (list (concat (if strip "-" "+") cat)) 'category)
6667 (error "No category at point")))))
6668
6669 (defun org-find-top-category (&optional pos)
6670 (save-excursion
6671 (with-current-buffer (if pos (marker-buffer pos) (current-buffer))
6672 (if pos (goto-char pos))
6673 ;; Skip up to the topmost parent
6674 (while (ignore-errors (outline-up-heading 1) t))
6675 (ignore-errors
6676 (nth 4 (org-heading-components))))))
6677
6678 (defvar org-agenda-filtered-by-top-category nil)
6679
6680 (defun org-agenda-filter-by-top-category (strip)
6681 "Keep only those lines in the agenda buffer that have a specific category.
6682 The category is that of the current line."
6683 (interactive "P")
6684 (if org-agenda-filtered-by-top-category
6685 (progn
6686 (setq org-agenda-filtered-by-top-category nil
6687 org-agenda-top-category-filter nil)
6688 (org-agenda-filter-show-all-cat))
6689 (let ((cat (org-find-top-category (org-get-at-bol 'org-hd-marker))))
6690 (if cat (org-agenda-filter-top-category-apply cat strip)
6691 (error "No top-level category at point")))))
6692
6693 (defun org-agenda-filter-by-tag (strip &optional char narrow)
6694 "Keep only those lines in the agenda buffer that have a specific tag.
6695 The tag is selected with its fast selection letter, as configured.
6696 With prefix argument STRIP, remove all lines that do have the tag.
6697 A lisp caller can specify CHAR. NARROW means that the new tag should be
6698 used to narrow the search - the interactive user can also press `-' or `+'
6699 to switch to narrowing."
6700 (interactive "P")
6701 (let* ((alist org-tag-alist-for-agenda)
6702 (tag-chars (mapconcat
6703 (lambda (x) (if (and (not (symbolp (car x)))
6704 (cdr x))
6705 (char-to-string (cdr x))
6706 ""))
6707 alist ""))
6708 (efforts (org-split-string
6709 (or (cdr (assoc (concat org-effort-property "_ALL")
6710 org-global-properties))
6711 "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
6712 "")))
6713 (effort-op org-agenda-filter-effort-default-operator)
6714 (effort-prompt "")
6715 (inhibit-read-only t)
6716 (current org-agenda-tag-filter)
6717 maybe-refresh a n tag)
6718 (unless char
6719 (message
6720 "%s by tag [%s ], [TAB], %s[/]:off, [+-]:narrow, [>=<?]:effort: "
6721 (if narrow "Narrow" "Filter") tag-chars
6722 (if org-agenda-auto-exclude-function "[RET], " ""))
6723 (setq char (read-char-exclusive)))
6724 (when (member char '(?+ ?-))
6725 ;; Narrowing down
6726 (cond ((equal char ?-) (setq strip t narrow t))
6727 ((equal char ?+) (setq strip nil narrow t)))
6728 (message
6729 "Narrow by tag [%s ], [TAB], [/]:off, [>=<]:effort: " tag-chars)
6730 (setq char (read-char-exclusive)))
6731 (when (member char '(?< ?> ?= ??))
6732 ;; An effort operator
6733 (setq effort-op (char-to-string char))
6734 (setq alist nil) ; to make sure it will be interpreted as effort.
6735 (unless (equal char ??)
6736 (loop for i from 0 to 9 do
6737 (setq effort-prompt
6738 (concat
6739 effort-prompt " ["
6740 (if (= i 9) "0" (int-to-string (1+ i)))
6741 "]" (nth i efforts))))
6742 (message "Effort%s: %s " effort-op effort-prompt)
6743 (setq char (read-char-exclusive))
6744 (when (or (< char ?0) (> char ?9))
6745 (error "Need 1-9,0 to select effort"))))
6746 (when (equal char ?\t)
6747 (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
6748 (org-set-local 'org-global-tags-completion-table
6749 (org-global-tags-completion-table)))
6750 (let ((completion-ignore-case t))
6751 (setq tag (org-icompleting-read
6752 "Tag: " org-global-tags-completion-table))))
6753 (cond
6754 ((equal char ?\r)
6755 (org-agenda-filter-show-all-tag)
6756 (when org-agenda-auto-exclude-function
6757 (setq org-agenda-tag-filter '())
6758 (dolist (tag (org-agenda-get-represented-tags))
6759 (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
6760 (if modifier
6761 (push modifier org-agenda-tag-filter))))
6762 (if (not (null org-agenda-tag-filter))
6763 (org-agenda-filter-apply org-agenda-tag-filter 'tag)))
6764 (setq maybe-refresh t))
6765 ((equal char ?/)
6766 (org-agenda-filter-show-all-tag)
6767 (when (get 'org-agenda-tag-filter :preset-filter)
6768 (org-agenda-filter-apply org-agenda-tag-filter 'tag))
6769 (setq maybe-refresh t))
6770 ((equal char ?. )
6771 (setq org-agenda-tag-filter
6772 (mapcar (lambda(tag) (concat "+" tag))
6773 (org-get-at-bol 'tags)))
6774 (org-agenda-filter-apply org-agenda-tag-filter 'tag)
6775 (setq maybe-refresh t))
6776 ((or (equal char ?\ )
6777 (setq a (rassoc char alist))
6778 (and (>= char ?0) (<= char ?9)
6779 (setq n (if (= char ?0) 9 (- char ?0 1))
6780 tag (concat effort-op (nth n efforts))
6781 a (cons tag nil)))
6782 (and (= char ??)
6783 (setq tag "?eff")
6784 a (cons tag nil))
6785 (and tag (setq a (cons tag nil))))
6786 (org-agenda-filter-show-all-tag)
6787 (setq tag (car a))
6788 (setq org-agenda-tag-filter
6789 (cons (concat (if strip "-" "+") tag)
6790 (if narrow current nil)))
6791 (org-agenda-filter-apply org-agenda-tag-filter 'tag)
6792 (setq maybe-refresh t))
6793 (t (error "Invalid tag selection character %c" char)))
6794 (when (and maybe-refresh
6795 (eq org-agenda-clockreport-mode 'with-filter))
6796 (org-agenda-redo))))
6797
6798 (defun org-agenda-get-represented-tags ()
6799 "Get a list of all tags currently represented in the agenda."
6800 (let (p tags)
6801 (save-excursion
6802 (goto-char (point-min))
6803 (while (setq p (next-single-property-change (point) 'tags))
6804 (goto-char p)
6805 (mapc (lambda (x) (add-to-list 'tags x))
6806 (get-text-property (point) 'tags))))
6807 tags))
6808
6809 (defun org-agenda-filter-by-tag-refine (strip &optional char)
6810 "Refine the current filter. See `org-agenda-filter-by-tag'."
6811 (interactive "P")
6812 (org-agenda-filter-by-tag strip char 'refine))
6813
6814 (defun org-agenda-filter-make-matcher ()
6815 "Create the form that tests a line for agenda filter."
6816 (let (f f1)
6817 ;; first compute the tag-filter matcher
6818 (dolist (x (delete-dups
6819 (append (get 'org-agenda-tag-filter
6820 :preset-filter) org-agenda-tag-filter)))
6821 (if (member x '("-" "+"))
6822 (setq f1 (if (equal x "-") 'tags '(not tags)))
6823 (if (string-match "[<=>?]" x)
6824 (setq f1 (org-agenda-filter-effort-form x))
6825 (setq f1 (list 'member (downcase (substring x 1)) 'tags)))
6826 (if (equal (string-to-char x) ?-)
6827 (setq f1 (list 'not f1))))
6828 (push f1 f))
6829 ;; then compute the category-filter matcher
6830 (dolist (x (delete-dups
6831 (append (get 'org-agenda-category-filter
6832 :preset-filter) org-agenda-category-filter)))
6833 (if (equal "-" (substring x 0 1))
6834 (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
6835 (setq f1 (list 'equal (substring x 1) 'cat)))
6836 (push f1 f))
6837 (cons 'and (nreverse f))))
6838
6839 (defun org-agenda-filter-effort-form (e)
6840 "Return the form to compare the effort of the current line with what E says.
6841 E looks like \"+<2:25\"."
6842 (let (op)
6843 (setq e (substring e 1))
6844 (setq op (string-to-char e) e (substring e 1))
6845 (setq op (cond ((equal op ?<) '<=)
6846 ((equal op ?>) '>=)
6847 ((equal op ??) op)
6848 (t '=)))
6849 (list 'org-agenda-compare-effort (list 'quote op)
6850 (org-duration-string-to-minutes e))))
6851
6852 (defun org-agenda-compare-effort (op value)
6853 "Compare the effort of the current line with VALUE, using OP.
6854 If the line does not have an effort defined, return nil."
6855 (let ((eff (org-get-at-bol 'effort-minutes)))
6856 (if (equal op ??)
6857 (not eff)
6858 (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 0))
6859 value))))
6860
6861 (defun org-agenda-filter-apply (filter type)
6862 "Set FILTER as the new agenda filter and apply it."
6863 (let (tags cat)
6864 (if (eq type 'tag)
6865 (setq org-agenda-tag-filter filter)
6866 (setq org-agenda-category-filter filter))
6867 (setq org-agenda-filter-form (org-agenda-filter-make-matcher))
6868 (if (and (eq type 'category)
6869 (not (equal (substring (car filter) 0 1) "-")))
6870 ;; Only set `org-agenda-filtered-by-category' to t
6871 ;; when a unique category is used as the filter
6872 (setq org-agenda-filtered-by-category t))
6873 (org-agenda-set-mode-name)
6874 (save-excursion
6875 (goto-char (point-min))
6876 (while (not (eobp))
6877 (if (org-get-at-bol 'org-marker)
6878 (progn
6879 (setq tags (org-get-at-bol 'tags) ; used in eval
6880 cat (get-text-property (point) 'org-category))
6881 (if (not (eval org-agenda-filter-form))
6882 (org-agenda-filter-hide-line type))
6883 (beginning-of-line 2))
6884 (beginning-of-line 2))))
6885 (if (get-char-property (point) 'invisible)
6886 (ignore-errors (org-agenda-previous-line)))))
6887
6888 (defun org-agenda-filter-top-category-apply (category &optional negative)
6889 "Set FILTER as the new agenda filter and apply it."
6890 (org-agenda-set-mode-name)
6891 (save-excursion
6892 (goto-char (point-min))
6893 (while (not (eobp))
6894 (let* ((pos (org-get-at-bol 'org-hd-marker))
6895 (topcat (and pos (org-find-top-category pos))))
6896 (if (and topcat (funcall (if negative 'identity 'not)
6897 (string= category topcat)))
6898 (org-agenda-filter-hide-line 'category)))
6899 (beginning-of-line 2)))
6900 (if (get-char-property (point) 'invisible)
6901 (org-agenda-previous-line))
6902 (setq org-agenda-top-category-filter category
6903 org-agenda-filtered-by-top-category t))
6904
6905 (defun org-agenda-filter-hide-line (type)
6906 (let (ov)
6907 (setq ov (make-overlay (max (point-min) (1- (point-at-bol)))
6908 (point-at-eol)))
6909 (overlay-put ov 'invisible t)
6910 (overlay-put ov 'type type)
6911 (if (eq type 'tag)
6912 (push ov org-agenda-tag-filter-overlays)
6913 (push ov org-agenda-cat-filter-overlays))))
6914
6915 (defun org-agenda-fix-tags-filter-overlays-at (&optional pos)
6916 (setq pos (or pos (point)))
6917 (save-excursion
6918 (dolist (ov (overlays-at pos))
6919 (when (and (overlay-get ov 'invisible)
6920 (eq (overlay-get ov 'type) 'tag))
6921 (goto-char pos)
6922 (if (< (overlay-start ov) (point-at-eol))
6923 (move-overlay ov (point-at-eol)
6924 (overlay-end ov)))))))
6925
6926 (defun org-agenda-filter-show-all-tag nil
6927 (mapc 'delete-overlay org-agenda-tag-filter-overlays)
6928 (setq org-agenda-tag-filter-overlays nil
6929 org-agenda-tag-filter nil
6930 org-agenda-filter-form nil)
6931 (org-agenda-set-mode-name))
6932
6933 (defun org-agenda-filter-show-all-cat nil
6934 (mapc 'delete-overlay org-agenda-cat-filter-overlays)
6935 (setq org-agenda-cat-filter-overlays nil
6936 org-agenda-filtered-by-category nil
6937 org-agenda-category-filter nil
6938 org-agenda-filter-form nil)
6939 (org-agenda-set-mode-name))
6940
6941 (defun org-agenda-manipulate-query-add ()
6942 "Manipulate the query by adding a search term with positive selection.
6943 Positive selection means the term must be matched for selection of an entry."
6944 (interactive)
6945 (org-agenda-manipulate-query ?\[))
6946 (defun org-agenda-manipulate-query-subtract ()
6947 "Manipulate the query by adding a search term with negative selection.
6948 Negative selection means term must not be matched for selection of an entry."
6949 (interactive)
6950 (org-agenda-manipulate-query ?\]))
6951 (defun org-agenda-manipulate-query-add-re ()
6952 "Manipulate the query by adding a search regexp with positive selection.
6953 Positive selection means the regexp must match for selection of an entry."
6954 (interactive)
6955 (org-agenda-manipulate-query ?\{))
6956 (defun org-agenda-manipulate-query-subtract-re ()
6957 "Manipulate the query by adding a search regexp with negative selection.
6958 Negative selection means regexp must not match for selection of an entry."
6959 (interactive)
6960 (org-agenda-manipulate-query ?\}))
6961 (defun org-agenda-manipulate-query (char)
6962 (cond
6963 ((memq org-agenda-type '(timeline agenda))
6964 (let ((org-agenda-include-inactive-timestamps t))
6965 (org-agenda-redo))
6966 (message "Display now includes inactive timestamps as well"))
6967 ((eq org-agenda-type 'search)
6968 (org-add-to-string
6969 'org-agenda-query-string
6970 (if org-agenda-last-search-view-search-was-boolean
6971 (cdr (assoc char '((?\[ . " +") (?\] . " -")
6972 (?\{ . " +{}") (?\} . " -{}"))))
6973 " "))
6974 (setq org-agenda-redo-command
6975 (list 'org-search-view
6976 (car (get-text-property (min (1- (point-max)) (point))
6977 'org-last-args))
6978 org-agenda-query-string
6979 (+ (length org-agenda-query-string)
6980 (if (member char '(?\{ ?\})) 0 1))))
6981 (set-register org-agenda-query-register org-agenda-query-string)
6982 (let ((org-agenda-overriding-arguments
6983 (cdr org-agenda-redo-command)))
6984 (org-agenda-redo)))
6985 (t (error "Cannot manipulate query for %s-type agenda buffers"
6986 org-agenda-type))))
6987
6988 (defun org-add-to-string (var string)
6989 (set var (concat (symbol-value var) string)))
6990
6991 (defun org-agenda-goto-date (span)
6992 "Jump to DATE in agenda."
6993 (interactive "P")
6994 (let* ((org-read-date-prefer-future
6995 (eval org-agenda-jump-prefer-future))
6996 (date (org-read-date))
6997 (org-agenda-sticky-orig org-agenda-sticky)
6998 (org-agenda-buffer-tmp-name (buffer-name))
6999 (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7000 (0-arg (or current-prefix-arg (car args)))
7001 (2-arg (nth 2 args))
7002 (newcmd (list 'org-agenda-list 0-arg date
7003 (org-agenda-span-to-ndays 2-arg)))
7004 (newargs (cdr newcmd))
7005 (inhibit-read-only t)
7006 org-agenda-sticky)
7007 (if (not (org-agenda-check-type t 'agenda))
7008 (error "Not available in non-agenda blocks")
7009 (add-text-properties (point-min) (point-max)
7010 `(org-redo-cmd ,newcmd org-last-args ,newargs))
7011 (org-agenda-redo)
7012 (setq org-agenda-sticky org-agenda-sticky-orig
7013 org-agenda-this-buffer-is-sticky org-agenda-sticky))))
7014
7015 (defun org-agenda-goto-today ()
7016 "Go to today."
7017 (interactive)
7018 (org-agenda-check-type t 'timeline 'agenda)
7019 (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7020 (curspan (nth 2 args))
7021 (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
7022 (cond
7023 (tdpos (goto-char tdpos))
7024 ((eq org-agenda-type 'agenda)
7025 (let* ((sd (org-agenda-compute-starting-span
7026 (org-today) (or curspan org-agenda-ndays org-agenda-span)))
7027 (org-agenda-overriding-arguments args))
7028 (setf (nth 1 org-agenda-overriding-arguments) sd)
7029 (org-agenda-redo)
7030 (org-agenda-find-same-or-today-or-agenda)))
7031 (t (error "Cannot find today")))))
7032
7033 (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
7034 (goto-char
7035 (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
7036 (text-property-any (point-min) (point-max) 'org-today t)
7037 (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
7038 (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
7039 (org-agenda-goto-block-beginning))
7040 (point-min))))
7041
7042 (defun org-agenda-goto-block-beginning ()
7043 "Go the agenda block beginning."
7044 (interactive)
7045 (if (not (derived-mode-p 'org-agenda-mode))
7046 (error "Cannot execute this command outside of org-agenda-mode buffers")
7047 (let (dest)
7048 (save-excursion
7049 (unless (looking-at "\\'")
7050 (forward-char))
7051 (let* ((prop 'org-agenda-structural-header)
7052 (p (previous-single-property-change (point) prop))
7053 (n (next-single-property-change (or (and (looking-at "\\`") 1)
7054 (1- (point))) prop)))
7055 (setq dest (cond ((eq n (point-at-eol)) (1- n)) (p (1- p))))))
7056 (if (not dest)
7057 (error "Cannot find the beginning of the blog")
7058 (goto-char dest)
7059 (move-beginning-of-line 1)))))
7060
7061 (defun org-agenda-later (arg)
7062 "Go forward in time by thee current span.
7063 With prefix ARG, go forward that many times the current span."
7064 (interactive "p")
7065 (org-agenda-check-type t 'agenda)
7066 (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7067 (span (or (nth 2 args) org-agenda-current-span))
7068 (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
7069 (greg (calendar-gregorian-from-absolute sd))
7070 (cnt (org-get-at-bol 'org-day-cnt))
7071 greg2)
7072 (cond
7073 ((numberp span)
7074 (setq sd (+ span sd)))
7075 ((eq span 'day)
7076 (setq sd (+ arg sd)))
7077 ((eq span 'week)
7078 (setq sd (+ (* 7 arg) sd)))
7079 ((eq span 'month)
7080 (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
7081 sd (calendar-absolute-from-gregorian greg2))
7082 (setcar greg2 (1+ (car greg2))))
7083 ((eq span 'year)
7084 (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
7085 sd (calendar-absolute-from-gregorian greg2))
7086 (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
7087 (t
7088 (setq sd (+ (* span arg) sd))))
7089 (let ((org-agenda-overriding-cmd
7090 ;; `cmd' may have been set by `org-agenda-run-series' which
7091 ;; uses `org-agenda-overriding-cmd' to decide whether
7092 ;; overriding is allowed for `cmd'
7093 (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
7094 (org-agenda-overriding-arguments
7095 (list (car args) sd span)))
7096 (org-agenda-redo)
7097 (org-agenda-find-same-or-today-or-agenda cnt))))
7098
7099 (defun org-agenda-earlier (arg)
7100 "Go backward in time by the current span.
7101 With prefix ARG, go backward that many times the current span."
7102 (interactive "p")
7103 (org-agenda-later (- arg)))
7104
7105 (defun org-agenda-view-mode-dispatch ()
7106 "Call one of the view mode commands."
7107 (interactive)
7108 (message "View: [d]ay [w]eek [m]onth [y]ear [SPC]reset [q]uit/abort
7109 time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
7110 [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
7111 (let ((a (read-char-exclusive)))
7112 (case a
7113 (?\ (call-interactively 'org-agenda-reset-view))
7114 (?d (call-interactively 'org-agenda-day-view))
7115 (?w (call-interactively 'org-agenda-week-view))
7116 (?m (call-interactively 'org-agenda-month-view))
7117 (?y (call-interactively 'org-agenda-year-view))
7118 (?l (call-interactively 'org-agenda-log-mode))
7119 (?L (org-agenda-log-mode '(4)))
7120 (?c (org-agenda-log-mode 'clockcheck))
7121 ((?F ?f) (call-interactively 'org-agenda-follow-mode))
7122 (?a (call-interactively 'org-agenda-archives-mode))
7123 (?A (org-agenda-archives-mode 'files))
7124 ((?R ?r) (call-interactively 'org-agenda-clockreport-mode))
7125 ((?E ?e) (call-interactively 'org-agenda-entry-text-mode))
7126 (?G (call-interactively 'org-agenda-toggle-time-grid))
7127 (?D (call-interactively 'org-agenda-toggle-diary))
7128 (?\! (call-interactively 'org-agenda-toggle-deadlines))
7129 (?\[ (let ((org-agenda-include-inactive-timestamps t))
7130 (org-agenda-check-type t 'timeline 'agenda)
7131 (org-agenda-redo))
7132 (message "Display now includes inactive timestamps as well"))
7133 (?q (message "Abort"))
7134 (otherwise (error "Invalid key" )))))
7135
7136 (defun org-agenda-reset-view ()
7137 "Switch to default view for agenda."
7138 (interactive)
7139 (org-agenda-change-time-span (or org-agenda-ndays org-agenda-span)))
7140 (defun org-agenda-day-view (&optional day-of-year)
7141 "Switch to daily view for agenda.
7142 With argument DAY-OF-YEAR, switch to that day of the year."
7143 (interactive "P")
7144 (org-agenda-change-time-span 'day day-of-year))
7145 (defun org-agenda-week-view (&optional iso-week)
7146 "Switch to daily view for agenda.
7147 With argument ISO-WEEK, switch to the corresponding ISO week.
7148 If ISO-WEEK has more then 2 digits, only the last two encode the
7149 week. Any digits before this encode a year. So 200712 means
7150 week 12 of year 2007. Years in the range 1938-2037 can also be
7151 written as 2-digit years."
7152 (interactive "P")
7153 (org-agenda-change-time-span 'week iso-week))
7154 (defun org-agenda-month-view (&optional month)
7155 "Switch to monthly view for agenda.
7156 With argument MONTH, switch to that month."
7157 (interactive "P")
7158 (org-agenda-change-time-span 'month month))
7159 (defun org-agenda-year-view (&optional year)
7160 "Switch to yearly view for agenda.
7161 With argument YEAR, switch to that year.
7162 If MONTH has more then 2 digits, only the last two encode the
7163 month. Any digits before this encode a year. So 200712 means
7164 December year 2007. Years in the range 1938-2037 can also be
7165 written as 2-digit years."
7166 (interactive "P")
7167 (when year
7168 (setq year (org-small-year-to-year year)))
7169 (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
7170 (org-agenda-change-time-span 'year year)
7171 (error "Abort")))
7172
7173 (defun org-agenda-change-time-span (span &optional n)
7174 "Change the agenda view to SPAN.
7175 SPAN may be `day', `week', `month', `year'."
7176 (org-agenda-check-type t 'agenda)
7177 (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7178 (curspan (nth 2 args)))
7179 (if (and (not n) (equal curspan span))
7180 (error "Viewing span is already \"%s\"" span))
7181 (let* ((sd (or (org-get-at-bol 'day)
7182 (nth 1 args)
7183 org-starting-day))
7184 (sd (org-agenda-compute-starting-span sd span n))
7185 (org-agenda-overriding-cmd
7186 (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
7187 (org-agenda-overriding-arguments
7188 (list (car args) sd span)))
7189 (org-agenda-redo)
7190 (org-agenda-find-same-or-today-or-agenda))
7191 (org-agenda-set-mode-name)
7192 (message "Switched to %s view" span)))
7193
7194 (defun org-agenda-compute-starting-span (sd span &optional n)
7195 "Compute starting date for agenda.
7196 SPAN may be `day', `week', `month', `year'. The return value
7197 is a cons cell with the starting date and the number of days,
7198 so that the date SD will be in that range."
7199 (let* ((greg (calendar-gregorian-from-absolute sd))
7200 (dg (nth 1 greg))
7201 (mg (car greg))
7202 (yg (nth 2 greg)))
7203 (cond
7204 ((eq span 'day)
7205 (when n
7206 (setq sd (+ (calendar-absolute-from-gregorian
7207 (list mg 1 yg))
7208 n -1))))
7209 ((eq span 'week)
7210 (let* ((nt (calendar-day-of-week
7211 (calendar-gregorian-from-absolute sd)))
7212 (d (if org-agenda-start-on-weekday
7213 (- nt org-agenda-start-on-weekday)
7214 0))
7215 y1)
7216 (setq sd (- sd (+ (if (< d 0) 7 0) d)))
7217 (when n
7218 (require 'cal-iso)
7219 (when (> n 99)
7220 (setq y1 (org-small-year-to-year (/ n 100))
7221 n (mod n 100)))
7222 (setq sd
7223 (calendar-absolute-from-iso
7224 (list n 1
7225 (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
7226 ((eq span 'month)
7227 (let (y1)
7228 (when (and n (> n 99))
7229 (setq y1 (org-small-year-to-year (/ n 100))
7230 n (mod n 100)))
7231 (setq sd (calendar-absolute-from-gregorian
7232 (list (or n mg) 1 (or y1 yg))))))
7233 ((eq span 'year)
7234 (setq sd (calendar-absolute-from-gregorian
7235 (list 1 1 (or n yg))))))
7236 sd))
7237
7238 (defun org-agenda-next-date-line (&optional arg)
7239 "Jump to the next line indicating a date in agenda buffer."
7240 (interactive "p")
7241 (org-agenda-check-type t 'agenda 'timeline)
7242 (beginning-of-line 1)
7243 ;; This does not work if user makes date format that starts with a blank
7244 (if (looking-at "^\\S-") (forward-char 1))
7245 (if (not (re-search-forward "^\\S-" nil t arg))
7246 (progn
7247 (backward-char 1)
7248 (error "No next date after this line in this buffer")))
7249 (goto-char (match-beginning 0)))
7250
7251 (defun org-agenda-previous-date-line (&optional arg)
7252 "Jump to the previous line indicating a date in agenda buffer."
7253 (interactive "p")
7254 (org-agenda-check-type t 'agenda 'timeline)
7255 (beginning-of-line 1)
7256 (if (not (re-search-backward "^\\S-" nil t arg))
7257 (error "No previous date before this line in this buffer")))
7258
7259 ;; Initialize the highlight
7260 (defvar org-hl (make-overlay 1 1))
7261 (overlay-put org-hl 'face 'highlight)
7262
7263 (defun org-highlight (begin end &optional buffer)
7264 "Highlight a region with overlay."
7265 (move-overlay org-hl begin end (or buffer (current-buffer))))
7266
7267 (defun org-unhighlight ()
7268 "Detach overlay INDEX."
7269 (org-detach-overlay org-hl))
7270
7271 (defun org-unhighlight-once ()
7272 "Remove the highlight from its position, and this function from the hook."
7273 (remove-hook 'pre-command-hook 'org-unhighlight-once)
7274 (org-unhighlight))
7275
7276 (defvar org-agenda-pre-follow-window-conf nil)
7277 (defun org-agenda-follow-mode ()
7278 "Toggle follow mode in an agenda buffer."
7279 (interactive)
7280 (unless org-agenda-follow-mode
7281 (setq org-agenda-pre-follow-window-conf
7282 (current-window-configuration)))
7283 (setq org-agenda-follow-mode (not org-agenda-follow-mode))
7284 (unless org-agenda-follow-mode
7285 (set-window-configuration org-agenda-pre-follow-window-conf))
7286 (org-agenda-set-mode-name)
7287 (org-agenda-do-context-action)
7288 (message "Follow mode is %s"
7289 (if org-agenda-follow-mode "on" "off")))
7290
7291 (defun org-agenda-entry-text-mode (&optional arg)
7292 "Toggle entry text mode in an agenda buffer."
7293 (interactive "P")
7294 (setq org-agenda-entry-text-mode (or (integerp arg)
7295 (not org-agenda-entry-text-mode)))
7296 (org-agenda-entry-text-hide)
7297 (and org-agenda-entry-text-mode
7298 (let ((org-agenda-entry-text-maxlines
7299 (if (integerp arg) arg org-agenda-entry-text-maxlines)))
7300 (org-agenda-entry-text-show)))
7301 (org-agenda-set-mode-name)
7302 (message "Entry text mode is %s. Maximum number of lines is %d"
7303 (if org-agenda-entry-text-mode "on" "off")
7304 (if (integerp arg) arg org-agenda-entry-text-maxlines)))
7305
7306 (defun org-agenda-clockreport-mode (&optional with-filter)
7307 "Toggle clocktable mode in an agenda buffer.
7308 With prefix arg WITH-FILTER, make the clocktable respect the current
7309 agenda filter."
7310 (interactive "P")
7311 (org-agenda-check-type t 'agenda)
7312 (if with-filter
7313 (setq org-agenda-clockreport-mode 'with-filter)
7314 (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode)))
7315 (org-agenda-set-mode-name)
7316 (org-agenda-redo)
7317 (message "Clocktable mode is %s"
7318 (if org-agenda-clockreport-mode "on" "off")))
7319
7320 (defun org-agenda-log-mode (&optional special)
7321 "Toggle log mode in an agenda buffer.
7322 With argument SPECIAL, show all possible log items, not only the ones
7323 configured in `org-agenda-log-mode-items'.
7324 With a double `C-u' prefix arg, show *only* log items, nothing else."
7325 (interactive "P")
7326 (org-agenda-check-type t 'agenda 'timeline)
7327 (setq org-agenda-show-log
7328 (cond
7329 ((equal special '(16)) 'only)
7330 ((eq special 'clockcheck)
7331 (if (eq org-agenda-show-log 'clockcheck)
7332 nil 'clockcheck))
7333 (special '(closed clock state))
7334 (t (not org-agenda-show-log))))
7335 (org-agenda-set-mode-name)
7336 (org-agenda-redo)
7337 (message "Log mode is %s"
7338 (if org-agenda-show-log "on" "off")))
7339
7340 (defun org-agenda-archives-mode (&optional with-files)
7341 "Toggle inclusion of items in trees marked with :ARCHIVE:.
7342 When called with a prefix argument, include all archive files as well."
7343 (interactive "P")
7344 (setq org-agenda-archives-mode
7345 (if with-files t (if org-agenda-archives-mode nil 'trees)))
7346 (org-agenda-set-mode-name)
7347 (org-agenda-redo)
7348 (message
7349 "%s"
7350 (cond
7351 ((eq org-agenda-archives-mode nil)
7352 "No archives are included")
7353 ((eq org-agenda-archives-mode 'trees)
7354 (format "Trees with :%s: tag are included" org-archive-tag))
7355 ((eq org-agenda-archives-mode t)
7356 (format "Trees with :%s: tag and all active archive files are included"
7357 org-archive-tag)))))
7358
7359 (defun org-agenda-toggle-diary ()
7360 "Toggle diary inclusion in an agenda buffer."
7361 (interactive)
7362 (org-agenda-check-type t 'agenda)
7363 (setq org-agenda-include-diary (not org-agenda-include-diary))
7364 (org-agenda-redo)
7365 (org-agenda-set-mode-name)
7366 (message "Diary inclusion turned %s"
7367 (if org-agenda-include-diary "on" "off")))
7368
7369 (defun org-agenda-toggle-deadlines ()
7370 "Toggle inclusion of entries with a deadline in an agenda buffer."
7371 (interactive)
7372 (org-agenda-check-type t 'agenda)
7373 (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
7374 (org-agenda-redo)
7375 (org-agenda-set-mode-name)
7376 (message "Deadlines inclusion turned %s"
7377 (if org-agenda-include-deadlines "on" "off")))
7378
7379 (defun org-agenda-toggle-time-grid ()
7380 "Toggle time grid in an agenda buffer."
7381 (interactive)
7382 (org-agenda-check-type t 'agenda)
7383 (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
7384 (org-agenda-redo)
7385 (org-agenda-set-mode-name)
7386 (message "Time-grid turned %s"
7387 (if org-agenda-use-time-grid "on" "off")))
7388
7389 (defun org-agenda-set-mode-name ()
7390 "Set the mode name to indicate all the small mode settings."
7391 (setq mode-name
7392 (list "Org-Agenda"
7393 (if (get 'org-agenda-files 'org-restrict) " []" "")
7394 " "
7395 '(:eval (org-agenda-span-name org-agenda-current-span))
7396 (if org-agenda-follow-mode " Follow" "")
7397 (if org-agenda-entry-text-mode " ETxt" "")
7398 (if org-agenda-include-diary " Diary" "")
7399 (if org-agenda-include-deadlines " Ddl" "")
7400 (if org-agenda-use-time-grid " Grid" "")
7401 (if (and (boundp 'org-habit-show-habits)
7402 org-habit-show-habits) " Habit" "")
7403 (cond
7404 ((consp org-agenda-show-log) " LogAll")
7405 ((eq org-agenda-show-log 'clockcheck) " ClkCk")
7406 (org-agenda-show-log " Log")
7407 (t ""))
7408 (if (or org-agenda-category-filter (get 'org-agenda-category-filter
7409 :preset-filter))
7410 '(:eval (org-propertize
7411 (concat " <"
7412 (mapconcat
7413 'identity
7414 (append
7415 (get 'org-agenda-category-filter :preset-filter)
7416 org-agenda-category-filter)
7417 "")
7418 ">")
7419 'face 'org-agenda-filter-category
7420 'help-echo "Category used in filtering"))
7421 "")
7422 (if (or org-agenda-tag-filter (get 'org-agenda-tag-filter
7423 :preset-filter))
7424 '(:eval (org-propertize
7425 (concat " {"
7426 (mapconcat
7427 'identity
7428 (append
7429 (get 'org-agenda-tag-filter :preset-filter)
7430 org-agenda-tag-filter)
7431 "")
7432 "}")
7433 'face 'org-agenda-filter-tags
7434 'help-echo "Tags used in filtering"))
7435 "")
7436 (if org-agenda-archives-mode
7437 (if (eq org-agenda-archives-mode t)
7438 " Archives"
7439 (format " :%s:" org-archive-tag))
7440 "")
7441 (if org-agenda-clockreport-mode
7442 (if (eq org-agenda-clockreport-mode 'with-filter)
7443 " Clock{}" " Clock")
7444 "")))
7445 (force-mode-line-update))
7446
7447 (define-obsolete-function-alias
7448 'org-agenda-post-command-hook 'org-agenda-update-agenda-type "24.3")
7449
7450 (defun org-agenda-update-agenda-type ()
7451 "Update the agenda type after each command."
7452 (setq org-agenda-type
7453 (or (get-text-property (point) 'org-agenda-type)
7454 (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
7455
7456 (defun org-agenda-next-line ()
7457 "Move cursor to the next line, and show if follow mode is active."
7458 (interactive)
7459 (call-interactively 'next-line)
7460 (org-agenda-do-context-action))
7461
7462 (defun org-agenda-previous-line ()
7463 "Move cursor to the previous line, and show if follow-mode is active."
7464 (interactive)
7465 (call-interactively 'previous-line)
7466 (org-agenda-do-context-action))
7467
7468 (defun org-agenda-next-item (n)
7469 "Move cursor to next agenda item."
7470 (interactive "p")
7471 (let ((col (current-column)))
7472 (dotimes (c n)
7473 (when (next-single-property-change (point-at-eol) 'org-marker)
7474 (move-end-of-line 1)
7475 (goto-char (next-single-property-change (point) 'org-marker))))
7476 (org-move-to-column col))
7477 (org-agenda-do-context-action))
7478
7479 (defun org-agenda-previous-item (n)
7480 "Move cursor to next agenda item."
7481 (interactive "p")
7482 (dotimes (c n)
7483 (let ((col (current-column))
7484 (goto (save-excursion
7485 (move-end-of-line 0)
7486 (previous-single-property-change (point) 'org-marker))))
7487 (if goto (goto-char goto))
7488 (org-move-to-column col)))
7489 (org-agenda-do-context-action))
7490
7491 (defun org-agenda-do-context-action ()
7492 "Show outline path and, maybe, follow mode window."
7493 (let ((m (org-get-at-bol 'org-marker)))
7494 (when (and (markerp m) (marker-buffer m))
7495 (and org-agenda-follow-mode
7496 (if org-agenda-follow-indirect
7497 (org-agenda-tree-to-indirect-buffer nil)
7498 (org-agenda-show)))
7499 (and org-agenda-show-outline-path
7500 (org-with-point-at m (org-display-outline-path t))))))
7501
7502 (defun org-agenda-show-tags ()
7503 "Show the tags applicable to the current item."
7504 (interactive)
7505 (let* ((tags (org-get-at-bol 'tags)))
7506 (if tags
7507 (message "Tags are :%s:"
7508 (org-no-properties (mapconcat 'identity tags ":")))
7509 (message "No tags associated with this line"))))
7510
7511 (defun org-agenda-goto (&optional highlight)
7512 "Go to the Org-mode file which contains the item at point."
7513 (interactive)
7514 (let* ((marker (or (org-get-at-bol 'org-marker)
7515 (org-agenda-error)))
7516 (buffer (marker-buffer marker))
7517 (pos (marker-position marker)))
7518 (switch-to-buffer-other-window buffer)
7519 (widen)
7520 (push-mark)
7521 (goto-char pos)
7522 (when (derived-mode-p 'org-mode)
7523 (org-show-context 'agenda)
7524 (save-excursion
7525 (and (outline-next-heading)
7526 (org-flag-heading nil)))) ; show the next heading
7527 (when (outline-invisible-p)
7528 (show-entry)) ; display invisible text
7529 (recenter (/ (window-height) 2))
7530 (run-hooks 'org-agenda-after-show-hook)
7531 (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
7532
7533 (defvar org-agenda-after-show-hook nil
7534 "Normal hook run after an item has been shown from the agenda.
7535 Point is in the buffer where the item originated.")
7536
7537 (defun org-agenda-kill ()
7538 "Kill the entry or subtree belonging to the current agenda entry."
7539 (interactive)
7540 (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
7541 (let* ((bufname-orig (buffer-name))
7542 (marker (or (org-get-at-bol 'org-marker)
7543 (org-agenda-error)))
7544 (buffer (marker-buffer marker))
7545 (pos (marker-position marker))
7546 (type (org-get-at-bol 'type))
7547 dbeg dend (n 0) conf)
7548 (org-with-remote-undo buffer
7549 (with-current-buffer buffer
7550 (save-excursion
7551 (goto-char pos)
7552 (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
7553 (setq dbeg (progn (org-back-to-heading t) (point))
7554 dend (org-end-of-subtree t t))
7555 (setq dbeg (point-at-bol)
7556 dend (min (point-max) (1+ (point-at-eol)))))
7557 (goto-char dbeg)
7558 (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
7559 (setq conf (or (eq t org-agenda-confirm-kill)
7560 (and (numberp org-agenda-confirm-kill)
7561 (> n org-agenda-confirm-kill))))
7562 (and conf
7563 (not (y-or-n-p
7564 (format "Delete entry with %d lines in buffer \"%s\"? "
7565 n (buffer-name buffer))))
7566 (error "Abort"))
7567 (let ((org-agenda-buffer-name bufname-orig))
7568 (org-remove-subtree-entries-from-agenda buffer dbeg dend))
7569 (with-current-buffer buffer (delete-region dbeg dend))
7570 (message "Agenda item and source killed"))))
7571
7572 (defvar org-archive-default-command) ; defined in org-archive.el
7573 (defun org-agenda-archive-default ()
7574 "Archive the entry or subtree belonging to the current agenda entry."
7575 (interactive)
7576 (require 'org-archive)
7577 (org-agenda-archive-with org-archive-default-command))
7578
7579 (defun org-agenda-archive-default-with-confirmation ()
7580 "Archive the entry or subtree belonging to the current agenda entry."
7581 (interactive)
7582 (require 'org-archive)
7583 (org-agenda-archive-with org-archive-default-command 'confirm))
7584
7585 (defun org-agenda-archive ()
7586 "Archive the entry or subtree belonging to the current agenda entry."
7587 (interactive)
7588 (org-agenda-archive-with 'org-archive-subtree))
7589
7590 (defun org-agenda-archive-to-archive-sibling ()
7591 "Move the entry to the archive sibling."
7592 (interactive)
7593 (org-agenda-archive-with 'org-archive-to-archive-sibling))
7594
7595 (defun org-agenda-archive-with (cmd &optional confirm)
7596 "Move the entry to the archive sibling."
7597 (interactive)
7598 (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
7599 (let* ((bufname-orig (buffer-name))
7600 (marker (or (org-get-at-bol 'org-marker)
7601 (org-agenda-error)))
7602 (buffer (marker-buffer marker))
7603 (pos (marker-position marker)))
7604 (org-with-remote-undo buffer
7605 (with-current-buffer buffer
7606 (if (derived-mode-p 'org-mode)
7607 (if (and confirm
7608 (not (y-or-n-p "Archive this subtree or entry? ")))
7609 (error "Abort")
7610 (save-excursion
7611 (goto-char pos)
7612 (let ((org-agenda-buffer-name bufname-orig))
7613 (org-remove-subtree-entries-from-agenda))
7614 (org-back-to-heading t)
7615 (funcall cmd)))
7616 (error "Archiving works only in Org-mode files"))))))
7617
7618 (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
7619 "Remove all lines in the agenda that correspond to a given subtree.
7620 The subtree is the one in buffer BUF, starting at BEG and ending at END.
7621 If this information is not given, the function uses the tree at point."
7622 (let ((buf (or buf (current-buffer))) m p)
7623 (save-excursion
7624 (unless (and beg end)
7625 (org-back-to-heading t)
7626 (setq beg (point))
7627 (org-end-of-subtree t)
7628 (setq end (point)))
7629 (set-buffer (get-buffer org-agenda-buffer-name))
7630 (save-excursion
7631 (goto-char (point-max))
7632 (beginning-of-line 1)
7633 (while (not (bobp))
7634 (when (and (setq m (org-get-at-bol 'org-marker))
7635 (equal buf (marker-buffer m))
7636 (setq p (marker-position m))
7637 (>= p beg)
7638 (< p end))
7639 (let ((inhibit-read-only t))
7640 (delete-region (point-at-bol) (1+ (point-at-eol)))))
7641 (beginning-of-line 0))))))
7642
7643 (defun org-agenda-refile (&optional goto rfloc no-update)
7644 "Refile the item at point."
7645 (interactive "P")
7646 (if (equal goto '(16))
7647 (org-refile-goto-last-stored)
7648 (let* ((buffer-orig (buffer-name))
7649 (marker (or (org-get-at-bol 'org-hd-marker)
7650 (org-agenda-error)))
7651 (buffer (marker-buffer marker))
7652 (pos (marker-position marker))
7653 (rfloc (or rfloc
7654 (org-refile-get-location
7655 (if goto "Goto" "Refile to") buffer
7656 org-refile-allow-creating-parent-nodes))))
7657 (with-current-buffer buffer
7658 (save-excursion
7659 (save-restriction
7660 (widen)
7661 (goto-char marker)
7662 (let ((org-agenda-buffer-name buffer-orig))
7663 (org-remove-subtree-entries-from-agenda))
7664 (org-refile goto buffer rfloc)))))
7665 (unless no-update (org-agenda-redo))))
7666
7667 (defun org-agenda-open-link (&optional arg)
7668 "Follow the link in the current line, if any.
7669 This looks for a link in the displayed line in the agenda. It also looks
7670 at the text of the entry itself."
7671 (interactive "P")
7672 (let* ((marker (or (org-get-at-bol 'org-hd-marker)
7673 (org-get-at-bol 'org-marker)))
7674 (buffer (and marker (marker-buffer marker)))
7675 (prefix (buffer-substring
7676 (point-at-bol) (point-at-eol))))
7677 (cond
7678 (buffer
7679 (with-current-buffer buffer
7680 (save-excursion
7681 (save-restriction
7682 (widen)
7683 (goto-char marker)
7684 (org-offer-links-in-entry arg prefix)))))
7685 ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
7686 (save-excursion
7687 (beginning-of-line 1)
7688 (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
7689 (org-open-link-from-string (match-string 1)))
7690 (t (error "No link to open here")))))
7691
7692 (defun org-agenda-copy-local-variable (var)
7693 "Get a variable from a referenced buffer and install it here."
7694 (let ((m (org-get-at-bol 'org-marker)))
7695 (when (and m (buffer-live-p (marker-buffer m)))
7696 (org-set-local var (with-current-buffer (marker-buffer m)
7697 (symbol-value var))))))
7698
7699 (defun org-agenda-switch-to (&optional delete-other-windows)
7700 "Go to the Org-mode file which contains the item at point."
7701 (interactive)
7702 (if (and org-return-follows-link
7703 (not (org-get-at-bol 'org-marker))
7704 (org-in-regexp org-bracket-link-regexp))
7705 (org-open-link-from-string (match-string 0))
7706 (let* ((marker (or (org-get-at-bol 'org-marker)
7707 (org-agenda-error)))
7708 (buffer (marker-buffer marker))
7709 (pos (marker-position marker)))
7710 (org-pop-to-buffer-same-window buffer)
7711 (and delete-other-windows (delete-other-windows))
7712 (widen)
7713 (goto-char pos)
7714 (when (derived-mode-p 'org-mode)
7715 (org-show-context 'agenda)
7716 (save-excursion
7717 (and (outline-next-heading)
7718 (org-flag-heading nil))) ; show the next heading
7719 (when (outline-invisible-p)
7720 (show-entry)) ; display invisible text
7721 (run-hooks 'org-agenda-after-show-hook)))))
7722
7723 (defun org-agenda-goto-mouse (ev)
7724 "Go to the Org-mode file which contains the item at the mouse click."
7725 (interactive "e")
7726 (mouse-set-point ev)
7727 (org-agenda-goto))
7728
7729 (defun org-agenda-show (&optional full-entry)
7730 "Display the Org-mode file which contains the item at point.
7731 With prefix argument FULL-ENTRY, make the entire entry visible
7732 if it was hidden in the outline."
7733 (interactive "P")
7734 (let ((win (selected-window)))
7735 (if full-entry
7736 (let ((org-show-entry-below t))
7737 (org-agenda-goto t))
7738 (org-agenda-goto t))
7739 (select-window win)))
7740
7741 (defvar org-agenda-show-window nil)
7742 (defun org-agenda-show-and-scroll-up (&optional arg)
7743 "Display the Org-mode file which contains the item at point.
7744 When called repeatedly, scroll the window that is displaying the buffer.
7745 With a \\[universal-argument] prefix, use `org-show-entry' instead of
7746 `show-subtree' to display the item, so that drawers and logbooks stay
7747 folded."
7748 (interactive "P")
7749 (let ((win (selected-window)))
7750 (if (and (window-live-p org-agenda-show-window)
7751 (eq this-command last-command))
7752 (progn
7753 (select-window org-agenda-show-window)
7754 (ignore-errors (scroll-up)))
7755 (org-agenda-goto t)
7756 (if arg (org-show-entry) (show-subtree))
7757 (setq org-agenda-show-window (selected-window)))
7758 (select-window win)))
7759
7760 (defun org-agenda-show-scroll-down ()
7761 "Scroll down the window showing the agenda."
7762 (interactive)
7763 (let ((win (selected-window)))
7764 (when (window-live-p org-agenda-show-window)
7765 (select-window org-agenda-show-window)
7766 (ignore-errors (scroll-down))
7767 (select-window win))))
7768
7769 (defun org-agenda-show-1 (&optional more)
7770 "Display the Org-mode file which contains the item at point.
7771 The prefix arg selects the amount of information to display:
7772
7773 0 hide the subtree
7774 1 just show the entry according to defaults.
7775 2 show the children view
7776 3 show the subtree view
7777 4 show the entire subtree and any LOGBOOK drawers
7778 5 show the entire subtree and any drawers
7779 With prefix argument FULL-ENTRY, make the entire entry visible
7780 if it was hidden in the outline."
7781 (interactive "p")
7782 (let ((win (selected-window)))
7783 (org-agenda-goto t)
7784 (org-recenter-heading 1)
7785 (cond
7786 ((= more 0)
7787 (hide-subtree)
7788 (save-excursion
7789 (org-back-to-heading)
7790 (run-hook-with-args 'org-cycle-hook 'folded))
7791 (message "Remote: FOLDED"))
7792 ((and (org-called-interactively-p 'any) (= more 1))
7793 (message "Remote: show with default settings"))
7794 ((= more 2)
7795 (show-entry)
7796 (show-children)
7797 (save-excursion
7798 (org-back-to-heading)
7799 (run-hook-with-args 'org-cycle-hook 'children))
7800 (message "Remote: CHILDREN"))
7801 ((= more 3)
7802 (show-subtree)
7803 (save-excursion
7804 (org-back-to-heading)
7805 (run-hook-with-args 'org-cycle-hook 'subtree))
7806 (message "Remote: SUBTREE"))
7807 ((= more 4)
7808 (let* ((org-drawers (delete "LOGBOOK" (copy-sequence org-drawers)))
7809 (org-drawer-regexp
7810 (concat "^[ \t]*:\\("
7811 (mapconcat 'regexp-quote org-drawers "\\|")
7812 "\\):[ \t]*$")))
7813 (show-subtree)
7814 (save-excursion
7815 (org-back-to-heading)
7816 (org-cycle-hide-drawers 'subtree)))
7817 (message "Remote: SUBTREE AND LOGBOOK"))
7818 ((> more 4)
7819 (show-subtree)
7820 (message "Remote: SUBTREE AND ALL DRAWERS")))
7821 (select-window win)))
7822
7823 (defun org-recenter-heading (n)
7824 (save-excursion
7825 (org-back-to-heading)
7826 (recenter n)))
7827
7828 (defvar org-agenda-cycle-counter nil)
7829 (defun org-agenda-cycle-show (&optional n)
7830 "Show the current entry in another window, with default settings.
7831 Default settings are taken from `org-show-hierarchy-above' and siblings.
7832 When use repeatedly in immediate succession, the remote entry will cycle
7833 through visibility
7834
7835 children -> subtree -> folded
7836
7837 When called with a numeric prefix arg, that arg will be passed through to
7838 `org-agenda-show-1'. For the interpretation of that argument, see the
7839 docstring of `org-agenda-show-1'."
7840 (interactive "P")
7841 (if (integerp n)
7842 (setq org-agenda-cycle-counter n)
7843 (if (not (eq last-command this-command))
7844 (setq org-agenda-cycle-counter 1)
7845 (if (equal org-agenda-cycle-counter 0)
7846 (setq org-agenda-cycle-counter 2)
7847 (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
7848 (if (> org-agenda-cycle-counter 3)
7849 (setq org-agenda-cycle-counter 0)))))
7850 (org-agenda-show-1 org-agenda-cycle-counter))
7851
7852 (defun org-agenda-recenter (arg)
7853 "Display the Org-mode file which contains the item at point and recenter."
7854 (interactive "P")
7855 (let ((win (selected-window)))
7856 (org-agenda-goto t)
7857 (recenter arg)
7858 (select-window win)))
7859
7860 (defun org-agenda-show-mouse (ev)
7861 "Display the Org-mode file which contains the item at the mouse click."
7862 (interactive "e")
7863 (mouse-set-point ev)
7864 (org-agenda-show))
7865
7866 (defun org-agenda-check-no-diary ()
7867 "Check if the entry is a diary link and abort if yes."
7868 (if (org-get-at-bol 'org-agenda-diary-link)
7869 (org-agenda-error)))
7870
7871 (defun org-agenda-error ()
7872 (error "Command not allowed in this line"))
7873
7874 (defun org-agenda-tree-to-indirect-buffer (arg)
7875 "Show the subtree corresponding to the current entry in an indirect buffer.
7876 This calls the command `org-tree-to-indirect-buffer' from the original buffer.
7877
7878 With a numerical prefix ARG, go up to this level and then take that tree.
7879 With a negative numeric ARG, go up by this number of levels.
7880 With a \\[universal-argument] prefix, make a separate frame for this tree (i.e. don't
7881 use the dedicated frame)."
7882 (interactive "P")
7883 (if current-prefix-arg
7884 (org-agenda-do-tree-to-indirect-buffer arg)
7885 (let ((agenda-buffer (buffer-name))
7886 (agenda-window (selected-window))
7887 (indirect-window
7888 (and org-last-indirect-buffer
7889 (get-buffer-window org-last-indirect-buffer))))
7890 (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
7891 (unless (or (eq org-indirect-buffer-display 'new-frame)
7892 (eq org-indirect-buffer-display 'dedicated-frame))
7893 (unwind-protect
7894 (unless (and indirect-window (window-live-p indirect-window))
7895 (setq indirect-window (split-window agenda-window)))
7896 (and indirect-window (select-window indirect-window))
7897 (switch-to-buffer org-last-indirect-buffer :norecord)
7898 (fit-window-to-buffer indirect-window)))
7899 (select-window (get-buffer-window agenda-buffer)))))
7900
7901 (defun org-agenda-do-tree-to-indirect-buffer (arg)
7902 "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
7903 (org-agenda-check-no-diary)
7904 (let* ((marker (or (org-get-at-bol 'org-marker)
7905 (org-agenda-error)))
7906 (buffer (marker-buffer marker))
7907 (pos (marker-position marker)))
7908 (with-current-buffer buffer
7909 (save-excursion
7910 (goto-char pos)
7911 (funcall 'org-tree-to-indirect-buffer arg)))))
7912
7913 (defvar org-last-heading-marker (make-marker)
7914 "Marker pointing to the headline that last changed its TODO state
7915 by a remote command from the agenda.")
7916
7917 (defun org-agenda-todo-nextset ()
7918 "Switch TODO entry to next sequence."
7919 (interactive)
7920 (org-agenda-todo 'nextset))
7921
7922 (defun org-agenda-todo-previousset ()
7923 "Switch TODO entry to previous sequence."
7924 (interactive)
7925 (org-agenda-todo 'previousset))
7926
7927 (defun org-agenda-todo (&optional arg)
7928 "Cycle TODO state of line at point, also in Org-mode file.
7929 This changes the line at point, all other lines in the agenda referring to
7930 the same tree node, and the headline of the tree node in the Org-mode file."
7931 (interactive "P")
7932 (org-agenda-check-no-diary)
7933 (let* ((col (current-column))
7934 (marker (or (org-get-at-bol 'org-marker)
7935 (org-agenda-error)))
7936 (buffer (marker-buffer marker))
7937 (pos (marker-position marker))
7938 (hdmarker (org-get-at-bol 'org-hd-marker))
7939 (todayp (org-agenda-todayp (org-get-at-bol 'day)))
7940 (inhibit-read-only t)
7941 org-agenda-headline-snapshot-before-repeat newhead just-one)
7942 (org-with-remote-undo buffer
7943 (with-current-buffer buffer
7944 (widen)
7945 (goto-char pos)
7946 (org-show-context 'agenda)
7947 (save-excursion
7948 (and (outline-next-heading)
7949 (org-flag-heading nil))) ; show the next heading
7950 (let ((current-prefix-arg arg))
7951 (call-interactively 'org-todo))
7952 (and (bolp) (forward-char 1))
7953 (setq newhead (org-get-heading))
7954 (when (and (org-bound-and-true-p
7955 org-agenda-headline-snapshot-before-repeat)
7956 (not (equal org-agenda-headline-snapshot-before-repeat
7957 newhead))
7958 todayp)
7959 (setq newhead org-agenda-headline-snapshot-before-repeat
7960 just-one t))
7961 (save-excursion
7962 (org-back-to-heading)
7963 (move-marker org-last-heading-marker (point))))
7964 (beginning-of-line 1)
7965 (save-excursion
7966 (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
7967 (org-move-to-column col))))
7968
7969 (defun org-agenda-add-note (&optional arg)
7970 "Add a time-stamped note to the entry at point."
7971 (interactive "P")
7972 (org-agenda-check-no-diary)
7973 (let* ((marker (or (org-get-at-bol 'org-marker)
7974 (org-agenda-error)))
7975 (buffer (marker-buffer marker))
7976 (pos (marker-position marker))
7977 (hdmarker (org-get-at-bol 'org-hd-marker))
7978 (inhibit-read-only t))
7979 (with-current-buffer buffer
7980 (widen)
7981 (goto-char pos)
7982 (org-show-context 'agenda)
7983 (save-excursion
7984 (and (outline-next-heading)
7985 (org-flag-heading nil))) ; show the next heading
7986 (org-add-note))))
7987
7988 (defun org-agenda-change-all-lines (newhead hdmarker
7989 &optional fixface just-this)
7990 "Change all lines in the agenda buffer which match HDMARKER.
7991 The new content of the line will be NEWHEAD (as modified by
7992 `org-agenda-format-item'). HDMARKER is checked with
7993 `equal' against all `org-hd-marker' text properties in the file.
7994 If FIXFACE is non-nil, the face of each item is modified according to
7995 the new TODO state.
7996 If JUST-THIS is non-nil, change just the current line, not all.
7997 If FORCE-TAGS is non nil, the car of it returns the new tags."
7998 (let* ((inhibit-read-only t)
7999 (line (org-current-line))
8000 (org-agenda-buffer (current-buffer))
8001 (thetags (with-current-buffer (marker-buffer hdmarker)
8002 (save-excursion (save-restriction (widen)
8003 (goto-char hdmarker)
8004 (org-get-tags-at)))))
8005 props m pl undone-face done-face finish new dotime cat tags)
8006 (save-excursion
8007 (goto-char (point-max))
8008 (beginning-of-line 1)
8009 (while (not finish)
8010 (setq finish (bobp))
8011 (when (and (setq m (org-get-at-bol 'org-hd-marker))
8012 (or (not just-this) (= (org-current-line) line))
8013 (equal m hdmarker))
8014 (setq props (text-properties-at (point))
8015 dotime (org-get-at-bol 'dotime)
8016 cat (org-get-at-bol 'org-category)
8017 tags thetags
8018 new
8019 (let ((org-prefix-format-compiled
8020 (or (get-text-property (min (1- (point-max)) (point)) 'format)
8021 org-prefix-format-compiled))
8022 (extra (org-get-at-bol 'extra)))
8023 (with-current-buffer (marker-buffer hdmarker)
8024 (save-excursion
8025 (save-restriction
8026 (widen)
8027 (org-agenda-format-item extra newhead cat tags dotime)))))
8028 pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
8029 undone-face (org-get-at-bol 'undone-face)
8030 done-face (org-get-at-bol 'done-face))
8031 (beginning-of-line 1)
8032 (cond
8033 ((equal new "")
8034 (and (looking-at ".*\n?") (replace-match "")))
8035 ((looking-at ".*")
8036 (replace-match new t t)
8037 (beginning-of-line 1)
8038 (add-text-properties (point-at-bol) (point-at-eol) props)
8039 (when fixface
8040 (add-text-properties
8041 (point-at-bol) (point-at-eol)
8042 (list 'face
8043 (if org-last-todo-state-is-todo
8044 undone-face done-face))))
8045 (org-agenda-highlight-todo 'line)
8046 (beginning-of-line 1))
8047 (t (error "Line update did not work")))
8048 (save-restriction
8049 (narrow-to-region (point-at-bol) (point-at-eol))
8050 (org-agenda-finalize)))
8051 (beginning-of-line 0)))))
8052
8053 (defun org-agenda-align-tags (&optional line)
8054 "Align all tags in agenda items to `org-agenda-tags-column'."
8055 (let ((inhibit-read-only t) l c)
8056 (save-excursion
8057 (goto-char (if line (point-at-bol) (point-min)))
8058 (while (re-search-forward (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
8059 (if line (point-at-eol) nil) t)
8060 (add-text-properties
8061 (match-beginning 2) (match-end 2)
8062 (list 'face (delq nil (let ((prop (get-text-property
8063 (match-beginning 2) 'face)))
8064 (or (listp prop) (setq prop (list prop)))
8065 (if (memq 'org-tag prop)
8066 prop
8067 (cons 'org-tag prop))))))
8068 (setq l (- (match-end 2) (match-beginning 2))
8069 c (if (< org-agenda-tags-column 0)
8070 (- (abs org-agenda-tags-column) l)
8071 org-agenda-tags-column))
8072 (delete-region (match-beginning 1) (match-end 1))
8073 (goto-char (match-beginning 1))
8074 (insert (org-add-props
8075 (make-string (max 1 (- c (current-column))) ?\ )
8076 (plist-put (copy-sequence (text-properties-at (point)))
8077 'face nil))))
8078 (goto-char (point-min))
8079 (org-font-lock-add-tag-faces (point-max)))))
8080
8081 (defun org-agenda-priority-up ()
8082 "Increase the priority of line at point, also in Org-mode file."
8083 (interactive)
8084 (org-agenda-priority 'up))
8085
8086 (defun org-agenda-priority-down ()
8087 "Decrease the priority of line at point, also in Org-mode file."
8088 (interactive)
8089 (org-agenda-priority 'down))
8090
8091 (defun org-agenda-priority (&optional force-direction show)
8092 "Set the priority of line at point, also in Org-mode file.
8093 This changes the line at point, all other lines in the agenda referring to
8094 the same tree node, and the headline of the tree node in the Org-mode file."
8095 (interactive "P")
8096 (if (equal force-direction '(4)) (setq show t))
8097 (unless org-enable-priority-commands
8098 (error "Priority commands are disabled"))
8099 (org-agenda-check-no-diary)
8100 (let* ((marker (or (org-get-at-bol 'org-marker)
8101 (org-agenda-error)))
8102 (hdmarker (org-get-at-bol 'org-hd-marker))
8103 (buffer (marker-buffer hdmarker))
8104 (pos (marker-position hdmarker))
8105 (inhibit-read-only t)
8106 newhead)
8107 (org-with-remote-undo buffer
8108 (with-current-buffer buffer
8109 (widen)
8110 (goto-char pos)
8111 (org-show-context 'agenda)
8112 (save-excursion
8113 (and (outline-next-heading)
8114 (org-flag-heading nil))) ; show the next heading
8115 (funcall 'org-priority force-direction show)
8116 (end-of-line 1)
8117 (setq newhead (org-get-heading)))
8118 (org-agenda-change-all-lines newhead hdmarker)
8119 (beginning-of-line 1))))
8120
8121 ;; FIXME: should fix the tags property of the agenda line.
8122 (defun org-agenda-set-tags (&optional tag onoff)
8123 "Set tags for the current headline."
8124 (interactive)
8125 (org-agenda-check-no-diary)
8126 (if (and (org-region-active-p) (org-called-interactively-p 'any))
8127 (call-interactively 'org-change-tag-in-region)
8128 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
8129 (org-agenda-error)))
8130 (buffer (marker-buffer hdmarker))
8131 (pos (marker-position hdmarker))
8132 (inhibit-read-only t)
8133 newhead)
8134 (org-with-remote-undo buffer
8135 (with-current-buffer buffer
8136 (widen)
8137 (goto-char pos)
8138 (save-excursion
8139 (org-show-context 'agenda))
8140 (save-excursion
8141 (and (outline-next-heading)
8142 (org-flag-heading nil))) ; show the next heading
8143 (goto-char pos)
8144 (if tag
8145 (org-toggle-tag tag onoff)
8146 (call-interactively 'org-set-tags))
8147 (end-of-line 1)
8148 (setq newhead (org-get-heading)))
8149 (org-agenda-change-all-lines newhead hdmarker)
8150 (beginning-of-line 1)))))
8151
8152 (defun org-agenda-set-property ()
8153 "Set a property for the current headline."
8154 (interactive)
8155 (org-agenda-check-no-diary)
8156 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
8157 (org-agenda-error)))
8158 (buffer (marker-buffer hdmarker))
8159 (pos (marker-position hdmarker))
8160 (inhibit-read-only t)
8161 newhead)
8162 (org-with-remote-undo buffer
8163 (with-current-buffer buffer
8164 (widen)
8165 (goto-char pos)
8166 (save-excursion
8167 (org-show-context 'agenda))
8168 (save-excursion
8169 (and (outline-next-heading)
8170 (org-flag-heading nil))) ; show the next heading
8171 (goto-char pos)
8172 (call-interactively 'org-set-property)))))
8173
8174 (defun org-agenda-set-effort ()
8175 "Set the effort property for the current headline."
8176 (interactive)
8177 (org-agenda-check-no-diary)
8178 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
8179 (org-agenda-error)))
8180 (buffer (marker-buffer hdmarker))
8181 (pos (marker-position hdmarker))
8182 (inhibit-read-only t)
8183 newhead)
8184 (org-with-remote-undo buffer
8185 (with-current-buffer buffer
8186 (widen)
8187 (goto-char pos)
8188 (save-excursion
8189 (org-show-context 'agenda))
8190 (save-excursion
8191 (and (outline-next-heading)
8192 (org-flag-heading nil))) ; show the next heading
8193 (goto-char pos)
8194 (call-interactively 'org-set-effort)
8195 (end-of-line 1)
8196 (setq newhead (org-get-heading)))
8197 (org-agenda-change-all-lines newhead hdmarker))))
8198
8199 (defun org-agenda-toggle-archive-tag ()
8200 "Toggle the archive tag for the current entry."
8201 (interactive)
8202 (org-agenda-check-no-diary)
8203 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
8204 (org-agenda-error)))
8205 (buffer (marker-buffer hdmarker))
8206 (pos (marker-position hdmarker))
8207 (inhibit-read-only t)
8208 newhead)
8209 (org-with-remote-undo buffer
8210 (with-current-buffer buffer
8211 (widen)
8212 (goto-char pos)
8213 (org-show-context 'agenda)
8214 (save-excursion
8215 (and (outline-next-heading)
8216 (org-flag-heading nil))) ; show the next heading
8217 (call-interactively 'org-toggle-archive-tag)
8218 (end-of-line 1)
8219 (setq newhead (org-get-heading)))
8220 (org-agenda-change-all-lines newhead hdmarker)
8221 (beginning-of-line 1))))
8222
8223 (defun org-agenda-do-date-later (arg)
8224 (interactive "P")
8225 (cond
8226 ((or (equal arg '(16))
8227 (memq last-command
8228 '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
8229 (setq this-command 'org-agenda-date-later-minutes)
8230 (org-agenda-date-later-minutes 1))
8231 ((or (equal arg '(4))
8232 (memq last-command
8233 '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
8234 (setq this-command 'org-agenda-date-later-hours)
8235 (org-agenda-date-later-hours 1))
8236 (t
8237 (org-agenda-date-later (prefix-numeric-value arg)))))
8238
8239 (defun org-agenda-do-date-earlier (arg)
8240 (interactive "P")
8241 (cond
8242 ((or (equal arg '(16))
8243 (memq last-command
8244 '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
8245 (setq this-command 'org-agenda-date-earlier-minutes)
8246 (org-agenda-date-earlier-minutes 1))
8247 ((or (equal arg '(4))
8248 (memq last-command
8249 '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
8250 (setq this-command 'org-agenda-date-earlier-hours)
8251 (org-agenda-date-earlier-hours 1))
8252 (t
8253 (org-agenda-date-earlier (prefix-numeric-value arg)))))
8254
8255 (defun org-agenda-date-later (arg &optional what)
8256 "Change the date of this item to ARG day(s) later."
8257 (interactive "p")
8258 (org-agenda-check-type t 'agenda 'timeline)
8259 (org-agenda-check-no-diary)
8260 (let* ((marker (or (org-get-at-bol 'org-marker)
8261 (org-agenda-error)))
8262 (buffer (marker-buffer marker))
8263 (pos (marker-position marker))
8264 cdate today)
8265 (org-with-remote-undo buffer
8266 (with-current-buffer buffer
8267 (widen)
8268 (goto-char pos)
8269 (if (not (org-at-timestamp-p))
8270 (error "Cannot find time stamp"))
8271 (when (and org-agenda-move-date-from-past-immediately-to-today
8272 (equal arg 1)
8273 (or (not what) (eq what 'day))
8274 (not (save-match-data (org-at-date-range-p))))
8275 (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
8276 cdate (calendar-absolute-from-gregorian
8277 (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
8278 today (org-today))
8279 (if (> today cdate)
8280 ;; immediately shift to today
8281 (setq arg (- today cdate))))
8282 (org-timestamp-change arg (or what 'day))
8283 (when (and (org-at-date-range-p)
8284 (re-search-backward org-tr-regexp-both (point-at-bol)))
8285 (let ((end org-last-changed-timestamp))
8286 (org-timestamp-change arg (or what 'day))
8287 (setq org-last-changed-timestamp
8288 (concat org-last-changed-timestamp "--" end)))))
8289 (org-agenda-show-new-time marker org-last-changed-timestamp))
8290 (message "Time stamp changed to %s" org-last-changed-timestamp)))
8291
8292 (defun org-agenda-date-earlier (arg &optional what)
8293 "Change the date of this item to ARG day(s) earlier."
8294 (interactive "p")
8295 (org-agenda-date-later (- arg) what))
8296
8297 (defun org-agenda-date-later-minutes (arg)
8298 "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
8299 (interactive "p")
8300 (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
8301 (org-agenda-date-later arg 'minute))
8302
8303 (defun org-agenda-date-earlier-minutes (arg)
8304 "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
8305 (interactive "p")
8306 (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
8307 (org-agenda-date-earlier arg 'minute))
8308
8309 (defun org-agenda-date-later-hours (arg)
8310 "Change the time of this item, in hour steps."
8311 (interactive "p")
8312 (org-agenda-date-later arg 'hour))
8313
8314 (defun org-agenda-date-earlier-hours (arg)
8315 "Change the time of this item, in hour steps."
8316 (interactive "p")
8317 (org-agenda-date-earlier arg 'hour))
8318
8319 (defun org-agenda-show-new-time (marker stamp &optional prefix)
8320 "Show new date stamp via text properties."
8321 ;; We use text properties to make this undoable
8322 (let ((inhibit-read-only t)
8323 (buffer-invisibility-spec))
8324 (setq stamp (concat " " prefix " => " stamp))
8325 (save-excursion
8326 (goto-char (point-max))
8327 (while (not (bobp))
8328 (when (equal marker (org-get-at-bol 'org-marker))
8329 (org-move-to-column (- (window-width) (length stamp)) t)
8330 (org-agenda-fix-tags-filter-overlays-at (point))
8331 (if (featurep 'xemacs)
8332 ;; Use `duplicable' property to trigger undo recording
8333 (let ((ex (make-extent nil nil))
8334 (gl (make-glyph stamp)))
8335 (set-glyph-face gl 'secondary-selection)
8336 (set-extent-properties
8337 ex (list 'invisible t 'end-glyph gl 'duplicable t))
8338 (insert-extent ex (1- (point)) (point-at-eol)))
8339 (add-text-properties
8340 (1- (point)) (point-at-eol)
8341 (list 'display (org-add-props stamp nil
8342 'face 'secondary-selection))))
8343 (beginning-of-line 1))
8344 (beginning-of-line 0)))))
8345
8346 (defun org-agenda-date-prompt (arg)
8347 "Change the date of this item. Date is prompted for, with default today.
8348 The prefix ARG is passed to the `org-time-stamp' command and can therefore
8349 be used to request time specification in the time stamp."
8350 (interactive "P")
8351 (org-agenda-check-type t 'agenda 'timeline)
8352 (org-agenda-check-no-diary)
8353 (let* ((marker (or (org-get-at-bol 'org-marker)
8354 (org-agenda-error)))
8355 (buffer (marker-buffer marker))
8356 (pos (marker-position marker)))
8357 (org-with-remote-undo buffer
8358 (with-current-buffer buffer
8359 (widen)
8360 (goto-char pos)
8361 (if (not (org-at-timestamp-p t))
8362 (error "Cannot find time stamp"))
8363 (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
8364 (org-agenda-show-new-time marker org-last-changed-timestamp))
8365 (message "Time stamp changed to %s" org-last-changed-timestamp)))
8366
8367 (defun org-agenda-schedule (arg &optional time)
8368 "Schedule the item at point.
8369 ARG is passed through to `org-schedule'."
8370 (interactive "P")
8371 (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
8372 (org-agenda-check-no-diary)
8373 (let* ((marker (or (org-get-at-bol 'org-marker)
8374 (org-agenda-error)))
8375 (type (marker-insertion-type marker))
8376 (buffer (marker-buffer marker))
8377 (pos (marker-position marker))
8378 (org-insert-labeled-timestamps-at-point nil)
8379 ts)
8380 (set-marker-insertion-type marker t)
8381 (org-with-remote-undo buffer
8382 (with-current-buffer buffer
8383 (widen)
8384 (goto-char pos)
8385 (setq ts (org-schedule arg time)))
8386 (org-agenda-show-new-time marker ts "S"))
8387 (message "Item scheduled for %s" ts)))
8388
8389 (defun org-agenda-deadline (arg &optional time)
8390 "Schedule the item at point.
8391 ARG is passed through to `org-deadline'."
8392 (interactive "P")
8393 (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
8394 (org-agenda-check-no-diary)
8395 (let* ((marker (or (org-get-at-bol 'org-marker)
8396 (org-agenda-error)))
8397 (buffer (marker-buffer marker))
8398 (pos (marker-position marker))
8399 (org-insert-labeled-timestamps-at-point nil)
8400 ts)
8401 (org-with-remote-undo buffer
8402 (with-current-buffer buffer
8403 (widen)
8404 (goto-char pos)
8405 (setq ts (org-deadline arg time)))
8406 (org-agenda-show-new-time marker ts "D"))
8407 (message "Deadline for this item set to %s" ts)))
8408
8409 (defun org-agenda-clock-in (&optional arg)
8410 "Start the clock on the currently selected item."
8411 (interactive "P")
8412 (org-agenda-check-no-diary)
8413 (if (equal arg '(4))
8414 (org-clock-in arg)
8415 (let* ((marker (or (org-get-at-bol 'org-marker)
8416 (org-agenda-error)))
8417 (hdmarker (or (org-get-at-bol 'org-hd-marker)
8418 marker))
8419 (pos (marker-position marker))
8420 newhead)
8421 (org-with-remote-undo (marker-buffer marker)
8422 (with-current-buffer (marker-buffer marker)
8423 (widen)
8424 (goto-char pos)
8425 (org-show-context 'agenda)
8426 (org-show-entry)
8427 (org-cycle-hide-drawers 'children)
8428 (org-clock-in arg)
8429 (setq newhead (org-get-heading)))
8430 (org-agenda-change-all-lines newhead hdmarker)))))
8431
8432 (defun org-agenda-clock-out ()
8433 "Stop the currently running clock."
8434 (interactive)
8435 (unless (marker-buffer org-clock-marker)
8436 (error "No running clock"))
8437 (let ((marker (make-marker)) newhead)
8438 (org-with-remote-undo (marker-buffer org-clock-marker)
8439 (with-current-buffer (marker-buffer org-clock-marker)
8440 (save-excursion
8441 (save-restriction
8442 (widen)
8443 (goto-char org-clock-marker)
8444 (org-back-to-heading t)
8445 (move-marker marker (point))
8446 (org-clock-out)
8447 (setq newhead (org-get-heading))))))
8448 (org-agenda-change-all-lines newhead marker)
8449 (move-marker marker nil)))
8450
8451 (defun org-agenda-clock-cancel (&optional arg)
8452 "Cancel the currently running clock."
8453 (interactive "P")
8454 (unless (marker-buffer org-clock-marker)
8455 (error "No running clock"))
8456 (org-with-remote-undo (marker-buffer org-clock-marker)
8457 (org-clock-cancel)))
8458
8459 (defun org-agenda-clock-goto ()
8460 "Jump to the currently clocked in task within the agenda.
8461 If the currently clocked in task is not listed in the agenda
8462 buffer, display it in another window."
8463 (interactive)
8464 (let (pos)
8465 (mapc (lambda (o)
8466 (if (eq (overlay-get o 'type) 'org-agenda-clocking)
8467 (setq pos (overlay-start o))))
8468 (overlays-in (point-min) (point-max)))
8469 (cond (pos (goto-char pos))
8470 ;; If the currently clocked entry is not in the agenda
8471 ;; buffer, we visit it in another window:
8472 (org-clock-current-task
8473 (org-switch-to-buffer-other-window (org-clock-goto)))
8474 (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
8475
8476 (defun org-agenda-diary-entry-in-org-file ()
8477 "Make a diary entry in the file `org-agenda-diary-file'."
8478 (let (d1 d2 char (text "") dp1 dp2)
8479 (if (equal (buffer-name) "*Calendar*")
8480 (setq d1 (calendar-cursor-to-date t)
8481 d2 (car calendar-mark-ring))
8482 (setq dp1 (get-text-property (point-at-bol) 'day))
8483 (unless dp1 (error "No date defined in current line"))
8484 (setq d1 (calendar-gregorian-from-absolute dp1)
8485 d2 (and (ignore-errors (mark))
8486 (save-excursion
8487 (goto-char (mark))
8488 (setq dp2 (get-text-property (point-at-bol) 'day)))
8489 (calendar-gregorian-from-absolute dp2))))
8490 (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
8491 (setq char (read-char-exclusive))
8492 (cond
8493 ((equal char ?d)
8494 (setq text (read-string "Day entry: "))
8495 (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
8496 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
8497 ((equal char ?a)
8498 (setq d1 (list (car d1) (nth 1 d1)
8499 (read-number (format "Reference year [%d]: " (nth 2 d1))
8500 (nth 2 d1))))
8501 (setq text (read-string "Anniversary (use %d to show years): "))
8502 (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
8503 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
8504 ((equal char ?b)
8505 (setq text (read-string "Block entry: "))
8506 (unless (and d1 d2 (not (equal d1 d2)))
8507 (error "No block of days selected"))
8508 (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
8509 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
8510 ((equal char ?j)
8511 (org-switch-to-buffer-other-window
8512 (find-file-noselect org-agenda-diary-file))
8513 (require 'org-datetree)
8514 (org-datetree-find-date-create d1)
8515 (org-reveal t))
8516 (t (error "Invalid selection character `%c'" char)))))
8517
8518 (defcustom org-agenda-insert-diary-strategy 'date-tree
8519 "Where in `org-agenda-diary-file' should new entries be added?
8520 Valid values:
8521
8522 date-tree in the date tree, as child of the date
8523 top-level as top-level entries at the end of the file."
8524 :group 'org-agenda
8525 :type '(choice
8526 (const :tag "in a date tree" date-tree)
8527 (const :tag "as top level at end of file" top-level)))
8528
8529 (defcustom org-agenda-insert-diary-extract-time nil
8530 "Non-nil means extract any time specification from the diary entry."
8531 :group 'org-agenda
8532 :version "24.1"
8533 :type 'boolean)
8534
8535 (defcustom org-agenda-bulk-mark-char ">"
8536 "A single-character string to be used as the bulk mark."
8537 :group 'org-agenda
8538 :version "24.1"
8539 :type 'string)
8540
8541 (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
8542 "Add a diary entry with TYPE to `org-agenda-diary-file'.
8543 If TEXT is not empty, it will become the headline of the new entry, and
8544 the resulting entry will not be shown. When TEXT is empty, switch to
8545 `org-agenda-diary-file' and let the user finish the entry there."
8546 (let ((cw (current-window-configuration)))
8547 (org-switch-to-buffer-other-window
8548 (find-file-noselect org-agenda-diary-file))
8549 (widen)
8550 (goto-char (point-min))
8551 (cond
8552 ((eq type 'anniversary)
8553 (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
8554 (progn
8555 (or (org-at-heading-p t)
8556 (progn
8557 (outline-next-heading)
8558 (insert "* Anniversaries\n\n")
8559 (beginning-of-line -1)))))
8560 (outline-next-heading)
8561 (org-back-over-empty-lines)
8562 (backward-char 1)
8563 (insert "\n")
8564 (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
8565 (nth 2 d1) (car d1) (nth 1 d1) text)))
8566 ((eq type 'day)
8567 (let ((org-prefix-has-time t)
8568 (org-agenda-time-leading-zero t)
8569 fmt time time2)
8570 (if org-agenda-insert-diary-extract-time
8571 ;; Use org-agenda-format-item to parse text for a time-range and
8572 ;; remove it. FIXME: This is a hack, we should refactor
8573 ;; that function to make time extraction available separately
8574 (setq fmt (org-agenda-format-item nil text nil nil t)
8575 time (get-text-property 0 'time fmt)
8576 time2 (if (> (length time) 0)
8577 ;; split-string removes trailing ...... if
8578 ;; no end time given. First space
8579 ;; separates time from date.
8580 (concat " " (car (split-string time "\\.")))
8581 nil)
8582 text (get-text-property 0 'txt fmt)))
8583 (if (eq org-agenda-insert-diary-strategy 'top-level)
8584 (org-agenda-insert-diary-as-top-level text)
8585 (require 'org-datetree)
8586 (org-datetree-find-date-create d1)
8587 (org-agenda-insert-diary-make-new-entry text))
8588 (org-insert-time-stamp (org-time-from-absolute
8589 (calendar-absolute-from-gregorian d1))
8590 nil nil nil nil time2))
8591 (end-of-line 0))
8592 ((eq type 'block)
8593 (if (> (calendar-absolute-from-gregorian d1)
8594 (calendar-absolute-from-gregorian d2))
8595 (setq d1 (prog1 d2 (setq d2 d1))))
8596 (if (eq org-agenda-insert-diary-strategy 'top-level)
8597 (org-agenda-insert-diary-as-top-level text)
8598 (require 'org-datetree)
8599 (org-datetree-find-date-create d1)
8600 (org-agenda-insert-diary-make-new-entry text))
8601 (org-insert-time-stamp (org-time-from-absolute
8602 (calendar-absolute-from-gregorian d1)))
8603 (insert "--")
8604 (org-insert-time-stamp (org-time-from-absolute
8605 (calendar-absolute-from-gregorian d2)))
8606 (end-of-line 0)))
8607 (if (string-match "\\S-" text)
8608 (progn
8609 (set-window-configuration cw)
8610 (message "%s entry added to %s"
8611 (capitalize (symbol-name type))
8612 (abbreviate-file-name org-agenda-diary-file)))
8613 (org-reveal t)
8614 (message "Please finish entry here"))))
8615
8616 (defun org-agenda-insert-diary-as-top-level (text)
8617 "Make new entry as a top-level entry at the end of the file.
8618 Add TEXT as headline, and position the cursor in the second line so that
8619 a timestamp can be added there."
8620 (widen)
8621 (goto-char (point-max))
8622 (or (bolp) (insert "\n"))
8623 (insert "* " text "\n")
8624 (if org-adapt-indentation (org-indent-to-column 2)))
8625
8626 (defun org-agenda-insert-diary-make-new-entry (text)
8627 "Make new entry as last child of current entry.
8628 Add TEXT as headline, and position the cursor in the second line so that
8629 a timestamp can be added there."
8630 (let ((org-show-following-heading t)
8631 (org-show-siblings t)
8632 (org-show-hierarchy-above t)
8633 (org-show-entry-below t)
8634 col)
8635 (outline-next-heading)
8636 (org-back-over-empty-lines)
8637 (or (looking-at "[ \t]*$")
8638 (progn (insert "\n") (backward-char 1)))
8639 (org-insert-heading nil t)
8640 (org-do-demote)
8641 (setq col (current-column))
8642 (insert text "\n")
8643 (if org-adapt-indentation (org-indent-to-column col))
8644 (let ((org-show-following-heading t)
8645 (org-show-siblings t)
8646 (org-show-hierarchy-above t)
8647 (org-show-entry-below t))
8648 (org-show-context))))
8649
8650 (defun org-agenda-diary-entry ()
8651 "Make a diary entry, like the `i' command from the calendar.
8652 All the standard commands work: block, weekly etc.
8653 When `org-agenda-diary-file' points to a file,
8654 `org-agenda-diary-entry-in-org-file' is called instead to create
8655 entries in that Org-mode file."
8656 (interactive)
8657 (org-agenda-check-type t 'agenda 'timeline)
8658 (if (not (eq org-agenda-diary-file 'diary-file))
8659 (org-agenda-diary-entry-in-org-file)
8660 (require 'diary-lib)
8661 (let* ((char (progn
8662 (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
8663 (read-char-exclusive)))
8664 (cmd (cdr (assoc char
8665 '((?d . insert-diary-entry)
8666 (?w . insert-weekly-diary-entry)
8667 (?m . insert-monthly-diary-entry)
8668 (?y . insert-yearly-diary-entry)
8669 (?a . insert-anniversary-diary-entry)
8670 (?b . insert-block-diary-entry)
8671 (?c . insert-cyclic-diary-entry)))))
8672 (oldf (symbol-function 'calendar-cursor-to-date))
8673 ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
8674 (point (point))
8675 (mark (or (mark t) (point))))
8676 (unless cmd
8677 (error "No command associated with <%c>" char))
8678 (unless (and (get-text-property point 'day)
8679 (or (not (equal ?b char))
8680 (get-text-property mark 'day)))
8681 (error "Don't know which date to use for diary entry"))
8682 ;; We implement this by hacking the `calendar-cursor-to-date' function
8683 ;; and the `calendar-mark-ring' variable. Saves a lot of code.
8684 (let ((calendar-mark-ring
8685 (list (calendar-gregorian-from-absolute
8686 (or (get-text-property mark 'day)
8687 (get-text-property point 'day))))))
8688 (unwind-protect
8689 (progn
8690 (fset 'calendar-cursor-to-date
8691 (lambda (&optional error dummy)
8692 (calendar-gregorian-from-absolute
8693 (get-text-property point 'day))))
8694 (call-interactively cmd))
8695 (fset 'calendar-cursor-to-date oldf))))))
8696
8697 (defun org-agenda-execute-calendar-command (cmd)
8698 "Execute a calendar command from the agenda with date from cursor."
8699 (org-agenda-check-type t 'agenda 'timeline)
8700 (require 'diary-lib)
8701 (unless (get-text-property (min (1- (point-max)) (point)) 'day)
8702 (error "Don't know which date to use for the calendar command"))
8703 (let* ((oldf (symbol-function 'calendar-cursor-to-date))
8704 (point (point))
8705 (date (calendar-gregorian-from-absolute
8706 (get-text-property point 'day)))
8707 ;; the following 2 vars are needed in the calendar
8708 (displayed-month (car date))
8709 (displayed-year (nth 2 date)))
8710 (unwind-protect
8711 (progn
8712 (fset 'calendar-cursor-to-date
8713 (lambda (&optional error dummy)
8714 (calendar-gregorian-from-absolute
8715 (get-text-property point 'day))))
8716 (call-interactively cmd))
8717 (fset 'calendar-cursor-to-date oldf))))
8718
8719 (defun org-agenda-phases-of-moon ()
8720 "Display the phases of the moon for the 3 months around the cursor date."
8721 (interactive)
8722 (org-agenda-execute-calendar-command 'calendar-phases-of-moon))
8723
8724 (defun org-agenda-holidays ()
8725 "Display the holidays for the 3 months around the cursor date."
8726 (interactive)
8727 (org-agenda-execute-calendar-command 'list-calendar-holidays))
8728
8729 (defvar calendar-longitude) ; defined in calendar.el
8730 (defvar calendar-latitude) ; defined in calendar.el
8731 (defvar calendar-location-name) ; defined in calendar.el
8732
8733 (defun org-agenda-sunrise-sunset (arg)
8734 "Display sunrise and sunset for the cursor date.
8735 Latitude and longitude can be specified with the variables
8736 `calendar-latitude' and `calendar-longitude'. When called with prefix
8737 argument, latitude and longitude will be prompted for."
8738 (interactive "P")
8739 (require 'solar)
8740 (let ((calendar-longitude (if arg nil calendar-longitude))
8741 (calendar-latitude (if arg nil calendar-latitude))
8742 (calendar-location-name
8743 (if arg "the given coordinates" calendar-location-name)))
8744 (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
8745
8746 (defun org-agenda-goto-calendar ()
8747 "Open the Emacs calendar with the date at the cursor."
8748 (interactive)
8749 (org-agenda-check-type t 'agenda 'timeline)
8750 (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
8751 (error "Don't know which date to open in calendar")))
8752 (date (calendar-gregorian-from-absolute day))
8753 (calendar-move-hook nil)
8754 (calendar-view-holidays-initially-flag nil)
8755 (calendar-view-diary-initially-flag nil))
8756 (calendar)
8757 (calendar-goto-date date)))
8758
8759 ;;;###autoload
8760 (defun org-calendar-goto-agenda ()
8761 "Compute the Org-mode agenda for the calendar date displayed at the cursor.
8762 This is a command that has to be installed in `calendar-mode-map'."
8763 (interactive)
8764 (org-agenda-list nil (calendar-absolute-from-gregorian
8765 (calendar-cursor-to-date))
8766 nil))
8767
8768 (defun org-agenda-convert-date ()
8769 (interactive)
8770 (org-agenda-check-type t 'agenda 'timeline)
8771 (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
8772 date s)
8773 (unless day
8774 (error "Don't know which date to convert"))
8775 (setq date (calendar-gregorian-from-absolute day))
8776 (setq s (concat
8777 "Gregorian: " (calendar-date-string date) "\n"
8778 "ISO: " (calendar-iso-date-string date) "\n"
8779 "Day of Yr: " (calendar-day-of-year-string date) "\n"
8780 "Julian: " (calendar-julian-date-string date) "\n"
8781 "Astron. JD: " (calendar-astro-date-string date)
8782 " (Julian date number at noon UTC)\n"
8783 "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
8784 "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
8785 "French: " (calendar-french-date-string date) "\n"
8786 "Baha'i: " (calendar-bahai-date-string date) " (until sunset)\n"
8787 "Mayan: " (calendar-mayan-date-string date) "\n"
8788 "Coptic: " (calendar-coptic-date-string date) "\n"
8789 "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
8790 "Persian: " (calendar-persian-date-string date) "\n"
8791 "Chinese: " (calendar-chinese-date-string date) "\n"))
8792 (with-output-to-temp-buffer "*Dates*"
8793 (princ s))
8794 (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
8795
8796 ;;; Bulk commands
8797
8798 (defun org-agenda-bulk-marked-p ()
8799 (eq (get-char-property (point-at-bol) 'type)
8800 'org-marked-entry-overlay))
8801
8802 (defun org-agenda-bulk-mark (&optional arg)
8803 "Mark the entry at point for future bulk action."
8804 (interactive "p")
8805 (dotimes (i (or arg 1))
8806 (unless (org-get-at-bol 'org-agenda-diary-link)
8807 (let* ((m (org-get-at-bol 'org-hd-marker))
8808 ov)
8809 (unless (org-agenda-bulk-marked-p)
8810 (unless m (error "Nothing to mark at point"))
8811 (push m org-agenda-bulk-marked-entries)
8812 (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
8813 (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
8814 (org-get-todo-face "TODO")
8815 'evaporate)
8816 (overlay-put ov 'type 'org-marked-entry-overlay))
8817 (beginning-of-line 2)
8818 (while (and (get-char-property (point) 'invisible) (not (eobp)))
8819 (beginning-of-line 2))
8820 (message "%d entries marked for bulk action"
8821 (length org-agenda-bulk-marked-entries))))))
8822
8823 (defun org-agenda-bulk-mark-all ()
8824 "Mark all entries for future agenda bulk action."
8825 (interactive)
8826 (org-agenda-bulk-mark-regexp "."))
8827
8828 (defun org-agenda-bulk-mark-regexp (regexp)
8829 "Mark entries matching REGEXP for future agenda bulk action."
8830 (interactive "sMark entries matching regexp: ")
8831 (let ((entries-marked 0))
8832 (save-excursion
8833 (goto-char (point-min))
8834 (goto-char (next-single-property-change (point) 'txt))
8835 (while (re-search-forward regexp nil t)
8836 (when (string-match regexp (get-text-property (point) 'txt))
8837 (setq entries-marked (1+ entries-marked))
8838 (call-interactively 'org-agenda-bulk-mark))))
8839 (if (not entries-marked)
8840 (message "No entry matching this regexp."))))
8841
8842 (defun org-agenda-bulk-unmark (&optional arg)
8843 "Unmark the entry at point for future bulk action."
8844 (interactive "P")
8845 (if arg
8846 (org-agenda-bulk-unmark-all)
8847 (cond ((org-agenda-bulk-marked-p)
8848 (org-agenda-bulk-remove-overlays
8849 (point-at-bol) (+ 2 (point-at-bol)))
8850 (setq org-agenda-bulk-marked-entries
8851 (delete (org-get-at-bol 'org-hd-marker)
8852 org-agenda-bulk-marked-entries))
8853 (beginning-of-line 2)
8854 (while (and (get-char-property (point) 'invisible) (not (eobp)))
8855 (beginning-of-line 2))
8856 (message "%d entries left marked for bulk action"
8857 (length org-agenda-bulk-marked-entries)))
8858 (t (message "No entry to unmark here")))))
8859
8860 (defun org-agenda-bulk-toggle ()
8861 "Toggle marking the entry at point for bulk action."
8862 (interactive)
8863 (if (org-agenda-bulk-marked-p)
8864 (org-agenda-bulk-unmark)
8865 (org-agenda-bulk-mark)))
8866
8867 (defun org-agenda-bulk-remove-overlays (&optional beg end)
8868 "Remove the mark overlays between BEG and END in the agenda buffer.
8869 BEG and END default to the buffer limits.
8870
8871 This only removes the overlays, it does not remove the markers
8872 from the list in `org-agenda-bulk-marked-entries'."
8873 (interactive)
8874 (mapc (lambda (ov)
8875 (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
8876 (delete-overlay ov)))
8877 (overlays-in (or beg (point-min)) (or end (point-max)))))
8878
8879 (defun org-agenda-bulk-unmark-all ()
8880 "Remove all marks in the agenda buffer.
8881 This will remove the markers and the overlays."
8882 (interactive)
8883 (if (null org-agenda-bulk-marked-entries)
8884 (message "No entry to unmark")
8885 (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
8886 (setq org-agenda-bulk-marked-entries nil)
8887 (org-agenda-bulk-remove-overlays (point-min) (point-max))))
8888
8889 (defcustom org-agenda-persistent-marks nil
8890 "Non-nil means marked items will stay marked after a bulk action.
8891 You can toggle this interactively by typing `p' when prompted for a
8892 bulk action."
8893 :group 'org-agenda
8894 :version "24.1"
8895 :type 'boolean)
8896
8897 (defun org-agenda-bulk-action (&optional arg)
8898 "Execute an remote-editing action on all marked entries.
8899 The prefix arg is passed through to the command if possible."
8900 (interactive "P")
8901 ;; Make sure we have markers, and only valid ones
8902 (unless org-agenda-bulk-marked-entries (error "No entries are marked"))
8903 (mapc
8904 (lambda (m)
8905 (unless (and (markerp m)
8906 (marker-buffer m)
8907 (buffer-live-p (marker-buffer m))
8908 (marker-position m))
8909 (error "Marker %s for bulk command is invalid" m)))
8910 org-agenda-bulk-marked-entries)
8911
8912 ;; Prompt for the bulk command
8913 (let* ((msg (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")))
8914 (message (concat msg "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
8915 "[S]catter [f]unction "
8916 (when org-agenda-bulk-custom-functions
8917 (concat " Custom: ["
8918 (mapconcat (lambda(f) (char-to-string (car f)))
8919 org-agenda-bulk-custom-functions "")
8920 "]"))))
8921 (catch 'exit
8922 (let* ((action (read-char-exclusive))
8923 (org-log-refile (if org-log-refile 'time nil))
8924 (entries (reverse org-agenda-bulk-marked-entries))
8925 (org-overriding-default-time
8926 (if (get-text-property (point) 'org-agenda-date-header)
8927 (org-get-cursor-date)))
8928 redo-at-end
8929 cmd rfloc state e tag pos (cnt 0) (cntskip 0))
8930 (cond
8931 ((equal action ?p)
8932 (let ((org-agenda-persistent-marks
8933 (not org-agenda-persistent-marks)))
8934 (org-agenda-bulk-action)
8935 (throw 'exit nil)))
8936
8937 ((equal action ?$)
8938 (setq cmd '(org-agenda-archive)))
8939
8940 ((equal action ?A)
8941 (setq cmd '(org-agenda-archive-to-archive-sibling)))
8942
8943 ((member action '(?r ?w))
8944 (setq rfloc (org-refile-get-location
8945 "Refile to"
8946 (marker-buffer (car entries))
8947 org-refile-allow-creating-parent-nodes))
8948 (if (nth 3 rfloc)
8949 (setcar (nthcdr 3 rfloc)
8950 (move-marker (make-marker) (nth 3 rfloc)
8951 (or (get-file-buffer (nth 1 rfloc))
8952 (find-buffer-visiting (nth 1 rfloc))
8953 (error "This should not happen")))))
8954
8955 (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
8956 redo-at-end t))
8957
8958 ((equal action ?t)
8959 (setq state (org-icompleting-read
8960 "Todo state: "
8961 (with-current-buffer (marker-buffer (car entries))
8962 (mapcar 'list org-todo-keywords-1))))
8963 (setq cmd `(let ((org-inhibit-blocking t)
8964 (org-inhibit-logging 'note))
8965 (org-agenda-todo ,state))))
8966
8967 ((memq action '(?- ?+))
8968 (setq tag (org-icompleting-read
8969 (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
8970 (with-current-buffer (marker-buffer (car entries))
8971 (delq nil
8972 (mapcar (lambda (x)
8973 (if (stringp (car x)) x)) org-tag-alist)))))
8974 (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
8975
8976 ((memq action '(?s ?d))
8977 (let* ((time
8978 (unless arg
8979 (org-read-date
8980 nil nil nil
8981 (if (eq action ?s) "(Re)Schedule to" "(Re)Set Deadline to")
8982 org-overriding-default-time)))
8983 (c1 (if (eq action ?s) 'org-agenda-schedule 'org-agenda-deadline)))
8984 (setq cmd `(eval '(,c1 arg ,time)))))
8985
8986 ((equal action ?S)
8987 (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
8988 (error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
8989 (let ((days (read-number
8990 (format "Scatter tasks across how many %sdays: "
8991 (if arg "week" "")) 7)))
8992 (setq cmd
8993 `(let ((distance (1+ (random ,days))))
8994 (if arg
8995 (let ((dist distance)
8996 (day-of-week
8997 (calendar-day-of-week
8998 (calendar-gregorian-from-absolute (org-today)))))
8999 (dotimes (i (1+ dist))
9000 (while (member day-of-week org-agenda-weekend-days)
9001 (incf distance)
9002 (incf day-of-week)
9003 (if (= day-of-week 7)
9004 (setq day-of-week 0)))
9005 (incf day-of-week)
9006 (if (= day-of-week 7)
9007 (setq day-of-week 0)))))
9008 ;; silently fail when try to replan a sexp entry
9009 (condition-case nil
9010 (let* ((date (calendar-gregorian-from-absolute
9011 (+ (org-today) distance)))
9012 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
9013 (nth 2 date))))
9014 (org-agenda-schedule nil time))
9015 (error nil)))))))
9016
9017 ((assoc action org-agenda-bulk-custom-functions)
9018 (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
9019 redo-at-end t))
9020
9021 ((equal action ?f)
9022 (setq cmd (list (intern
9023 (org-icompleting-read "Function: "
9024 obarray 'fboundp t nil nil)))))
9025
9026 (t (error "Invalid bulk action")))
9027
9028 ;; Sort the markers, to make sure that parents are handled before children
9029 (setq entries (sort entries
9030 (lambda (a b)
9031 (cond
9032 ((equal (marker-buffer a) (marker-buffer b))
9033 (< (marker-position a) (marker-position b)))
9034 (t
9035 (string< (buffer-name (marker-buffer a))
9036 (buffer-name (marker-buffer b))))))))
9037
9038 ;; Now loop over all markers and apply cmd
9039 (while (setq e (pop entries))
9040 (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
9041 (if (not pos)
9042 (progn (message "Skipping removed entry at %s" e)
9043 (setq cntskip (1+ cntskip)))
9044 (goto-char pos)
9045 (let (org-loop-over-headlines-in-active-region)
9046 (eval cmd))
9047 (setq cnt (1+ cnt))))
9048 (when redo-at-end (org-agenda-redo))
9049 (unless org-agenda-persistent-marks
9050 (org-agenda-bulk-unmark-all))
9051 (message "Acted on %d entries%s%s"
9052 cnt
9053 (if (= cntskip 0)
9054 ""
9055 (format ", skipped %d (disappeared before their turn)"
9056 cntskip))
9057 (if (not org-agenda-persistent-marks)
9058 "" " (kept marked)"))))))
9059
9060 (defun org-agenda-capture ()
9061 "Call `org-capture' with the date at point."
9062 (interactive)
9063 (if (not (eq major-mode 'org-agenda-mode))
9064 (error "You cannot do this outside of agenda buffers")
9065 (let ((org-overriding-default-time
9066 (org-get-cursor-date)))
9067 (call-interactively 'org-capture))))
9068
9069 ;;; Flagging notes
9070
9071 (defun org-agenda-show-the-flagging-note ()
9072 "Display the flagging note in the other window.
9073 When called a second time in direct sequence, offer to remove the FLAGGING
9074 tag and (if present) the flagging note."
9075 (interactive)
9076 (let ((hdmarker (org-get-at-bol 'org-hd-marker))
9077 (win (selected-window))
9078 note heading newhead)
9079 (unless hdmarker
9080 (error "No linked entry at point"))
9081 (if (and (eq this-command last-command)
9082 (y-or-n-p "Unflag and remove any flagging note? "))
9083 (progn
9084 (org-agenda-remove-flag hdmarker)
9085 (let ((win (get-buffer-window "*Flagging Note*")))
9086 (and win (delete-window win)))
9087 (message "Entry unflagged"))
9088 (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
9089 (unless note
9090 (error "No flagging note"))
9091 (org-kill-new note)
9092 (org-switch-to-buffer-other-window "*Flagging Note*")
9093 (erase-buffer)
9094 (insert note)
9095 (goto-char (point-min))
9096 (while (re-search-forward "\\\\n" nil t)
9097 (replace-match "\n" t t))
9098 (goto-char (point-min))
9099 (select-window win)
9100 (message "Flagging note pushed to kill ring. Press [?] again to remove tag and note"))))
9101
9102 (defun org-agenda-remove-flag (marker)
9103 "Remove the FLAGGED tag and any flagging note in the entry."
9104 (let (newhead)
9105 (org-with-point-at marker
9106 (org-toggle-tag "FLAGGED" 'off)
9107 (org-entry-delete nil "THEFLAGGINGNOTE")
9108 (setq newhead (org-get-heading)))
9109 (org-agenda-change-all-lines newhead marker)
9110 (message "Entry unflagged")))
9111
9112 (defun org-agenda-get-any-marker (&optional pos)
9113 (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
9114 (get-text-property (or pos (point-at-bol)) 'org-marker)))
9115
9116 ;;; Appointment reminders
9117
9118 (defvar appt-time-msg-list) ; defined in appt.el
9119
9120 ;;;###autoload
9121 (defun org-agenda-to-appt (&optional refresh filter &rest args)
9122 "Activate appointments found in `org-agenda-files'.
9123 With a \\[universal-argument] prefix, refresh the list of
9124 appointments.
9125
9126 If FILTER is t, interactively prompt the user for a regular
9127 expression, and filter out entries that don't match it.
9128
9129 If FILTER is a string, use this string as a regular expression
9130 for filtering entries out.
9131
9132 If FILTER is a function, filter out entries against which
9133 calling the function returns nil. This function takes one
9134 argument: an entry from `org-agenda-get-day-entries'.
9135
9136 FILTER can also be an alist with the car of each cell being
9137 either 'headline or 'category. For example:
9138
9139 '((headline \"IMPORTANT\")
9140 (category \"Work\"))
9141
9142 will only add headlines containing IMPORTANT or headlines
9143 belonging to the \"Work\" category.
9144
9145 ARGS are symbols indicating what kind of entries to consider.
9146 By default `org-agenda-to-appt' will use :deadline, :scheduled
9147 and :timestamp entries. See the docstring of `org-diary' for
9148 details and examples.
9149
9150 If an entry as a APPT_WARNTIME property, its value will be used
9151 to override `appt-message-warning-time'."
9152 (interactive "P")
9153 (if refresh (setq appt-time-msg-list nil))
9154 (if (eq filter t)
9155 (setq filter (read-from-minibuffer "Regexp filter: ")))
9156 (let* ((cnt 0) ; count added events
9157 (scope (or args '(:deadline :scheduled :timestamp)))
9158 (org-agenda-new-buffers nil)
9159 (org-deadline-warning-days 0)
9160 ;; Do not use `org-today' here because appt only takes
9161 ;; time and without date as argument, so it may pass wrong
9162 ;; information otherwise
9163 (today (org-date-to-gregorian
9164 (time-to-days (current-time))))
9165 (org-agenda-restrict nil)
9166 (files (org-agenda-files 'unrestricted)) entries file
9167 (org-agenda-buffer nil))
9168 ;; Get all entries which may contain an appt
9169 (org-agenda-prepare-buffers files)
9170 (while (setq file (pop files))
9171 (setq entries
9172 (delq nil
9173 (append entries
9174 (apply 'org-agenda-get-day-entries
9175 file today scope)))))
9176 ;; Map thru entries and find if we should filter them out
9177 (mapc
9178 (lambda(x)
9179 (let* ((evt (org-trim (or (get-text-property 1 'txt x) "")))
9180 (cat (get-text-property 1 'org-category x))
9181 (tod (get-text-property 1 'time-of-day x))
9182 (ok (or (null filter)
9183 (and (stringp filter) (string-match filter evt))
9184 (and (functionp filter) (funcall filter x))
9185 (and (listp filter)
9186 (let ((cat-filter (cadr (assoc 'category filter)))
9187 (evt-filter (cadr (assoc 'headline filter))))
9188 (or (and (stringp cat-filter)
9189 (string-match cat-filter cat))
9190 (and (stringp evt-filter)
9191 (string-match evt-filter evt)))))))
9192 (wrn (get-text-property 1 'warntime x)))
9193 ;; FIXME: Shall we remove text-properties for the appt text?
9194 ;; (setq evt (set-text-properties 0 (length evt) nil evt))
9195 (when (and ok tod)
9196 (setq tod (concat "00" (number-to-string tod))
9197 tod (when (string-match
9198 "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
9199 (concat (match-string 1 tod) ":"
9200 (match-string 2 tod))))
9201 (if (version< emacs-version "23.3")
9202 (appt-add tod evt)
9203 (appt-add tod evt wrn))
9204 (setq cnt (1+ cnt))))) entries)
9205 (org-release-buffers org-agenda-new-buffers)
9206 (if (eq cnt 0)
9207 (message "No event to add")
9208 (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
9209
9210 (defun org-agenda-todayp (date)
9211 "Does DATE mean today, when considering `org-extend-today-until'?"
9212 (let ((today (org-today))
9213 (date (if (and date (listp date)) (calendar-absolute-from-gregorian date)
9214 date)))
9215 (eq date today)))
9216
9217 (defun org-agenda-todo-yesterday (&optional arg)
9218 "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
9219 (interactive "P")
9220 (let* ((hour (third (decode-time
9221 (org-current-time))))
9222 (org-extend-today-until (1+ hour)))
9223 (org-agenda-todo arg)))
9224
9225 (provide 'org-agenda)
9226
9227 ;;; org-agenda.el ends here