X-Git-Url: http://git.maemo.org/git/?p=python-purple;a=blobdiff_plain;f=account_cbs.pxd;h=238ecc63cb340fd570f78f749f1c93767044c7ba;hp=e2c2d7b99dcce93436dfc5ad0d374a8b6e3f1bba;hb=52e4bd7146a78af7e8dff51171a7d27e12aed847;hpb=62769c0cf399d5f1755998dbeb62e81696634b7a diff --git a/account_cbs.pxd b/account_cbs.pxd index e2c2d7b..238ecc6 100644 --- a/account_cbs.pxd +++ b/account_cbs.pxd @@ -28,18 +28,18 @@ cdef void notify_added (account.PurpleAccount *account, const_char *remote_user, const_char *id, const_char *alias, const_char *message): debug.c_purple_debug(debug.PURPLE_DEBUG_INFO, "account", - "notify_added\n") + "notify-added\n") try: - (account_cbs["notify_added"])("notify_added") + (account_cbs["notify-added"])("notify-added: TODO") except KeyError: pass cdef void status_changed (account.PurpleAccount *account, status.PurpleStatus *status): debug.c_purple_debug(debug.PURPLE_DEBUG_INFO, "account", - "status_changed\n") + "status-changed\n") try: - (account_cbs["status_changed"])("status_changed") + (account_cbs["status-changed"])("status-changed: TODO") except KeyError: pass @@ -47,9 +47,9 @@ cdef void request_add (account.PurpleAccount *account, const_char *remote_user, const_char *id, const_char *alias, const_char *message): debug.c_purple_debug(debug.PURPLE_DEBUG_INFO, "account", - "request_add\n") + "request-add\n") try: - (account_cbs["request_add"])("request_add") + (account_cbs["request-add"])("request-add: TODO") except KeyError: pass @@ -61,17 +61,17 @@ cdef void *request_authorize (account.PurpleAccount *account, account.PurpleAccountRequestAuthorizationCb deny_cb, void *user_data): debug.c_purple_debug(debug.PURPLE_DEBUG_INFO, "account", - "request_authorize\n") + "request-authorize\n") try: - (account_cbs["request_authorize"])("request_authorize") + (account_cbs["request-authorize"])("request-authorize: TODO") return NULL except KeyError: pass cdef void close_account_request (void *ui_handle): debug.c_purple_debug(debug.PURPLE_DEBUG_INFO, "account", - "close_account_request\n") + "close-account-request\n") try: - (account_cbs["close_account_request"])("close_account_request") + (account_cbs["close-account-request"])("close-account-request: TODO") except KeyError: pass