Re: QTMoko/SHR & Caldav-aware calendar

2013-11-20 Thread Adrien Dorsaz

Hello,

Le lundi 18 novembre 2013 à 15:55 +, Peter Viskup a écrit :
> Hi all,
> I got Horde Groupware working for my domain already and am interested
> whether QTMoko does provide calendar which is able to sync via CalDav.
> If not, is there such calendar available in current SHR then?
> 

Unfortunately, QtMoko don't have a caldav sync application (but you can code it 
if you have enough motivation ;)).

But, there's a solution to get caldav files and fill the QtMoko calendar
with it.

This solution is ics2qtcal [0] which is a PERL script to do that.
As it's a basic script, you'll need terminal or ssh to use it and it can't save 
your configurations.

I'm working on a graphical solution which is a GUI for ics2qtcal.
You can check my getcal project [1] which can save your settings and run 
ics2qtcal in background.

I've just compiled these 2 applications and made .deb packages [2],[3].

Unfortunately, I'm not able to test the packages, because I've neither
my Neo nor my GTA04 at home. So you can try them, but it's possible
there's bugs in packaging and/or in application.

I hope it can help you and I'll notify this list when I'll be able to test my 
packages,
Adrien

[0] https://redmine.adorsaz.ch/projects/ics2qtcal_
[1] https://redmine.adorsaz.ch/projects/getcal_
[2] https://redmine.adorsaz.ch/projects/ics2qtcal_/files
[3] https://redmine.adorsaz.ch/projects/getcal_/documents




signature.asc
Description: This is a digitally signed message part
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


QTMoko/SHR & Caldav-aware calendar

2013-11-18 Thread Peter Viskup
Hi all,
I got Horde Groupware working for my domain already and am interested
whether QTMoko does provide calendar which is able to sync via CalDav.
If not, is there such calendar available in current SHR then?

-- 
Peter Viskup

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko calendar

2013-02-19 Thread Adrien Dorsaz
Hi Robin,

Le lundi 11 février 2013 à 11:44 +, robin a écrit :
> Hi Adrien,
> 
> thanks for this very handy tool. It works almost perfectly with my ics 
> calender
> I export from orgmode. there is just one minor thing: it fails if I have a 
> date
> on -07-31 which as far as I checked my calendar does actually exist:
> 
> for the error I found the following bug [1] on the internet with the solution 
> to
> set the database datestyle like:
> 
> ALTER DATABASE bugzilla SET datestyle = 'iso, dmy';
> 
> is this also possible with the qtopia database?

I don't know exactly what does "alter database" sql request and I'd
prefer to not touch this database because it contains other informations
(like call history).

> 
> 
> this is the output I get 
> 
> Prepare the appointment recid=248
> description=Bruno Brezinas %d. Geburtstag
> startDate=1945-07-31T00:00:00
> startDateTimeZone=
> The 'day' parameter ("0") to DateTime::set did not pass the 'an integer which 
> is a possible valid day of month' callback
>  at /usr/lib/perl5/DateTime.pm line 1875
> DateTime::set(undef, 'day', 0) called at /usr/lib/perl5/DateTime.pm 
> line 1886
> DateTime::set_day('DateTime=HASH(0x8f2618)', 0) called at 
> ./ics2qtcal.pl line 107
> main::extractDateFromIcalLine('ARRAY(0xa00790)', 1) called at 
> ./ics2qtcal.pl line 260
> 

Ok, I've tried to work on extractDateFromIcalLine function to remove
some assumptions made by the original author.

I'm not a perl expert, as you can see in my commits (I've made a lot of
commits because I use git to transfer my modifications on my phone), but
it worked better with my calendars.

Can you download latest version and try again with this calendar ?
https://github.com/Trim/qtmoko-ics2qtcal/raw/master/downloads/ics2qtcal-0.7.2.zip


Thanks,
Adrien



signature.asc
Description: This is a digitally signed message part
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko calendar

2013-02-11 Thread robin
Hi Adrien,

thanks for this very handy tool. It works almost perfectly with my ics calender
I export from orgmode. there is just one minor thing: it fails if I have a date
on -07-31 which as far as I checked my calendar does actually exist:

for the error I found the following bug [1] on the internet with the solution to
set the database datestyle like:

ALTER DATABASE bugzilla SET datestyle = 'iso, dmy';

is this also possible with the qtopia database?


this is the output I get 

Prepare the appointment recid=248
description=Bruno Brezinas %d. Geburtstag
startDate=1945-07-31T00:00:00
startDateTimeZone=
The 'day' parameter ("0") to DateTime::set did not pass the 'an integer which 
is a possible valid day of month' callback
 at /usr/lib/perl5/DateTime.pm line 1875
DateTime::set(undef, 'day', 0) called at /usr/lib/perl5/DateTime.pm 
line 1886
DateTime::set_day('DateTime=HASH(0x8f2618)', 0) called at 
./ics2qtcal.pl line 107
main::extractDateFromIcalLine('ARRAY(0xa00790)', 1) called at 
./ics2qtcal.pl line 260


best regards

robin



[1] https://bugzilla.mozilla.org/show_bug.cgi?id=620346


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko calendar

2013-02-10 Thread arne anka

for i in {1..100} ; do wget http://url/$i.ics ; done

The ics files on the server are in format 1.ics, 2.ics, 8.ics,  
27.ics43.ics... and so on. It's egroupware groupdav folder for  
calendar.


urodelo

On Sat, 09 Feb 2013 17:25:12 +0100, arne anka   
wrote:



using wget with
-r -l 1
you should be able to download the whole folder without going deeper  
than that.


if you have an idea of the format of the files (ie  
eventname_-mm-dd.ics or such) you could try to create possible  
combinations with printf and append them to the base url in a loop.



tnk, i'll try

uro

On Thu, 07 Feb 2013 12:59:06 +0100, Adrien Dorsaz   
wrote:



I think you can modify the "wget" loop :
https://github.com/Trim/qtmoko-ics2qtcal/blob/master/sync4ics2openmoko.sh#L19
to loop on a variable from 1 to any number instead on arguments (you
should add option --tries 1 to avoid to be stucked 20 times on a  
file).


It should work, if names are simply "number".ics, but it won't be  
really

optimized.

Otherwise, I don't really know wget/curl to retrive all files from a
server. Maybe you can find an index of files at some address (I don't
know if apache have a special address to display index) ?

Adrien

Le jeudi 07 février 2013 à 12:36 +0100, urodelo a écrit :

tnx
is it possible to retrieve more ics from remote url/server  
recursively?

For example, on remote server I have http://foobar.foo/1.ics ,
http://foobar.foo/2.ics, http://foobar.foo/8.ics ,
http://foobar.foo/43.ics... but I don't have an exactly clue about  
the

name/numer of ics files...
the main problem to me seems to retrieve all the ics files stored on  
the
remote server through wget/curl etc, without knowing exactly haow  
many
they are and especially without knowing the name of every single ics  
file


thank you
uro

On Thu, 07 Feb 2013 12:11:35 +0100, Adrien Dorsaz 
wrote:

> Hello!
>
> Le jeudi 07 février 2013 à 11:58 +0100, urodelo a écrit :
>> Hello,
>> what is the executable file for the qtmoko calendar? Is it  
possible

> to
>> import/export ics files or do other operations through the  
terminal?

>> tnx
>> uro
>
> I've just updated a small tool to import ics files written in  
shell/perl

> by Mossroy :
> https://github.com/Trim/qtmoko-ics2qtcal
>
> (Please note that, it removes all appointements before to import
> calendars and so there's no synchronisation with calendar server)
>
> As you can see, all the data of qtmoko calendar are stored in the
> database /home/root/Applications/Qtopia/qtopia_db.sqlite and  
espcially

> in the "appointements" table.
>
> So, I think you can easily export data to ics files by creating a  
qtmoko

> specific DateTime::Format builder for this database.
>
> HTH,
> Adrien
>
















--
"Schon vor dem Come-Back von Modern Talking wusste ich:
Dieter Bohlen ist der Preis der Freiheit."
   Heinz Rudolf Kunze

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko calendar

2013-02-10 Thread urodelo
The ics files on the server are in format 1.ics, 2.ics, 8.ics,  
27.ics43.ics... and so on. It's egroupware groupdav folder for  
calendar.


urodelo

On Sat, 09 Feb 2013 17:25:12 +0100, arne anka   
wrote:



using wget with
-r -l 1
you should be able to download the whole folder without going deeper  
than that.


if you have an idea of the format of the files (ie  
eventname_-mm-dd.ics or such) you could try to create possible  
combinations with printf and append them to the base url in a loop.



tnk, i'll try

uro

On Thu, 07 Feb 2013 12:59:06 +0100, Adrien Dorsaz   
wrote:



I think you can modify the "wget" loop :
https://github.com/Trim/qtmoko-ics2qtcal/blob/master/sync4ics2openmoko.sh#L19
to loop on a variable from 1 to any number instead on arguments (you
should add option --tries 1 to avoid to be stucked 20 times on a file).

It should work, if names are simply "number".ics, but it won't be  
really

optimized.

Otherwise, I don't really know wget/curl to retrive all files from a
server. Maybe you can find an index of files at some address (I don't
know if apache have a special address to display index) ?

Adrien

Le jeudi 07 février 2013 à 12:36 +0100, urodelo a écrit :

tnx
is it possible to retrieve more ics from remote url/server  
recursively?

For example, on remote server I have http://foobar.foo/1.ics ,
http://foobar.foo/2.ics, http://foobar.foo/8.ics ,
http://foobar.foo/43.ics... but I don't have an exactly clue about the
name/numer of ics files...
the main problem to me seems to retrieve all the ics files stored on  
the

remote server through wget/curl etc, without knowing exactly haow many
they are and especially without knowing the name of every single ics  
file


thank you
uro

On Thu, 07 Feb 2013 12:11:35 +0100, Adrien Dorsaz 
wrote:

> Hello!
>
> Le jeudi 07 février 2013 à 11:58 +0100, urodelo a écrit :
>> Hello,
>> what is the executable file for the qtmoko calendar? Is it possible
> to
>> import/export ics files or do other operations through the  
terminal?

>> tnx
>> uro
>
> I've just updated a small tool to import ics files written in  
shell/perl

> by Mossroy :
> https://github.com/Trim/qtmoko-ics2qtcal
>
> (Please note that, it removes all appointements before to import
> calendars and so there's no synchronisation with calendar server)
>
> As you can see, all the data of qtmoko calendar are stored in the
> database /home/root/Applications/Qtopia/qtopia_db.sqlite and  
espcially

> in the "appointements" table.
>
> So, I think you can easily export data to ics files by creating a  
qtmoko

> specific DateTime::Format builder for this database.
>
> HTH,
> Adrien
>













--
不要催我!你曾經問過梵谷畫很快嗎?


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko calendar

2013-02-09 Thread arne anka

using wget with
-r -l 1
you should be able to download the whole folder without going deeper than  
that.


if you have an idea of the format of the files (ie  
eventname_-mm-dd.ics or such) you could try to create possible  
combinations with printf and append them to the base url in a loop.



tnk, i'll try

uro

On Thu, 07 Feb 2013 12:59:06 +0100, Adrien Dorsaz   
wrote:



I think you can modify the "wget" loop :
https://github.com/Trim/qtmoko-ics2qtcal/blob/master/sync4ics2openmoko.sh#L19
to loop on a variable from 1 to any number instead on arguments (you
should add option --tries 1 to avoid to be stucked 20 times on a file).

It should work, if names are simply "number".ics, but it won't be really
optimized.

Otherwise, I don't really know wget/curl to retrive all files from a
server. Maybe you can find an index of files at some address (I don't
know if apache have a special address to display index) ?

Adrien

Le jeudi 07 février 2013 à 12:36 +0100, urodelo a écrit :

tnx
is it possible to retrieve more ics from remote url/server recursively?
For example, on remote server I have http://foobar.foo/1.ics ,
http://foobar.foo/2.ics, http://foobar.foo/8.ics ,
http://foobar.foo/43.ics... but I don't have an exactly clue about the
name/numer of ics files...
the main problem to me seems to retrieve all the ics files stored on  
the

remote server through wget/curl etc, without knowing exactly haow many
they are and especially without knowing the name of every single ics  
file


thank you
uro

On Thu, 07 Feb 2013 12:11:35 +0100, Adrien Dorsaz 
wrote:

> Hello!
>
> Le jeudi 07 février 2013 à 11:58 +0100, urodelo a écrit :
>> Hello,
>> what is the executable file for the qtmoko calendar? Is it possible
> to
>> import/export ics files or do other operations through the terminal?
>> tnx
>> uro
>
> I've just updated a small tool to import ics files written in  
shell/perl

> by Mossroy :
> https://github.com/Trim/qtmoko-ics2qtcal
>
> (Please note that, it removes all appointements before to import
> calendars and so there's no synchronisation with calendar server)
>
> As you can see, all the data of qtmoko calendar are stored in the
> database /home/root/Applications/Qtopia/qtopia_db.sqlite and  
espcially

> in the "appointements" table.
>
> So, I think you can easily export data to ics files by creating a  
qtmoko

> specific DateTime::Format builder for this database.
>
> HTH,
> Adrien
>










--
"Schon vor dem Come-Back von Modern Talking wusste ich:
Dieter Bohlen ist der Preis der Freiheit."
   Heinz Rudolf Kunze

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko calendar

2013-02-07 Thread urodelo

tnk, i'll try

uro

On Thu, 07 Feb 2013 12:59:06 +0100, Adrien Dorsaz   
wrote:



I think you can modify the "wget" loop :
https://github.com/Trim/qtmoko-ics2qtcal/blob/master/sync4ics2openmoko.sh#L19
to loop on a variable from 1 to any number instead on arguments (you
should add option --tries 1 to avoid to be stucked 20 times on a file).

It should work, if names are simply "number".ics, but it won't be really
optimized.

Otherwise, I don't really know wget/curl to retrive all files from a
server. Maybe you can find an index of files at some address (I don't
know if apache have a special address to display index) ?

Adrien

Le jeudi 07 février 2013 à 12:36 +0100, urodelo a écrit :

tnx
is it possible to retrieve more ics from remote url/server recursively?
For example, on remote server I have http://foobar.foo/1.ics ,
http://foobar.foo/2.ics, http://foobar.foo/8.ics ,
http://foobar.foo/43.ics... but I don't have an exactly clue about the
name/numer of ics files...
the main problem to me seems to retrieve all the ics files stored on the
remote server through wget/curl etc, without knowing exactly haow many
they are and especially without knowing the name of every single ics  
file


thank you
uro

On Thu, 07 Feb 2013 12:11:35 +0100, Adrien Dorsaz 
wrote:

> Hello!
>
> Le jeudi 07 février 2013 à 11:58 +0100, urodelo a écrit :
>> Hello,
>> what is the executable file for the qtmoko calendar? Is it possible
> to
>> import/export ics files or do other operations through the terminal?
>> tnx
>> uro
>
> I've just updated a small tool to import ics files written in  
shell/perl

> by Mossroy :
> https://github.com/Trim/qtmoko-ics2qtcal
>
> (Please note that, it removes all appointements before to import
> calendars and so there's no synchronisation with calendar server)
>
> As you can see, all the data of qtmoko calendar are stored in the
> database /home/root/Applications/Qtopia/qtopia_db.sqlite and espcially
> in the "appointements" table.
>
> So, I think you can easily export data to ics files by creating a  
qtmoko

> specific DateTime::Format builder for this database.
>
> HTH,
> Adrien
>







--
不要催我!你曾經問過梵谷畫很快嗎?


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko calendar

2013-02-07 Thread Adrien Dorsaz
I think you can modify the "wget" loop :
https://github.com/Trim/qtmoko-ics2qtcal/blob/master/sync4ics2openmoko.sh#L19
to loop on a variable from 1 to any number instead on arguments (you
should add option --tries 1 to avoid to be stucked 20 times on a file).

It should work, if names are simply "number".ics, but it won't be really
optimized.

Otherwise, I don't really know wget/curl to retrive all files from a
server. Maybe you can find an index of files at some address (I don't
know if apache have a special address to display index) ?

Adrien

Le jeudi 07 février 2013 à 12:36 +0100, urodelo a écrit :
> tnx
> is it possible to retrieve more ics from remote url/server recursively?
> For example, on remote server I have http://foobar.foo/1.ics ,  
> http://foobar.foo/2.ics, http://foobar.foo/8.ics ,  
> http://foobar.foo/43.ics... but I don't have an exactly clue about the  
> name/numer of ics files...
> the main problem to me seems to retrieve all the ics files stored on the  
> remote server through wget/curl etc, without knowing exactly haow many  
> they are and especially without knowing the name of every single ics file
> 
> thank you
> uro
> 
> On Thu, 07 Feb 2013 12:11:35 +0100, Adrien Dorsaz   
> wrote:
> 
> > Hello!
> >
> > Le jeudi 07 février 2013 à 11:58 +0100, urodelo a écrit :
> >> Hello,
> >> what is the executable file for the qtmoko calendar? Is it possible
> > to
> >> import/export ics files or do other operations through the terminal?
> >> tnx
> >> uro
> >
> > I've just updated a small tool to import ics files written in shell/perl
> > by Mossroy :
> > https://github.com/Trim/qtmoko-ics2qtcal
> >
> > (Please note that, it removes all appointements before to import
> > calendars and so there's no synchronisation with calendar server)
> >
> > As you can see, all the data of qtmoko calendar are stored in the
> > database /home/root/Applications/Qtopia/qtopia_db.sqlite and espcially
> > in the "appointements" table.
> >
> > So, I think you can easily export data to ics files by creating a qtmoko
> > specific DateTime::Format builder for this database.
> >
> > HTH,
> > Adrien
> >
> 
> 



signature.asc
Description: This is a digitally signed message part
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko calendar

2013-02-07 Thread urodelo

tnx
is it possible to retrieve more ics from remote url/server recursively?
For example, on remote server I have http://foobar.foo/1.ics ,  
http://foobar.foo/2.ics, http://foobar.foo/8.ics ,  
http://foobar.foo/43.ics... but I don't have an exactly clue about the  
name/numer of ics files...
the main problem to me seems to retrieve all the ics files stored on the  
remote server through wget/curl etc, without knowing exactly haow many  
they are and especially without knowing the name of every single ics file


thank you
uro

On Thu, 07 Feb 2013 12:11:35 +0100, Adrien Dorsaz   
wrote:



Hello!

Le jeudi 07 février 2013 à 11:58 +0100, urodelo a écrit :

Hello,
what is the executable file for the qtmoko calendar? Is it possible

to

import/export ics files or do other operations through the terminal?
tnx
uro


I've just updated a small tool to import ics files written in shell/perl
by Mossroy :
https://github.com/Trim/qtmoko-ics2qtcal

(Please note that, it removes all appointements before to import
calendars and so there's no synchronisation with calendar server)

As you can see, all the data of qtmoko calendar are stored in the
database /home/root/Applications/Qtopia/qtopia_db.sqlite and espcially
in the "appointements" table.

So, I think you can easily export data to ics files by creating a qtmoko
specific DateTime::Format builder for this database.

HTH,
Adrien




--
不要催我!你曾經問過梵谷畫很快嗎?


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko calendar

2013-02-07 Thread Adrien Dorsaz
Hello!

Le jeudi 07 février 2013 à 11:58 +0100, urodelo a écrit :
> Hello,
> what is the executable file for the qtmoko calendar? Is it possible
to  
> import/export ics files or do other operations through the terminal?
> tnx
> uro

I've just updated a small tool to import ics files written in shell/perl
by Mossroy :
https://github.com/Trim/qtmoko-ics2qtcal

(Please note that, it removes all appointements before to import
calendars and so there's no synchronisation with calendar server)

As you can see, all the data of qtmoko calendar are stored in the
database /home/root/Applications/Qtopia/qtopia_db.sqlite and espcially
in the "appointements" table.

So, I think you can easily export data to ics files by creating a qtmoko
specific DateTime::Format builder for this database.

HTH,
Adrien



signature.asc
Description: This is a digitally signed message part
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


qtmoko calendar

2013-02-07 Thread urodelo

Hello,
what is the executable file for the qtmoko calendar? Is it possible to  
import/export ics files or do other operations through the terminal?

tnx
uro

--
不要催我!你曾經問過梵谷畫很快嗎?


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko calendar / google calendar

2011-04-04 Thread Wesley Frazier
Correct. I have my evil work email exchange based calendar published online
automatically. (A feature of Outlook 2007/2010) and then I have a cron job
which automatically tries to import this and my google calendar in once an
hour. Works pretty well as long as I can keep data stable. Somedays its rock
solid, someday I only seem to have cellular data for 15 minutes at a time.
Still working on that...

-- Forwarded message --
From: mossroy 
To: community@lists.openmoko.org
Date: Sun, 03 Apr 2011 14:40:28 +0200
Subject: Re: qtmoko calendar / google calendar
I uploaded a version 0.6 of the script on http://mossroy.free.fr/ics2qtcal/
It includes small fixes and improvements, based on the feedback of Weslay
Frazier on an Office online calendar.

Hope it might be useful to some of you.

Le 23/03/2011 19:43, mossroy a écrit :

> Great!
>
> Keep me informed
>
> Le 22/03/2011 02:30, Wesley Frazier a écrit :
>
>> All better, thanks!
>>
>> Pretty neat to have my calendar on my phone now. Thinking about
>> wrapping it up in a cron job so it automatically tries to sync every
>> two hours or so.
>>
>>  -- Forwarded message --
>>> From: mossroy
>>> To: List for Openmoko community discussion
>>> Date: Sat, 19 Mar 2011 12:12:17 +0100
>>> Subject: Re: qtmoko calendar / google calendar
>>> I uploaded a version 0.5 of the script on
>>> http://mossroy.free.fr/ics2qtcal/
>>> It now can handle correctly the date/times that are given in UTC format
>>> (which was the case in the test ics file you sent me, generated by google
>>> calendar)
>>>
>>> Please test it and let me know if it's ok for you.
>>>
>>> Le 18/03/2011 13:55, Wesley Frazier a écrit :
>>>
>>>> QTMoko is set to "New York" for the timezone. Google Claendar is set
>>>> to "Eastern Standard". The timezones should match. It may be that
>>>> Google Calendar does not preserve the timezone data in the ics file.
>>>> It may present the entries in UTC or something.
>>>>
>>>> If there was a command-line option to just specify a time offset, I
>>>> think that would be enough for me.
>>>>
>>>> If you would like a test google calendar / ics file let me know. I can
>>>> provide one.
>>>>
>>>> Thanks!
>>>>
>>>> On Fri, Mar 18, 2011 at 5:51 AM,
>>>>   wrote:
>>>>
>>>>  -- Forwarded message --
>>>>> From: mossroy
>>>>> To: community@lists.openmoko.org
>>>>> Date: Fri, 18 Mar 2011 09:51:18 +0100
>>>>> Subject: Re: qtmoko calendar / google calendar
>>>>> It's certainly a timezone issue.
>>>>> I suppose you don't use the same timezone in google calendar and in
>>>>> QtMoko.
>>>>> I'll look into it, to see if I can fix that in the code.
>>>>>
>>>>> Any other issues with this script?
>>>>> I'm happy to see that it might be helpful for someone else than me :-)
>>>>>
>>>>> Regards,
>>>>> Mossroy
>>>>>
>>>>> Le 18/03/2011 00:39, Wesley Frazier a écrit :
>>>>>
>>>>>> Ive been trying to setup these scripts here:
>>>>>> http://mossroy.free.fr/ics2qtcal/v0.4/ to download my google calendar
>>>>>> and sync it to my phone. Via the ics / private link download in google
>>>>>> calendar, with partial success.
>>>>>>
>>>>>> Its working but there seems to be a time offset. All of the
>>>>>> appointments on the phone that were synced from the google calendar
>>>>>> are three or four hours ahead of their actual times.
>>>>>>
>>>>>> Any advices/suggestions?
>>>>>>
>>>>>>
>>>>> ___
>>>>> Openmoko community mailing list
>>>>> community@lists.openmoko.org
>>>>> http://lists.openmoko.org/mailman/listinfo/community
>>>>>
>>>>>
>>>>>  ___
>> Openmoko community mailing list
>> community@lists.openmoko.org
>> http://lists.openmoko.org/mailman/listinfo/community
>>
>
> ___
> Openmoko community mailing list
> community@lists.openmoko.org
> http://lists.openmoko.org/mailman/listinfo/community
>



-- 
Wes Frazier

"*Nationalism is an infantile disease. It is the measles of mankind.*"
- *Albert
Einstein*
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko calendar / google calendar

2011-04-03 Thread mossroy

I uploaded a version 0.6 of the script on http://mossroy.free.fr/ics2qtcal/
It includes small fixes and improvements, based on the feedback of 
Weslay Frazier on an Office online calendar.


Hope it might be useful to some of you.

Le 23/03/2011 19:43, mossroy a écrit :

Great!

Keep me informed

Le 22/03/2011 02:30, Wesley Frazier a écrit :

All better, thanks!

Pretty neat to have my calendar on my phone now. Thinking about
wrapping it up in a cron job so it automatically tries to sync every
two hours or so.


-- Forwarded message --
From: mossroy
To: List for Openmoko community 
discussion

Date: Sat, 19 Mar 2011 12:12:17 +0100
Subject: Re: qtmoko calendar / google calendar
I uploaded a version 0.5 of the script on 
http://mossroy.free.fr/ics2qtcal/
It now can handle correctly the date/times that are given in UTC 
format (which was the case in the test ics file you sent me, 
generated by google calendar)


Please test it and let me know if it's ok for you.

Le 18/03/2011 13:55, Wesley Frazier a écrit :

QTMoko is set to "New York" for the timezone. Google Claendar is set
to "Eastern Standard". The timezones should match. It may be that
Google Calendar does not preserve the timezone data in the ics file.
It may present the entries in UTC or something.

If there was a command-line option to just specify a time offset, I
think that would be enough for me.

If you would like a test google calendar / ics file let me know. I can
provide one.

Thanks!

On Fri, Mar 18, 2011 at 5:51 
AM,   wrote:



-- Forwarded message --
From: mossroy
To: community@lists.openmoko.org
Date: Fri, 18 Mar 2011 09:51:18 +0100
Subject: Re: qtmoko calendar / google calendar
It's certainly a timezone issue.
I suppose you don't use the same timezone in google calendar and 
in QtMoko.

I'll look into it, to see if I can fix that in the code.

Any other issues with this script?
I'm happy to see that it might be helpful for someone else than me 
:-)


Regards,
Mossroy

Le 18/03/2011 00:39, Wesley Frazier a écrit :

Ive been trying to setup these scripts here:
http://mossroy.free.fr/ics2qtcal/v0.4/ to download my google 
calendar
and sync it to my phone. Via the ics / private link download in 
google

calendar, with partial success.

Its working but there seems to be a time offset. All of the
appointments on the phone that were synced from the google calendar
are three or four hours ahead of their actual times.

Any advices/suggestions?



___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community



___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko calendar / google calendar

2011-03-23 Thread mossroy

Great!

Keep me informed

Le 22/03/2011 02:30, Wesley Frazier a écrit :

All better, thanks!

Pretty neat to have my calendar on my phone now. Thinking about
wrapping it up in a cron job so it automatically tries to sync every
two hours or so.


-- Forwarded message --
From: mossroy
To: List for Openmoko community discussion
Date: Sat, 19 Mar 2011 12:12:17 +0100
Subject: Re: qtmoko calendar / google calendar
I uploaded a version 0.5 of the script on http://mossroy.free.fr/ics2qtcal/
It now can handle correctly the date/times that are given in UTC format (which 
was the case in the test ics file you sent me, generated by google calendar)

Please test it and let me know if it's ok for you.

Le 18/03/2011 13:55, Wesley Frazier a écrit :

QTMoko is set to "New York" for the timezone. Google Claendar is set
to "Eastern Standard". The timezones should match. It may be that
Google Calendar does not preserve the timezone data in the ics file.
It may present the entries in UTC or something.

If there was a command-line option to just specify a time offset, I
think that would be enough for me.

If you would like a test google calendar / ics file let me know. I can
provide one.

Thanks!

On Fri, Mar 18, 2011 at 5:51 AM,   wrote:


-- Forwarded message --
From: mossroy
To: community@lists.openmoko.org
Date: Fri, 18 Mar 2011 09:51:18 +0100
Subject: Re: qtmoko calendar / google calendar
It's certainly a timezone issue.
I suppose you don't use the same timezone in google calendar and in QtMoko.
I'll look into it, to see if I can fix that in the code.

Any other issues with this script?
I'm happy to see that it might be helpful for someone else than me :-)

Regards,
Mossroy

Le 18/03/2011 00:39, Wesley Frazier a écrit :

Ive been trying to setup these scripts here:
http://mossroy.free.fr/ics2qtcal/v0.4/ to download my google calendar
and sync it to my phone. Via the ics / private link download in google
calendar, with partial success.

Its working but there seems to be a time offset. All of the
appointments on the phone that were synced from the google calendar
are three or four hours ahead of their actual times.

Any advices/suggestions?



___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community



___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko calendar / google calendar

2011-03-21 Thread Wesley Frazier
All better, thanks!

Pretty neat to have my calendar on my phone now. Thinking about
wrapping it up in a cron job so it automatically tries to sync every
two hours or so.

> -- Forwarded message --
> From: mossroy 
> To: List for Openmoko community discussion 
> Date: Sat, 19 Mar 2011 12:12:17 +0100
> Subject: Re: qtmoko calendar / google calendar
> I uploaded a version 0.5 of the script on http://mossroy.free.fr/ics2qtcal/
> It now can handle correctly the date/times that are given in UTC format 
> (which was the case in the test ics file you sent me, generated by google 
> calendar)
>
> Please test it and let me know if it's ok for you.
>
> Le 18/03/2011 13:55, Wesley Frazier a écrit :
>>
>> QTMoko is set to "New York" for the timezone. Google Claendar is set
>> to "Eastern Standard". The timezones should match. It may be that
>> Google Calendar does not preserve the timezone data in the ics file.
>> It may present the entries in UTC or something.
>>
>> If there was a command-line option to just specify a time offset, I
>> think that would be enough for me.
>>
>> If you would like a test google calendar / ics file let me know. I can
>> provide one.
>>
>> Thanks!
>>
>> On Fri, Mar 18, 2011 at 5:51 AM,  
>> wrote:
>>
>>> -- Forwarded message --
>>> From: mossroy
>>> To: community@lists.openmoko.org
>>> Date: Fri, 18 Mar 2011 09:51:18 +0100
>>> Subject: Re: qtmoko calendar / google calendar
>>> It's certainly a timezone issue.
>>> I suppose you don't use the same timezone in google calendar and in QtMoko.
>>> I'll look into it, to see if I can fix that in the code.
>>>
>>> Any other issues with this script?
>>> I'm happy to see that it might be helpful for someone else than me :-)
>>>
>>> Regards,
>>> Mossroy
>>>
>>> Le 18/03/2011 00:39, Wesley Frazier a écrit :
>>>>
>>>> Ive been trying to setup these scripts here:
>>>> http://mossroy.free.fr/ics2qtcal/v0.4/ to download my google calendar
>>>> and sync it to my phone. Via the ics / private link download in google
>>>> calendar, with partial success.
>>>>
>>>> Its working but there seems to be a time offset. All of the
>>>> appointments on the phone that were synced from the google calendar
>>>> are three or four hours ahead of their actual times.
>>>>
>>>> Any advices/suggestions?
>>>>
>>>
>>>
>>> ___
>>> Openmoko community mailing list
>>> community@lists.openmoko.org
>>> http://lists.openmoko.org/mailman/listinfo/community
>>>
>>>

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko calendar / google calendar

2011-03-19 Thread mossroy

I uploaded a version 0.5 of the script on http://mossroy.free.fr/ics2qtcal/
It now can handle correctly the date/times that are given in UTC format 
(which was the case in the test ics file you sent me, generated by 
google calendar)


Please test it and let me know if it's ok for you.

Le 18/03/2011 13:55, Wesley Frazier a écrit :

QTMoko is set to "New York" for the timezone. Google Claendar is set
to "Eastern Standard". The timezones should match. It may be that
Google Calendar does not preserve the timezone data in the ics file.
It may present the entries in UTC or something.

If there was a command-line option to just specify a time offset, I
think that would be enough for me.

If you would like a test google calendar / ics file let me know. I can
provide one.

Thanks!

On Fri, Mar 18, 2011 at 5:51 AM,  wrote:


-- Forwarded message --
From: mossroy
To: community@lists.openmoko.org
Date: Fri, 18 Mar 2011 09:51:18 +0100
Subject: Re: qtmoko calendar / google calendar
It's certainly a timezone issue.
I suppose you don't use the same timezone in google calendar and in QtMoko.
I'll look into it, to see if I can fix that in the code.

Any other issues with this script?
I'm happy to see that it might be helpful for someone else than me :-)

Regards,
Mossroy

Le 18/03/2011 00:39, Wesley Frazier a écrit :

Ive been trying to setup these scripts here:
http://mossroy.free.fr/ics2qtcal/v0.4/ to download my google calendar
and sync it to my phone. Via the ics / private link download in google
calendar, with partial success.

Its working but there seems to be a time offset. All of the
appointments on the phone that were synced from the google calendar
are three or four hours ahead of their actual times.

Any advices/suggestions?




___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community







___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko calendar / google calendar

2011-03-18 Thread Wesley Frazier
QTMoko is set to "New York" for the timezone. Google Claendar is set
to "Eastern Standard". The timezones should match. It may be that
Google Calendar does not preserve the timezone data in the ics file.
It may present the entries in UTC or something.

If there was a command-line option to just specify a time offset, I
think that would be enough for me.

If you would like a test google calendar / ics file let me know. I can
provide one.

Thanks!

On Fri, Mar 18, 2011 at 5:51 AM,   wrote:

> -- Forwarded message --
> From: mossroy 
> To: community@lists.openmoko.org
> Date: Fri, 18 Mar 2011 09:51:18 +0100
> Subject: Re: qtmoko calendar / google calendar
> It's certainly a timezone issue.
> I suppose you don't use the same timezone in google calendar and in QtMoko.
> I'll look into it, to see if I can fix that in the code.
>
> Any other issues with this script?
> I'm happy to see that it might be helpful for someone else than me :-)
>
> Regards,
> Mossroy
>
> Le 18/03/2011 00:39, Wesley Frazier a écrit :
>>
>> Ive been trying to setup these scripts here:
>> http://mossroy.free.fr/ics2qtcal/v0.4/ to download my google calendar
>> and sync it to my phone. Via the ics / private link download in google
>> calendar, with partial success.
>>
>> Its working but there seems to be a time offset. All of the
>> appointments on the phone that were synced from the google calendar
>> are three or four hours ahead of their actual times.
>>
>> Any advices/suggestions?
>>
>
>
>
> ___
> Openmoko community mailing list
> community@lists.openmoko.org
> http://lists.openmoko.org/mailman/listinfo/community
>
>



-- 
Wes Frazier

"Nationalism is an infantile disease. It is the measles of mankind." -
Albert Einstein

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko calendar / google calendar

2011-03-18 Thread mossroy

It's certainly a timezone issue.
I suppose you don't use the same timezone in google calendar and in QtMoko.
I'll look into it, to see if I can fix that in the code.

Any other issues with this script?
I'm happy to see that it might be helpful for someone else than me :-)

Regards,
Mossroy

Le 18/03/2011 00:39, Wesley Frazier a écrit :

Ive been trying to setup these scripts here:
http://mossroy.free.fr/ics2qtcal/v0.4/ to download my google calendar
and sync it to my phone. Via the ics / private link download in google
calendar, with partial success.

Its working but there seems to be a time offset. All of the
appointments on the phone that were synced from the google calendar
are three or four hours ahead of their actual times.

Any advices/suggestions?



___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


qtmoko calendar / google calendar

2011-03-17 Thread Wesley Frazier
Ive been trying to setup these scripts here:
http://mossroy.free.fr/ics2qtcal/v0.4/ to download my google calendar
and sync it to my phone. Via the ics / private link download in google
calendar, with partial success.

Its working but there seems to be a time offset. All of the
appointments on the phone that were synced from the google calendar
are three or four hours ahead of their actual times.

Any advices/suggestions?

-- 
Wes Frazier

"Nationalism is an infantile disease. It is the measles of mankind." -
Albert Einstein

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Re : QtMoko calendar

2011-01-05 Thread Thomas Bellembois

Le 05/01/2011 07:39, mossroy a écrit :

Thomas Bellembois wrote :


 Is there a plan to develop a sync tool on QTMoko ?


Thomas,
I developed a very simple script that overwrites the content of QtMoko 
Calendar with the content of one or several iCal Files (.ics) that can 
be retrieved with HTTP
It works well enough to suit my needs, and the code is published here 
: http://mossroy.free.fr/ics2qtcal/

Note that this is not a two-way synchronization : only one-way

Anyway, it should still be considered as a work-in-progress, that 
should be improved at least in the following ways :
- add a way to launch the script from an icon in QtMoko (currently it 
must be launched from command-line)
- package the scripts, so that they can be installed easily (.deb ? 
.pkg?)

- add a GUI?

I would be glad to have some feedback on this script, and some help on 
the items listed above (I do not have much time to spend on it, and it 
already suits my needs)


Regards,
Mossroy


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community

Thanks Mossroy,

I will look at your script.
Somebody told me about remind 
(http://www.roaringpenguin.com/wiki/index.php/Remind) that can be used 
as a calendar. I will also look at this.

I will give you a feedback.

Regards,

Thomas

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re : QtMoko calendar

2011-01-04 Thread mossroy

Thomas Bellembois wrote :


 Is there a plan to develop a sync tool on QTMoko ?


Thomas,
I developed a very simple script that overwrites the content of QtMoko Calendar 
with the content of one or several iCal Files (.ics) that can be retrieved with 
HTTP
It works well enough to suit my needs, and the code is published here : 
http://mossroy.free.fr/ics2qtcal/
Note that this is not a two-way synchronization : only one-way

Anyway, it should still be considered as a work-in-progress, that should be 
improved at least in the following ways :
- add a way to launch the script from an icon in QtMoko (currently it must be 
launched from command-line)
- package the scripts, so that they can be installed easily (.deb ? .pkg?)
- add a GUI?

I would be glad to have some feedback on this script, and some help on the 
items listed above (I do not have much time to spend on it, and it already 
suits my needs)

Regards,
Mossroy


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


QtMoko calendar

2011-01-02 Thread Thomas Bellembois

Hello freerunners !

First I wish you an happy new year with lots of QTMoko releases ! ;)
In the QT help on the FR there is a section about remote calendar 
synchronisation (Google calendar), but I could not find any menu item to 
do that.

Is there a plan to develop a sync tool on QTMoko ?

Regards,

Thomas

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: pisi calendar sync over caldav?

2010-10-25 Thread W. B. Kranendonk
> Well. Sry. I'm atm busy with building a RepRap (Huxley)
> 
Good luck with the reprap :-)


  

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: pisi calendar sync over caldav?

2010-10-25 Thread David Lanzendörfer
>But in the pisi doc it states that it uses ics files over webdav which
>is not the same as caldav extension to webdav AFAIK. I don't have any
>ics file when accessing my calendar over caldav. I only have an url like
>http://www.myserver.de/mycal with username and password.
Ooops. Got you wrong. Sry.
Well... Nope. Not yet implemented it seems.
But you are free to add a plugin ^_^"

>That sounds interesting.
>The default dates application in shr-u is opimd-dates and i can install
>"dates" from the repo which is pimlico-dates. Evolution is not available
>in shr-u and from the looks it is way to huge for the freerunner. And
>what has opimd contacts to do with a caldav calendar or do you mean
>opimd dates? :)
What? Huh?
Since when?
Last time I checked, when I started dates, evolution was running in the 
background
and data was stored as ics file in evolution subdirectory...
Do we now have opimd also for dates managment?
Nice!

>Could you explain a bit more what you mean by "convert"?
Well it gets e.g. SyncML data and puts them into ics vcf format and 
vise-versa...

>I would really like to have a calendar which could sync to caldav itself
>like the iphone (seen at a friend's phone). :)
Well. Sry. I'm atm busy with building a RepRap (Huxley)
But you could implement it? =^.^=~

best regards
leviathan


signature.asc
Description: This is a digitally signed message part.
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: pisi calendar sync over caldav?

2010-10-25 Thread Fox Mulder
Am 25.10.2010 12:28, schrieb David Lanzendoerfer:
>> is it possible to sync a calendar application in shr-u with help of pisi
>> to an internet calendar (not google) which uses the standard caldav
>> protocol?
> Use the webdav option.
But in the pisi doc it states that it uses ics files over webdav which
is not the same as caldav extension to webdav AFAIK. I don't have any
ics file when accessing my calendar over caldav. I only have an url like
http://www.myserver.de/mycal with username and password.

>> I can't find any calendar application in shr-u which could sync by
>> itself to a caldav server so i thought pisi could do it. But i can't
>> find any settings for this case.
> You can convert evolution (dates) and also opimd (contacts)
> into webdav calendar (caldav) and vise-versa.
That sounds interesting.
The default dates application in shr-u is opimd-dates and i can install
"dates" from the repo which is pimlico-dates. Evolution is not available
in shr-u and from the looks it is way to huge for the freerunner. And
what has opimd contacts to do with a caldav calendar or do you mean
opimd dates? :)

Could you explain a bit more what you mean by "convert"?

I would really like to have a calendar which could sync to caldav itself
like the iphone (seen at a friend's phone). :)

Ciao,
 Rainer

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: pisi calendar sync over caldav?

2010-10-25 Thread David Lanzendoerfer
> Hi,
Hi Agent Mulder ;-)

> is it possible to sync a calendar application in shr-u with help of pisi
> to an internet calendar (not google) which uses the standard caldav
> protocol?
Use the webdav option.

> I can't find any calendar application in shr-u which could sync by
> itself to a caldav server so i thought pisi could do it. But i can't
> find any settings for this case.
You can convert evolution (dates) and also opimd (contacts)
into webdav calendar (caldav) and vise-versa.

> Ciao,
>  Rainer
I want to beliefe too ;-)
leviathan


signature.asc
Description: This is a digitally signed message part.
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


pisi calendar sync over caldav?

2010-10-25 Thread Fox Mulder
Hi,

is it possible to sync a calendar application in shr-u with help of pisi
to an internet calendar (not google) which uses the standard caldav
protocol?

I can't find any calendar application in shr-u which could sync by
itself to a caldav server so i thought pisi could do it. But i can't
find any settings for this case.

Ciao,
 Rainer

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Calendar app supporting 2 or more ICS files?

2010-01-13 Thread Christian Rüb
Hi,

does anyone know a calendar application - preferably for SHR - that does 
support more than 1 calendar and stores in ICS files?
dates (from pimlico) seems to support only one.

Thanks.

Cheers,
 Christian

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Sync Calendar with evolution

2009-10-20 Thread Michael Pilgermann
Hi Ali

> > 
> thank you for doing that, hopefully someone will take care of it, if not
> at least it's there.

for the programming bit I guess it will be me ... but there is loads of spare 
time in December and January ... so I am really positive about the progress of 
PISI then ...

> > 
> > PS: I have almost finished syncml support for PISI ... but - not before
> > December again ...
> > 
> > 
> looking forward to it! Free time is hard to come by; if you (or the PISI
> team) want to delegate any non-programming related tasks to me, I would
> be happy to lend a hand where I can.

Thanks a lot for that; I am really thankful for all the feedback on the list 
here ... bug reports and feature requests ... I collect them all currently; 
getting back to some "serious programming" very soon :)

Best
Michael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Sync Calendar with evolution

2009-10-18 Thread Ali
On Sun, 2009-10-18 at 20:41 +0200, Michael Pilgermann wrote:
> Ali,
> 
> I filed a feature request for that on PISI
> (https://projects.openmoko.org/tracker/index.php?func=detail&aid=286&group_id=156&atid=673)
> ...
> 
thank you for doing that, hopefully someone will take care of it, if not
at least it's there.
> I am really short in time these days; that will be better from December
> onwards; I will have a deeper look then.
>
> best regards
> Michael
> 
> PS: I have almost finished syncml support for PISI ... but - not before
> December again ...
> 
> 
looking forward to it! Free time is hard to come by; if you (or the PISI
team) want to delegate any non-programming related tasks to me, I would
be happy to lend a hand where I can.


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Sync Calendar with evolution

2009-10-18 Thread Michael Pilgermann
Ali,

I filed a feature request for that on PISI
(https://projects.openmoko.org/tracker/index.php?func=detail&aid=286&group_id=156&atid=673)
...

I am really short in time these days; that will be better from December
onwards; I will have a deeper look then.

best regards
Michael

PS: I have almost finished syncml support for PISI ... but - not before
December again ...


Ali wrote:
> Hi, is anyone working on an opensync plugin for qtmoko? I'm really
> starting to miss the ability to sync my calendar automatically- and I
> love qtmoko. I guess I could install evolution on the phone but that's
> way overkill and will probably bring my phone to a crawl. That being
> said, at this point I don't care which distro I have to use to sync, I
> just want it to happen.
> 
> I've heared of a program called Pisi, will it sync directly with
> evolution on my desktop, or do I have to use google calendar as a middle
> man?
> 
> Long question short, what are the distros/programs I can use to sync my
> calendar in evolution to the freerunner, preferably without using the
> internet? 
> 
> 
> ___
> Openmoko community mailing list
> community@lists.openmoko.org
> http://lists.openmoko.org/mailman/listinfo/community


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Sync Calendar with evolution

2009-10-16 Thread Ali
Hi, is anyone working on an opensync plugin for qtmoko? I'm really
starting to miss the ability to sync my calendar automatically- and I
love qtmoko. I guess I could install evolution on the phone but that's
way overkill and will probably bring my phone to a crawl. That being
said, at this point I don't care which distro I have to use to sync, I
just want it to happen.

I've heared of a program called Pisi, will it sync directly with
evolution on my desktop, or do I have to use google calendar as a middle
man?

Long question short, what are the distros/programs I can use to sync my
calendar in evolution to the freerunner, preferably without using the
internet? 


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [Om2009] calendar?

2009-07-08 Thread Robin Paulson
2009/7/9 Jeremy McNaughton :
> Since getting my phone back from being buzz-fixed (thanks SDG!) I've
> been using Om2009-unstable as my daily phone with no problems.
>
> Now that I'm using my phone more regularly, I started looking around
> for a calendar.
>
> Unfortunately I can't seem to find a calendar in the repositories, or
> on opkg.org.  All I can find is knjMokoCalendar, which looks good but
> I'd rather keep Google out of the loop.
>
> Are there Om2009-compatible packages for GPE-Calendar or Pimlico?
> It's possible I missed them, or I just don't know where to look.
>
> What are other people using for a calendar?

i think dates (aka pimlico) is in the om2009 feed

it might be called openmoko-dates2 or something.

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [Om2009] calendar?

2009-07-08 Thread Bernd Prünster
Jeremy McNaughton schrieb:
> Hi everyone,
>
> Since getting my phone back from being buzz-fixed (thanks SDG!) I've
> been using Om2009-unstable as my daily phone with no problems.
>
> Now that I'm using my phone more regularly, I started looking around
> for a calendar.
>
> Unfortunately I can't seem to find a calendar in the repositories, or
> on opkg.org.  All I can find is knjMokoCalendar, which looks good but
> I'd rather keep Google out of the loop.
>
> Are there Om2009-compatible packages for GPE-Calendar or Pimlico?
> It's possible I missed them, or I just don't know where to look.
>
> What are other people using for a calendar?
>
>
> thanks,
>
> Jeremy
>
>   
SHR feed is worth a try since om2009 and shr are fso ms5.5 based...

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


[Om2009] calendar?

2009-07-08 Thread Jeremy McNaughton
Hi everyone,

Since getting my phone back from being buzz-fixed (thanks SDG!) I've
been using Om2009-unstable as my daily phone with no problems.

Now that I'm using my phone more regularly, I started looking around
for a calendar.

Unfortunately I can't seem to find a calendar in the repositories, or
on opkg.org.  All I can find is knjMokoCalendar, which looks good but
I'd rather keep Google out of the loop.

Are there Om2009-compatible packages for GPE-Calendar or Pimlico?
It's possible I missed them, or I just don't know where to look.

What are other people using for a calendar?


thanks,

Jeremy

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: gpe-calendar disables touch-screen

2009-05-12 Thread William Kenworthy
I found this doesnt happen if I restart atd immediately after booting
the phone - only has to be done once before running gpe-calendar (or
ffalarms) for the first time.  Also see my similar answer to ffalarms
also having problems with atd on shr.

I would like a solution to the the gpe-alarm going off and being unable
to ack it or do anything at all.  All I can do is remove the battery,
boot phone an restart atd - the start gpe-calendar and try and ack the
alarm :(

Probably atd is being started too early in the boot process ...

BillK


On Tue, 2009-05-12 at 16:44 -0600, Laura Vance wrote:
> I've waited to ask about this problem to see if anyone else has 
> experienced it.
> 
> I use gpe-calendar as my calendar software (tried "dates" but didn't 
> like it).  Every once in a while, when gpe-calendar is the visible app, 
> the touch screen stops working.  I can connect my FreeRunner to a 
> computer, SSH in, and kill gpe-calendar to get my touchscreen back, but 
> when I'm not near a computer that has the proper drivers installed, I 
> have to reboot my phone by holding the power button down until the 
> FreeRunner just shuts down.
> 
> Has this happened to anyone else?  Is there a workaround that I just 
> haven't found yet?  Is there a better calendar/reminder app that I 
> haven't found yet?
> 
> Thanks in advance,
> 
> -Laura
> 
> ___
> Openmoko community mailing list
> community@lists.openmoko.org
> http://lists.openmoko.org/mailman/listinfo/community
-- 
William Kenworthy 
Home in Perth!


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: gpe-calendar disables touch-screen

2009-05-12 Thread Timo Juhani Lindfors
Laura Vance  writes:
> Has this happened to anyone else?  Is there a workaround that I just 
> haven't found yet?  Is there a better calendar/reminder app that I 

Yes, I reported this 56 days ago:

http://bugs.debian.org/gpe-calendar

* #520156 [i|  |*] [gpe-calendar] gpe-calendar: adding new calendar event 
sometimes grabs mouse and prevents its use completely


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: gpe-calendar disables touch-screen

2009-05-12 Thread jeremy jozwik
dates works great for me. provided you switch to the GTK theme so you
can see the zoom button. i gave up on gpe a few hours after installing
it

On Tue, May 12, 2009 at 3:44 PM, Laura Vance  wrote:
> I've waited to ask about this problem to see if anyone else has
> experienced it.
>
> I use gpe-calendar as my calendar software (tried "dates" but didn't
> like it).  Every once in a while, when gpe-calendar is the visible app,
> the touch screen stops working.  I can connect my FreeRunner to a
> computer, SSH in, and kill gpe-calendar to get my touchscreen back, but
> when I'm not near a computer that has the proper drivers installed, I
> have to reboot my phone by holding the power button down until the
> FreeRunner just shuts down.
>
> Has this happened to anyone else?  Is there a workaround that I just
> haven't found yet?  Is there a better calendar/reminder app that I
> haven't found yet?
>
> Thanks in advance,
>
> -Laura
>
> ___
> Openmoko community mailing list
> community@lists.openmoko.org
> http://lists.openmoko.org/mailman/listinfo/community
>

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


gpe-calendar disables touch-screen

2009-05-12 Thread Laura Vance
I've waited to ask about this problem to see if anyone else has 
experienced it.

I use gpe-calendar as my calendar software (tried "dates" but didn't 
like it).  Every once in a while, when gpe-calendar is the visible app, 
the touch screen stops working.  I can connect my FreeRunner to a 
computer, SSH in, and kill gpe-calendar to get my touchscreen back, but 
when I'm not near a computer that has the proper drivers installed, I 
have to reboot my phone by holding the power button down until the 
FreeRunner just shuts down.

Has this happened to anyone else?  Is there a workaround that I just 
haven't found yet?  Is there a better calendar/reminder app that I 
haven't found yet?

Thanks in advance,

-Laura

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


[Om2008.9] calendar app wanted

2008-11-07 Thread Matthias Apitz

Hello,

Is there some small calendar application I could use with Om2008.9? I
saw gpe-calendar_0.92-r0.1_armv4t.ipk, but this need a lot of other
stuff to be more recent:

# opkg install gpe-calendar_0.92-r0.1_armv4t.ipk 
Installing gpe-calendar (0.92-r0.1) to root...
Collected errors:
 * ERROR: Cannot satisfy the following dependencies for gpe-calendar:
  *  libgpevtype1 (>= 0.50) *  libmimedir-0.4-0 (>= 0.4.2) *
  *  libeventdb2 (>= 0.90) *  libhandoff0 (>= 0.1) *
  *  libgthread-2.0-0 (>= 2.18.1) *  libxml2 (>= 2.7.2) *
  *  libgcrypt11 (>= 1.4.1) *  libsoundgen0 (>= 0.6) *
  *  libdbus-glib-1-2 (>= 0.76) *  libdbus-1-3 (>= 1.2.1) *
  *  libschedule0 (>= 0.17) *  gtk+ (>= 2.14.2) *  libgio-2.0-0
  *  (>= 2.18.1) *  pango (>= 1.22.0) *  libcairo2 (>= 1.7.6) *
  *  libpixman-1-0 (>= 0.12.0) *  libpng12-0 (>= 1.2.31) *
  *  libgobject-2.0-0 (>= 2.18.1) *  libgmodule-2.0-0 (>=
  *  2.18.1) *  libglib-2.0-0 (>= 2.18.1) * 

Maybe something like http://www.bitrot.de/plan.html ???

Thx

matthias
-- 
Matthias Apitz
Manager Technical Support - OCLC GmbH
Gruenwalder Weg 28g - 82041 Oberhaching - Germany
t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
e <[EMAIL PROTECTED]> - w http://www.oclc.org/ http://www.UnixArea.de/
b http://gurucubano.blogspot.com/
A computer is like an air conditioner, it stops working when you open Windows
Una computadora es como aire acondicionado, deja de funcionar si abres Windows

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Calendar : poor visibility of days with appointments in month view

2008-10-27 Thread julien cubizolles
Le lundi 27 octobre 2008 à 18:04 +0100, arne anka a écrit :
> please, prefix your posting's subject with the name of the distribution  
> you're using -- like everybody else does.

I didn't since this problem will occur with any distribution using the
qtopia pim applications : Om2009, qtopia (for the one I tried).


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Calendar : poor visibility of days with appointments in month view

2008-10-27 Thread arne anka
please, prefix your posting's subject with the name of the distribution  
you're using -- like everybody else does.

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Calendar : poor visibility of days with appointments in month view

2008-10-27 Thread julien cubizolles
In month view, the days for wich an appointment has been set are written
in bold face. But the difference with the regular days is really hard to
notice. Changing the background would improve the visibility. Anybody
knows how to configure it ?



___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Calendar program and sync it with my mac?

2008-09-22 Thread andi

>
> It doesn't fulfill all your requirements but try openmoko-dates. I'm
> actually pretty impressed with the calendar part although it sometimes
> plays tricks on me. No todos however and it doesn't seem to support
> exceptions to recurring events and doesn't let them to be individually
> changed while keeping the rest of recurs intact. It has a solid
> interface however and it's quite usable at this stage. It also uses ics
> files for the events so these could be quite easily imported to your
> mac. Oh, I haven't find a way to set notifications eighter. Well, long
> story short, just try it.
>
>   
I have copied the calendar.ics file with a test event to my pc, which 
then showed the event. but then I added
a new event on the pc and copied the file back, and the openmoko-dates 
did not show the new event... This is
annoying, because for syncing you need both ways ;-)
I already tried different calender programs (sunbird and dates) .

any ideas??

thx!
andi

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Calendar program and sync it with my mac?

2008-09-20 Thread Ole Holm Frandsen

Den 20/09/2008 kl. 19.13 skrev Yogiz:

> On Sat, 20 Sep 2008 18:16:08 +0200
> Ole Holm Frandsen <[EMAIL PROTECTED]> wrote:
>
>> Hey there everyone
>>
>> I was wondering if there was a good and functionable calendar
>> program for the Neo Freerunner? What I need is basicly a calendar
>> program where I can see appointments, get notifications and so on -
>> ofcource it would be nice, with a good overview of once appointments
>> and so on. Even more, it would be nice if I - somehow - can sync
>> these calendar entries with iCal on my Macbook Pro?
>>
>> Kindly regards
>> Ole Holm Frandsen alias Froksen
>>
>
> It doesn't fulfill all your requirements but try openmoko-dates. I'm
> actually pretty impressed with the calendar part although it sometimes
> plays tricks on me. No todos however and it doesn't seem to support
> exceptions to recurring events and doesn't let them to be individually
> changed while keeping the rest of recurs intact. It has a solid
> interface however and it's quite usable at this stage. It also uses  
> ics
> files for the events so these could be quite easily imported to your
> mac. Oh, I haven't find a way to set notifications eighter. Well, long
> story short, just try it.
>
> opkg install openmoko-dates
>
> Yogiz
>
> ___
> Openmoko community mailing list
> community@lists.openmoko.org
> http://lists.openmoko.org/mailman/listinfo/community

Thanks for the answer Yogiz, i´ll look into it. I do not yet have my  
Freerunner, so I have just been looking at some screenshots of the  
program and it looks very much like the ting I was looking for -  
although of cource the sync with my mac is still lacking, but hey,  
thats not the freerunners/programs fault and lets hope this feature  
will be possible in the future. So thanks again.

//Froksen
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Calendar program and sync it with my mac?

2008-09-20 Thread Yogiz
On Sat, 20 Sep 2008 18:16:08 +0200
Ole Holm Frandsen <[EMAIL PROTECTED]> wrote:

> Hey there everyone
> 
> I was wondering if there was a good and functionable calendar
> program for the Neo Freerunner? What I need is basicly a calendar
> program where I can see appointments, get notifications and so on -
> ofcource it would be nice, with a good overview of once appointments
> and so on. Even more, it would be nice if I - somehow - can sync
> these calendar entries with iCal on my Macbook Pro?
> 
> Kindly regards
> Ole Holm Frandsen alias Froksen
> 

It doesn't fulfill all your requirements but try openmoko-dates. I'm
actually pretty impressed with the calendar part although it sometimes
plays tricks on me. No todos however and it doesn't seem to support
exceptions to recurring events and doesn't let them to be individually
changed while keeping the rest of recurs intact. It has a solid
interface however and it's quite usable at this stage. It also uses ics
files for the events so these could be quite easily imported to your
mac. Oh, I haven't find a way to set notifications eighter. Well, long
story short, just try it.

opkg install openmoko-dates

Yogiz

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Calendar program and sync it with my mac?

2008-09-20 Thread Ole Holm Frandsen
Hey there everyone

I was wondering if there was a good and functionable calendar program  
for the Neo Freerunner? What I need is basicly a calendar program  
where I can see appointments, get notifications and so on - ofcource  
it would be nice, with a good overview of once appointments and so on.
Even more, it would be nice if I - somehow - can sync these calendar  
entries with iCal on my Macbook Pro?

Kindly regards
Ole Holm Frandsen alias Froksen

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


calendar solution

2008-08-27 Thread Warren Baird
Hi all,

With Raster's image for the keyboard, and the latest updates from zecke's
testing branch, I'm finding my freerunner to be moderately usable as a
phone.

However, I'm greedy, and I'd like to get some basic PDA functionality
working.  :-)

Is there a calendar solution available right now that will do the following:
1)  Beep/Buzz to alert me about appointments
2) allow me to import .ical or .vcal files so I can bring my apointments
from my desktop calendar app to my phone
3) allow me to edit calendar entries - either by hand, or by importing an
updated .ical file (without creating dups)

At the moment my 'calendar' solution is to sync my .ical files to google
calendar and rely on the google calendar sms notifications, since as of this
morning, google calendar notifications work.  However, this isn't a great
solution, and I'd much rather be able to have my calendar with my on my
phone.

Any suggestions?

Warren
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: 2008.08 - qtopia calendar is quiet

2008-08-21 Thread Robert William Hutton
nickd wrote:
> I think my clock is not persisting between boots

"No matter which method you used above, sync the hardware clock with the 
system time to make your change persist over reboots"

http://wiki.openmoko.org/wiki/Setting_Date_and_Time#Syncing_the_hardware_clock

Cheers,

Rob

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: 2008.08 - qtopia calendar is quiet

2008-08-21 Thread nickd
Oops missed the "2008.08" bit. I'm using the August 08 build of Qtopia 
not 2008.08 itself. Sorry.
-Nick

Michael Kluge wrote:
> Hmm. Does not work for me even after a fresh boot. Could please send me the 
> relevant settings for this (if you know which are relevant ;) ) ? I'm not 
> sure about all knobs that I could twist. It maybe even be a timezone problem. 
>
>
> Michael
>
> Am Donnerstag, 21. August 2008 07:56:22 schrieb nickd:
>   
>> Same happens to me both on and suspended. Using August 08 build.  Alarm
>> works fine though. Even brings it out of suspend which is nice :)
>>
>> -Nick
>>
>> Michael Kluge wrote:
>> 
>>> Hi,
>>>
>>> can anyone confirm that the qtopia calendar application does not make any
>>> attempt to make a noise when it is supposed to? I put an event into it,
>>> marked it as "ring 5 minutes before" and nothing happend. Anyone with the
>>> same/different experience?
>>>
>>>
>>> Regards, Michael
>>>
>>> ___
>>> Openmoko community mailing list
>>> community@lists.openmoko.org
>>> http://lists.openmoko.org/mailman/listinfo/community
>>>   
>> ___
>> Openmoko community mailing list
>> community@lists.openmoko.org
>> http://lists.openmoko.org/mailman/listinfo/community
>> 
>
> ___
> Openmoko community mailing list
> community@lists.openmoko.org
> http://lists.openmoko.org/mailman/listinfo/community
>   


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: 2008.08 - qtopia calendar is quiet

2008-08-21 Thread nickd
Just had default settings for the Alarm plus adjusting the timezone. I 
think my clock is not persisting between boots so make sure your clock 
is right. Not sure if it's just me.
-Nick

Michael Kluge wrote:
> Hmm. Does not work for me even after a fresh boot. Could please send me the 
> relevant settings for this (if you know which are relevant ;) ) ? I'm not 
> sure about all knobs that I could twist. It maybe even be a timezone problem. 
>
>
> Michael
>
> Am Donnerstag, 21. August 2008 07:56:22 schrieb nickd:
>   
>> Same happens to me both on and suspended. Using August 08 build.  Alarm
>> works fine though. Even brings it out of suspend which is nice :)
>>
>> -Nick
>>
>> Michael Kluge wrote:
>> 
>>> Hi,
>>>
>>> can anyone confirm that the qtopia calendar application does not make any
>>> attempt to make a noise when it is supposed to? I put an event into it,
>>> marked it as "ring 5 minutes before" and nothing happend. Anyone with the
>>> same/different experience?
>>>
>>>
>>> Regards, Michael
>>>
>>> ___
>>> Openmoko community mailing list
>>> community@lists.openmoko.org
>>> http://lists.openmoko.org/mailman/listinfo/community
>>>   
>> ___
>> Openmoko community mailing list
>> community@lists.openmoko.org
>> http://lists.openmoko.org/mailman/listinfo/community
>> 
>
> ___
> Openmoko community mailing list
> community@lists.openmoko.org
> http://lists.openmoko.org/mailman/listinfo/community
>   


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: 2008.08 - qtopia calendar is quiet

2008-08-20 Thread Michael Kluge
Hmm. Does not work for me even after a fresh boot. Could please send me the 
relevant settings for this (if you know which are relevant ;) ) ? I'm not 
sure about all knobs that I could twist. It maybe even be a timezone problem. 


Michael

Am Donnerstag, 21. August 2008 07:56:22 schrieb nickd:
> Same happens to me both on and suspended. Using August 08 build.  Alarm
> works fine though. Even brings it out of suspend which is nice :)
>
> -Nick
>
> Michael Kluge wrote:
> > Hi,
> >
> > can anyone confirm that the qtopia calendar application does not make any
> > attempt to make a noise when it is supposed to? I put an event into it,
> > marked it as "ring 5 minutes before" and nothing happend. Anyone with the
> > same/different experience?
> >
> >
> > Regards, Michael
> >
> > ___
> > Openmoko community mailing list
> > community@lists.openmoko.org
> > http://lists.openmoko.org/mailman/listinfo/community
>
> ___
> Openmoko community mailing list
> community@lists.openmoko.org
> http://lists.openmoko.org/mailman/listinfo/community

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: 2008.08 - qtopia calendar is quiet

2008-08-20 Thread nickd
Same happens to me both on and suspended. Using August 08 build.  Alarm 
works fine though. Even brings it out of suspend which is nice :)

-Nick

Michael Kluge wrote:
> Hi,
>
> can anyone confirm that the qtopia calendar application does not make any 
> attempt to make a noise when it is supposed to? I put an event into it, 
> marked it as "ring 5 minutes before" and nothing happend. Anyone with the 
> same/different experience? 
>
>
> Regards, Michael
>
> ___
> Openmoko community mailing list
> community@lists.openmoko.org
> http://lists.openmoko.org/mailman/listinfo/community
>   


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


2008.08 - qtopia calendar is quiet

2008-08-20 Thread Michael Kluge
Hi,

can anyone confirm that the qtopia calendar application does not make any 
attempt to make a noise when it is supposed to? I put an event into it, 
marked it as "ring 5 minutes before" and nothing happend. Anyone with the 
same/different experience? 


Regards, Michael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Calendar events

2008-07-17 Thread Curtis Vaughan
I added my commentary.

I can also note that there is one other issue.
I wanted to enter 14 for the hours. But you can't just enter that. In 
order to get to 14 you can only click on the up arrow. In fact, you can't 
even enter 12.


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Calendar events

2008-07-17 Thread Brian C
Curtis Vaughan wrote:
> I've noticed a strange issue with the calendar.
> So I created the same event again, but left it at it's default time of 
> 09:00. OK, it was there. So then I changed the time to 14:00 and closed 
> out it. It was still set at 09:00.
> Any clues on what's up?

Thank you for confirming the bug I reported here:
http://docs.openmoko.org/trac/ticket/1612

The calendar program does not allow one to edit the time of an event
once it is initially entered.  So, right now it's a great calendar for
people who never make mistakes...

In all seriousness, if you could add your experience to that bug perhaps
 someone would take a look at it.

Brian

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Calendar events

2008-07-17 Thread Curtis Vaughan
I've noticed a strange issue with the calendar.
I created one event that happens yearly. So there is no time associated. 
It was saved fine.
Then I created an event that is to start at 14:00. After creating it, but 
after closing out of it, it was gone.
So I created the same event again, but left it at it's default time of 
09:00. OK, it was there. So then I changed the time to 14:00 and closed 
out it. It was still set at 09:00.
Any clues on what's up?


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Calendar

2008-07-17 Thread Roland Mas
Steven **, 2008-07-17 14:56:39 -0500 :

> I believe the command to install it is: opkg install openmoko-dates2
>
> It works ok.  It's just really slow sometimes.

I gather it's based on the EDS backend.  So, for the obvious question:
can one make that EDS talk to a remote calendar server?  I have a
CalDAV server that I use with Sunbird/Iceowl and Evolution, on both my
main computer and my laptop when I'm away from home, and I'd just
*love* to access it from my phone too.  Any insight would be most
welcome.

Roland.
-- 
Roland Mas

Plant a radish, get a radish, never any doubt!
  -- Bellamy & Hucklebee, in The Fantasticks

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Calendar

2008-07-17 Thread Steven **
I believe the command to install it is:
opkg install openmoko-dates2

It works ok.  It's just really slow sometimes.

-Steven

On Thu, Jul 17, 2008 at 2:49 PM, Curtis Vaughan <[EMAIL PROTECTED]> wrote:
> Just got the FR yesterday and have been more or less getting it set up
> the way I want. I notice there is a calendar app at the top, but it is
> slightly greyed out and of course it doesn't run.
> Looking at the wiki's I see mention of a calendar app, but nothing about
> installing it. Do I need to install it, if so how exactly. Or is it not
> ready perhaps?
>
>
> ___
> Openmoko community mailing list
> community@lists.openmoko.org
> http://lists.openmoko.org/mailman/listinfo/community
>

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Calendar

2008-07-17 Thread Curtis Vaughan
Just got the FR yesterday and have been more or less getting it set up 
the way I want. I notice there is a calendar app at the top, but it is 
slightly greyed out and of course it doesn't run.
Looking at the wiki's I see mention of a calendar app, but nothing about 
installing it. Do I need to install it, if so how exactly. Or is it not 
ready perhaps?


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Synchronize Calendar, Contacts of Neo with Lotus Notes, Outlook, etc.

2006-12-06 Thread Sean Moss-Pultz
On 12/6/06 4:50 AM, "Dennis Günnewig" <[EMAIL PROTECTED]> wrote:

> 1)A software packet which enables me to synchronize my calendar, contacts
> etc. on Neo with Lotus Notes and/or MS Outlook.

We're working with Funambol on sync and push stuff. So this should be OK
from a framework standpoint. It will take some revisions to get the software
(client side) refined.
 
> 2) An option which marks private appointments as private, so that only I'm
> able to watch them in my business calendar

Is this something that Outlook allows? If it's standard, then I'm pretty
sure Funambol will make sure we can support this feature.

-Sean


___
OpenMoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/cgi-bin/mailman/listinfo/community


Re: Synchronize Calendar, Contacts of Neo with Lotus Notes, Outlook, etc.

2006-12-05 Thread Richard Franks
On Tue, 2006-12-05 at 20:50 +0100, Dennis Günnewig wrote:
> Hey @all,
> 
> at the company we use Lotus Notes. As I'm really interested in using the  
> neo for business and private purposes two things are important for me.
> 
> 1)A software packet which enables me to synchronize my calendar, contacts  
> etc. on Neo with Lotus Notes and/or MS Outlook.

I know that OpenMoko partnered with Funambol, to provide synchronisation
services:
http://www.funambol.com/

But we don't know the details or scope of that deal - certainly it
appears that Funambol have hooks into Lotus/Outlook - whether that is
included as part of the deal I couldn't speculate really.

Richard

___
OpenMoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/cgi-bin/mailman/listinfo/community


Re: Synchronize Calendar, Contacts of Neo with Lotus Notes, Outlook, etc.

2006-12-05 Thread Jeff Andros


at the company we use Lotus Notes. As I'm really interested in using the
neo for business and private purposes two things are important for me.



Lotus was part of the syncml initiative, so I'm pretty sure you're golden

1)A software packet which enables me to synchronize my calendar, contacts

etc. on Neo with Lotus Notes and/or MS Outlook.

2) An option which marks private appointments as private, so that only I'm
able to watch them in my business calendar



not sure here, if you're asking to exclude items from sync... we could
probably make that happen if it's not included in the initial release

Are there any plans which consider my whishes?


Best regards,
Dennis Günnewig

___
OpenMoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/cgi-bin/mailman/listinfo/community



The neo supports SyncML which is standardized. I have a connector for
outlook over bluetooth right now, so that works, and lotus was one of the
original supporters, so you should be able to use that there... ah the
wonderful world of standards!

sounds like it should take care of what you need, but I'd wait for Sean or
one of the developers if you need official confirmation
--
--Jeff
What DO you call whitewater when you live in the desert?
___
OpenMoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/cgi-bin/mailman/listinfo/community


Synchronize Calendar, Contacts of Neo with Lotus Notes, Outlook, etc.

2006-12-05 Thread Dennis Günnewig

Hey @all,

at the company we use Lotus Notes. As I'm really interested in using the  
neo for business and private purposes two things are important for me.


1)A software packet which enables me to synchronize my calendar, contacts  
etc. on Neo with Lotus Notes and/or MS Outlook.


2) An option which marks private appointments as private, so that only I'm  
able to watch them in my business calendar


Are there any plans which consider my whishes?

Best regards,
Dennis Günnewig

___
OpenMoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/cgi-bin/mailman/listinfo/community