Re: [O] bug#9695: allowed date range

2011-11-09 Thread Carsten Dominik
I have now merged this patch, a big thanks to the testers Michael, Eric, and Tassilo. - Carsten On 16.10.2011, at 15:45, Michael Brand wrote: Hi Carsten On Thu, Oct 13, 2011 at 10:27, Carsten Dominik carsten.domi...@gmail.com wrote: Furthermore, pressing C-c C-c on a time stamp will fill

Re: [O] bug#9695: allowed date range

2011-11-09 Thread Michael Brand
Hi Carsten On Wed, Nov 9, 2011 at 19:18, Carsten Dominik carsten.domi...@gmail.com wrote: I have now merged this patch, Thank you. I have still concerns about this, did I somehow miss the answer?: On Thu, Nov 3, 2011 at 18:22, Michael Brand michael.ch.br...@gmail.com wrote: I wonder how C-c

Re: [O] bug#9695: allowed date range

2011-11-03 Thread Michael Brand
Hi Carsten On Thu, Oct 13, 2011 at 10:27, Carsten Dominik carsten.domi...@gmail.com wrote: I am attaching a patch which will make time stamps without a day name like 2011-10-12 work correctly.  Furthermore, pressing C-c C-c on a time stamp will fill in or fix the day name. However, I am not

Re: [O] bug#9695: allowed date range

2011-10-16 Thread Michael Brand
Hi Carsten On Thu, Oct 13, 2011 at 10:27, Carsten Dominik carsten.domi...@gmail.com wrote: Furthermore, pressing C-c C-c on a time stamp will fill in or fix the day name. Thank you, this is something I always wanted to have for convenience instead of using S-up + S-down. However, I am not

Re: [O] bug#9695: allowed date range

2011-10-13 Thread Tassilo Horn
Ivan Kanis ivan.ka...@googlemail.com writes: Hi! After investigating further 2011-10-17 --2011-10-30 works but not 2011-10-17--2011-10-30. The regexp for a timestamp is defined in org-ts-regexp : \\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}[^\r\n]*?\\) Shouldn't the trailing space be

Re: [O] bug#9695: allowed date range

2011-10-13 Thread Eric S Fraga
Tassilo Horn tass...@member.fsf.org writes: Ivan Kanis ivan.ka...@googlemail.com writes: Hi! After investigating further 2011-10-17 --2011-10-30 works but not 2011-10-17--2011-10-30. The regexp for a timestamp is defined in org-ts-regexp :

Re: [O] bug#9695: allowed date range

2011-10-13 Thread Tassilo Horn
Eric S Fraga e.fr...@ucl.ac.uk writes: Hi Eric, Oh, now I see what's wrong. All time stamps consist of the date and then the day's name abbreviation, which is missing with your example. Correct would be 2011-10-17 Mon--2011-10-30 Sun Although the day is optional according to the

Re: [O] bug#9695: allowed date range

2011-10-13 Thread Carsten Dominik
On 13.10.2011, at 09:57, Tassilo Horn wrote: Eric S Fraga e.fr...@ucl.ac.uk writes: Hi Eric, Oh, now I see what's wrong. All time stamps consist of the date and then the day's name abbreviation, which is missing with your example. Correct would be 2011-10-17 Mon--2011-10-30 Sun

Re: [O] bug#9695: allowed date range

2011-10-13 Thread Carsten Dominik
On 13.10.2011, at 09:48, Eric S Fraga wrote: Tassilo Horn tass...@member.fsf.org writes: Ivan Kanis ivan.ka...@googlemail.com writes: Hi! After investigating further 2011-10-17 --2011-10-30 works but not 2011-10-17--2011-10-30. The regexp for a timestamp is defined in org-ts-regexp

Re: [O] bug#9695: allowed date range

2011-10-13 Thread Eric S Fraga
Carsten Dominik carsten.domi...@gmail.com writes: On 13.10.2011, at 09:48, Eric S Fraga wrote: Although the day is optional according to the regexp. I would definitely like to have the regexp with the space optional as well as there are cases where I want to type the date in directly (not

Re: [O] bug#9695: allowed date range

2011-10-13 Thread Eric S Fraga
Carsten Dominik carsten.domi...@gmail.com writes: On 13.10.2011, at 09:57, Tassilo Horn wrote: Eric S Fraga e.fr...@ucl.ac.uk writes: Hi Eric, Oh, now I see what's wrong. All time stamps consist of the date and then the day's name abbreviation, which is missing with your example.

Re: [O] bug#9695: allowed date range

2011-10-13 Thread Tassilo Horn
Eric S Fraga e.fr...@ucl.ac.uk writes: I am attaching a patch which will make time stamps without a day name like 2011-10-12 work correctly. Furthermore, pressing C-c C-c on a time stamp will fill in or fix the day name. However, I am not sure if this patch is complete, or if it has side