emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Bug in #+CATEGORY
@ 2007-03-29 10:27 Leo
  2007-03-29 10:48 ` Carsten Dominik
  2007-03-29 11:09 ` Bastien
  0 siblings, 2 replies; 7+ messages in thread
From: Leo @ 2007-03-29 10:27 UTC (permalink / raw)
  To: emacs-orgmode

Hi there,

With this file in agenda file list:

,----
| * A
| #+CATEGORY: A
| *** Do something
|     SCHEDULED: <2007-03-29 Thu>
| *** Read something
| 
| * B
| #+CATEGORY: B
| *** Call someone
|     SCHEDULED: <2007-03-29 Thu>
| *** Invite someone
`----

Now go to "* A" and type "C-x n s" and then bring up the agenda by
"C-c a a" and you can see "Call someone" is in Category A although it
should be in Category B.

Best,
-- 
Leo <sdl.web AT gmail.com>                         (GPG Key: 9283AA3F)

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Bug in #+CATEGORY
  2007-03-29 10:27 Bug in #+CATEGORY Leo
@ 2007-03-29 10:48 ` Carsten Dominik
  2007-03-29 11:09 ` Bastien
  1 sibling, 0 replies; 7+ messages in thread
From: Carsten Dominik @ 2007-03-29 10:48 UTC (permalink / raw)
  To: Leo; +Cc: emacs-orgmode

Fixed, thanks.

- Carsten

On Mar 29, 2007, at 12:27, Leo wrote:

> | * A
> | #+CATEGORY: A
> | *** Do something
> |     SCHEDULED: <2007-03-29 Thu>
> | *** Read something
> |
> | * B
> | #+CATEGORY: B
> | *** Call someone
> |     SCHEDULED: <2007-03-29 Thu>
> | *** Invite someone
>

--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Bug in #+CATEGORY
  2007-03-29 10:27 Bug in #+CATEGORY Leo
  2007-03-29 10:48 ` Carsten Dominik
@ 2007-03-29 11:09 ` Bastien
  2007-03-29 11:43   ` Leo
  1 sibling, 1 reply; 7+ messages in thread
From: Bastien @ 2007-03-29 11:09 UTC (permalink / raw)
  To: emacs-orgmode

Leo <sdl.web@gmail.com> writes:

> Now go to "* A" and type "C-x n s" and then bring up the agenda by
> "C-c a a" and you can see "Call someone" is in Category A although it
> should be in Category B.

Yes, i can reproduce that.  And I guess it might be related to a bug i
was about to submit.

In the global TODO list buffer, instead of archiving (C-c $) the current
headline the cursor is on, Org will archive the whole tree the task is a
subtree of.  Which might lead to a "Doh! Where is my project?"-bug.

For example :

,----
| * Blorg
| #+CATEGORY: blorg
| #+ARCHIVE: archives/blorg_archive::
| 
| ** DONE publish blorg examples
`----

Archiving the task marked DONE will put the whole "* Blorg" tree in
archives/blorg_archives.org.  Does anyone encounter such a problem ?

Regards,

-- 
Bastien

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Bug in #+CATEGORY
  2007-03-29 11:09 ` Bastien
@ 2007-03-29 11:43   ` Leo
  2007-03-29 14:28     ` Carsten Dominik
  0 siblings, 1 reply; 7+ messages in thread
From: Leo @ 2007-03-29 11:43 UTC (permalink / raw)
  To: emacs-orgmode

On 2007-03-29, Bastien said:

> In the global TODO list buffer, instead of archiving (C-c $) the current
> headline the cursor is on, Org will archive the whole tree the task is a
> subtree of.  Which might lead to a "Doh! Where is my project?"-bug.
>
> For example :
>
> ,----
> | * Blorg
> | #+CATEGORY: blorg
> | #+ARCHIVE: archives/blorg_archive::
> | 
> | ** DONE publish blorg examples
> `----
>
> Archiving the task marked DONE will put the whole "* Blorg" tree in
> archives/blorg_archives.org.  Does anyone encounter such a problem ?

Yes I have seen this before but haven't got around to report it.

-- 
Leo <sdl.web AT gmail.com>                         (GPG Key: 9283AA3F)

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Re: Bug in #+CATEGORY
  2007-03-29 11:43   ` Leo
@ 2007-03-29 14:28     ` Carsten Dominik
  2007-03-29 14:45       ` Leo
  0 siblings, 1 reply; 7+ messages in thread
From: Carsten Dominik @ 2007-03-29 14:28 UTC (permalink / raw)
  To: Leo; +Cc: emacs-orgmode

So far I have not been able to reproduce this.  Could you please send 
more detailed instrictions?  With the example file you sent, things are
working just right for me.

- Carsten

On Mar 29, 2007, at 13:43, Leo wrote:

> On 2007-03-29, Bastien said:
>
>> In the global TODO list buffer, instead of archiving (C-c $) the 
>> current
>> headline the cursor is on, Org will archive the whole tree the task 
>> is a
>> subtree of.  Which might lead to a "Doh! Where is my project?"-bug.
>>
>> For example :
>>
>> ,----
>> | * Blorg
>> | #+CATEGORY: blorg
>> | #+ARCHIVE: archives/blorg_archive::
>> |
>> | ** DONE publish blorg examples
>> `----
>>
>> Archiving the task marked DONE will put the whole "* Blorg" tree in
>> archives/blorg_archives.org.  Does anyone encounter such a problem ?
>
> Yes I have seen this before but haven't got around to report it.
>
> -- 
> Leo <sdl.web AT gmail.com>                         (GPG Key: 9283AA3F)
>
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
>

--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Bug in #+CATEGORY
  2007-03-29 14:28     ` Carsten Dominik
@ 2007-03-29 14:45       ` Leo
  2007-03-30  7:55         ` Bastien
  0 siblings, 1 reply; 7+ messages in thread
From: Leo @ 2007-03-29 14:45 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: emacs-orgmode

Hello, Carsten!

On 2007-03-29, Carsten Dominik said:

> So far I have not been able to reproduce this.  Could you please
> send more detailed instrictions?  With the example file you sent,
> things are working just right for me.
>
> - Carsten

Bastien, can you give a specific reproducible case? Damn, I have seen
this bug before but was not able to reproduce it.

regards,
-- 
Leo <sdl.web AT gmail.com>                         (GPG Key: 9283AA3F)

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Bug in #+CATEGORY
  2007-03-29 14:45       ` Leo
@ 2007-03-30  7:55         ` Bastien
  0 siblings, 0 replies; 7+ messages in thread
From: Bastien @ 2007-03-30  7:55 UTC (permalink / raw)
  To: emacs-orgmode

Leo <sdl.web@gmail.com> writes:

> Bastien, can you give a specific reproducible case? Damn, I have seen
> this bug before but was not able to reproduce it.

I've been testing around this morning and i cannot reproduce it neither.
I will report it in details as soon as i stumble upon it again, since it
is a *very* confusing issue -- when it happened to me, i first thought
i'd lost a big part of my (single) org-mode file ...

'Hope my next mail on this list will be more helpful ...

-- 
Bastien

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2007-03-30  7:58 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-03-29 10:27 Bug in #+CATEGORY Leo
2007-03-29 10:48 ` Carsten Dominik
2007-03-29 11:09 ` Bastien
2007-03-29 11:43   ` Leo
2007-03-29 14:28     ` Carsten Dominik
2007-03-29 14:45       ` Leo
2007-03-30  7:55         ` Bastien

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).