After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 648818 - Support the EDS backend being a primary
Support the EDS backend being a primary
Status: RESOLVED FIXED
Product: folks
Classification: Platform
Component: general
git master
Other Linux
: Normal normal
: folks-0.6.0
Assigned To: folks-maint
folks-maint
Depends on:
Blocks: 655911
 
 
Reported: 2011-04-27 22:37 UTC by Travis Reitter
Modified: 2011-08-13 10:25 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Travis Reitter 2011-04-27 22:37:49 UTC
In order to keep the scope of bug #638281 reasonable, I'm splitting the ability to use the EDS backend as a primary store as this bug.

There are 2 major components to this bug:

* supporting Edsf.Persona contact writes (for all relevant EVCard attributes)

* supporting the EDS backend as a primary backend

Once this works, we will also want to move to the EDS backend as the default primary.
Comment 1 Travis Reitter 2011-08-04 00:41:29 UTC
Since 655609 is the last remaining blocker for the first item, let's repurpose this bug for the second part:

* supporting the EDS backend as a primary backend

This should just be along the lines of:

Folks.IndividualAggregator:
...
+#if ENABLE_EDS
+          this._configured_writeable_store_type_id = "eds";
+#else
           this._configured_writeable_store_type_id = "key-file";
+#endif /* ENABLE_EDS */

(you may need to expose ENABLE_EDS somehow, such as through folks/build-conf.vapi)
Comment 2 Raul Gutierrez Segales 2011-08-04 10:53:46 UTC
(In reply to comment #1)
> Since 655609 is the last remaining blocker for the first item, let's repurpose
> this bug for the second part:
> 
> * supporting the EDS backend as a primary backend
> 
> This should just be along the lines of:
> 
> Folks.IndividualAggregator:
> ...
> +#if ENABLE_EDS
> +          this._configured_writeable_store_type_id = "eds";
> +#else
>            this._configured_writeable_store_type_id = "key-file";
> +#endif /* ENABLE_EDS */
> 
> (you may need to expose ENABLE_EDS somehow, such as through
> folks/build-conf.vapi)

But how would we know which store to use? Should we just default to system the address book? More about this was discussed here:

https://bugzilla.gnome.org/show_bug.cgi?id=654907
Comment 3 Travis Reitter 2011-08-04 19:10:01 UTC
(In reply to comment #2)
> (In reply to comment #1)
> > Since 655609 is the last remaining blocker for the first item, let's repurpose
> > this bug for the second part:
> > 
> > * supporting the EDS backend as a primary backend
> > 
> > This should just be along the lines of:
> > 
> > Folks.IndividualAggregator:
> > ...
> > +#if ENABLE_EDS
> > +          this._configured_writeable_store_type_id = "eds";
> > +#else
> >            this._configured_writeable_store_type_id = "key-file";
> > +#endif /* ENABLE_EDS */
> > 
> > (you may need to expose ENABLE_EDS somehow, such as through
> > folks/build-conf.vapi)
> 
> But how would we know which store to use? Should we just default to system the
> address book? More about this was discussed here:
> 
> https://bugzilla.gnome.org/show_bug.cgi?id=654907

Indeed, eds:system should be the default.
Comment 4 Travis Reitter 2011-08-13 10:25:43 UTC
commit c02fb2a0775449133a9faa9d26cc486cf8ce4683
Author: Travis Reitter <travis.reitter@collabora.co.uk>
Date:   Sat Aug 13 12:18:29 2011 +0200

    Make the EDS backend's system address book the default writeable
    
    Closes: bgo#648818 - Support the EDS backend being a primary