1 ;;; org-inlinetask.el --- Tasks independent of outline hierarchy
3 ;; Copyright (C) 2009 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
30 ;; This module implements inline tasks in Org-mode. Inline tasks are
31 ;; tasks that have all the properties of normal outline nodes, including
32 ;; the ability to store meta data like scheduling dates, TODO state, tags
33 ;; and properties. However, these nodes are treated specially by the
34 ;; visibility cycling and export commands.
36 ;; Visibility cycling exempts these nodes from cycling. So whenever their
37 ;; parent is opened, so are these tasks. This will only work with
38 ;; `org-cycle', so if you are also using orther commands to show/hide
39 ;; entries, you will occasionally find these tasks to behave like
40 ;; all other outline nodes, seemingly splitting the text of the parent
43 ;; Export commands do not treat these nodes as part of the sectioning
44 ;; structure, but as a special inline text that is either removed, or
45 ;; formatted in some special way.
47 ;; Special fontification of inline tasks, so that they can be immediately
48 ;; recognized. From the stars of the headline, only the first and the
49 ;; last two will be visible, the others will be hidden using the
52 ;; An inline task is identified solely by a minimum outline level, given
53 ;; by the variable `org-inlinetask-min-level', default 15.
55 ;; Inline tasks are normally assumed to contain at most a time planning
56 ;; line (DEADLINE etc) after it, and then any number of drawers, for
57 ;; example LOGBOOK of PROPERTIES. No empty lines are allowed.
58 ;; If you need to have normal text as part of an inline task, you
59 ;; can do so by adding an "END" headline with the same number of stars,
62 ;; **************** TODO some small task
63 ;; DEADLINE: <2009-03-30 Mon>
65 ;; :SOMETHING: or other
67 ;; And here is some extra text
68 ;; **************** END
70 ;; Also, if you want to use refiling and archiving for inline tasks,
71 ;; The END line must be present to make things work properly.
73 ;; This package installs one new comand:
75 ;; C-c C-x t Insert a new inline task with END line
82 (defgroup org-inlinetask nil
83 "Options concerning inline tasks in Org mode."
84 :tag
"Org Inline Tasks"
85 :group
'org-structure
)
87 (defcustom org-inlinetask-min-level
15
88 "Minimum level a headline must have before it is treated as an inline task.
89 It is strongly recommended that you set `org-cycle-max-level' not at all,
90 or to a number smaller than this one. In fact, when `org-cycle-max-level' is
91 not set, it will be assumed to be one less than the value of smaller than
92 the value of this variable."
93 :group
'org-inlinetask
96 (defcustom org-inlinetask-export t
97 "Non-nil means, export inline tasts.
98 When nil, they will not be exported."
99 :group
'org-inlinetask
102 (defvar org-odd-levels-only
)
103 (defvar org-keyword-time-regexp
)
104 (defvar org-drawer-regexp
)
105 (defvar org-complex-heading-regexp
)
106 (defvar org-property-end-re
)
108 (defun org-inlinetask-insert-task ()
109 "Insert an inline task."
111 (or (bolp) (newline))
112 (insert (make-string org-inlinetask-min-level ?
*) " \n"
113 (make-string org-inlinetask-min-level ?
*) " END\n")
115 (define-key org-mode-map
"\C-c\C-xt" 'org-inlinetask-insert-task
)
117 (defvar htmlp
) ; dynamically scoped into the next function
118 (defvar latexp
) ; dynamically scoped into the next function
119 (defun org-inlinetask-export-handler ()
120 "Handle headlines with level larger or equal to `org-inlinetask-min-level'.
121 Either remove headline and meta data, or do special formatting."
122 (goto-char (point-min))
123 (let* ((nstars (if org-odd-levels-only
124 (1- (* 2 (or org-inlinetask-min-level
200)))
125 (or org-inlinetask-min-level
200)))
126 (re1 (format "^\\(\\*\\{%d,\\}\\) .*\n" nstars
))
127 (re2 (concat "^[ \t]*" org-keyword-time-regexp
))
128 headline beg end stars content indent
)
129 (while (re-search-forward re1 nil t
)
130 (setq headline
(match-string 0)
131 stars
(match-string 1)
134 (while (looking-at re2
)
135 (delete-region (point) (1+ (point-at-eol))))
136 (while (looking-at org-drawer-regexp
)
138 (if (re-search-forward org-property-end-re nil t
)
139 (delete-region beg
(1+ (match-end 0)))))
141 (when (and (re-search-forward "^\\(\\*+\\) " nil t
)
142 (= (length (match-string 1)) (length stars
))
143 (progn (goto-char (match-end 0))
144 (looking-at "END[ \t]*$")))
145 (setq content
(buffer-substring beg
(1- (point-at-bol))))
146 (delete-region beg
(1+ (match-end 0))))
148 (when org-inlinetask-export
149 (when (string-match org-complex-heading-regexp headline
)
150 (setq headline
(concat
152 (concat (match-string 2 headline
) " ") "")
153 (match-string 4 headline
)))
155 (if (not (string-match "\\S-" content
))
157 (if (string-match "[ \t\n]+\\'" content
)
158 (setq content
(substring content
0 (match-beginning 0))))
159 (setq content
(org-remove-indentation content
))
160 (if latexp
(setq content
(concat "\\quad \\\\\n" content
)))))
161 (insert (make-string (org-inlinetask-get-current-indentation) ?\
)
163 (setq indent
(make-string (current-column) ?\
))
164 (insert headline
" ::")
166 (insert (if htmlp
" " (concat "\n" indent
))
167 (mapconcat 'identity
(org-split-string content
"\n")
168 (concat "\n" indent
)) "\n")
171 (backward-delete-char 2)
172 (insert "THISISTHEINLINELISTTEMINATOR\n"))))))
174 (defun org-inlinetask-get-current-indentation ()
175 "Get the indentation of the last non-while line above this one."
177 (beginning-of-line 1)
178 (skip-chars-backward " \t\n")
179 (beginning-of-line 1)
181 (looking-at "[ \t]*"))
182 (goto-char (match-end 0))
185 (defun org-inlinetask-fontify (limit)
186 "Fontify the inline tasks."
187 (let* ((nstars (if org-odd-levels-only
188 (1- (* 2 (or org-inlinetask-min-level
200)))
189 (or org-inlinetask-min-level
200)))
190 (re (concat "^\\(\\*\\)\\(\\*\\{"
191 (format "%d" (- nstars
3))
192 ",\\}\\)\\(\\*\\* .*\\)")))
193 (while (re-search-forward re limit t
)
194 (add-text-properties (match-beginning 1) (match-end 1)
195 '(face org-warning font-lock-fontified t
))
196 (add-text-properties (match-beginning 2) (match-end 2)
197 '(face org-hide font-lock-fontified t
))
198 (add-text-properties (match-beginning 3) (match-end 3)
199 '(face shadow font-lock-fontified t
)))))
201 (defun org-inlinetask-remove-END-maybe ()
202 "Remove an END line when present."
203 (when (looking-at (format "\\([ \t]*\n\\)*\\*\\{%d,\\}[ \t]+END[ \t]*$"
204 org-inlinetask-min-level
))
207 (defun org-inlinetask-remove-terminator ()
210 (goto-char (point-min))
211 (while (re-search-forward "THISISTHEINLINELISTTEMINATOR\n" nil t
)
212 (setq beg
(match-beginning 0) end
(match-end 0))
214 (beginning-of-line 1)
215 (and (looking-at "<p\\(ara\\)?>THISISTHEINLINELISTTEMINATOR[ \t\n]*</p\\(ara\\)?>")
216 (setq beg
(point) end
(match-end 0))))
217 (delete-region beg end
)))))
219 (eval-after-load "org-exp"
220 '(add-hook 'org-export-preprocess-after-tree-selection-hook
221 'org-inlinetask-export-handler
))
222 (eval-after-load "org"
223 '(add-hook 'org-font-lock-hook
'org-inlinetask-fontify
))
224 (eval-after-load "org-html"
225 '(add-hook 'org-export-html-final-hook
'org-inlinetask-remove-terminator
))
226 (eval-after-load "org-latex"
227 '(add-hook 'org-export-latex-final-hook
'org-inlinetask-remove-terminator
))
228 (eval-after-load "org-ascii"
229 '(add-hook 'org-export-ascii-final-hook
'org-inlinetask-remove-terminator
))
230 (eval-after-load "org-docbook"
231 '(add-hook 'org-export-docbook-final-hook
'org-inlinetask-remove-terminator
))
233 (provide 'org-inlinetask
)
235 ;;; org-inlinetask.el ends here