![]() |
2010-12-01
, 22:16
|
Posts: 5 |
Thanked: 2 times |
Joined on Dec 2010
|
#482
|
def iso8601ToTimestamp(date): """ @type date: str """ # FIXME: Google passes dtstart like 2008-12-10T00:00:00 if not date[-6] in ('+', '-') and not date.endswith('Z'): date += 'Z' + if int(date[0:4]) > 2037: + return int(iso8601.parse(string.replace(date, date[:4], "2037", 1))) return int(iso8601.parse(date))
The Following User Says Thank You to gdevenyi For This Useful Post: | ||
|
2010-12-02
, 00:30
|
Guest |
Posts: n/a |
Thanked: 0 times |
Joined on
|
#483
|
![]() |
2010-12-03
, 07:21
|
Posts: 5 |
Thanked: 12 times |
Joined on Oct 2010
|
#484
|
![]() |
2010-12-03
, 14:33
|
Posts: 5 |
Thanked: 2 times |
Joined on Dec 2010
|
#485
|
![]() |
2010-12-04
, 10:56
|
|
Posts: 579 |
Thanked: 471 times |
Joined on Jan 2010
@ Austria
|
#486
|
Thanks. 16 pages of forum threads do not documentation make; so I've added the start of instructions to wiki.maemo.org/Sync.
|
2010-12-04
, 11:39
|
Guest |
Posts: n/a |
Thanked: 0 times |
Joined on
|
#487
|
I would be willing to help with the wiki, but even after having read through most of the 16 pages, I'm a bit at a loss at how erminig needs to be set up. I've followed the instructions, but after the first sync between my built-in calendar and my google calendar which were synced until now by nuevasync every entry in the future got duplicated.
Do I have to empty one of the calenars before starting the sync with erminig?
And would anyone have a good suggestion of how to clean a google calendar from zillions of duplicated entries...?
![]() |
2010-12-04
, 16:07
|
|
Posts: 579 |
Thanked: 471 times |
Joined on Jan 2010
@ Austria
|
#488
|
Yeah, I got duplicates as well. You may want to use more titles for entries (e.g. vacation, home, work) to avoid massive work of deleting the duplicates from one calendar. Also, the good way to avoid the duplicates is to use "From Google"-sync only. This way you can't get duplicates. If you let your calendar add entries to the Google Calendar and vice versa you might get duplicates, again.
So in short : use more than one title for entries and sync from Google. One way sync should be fine, two way sync seems to be troublesome, for now (or maybe it's just PEBKAC).
![]() |
2010-12-04
, 21:03
|
|
Posts: 2,535 |
Thanked: 6,681 times |
Joined on Mar 2008
@ UK
|
#489
|
I would be willing to help with the wiki, but even after having read through most of the 16 pages, I'm a bit at a loss at how erminig needs to be set up. I've followed the instructions, but after the first sync between my built-in calendar and my google calendar which were synced until now by nuevasync every entry in the future got duplicated.
And would anyone have a good suggestion of how to clean a google calendar from zillions of duplicated entries...?
The Following User Says Thank You to Jaffa For This Useful Post: | ||
![]() |
2010-12-04
, 21:04
|
|
Posts: 2,535 |
Thanked: 6,681 times |
Joined on Mar 2008
@ UK
|
#490
|
Thanks for this! I look forward to trying it out. Have you considered integrating the other patches floating around in this thread which fix some bugs?
![]() |
Tags |
erminig, erminig-ng, ernie nig, google calendar, google sync, synchronization |
|
It seems that google has a date somehow in there with year > 2038, which is past the Unix Epoch overflow, causing a crash.
This is with the patches provided by thomasvs, which fixes a crash earlier in the sync.
Anyone know of a way to fix this?