Nicolas | 1 May 2009 20:42
Picon
Favicon

OpenSync update

Hi,

Just to say, I work with the last revision of opensync framework (r5634)
and all work well.

Some bugs have been fixed.

Regards,

--

-- 
Nicolas VIVIEN

------------------------------------------------------------------------------
Register Now & Save for Velocity, the Web Performance & Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance & Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
Nicolas | 1 May 2009 20:43
Picon
Favicon

[PATCH] ZSH completion

Hi,

a little patch

--

-- 
Nicolas VIVIEN
------------------------------------------------------------------------------
Register Now & Save for Velocity, the Web Performance & Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance & Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
_______________________________________________
Barry-devel mailing list
Barry-devel@...
https://lists.sourceforge.net/lists/listinfo/barry-devel
Nicolas | 1 May 2009 20:46
Picon
Favicon

[PATCH] Memo sync support

Hi,

I have just added the Memo sync support.

NB: Tomorrow, I'll work to add task sync support.

Regards,

--

-- 
Nicolas VIVIEN
------------------------------------------------------------------------------
Register Now & Save for Velocity, the Web Performance & Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance & Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
_______________________________________________
Barry-devel mailing list
Barry-devel@...
https://lists.sourceforge.net/lists/listinfo/barry-devel
Chris Frey | 1 May 2009 20:48

Re: [PATCH] ZSH completion

On Fri, May 01, 2009 at 08:43:45PM +0200, Nicolas wrote:
> Hi,
> 
> a little patch

Applied, thanks!
- Chris

------------------------------------------------------------------------------
Register Now & Save for Velocity, the Web Performance & Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance & Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
Chris Frey | 1 May 2009 21:21

Re: [PATCH] Memo sync support

On Fri, May 01, 2009 at 08:46:08PM +0200, Nicolas wrote:
> Hi,
> 
> I have just added the Memo sync support.

Applied, with minor changes, and an update to btool.  Thanks very much!

Can you retest on your side to make sure that my change to r_memo.cc's
builder function is ok on the Storm?  I added the MEMO_TYPE field, set to
'm', since that's how we get the data from the device.

My only worry is this code:

+       string title = GetAttr("SUMMARY", "/vjournal");
+       trace.logf("SUMMARY attr retrieved: %s", title.c_str());
+       if( title.size() == 0 ) {
+               title = "<blank subject>";
+               trace.logf("ERROR: bad data, blank SUMMARY: %s", vjournal);
+       }

What happens if, for example, Evolution has a blank memo title, we add
a "blank subject" line to it, and then you sync again?  Won't that duplicate
the record on the following sync?

- Chris

------------------------------------------------------------------------------
Register Now & Save for Velocity, the Web Performance & Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
(Continue reading)

Nicolas | 1 May 2009 22:02
Picon
Favicon

Re: [PATCH] Memo sync support

Le vendredi 01 mai 2009 à 15:21 -0400, Chris Frey a écrit :
> On Fri, May 01, 2009 at 08:46:08PM +0200, Nicolas wrote:
> > Hi,
> > 
> > I have just added the Memo sync support.
> 
> Applied, with minor changes, and an update to btool.  Thanks very much!
> 
> Can you retest on your side to make sure that my change to r_memo.cc's
> builder function is ok on the Storm?  I added the MEMO_TYPE field, set to
> 'm', since that's how we get the data from the device.

It's OK for me and my BlackBerry Storm :)

> My only worry is this code:
> 
> +       string title = GetAttr("SUMMARY", "/vjournal");
> +       trace.logf("SUMMARY attr retrieved: %s", title.c_str());
> +       if( title.size() == 0 ) {
> +               title = "<blank subject>";
> +               trace.logf("ERROR: bad data, blank SUMMARY: %s", vjournal);
> +       }
> 
> What happens if, for example, Evolution has a blank memo title, we add
> a "blank subject" line to it, and then you sync again?  Won't that duplicate
> the record on the following sync?

No, since the Dirty flag isn't set.
In fact, you keep a empty subject on Evolution and "blank subject" on
BlackBerry.
(Continue reading)

Chris Frey | 1 May 2009 22:06

Re: [PATCH] Memo sync support

On Fri, May 01, 2009 at 10:02:23PM +0200, Nicolas wrote:
> No, since the Dirty flag isn't set.
> In fact, you keep a empty subject on Evolution and "blank subject" on
> BlackBerry.
> After a modification on BlackBerry, and you sync again, the subjet will
> be updated on Evolution...

True... after some more testing here, it was actually possible to
have a "<blank subject>" item in the device and a "" subject in evolution
and the sync went fine.

Thanks!
- Chris

------------------------------------------------------------------------------
Register Now & Save for Velocity, the Web Performance & Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance & Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
Nicolas | 2 May 2009 12:30
Picon
Favicon

[PATH] Task sync support

Hi,

Here a patch to sync task.

Warning all BlackBerry fields aren't correctly mapped with Evolution.

Sample, Task.StartTime and Task.DueTime are inverted.
Moreover, on my BlackBerry Storm, I haven't the field StartTime !

Task sync can be completed to add Alarm, recurrence... (I don't know if
Evolution is able to manage these features)

Regards,

--

-- 
Nicolas VIVIEN

------------------------------------------------------------------------------
Register Now & Save for Velocity, the Web Performance & Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance & Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
Nicolas | 2 May 2009 12:55
Picon
Favicon

Re: [PATH] Task sync support

With the patch, it's better

Le samedi 02 mai 2009 à 12:30 +0200, Nicolas a écrit :
> Hi,
> 
> Here a patch to sync task.
> 
> Warning all BlackBerry fields aren't correctly mapped with Evolution.
> 
> Sample, Task.StartTime and Task.DueTime are inverted.
> Moreover, on my BlackBerry Storm, I haven't the field StartTime !
> 
> Task sync can be completed to add Alarm, recurrence... (I don't know if
> Evolution is able to manage these features)
> 
> Regards,

--

-- 
Nicolas VIVIEN
------------------------------------------------------------------------------
Register Now & Save for Velocity, the Web Performance & Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance & Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
_______________________________________________
(Continue reading)

Nicolas | 2 May 2009 16:31
Picon
Favicon

Re: [PATH] Task sync support

Warning, I think that there is an issue if you enable all feature
(contact, event, memo, task)...

Regards,

Le samedi 02 mai 2009 à 12:55 +0200, Nicolas a écrit :
> With the patch, it's better
> 
> Le samedi 02 mai 2009 à 12:30 +0200, Nicolas a écrit :
> > Hi,
> > 
> > Here a patch to sync task.
> > 
> > Warning all BlackBerry fields aren't correctly mapped with Evolution.
> > 
> > Sample, Task.StartTime and Task.DueTime are inverted.
> > Moreover, on my BlackBerry Storm, I haven't the field StartTime !
> > 
> > Task sync can be completed to add Alarm, recurrence... (I don't know if
> > Evolution is able to manage these features)
> > 
> > Regards,
> 
> ------------------------------------------------------------------------------
> Register Now & Save for Velocity, the Web Performance & Operations 
> Conference from O'Reilly Media. Velocity features a full day of 
> expert-led, hands-on workshops and two days of sessions from industry 
> leaders in dedicated Performance & Operations tracks. Use code vel09scf 
> and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
> _______________________________________________ Barry-devel mailing list
(Continue reading)


Gmane