GNOME Bugzilla – Bug 648818
Support the EDS backend being a primary
Last modified: 2011-08-13 10:25:43 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.
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)
(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
(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.
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