diff src/protocols/jabber/jabber.c @ 11939:85c25a32bb48

[gaim-migrate @ 14230] As http://www.xmpp.org/xmppimpl.html states: If the default value for the resource is the name of the Jabber client (the program), people tend to think it is a cryptic field that should not be changed and leave it like that and it totally defeats the sense of resource. Most people won't ever understand the big picture of how resources work, but if the default value is 'Home' or 'Office' people will feel more confident to change it, specially if it doesn't match the reality. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Wed, 02 Nov 2005 02:21:43 +0000
parents fa742ad8068c
children cbebda5f019c
line wrap: on
line diff
--- a/src/protocols/jabber/jabber.c	Tue Nov 01 02:04:27 2005 +0000
+++ b/src/protocols/jabber/jabber.c	Wed Nov 02 02:21:43 2005 +0000
@@ -406,7 +406,7 @@
 
 	if(!js->user->resource) {
 		char *me;
-		js->user->resource = g_strdup("Gaim");
+		js->user->resource = g_strdup("Home");
 		if(!js->user->node) {
 			js->user->node = js->user->domain;
 			js->user->domain = g_strdup("jabber.org");
@@ -743,7 +743,7 @@
 
 	if(!js->user->resource) {
 		char *me;
-		js->user->resource = g_strdup("Gaim");
+		js->user->resource = g_strdup("Home");
 		if(!js->user->node) {
 			js->user->node = js->user->domain;
 			js->user->domain = g_strdup("jabber.org");
@@ -1708,7 +1708,7 @@
 	split = gaim_account_user_split_new(_("Server"), "jabber.org", '@');
 	prpl_info.user_splits = g_list_append(prpl_info.user_splits, split);
 
-	split = gaim_account_user_split_new(_("Resource"), "Gaim", '/');
+	split = gaim_account_user_split_new(_("Resource"), "Home", '/');
 	prpl_info.user_splits = g_list_append(prpl_info.user_splits, split);
 
 	option = gaim_account_option_bool_new(_("Use TLS if available"), "use_tls",