~ubuntu-branches/ubuntu/oneiric/evolution-couchdb/oneiric

« back to all changes in this revision

Viewing changes to addressbook/e-book-backend-couchdb.h

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Moya
  • Date: 2010-02-19 21:41:12 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20100219214112-xlaxbep4ga73842m
Tags: 0.4.2-0ubuntu3
* Depend on newest couchdb-glib
* Removed upstreamed patch
* New upstream release (0.4.2): (LP: #524653)
  - Remove deprecated header file (Rodrigo Moya)
* New upstream release (0.4.1):
  - Depend on couchdb-glib >= 0.6.1 (Rodrigo Moya)
* New upstream release (0.4.0):
  - Use contacts record API from desktopcouch-glib (Rodrigo Moya)
  - Support categories for contacts (Rodrigo Moya)
  - Translations:
     - hu (Gabor Kelemen)
* New upstream release (0.3.99):
  - Take into account the query passed to get_contact_list method to make
    searching work (Rodrigo Moya)
  - Update to couchdb-glib 0.5.99 API (Rodrigo Moya)
  - Use desktopcouch-glib instead of getting the port and OAuth credentials
    manually (Rodrigo Moya)
  - Translations:
     - ca (David Planella)
     - nds (Nils-Christoph)

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#define __E_BOOK_BACKEND_COUCHDB_H__
25
25
 
26
26
#include <couchdb-glib.h>
27
 
#include <couchdb-document-contact.h>
 
27
#include <desktopcouch-glib.h>
28
28
#include <libedata-book/e-book-backend.h>
29
29
 
30
30
#define E_TYPE_BOOK_BACKEND_COUCHDB        (e_book_backend_couchdb_get_type ())
37
37
typedef struct {
38
38
        EBookBackend parent_object;
39
39
 
40
 
        CouchDB *couchdb;
 
40
        CouchdbSession *couchdb;
41
41
        char *dbname;
42
42
        gboolean using_desktopcouch;
43
43
} EBookBackendCouchDB;