The Following User Says Thank You to pfoh For This Useful Post: | ||
![]() |
2010-01-26
, 19:01
|
Posts: 356 |
Thanked: 172 times |
Joined on Jan 2010
@ Canada
|
#2
|
Can it be that it is impossible to schedule a recurring event every other week? I have looked everywhere and this doesn't seem to be possible, which is a severe disappointment
Am I missing something? Does someone have a workaround short of entering each appointment individually??
Thanks,
pfoh
![]() |
2010-01-27
, 01:25
|
Posts: 8 |
Thanked: 1 time |
Joined on Jan 2010
|
#3
|
![]() |
2010-01-27
, 07:23
|
Posts: 31 |
Thanked: 32 times |
Joined on Jan 2008
@ Helsinki
|
#4
|
sqlite3 /home/user/.calendar/calendardb
select * from RECURSIVE where id=123;
update RECURSIVE set rrule='FREQ=WEEKLY;INTERVAL=2;UNTIL=20101231T160000!' where id=123;
![]() |
2010-01-27
, 08:34
|
|
Posts: 2,173 |
Thanked: 2,678 times |
Joined on Oct 2009
@ Cornwall, UK
|
#5
|
![]() |
2010-01-27
, 09:24
|
Posts: 31 |
Thanked: 32 times |
Joined on Jan 2008
@ Helsinki
|
#6
|
Hi Kortsi
Would you care to take a look at this brainstorm?
http://maemo.org/community/brainstor...endar_in_n900/
If you could do something by way of packaging the ability to change the repeat options, it would solve a big chunk of that (I think the improving repeat function got about 50 votes last time I looked)
That would be seriously brilliant.
If not, can you 'splain in in the sorts of words that a bear of very little brain could understand: a work-around is a good place to start.
Thanks in advance.
The Following User Says Thank You to kortsi For This Useful Post: | ||
![]() |
2010-01-27
, 09:48
|
Posts: 561 |
Thanked: 75 times |
Joined on Jan 2010
@ Spain
|
#7
|
It seems the calendar is able to display "complex" recurring schedules, but there are no editing tools for that. I would like to see them.
I was able to create a bi-weekly recurrence by using the sqlite console:
Warning: Remember you can screw up your calendar database using the sqlite console, so you probably want to take a backup before editing it. And close the calendar app before editing to avoid you both accessing the db at the same time.Code:sqlite3 /home/user/.calendar/calendardb
The table called "Components" contains the calendar events. Notice the first column which contains the id of the event you want to have a complex recurrence.
There's also a table called "RECURSIVE" which contains the recurrence rules for the events. They seem to be standard iCalendar syntax in column "rrule".
Get your event's recurrence rule:
I just changed my event to have a bi-weekly interval:Code:select * from RECURSIVE where id=123;
![]() |
2010-01-27
, 11:12
|
Posts: 8 |
Thanked: 1 time |
Joined on Jan 2010
|
#8
|
![]() |
2010-01-27
, 14:33
|
Posts: 8 |
Thanked: 1 time |
Joined on Jan 2010
|
#9
|
![]() |
2010-01-28
, 14:59
|
Posts: 561 |
Thanked: 75 times |
Joined on Jan 2010
@ Spain
|
#10
|
Am I missing something? Does someone have a workaround short of entering each appointment individually??
Thanks,
pfoh