Notices


Reply
Thread Tools
Posts: 4,556 | Thanked: 1,624 times | Joined on Dec 2007
#111
Well I couldn't figure out how to import Google Calendar into the application (there's no where that I could find to input Google Calendar's .ics address?). So I went about it in a round about way, I have Windows Calendar set to receive my Google Calendar in a read-only state. From there I saved it to an .ics and transfered it to my tablet. Tried importing it, no events showed up and I have a bunch of lines in a log that I could put here (gotta navigate here on my tablet first).
__________________
Originally Posted by ysss View Post
They're maemo and MeeGo...

"Meamo!" sounds like what Zorro would say to catherine zeta jones... after she slaps him for looking at her dirtily...
 
Posts: 155 | Thanked: 69 times | Joined on Apr 2008
#112
Originally Posted by Laughing Man View Post
Well I couldn't figure out how to import Google Calendar into the application (there's no where that I could find to input Google Calendar's .ics address?). So I went about it in a round about way, I have Windows Calendar set to receive my Google Calendar in a read-only state. From there I saved it to an .ics and transfered it to my tablet. Tried importing it, no events showed up and I have a bunch of lines in a log that I could put here (gotta navigate here on my tablet first).
Ok, posting the logfile would be helpful. Yeah, calend doesn't have a way of fetching an import file from a URL... that would be convenient. Theoretically I would think you could save your Google .ics file from microb on the tablet though.
 
Mechdude's Avatar
Posts: 13 | Thanked: 0 times | Joined on Jan 2008 @ Brisbane, Australia
#113
Originally Posted by rbrewer123 View Post
No real good ideas on what is going on, but some diagnostics to try. Open an xterm on your NIT and try the following:
cd /home/user/MyDocs/.python
rm -f calend_data.dat calend_pref.dat to_do.dat
/usr/bin/calend

The rm command deletes the data files used by the apps, in case somehow there is a corrupted one preventing them from loading. The last command starts calend manually. If you see any interesting error messages with the last command that may help debug this issue.

Other items of interest:
dpkg -l python2.5 # to find your python version
The firmware version of your device, gotten via Settings->Control Panel->About product. Should look something like:
Version: 2.2007.51-3
Thanks rbrewer123,
deleting the data files did nothing, starting calend manually did not return an error message.
Python version: 2.5.1-losso6
Firmware: 2.2007.50-2

Might be time to update firware and reinstall.

Howard
 
Posts: 155 | Thanked: 69 times | Joined on Apr 2008
#114
Originally Posted by Mechdude View Post
Thanks rbrewer123,
deleting the data files did nothing, starting calend manually did not return an error message.
Python version: 2.5.1-losso6
Firmware: 2.2007.50-2

Might be time to update firware and reinstall.
Same python as me, though a little older firmware than me.

One last thing to check... please see if there is anything interesting in this file:
/home/user/.logs/calend.log
 
Mechdude's Avatar
Posts: 13 | Thanked: 0 times | Joined on Jan 2008 @ Brisbane, Australia
#115
Originally Posted by rbrewer123 View Post
Same python as me, though a little older firmware than me.

One last thing to check... please see if there is anything interesting in this file:
/home/user/.logs/calend.log
Started: Wed Apr 23 12:22:19 2008
Traceback (most recent call last):
File "/usr/bin/calend", line 1938, in <module>
root, vb=application_setup('Calendar', 'calend')
File "/usr/lib/python2.5/site-packages/nokia_utilities.py", line 241, in application_setup
gtk.set_application_name(program_name)
AttributeError: 'module' object has no attribute 'set_application_name'
 
Posts: 155 | Thanked: 69 times | Joined on Apr 2008
#116
Originally Posted by Mechdude View Post
Started: Wed Apr 23 12:22:19 2008
Traceback (most recent call last):
File "/usr/bin/calend", line 1938, in <module>
root, vb=application_setup('Calendar', 'calend')
File "/usr/lib/python2.5/site-packages/nokia_utilities.py", line 241, in application_setup
gtk.set_application_name(program_name)
AttributeError: 'module' object has no attribute 'set_application_name'
Looks like a pygtk compatibility issue... try this in an xterm:
dpkg -l python2.5-gtk2

Mine is version 2.12.1-1osso2. What is yours? Perhaps upgrading that package will correct it for you.
 
Mechdude's Avatar
Posts: 13 | Thanked: 0 times | Joined on Jan 2008 @ Brisbane, Australia
#117
Originally Posted by rbrewer123 View Post
Looks like a pygtk compatibility issue... try this in an xterm:
dpkg -l python2.5-gtk2

Mine is version 2.12.1-1osso2. What is yours? Perhaps upgrading that package will correct it for you.
python2.5-gtk2 2.12.0-1osso5

thanks
 
Posts: 395 | Thanked: 137 times | Joined on Feb 2008 @ Boone, IA
#118
Sweet, successfully imported my GCal .ics to Calend

Is there a way to edit the week view / create a new view for a "Work Week" ie M-F?


Also, is there an easy way to clean up the Datebook6 Note codes?

Thanks
 
Posts: 155 | Thanked: 69 times | Joined on Apr 2008
#119
Originally Posted by Snoshrk View Post
Sweet, successfully imported my GCal .ics to Calend

Is there a way to edit the week view / create a new view for a "Work Week" ie M-F?
Good to hear it. There are no alternate view settings. The "week start day" can't be changed to Monday either.

Also, is there an easy way to clean up the Datebook6 Note codes?
Look at the bottom of this page:
http://brewer123.home.comcast.net/projects/nokia

I used DateBk5 and wrote a script to clean up those note codes. It will likely work for DateBk6 too. I ran the script on my Linux desktop. Read carefully the part about floating events. The script will strip out floating events and convert them to todos. Neither calend nor Gene Cash's to_do program can import todos. I think you have 3 reasonable options:
  1. Depending on how many you have you could contemplate manual entry of your floating events.
  2. Use GPE Todo, which can import todos. Unfortunately calend and GPE Todo do not exchange data. So todos created in calend will still go to Gene Cash's to_do manager, but your other imported todos would be in GPE Todo. A final note on GPE Todo... to import todos you must use GPE calendar, which will populate the GPE todo database.
  3. Change the script to not change vevents to vtodos. If calend sees a "category" field on a vevent, it considers it a todo. So you should keep or add categories to the floating events, and strip categories from everything else. Then when you import into calend, choose "Yes" to the dialog that asks "Make events with categories into TODOs?". You may need to first ensure that the correct categories are created in Gene's to_do app first.

The script depends on the python vobject library, which can be installed on Ubuntu with 'apt-get install python-vobject'. The home page is here if you need to run it on a different platform, e.g. the NIT.
http://vobject.skyhouseconsulting.com/
 
Posts: 4,556 | Thanked: 1,624 times | Joined on Dec 2007
#120
Originally Posted by Snoshrk View Post
Sweet, successfully imported my GCal .ics to Calend

Is there a way to edit the week view / create a new view for a "Work Week" ie M-F?


Also, is there an easy way to clean up the Datebook6 Note codes?

Thanks
How did you do it?

rbrewer123, how do I copy and paste the log to here? I open the log and highlight it but it won't let me copy and paste. When I have time I'll connect my iGo bluetooth keyboard and see if I can copy it then,
__________________
Originally Posted by ysss View Post
They're maemo and MeeGo...

"Meamo!" sounds like what Zorro would say to catherine zeta jones... after she slaps him for looking at her dirtily...
 
Reply


 
Forum Jump


All times are GMT. The time now is 22:41.