[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: org-agenda-get-timestamps and properties
From: |
Kyle Meyer |
Subject: |
Re: org-agenda-get-timestamps and properties |
Date: |
Thu, 12 Nov 2020 23:12:21 -0500 |
Michael Heerdegen writes:
> When debugging, I found that `org-agenda-get-timestamps' does, depending
> on the position of the SCHEDULED spec, do return a timestamp when an
> entry is formatted like this:
>
> ** APPT 10:40 Xyz
> :PROPERTIES:
> :ID: 1d313f9a-3044-4c23-9278-422646ec9063
> :END:
> SCHEDULED: <2020-11-08 So +1d>
To be valid, the SCHEDULED spec should be immediately following the
headline. So this is just a timestamp...
> but not when formatted like this:
>
> ** APPT 10:40 Xyz
> SCHEDULED: <2020-11-08 So +1d>
> :PROPERTIES:
> :ID: 1d313f9a-3044-4c23-9278-422646ec9063
> :END:
>
> although the latter form is, AFAICT, recommended, and at least it's what
> I get when creating ids automatically with (org-id-get-create).
...while this is a valid scheduled heading.
> No timestamp, and my appointments don't work (bad).
>
> Has anybody any insight into this matter?
I haven't looked too closely, but at first glance
org-agenda-get-timestamps not detecting the second entry seems expected.
org-agenda-get-timestamps has a comment that says "[s]kip date ranges,
scheduled and deadlines, which are handled specially". Still without
looking closely, I'd guess that the "handled specially" is referring to
org-agenda-get-scheduled and org-agenda-get-deadlines.