NEW: For a prettier blog interface, see the Wordpress version!
Tasks
| B | _ | Remove task ID from published stuff : E-Mail from Sebastian Luque (planner help TaskPool) |
| B | > | Figure out no valid link problem : E-Mail from Chris McMahan (help bug planner) |
| B | _ | Recommend a very nice configuration : E-Mail from Paul D. Kraus (TaskPool help planner) |
| B | P | Write functions to make life easier for contractors : E-Mail from micah milano (planner help) |
| B | _ | Look into printing Planner from the browser : E-Mail from troy@austin.ibm.com (TaskPool help planner) |
| C | _ | Follow up with keyboard shortcut fake timelogging for http://ceesaxp.org/gtd/timlog-gtd.writeback (planner help) |
| B | P | Write functions to make life easier for contractors : E-Mail from micah milano (2005.06.30 help planner) |
| B | X | Customize creating notes for tasks : E-Mail from mirko vukovic (12) (2005.08.25 planner help) |
| A | X | Skin the PESO forum : E-Mail from Maoi Arroyo (2005.07.01 help) |
| B | X | Make planner seek to the next open task (2005.06.30 planner help) |
| B | X | Reply regarding remember link names : E-Mail from Scott Otterson (2005.06.27 help planner) |
| B | X | Look into planner-create-task-from-note : E-Mail from Scott Otterson (2005.06.27 help planner) |
| B | X | Adapt action-lock code to allow Planner-style hyperlinks from anywhere (2005.06.18 planner help) |
| B | X | Test multiple page copy delete (2005.06.17 planner help) |
| B | X | Make autoadd page variable : E-Mail from Alex Polite (2005.06.17 help planner) |
| B | X | Move completed tasks : E-Mail from Alex Polite (help planner 2005.06.14) |
| B | X | Write code for planner-multi to automatically schedule things onto TaskPool : E-Mail from Paul D. Kraus (2005.06.09 planner help) |
| B | X | Reply about links to a file outside Planner : E-Mail from Arnaud Bailly ([[]] help planner) |
Notes
1. Automatically scheduling tasks onto TaskPool (2005.06.09:1 planner#9 emacs#16 EmacsHacks:49 help#1)
(defadvice planner-create-task-from-buffer (before paul activate)
"Automatically schedule task onto TaskPool as well as other projects."
(if plan-page
(unless (string-match plan-page "TaskPool")
(setq plan-page (concat plan-page planner-multi-separator "TaskPool")))
(setq plan-page "TaskPool")))
Here's another snippet that will unschedule tasks from TaskPool when you mark them completed with C-c C-x (planner-task-done). Nifty stuff, huh?
(defadvice planner-task-done (after paul activate)
"Remove completed tasks from the TaskPool if that still leaves them linked."
(let ((info (planner-current-task-info)))
(when (planner-task-link-text info)
;; If it is linked to TaskPool _and_ at least one other thing
(if (string-match planner-multi-separator (planner-task-link-text info))
(planner-multi-replan-task
(planner-multi-make-link (planner-multi-filter-links "^TaskPool$" (planner-multi-task-link-as-list info) t)))
;; Else if it has a date and is linked to TaskPool
(if (and (planner-task-date info)
(string= (planner-task-link info) "TaskPool"))
(planner-replan-task nil))))))
原始的な計算機が、コンピューターの開発されるずっと以前に存在していた。 Primitive calculating machines existed long before computers were developed.
I'd love to hear about any questions, comments, suggestions or links that you might have. Your comments will not be posted on this website immediately, but will be e-mailed to me first. You can use this form to get in touch with me, or e-mail me at sacha@sachachua.com .