shanttu
|
2012-03-16
, 13:39
|
|
Posts: 234 |
Thanked: 281 times |
Joined on Nov 2010
@ Helsinki
|
#601
|
|
2012-03-16
, 13:49
|
Posts: 81 |
Thanked: 9 times |
Joined on Nov 2007
|
#602
|
|
2012-03-16
, 14:20
|
Posts: 1,808 |
Thanked: 4,272 times |
Joined on Feb 2011
@ Germany
|
#603
|
Would like that as well. Would you mind sharing the instructions (=what lines to edit)?
if len(e.reminder) > 0: alarm = int(e.reminder[0].minutes) .. if len(e.when[0].reminder) > 0: alarm = int(e.when[0].reminder[0].minutes) .. if len(event.reminder) > 0: event.reminder[0].minutes = evt.get_alarm() else: event.reminder.append(gdata.calendar.Reminder(minutes=evt.get_alarm())); .. if len(event.when[0].reminder) > 0: event.when[0].reminder[0].minutes = evt.get_alarm() else: event.when[0].reminder.append(gdata.calendar.Reminder(minutes=evt.get_alarm()));
The Following 2 Users Say Thank You to reinob For This Useful Post: | ||
|
2012-04-17
, 09:21
|
Posts: 131 |
Thanked: 241 times |
Joined on Feb 2012
|
#604
|
/opt/maemo/usr/share/erminig/erminig_core.py:
tz = time.timezone
if (time.daylight):
tz = time.altzone
start_time += tz
end_time += tz
#start_time += time.timezone
#end_time += time.timezone
def get_alarm(self):
return self.alarm
|
2012-04-18
, 12:15
|
Posts: 131 |
Thanked: 241 times |
Joined on Feb 2012
|
#605
|
tz = time.timezone
if (time.localtime(start_time).tm_isdst):
tz = time.altzone
start_time += tz
end_time += tz
#start_time += time.timezone
#end_time += time.timezone
The Following 6 Users Say Thank You to HolgerN For This Useful Post: | ||
|
2012-04-18
, 12:31
|
Posts: 250 |
Thanked: 126 times |
Joined on Dec 2010
|
#606
|
|
2012-04-18
, 12:55
|
Posts: 1,397 |
Thanked: 2,126 times |
Joined on Nov 2009
@ Dublin, Ireland
|
#607
|
Hi
Allways wanted to use Erminig but never being able to.
This is the log file I get when trying to modify, delete account or sync:
Traceback (most recent call last):
File "/opt/maemo/usr/share/erminig/settings_ui.py", line 17, del_google_acct(widget=<hildon.Button object at 0x41e743c8 (HildonButton at 0x5cc490)>, data=<hildon.Dialog object at 0x41e70698 (HildonDialog at 0x5bb9d0)>)
def del_google_acct(widget, data):
id = get_google_acct_id()
account = google_accounts.get_account_by_id(id)
variables: {'id': ('builtin', <built-in function id>), 'get_google_acct_id': ('global', <function get_google_acct_id at 0x416c9af0>)}
File "/opt/maemo/usr/share/erminig/settings_ui.py", line 14, get_google_acct_id()
(model, iter) = ts.get_selected()
return model.get_value(iter, 0)
variables: {'model.get_value': ('local', <built-in method get_value of gtk.ListStore object at 0x41e74170>), 'iter': ('local', None)}
TypeError: iter must be a GtkTreeIter
Any idea I really want to give it a try
The Following User Says Thank You to ivgalvez For This Useful Post: | ||
|
2012-04-18
, 13:33
|
Posts: 1,397 |
Thanked: 2,126 times |
Joined on Nov 2009
@ Dublin, Ireland
|
#608
|
|
2012-04-18
, 19:53
|
Posts: 250 |
Thanked: 126 times |
Joined on Dec 2010
|
#609
|
|
2012-04-18
, 20:03
|
Posts: 58 |
Thanked: 43 times |
Joined on Aug 2010
|
#610
|
The Following User Says Thank You to BertvanDorp For This Useful Post: | ||
Tags |
erminig, erminig-ng, ernie nig, google calendar, google sync, synchronization |
|