emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* org-agenda-scheduled-leaders and repeating tasks
@ 2015-10-13 22:01 cesar mena
  2015-10-16 16:25 ` Nicolas Goaziou
  0 siblings, 1 reply; 18+ messages in thread
From: cesar mena @ 2015-10-13 22:01 UTC (permalink / raw)
  To: emacs-orgmode

hello everyone,

i think what i am trying to say is best shown with an example.

so let's say that today is oct 13th.

the task
** TODO check smoke alarm
   SCHEDULED: <2015-10-04 Sun .+10d>

shows up in the agenda as:

    Sched.10x:  TODO check smoke alarm

however, had the task been scheduled a day before (or if today was oct 14th):

 ** TODO check smoke alarm
   SCHEDULED: <2015-10-03 Sat .+10d>

it would show up in the agenda as:

    Scheduled:  TODO check smoke alarm

that is to say, the marker that indicates it is overdue is gone.  for
some cases, like checking the smoke alarm, i don't want the "Sched.?x"
to reset.

    ie, Sched.11x:  TODO check smoke alarm

i tracked this down to the function org-time-string-to-absolute.  when
rendering the agenda it gets called with today as its DAYNR argument,
which causes "org-closest-date" to return "today" for the case of
repeating timestamps.

i can understand why it is done this way, and i find it useful.
however for some tasks, i'd rather the counter not reset lest i miss
something for longer than i should have (the smoke alarm case for
example).

i patched my version of org to do this (release_8.2.10); but i did it
by not calling org-closest-date in the case of repeating timestamps
with the effect they all act this way. to do this properly i'd imagine
we would need another identifier in the timestamp(?)

i am willing to do the work to contribute the proper patches and
update the doc if people are interested.

... or is there another way of doing this? :)

thank you kindly for reading!

- cesar

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

* Re: org-agenda-scheduled-leaders and repeating tasks
  2015-10-13 22:01 org-agenda-scheduled-leaders and repeating tasks cesar mena
@ 2015-10-16 16:25 ` Nicolas Goaziou
  2015-10-16 22:24   ` cesar mena
  2015-10-21 14:20   ` Matt Lundin
  0 siblings, 2 replies; 18+ messages in thread
From: Nicolas Goaziou @ 2015-10-16 16:25 UTC (permalink / raw)
  To: cesar mena; +Cc: emacs-orgmode

Hello,

cesar mena <cmena@pobox.com> writes:

> i think what i am trying to say is best shown with an example.
>
> so let's say that today is oct 13th.
>
> the task
> ** TODO check smoke alarm
>    SCHEDULED: <2015-10-04 Sun .+10d>
>
> shows up in the agenda as:
>
>     Sched.10x:  TODO check smoke alarm
>
> however, had the task been scheduled a day before (or if today was oct 14th):
>
>  ** TODO check smoke alarm
>    SCHEDULED: <2015-10-03 Sat .+10d>
>
> it would show up in the agenda as:
>
>     Scheduled:  TODO check smoke alarm
>
> that is to say, the marker that indicates it is overdue is gone.  for
> some cases, like checking the smoke alarm, i don't want the "Sched.?x"
> to reset.
>
>     ie, Sched.11x:  TODO check smoke alarm
>
> i tracked this down to the function org-time-string-to-absolute.  when
> rendering the agenda it gets called with today as its DAYNR argument,
> which causes "org-closest-date" to return "today" for the case of
> repeating timestamps.
>
> i can understand why it is done this way, and i find it useful.
> however for some tasks, i'd rather the counter not reset lest i miss
> something for longer than i should have (the smoke alarm case for
> example).

I fixed the issue with a rather opinionated change.
`org-agenda-repeating-timestamp-show-all' no longer applies on ".+" and
"++" repeaters.

Thank you.


Regards,

-- 
Nicolas Goaziou

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

* Re: org-agenda-scheduled-leaders and repeating tasks
  2015-10-16 16:25 ` Nicolas Goaziou
@ 2015-10-16 22:24   ` cesar mena
  2015-10-17  7:25     ` Nicolas Goaziou
  2015-10-21 14:20   ` Matt Lundin
  1 sibling, 1 reply; 18+ messages in thread
From: cesar mena @ 2015-10-16 22:24 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 1517 bytes --]

Hi Nicolas,

Thanks!  Your approach works for me, buy won't it trip up someone who is
used to the current behaviour?

Cheers
-cm
Hello,

cesar mena <cmena@pobox.com> writes:

> i think what i am trying to say is best shown with an example.
>
> so let's say that today is oct 13th.
>
> the task
> ** TODO check smoke alarm
>    SCHEDULED: <2015-10-04 Sun .+10d>
>
> shows up in the agenda as:
>
>     Sched.10x:  TODO check smoke alarm
>
> however, had the task been scheduled a day before (or if today was oct
14th):
>
>  ** TODO check smoke alarm
>    SCHEDULED: <2015-10-03 Sat .+10d>
>
> it would show up in the agenda as:
>
>     Scheduled:  TODO check smoke alarm
>
> that is to say, the marker that indicates it is overdue is gone.  for
> some cases, like checking the smoke alarm, i don't want the "Sched.?x"
> to reset.
>
>     ie, Sched.11x:  TODO check smoke alarm
>
> i tracked this down to the function org-time-string-to-absolute.  when
> rendering the agenda it gets called with today as its DAYNR argument,
> which causes "org-closest-date" to return "today" for the case of
> repeating timestamps.
>
> i can understand why it is done this way, and i find it useful.
> however for some tasks, i'd rather the counter not reset lest i miss
> something for longer than i should have (the smoke alarm case for
> example).

I fixed the issue with a rather opinionated change.
`org-agenda-repeating-timestamp-show-all' no longer applies on ".+" and
"++" repeaters.

Thank you.


Regards,

--
Nicolas Goaziou

[-- Attachment #2: Type: text/html, Size: 2216 bytes --]

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

* Re: org-agenda-scheduled-leaders and repeating tasks
  2015-10-16 22:24   ` cesar mena
@ 2015-10-17  7:25     ` Nicolas Goaziou
  0 siblings, 0 replies; 18+ messages in thread
From: Nicolas Goaziou @ 2015-10-17  7:25 UTC (permalink / raw)
  To: cesar mena; +Cc: emacs-orgmode

Hello,

cesar mena <cmena@pobox.com> writes:

> Thanks!  Your approach works for me, buy won't it trip up someone who is
> used to the current behaviour?

I think the previous behaviour was buggy anyway. There is no such thing
as "all occurrences" for special repeaters. There may be any number of
occurrences, including zero, without a predictable pattern.


Regards,

-- 
Nicolas Goaziou

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

* Re: org-agenda-scheduled-leaders and repeating tasks
  2015-10-16 16:25 ` Nicolas Goaziou
  2015-10-16 22:24   ` cesar mena
@ 2015-10-21 14:20   ` Matt Lundin
  2015-10-25 16:19     ` Nicolas Goaziou
  1 sibling, 1 reply; 18+ messages in thread
From: Matt Lundin @ 2015-10-21 14:20 UTC (permalink / raw)
  To: cesar mena; +Cc: emacs-orgmode

Nicolas Goaziou <mail@nicolasgoaziou.fr> writes:

> cesar mena <cmena@pobox.com> writes:
>
>> i tracked this down to the function org-time-string-to-absolute.  when
>> rendering the agenda it gets called with today as its DAYNR argument,
>> which causes "org-closest-date" to return "today" for the case of
>> repeating timestamps.
>>
>> i can understand why it is done this way, and i find it useful.
>> however for some tasks, i'd rather the counter not reset lest i miss
>> something for longer than i should have (the smoke alarm case for
>> example).
>
> I fixed the issue with a rather opinionated change.
> `org-agenda-repeating-timestamp-show-all' no longer applies on ".+" and
> "++" repeaters.
>

While I agree in principe with this change, I wonder if we could make an
exception for habits. Habits (org-habit.el) customarily use a notation
like this:

--8<---------------cut here---------------start------------->8---
* Go for a run
  :PROPERTIES:
  :STYLE:    habit
  :END:
  <2015-10-16 Fri 16:00 .+1d/2d>
--8<---------------cut here---------------end--------------->8---

This will appear in the agenda with a consistency graph indicating the
last n days of completion (depending on org-habit-preceding-days).
Before the change in commit a427098b57c747ecc76feb0593f32922a1e12f67,
these would appear in my daily agenda at their scheduled time,
regardless of whether I had missed a day or two. Now, if I miss a day,
the habit drops to the bottom of the agenda (it no longer appears at the
scheduled time). IMO, this is undesired behavior; I want to be reminded
of the habit at the same time each day regardless of whether I have done
it on previous days, especially since the consistency graph gives me all
the information I need about past completions.

Changing the timestamp to +1d/2d will is not an option, since the
timestamp only advances one day upon completion. This leads to an
incoherent consistency graph. The graph color remains red, which
indicates incompletion, and the habit stays on the daily agenda, even
though I have just completed it.

In short, org-habit seems to want a + notation for the purposes of the
agenda display and a .+ notation for the purposes of resetting the
timestamp. What is the best solution?

Thanks,
Matt

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

* Re: org-agenda-scheduled-leaders and repeating tasks
  2015-10-21 14:20   ` Matt Lundin
@ 2015-10-25 16:19     ` Nicolas Goaziou
  2015-10-25 17:24       ` Nicolas Goaziou
  0 siblings, 1 reply; 18+ messages in thread
From: Nicolas Goaziou @ 2015-10-25 16:19 UTC (permalink / raw)
  To: Matt Lundin; +Cc: emacs-orgmode, cesar mena

Matt Lundin <mdl@imapmail.org> writes:

> In short, org-habit seems to want a + notation for the purposes of the
> agenda display and a .+ notation for the purposes of resetting the
> timestamp. What is the best solution?

Still looking for it.

Meanwhile, I reverted the opinionated change in
a427098b57c747ecc76feb0593f32922a1e12f67.

Regards,

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

* Re: org-agenda-scheduled-leaders and repeating tasks
  2015-10-25 16:19     ` Nicolas Goaziou
@ 2015-10-25 17:24       ` Nicolas Goaziou
  2015-10-26 13:13         ` cesar mena
  0 siblings, 1 reply; 18+ messages in thread
From: Nicolas Goaziou @ 2015-10-25 17:24 UTC (permalink / raw)
  To: Matt Lundin; +Cc: emacs-orgmode, cesar mena

Nicolas Goaziou <mail@nicolasgoaziou.fr> writes:

> Matt Lundin <mdl@imapmail.org> writes:
>
>> In short, org-habit seems to want a + notation for the purposes of the
>> agenda display and a .+ notation for the purposes of resetting the
>> timestamp. What is the best solution?
>
> Still looking for it.
>
> Meanwhile, I reverted the opinionated change in
> a427098b57c747ecc76feb0593f32922a1e12f67.

Another take on this in 3072cb28e8627066f465f1a4af85da88135d0549.

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

* Re: org-agenda-scheduled-leaders and repeating tasks
  2015-10-25 17:24       ` Nicolas Goaziou
@ 2015-10-26 13:13         ` cesar mena
  2015-10-26 19:56           ` cesar mena
  0 siblings, 1 reply; 18+ messages in thread
From: cesar mena @ 2015-10-26 13:13 UTC (permalink / raw)
  To: Matt Lundin, cesar mena, emacs-orgmode

hello guys,

so far so good for me.

thanks nicolas and matt.

-cm

On Sun, Oct 25, 2015 at 1:24 PM, Nicolas Goaziou <mail@nicolasgoaziou.fr> wrote:
> Nicolas Goaziou <mail@nicolasgoaziou.fr> writes:
>
>> Matt Lundin <mdl@imapmail.org> writes:
>>
>>> In short, org-habit seems to want a + notation for the purposes of the
>>> agenda display and a .+ notation for the purposes of resetting the
>>> timestamp. What is the best solution?
>>
>> Still looking for it.
>>
>> Meanwhile, I reverted the opinionated change in
>> a427098b57c747ecc76feb0593f32922a1e12f67.
>
> Another take on this in 3072cb28e8627066f465f1a4af85da88135d0549.

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

* Re: org-agenda-scheduled-leaders and repeating tasks
  2015-10-26 13:13         ` cesar mena
@ 2015-10-26 19:56           ` cesar mena
  2015-10-26 20:23             ` Samuel Wales
  2015-10-26 20:31             ` Nicolas Goaziou
  0 siblings, 2 replies; 18+ messages in thread
From: cesar mena @ 2015-10-26 19:56 UTC (permalink / raw)
  To: emacs-orgmode

hi again nicolas,

sorry. i made a mistake updating my tree.

i'm quite certain i'm on master now "org-version: 8.3.2
(release_8.3.2-219-g770671)" and the repeater resets itself again.

so presently i have a task that looks like this:

** TODO some task
   SCHEDULED: <2015-08-24 Mon ++1w>

and in the agenda it shows up as:

  Scheduled:  TODO some task

best,
-cm





On Mon, Oct 26, 2015 at 9:13 AM, cesar mena <cmena@pobox.com> wrote:
> hello guys,
>
> so far so good for me.
>
> thanks nicolas and matt.
>
> -cm
>
> On Sun, Oct 25, 2015 at 1:24 PM, Nicolas Goaziou <mail@nicolasgoaziou.fr> wrote:
>> Nicolas Goaziou <mail@nicolasgoaziou.fr> writes:
>>
>>> Matt Lundin <mdl@imapmail.org> writes:
>>>
>>>> In short, org-habit seems to want a + notation for the purposes of the
>>>> agenda display and a .+ notation for the purposes of resetting the
>>>> timestamp. What is the best solution?
>>>
>>> Still looking for it.
>>>
>>> Meanwhile, I reverted the opinionated change in
>>> a427098b57c747ecc76feb0593f32922a1e12f67.
>>
>> Another take on this in 3072cb28e8627066f465f1a4af85da88135d0549.

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

* Re: org-agenda-scheduled-leaders and repeating tasks
  2015-10-26 19:56           ` cesar mena
@ 2015-10-26 20:23             ` Samuel Wales
  2015-10-26 20:31               ` cesar mena
  2015-10-26 20:31             ` Nicolas Goaziou
  1 sibling, 1 reply; 18+ messages in thread
From: Samuel Wales @ 2015-10-26 20:23 UTC (permalink / raw)
  To: cesar mena; +Cc: emacs-orgmode

fwiw, i am one who is so [disorganized?] that the old behavior is
preferred.  if something is a 6m repeater, and i ignore it for 6m,
it's actually useful to be reminded after another repeat.  perhaps
more normal people would understand 1w.  no matter how much i "should"
mootify it or take it off the list or do it, this "bug" has proved
useful in practice.

i don't claim to represent hordes of disorganized people, but there you have it.

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

* Re: org-agenda-scheduled-leaders and repeating tasks
  2015-10-26 19:56           ` cesar mena
  2015-10-26 20:23             ` Samuel Wales
@ 2015-10-26 20:31             ` Nicolas Goaziou
  2015-10-26 20:43               ` cesar mena
  1 sibling, 1 reply; 18+ messages in thread
From: Nicolas Goaziou @ 2015-10-26 20:31 UTC (permalink / raw)
  To: cesar mena; +Cc: emacs-orgmode

cesar mena <cmena@pobox.com> writes:

> sorry. i made a mistake updating my tree.
>
> i'm quite certain i'm on master now "org-version: 8.3.2
> (release_8.3.2-219-g770671)" and the repeater resets itself again.
>
> so presently i have a task that looks like this:
>
> ** TODO some task
>    SCHEDULED: <2015-08-24 Mon ++1w>
>
> and in the agenda it shows up as:
>
>   Scheduled:  TODO some task

Hopefully fixed, this time. Thank you.

Regards,

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

* Re: org-agenda-scheduled-leaders and repeating tasks
  2015-10-26 20:23             ` Samuel Wales
@ 2015-10-26 20:31               ` cesar mena
  2015-10-26 20:49                 ` Nicolas Goaziou
  0 siblings, 1 reply; 18+ messages in thread
From: cesar mena @ 2015-10-26 20:31 UTC (permalink / raw)
  To: Samuel Wales; +Cc: emacs-orgmode

hi samuel,

yes i suspect this is why it hasn't been reported in years.

what say you nicolas?

-cm

On Mon, Oct 26, 2015 at 4:23 PM, Samuel Wales <samologist@gmail.com> wrote:
> fwiw, i am one who is so [disorganized?] that the old behavior is
> preferred.  if something is a 6m repeater, and i ignore it for 6m,
> it's actually useful to be reminded after another repeat.  perhaps
> more normal people would understand 1w.  no matter how much i "should"
> mootify it or take it off the list or do it, this "bug" has proved
> useful in practice.
>
> i don't claim to represent hordes of disorganized people, but there you have it.

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

* Re: org-agenda-scheduled-leaders and repeating tasks
  2015-10-26 20:31             ` Nicolas Goaziou
@ 2015-10-26 20:43               ` cesar mena
  2015-10-27  4:25                 ` Samuel Wales
                                   ` (2 more replies)
  0 siblings, 3 replies; 18+ messages in thread
From: cesar mena @ 2015-10-26 20:43 UTC (permalink / raw)
  To: emacs-orgmode

me again :)

the calculation is correct.

however the face is now `org-scheduled-today, as opposed to
`org-scheduled-previously, and the agenda sorting is wrong. instead of
bubbling to the top (since it is so late) it is staying within the
"scheduled today" range.


best,
-cm


On Mon, Oct 26, 2015 at 4:31 PM, Nicolas Goaziou <mail@nicolasgoaziou.fr> wrote:
> cesar mena <cmena@pobox.com> writes:
>
>> sorry. i made a mistake updating my tree.
>>
>> i'm quite certain i'm on master now "org-version: 8.3.2
>> (release_8.3.2-219-g770671)" and the repeater resets itself again.
>>
>> so presently i have a task that looks like this:
>>
>> ** TODO some task
>>    SCHEDULED: <2015-08-24 Mon ++1w>
>>
>> and in the agenda it shows up as:
>>
>>   Scheduled:  TODO some task
>
> Hopefully fixed, this time. Thank you.
>
> Regards,

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

* Re: org-agenda-scheduled-leaders and repeating tasks
  2015-10-26 20:31               ` cesar mena
@ 2015-10-26 20:49                 ` Nicolas Goaziou
  0 siblings, 0 replies; 18+ messages in thread
From: Nicolas Goaziou @ 2015-10-26 20:49 UTC (permalink / raw)
  To: cesar mena; +Cc: emacs-orgmode

cesar mena <cmena@pobox.com> writes:
>
> yes i suspect this is why it hasn't been reported in years.
>
> what say you nicolas?

Please do not top-post :)

In any case, I'm not sure Samuel complains about the current behaviour.
Actually, I don't understand what is meant by "the old behaviour" in
this context. The behaviour changed a couple of times already in this
thread.

> On Mon, Oct 26, 2015 at 4:23 PM, Samuel Wales <samologist@gmail.com> wrote:
>> fwiw, i am one who is so [disorganized?] that the old behavior is
>> preferred.  if something is a 6m repeater, and i ignore it for 6m,
>> it's actually useful to be reminded after another repeat.  perhaps
>> more normal people would understand 1w.  no matter how much i "should"
>> mootify it or take it off the list or do it, this "bug" has proved
>> useful in practice.
>>
>> i don't claim to represent hordes of disorganized people, but there you have it.

Regards,

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

* Re: org-agenda-scheduled-leaders and repeating tasks
  2015-10-26 20:43               ` cesar mena
@ 2015-10-27  4:25                 ` Samuel Wales
  2015-10-28  1:32                 ` Matt Lundin
  2015-10-28 13:52                 ` Nicolas Goaziou
  2 siblings, 0 replies; 18+ messages in thread
From: Samuel Wales @ 2015-10-27  4:25 UTC (permalink / raw)
  To: cesar mena; +Cc: emacs-orgmode

what i am saying is that the behavior that has existed for many years
for .+ timestamps, is actually useful to me.

same for .+ face, sorting, and so on.

just one data point.

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

* Re: org-agenda-scheduled-leaders and repeating tasks
  2015-10-26 20:43               ` cesar mena
  2015-10-27  4:25                 ` Samuel Wales
@ 2015-10-28  1:32                 ` Matt Lundin
  2015-10-28 13:52                 ` Nicolas Goaziou
  2 siblings, 0 replies; 18+ messages in thread
From: Matt Lundin @ 2015-10-28  1:32 UTC (permalink / raw)
  To: cesar mena; +Cc: emacs-orgmode

cesar mena <cmena@pobox.com> writes:

> me again :)
>
> the calculation is correct.
>
> however the face is now `org-scheduled-today, as opposed to
> `org-scheduled-previously, and the agenda sorting is wrong. instead of
> bubbling to the top (since it is so late) it is staying within the
> "scheduled today" range.

I can confirm that overdue .+ tasks now have the org-scheduled-today
face. It seems like they should have org-scheduled-previously (unless
they are habits, of course).

Matt

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

* Re: org-agenda-scheduled-leaders and repeating tasks
  2015-10-26 20:43               ` cesar mena
  2015-10-27  4:25                 ` Samuel Wales
  2015-10-28  1:32                 ` Matt Lundin
@ 2015-10-28 13:52                 ` Nicolas Goaziou
  2015-10-29 16:46                   ` cesar mena
  2 siblings, 1 reply; 18+ messages in thread
From: Nicolas Goaziou @ 2015-10-28 13:52 UTC (permalink / raw)
  To: cesar mena; +Cc: emacs-orgmode

cesar mena <cmena@pobox.com> writes:

> however the face is now `org-scheduled-today, as opposed to
> `org-scheduled-previously, and the agenda sorting is wrong. instead of
> bubbling to the top (since it is so late) it is staying within the
> "scheduled today" range.

I committed another attempt in master. Thank you.

Regards,

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

* Re: org-agenda-scheduled-leaders and repeating tasks
  2015-10-28 13:52                 ` Nicolas Goaziou
@ 2015-10-29 16:46                   ` cesar mena
  0 siblings, 0 replies; 18+ messages in thread
From: cesar mena @ 2015-10-29 16:46 UTC (permalink / raw)
  To: cesar mena, emacs-orgmode

On Wed, Oct 28, 2015 at 9:52 AM, Nicolas Goaziou <mail@nicolasgoaziou.fr> wrote:
> cesar mena <cmena@pobox.com> writes:
>
>> however the face is now `org-scheduled-today, as opposed to
>> `org-scheduled-previously, and the agenda sorting is wrong. instead of
>> bubbling to the top (since it is so late) it is staying within the
>> "scheduled today" range.
>
> I committed another attempt in master. Thank you.
>
> Regards,

hi nicolas, list,

everything works. thank you so much.

nice side-effect: the behaviour now allows one to use non "."
repeaters as a poor man's habit mode since the Sched.x header line
will inform one how many cycles are behind.  it's also much clearer.
before on marking as done, the item will just be automatically
rescheduled again with no feedback as to why.

thanks again.

-cm

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

end of thread, other threads:[~2015-10-29 16:46 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-13 22:01 org-agenda-scheduled-leaders and repeating tasks cesar mena
2015-10-16 16:25 ` Nicolas Goaziou
2015-10-16 22:24   ` cesar mena
2015-10-17  7:25     ` Nicolas Goaziou
2015-10-21 14:20   ` Matt Lundin
2015-10-25 16:19     ` Nicolas Goaziou
2015-10-25 17:24       ` Nicolas Goaziou
2015-10-26 13:13         ` cesar mena
2015-10-26 19:56           ` cesar mena
2015-10-26 20:23             ` Samuel Wales
2015-10-26 20:31               ` cesar mena
2015-10-26 20:49                 ` Nicolas Goaziou
2015-10-26 20:31             ` Nicolas Goaziou
2015-10-26 20:43               ` cesar mena
2015-10-27  4:25                 ` Samuel Wales
2015-10-28  1:32                 ` Matt Lundin
2015-10-28 13:52                 ` Nicolas Goaziou
2015-10-29 16:46                   ` cesar mena

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