emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* question on missing scheduled entries in agenda
@ 2010-03-22 13:22 Emin.shopper Martinian.shopper
  2010-04-02  8:03 ` David Maus
  0 siblings, 1 reply; 3+ messages in thread
From: Emin.shopper Martinian.shopper @ 2010-03-22 13:22 UTC (permalink / raw)
  To: emacs-orgmode

Dear Experts,

I have noticed that if I have a "nested entry" in an org-mode file, it
does not get picked up properly in my agenda.

For example, if I have something like the stuff shown below in an
org-mode file and I create an agenda or export it, I sometimes get an
entry for the top level item which includes the bottom level item. For
example, if I do "C-c C-e c" and export this to an icalendar agenda
then I get an entry for PLAN even though it is not schedule but I get
no entry for "quick morning stuff" even though it is scheduled. Any
thoughts on what I can do so that such scheduled items are handled
properly?

Thanks,
-Emin

example org-mode contents illustrating problem are shown below

* PLAN <2010-03-22 Mon>  :PLAN:DAILY:

** quick morning stuff
	 	 	SCHEDULED: <2010-03-22 Mon 07:00-07:40>

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

* Re: question on missing scheduled entries in agenda
  2010-03-22 13:22 question on missing scheduled entries in agenda Emin.shopper Martinian.shopper
@ 2010-04-02  8:03 ` David Maus
  2010-04-13 14:32   ` Emin.shopper Martinian.shopper
  0 siblings, 1 reply; 3+ messages in thread
From: David Maus @ 2010-04-02  8:03 UTC (permalink / raw)
  To: Emin.shopper Martinian.shopper; +Cc: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 2061 bytes --]

Emin.shopper Martinian.shopper wrote:
>Dear Experts,

>I have noticed that if I have a "nested entry" in an org-mode file, it
>does not get picked up properly in my agenda.

>For example, if I have something like the stuff shown below in an
>org-mode file and I create an agenda or export it, I sometimes get an
>entry for the top level item which includes the bottom level item. For
>example, if I do "C-c C-e c" and export this to an icalendar agenda
>then I get an entry for PLAN even though it is not schedule but I get
>no entry for "quick morning stuff" even though it is scheduled. Any
>thoughts on what I can do so that such scheduled items are handled
>properly?

First let's single out the problem: Is it about iCal export or agenda
display?  I've tried the example and both entries show up in the
agenda (M-x org-agenda RET a).

For the iCal export I get:

,----
| BEGIN:VCALENDAR
| VERSION:2.0
| X-WR-CALNAME:OrgMode
| PRODID:-//David Maus//Emacs with Org-mode//EN
| X-WR-TIMEZONE:CEST
| CALSCALE:GREGORIAN
| BEGIN:VEVENT
| UID: TS-b9d39029-8b23-49a4-81ea-968da38c60ad
| DTSTART;VALUE=DATE:20100322
| DTEND;VALUE=DATE:20100323
| SUMMARY:PLAN 						 :PLAN:DAILY:
| DESCRIPTION: ** quick morning stuff
| CATEGORIES:PLAN,DAILY,test
| END:VEVENT
| END:VCALENDAR
`----

So indeed: The scheduled subheadline doesn't get an entry but is used
as description of the PLAN headline.

Did you customize the iCal export properly (M-x customize-group RET
org-export-icalendar RET)?

If not this behavior is actually okay.  There is this variable with
the default setting:

,----
| Hide Org Icalendar Use Scheduled:
| [ SCHEDULED timestamps in non-TODO entries become events
| [ ] SCHEDULED timestamps in TODO entries become events
| [X] SCHEDULED in TODO entries become start date
|    State: STANDARD.
|    Contexts where iCalendar export should use a scheduling time stamp. More
`----

So SCHEDULED entries are only exported when they have a TODO keyword.

HTH
 -- David

--
OpenPGP... 0x99ADB83B5A4478E6
Jabber.... dmjena@jabber.org
Email..... dmaus@ictsoc.de

[-- Attachment #1.2: Type: application/pgp-signature, Size: 230 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please 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] 3+ messages in thread

* Re: question on missing scheduled entries in agenda
  2010-04-02  8:03 ` David Maus
@ 2010-04-13 14:32   ` Emin.shopper Martinian.shopper
  0 siblings, 0 replies; 3+ messages in thread
From: Emin.shopper Martinian.shopper @ 2010-04-13 14:32 UTC (permalink / raw)
  To: David Maus; +Cc: emacs-orgmode

Thanks, I was not aware that I needed to customize the ical export.

Thanks!

On Fri, Apr 2, 2010 at 4:03 AM, David Maus <dmaus@ictsoc.de> wrote:
> Emin.shopper Martinian.shopper wrote:
>>Dear Experts,
>
>>I have noticed that if I have a "nested entry" in an org-mode file, it
>>does not get picked up properly in my agenda.
>
>>For example, if I have something like the stuff shown below in an
>>org-mode file and I create an agenda or export it, I sometimes get an
>>entry for the top level item which includes the bottom level item. For
>>example, if I do "C-c C-e c" and export this to an icalendar agenda
>>then I get an entry for PLAN even though it is not schedule but I get
>>no entry for "quick morning stuff" even though it is scheduled. Any
>>thoughts on what I can do so that such scheduled items are handled
>>properly?
>
> First let's single out the problem: Is it about iCal export or agenda
> display?  I've tried the example and both entries show up in the
> agenda (M-x org-agenda RET a).
>
> For the iCal export I get:
>
> ,----
> | BEGIN:VCALENDAR
> | VERSION:2.0
> | X-WR-CALNAME:OrgMode
> | PRODID:-//David Maus//Emacs with Org-mode//EN
> | X-WR-TIMEZONE:CEST
> | CALSCALE:GREGORIAN
> | BEGIN:VEVENT
> | UID: TS-b9d39029-8b23-49a4-81ea-968da38c60ad
> | DTSTART;VALUE=DATE:20100322
> | DTEND;VALUE=DATE:20100323
> | SUMMARY:PLAN                                           :PLAN:DAILY:
> | DESCRIPTION: ** quick morning stuff
> | CATEGORIES:PLAN,DAILY,test
> | END:VEVENT
> | END:VCALENDAR
> `----
>
> So indeed: The scheduled subheadline doesn't get an entry but is used
> as description of the PLAN headline.
>
> Did you customize the iCal export properly (M-x customize-group RET
> org-export-icalendar RET)?
>
> If not this behavior is actually okay.  There is this variable with
> the default setting:
>
> ,----
> | Hide Org Icalendar Use Scheduled:
> | [ SCHEDULED timestamps in non-TODO entries become events
> | [ ] SCHEDULED timestamps in TODO entries become events
> | [X] SCHEDULED in TODO entries become start date
> |    State: STANDARD.
> |    Contexts where iCalendar export should use a scheduling time stamp. More
> `----
>
> So SCHEDULED entries are only exported when they have a TODO keyword.
>
> HTH
>  -- David
>
> --
> OpenPGP... 0x99ADB83B5A4478E6
> Jabber.... dmjena@jabber.org
> Email..... dmaus@ictsoc.de
>

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

end of thread, other threads:[~2010-04-13 14:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-03-22 13:22 question on missing scheduled entries in agenda Emin.shopper Martinian.shopper
2010-04-02  8:03 ` David Maus
2010-04-13 14:32   ` Emin.shopper Martinian.shopper

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