Re: calendar-backend API: CCalendar's entries empty

2010-11-06 Thread Filip-M. Brinkmann
_ > maemo-developers mailing list > maemo-developers@maemo.org > https://lists.maemo.org/mailman/listinfo/maemo-developers > > > For debugging purpose you can create an empty file: > /home/user/.calendar/log > (reboot may necessary) >

Re: calendar-backend API: CCalendar's entries empty

2010-11-05 Thread Nicolai Hess
pers mailing list > maemo-developers@maemo.org > https://lists.maemo.org/mailman/listinfo/maemo-developers > For debugging purpose you can create an empty file: /home/user/.calendar/log (reboot may necessary) This file indicates the calendar-backend to log ALL sql and results as syslo

calendar-backend API: CCalendar's entries empty

2010-11-05 Thread Filip-M. Brinkmann
Hi all, I'd like to code a small Todo-list widget, which shows all due to-dos on the desktop. I started today, but I cannot access the to-dos because the CCalendar instances don't return any entries. I have 2 Calendars on my N900 and I get two calendar instances back, which is fine. They return th

calendar backend, CMulticalendar and importIcsFileData

2009-12-11 Thread Pierre Amadio
Hello. I am trying to understand how the calendar api works: http://maemo.org/api_refs/5.0/beta/calendar-backend/ I have several ical calendar exported from zimbra that i wish to import in a calendar on the n900. I manage to make something that seems to work (see attachement), but i realise i

Re: calendar-backend

2009-06-29 Thread BenoƮt HERVIER
Hum ... and a python one ? 2009/6/13 Sebastian 'CrashandDie' Lauwers : > It is very easy to write C++ code that is usable by C compilers. > Considering there is apparently a notable demand for a C interface, > pushing for an enhancement request early in the project may be an > interesting thing to

Re: calendar-backend

2009-06-12 Thread Sebastian 'CrashandDie' Lauwers
It is very easy to write C++ code that is usable by C compilers. Considering there is apparently a notable demand for a C interface, pushing for an enhancement request early in the project may be an interesting thing to do. The code change is relatively minimal if architectured correctly and would

Re: calendar-backend

2009-06-11 Thread Hubert Figuiere
On 06/11/2009 05:01 PM, Jamie Bennett wrote: > Forgive my ignorance but is it 10x longer to compile or 10x increment > in speed? Compilation speed is a matter of grabbing two coffee's > instead of one, run time speed is a matter of giving up completely. C code compiled by g++ isn't slower or faste

Re: calendar-backend

2009-06-11 Thread gary liquid
heh Jamie, its 10x (might be slight exag) longer to compile. i normally make code changes and compile the 2 or 3 modules I've been working on. its quick and simple. with c++ even the simplest files are slow. its like waiting for visual studio to run, an age. and my method of on device compilation

Re: calendar-backend

2009-06-11 Thread Jamie Bennett
On 11 Jun 2009, at 21:08, gary liquid wrote: > Hubert, > > Compiling my pure C in a C++ compiler is indeed possible. > However, it takes 10x longer on my tablet to compile even simple > programs using a c++ compiler. > > I don't mind if the libs aren't available, it was just a nicety for me > - t

Re: calendar-backend

2009-06-11 Thread gary liquid
Hubert, Compiling my pure C in a C++ compiler is indeed possible. However, it takes 10x longer on my tablet to compile even simple programs using a c++ compiler. I don't mind if the libs aren't available, it was just a nicety for me - there will be other libraries that are usable as required I am

Re: calendar-backend

2009-06-11 Thread Jamie Bennett
On 11 Jun 2009, at 17:15, Hubert Figuiere wrote: > On 06/10/2009 07:32 AM, Sampo Savola wrote: >> There seems to be only C++ interface for this. >> >> How should this be used in C application, >> is there going to be C interface also? > > You can mix C and C++ easily. You can recompile your C code

Re: calendar-backend

2009-06-11 Thread Hubert Figuiere
On 06/10/2009 07:32 AM, Sampo Savola wrote: > There seems to be only C++ interface for this. > > How should this be used in C application, > is there going to be C interface also? You can mix C and C++ easily. You can recompile your C code with a C++ compiler[1]. Hub [1] possibly with a few c

Re: calendar-backend

2009-06-11 Thread Soumya Bijjal
; > > > With Fremantle beta sdk there comes this, calendar-backend : > > http://maemo.org/api_refs/5.0/beta/calendar-backend/ > > > > There seems to be only C++ interface for this. > > > > How should th

Re: calendar-backend

2009-06-10 Thread gary liquid
Sampo, I would also be interested in a C api to the same calendar backend. Obviously my calendar is very simplistic and sketch based, but it would be of obvious benefit to allow system calendar entries to be visible there :) Gary On Wed, Jun 10, 2009 at 12:32 PM, Sampo Savola wrote: >

calendar-backend

2009-06-10 Thread Sampo Savola
Hey With Fremantle beta sdk there comes this, calendar-backend : http://maemo.org/api_refs/5.0/beta/calendar-backend/ There seems to be only C++ interface for this. How should this be used in C application, is there going to be C interface also? //Sampo