emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* "S:" prefix when syncing via CalDAV
@ 2017-07-19 19:18 John Morrissey
  2017-07-23 11:38 ` Nicolas Goaziou
  0 siblings, 1 reply; 4+ messages in thread
From: John Morrissey @ 2017-07-19 19:18 UTC (permalink / raw)
  To: emacs-orgmode

I'm syncing to Nextcloud via CalDAV with org-mode 9.0.3 and the latest
org-caldav.

Events are sometimes synced (and modified in the .org file) with the prefix
"S:". The symptoms are exactly like:

  https://github.com/dengste/org-caldav/issues/33#issuecomment-74551937

  "The SCHEDULED time gets converted to an active timestamp and a freshly
  created property drawer with a new id is inserted above that newly created
  active timestamp."

It looks like this prefix is being prepended by org-icalendar-entry in
ox-icalendar, but I don't know enough about Lisp or org internals to debug
much further.

Here are my org-{icalendar,caldav} settings:

  (setq org-icalendar-alarm-time 30)
  (setq org-icalendar-use-deadline '(event-if-todo event-if-not-todo todo-due)
        org-icalendar-use-scheduled '(event-if-todo event-if-not-todo todo-start))
  (setq org-export-exclude-category (list "dummy"))

  (setq org-caldav-inbox (expand-file-name "~/org/caldav-inbox.org"))
  (setq org-caldav-files org-agenda-files)
  (setq org-caldav-show-sync-results nil)
  (setq org-caldav-resume-aborted 'never)

Is there some configuration I need to change to stop this behavior?

-john

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

* Re: "S:" prefix when syncing via CalDAV
  2017-07-19 19:18 "S:" prefix when syncing via CalDAV John Morrissey
@ 2017-07-23 11:38 ` Nicolas Goaziou
  2017-07-23 21:02   ` John Morrissey
  0 siblings, 1 reply; 4+ messages in thread
From: Nicolas Goaziou @ 2017-07-23 11:38 UTC (permalink / raw)
  To: John Morrissey; +Cc: emacs-orgmode

Hello,

John Morrissey <jwm@horde.net> writes:

> I'm syncing to Nextcloud via CalDAV with org-mode 9.0.3 and the latest
> org-caldav.
>
> Events are sometimes synced (and modified in the .org file) with the prefix
> "S:". The symptoms are exactly like:
>
>   https://github.com/dengste/org-caldav/issues/33#issuecomment-74551937
>
>   "The SCHEDULED time gets converted to an active timestamp and a freshly
>   created property drawer with a new id is inserted above that newly created
>   active timestamp."
>
> It looks like this prefix is being prepended by org-icalendar-entry in
> ox-icalendar, but I don't know enough about Lisp or org internals to debug
> much further.
>
> Here are my org-{icalendar,caldav} settings:
>
>   (setq org-icalendar-alarm-time 30)
>   (setq org-icalendar-use-deadline '(event-if-todo event-if-not-todo todo-due)
>         org-icalendar-use-scheduled '(event-if-todo event-if-not-todo todo-start))
>   (setq org-export-exclude-category (list "dummy"))
>
>   (setq org-caldav-inbox (expand-file-name "~/org/caldav-inbox.org"))
>   (setq org-caldav-files org-agenda-files)
>   (setq org-caldav-show-sync-results nil)
>   (setq org-caldav-resume-aborted 'never)
>
> Is there some configuration I need to change to stop this behavior?

Since "org-caldav.el" is not distributed with Org mode, I need to
understand what part of the problem is specifically related to
"ox-icalendar.el".

Could you show an example demonstrating why the generated ".ics" file is
not correct, and what should be done instead?

Regards,

-- 
Nicolas Goaziou

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

* Re: "S:" prefix when syncing via CalDAV
  2017-07-23 11:38 ` Nicolas Goaziou
@ 2017-07-23 21:02   ` John Morrissey
  2017-07-23 21:11     ` Nicolas Goaziou
  0 siblings, 1 reply; 4+ messages in thread
From: John Morrissey @ 2017-07-23 21:02 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: emacs-orgmode

On Sun, Jul 23, 2017 at 01:38:23PM +0200, Nicolas Goaziou wrote:
> John Morrissey <jwm@horde.net> writes:
> 
> > I'm syncing to Nextcloud via CalDAV with org-mode 9.0.3 and the latest
> > org-caldav.
> >
> > Events are sometimes synced (and modified in the .org file) with the
> > prefix "S:". The symptoms are exactly like:
> >
> >   https://github.com/dengste/org-caldav/issues/33#issuecomment-74551937
> >
> >   "The SCHEDULED time gets converted to an active timestamp and a
> >   freshly created property drawer with a new id is inserted above that
> >   newly created active timestamp."
> >
> > It looks like this prefix is being prepended by org-icalendar-entry in
> > ox-icalendar, but I don't know enough about Lisp or org internals to
> > debug much further.
> >
> > Here are my org-{icalendar,caldav} settings:
> >
> >   (setq org-icalendar-alarm-time 30)
> >   (setq org-icalendar-use-deadline '(event-if-todo event-if-not-todo todo-due)
> >         org-icalendar-use-scheduled '(event-if-todo event-if-not-todo todo-start))
> >   (setq org-export-exclude-category (list "dummy"))
> >
> >   (setq org-caldav-inbox (expand-file-name "~/org/caldav-inbox.org"))
> >   (setq org-caldav-files org-agenda-files)
> >   (setq org-caldav-show-sync-results nil)
> >   (setq org-caldav-resume-aborted 'never)
> >
> > Is there some configuration I need to change to stop this behavior?
> 
> Since "org-caldav.el" is not distributed with Org mode, I need to
> understand what part of the problem is specifically related to
> "ox-icalendar.el".
> 
> Could you show an example demonstrating why the generated ".ics" file is
> not correct, and what should be done instead?

Hi Nicolas, the behavior I'm observing isn't so much that the .ics is
incorrect. Instead, it's what happens to the corresponding item in the
org file.

For example, an entry that looks like:

* TODO do a thing
  SCHEDULED: <2017-07-24 Mon>
  :PROPERTIES:
  :ID:       03fe6016-6373-450f-aa31-e8403a573c49
  :END:

turns into:

* TODO S: call european motorsports
  :PROPERTIES:
  :ID:       ca7ecc02-0c67-4c22-ad6c-9c06e6d19e9a
  :END:
  <2017-07-24 Mon>
  :PROPERTIES:
  :ID:       03fe6016-6373-450f-aa31-e8403a573c49
  :END:

"S:" is prepended, the scheduled timestamp is replaced by an active
timestamp, and an additional properties drawer is created with a different
ID. This happens with deadline items, too.

This usually happens around the time of the scheduled/deadline timestamp, so
an item can sync just fine until sometime around the scheduled date, then
this transformation happens. It doesn't seem to happen at any fixed point
relative to the scheduled/deadline timestamp. Sometimes several CalDAV syncs
will happen on the day of the timestamp before one sync finally triggers(?)
the transformation. Does that make sense?

I don't know much Lisp or org internals, so I'm not entirely sure where this
is happening. The only reference point I could find in the code is in
ox-icalendar where it inserts the "S:" prefix, which happens concurrently
with the other org item transformations I mentioned above.

-john

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

* Re: "S:" prefix when syncing via CalDAV
  2017-07-23 21:02   ` John Morrissey
@ 2017-07-23 21:11     ` Nicolas Goaziou
  0 siblings, 0 replies; 4+ messages in thread
From: Nicolas Goaziou @ 2017-07-23 21:11 UTC (permalink / raw)
  To: John Morrissey; +Cc: emacs-orgmode

John Morrissey <jwm@horde.net> writes:

> Hi Nicolas, the behavior I'm observing isn't so much that the .ics is
> incorrect. Instead, it's what happens to the corresponding item in the
> org file.

"ox-icalendar.el" doesn't modify the Org file, except when an ID
property is created.

> For example, an entry that looks like:
>
> * TODO do a thing
>   SCHEDULED: <2017-07-24 Mon>
>   :PROPERTIES:
>   :ID:       03fe6016-6373-450f-aa31-e8403a573c49
>   :END:
>
> turns into:
>
> * TODO S: call european motorsports
>   :PROPERTIES:
>   :ID:       ca7ecc02-0c67-4c22-ad6c-9c06e6d19e9a
>   :END:
>   <2017-07-24 Mon>
>   :PROPERTIES:
>   :ID:       03fe6016-6373-450f-aa31-e8403a573c49
>   :END:
>
> "S:" is prepended, the scheduled timestamp is replaced by an active
> timestamp, and an additional properties drawer is created with a different
> ID. This happens with deadline items, too.

I guess CalDAV removes the "SCHEDULED: " string. As a consequence, the
property drawer is no longer valid and a new, valid, property drawer is
created above upon generating a new ID.

> This usually happens around the time of the scheduled/deadline timestamp, so
> an item can sync just fine until sometime around the scheduled date, then
> this transformation happens. It doesn't seem to happen at any fixed point
> relative to the scheduled/deadline timestamp. Sometimes several CalDAV syncs
> will happen on the day of the timestamp before one sync finally triggers(?)
> the transformation. Does that make sense?
>
> I don't know much Lisp or org internals, so I'm not entirely sure where this
> is happening. The only reference point I could find in the code is in
> ox-icalendar where it inserts the "S:" prefix, which happens concurrently
> with the other org item transformations I mentioned above.

The "S:" prefix in "ox-icalendar.el" is inserted in the ".ics" file, not
the Org document.

I don't know "org-caldav.el" but it looks like it should be more careful
when removing the "SCHEDULED" keyword.

Regards,

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

end of thread, other threads:[~2017-07-23 21:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-19 19:18 "S:" prefix when syncing via CalDAV John Morrissey
2017-07-23 11:38 ` Nicolas Goaziou
2017-07-23 21:02   ` John Morrissey
2017-07-23 21:11     ` Nicolas Goaziou

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