[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] [bug] ox-taskjuggler
From: |
Christian Egli |
Subject: |
Re: [O] [bug] ox-taskjuggler |
Date: |
Fri, 23 Jan 2015 09:59:55 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) |
Søren Mikkelsen <address@hidden> writes:
> It works, but only for tasks that aren't having a start attribute. It
> is possible to give a warning if the start attribute already exists
> and make the default one, the one specified in the attributes (drawer)?
What exactly doesn't work? Are there two start entries in the task? One
because of the SCHEDULED property and one because of the the start
property?
Then you might have to remove the start property from
org-taskjuggler-valid-task-attributes before adding the other valid
attributes i.e.
;; Add other valid attributes.
(org-taskjuggler--indent-string
(org-taskjuggler--build-attributes
task org-taskjuggler-valid-task-attributes))
Might have to become (untested)
;; Add other valid attributes.
(org-taskjuggler--indent-string
(org-taskjuggler--build-attributes
task
(remq 'start org-taskjuggler-valid-task-attributes)))
HTH
Christian
--
Christian Egli
Swiss Library for the Blind, Visually Impaired and Print Disabled
Grubenstrasse 12, CH-8045 Zürich, Switzerland
- [O] [bug] ox-taskjuggler, Søren Mikkelsen, 2015/01/20
- Re: [O] [bug] ox-taskjuggler, Nicolas Goaziou, 2015/01/20
- Re: [O] [bug] ox-taskjuggler, Søren Mikkelsen, 2015/01/21
- Re: [O] [bug] ox-taskjuggler, John Hendy, 2015/01/21
- Re: [O] [bug] ox-taskjuggler, Søren Mikkelsen, 2015/01/22
- Re: [O] [bug] ox-taskjuggler, Christian Egli, 2015/01/22
- Re: [O] [bug] ox-taskjuggler, Søren Mikkelsen, 2015/01/22
- Re: [O] [bug] ox-taskjuggler,
Christian Egli <=
- Re: [O] [bug] ox-taskjuggler, Søren Mikkelsen, 2015/01/23
- Re: [O] [bug] ox-taskjuggler, Christian Egli, 2015/01/26