emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Samuel Wales <samologist@gmail.com>
To: Ihor Radchenko <yantar92@posteo.net>
Cc: Greg Minshall <minshall@umich.edu>,
	Sterling Hooten <hooten@gmail.com>,
	 "Thomas S. Dye" <tsd@tsdye.online>,
	Tim Cross <theophilusx@gmail.com>, Jean Louis <bugs@gnu.support>,
	 Daryl Manning <daryl@wakatara.com>,
	rjhorn@alum.mit.edu, emacs-orgmode@gnu.org
Subject: Re: [POLL] Proposed syntax for timestamps with time zone info (was: [FEATURE REQUEST] Timezone support in org-mode datestamps and org-agenda)
Date: Tue, 31 Jan 2023 16:50:18 -0700	[thread overview]
Message-ID: <CAJcAo8vgddm1xgobYhX204qFuzG3xV72PnXjRrvYe-Yb+n2AQQ@mail.gmail.com> (raw)
In-Reply-To: <87tu063ox2.fsf@localhost>

amazing amount of work and good choices.  i won't object, although
previous comments re syntax proliferation and 3rd party and personal
code re stand, while acknowledging the replies.  i cannot take a close
look.

just a few tiny nits tht shouldn't realy affect much or quite possibly
reflect ignorance:

bce and ce might be possibilities.  if negative numbers or somethigare
not uniquely used for that.

can any of this, or the semantics, be in emacs?  emacs has times all
over the place.

1. Reduced timestamp precision:
   1985-04-12 (day precision, time omitted; available in Org)

current agenda search query semantics seem /currently/ potentially
confusing re in/equalities for today, now, day precision.  e.g. is
today a specific minute or can = refer to any minute in the day?  is
the manual clear?


On 1/31/23, Ihor Radchenko <yantar92@posteo.net> wrote:
> Greg Minshall <minshall@umich.edu> writes:
>
>> just a thought/reminder.  there are "semantics" and "encoding".  a spec
>> like ISO-8601 specifies both.  the important thing for org-mode is to
>> use an encoding that
>>
>> 1. is easily parsable/understandable by the mere mortal
>>
>> 2. allows expression of all the semantics of the underlying spec/specs
>>    (be that ISO-8601, this new IETF spec, the Library of Congress spec,
>>    etc.)
>>
>> 3. and, importantly, is designed to *try* to follow updates to the
>>    underlying spec/specs (which will inevitably happen)
>
> I agree with these three points.
>
> Following the previous discussion and the various links provided, I have
> reviewed the main discussed timestamp standards and would like to
> propose the new Org timestamp syntax that will allow specifying time
> zone information.
>
> I will not follow the standards fully because the available standards
> are not designed to be easily understood by humans. I will also omit
> the ideas from the standards that are unrelated to time stamps (but
> still outline them below, and keep them in mind for
> forward-compatibility). I will, however, try to use the syntax close to
> the standards where possible.
>
> 1. https://datatracker.ietf.org/doc/draft-ietf-sedate-datetime-extended/
>    proposal is extending ISO8601/RFC3339 with time zone information. In
>    addition to UTC offset defined in ISO8601, it allows specifying the
>    time zone identifier and auxiliary information.
>
>    Examples:
>
>    2022-07-08T02:14:07+02:00[Europe/Paris]
>    (both offset, and time zone are specified)
>    Note that we cannot use "[]" symbols because they are incompatible
>    with current timestamp syntax that must not contain closing "]>"
>    inside the timestamp.
>
>    1996-12-19T16:39:57-08:00[America/Los_Angeles][u-ca=hebrew]
>    (preferred calendar is specified in addition to time zone)
>    Note: calendar spec is out of scope of time zone discussion - if we
>    decide to add it in future, we can simply add new parts to
>    timestamps, just like repeater interval and warning period.
>
>    Further, the draft proposes an idea, which have also been discussed
>    in this thread: making use of redundant UTC offset + time zone
>    information to detect possible unexpected changes in time zone rules:
>
>    2022-07-08T00:14:07+00:00[!Europe/London]
>    ("!" identifies that +00:00 offset, if not consistent with
>    Europe/London at the timestamp time, must be signalled to user or
>    generally not ignored)
>
> 2. https://www.loc.gov/standards/datetime/ does not contain any new
>    ideas relevant to time zones, although it has many other ideas wrt
>    approximate/incomplete timestamps. I will outline them later, but
>    they do not directly affect the proposed new Org timestamp syntax.
>
> |-----------------------------------|
> | The proposed new timestamp syntax |
> |-----------------------------------|
>
> I propose two forms of time zone information in Org timestamps
>
> 1. Timestamp with explicit UTC offset
>
>    YYYY-MM-DD [optional day name] HH:MM[^ \]>]*?[+-−]HH[MM]?
>    YYYY-MM-DD [optional day name] HH:MM[^ \]>]*?Z[ \]>]
>
>    "-" is latin "HYPHEN-MINUS" (code 0x2D)
>    "−" is unicode "MINUS SIGN" (code 0x2212), as prescribed by ISO8601
>    we will not actually use it when generating timestamps, but allow it
>    to keep some compatibility with ISO standard.
>
>    "Z" in the second format refers to "Zulu" time (another name for UTC)
>    and must be either the last character in the timestamp or the
>    last character before space. Not sure if many users are familiar with
>    "Z" convention, but it is (1) in ISO; (2) succinct for users who are
>    familiar with it. We will prefer +00 number offset in auto-generated
>    timestamps.
>
>    Examples:
>    2022-11-12 12:00+02 # 12:00 UTC+2
>    2022-11-12 14:00+0230 # 14:00 UTC+2:30
>    2022-11-12 14:00-0230 # 14:00 UTC-2:30
>    2022-11-12 14:00Z # 14:00 UTC
>
>    The offset is a subset of what is defined by ISO8601.
>
>    Note that unlike ISO8601, ":" is not allowed in the offset specifier.
>    This is to disambiguate with the time intervals in Org timestamps:
>    [2022-11-12 8:00-9:00] in Org is a time range from 8am to 9am.
>
>    For time ranges, we will only allow a single offset and time zone
>    specifier for both start and end times:
>    [2022-11-12 8:00-9:00+08]
>    If different time zones are necessary to specify the start/end times,
>    users can still use full timestamp range syntax
>    [2022-11-12 8:00+03]--[2022-11-12 22:00+08]
>
>    The format is also forward-compatible with extending Org timestamps
>    for second/sub-second precision: 2022-11-12 14:00:05.0012+0230 will
>    remain valid if we decide to adopt such format.
>
> 2. Timestamp with time zone specifier
>
>    YYYY-MM-DD [optional day name] HH:MM[^ ]* @[!]?<[^ \]>]>
>
>    For now, time zone name will only be processed when it follows TZ
>    POSIX format. If necessary, the proposed syntax will still allow
>    extensions to TZ POSIX.
>
>    Examples:
>    2022-11-12 12:00 @Asia/Singapore # tzdb syntax
>    2022-11-12 10:00 @Europe/Berlin
>    2022-11-12 10:00 @!Europe/Berlin # "!" does nothing here, see below
>    2022-11-12 10:00 @EST+5 # TZ syntax
>    2022-11-12 10:00 @EST+5EDT,M3.2.0/2,M11.1.0/2 # manual time zone spec
> allowed in TZ
>
>    The "@" symbol is selected to disambiguate time zone specifier from
>    other auxiliary information in the timestamp. Like calendar name,
>    which might be added in future. Note that we cannot use [...] from
>    the standard draft. I selected "@" because it is read as "at" -
>    location specifier.
>
>    The "!" symbol is adapted from
>    https://datatracker.ietf.org/doc/draft-ietf-sedate-datetime-extended/
>
>    I use space before "@" to improve readability. We deviate from the
>    standard here so may as well. In contrast, no space before [+-]offset
>    is closer to the standard yet not cluttering the timestamp too much
>    (IMHO).
>
> 3. (1) and (2) can be combined
>
>    2022-11-12 12:00+08 @Asia/Singapore
>
>    Org will unconditionally use +08 offset and ignore the time zone
>    name. We prefer absolute offset because it is non-ambiguous wrt
>    out-of-date tzdb on the computer. One may also not update the TZ
>    variable upon travelling - the system clock will again be more likely
>    accurate.
>
>    This redundant time offset info can serve as human-readable
>    indication of absolute time, while the time zone name will indicate
>    the location.
>
>    2022-11-12 12:00+07 @!Asia/Singapore
>
>    Org will calculate the internal time for both +07 offset and
>    Asia/Singapore time zone. If they do not match, Org will issue a
>    warning. The offset will still be preferred if we have to proceed.
>
>    This can be useful when planning future meetings and sending Org file
>    with a timestamp to someone else, potentially with obsolete tzdb.
>
> |-----------------------------------|
> |              <end>                |
> |-----------------------------------|
>
> Apart from the ideas mentioned above,
> https://www.loc.gov/standards/datetime/ contains a number of other
> interesting ideas that may or may not be adapted by Org in future.
> I will outline the ideas I find noteworthy to keep them in mind when
> considering changing (including current changes) in the timestamp
> syntax:
>
> 1. Reduced timestamp precision:
>    1985-04-12 (day precision, time omitted; available in Org)
>    1985-04 (month precision, day and time omitted, not available in Org)
>    1985 (year precision)
>
>    Current timestamp syntax proposal should not interfere.
>
> 2. Using "T" as date/time delimiter
>    1985-04-12T23:20:30 (not supported by Org)
>
> 3. Using "/" for time intervals
>    2004-02-01/2005-02-08 (not supported and incompatible with Org)
>
> 4. Seasons
>    2001-21 (Spring, 2001; not supported by Org)
>
> 5. Approximate dates
>    1984? (year uncertain)
>    2004-06~ (year-month approximate)
>    2004-06-11% (entire date (year-month-day) uncertain and approximate)
>    2004-06?-11 (year and month uncertain)
>    2004-?06-11 (just month uncertain)
>
> 6. Unspecified digits
>    1985-04-XX (day unspecified; might be an interesting idea for
>    defining repeater intervals)
>
> 7. Open time intervals
>    1985-04-12/.. (from 1985-04-12 to infinite)
>    1985-04-12/ (from 1985-04-12 to unknown)
>
> 8. Negative calendar year
>    -1985 (note: an alternative could be allowing AD/BC)
>
> 9. Set of dates
>    [1667,1668,1670..1672] (one of)
>    {1667,1668,1670..1672} (all)
>    [1760-01,1760-02,1760-12..]
>    (similar to regexp [...] groups; not compatible with Org syntax, but
>    the idea could be interesting for repeater intervals)
>
> --
> Ihor Radchenko // yantar92,
> Org mode contributor,
> Learn more about Org mode at <https://orgmode.org/>.
> Support Org development at <https://liberapay.com/org-mode>,
> or support my work at <https://liberapay.com/yantar92>
>
>


-- 
The Kafka Pandemic

A blog about science, health, human rights, and misopathy:
https://thekafkapandemic.blogspot.com


  parent reply	other threads:[~2023-01-31 23:51 UTC|newest]

Thread overview: 366+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-13  8:56 [FEATURE REQUEST] Timezone support in org-mode datestamps and org-agenda Daryl Manning
2023-01-13 12:51 ` Tim Cross
2023-01-14  6:27   ` Daryl Manning
2023-01-14 12:46     ` Jean Louis
2023-01-14 11:18   ` Ihor Radchenko
2023-01-14 11:26     ` Daryl Manning
2023-01-14 11:42       ` Ihor Radchenko
2023-01-15  5:11         ` Max Nikulin
2023-01-15 13:41           ` Ihor Radchenko
2023-01-16 16:43             ` Max Nikulin
2023-01-16 18:37               ` Ihor Radchenko
2023-01-17 17:40                 ` Max Nikulin
2023-01-18  9:59                   ` Ihor Radchenko
2023-01-18 16:25                     ` Jean Louis
2023-01-18 16:24                   ` [SOLUTION] " Jean Louis
2023-01-20 10:57         ` Ihor Radchenko
2023-01-20 11:29           ` Daryl Manning
2023-01-20 11:36             ` Ihor Radchenko
2023-01-20 15:10               ` Daryl Manning
2023-01-20 11:39             ` Fraga, Eric
2023-01-20 11:48               ` Ihor Radchenko
2023-01-21 12:55                 ` Jean Louis
2023-01-21 13:41                   ` Ihor Radchenko
2023-01-21  9:21               ` Ihor Radchenko
2023-01-21 10:14                 ` Max Nikulin
2023-01-22 11:49                   ` Ihor Radchenko
2023-01-20 22:51             ` Tim Cross
2023-01-14 13:03     ` Tim Cross
2023-01-14 13:22       ` Ihor Radchenko
2023-01-15 19:10         ` Jean Louis
2023-01-16 11:21           ` Ihor Radchenko
2023-01-16 11:30             ` Daryl Manning
2023-01-16 11:39               ` Ihor Radchenko
2023-01-16 15:43                 ` Daryl Manning
2023-01-16 19:07                   ` Ihor Radchenko
2023-01-16 19:22                     ` Robert Horn
2023-01-16 19:41                       ` Ihor Radchenko
2023-01-16 20:47                         ` Robert Horn
2023-01-16 21:02                           ` Tom Gillespie
2023-01-16 21:48                             ` Robert Horn
2023-01-17  8:53                               ` Ihor Radchenko
2023-01-17  3:55                           ` Daryl Manning
2023-01-17  8:22                             ` Tim Cross
2023-01-17  9:15                               ` Ihor Radchenko
2023-01-17  9:45                                 ` Tim Cross
2023-01-18  9:15                                   ` Ihor Radchenko
2023-01-18 11:43                                     ` Tim Cross
2023-01-18 12:02                                       ` Ihor Radchenko
2023-01-18 21:16                                         ` Tim Cross
2023-01-19  5:29                                           ` Jean Louis
2023-01-19  6:25                                             ` Thomas S. Dye
2023-01-19 14:17                                               ` Jean Louis
2023-01-19 15:55                                                 ` Thomas S. Dye
2023-01-21 13:10                                                   ` Jean Louis
2023-01-21 16:23                                                     ` Thomas S. Dye
2023-01-21 13:50                                                   ` Jean Louis
2023-01-21 14:31                                                     ` Max Nikulin
2023-01-21 16:55                                                     ` Thomas S. Dye
2023-01-19  7:23                                             ` Tim Cross
2023-01-19 14:32                                               ` Jean Louis
2023-01-19 20:09                                                 ` Tim Cross
2023-01-19 23:02                                                   ` Thomas S. Dye
2023-01-19 23:51                                                     ` Tim Cross
2023-01-20  0:24                                                       ` Thomas S. Dye
2023-01-20  3:46                                                         ` Tim Cross
2023-01-20  6:14                                                           ` Thomas S. Dye
2023-01-27  6:06                                                             ` Sterling Hooten
2023-01-27  6:09                                                               ` Daryl Manning
2023-01-27  9:54                                                               ` Jean Louis
2023-01-27 21:04                                                                 ` Tim Cross
2023-01-29  4:09                                                                   ` Jean Louis
2023-01-29  6:21                                                                     ` Thomas S. Dye
2023-01-29  6:46                                                                       ` Daryl Manning
2023-01-29 14:10                                                                         ` Ihor Radchenko
2023-01-30 19:37                                                                       ` Jean Louis
2023-01-31  0:53                                                                         ` Thomas S. Dye
     [not found]                                                                         ` <0597910b-9b01-3c0c-5d06-da171e0de4cd@gmx.at>
2023-01-31  6:08                                                                           ` Jean Louis
2023-01-29  6:31                                                                     ` Max Nikulin
2023-01-30 20:36                                                                       ` Jean Louis
2023-01-30 20:38                                                                       ` Jean Louis
2023-01-29 20:26                                                                     ` Tim Cross
2023-01-30 20:55                                                                       ` Jean Louis
2023-01-30 21:54                                                                         ` Tim Cross
2023-01-31  7:04                                                                           ` Jean Louis
2023-01-31  8:14                                                                             ` Max Nikulin
2023-01-31 13:02                                                                               ` Jean Louis
2023-01-27 11:09                                                               ` Ihor Radchenko
2023-01-27 12:49                                                                 ` Sterling Hooten
2023-01-27 13:00                                                                   ` Ihor Radchenko
2023-01-27 15:03                                                                   ` Jean Louis
2023-01-30 13:08                                                                   ` Ihor Radchenko
2023-01-27 20:58                                                                 ` Tim Cross
2023-01-30 11:25                                                                 ` Greg Minshall
2023-01-31 11:48                                                                   ` [POLL] Proposed syntax for timestamps with time zone info (was: [FEATURE REQUEST] Timezone support in org-mode datestamps and org-agenda) Ihor Radchenko
2023-01-31 12:19                                                                     ` Daryl Manning
2023-01-31 12:41                                                                       ` Ihor Radchenko
     [not found]                                                                         ` <CAL9aZksf8AGF=dXg0KAtLPyu1ATt1fLpvdsjN6GMCuK2KRQ56w@mail.gmail.com>
2023-01-31 13:33                                                                           ` Ihor Radchenko
2023-01-31 13:22                                                                     ` Jean Louis
2023-01-31 13:46                                                                       ` Ihor Radchenko
2023-01-31 19:59                                                                         ` Jean Louis
2023-02-01 12:42                                                                           ` Ihor Radchenko
2023-02-01 15:28                                                                             ` Jean Louis
2023-02-01 16:30                                                                               ` Ihor Radchenko
2023-01-31 20:12                                                                         ` Jean Louis
2023-02-01  5:46                                                                           ` tomas
2023-02-01  7:29                                                                             ` Jean Louis
2023-02-01  7:52                                                                             ` Tim Cross
2023-02-01  8:32                                                                               ` Jean Louis
2023-02-01  8:46                                                                               ` Ihor Radchenko
2023-02-01  9:38                                                                                 ` Tim Cross
2023-02-01 10:15                                                                                   ` Ihor Radchenko
2023-02-01 14:53                                                                                     ` Jean Louis
2023-02-01 16:36                                                                                       ` Ihor Radchenko
2023-02-01 10:46                                                                                   ` Max Nikulin
2023-02-01 14:43                                                                                   ` Jean Louis
2023-02-01 16:45                                                                                     ` Ihor Radchenko
2023-02-02  3:05                                                                                       ` Max Nikulin
2023-02-02  8:59                                                                                         ` Ihor Radchenko
2023-02-01  9:40                                                                                 ` [POLL] Proposed syntax for timestamps with time zone info Stefan Nobis
2023-02-01  9:45                                                                                   ` Ihor Radchenko
2023-02-01 14:38                                                                                 ` [POLL] Proposed syntax for timestamps with time zone info (was: [FEATURE REQUEST] Timezone support in org-mode datestamps and org-agenda) Jean Louis
2023-02-01 16:50                                                                                   ` Ihor Radchenko
2023-02-03 15:48                                                                                   ` [POLL] Proposed syntax for timestamps with time zone info Stefan Nobis
2023-02-04  5:07                                                                                     ` Jean Louis
2023-02-01  9:06                                                                             ` Stefan Nobis
2023-02-01  9:20                                                                               ` tomas
2023-02-01  9:48                                                                                 ` Stefan Nobis
2023-10-29  1:04                                                                                 ` Jean Louis
2023-02-06 15:34                                                                                   ` Marcin Borkowski
2023-02-06 17:03                                                                                     ` tomas
2023-02-07 21:08                                                                                     ` Jean Louis
2023-10-29  1:02                                                                               ` Jean Louis
2023-02-01  7:00                                                                           ` [POLL] Proposed syntax for timestamps with time zone info (was: [FEATURE REQUEST] Timezone support in org-mode datestamps and org-agenda) Thomas S. Dye
2023-02-01  7:41                                                                             ` Jean Louis
2023-01-31 17:56                                                                     ` [POLL] Proposed syntax for timestamps with time zone info Fraga, Eric
2023-01-31 18:13                                                                       ` Ihor Radchenko
2023-01-31 18:22                                                                         ` Fraga, Eric
2023-01-31 18:56                                                                     ` [POLL] Proposed syntax for timestamps with time zone info (was: [FEATURE REQUEST] Timezone support in org-mode datestamps and org-agenda) Greg Minshall
2023-02-01 12:48                                                                       ` Ihor Radchenko
2023-02-01 12:52                                                                         ` tomas
2023-02-02  4:49                                                                           ` Greg Minshall
2023-01-31 20:41                                                                     ` Tim Cross
2023-01-31 23:50                                                                     ` Samuel Wales [this message]
2023-02-01 13:01                                                                       ` Ihor Radchenko
2023-02-04 22:33                                                                         ` Samuel Wales
2023-02-04 22:49                                                                           ` Samuel Wales
2023-02-05 10:38                                                                           ` Ihor Radchenko
2023-02-01 11:56                                                                     ` Christian Moe
2023-02-01 12:20                                                                       ` Ihor Radchenko
     [not found]                                                                         ` <87o7qdsf7h.fsf@christianmoe.com>
2023-02-01 13:26                                                                           ` POSIX TS spec reverses the meaning of TZ offset compared to ISO (was: [POLL] Proposed syntax for timestamps with time zone info (was: [FEATURE REQUEST] Timezone support in org-mode datestamps and org-agenda)) Ihor Radchenko
2023-02-01 13:51                                                                             ` tomas
2023-02-01 21:57                                                                               ` POSIX TS spec reverses the meaning of TZ offset compared to ISO (was: [POLL] Proposed syntax for timestamps with time zone info Heinz Tuechler
2023-02-01 22:50                                                                                 ` Samuel Wales
2023-02-02  9:01                                                                                   ` Ihor Radchenko
2023-02-02  3:22                                                                                 ` Max Nikulin
2023-02-02  7:45                                                                                   ` POSIX TS spec reverses the meaning of TZ offset compared to ISO Heinz Tuechler
2023-02-02  8:33                                                                                     ` tomas
2023-02-02  9:37                                                                                       ` Heinz Tuechler
2023-02-04 15:44                                                                                         ` Max Nikulin
2023-02-02  5:35                                                                                 ` POSIX TS spec reverses the meaning of TZ offset compared to ISO (was: [POLL] Proposed syntax for timestamps with time zone info tomas
2023-02-02  8:56                                                                                 ` Ihor Radchenko
2023-02-01 15:16                                                                             ` POSIX TS spec reverses the meaning of TZ offset compared to ISO (was: [FEATURE REQUEST] Timezone support in org-mode datestamps and org-agenda) Max Nikulin
2023-02-02  8:34                                                                               ` Ihor Radchenko
2023-02-02 13:59                                                                                 ` Max Nikulin
2023-02-02 14:06                                                                                   ` Ihor Radchenko
2023-02-01 15:41                                                                         ` [POLL] Proposed syntax for timestamps with time zone info " Jean Louis
2023-02-02  8:38                                                                           ` Ihor Radchenko
2023-02-03 11:31                                                                             ` Jean Louis
2023-02-04 10:58                                                                               ` Ihor Radchenko
2023-02-04 19:32                                                                                 ` Jean Louis
2023-02-05  9:14                                                                                   ` Ihor Radchenko
2023-02-02  3:46                                                                     ` Timothy
2023-02-02  9:12                                                                       ` Ihor Radchenko
2023-02-02  9:12                                                                         ` Timothy
2023-02-02  9:20                                                                           ` Ihor Radchenko
2023-02-02  9:27                                                                             ` Timothy
2023-02-02  9:38                                                                         ` [POLL] Proposed syntax for timestamps with time zone info Stefan Nobis
2023-01-30 12:30                                                               ` [FEATURE REQUEST] Timezone support in org-mode datestamps and org-agenda Ihor Radchenko
2023-01-30 15:30                                                                 ` Greg Minshall
2023-01-30 15:38                                                                   ` Ihor Radchenko
2023-01-30 15:48                                                                     ` Greg Minshall
2023-01-20  4:03                                                   ` Max Nikulin
2023-01-20  5:39                                                     ` Tim Cross
2023-01-20  7:28                                                       ` Max Nikulin
2023-01-20  8:11                                                         ` Tim Cross
2023-01-20 15:29                                                           ` Max Nikulin
2023-01-20 22:56                                                             ` Tim Cross
2023-01-20  9:35                                                       ` Fraga, Eric
2023-01-20 10:48                                                       ` Ihor Radchenko
2023-01-20  6:46                                                     ` Thomas S. Dye
2023-01-20  7:34                                                       ` Max Nikulin
2023-01-20  8:17                                                       ` Tim Cross
2023-01-20 12:17                                                         ` Max Nikulin
2023-01-20 16:09                                                           ` Thomas S. Dye
2023-01-20 16:56                                                             ` Max Nikulin
2023-01-20 20:37                                                               ` Thomas S. Dye
2023-01-21  0:14                                                                 ` Tim Cross
2023-01-21  0:37                                                                   ` Thomas S. Dye
2023-01-21  5:53                                                                     ` Max Nikulin
2023-01-21 15:55                                                                       ` Thomas S. Dye
2023-01-22 12:14                                                                         ` Max Nikulin
2023-01-22 13:35                                                                           ` Thomas S. Dye
2023-01-22 14:09                                                                           ` Max Nikulin
2023-01-20 23:38                                                           ` Tim Cross
2023-01-21  6:21                                                             ` Max Nikulin
2023-01-21 21:29                                                               ` Tim Cross
2023-01-22  5:50                                                                 ` UTC or not UTC for timestamps in the past ([FEATURE REQUEST] Timezone support in org-mode) Max Nikulin
2023-01-22  6:17                                                                   ` Thomas S. Dye
2023-01-22  8:35                                                                     ` Max Nikulin
2023-01-22 16:54                                                                       ` Thomas S. Dye
2023-01-23  6:28                                                                         ` Jean Louis
2023-01-23 16:04                                                                           ` Thomas S. Dye
2023-01-24  2:34                                                                             ` Max Nikulin
2023-01-24  2:44                                                                               ` Thomas S. Dye
2023-01-24  4:48                                                                                 ` Max Nikulin
2023-01-24 19:18                                                                                   ` Jean Louis
2023-01-24  9:34                                                                             ` Ihor Radchenko
2023-01-24 16:41                                                                               ` Thomas S. Dye
2023-01-26 15:37                                                                             ` Max Nikulin
2023-01-26 16:31                                                                               ` Thomas S. Dye
2023-01-27 21:21                                                                                 ` Tim Cross
2023-01-22  7:48                                                                   ` Tim Cross
2023-01-24 17:09                                                                     ` Max Nikulin
2023-01-24 19:20                                                                       ` Jean Louis
2023-01-24 20:50                                                                       ` Tim Cross
2023-01-19 10:35                                           ` [FEATURE REQUEST] Timezone support in org-mode datestamps and org-agenda Ihor Radchenko
2023-01-19 17:57                                           ` Alexander Adolf
2023-01-21 13:51                                             ` Jean Louis
2023-01-18 17:09                                   ` Max Nikulin
2023-01-17  8:45                           ` Ihor Radchenko
2023-01-19 16:56                             ` Robert Horn
2023-01-19 17:44                           ` Alexander Adolf
2023-01-19 17:48                           ` Alexander Adolf
2023-01-17 15:37                     ` Jean Louis
2023-01-18  9:29                       ` Ihor Radchenko
2023-01-18 16:11                         ` Jean Louis
2023-01-18 21:31                         ` Tim Cross
2023-01-19 10:40                           ` Ihor Radchenko
2023-01-17 17:28                     ` Max Nikulin
2023-01-17 19:49                       ` Ihor Radchenko
2023-01-18 16:21                         ` Jean Louis
2023-01-18 16:20                       ` Jean Louis
2023-01-20 16:27                         ` Max Nikulin
2023-01-19 17:33                   ` Alexander Adolf
2023-01-16 20:25               ` Tim Cross
2023-01-17  9:07                 ` Ihor Radchenko
2023-01-17 15:24             ` Jean Louis
2023-01-18  9:34               ` Ihor Radchenko
2023-01-18 16:07                 ` Jean Louis
2023-01-19 10:43                   ` Ihor Radchenko
2023-01-19 14:37                     ` Jean Louis
2023-01-15 20:43         ` Jean Louis
2023-01-16 11:25           ` Ihor Radchenko
2023-01-17 15:19             ` Jean Louis
2023-01-18  9:38               ` Ihor Radchenko
2023-01-16  5:01     ` Tom Gillespie
2023-01-16 12:31       ` Ihor Radchenko
2023-01-16 20:32         ` Tim Cross
2023-01-16 20:51           ` Tom Gillespie
2023-01-17  9:12             ` [FR] Allow BC years in timestamps (was: [FEATURE REQUEST] Timezone support in org-mode datestamps and org-agenda) Ihor Radchenko
2023-01-13 19:06 ` [FEATURE REQUEST] Timezone support in org-mode datestamps and org-agenda Jean Louis
2023-01-14  7:12   ` Max Nikulin
2023-01-14  9:32     ` Tim Cross
2023-01-14 11:08       ` Russell Adams
2023-01-14 11:35         ` Ihor Radchenko
2023-01-14 12:00           ` Russell Adams
2023-01-14 12:16             ` [FR] Allow end date and max repeat count for timestamps with repeaters (was: [FEATURE REQUEST] Timezone support in org-mode datestamps and org-agenda) Ihor Radchenko
2023-01-15  1:09               ` Samuel Wales
2023-01-15 13:45                 ` Ihor Radchenko
2023-01-15 23:49                   ` Samuel Wales
2023-01-15 23:53                     ` Samuel Wales
2023-01-16 13:01                     ` Ihor Radchenko
2023-01-14 12:19             ` [FEATURE REQUEST] Timezone support in org-mode datestamps and org-agenda Ihor Radchenko
2023-01-14 12:21               ` Russell Adams
2023-01-14 12:31                 ` Ihor Radchenko
2023-01-14 11:30       ` Ihor Radchenko
2023-01-14 14:09         ` Tim Cross
2023-01-14 14:38           ` Ihor Radchenko
2023-01-14 14:48             ` tomas
2023-01-14 15:05               ` Ihor Radchenko
2023-01-14 16:50                 ` tomas
2023-01-14 17:06                   ` Ihor Radchenko
2023-01-14 17:13                     ` tomas
2023-01-15 19:54                       ` Jean Louis
2023-01-14 21:52                     ` Tim Cross
2023-01-15 13:52                       ` Ihor Radchenko
2023-01-20 14:34                         ` Alexander Adolf
2023-01-15 20:03                       ` Jean Louis
2023-01-15 19:52                     ` Jean Louis
2023-01-16 13:11                       ` Ihor Radchenko
2023-01-14 20:56                   ` Tim Cross
2023-01-15 20:24                     ` Jean Louis
2023-01-15  4:37                 ` Max Nikulin
2023-01-15  5:03                 ` Max Nikulin
2023-01-15 20:28                   ` Jean Louis
2023-01-16 13:17                     ` Ihor Radchenko
2023-01-14 11:55       ` Max Nikulin
2023-01-14 13:50         ` Tim Cross
2023-01-14 16:50           ` Max Nikulin
2023-01-14 20:30             ` Tim Cross
2023-01-15  4:00               ` Max Nikulin
2023-01-15  7:53                 ` Tim Cross
2023-01-15 19:26                   ` Jean Louis
2023-01-16 13:20                     ` Ihor Radchenko
2023-01-15 14:00                 ` Ihor Radchenko
2023-01-14 13:08     ` Jean Louis
2023-01-14 16:58       ` Max Nikulin
2023-01-14 19:43         ` Tim Cross
2023-01-15  6:37           ` tomas
2023-01-15 14:07           ` Ihor Radchenko
2023-01-15 20:43             ` Tim Cross
2023-01-16  5:20               ` Tom Gillespie
2023-01-16 13:29                 ` Ihor Radchenko
2023-01-16 17:30                   ` Tom Gillespie
2023-01-16 17:53                     ` Ihor Radchenko
2023-01-16 13:27               ` Ihor Radchenko
2023-01-15 19:14           ` Jean Louis
2023-01-16  4:20             ` Max Nikulin
2023-01-15 19:12         ` Jean Louis
2023-01-14  5:14 ` Samuel Wales
2023-01-14  5:51   ` Tom Gillespie
2023-01-14  6:40     ` tomas
2023-01-26 15:24     ` Org mode timestamps on the Moon ;] (was: [FEATURE REQUEST] Timezone support in org-mode datestamps and org-agenda) Ihor Radchenko
2023-01-26 16:08       ` Org mode timestamps on the Moon ;] Fraga, Eric
2023-01-26 16:28         ` Thomas S. Dye
2023-01-26 23:40       ` Org mode timestamps on the Moon ;] (was: [FEATURE REQUEST] Timezone support in org-mode datestamps and org-agenda) Tom Gillespie
2023-01-30 10:13         ` Org mode timestamps on the Moon ; ] " Greg Minshall
2023-01-30 13:05         ` Org mode timestamps on the Moon ;] " Ihor Radchenko
  -- strict thread matches above, loose matches on Subject: below --
2023-02-04 18:59 [POLL] Proposed syntax for timestamps with time zone info " ypuntot
2023-02-04 19:45 ` Jean Louis
2023-02-05 17:04 ` Max Nikulin
2023-02-07 21:46   ` Jean Louis
2023-02-04 21:38 Ypo
2023-02-05  3:12 ` Max Nikulin
2023-02-05  9:31 ` Jean Louis
2023-02-05 10:44 ` Ihor Radchenko
2023-02-05 12:12   ` Jean Louis
2023-02-05 13:01     ` ypuntot
2023-02-06 14:15       ` Ihor Radchenko
2023-02-07 21:38       ` Jean Louis
2023-02-06 14:10     ` Ihor Radchenko
2023-02-07 22:19       ` Jean Louis
2023-02-08 10:36         ` Ihor Radchenko
2023-02-10  3:29           ` Jean Louis
2023-02-10 10:48             ` Ihor Radchenko
2023-02-12  9:33               ` Jean Louis
2023-02-12 13:47                 ` tomas
2023-02-14  6:00                   ` Jean Louis
2023-02-14  9:41                     ` Heinz Tuechler
2023-02-14  9:45                       ` tomas
2023-02-14 11:42                         ` Max Nikulin
2023-02-14 15:59                           ` Jean Louis
2023-02-14 16:45                             ` Thomas S. Dye
2023-02-16 14:21                               ` Jean Louis
2023-02-14 16:57                             ` Max Nikulin
2023-02-14 10:45                       ` Jean Louis
2023-03-10 10:46                         ` Ihor Radchenko
2023-03-08 13:30                 ` Ihor Radchenko
2023-03-10  1:37                   ` Jean Louis
2023-02-11  4:44             ` Max Nikulin
2023-02-12 10:32               ` Jean Louis
2023-02-15 15:17                 ` Ihor Radchenko
2023-02-16 15:06                   ` Jean Louis
2023-03-10 10:51                     ` Ihor Radchenko
2023-03-15 14:42             ` Max Nikulin
2023-02-12 13:27 Ypo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAJcAo8vgddm1xgobYhX204qFuzG3xV72PnXjRrvYe-Yb+n2AQQ@mail.gmail.com \
    --to=samologist@gmail.com \
    --cc=bugs@gnu.support \
    --cc=daryl@wakatara.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=hooten@gmail.com \
    --cc=minshall@umich.edu \
    --cc=rjhorn@alum.mit.edu \
    --cc=theophilusx@gmail.com \
    --cc=tsd@tsdye.online \
    --cc=yantar92@posteo.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).