~ubuntu-branches/ubuntu/maverick/evolution-data-server/maverick-proposed

« back to all changes in this revision

Viewing changes to calendar/libedata-cal/e-cal-backend-util.c

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-05-17 17:02:06 UTC
  • mfrom: (1.1.79 upstream) (1.6.12 experimental)
  • Revision ID: james.westby@ubuntu.com-20100517170206-4ufr52vwrhh26yh0
Tags: 2.30.1-1ubuntu1
* Merge from debian experimental. Remaining change:
  (LP: #42199, #229669, #173703, #360344, #508494)
  + debian/control:
    - add Vcs-Bzr tag
    - don't use libgnome
    - Use Breaks instead of Conflicts against evolution 2.25 and earlier.
  + debian/evolution-data-server.install,
    debian/patches/45_libcamel_providers_version.patch:
    - use the upstream versioning, not a Debian-specific one 
  + debian/libedata-book1.2-dev.install, debian/libebackend-1.2-dev.install,
    debian/libcamel1.2-dev.install, debian/libedataserverui1.2-dev.install:
    - install html documentation
  + debian/rules:
    - don't build documentation it's shipped with the tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 *
38
38
 * Retrieve the default mail account as stored in Evolution configuration.
39
39
 *
40
 
 * Return value: TRUE if there is a default account, FALSE otherwise.
 
40
 * Returns: TRUE if there is a default account, FALSE otherwise.
41
41
 */
42
42
gboolean
43
43
e_cal_backend_mail_account_get_default (gchar **address, gchar **name)
68
68
 *
69
69
 * Checks that a mail account is valid, and returns its name.
70
70
 *
71
 
 * Return value: TRUE if the account is valid, FALSE if not.
 
71
 * Returns: TRUE if the account is valid, FALSE if not.
72
72
 */
73
73
gboolean
74
74
e_cal_backend_mail_account_is_valid (gchar *user, gchar **name)
94
94
 * e_cal_backend_status_to_string:
95
95
 *
96
96
 * Converts status code to string.
 
97
 *
 
98
 * Since: 2.24
97
99
 **/
98
100
const gchar *
99
101
e_cal_backend_status_to_string (GNOME_Evolution_Calendar_CallStatus status)
153
155
 
154
156
/**
155
157
 * is_attendee_declined:
156
 
 * @param icalcomp Component where to check the attendee list.
157
 
 * @param email Attendee's email to look for.
158
 
 * @return Whether the required attendee declined or not.
159
 
 *         It's not necessary to have this attendee in the list.
 
158
 * @icalcomp: Component where to check the attendee list.
 
159
 * @email: Attendee's email to look for.
 
160
 *
 
161
 * Returns: Whether the required attendee declined or not.
 
162
 *          It's not necessary to have this attendee in the list.
160
163
 **/
161
164
static gboolean
162
165
is_attendee_declined (icalcomponent *icalcomp, const gchar *email)
200
203
 
201
204
/**
202
205
 * e_cal_backend_user_declined:
203
 
 * @param icalcomp Component where to check.
204
 
 * @return Whether icalcomp contains attendee with a mail same as any of configured
205
 
 *         enabled mail account and whether this user declined.
 
206
 * @icalcomp: Component where to check.
 
207
 *
 
208
 * Returns: Whether icalcomp contains attendee with a mail same as any of
 
209
 *          configured enabled mail account and whether this user declined.
 
210
 *
 
211
 * Since: 2.26
206
212
 **/
207
213
gboolean
208
214
e_cal_backend_user_declined (icalcomponent *icalcomp)