~ubuntu-branches/ubuntu/trusty/sflphone/trusty

« back to all changes in this revision

Viewing changes to gnome/src/account_schema.h

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2014-01-28 18:23:36 UTC
  • mfrom: (4.3.4 sid)
  • Revision ID: package-import@ubuntu.com-20140128182336-jrsv0k9u6cawc068
Tags: 1.3.0-1
* New upstream release 
  - Fixes "New Upstream Release" (Closes: #735846)
  - Fixes "Ringtone does not stop" (Closes: #727164)
  - Fixes "[sflphone-kde] crash on startup" (Closes: #718178)
  - Fixes "sflphone GUI crashes when call is hung up" (Closes: #736583)
* Build-Depends: ensure GnuTLS 2.6
  - libucommon-dev (>= 6.0.7-1.1), libccrtp-dev (>= 2.0.6-3)
  - Fixes "FTBFS Build-Depends libgnutls{26,28}-dev" (Closes: #722040)
* Fix "boost 1.49 is going away" unversioned Build-Depends: (Closes: #736746)
* Add Build-Depends: libsndfile-dev, nepomuk-core-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 *  Copyright (C) 2004-2012 Savoir-Faire Linux Inc.
 
2
 *  Copyright (C) 2004-2013 Savoir-Faire Linux Inc.
3
3
 *  Author: Emmanuel Milou <emmanuel.milou@savoirfairelinux.com>
4
4
 *  Author: Yan Morin <yan.morin@savoirfairelinux.com>
5
5
 *
37
37
 * @brief Account specfic keys/constants that must be shared in daemon and clients.
38
38
 */
39
39
 
40
 
// Account identifier
41
 
static const char *const CONFIG_ACCOUNT_ID                      = "Account.id";
42
 
 
43
40
// Common account parameters
44
41
static const char *const CONFIG_ACCOUNT_TYPE                    = "Account.type";
45
42
static const char *const CONFIG_ACCOUNT_ALIAS                   = "Account.alias";
46
43
static const char *const CONFIG_ACCOUNT_MAILBOX                 = "Account.mailbox";
47
44
static const char *const CONFIG_ACCOUNT_ENABLE                  = "Account.enable";
 
45
static const char *const CONFIG_ACCOUNT_AUTOANSWER              = "Account.autoAnswer";
48
46
static const char *const CONFIG_ACCOUNT_REGISTRATION_EXPIRE     = "Account.registrationExpire";
49
47
static const char *const CONFIG_ACCOUNT_REGISTRATION_STATUS     = "Account.registrationStatus";
50
48
static const char *const CONFIG_ACCOUNT_REGISTRATION_STATE_CODE = "Account.registrationCode";
54
52
static const char *const CONFIG_RINGTONE_PATH                   = "Account.ringtonePath";
55
53
static const char *const CONFIG_RINGTONE_ENABLED                = "Account.ringtoneEnabled";
56
54
static const char *const CONFIG_KEEP_ALIVE_ENABLED              = "Account.keepAliveEnabled";
57
 
 
 
55
static const char *const CONFIG_PRESENCE_ENABLED                = "Account.presenceEnabled";
 
56
static const char *const CONFIG_PRESENCE_PUBLISH_SUPPORTED      = "Account.presencePublishSupported";
 
57
static const char *const CONFIG_PRESENCE_SUBSCRIBE_SUPPORTED    = "Account.presenceSubscribeSupported";
 
58
static const char *const CONFIG_PRESENCE_STATUS                 = "Account.presenceStatus";
 
59
static const char *const CONFIG_PRESENCE_NOTE                   = "Account.presenceNote";
58
60
 
59
61
static const char *const CONFIG_DEFAULT_REGISTRATION_EXPIRE     = "60";
 
62
static const char *const CONFIG_DEFAULT_RINGTONE_ENABLED        = "true";
60
63
 
61
64
static const char *const CONFIG_ACCOUNT_HOSTNAME                = "Account.hostname";
62
65
static const char *const CONFIG_ACCOUNT_USERNAME                = "Account.username";
65
68
static const char *const CONFIG_ACCOUNT_REALM                   = "Account.realm";
66
69
static const char *const CONFIG_ACCOUNT_DEFAULT_REALM           = "*";
67
70
static const char *const CONFIG_ACCOUNT_USERAGENT               = "Account.useragent";
68
 
static const char *const CONFIG_ACCOUNT_AUTOANSWER              = "Account.autoAnswer";
 
71
static const char *const CONFIG_ACCOUNT_AUDIO_PORT_MIN          = "Account.audioPortMin";
 
72
static const char *const CONFIG_ACCOUNT_AUDIO_PORT_MAX          = "Account.audioPortMax";
 
73
static const char *const CONFIG_ACCOUNT_VIDEO_PORT_MIN          = "Account.videoPortMin";
 
74
static const char *const CONFIG_ACCOUNT_VIDEO_PORT_MAX          = "Account.videoPortMax";
69
75
 
70
76
static const char *const CONFIG_LOCAL_INTERFACE                 = "Account.localInterface";
71
77
static const char *const CONFIG_INTERFACE                       = "Account.interface";