[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[emacs-wiki-discuss] Re: Automatically scheduling tasks onto TaskPool
From: |
Sacha Chua |
Subject: |
[emacs-wiki-discuss] Re: Automatically scheduling tasks onto TaskPool |
Date: |
Fri, 10 Jun 2005 09:01:27 +0800 |
User-agent: |
Gnus/5.11 (Gnus v5.11) Emacs/21.3.50 (gnu/linux) |
Sacha Chua <address@hidden> writes:
> ----------------------------------------------------------------
> (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")))
> ----------------------------------------------------------------
Heh, whoops, that should be
(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 "TaskPool" plan-page)
(setq plan-page (concat plan-page planner-multi-separator "TaskPool")))
(setq plan-page "TaskPool")))
I keep reversing the arguments for string-match... Silly. <sheepish
grin> Good thing planner-multi is smart.
--
Sacha Chua <address@hidden> - open source geekette
http://sacha.free.net.ph/ - PGP Key ID: 0xE7FDF77C
interests: emacs, gnu/linux, personal information management, CS ed
sachac on irc.freenode.net#emacs . YM: sachachua83
- [emacs-wiki-discuss] Re: Planner - Plan Pages - Tasks, (continued)
- [emacs-wiki-discuss] Re: Planner - Plan Pages - Tasks, Sacha Chua, 2005/06/08
- [emacs-wiki-discuss] Re: Planner - Plan Pages - Tasks, Sacha Chua, 2005/06/08
- Re: [emacs-wiki-discuss] Re: Planner - Plan Pages - Tasks, Paul D. Kraus, 2005/06/08
- Re: [emacs-wiki-discuss] Re: Planner - Plan Pages - Tasks, Patricia J. Hawkins, 2005/06/08
- [emacs-wiki-discuss] Automatically scheduling tasks onto TaskPool (was Re: Planner - Plan Pages - Tasks), Sacha Chua, 2005/06/08
- [emacs-wiki-discuss] Re: Automatically scheduling tasks onto TaskPool, Sacha Chua, 2005/06/09
- Re: [emacs-wiki-discuss] Automatically scheduling tasks onto TaskPool, Peter K . Lee, 2005/06/09
- [emacs-wiki-discuss] Re: Automatically scheduling tasks onto TaskPool, Sacha Chua, 2005/06/14
- Re: [emacs-wiki-discuss] Mark Task (hooks and fixin's), Peter K . Lee, 2005/06/16
- [emacs-wiki-discuss] Re: Mark Task (hooks and fixin's), Sacha Chua, 2005/06/16
- [emacs-wiki-discuss] Re: Automatically scheduling tasks onto TaskPool,
Sacha Chua <=
- Re: [emacs-wiki-discuss] Re: Automatically scheduling tasks onto TaskPool, fouvry+emacs-wiki, 2005/06/10
- Re: [emacs-wiki-discuss] Re: Automatically scheduling tasks onto TaskPool, Alex Polite, 2005/06/10
- [emacs-wiki-discuss] Re: Automatically scheduling tasks onto TaskPool, Sacha Chua, 2005/06/17
[emacs-wiki-discuss] Re: Planner - Plan Pages - Tasks, Jody Klymak, 2005/06/08