From: <ro...@us...> - 2006-07-02 15:50:02
|
Revision: 16395 Author: roast Date: 2006-07-02 08:49:54 -0700 (Sun, 02 Jul 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16395&view=rev Log Message: ----------- fixing botched 16338 commit. Modified Paths: -------------- branches/soc-2006-file-loggers/console/gntblist.c branches/soc-2006-file-loggers/console/libgnt/test.c branches/soc-2006-file-loggers/src/util.c Modified: branches/soc-2006-file-loggers/console/gntblist.c =================================================================== --- branches/soc-2006-file-loggers/console/gntblist.c 2006-07-02 09:37:25 UTC (rev 16394) +++ branches/soc-2006-file-loggers/console/gntblist.c 2006-07-02 15:49:54 UTC (rev 16395) @@ -149,14 +149,14 @@ #else /* XXX: Let's use these some time */ case GAIM_STATUS_OFFLINE: - strncpy(status, "M-bM-^JM-^W", sizeof(status) - 1); + strncpy(status, "⊗", sizeof(status) - 1); break; case GAIM_STATUS_AVAILABLE: /* XXX: Detect idleness */ - strncpy(status, "M-bM-^WM-/", sizeof(status) - 1); + strncpy(status, "◯", sizeof(status) - 1); break; default: - strncpy(status, "M-bM-^JM-^V", sizeof(status) - 1); + strncpy(status, "⊖", sizeof(status) - 1); break; #endif } Modified: branches/soc-2006-file-loggers/console/libgnt/test.c =================================================================== --- branches/soc-2006-file-loggers/console/libgnt/test.c 2006-07-02 09:37:25 UTC (rev 16394) +++ branches/soc-2006-file-loggers/console/libgnt/test.c 2006-07-02 15:49:54 UTC (rev 16395) @@ -70,7 +70,7 @@ gnt_init(); GntWidget *widget = gnt_button_new("Button 1"); - GntWidget *widget2 = gnt_button_new("Button 2 has a longish text with a UTF-8 thing M-bM-^@M-&"); + GntWidget *widget2 = gnt_button_new("Button 2 has a longish text with a UTF-8 thing …"); GntWidget *label = gnt_label_new("So wassup dudes and dudettes!!\nSo this is, like,\nthe third line!! \\o/"); GntWidget *vbox, *hbox, *tree; WINDOW *test; @@ -104,7 +104,7 @@ gnt_tree_add_row_after(GNT_TREE(tree), "b", "b", "d", NULL); GNT_WIDGET_UNSET_FLAGS(hbox, GNT_WIDGET_NO_BORDER | GNT_WIDGET_NO_SHADOW); - gnt_box_set_title(GNT_BOX(hbox), "111111111111111111111111111111111111111111111111111111111111111This is the title M-bM-^@M-&"); + gnt_box_set_title(GNT_BOX(hbox), "111111111111111111111111111111111111111111111111111111111111111This is the title …"); /*gnt_widget_set_take_focus(vbox, TRUE);*/ /*gnt_widget_set_take_focus(hbox, TRUE);*/ Modified: branches/soc-2006-file-loggers/src/util.c =================================================================== --- branches/soc-2006-file-loggers/src/util.c 2006-07-02 09:37:25 UTC (rev 16394) +++ branches/soc-2006-file-loggers/src/util.c 2006-07-02 15:49:54 UTC (rev 16395) @@ -3659,6 +3659,7 @@ "GET %s%s HTTP/%s\r\n" "Connection: close\r\n" "User-Agent: %s\r\n" + "Accept: */*\r\n" "Host: %s\r\n\r\n", (gfud->full ? "" : "/"), (gfud->full ? gfud->url : gfud->website.page), @@ -3668,6 +3669,7 @@ gfud->request = g_strdup_printf( "GET %s%s HTTP/%s\r\n" "Connection: close\r\n" + "Accept: */*\r\n" "Host: %s\r\n\r\n", (gfud->full ? "" : "/"), (gfud->full ? gfud->url : gfud->website.page), This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |