~prateek.karandikar/ubuntu/precise/pidgin/add_quicklist

« back to all changes in this revision

Viewing changes to libpurple/plugins/perl/common/Conversation.xs

  • Committer: Bazaar Package Importer
  • Author(s): Micah Gersten
  • Date: 2011-04-11 03:27:22 UTC
  • mfrom: (2.3.17 sid)
  • Revision ID: james.westby@ubuntu.com-20110411032722-farsw08i6ouj5dnd
Tags: 1:2.7.11-1ubuntu1
* Merge from Debian unstable (LP: #757146), remaining changes:
  + debian/control:
    - Add libtool and liblaunchpad-integration-dev build depends
    - Bump standards version
    - Relax binary depends on pidgin versions
    - Add pidgin-libnotify as Recommends for pidgin binary
    - Fix description of pidgin binary
    - Don't have libpurple-bin depend on libpurple0
  + debian/libpurple0.symbols: add epoch to appropriate symbols
  + Add debian/patches:
    - 02_lpi.patch
    - 04_let_crasher_for_apport.patch
    - 05_default_to_irc_ubuntu_com.patch
    - 10_docklet_default_off.patch
    - 11_buddy_list_really_show.patch
    - 13_sounds_and_timers.patch
    - 60_1024x600_gtkpounce.c.patch
    - 60_1024x600_gtkprefs.c.patch
  + debian/prefs.xml: add notification prefs
  + debian/rules:
    - Add translation domain to desktop file with gettext
    - Add the launcher for pidgin

* Add configure check for launchpad integration attached to the gtk check since 
  upstream dropped the startup notification check which is where this check was 
  previously
  - update debian/patches/02_lpi.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
                XPUSHs(sv_2mortal(purple_perl_bless_object(l->data, "Purple::Conversation")));
119
119
        }
120
120
 
 
121
Purple::Conversation
 
122
purple_find_conversation_with_account(type, name, account)
 
123
        Purple::ConversationType type
 
124
        const char *name
 
125
        Purple::Account account
 
126
 
121
127
MODULE = Purple::Conversation  PACKAGE = Purple::Conversations  PREFIX = purple_conversations_
122
128
PROTOTYPES: ENABLE
123
129
 
297
303
        const char *message
298
304
 
299
305
void
 
306
purple_conv_im_send_with_flags(im, message, flags)
 
307
        Purple::Conversation::IM im
 
308
        const char *message
 
309
        Purple::MessageFlags flags
 
310
 
 
311
void
300
312
purple_conv_im_write(im, who, message, flags, mtime)
301
313
        Purple::Conversation::IM im
302
314
        const char *who
410
422
        const char * message
411
423
 
412
424
void
 
425
purple_conv_chat_send_with_flags(chat, message, flags)
 
426
        Purple::Conversation::Chat chat
 
427
        const char * message
 
428
        Purple::MessageFlags flags
 
429
 
 
430
void
413
431
purple_conv_chat_write(chat, who, message, flags, mtime)
414
432
        Purple::Conversation::Chat chat
415
433
        const char *who