doc/reference/libpurple/signals_account.md

changeset 41798
5ae15cfc1bee
parent 41165
24e2c88a7fc2
child 41891
a45d6db4f857
--- a/doc/reference/libpurple/signals_account.md	Sun Oct 09 01:48:50 2022 -0500
+++ b/doc/reference/libpurple/signals_account.md	Sun Oct 09 02:20:18 2022 -0500
@@ -7,23 +7,13 @@
 
 * [account-created](#account-created)
 * [account-destroying](#account-destroying)
-* [account-added](#account-added)
-* [account-connecting](#account-connecting)
-* [account-removed](#account-removed)
 * [account-disabled](#account-disabled)
 * [account-enabled](#account-enabled)
-* [account-setting-info](#account-setting-info)
-* [account-set-info](#account-set-info)
 * [account-status-changed](#account-status-changed)
 * [account-actions-changed](#account-actions-changed)
-* [account-alias-changed](#account-alias-changed)
-* [account-authorization-requested](#account-authorization-requested)
-* [account-authorization-denied](#account-authorization-denied)
-* [account-authorization-granted](#account-authorization-granted)
 * [account-error-changed](#account-error-changed)
 * [account-signed-on](#account-signed-on)
 * [account-signed-off](#account-signed-off)
-* [account-connection-error](#account-connection-error)
 
 ### Signal Details
 
@@ -63,61 +53,6 @@
 
 ----
 
-#### account-added
-
-```c
-void user_function(PurpleAccount *account, gpointer user_data);
-```
-
-Emitted when an account is added.
-
-**Parameters:**
-
-
-**account**
-: The account that was added. See `purple_accounts_add()`.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
-#### account-connecting
-
-```c
-void user_function(PurpleAccount *account, gpointer user_data);
-```
-
-This is emitted when an account is in the process of connecting.
-
-**Parameters:**
-
-**account**
-: The account in the process of connecting.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
-#### account-removed
-
-```c
-void user_function(PurpleAccount *account, gpointer user_data);
-```
-
-Emitted when an account is removed.
-
-**Parameters:**
-
-**account**
-: The account that was removed. See `purple_accounts_remove()`.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
 #### account-disabled
 
 ```c
@@ -154,48 +89,6 @@
 
 ----
 
-#### account-setting-info
-
-```c
-void user_function(PurpleAccount *account, const gchar *new_info, gpointer user_data);
-```
-
-Emitted when a user is about to send his new user info, or profile, to the server.
-
-**Parameters:**
-
-**account**
-: The account that the info will be set on.
-
-**new_info**
-: The new information to set.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
-#### account-set-info
-
-```c
-void user_function(PurpleAccount *account, const gchar *new_info, gpointer user_data);
-```
-
-Emitted when a user sent his new user info, or profile, to the server.
-
-**Parameters:**
-
-**account**
-: The account that the info was set on.
-
-**new_info**
-: The new information set.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
 #### account-status-changed
 
 ```c
@@ -241,126 +134,6 @@
 
 ----
 
-#### account-alias-changed
-
-```c
-void user_function(PurpleAccount *account, const gchar *old, gpointer user_data);
-```
-
-Emitted when the alias of an account changes (after the change).
-
-**Parameters:**
-
-**account**
-: The account for which the alias was changed.
-
-**old**
-: The alias before change.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
-#### account-authorization-requested
-
-```c
-int user_function(PurpleAccount *account,
-                  const gchar *user,
-                  const gchar *message,
-                  gchar **response,
-                  gpointer user_data);
-```
-
-Emitted when a user requests authorization.
-
-**Parameters:**
-
-**account**
-: The account.
-
-**user**
-: The name of the user requesting authorization.
-
-**message**
-: The authorization request message.
-
-**response**
-: The message to send in the response.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-**Returns:**
-
-`PURPLE_ACCOUNT_RESPONSE_IGNORE`
-: To silently ignore the request
-
-`PURPLE_ACCOUNT_RESPONSE_DENY`
-: To block the request (the sender might get informed)
-
-`PURPLE_ACCOUNT_RESPONSE_ACCEPT`
-: If the request should be granted.
-
-`PURPLE_ACCOUNT_RESPONSE_PASS`
-: The user will be prompted with the request.
-
-----
-
-#### account-authorization-denied
-
-```c
-void user_function(PurpleAccount *account,
-                   const gchar *user,
-                   const gchar *message,
-                   gpointer user_data);
-```
-
-Emitted when the authorization request for a buddy is denied.
-
-**Parameters:**
-
-**account**
-: The account.
-
-**user**
-: The name of the user requesting authorization.
-
-**message**
-: The message to tell the buddy who was denied.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
-#### account-authorization-granted
-
-```c
-void user_function(PurpleAccount *account,
-                   const gchar *user,
-                   const gchar *message,
-                   gpointer user_data);
-```
-
-Emitted when the authorization request for a buddy is granted.
-
-**Parameters:**
-
-**account**
-: The account.
-
-**user**
-: The name of the user requesting authorization.
-
-**message**
-: The message to tell the buddy who was granted authorization.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
 #### account-error-changed
 
 ```c
@@ -421,30 +194,3 @@
 
 **user_data**
 : User data set when the signal handler was connected.
-
-----
-
-#### account-connection-error
-
-```c
-void user_function(PurpleAccount *account,
-                   PurpleConnectionError err,
-                   const gchar *desc,
-                   gpointer user_data)
-```
-
-Emitted when a connection error occurs, before `"signed"`-off.
-
-**Parameters:**
-
-**account**
-: The account on which the error has occurred.
-
-**err**
-: The error that occurred.
-
-**desc**
-: A description of the error, giving more information.
-
-**user_data**
-: User data set when the signal handler was connected.

mercurial