Revision 95983e6d03297e2ad846a3c0a9ecaabd610e921e
lschiere at pidgin.im
lschiere at pidgin.im
Wed Apr 11 01:21:14 EDT 2007
o -----------------------------------------------------------------
| Revision: 95983e6d03297e2ad846a3c0a9ecaabd610e921e
| Ancestor: f23e68331d768633d7b3af3bd698b3a5c5c2d34e
| Author: lschiere
| Date: 2004-12-14T22:51:40
| Branch: im.pidgin.gaim.oldstatus
|
| Modified files:
| src/gtkdialogs.c src/util.c
|
| ChangeLog:
|
| [gaim-migrate @ 11596]
| (17:31:55) SimGuy: LSchiere2: because the person that redid it didn't think
| to move the CPWs since they only have one field
| (17:32:05) SimGuy: the others are all multiple pieces of data
| (17:32:07) LSchiere2: its confusing and inconsistent now
| (17:48:00) SimGuy: LSchiere2:
| http://kevin.simguy.net:8888/patches/gaim-cpw-structify.diff
| (17:48:03) SimGuy: that should apply to both
| (17:48:16) SimGuy: the patch to util.c just fixes a spelling error in a
| comment I fixed like 6 weeks ago
| (17:48:59) SimGuy: er, both being HEAD and oldstatus
| ============================================================
| --- src/gtkdialogs.c a23159f52568635cdd2f79b37246cf288896ba77
| +++ src/gtkdialogs.c e0c6622c070d71607a746e88ff0a37253317e0e2
| @@ -74,6 +74,18 @@ static struct developer developers[] = {
| {NULL, NULL, NULL}
| };
|
| +static struct developer patch_writers[] = {
| + {"Daniel 'datallah' Atallah", NULL, NULL},
| + {"Ka-Hing 'javabsp' Cheung", NULL, NULL},
| + {"Felipe 'shx' Contreras", NULL, NULL},
| + {"Decklin Foster", NULL, NULL},
| + {"Gary 'grim' Kramlich", NULL, NULL},
| + {"Robert 'Robot101' McQueen", NULL, NULL},
| + {"Benjamin Miller", NULL, NULL},
| + {"Kevin 'SimGuy' Stange", NULL, NULL},
| + {NULL, NULL, NULL}
| +};
| +
| static struct developer retired_developers[] = {
| {"Adam Fritzler", N_("former libfaim maintainer"), NULL},
| {"Eric Warmenhoven", N_("former lead developer"), "warmenhoven at yahoo.com"},
| @@ -253,16 +265,17 @@ void gaim_gtkdialogs_about(GtkWidget *w,
| /* Crazy Patch Writers */
| g_string_append_printf(str, "<FONT SIZE=\"4\">%s:</FONT><BR/>",
| _("Crazy Patch Writers"));
| - g_string_append(str,
| - " Daniel 'datallah' Atallah<BR>"
| - " Ka-Hing 'javabsp' Cheung<BR>"
| - " Felipe 'shx' Contreras<BR>"
| - " Decklin Foster<BR>"
| - " Gary 'grim' Kramlich<BR>"
| - " Robert 'Robot101' McQueen<BR>"
| - " Benjamin Miller<BR>"
| - " Kevin 'SimGuy' Stange<BR>"
| - "<BR>");
| + for (i = 0; patch_writers[i].name != NULL; i++) {
| + if (patch_writers[i].email != NULL) {
| + g_string_append_printf(str, " %s <<a href=\"mailto:%s\">%s</a>><br/>",
| + patch_writers[i].name,
| + patch_writers[i].email, patch_writers[i].email);
| + } else {
| + g_string_append_printf(str, " %s<br/>",
| + patch_writers[i].name);
| + }
| + }
| + g_string_append(str, "<BR/>");
|
| /* Retired Developers */
| g_string_append_printf(str, "<FONT SIZE=\"4\">%s:</FONT><BR/>",
| ============================================================
| --- src/util.c 9848df6981ac64ef5fe5ef3d0daf8aa2efbe6d5a
| +++ src/util.c d05d241d443fff301cb02b5378c4692e5e7b5a40
| @@ -1397,7 +1397,7 @@ gaim_markup_linkify(const char *text)
| gboolean inside_html = FALSE;
| int inside_paren = 0;
| GString *ret = g_string_new("");
| - /* Assumes you have a buffer able to cary at least BUF_LEN * 2 bytes */
| + /* Assumes you have a buffer able to carry at least BUF_LEN * 2 bytes */
|
| c = text;
| while (*c) {
To get the patch for this revision, please do this:
mtn log --last 1 --diffs --from 95983e6d03297e2ad846a3c0a9ecaabd610e921e
More information about the Commits
mailing list