* BUG - Note logging to wrong task
@ 2008-10-02 15:16 Bernt Hansen
2008-10-02 16:16 ` Carsten Dominik
0 siblings, 1 reply; 5+ messages in thread
From: Bernt Hansen @ 2008-10-02 15:16 UTC (permalink / raw)
To: emacs-orgmode
Hi Carsten,
I ran into the following behaviour today and isolated it as well as I
could. Here is a minimal emacs setup that reproduces the problem for
me.
,----[ test.org ]
| * Support
| ** TODO [#A] Update SQL code for 2005 error handling
| - State "WAITING" [2008-10-02 Thu 10:43] \\
| for something
| [2008-08-27 Wed]
| *** TODO Installation and Verification
| :PROPERTIES:
| :END:
| - State "TODO" [2008-10-02 Thu 10:58]
`----
,----[ minimal.emacs ]
| (add-to-list 'load-path (expand-file-name "~/git/org-mode/lisp"))
| (add-to-list 'auto-mode-alist '("\\.\\(org\\|org_archive\\|txt\\)$" . org-mode))
| (require 'org-install)
| (global-font-lock-mode t)
| (setq org-use-fast-todo-selection t)
|
| (setq org-todo-keywords
| '((sequence "TODO(t)" "NEXT(n)" "WAITING(w@/!)" "ONGOING(o)" "DEFERRED(D@/!)" "|" "DONE(d!/!)" "CANCELLED(c@/!)")))
`----
| Key Sequence | Notes |
|------------------------------------+-----------------------------------------------------------|
| emacs -q -l minimal.emacs test.org | Start minimal emacs session editing test.org file |
| TAB | expand Support to CHILDREN mode |
| TAB | expand Support to SUBTREE mode |
| down arrow | Move to TODO [#A] Update SQL code for 2005 error handling |
| C-c C-t w | Change state to WAITING |
| type something C-c C-c | enter a note |
|------------------------------------+-----------------------------------------------------------|
and the resulting file looks like this
,----[ test.org ]
| * Support
| ** WAITING [#A] Update SQL code for 2005 error handling
| - State "WAITING" [2008-10-02 Thu 10:43] \\
| for something
| [2008-08-27 Wed]
| *** TODO Installation and Verification
| :PROPERTIES:
| :END:
| - State "WAITING" [2008-10-02 Thu 11:14] \\
| type something
| - State "TODO" [2008-10-02 Thu 10:58]
`----
The 'type something' waiting note was filed under the level 3 task not
the level 2 task we are changing the state for.
I'm using org-mode commit 0ec6021080166fb6f8b30323ce92c4241ccd677e.
Thanks again for org-mode!
Regards,
Bernt
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: BUG - Note logging to wrong task
2008-10-02 15:16 BUG - Note logging to wrong task Bernt Hansen
@ 2008-10-02 16:16 ` Carsten Dominik
2008-10-02 16:28 ` Bernt Hansen
0 siblings, 1 reply; 5+ messages in thread
From: Carsten Dominik @ 2008-10-02 16:16 UTC (permalink / raw)
To: Bernt Hansen; +Cc: emacs-orgmode
Fixed, thanks.
- Carsten
On Oct 2, 2008, at 5:16 PM, Bernt Hansen wrote:
> Hi Carsten,
>
> I ran into the following behaviour today and isolated it as well as I
> could. Here is a minimal emacs setup that reproduces the problem for
> me.
>
> ,----[ test.org ]
> | * Support
> | ** TODO [#A] Update SQL code for 2005 error handling
> | - State "WAITING" [2008-10-02 Thu 10:43] \\
> | for something
> | [2008-08-27 Wed]
> | *** TODO Installation and Verification
> | :PROPERTIES:
> | :END:
> | - State "TODO" [2008-10-02 Thu 10:58]
> `----
> ,----[ minimal.emacs ]
> | (add-to-list 'load-path (expand-file-name "~/git/org-mode/lisp"))
> | (add-to-list 'auto-mode-alist '("\\.\\(org\\|org_archive\\|txt\\)
> $" . org-mode))
> | (require 'org-install)
> | (global-font-lock-mode t)
> | (setq org-use-fast-todo-selection t)
> |
> | (setq org-todo-keywords
> | '((sequence "TODO(t)" "NEXT(n)" "WAITING(w@/!)" "ONGOING(o)"
> "DEFERRED(D@/!)" "|" "DONE(d!/!)" "CANCELLED(c@/!)")))
> `----
>
>
> | Key Sequence |
> Notes |
> |------------------------------------
> +-----------------------------------------------------------|
> | emacs -q -l minimal.emacs test.org | Start minimal emacs session
> editing test.org file |
> | TAB | expand Support to CHILDREN
> mode |
> | TAB | expand Support to SUBTREE
> mode |
> | down arrow | Move to TODO [#A] Update SQL
> code for 2005 error handling |
> | C-c C-t w | Change state to
> WAITING |
> | type something C-c C-c | enter a
> note |
> |------------------------------------
> +-----------------------------------------------------------|
>
> and the resulting file looks like this
>
> ,----[ test.org ]
> | * Support
> | ** WAITING [#A] Update SQL code for 2005 error handling
> | - State "WAITING" [2008-10-02 Thu 10:43] \\
> | for something
> | [2008-08-27 Wed]
> | *** TODO Installation and Verification
> | :PROPERTIES:
> | :END:
> | - State "WAITING" [2008-10-02 Thu 11:14] \\
> | type something
> | - State "TODO" [2008-10-02 Thu 10:58]
> `----
>
> The 'type something' waiting note was filed under the level 3 task not
> the level 2 task we are changing the state for.
>
> I'm using org-mode commit 0ec6021080166fb6f8b30323ce92c4241ccd677e.
>
> Thanks again for org-mode!
>
> Regards,
> Bernt
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: BUG - Note logging to wrong task
2008-10-02 16:16 ` Carsten Dominik
@ 2008-10-02 16:28 ` Bernt Hansen
2008-10-02 16:36 ` Carsten Dominik
0 siblings, 1 reply; 5+ messages in thread
From: Bernt Hansen @ 2008-10-02 16:28 UTC (permalink / raw)
To: Carsten Dominik; +Cc: emacs-orgmode
Thanks! This works for me :)
As always you have an awesome turn-around time for bug reports :D
Thanks so much for your excellent effort maintaining this project.
-Bernt
Carsten Dominik <dominik@uva.nl> writes:
> Fixed, thanks.
>
> - Carsten
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: BUG - Note logging to wrong task
2008-10-02 16:28 ` Bernt Hansen
@ 2008-10-02 16:36 ` Carsten Dominik
2008-10-02 17:32 ` Austin Frank
0 siblings, 1 reply; 5+ messages in thread
From: Carsten Dominik @ 2008-10-02 16:36 UTC (permalink / raw)
To: Bernt Hansen; +Cc: emacs-orgmode
On Oct 2, 2008, at 6:28 PM, Bernt Hansen wrote:
> Thanks! This works for me :)
>
> As always you have an awesome turn-around time for bug reports :D
Well, I am trying to use the 2 minute rule: It it is something that
can be done in 2 minutes, do it immediately, because filing
it a way and getting back to it will take more time....
And with a well-prepared bug report like in this case, it really
does not take longer than that.
- Carsten
>
>
> Thanks so much for your excellent effort maintaining this project.
>
> -Bernt
>
> Carsten Dominik <dominik@uva.nl> writes:
>
>> Fixed, thanks.
>>
>> - Carsten
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: BUG - Note logging to wrong task
2008-10-02 16:36 ` Carsten Dominik
@ 2008-10-02 17:32 ` Austin Frank
0 siblings, 0 replies; 5+ messages in thread
From: Austin Frank @ 2008-10-02 17:32 UTC (permalink / raw)
To: Carsten Dominik; +Cc: Bernt Hansen, emacs-orgmode
[-- Attachment #1.1: Type: text/plain, Size: 296 bytes --]
On Thu, Oct 02 2008, Carsten Dominik wrote:
> And with a well-prepared bug report like in this case, it really
> does not take longer than that.
/me hangs his head in shame
:P
/au
--
Austin Frank
http://aufrank.net
GPG Public Key (D7398C2F): http://aufrank.net/personal.asc
[-- Attachment #1.2: Type: application/pgp-signature, Size: 193 bytes --]
[-- Attachment #2: Type: text/plain, Size: 204 bytes --]
_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2008-10-02 17:32 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-02 15:16 BUG - Note logging to wrong task Bernt Hansen
2008-10-02 16:16 ` Carsten Dominik
2008-10-02 16:28 ` Bernt Hansen
2008-10-02 16:36 ` Carsten Dominik
2008-10-02 17:32 ` Austin Frank
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).