/soc/2013/ankitkv/gobjectification: e8e23435367d: Some prpl-rela...

Ankit Vani a at nevitus.org
Sat Sep 21 14:28:39 EDT 2013


Changeset: e8e23435367d1aa39104489c790fc1e2f30da729
Author:	 Ankit Vani <a at nevitus.org>
Date:	 2013-09-21 22:28 +0530
Branch:	 soc.2013.gobjectification.plugins
URL: https://hg.pidgin.im/soc/2013/ankitkv/gobjectification/rev/e8e23435367d

Description:

Some prpl-related doc updates

diffstat:

 doc/PERL-HOWTO.dox     |  6 +++---
 doc/TCL-HOWTO.dox      |  2 +-
 doc/jabber-signals.dox |  2 +-
 doc/plugin-ids.dox     |  2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diffs (66 lines):

diff --git a/doc/PERL-HOWTO.dox b/doc/PERL-HOWTO.dox
--- a/doc/PERL-HOWTO.dox
+++ b/doc/PERL-HOWTO.dox
@@ -73,7 +73,7 @@ sub plugin_load {
 	$plugin = shift;
 
 	# Testing was done using AIM, but this should work regardless of the protocol chosen
-	my $protocol = "prpl-aim";
+	my $protocol = "aim";
 	my $account_name = "test";
 
 	# Create a new Account
@@ -149,7 +149,7 @@ keep the naming consistent with the C AP
 sub plugin_load {
 	my $plugin = shift;
 
-	my $protocol = "prpl-aim";
+	my $protocol = "aim";
 	my $account_name = "test";
 
 	# This is how we get an account to use in the following tests.  You should replace the username
@@ -232,7 +232,7 @@ To use any of the Pidgin:: functionality
 @code
 sub plugin_load {
 	my $plugin = shift;
-	my $protocol = "prpl-aim";
+	my $protocol = "aim";
 	my $account_name = "test";
 
 	$account = Purple::Accounts::find($account_name, $protocol);
diff --git a/doc/TCL-HOWTO.dox b/doc/TCL-HOWTO.dox
--- a/doc/TCL-HOWTO.dox
+++ b/doc/TCL-HOWTO.dox
@@ -124,7 +124,7 @@ purple::account username account
   (default) returns all accounts, while the @c -online option returns
   only those accounts which are online.
 
-  The @c protocol subcommand returns the protocol ID (e.g. "prpl-msn")
+  The @c protocol subcommand returns the protocol ID (e.g. "msn")
   for the given account.
 
   The @c username subcommand returns the username for the account
diff --git a/doc/jabber-signals.dox b/doc/jabber-signals.dox
--- a/doc/jabber-signals.dox
+++ b/doc/jabber-signals.dox
@@ -116,7 +116,7 @@ void (sending_xmlnode)(PurpleConnection 
   @endsignalproto
   @signaldesc
    Emit this signal (@c purple_signal_emit) to send a stanza. It is preferred
-   to use this instead of prpl_info->send_raw.
+   to use this instead of purple_protocol_server_iface_send_raw.
    @param gc      The connection on which to send the stanza.
    @param stanza  The stanza to send. If stanza is not NULL after being sent,
                   the emitter should free it.
diff --git a/doc/plugin-ids.dox b/doc/plugin-ids.dox
--- a/doc/plugin-ids.dox
+++ b/doc/plugin-ids.dox
@@ -18,7 +18,7 @@
     - core      - A core libpurple plugin, capable of being loaded in any
                   program using libpurple. Core plugins may not contain any
                   UI-specific code.
-    - prpl      - A protocol plugin. This is a special type of core plugin,
+    - protocol  - A protocol plugin. This is a special type of core plugin,
                   which provides libpurple the ability to connect to
                   another IM or chat network.
     - lopl      - A loader plugin, which loads scripts as plugins. Perl and



More information about the Commits mailing list