Active Topics

 



Notices


Reply
Thread Tools
Posts: 479 | Thanked: 641 times | Joined on Dec 2007 @ Switzerland
#91
Regarding the xml.utils.iso8601: I will definitely abandon that module, since it's very problematic under certain circumstances.

I will use the dateutil module (additional dependency, but that package is available in Extra).

This means that I have to publish another version before the one with the GUI, since as you can imagine date handling is quite critical in Erminig, so I want to be sure that there is no hidden surprise somewhere with that new module.

Concerning the GUI: I will post a few screenshots of the mock-ups in the next few days.
 

The Following 2 Users Say Thank You to lorelei For This Useful Post:
Posts: 123 | Thanked: 33 times | Joined on Jan 2010 @ Stockholm
#92
Originally Posted by lorelei View Post
Next version will allow the user to sync to an already existing calendar, without forcing the creation of a new one.
Never mind the .db fiddling then.

Originally Posted by lorelei View Post
How massive the data source (how many events)? And from where? (Google or local calendar?).
A couple of thousand events from Google to local, at the first sync. It ate CPU (or more accurately, it increased the load quite a bit and made the phone sluggish), not memory. The slowness could also be seen in the output on the screen (slow enough to have time to read it). But I guess that much of this slowness was due to printing all the inserts to screen.

Subsequent syncs are also slow enough to have time to read the output, but since it's only a couple of events each time, it doesn't matter that much.

/P
 

The Following User Says Thank You to Palleman For This Useful Post:
Posts: 479 | Thanked: 641 times | Joined on Dec 2007 @ Switzerland
#93
OK, here's a fixed version for the iso8601 problem. This is the only fix in this release, there's absolutely no new feature compared to 0.1.0.

Since it appears that python2.5-dateutil is not available in Extras yet (it's only in -devel), I've changed the strategy: I'm now bundling the iso8601 module together with erminig. This should fix once for all the problem.

Once python2.5-dateutil is available in Extra I will change the code to use that module and get rid of the one bundled.

I'm also removing the old release from the previous post and redirect here for the downloads.

thank you for the patience and for the help pin-pointing the problem!

Updated version of Erminig-NG can be downloaded here:

http://talk.maemo.org/showpost.php?p...&postcount=128

Version 0.1.1 that was previously here has been removed, since it contained a bug.

Last edited by lorelei; 2010-02-05 at 18:18.
 

The Following 2 Users Say Thank You to lorelei For This Useful Post:
Posts: 22 | Thanked: 6 times | Joined on Dec 2009 @ Utrecht, the Netherlands
#94
Now I'm getting:

Code:
Traceback (most recent call last):
  File "erminig-ng", line 43, in <module>
    import cwrapper
  File "/home/user/MyDocs/.documents/erminig-ng-0.1.1/cwrapper.py", line 13, in <module>
    lib = cdll.LoadLibrary(erminig_conf.libpath + "/libcalaccess.so")
  File "/usr/lib/python2.5/ctypes/__init__.py", line 431, in LoadLibrary
    return self._dlltype(name)
  File "/usr/lib/python2.5/ctypes/__init__.py", line 348, in __init__
    self._handle = _dlopen(self._name, mode)
OSError: /home/user/MyDocs/.documents/erminig-ng-0.1.1/libcalaccess.so: failed to map segment from shared object: Operation not permitted
 
Posts: 479 | Thanked: 641 times | Joined on Dec 2007 @ Switzerland
#95
Originally Posted by dreixel View Post
Now I'm getting:

Code:
Traceback (most recent call last):
  File "erminig-ng", line 43, in <module>
    import cwrapper
  File "/home/user/MyDocs/.documents/erminig-ng-0.1.1/cwrapper.py", line 13, in <module>
    lib = cdll.LoadLibrary(erminig_conf.libpath + "/libcalaccess.so")
  File "/usr/lib/python2.5/ctypes/__init__.py", line 431, in LoadLibrary
    return self._dlltype(name)
  File "/usr/lib/python2.5/ctypes/__init__.py", line 348, in __init__
    self._handle = _dlopen(self._name, mode)
OSError: /home/user/MyDocs/.documents/erminig-ng-0.1.1/libcalaccess.so: failed to map segment from shared object: Operation not permitted
the erminig-ng C++ layer (libcalaccess.so) cannot reside in the MyDocs directory, since it is mounted with noexec. Best solution: move the erminig-ng-0.1.1 directory directly to your homedirectory (/home/users), instead of having it in the MyDocs folder.

hope this helps!
 

The Following User Says Thank You to lorelei For This Useful Post:
Posts: 22 | Thanked: 6 times | Joined on Dec 2009 @ Utrecht, the Netherlands
#96
Thanks, that worked, but now I have other problem:

Code:
Traceback (most recent call last):
  File "erminig-ng", line 524, in <module>
    syncNewEvents()
  File "erminig-ng", line 503, in syncNewEvents
    getNewEventsFromGoogle(lastSync)
  File "erminig-ng", line 302, in getNewEventsFromGoogle
    cdate = iso8601ToTimestamp(e.published.text)
  File "erminig-ng", line 249, in iso8601ToTimestamp
    return int(iso8601.parse(date))
  File "/home/user/erminig-ng-0.1.1/iso8601.py", line 24, in parse
    return time.mktime(gmt) + __extract_tzd(m) - time.timezone
OverflowError: mktime argument out of range
This when running "python2-5 erminig-ng", after having run "python2-5 erminig-ng --sync-calendars". My N900 calendar looks unchanged (empty).

Last edited by dreixel; 2010-02-02 at 07:34. Reason: More info
 

The Following User Says Thank You to dreixel For This Useful Post:
Posts: 479 | Thanked: 641 times | Joined on Dec 2007 @ Switzerland
#97
Originally Posted by dreixel View Post
Thanks, that worked, but now I have other problem:

Code:
Traceback (most recent call last):
  File "erminig-ng", line 524, in <module>
    syncNewEvents()
  File "erminig-ng", line 503, in syncNewEvents
    getNewEventsFromGoogle(lastSync)
  File "erminig-ng", line 302, in getNewEventsFromGoogle
    cdate = iso8601ToTimestamp(e.published.text)
  File "erminig-ng", line 249, in iso8601ToTimestamp
    return int(iso8601.parse(date))
  File "/home/user/erminig-ng-0.1.1/iso8601.py", line 24, in parse
    return time.mktime(gmt) + __extract_tzd(m) - time.timezone
OverflowError: mktime argument out of range
This when running "python2-5 erminig-ng", after having run "python2-5 erminig-ng --sync-calendars". My N900 calendar looks unchanged (empty).
Wild guess: you have an event in Google calendar which is starting after 2037. UNIX timestamps are limited to values until early 2037 IIRC, so this may explain the problem.

I will probably have to clip the dates after the maximum timestamp, since they cannot be managed correctly by Python...
 
Posts: 22 | Thanked: 6 times | Joined on Dec 2009 @ Utrecht, the Netherlands
#98
Originally Posted by lorelei View Post
Wild guess: you have an event in Google calendar which is starting after 2037. UNIX timestamps are limited to values until early 2037 IIRC, so this may explain the problem.
Well, I have recurring events coming once every year with no end date (like birthdays), but I thought erminig was ignoring recurring events...
 
Posts: 22 | Thanked: 6 times | Joined on Dec 2009 @ Utrecht, the Netherlands
#99
Also, I have a feature request. It would be nice to have a switch to perform only one-way synchronization (namely from Google to N900). This also makes it safer for users who want to make sure their Google Calendar will not be altered in any way.
 

The Following User Says Thank You to dreixel For This Useful Post:
Posts: 3 | Thanked: 0 times | Joined on Jan 2010
#100
Originally Posted by lorelei View Post
Feel free to drop me a message if you find a bug (or just if you find this piece of software useful): those are always appreciated!

Download of erminig-ng 0.1.1 is available in this post:

http://talk.maemo.org/showpost.php?p...7&postcount=93

it fixes the iso8601 problem a few users had. I've removed the original 0.1.0 release, since it was bugged!
Hi, lorelei

I've tried your software and I receive the next error:

Code:
File "erminig-ng", line 43, in <module>
   import cwrapper
File "/home/user/MyDocs/erminig-ng/erminig-ng-0.1.1/cwrapper.py", line 13, in module>
   lib = cd11.LoadLibrary(erminig_conf.libpath + "/libcalccess.so")
File "/usr/lib/python2.5/ctypes/__init__.py", line 431, in LoadLibrary
      return self._dlltype(name)
File "/usr/lib/python2.5/ctypes/__init__.py", line 348, in __init__
      self.handle = _dlopen(self._name, mode)
ODError: /home/user/MyDocs/erminig-ng/erminig-ng-0.1.1/libcalaccess.so: failed to map segment form shared object: Operation not permitted
My erminig_conf.py file:
Code:
google_username = "my_username"
google_password = "my_password"

libpath = "/home/user/MyDocs/erminig-ng/erminig-ng-0.1.1"

maxattempts = 4
Thanks for your time
 
Reply

Tags
erminig, erminig-ng, ernie nig, google calendar, google sync, synchronization


 
Forum Jump


All times are GMT. The time now is 09:56.