~ubuntu-branches/ubuntu/hardy/evolution-data-server/hardy-updates

« back to all changes in this revision

Viewing changes to servers/groupwise/e-gw-item.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-11-13 10:59:20 UTC
  • mfrom: (1.1.38 upstream)
  • Revision ID: james.westby@ubuntu.com-20071113105920-nb6w14udvgx0ghi3
Tags: 2.21.2-0ubuntu1
* New upstream version:
  Bug Fixes:
  - #318842: Task lists should be sorted (LP: #23912)
  - #345135: Disable SSLv2 compatible HELLO on SSL stream when 
    SSLv2 is disabled
  - #359267: Not all memos are showed in calendar view
  - #430420: Returned size <= 0 is an error
  - #460649: Meeting UI Needs To Show Color Of Selected Calendar Source
  - #487229: Use GKeyFile instead of gnome-config to access stored passwords
  - #488156: Minimize use of the WITH_GNOME_KEYRING macro
  - #492130: ESourceSelector uses pointers to ESource
  - #494304: Fix leak
  Updated Translations
  New in 2.21.1:
  - Support for Google Calendar
  Bug Fixes:
  - #203480: (Novell Bugzilla) Compiler warning fix 
    for usage ofunintialized variable
  - #231178: New symbol 'set-label' defined and added corresponding callback
  - #271777: Keep character's case as user types
  - #417999: Don't use deprecated GTK+ symbols
  - #420167: e-d-s now exits with gnome-session
  - #469657: Better use of GHashTable
  - #474000: Use GLib's Base64 API instead of Camel's
  - #475487: When creating the default contact, print errors to the console
  - #475493: Use G_DEFINE_TYPE
  - #475494: Use G_LOCK instead of a static mutex for clearer code
  - #478404: Reset the id to zero
  - #483301: Remove an unused variable
  - #487270: Fix typo in documentation
  - #488173: Remove __FUNCTION__, which is a gcc-ism
  - #488351: Fix an addressbook error on a fresh install
  Other Contributors:
  - Protect against a NULL subject string. 
* debian/*.preinst:
  - On upgrades from Gutsy, remove the symlinks introduced in Gutsy. They
    break upgrades all over, and current cdbs just symlinks individual files.
* Sync with Debian
* debian/control:
  - evolution-data-server Breaks evolution (<< 2.9), 
    evolution-exchange (<= 2.8.1-0ubuntu1),
    evolution-jescs (<= 2.8.2-0ubuntu3), 
    evolution-scalix (<= 10.0.0.357-0ubuntu6)
  - updated maintainer to desktop team
* debian/rules:
  - don't specify the paths for nspr and nss since the package is built 
    with firefox
  - don't build documentation, it's distributed in the upstream tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
1923
1923
 
1924
1924
                        if (msg && length) {
1925
1925
                                len = atoi (length);
1926
 
                                item->priv->message = soup_base64_decode  (msg, &len);
 
1926
                                item->priv->message = g_base64_decode  (msg, &len);
1927
1927
                                if (!(item->priv->message)) {
1928
1928
                                        item->priv->msg_body_id = soup_soap_parameter_get_property (part, "id") ;
1929
1929
                                } 
3005
3005
        if (priv->message) {
3006
3006
                char *str;
3007
3007
                
3008
 
                str = soup_base64_encode (priv->message, strlen (priv->message));
 
3008
                str = g_base64_encode (priv->message, strlen (priv->message));
3009
3009
                dtstring = g_strdup_printf ("%d", (int)strlen (str));
3010
3010
                soup_soap_message_add_attribute (msg, "length", dtstring, NULL, NULL);
3011
3011
                g_free (dtstring);
3185
3185
                        char *str ;
3186
3186
                        char *str_len ;
3187
3187
 
3188
 
                        str = soup_base64_encode (priv->message, strlen (priv->message));
 
3188
                        str = g_base64_encode (priv->message, strlen (priv->message));
3189
3189
                        //str = g_strdup (priv->message);
3190
3190
                        str_len = g_strdup_printf ("%d", str ? (int)strlen (str) : 0);
3191
3191
                        soup_soap_message_start_element (msg, "part", NULL, NULL);
3427
3427
                if (priv->message) {
3428
3428
                        char *str, *message;
3429
3429
 
3430
 
                        str = soup_base64_encode (priv->message, strlen (priv->message));
 
3430
                        str = g_base64_encode (priv->message, strlen (priv->message));
3431
3431
                        message = g_strdup_printf ("%d", (int)strlen (str));
3432
3432
                        soup_soap_message_add_attribute (msg, "length", message, NULL, NULL);
3433
3433
                        g_free (message);