You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(27) |
Jul
(25) |
Aug
(21) |
Sep
(136) |
Oct
(123) |
Nov
(87) |
Dec
(110) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(87) |
Feb
(88) |
Mar
(81) |
Apr
(255) |
May
(73) |
Jun
(96) |
Jul
(131) |
Aug
(94) |
Sep
(148) |
Oct
(171) |
Nov
(166) |
Dec
(172) |
2004 |
Jan
(251) |
Feb
(140) |
Mar
(213) |
Apr
(298) |
May
(182) |
Jun
(185) |
Jul
(159) |
Aug
(376) |
Sep
(334) |
Oct
(256) |
Nov
(217) |
Dec
(189) |
2005 |
Jan
(186) |
Feb
(151) |
Mar
(199) |
Apr
(115) |
May
(203) |
Jun
(228) |
Jul
(116) |
Aug
(189) |
Sep
(136) |
Oct
(198) |
Nov
(249) |
Dec
(339) |
2006 |
Jan
(167) |
Feb
(185) |
Mar
(95) |
Apr
(133) |
May
(86) |
Jun
(156) |
Jul
(149) |
Aug
(170) |
Sep
(208) |
Oct
(151) |
Nov
(270) |
Dec
(148) |
2007 |
Jan
(240) |
Feb
(127) |
Mar
(150) |
Apr
(40) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Jon-Pierre G. <jg...@ch...> - 2003-02-18 22:33:17
|
On Tue, 2003-02-18 at 05:05, Rubén Garrigós Domínguez wrote: > Hi again. > > I need the patch because: > > 1) Some of my buddies change their server alias more frecuently (to > something cracy and unreadable as "$%&//F.g.H.\\%$") than I like. -- Jon-Pierre Gentil <jg...@ch...> |
From: Sean E. <sea...@bi...> - 2003-02-18 16:11:01
|
On Tue, 2003-02-18 at 06:05, Rub=E9n Garrig=F3s Dom=EDnguez wrote: > + strcpy(b->dual_alias,b->alias); > + strcat(b->dual_alias," - "); > + strcat(b->dual_alias,b->server_alias); > + return b->dual_alias; You should really learn the glib string functions. This directly conflicts with the new buddy list I've been working on, but I'll consider some way of implementing this behavior when I'm a bit further along. -s. |
From: <ru...@pa...> - 2003-02-18 11:08:40
|
Hi again. I need the patch because: 1) Some of my buddies change their server alias more frecuently (to something cracy and unreadable as "$%&//F.g.H.\\%$") than I like. 2) Other buddies use their alias to show interesting information (lunch at 2pm). If I use only local alias, I lost the interesting info of some buddies. If I use only server alias I feel confused with the buddies that use a crazy server alias. The solution: Use the local (usually short and easy reading) nickname first and the server alias after. I think about another options but now I feel ok with my short dual-alias patch. For example: - nickname order ("local alias - server alias " or "server alias - local alias") - alternate nicknames (for example: 2s show local alias, 2s show server alias, 2s local again and so on) Next, the new patch (cvs diff -u > patch). ;) -- Rubén Garrigós Domínguez <ru...@pa...> |
From: Luke S. <lsc...@us...> - 2003-02-17 23:44:31
|
On Sun, Feb 16, 2003 at 06:09:36PM -0500, Vadim Berezniker wrote: > Using gaim cvs pulled today ... > > Ever since I installed GTK2.2, tab highlighting has disappeared. > (i.e. when there's a new message or if typing notification is possible ..) > > Also there's some weird behaviour with the close button on the tabs. > Sometimes some of them stay in the "mouse over" state even if that's not > the case ... > these are gtk2.2 bugs, you need to report them to the gtk people and await their fix. luke > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Gaim-devel mailing list > Gai...@li... > https://lists.sourceforge.net/lists/listinfo/gaim-devel -- -This email is made of 100% recycled electrons. |
From: Sean E. <sea...@bi...> - 2003-02-17 04:07:29
|
On Sun, 2003-02-16 at 20:42, Joel Smith wrote: > Oh, I see that now. This is what I get for only testing it with AIM > :'(. > > IRC seems to work a little differently. 'who' is NULL when > g_show_info_text(.....) is called when looking up an IRC buddy. > > Sorry! I guess I have more to work on. Further, that function is not limited to just showing profiles or away messages. It's used for search results, and, like, other things too. Also, the new preferred window title format would be "Sean Egan's User Info" or something similar, rather than "Gaim - User info for SeanEgn". We want to put the important thing (the screenname) right at the begininning of the title, so that you can see it when your taskbar truncates window titles and stuff. Finally: + char *window_title; + char *window_text = "Gaim - Buddy info for "; va_list ap; + window_title = (char *)calloc((strlen(window_text) + strlen(who) + 1), sizeof(char)); + strcat(window_title, window_text); + strcat(window_title, who); should be: char *window_text = g_strdup_printf("Gaim - Buddy info for %s", who); -s. |
From: David B. <br...@pr...> - 2003-02-17 01:54:32
|
On 2003.02.16 18:09 Vadim Berezniker wrote: > Using gaim cvs pulled today ... > > Ever since I installed GTK2.2, tab highlighting has disappeared. > (i.e. when there's a new message or if typing notification is > possible ..) > > Also there's some weird behaviour with the close button on the tabs. > Sometimes some of them stay in the "mouse over" state even if that's > not the case ... It's a bug in GTK+2.2. I tried looking at the source, and it truly IS a bug in GTK+, and not Gaim. I couldn't figure out a workaround to the bug from within Gaim. -David Brigada <br...@pr...> |
From: Joel S. <joe...@at...> - 2003-02-17 01:41:45
|
Oh, I see that now. This is what I get for only testing it with AIM :'(. IRC seems to work a little differently. 'who' is NULL when g_show_info_text(.....) is called when looking up an IRC buddy. Sorry! I guess I have more to work on. Regards, Joel On Sun, 2003-02-16 at 16:59, Rob Flynn wrote: That becomes a little odd if you have more than one account signed on... On Sun, 2003-02-16 at 19:56, Joel Smith wrote: > On Sun, 2003-02-16 at 09:50, Robert McQueen wrote: > That aside, why do you need it, and more importantly, why do any other Gaim users need it? :P > It's okay to e-mail the list with small patches? Here's one of mine. > It changes the window-manager title of the buddy info dialog from > "Gaim" to "Gaim - Buddy info for [user's screen name]". This is > something that's bugged me for a while :-). > > Regards, > Joel -- Rob Flynn <ro...@fa...> ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Gaim-devel mailing list Gai...@li... https://lists.sourceforge.net/lists/listinfo/gaim-devel |
From: Rob F. <ro...@fa...> - 2003-02-17 01:00:09
|
That becomes a little odd if you have more than one account signed on... On Sun, 2003-02-16 at 19:56, Joel Smith wrote: > On Sun, 2003-02-16 at 09:50, Robert McQueen wrote: > That aside, why do you need it, and more importantly, why do any other Gaim users need it? :P > It's okay to e-mail the list with small patches? Here's one of mine. > It changes the window-manager title of the buddy info dialog from > "Gaim" to "Gaim - Buddy info for [user's screen name]". This is > something that's bugged me for a while :-). > > Regards, > Joel -- Rob Flynn <ro...@fa...> |
From: Joel S. <joe...@at...> - 2003-02-17 00:56:38
|
--- gaim-cvs/gaim/src/dialogs.c 2003-01-31 05:03:43.000000000 -0800 +++ src/dialogs.c 2003-02-14 17:23:27.000000000 -0800 @@ -2409,8 +2409,14 @@ GtkWidget *sw; gint options =3D 0; char *more_info; + char *window_title; + char *window_text =3D "Gaim - Buddy info for "; va_list ap; =20 + window_title =3D (char *)calloc((strlen(window_text) + strlen(who) + 1), = sizeof(char)); + strcat(window_title, window_text); + strcat(window_title, who); +=09 struct info_dlg *b =3D find_info_dlg(gc, who); if (!b && (away =3D=3D 1)) return; @@ -2421,11 +2427,12 @@ info_dlgs =3D g_slist_append(info_dlgs, b); =20 GAIM_DIALOG(b->window); - gtk_window_set_title(GTK_WINDOW(b->window), "Gaim"); + gtk_window_set_title(GTK_WINDOW(b->window), window_title); gtk_container_border_width(GTK_CONTAINER(b->window), 5); gtk_widget_realize(GTK_WIDGET(b->window)); g_signal_connect(GTK_OBJECT(b->window), "destroy", G_CALLBACK(info_dlg_f= ree), b); =20 + free(window_title); bbox =3D gtk_vbox_new(FALSE, 5); gtk_container_add(GTK_CONTAINER(b->window), bbox); =20 |
From: Vadim B. <va...@be...> - 2003-02-16 23:13:45
|
Using gaim cvs pulled today ... Ever since I installed GTK2.2, tab highlighting has disappeared. (i.e. when there's a new message or if typing notification is possible ..) Also there's some weird behaviour with the close button on the tabs. Sometimes some of them stay in the "mouse over" state even if that's not the case ... |
From: Robert M. <rob...@de...> - 2003-02-16 17:51:10
|
On Sun, Feb 16, 2003 at 05:38:48PM +0100, Rubén Garrigós Domínguez wrote: > Hi! :) > > I wrote a little GAIM patch to allow simultaneous local and remote > alias. I need it :P > > Feel free to apply. :) > > -- > Rubén Garrigós Domínguez <ru...@pa...> Please generate your patch with 'cvs diff -u' so that we can see the context of the changes you have made, and still be able to apply the patch even if our trees have changed some. That aside, why do you need it, and more importantly, why do any other Gaim users need it? :P Regards, Rob |
From: <ru...@pa...> - 2003-02-16 14:43:48
|
Hi! :) I wrote a little GAIM patch to allow simultaneous local and remote alias. I need it :P Feel free to apply. :) -- Rubén Garrigós Domínguez <ru...@pa...> |
From: Luke S. <lsc...@us...> - 2003-02-16 01:58:39
|
Can you please get a backtrace from each of these? you can attach gdb to the hung process with the command gdb <path to gaim> <pid of gaim> to do this. luke On Sat, Feb 15, 2003 at 10:43:29PM +0100, Ren? J. Blokland wrote: > Hi Luke, > I am having troubles with IRC, when i watch the conversation every thing is perfect, but > when i close this window the window stays up. > the debug shows : > IRC C: PART #gaim > IRC S: :renejb!~re...@cu... PART #gaim : > Leaving room #gaim. > So I have seem to be left the channel. > But the window is not closed it hangs hard and killiing the X server is the only solution! > Part 2 I was logged off, Yes You think but later I am there and have to choose another name > But bad luck segfault. > Can you forward this to te right person please? > I go to bed (another time zone) :D > And thanks for the good work > > -- > Groeten / Regards, Ren? J. Blokland > Linux 2.5.61 Sat Feb 15 2003 AMD-K6 -- -This email is made of 100% recycled electrons. |
From: Mark A. <mr...@po...> - 2003-02-13 03:30:52
|
Evan Doughty <ev...@ca...> writes: > > > > > > The Gaim IRC plugin pops up a dialog box when it receives a warning > > > code from the server. Including this one. Which happens a lot. > > > Would it be difficult to modify the IRC plugin to ignore harmless > > > warnings? > > > > Well, I'm running CVS and it does this. My CVS build is a few days old, > though. I'll update it and see if it's still there. It was in today's CVS. > Personally, I think it's ok that we push the error through, but I think > maybe we should say exactly what the error is. Currently, we do an alert > with "IRC Error 422" and that's it. I found the code, made the change, and submitted a patch. It's literally only two lines. The IRC handler has a generic handler, just a "default" on a "select" statement, that used to handle the 422, because there was no specific handling. I just added a specific "case" that does only a break. -- Mark Atwood | Well done is better than well said. mr...@po... | http://www.pobox.com/~mra |
From: Mark A. <mr...@po...> - 2003-02-13 03:28:16
|
Christian Hammond <ch...@gn...> writes: > On Wed, Feb 12, 2003 at 11:25:12AM -0800, Mark Atwood wrote: > > Many IRC servers do not have a MOTD file, and when a client connects > > to them, they get a "422 No MOTD file" warning. It's a completely > > harmless warning, and I think it's a wart on the IRC protocol that it > > even gets reported to the clients. > > > > The Gaim IRC plugin pops up a dialog box when it receives a warning > > code from the server. Including this one. Which happens a lot. > > Would it be difficult to modify the IRC plugin to ignore harmless > > warnings? > > What version? Today's CVS. -- Mark Atwood | Well done is better than well said. mr...@po... | http://www.pobox.com/~mra |
From: Christian H. <ch...@gn...> - 2003-02-13 02:40:27
|
On Wed, Feb 12, 2003 at 04:20:50PM -0500, Evan Doughty wrote: > On Wed, 2003-02-12 at 18:08, Christian Hammond wrote: > > On Wed, Feb 12, 2003 at 11:25:12AM -0800, Mark Atwood wrote: > > > Many IRC servers do not have a MOTD file, and when a client connects > > > to them, they get a "422 No MOTD file" warning. It's a completely > > > harmless warning, and I think it's a wart on the IRC protocol that it > > > even gets reported to the clients. > > >=20 > > > The Gaim IRC plugin pops up a dialog box when it receives a warning > > > code from the server. Including this one. Which happens a lot. > > > Would it be difficult to modify the IRC plugin to ignore harmless > > > warnings? > >=20 > > What version? >=20 > Well, I'm running CVS and it does this. My CVS build is a few days old, > though. I'll update it and see if it's still there. >=20 > Personally, I think it's ok that we push the error through, but I think > maybe we should say exactly what the error is. Currently, we do an alert > with "IRC Error 422" and that's it.=20 What server are you using? I have not seen this error. Christian =20 --=20 Christian Hammond <> The GNUpdate Project ch...@gn... <> http://www.gnupdate.org/ Coding is easy; All you do is sit staring at a terminal until the drops of blood form on your forehead. |
From: Evan D. <ev...@ca...> - 2003-02-13 02:21:22
|
On Wed, 2003-02-12 at 18:08, Christian Hammond wrote: > On Wed, Feb 12, 2003 at 11:25:12AM -0800, Mark Atwood wrote: > > Many IRC servers do not have a MOTD file, and when a client connects > > to them, they get a "422 No MOTD file" warning. It's a completely > > harmless warning, and I think it's a wart on the IRC protocol that it > > even gets reported to the clients. > > > > The Gaim IRC plugin pops up a dialog box when it receives a warning > > code from the server. Including this one. Which happens a lot. > > Would it be difficult to modify the IRC plugin to ignore harmless > > warnings? > > What version? Well, I'm running CVS and it does this. My CVS build is a few days old, though. I'll update it and see if it's still there. Personally, I think it's ok that we push the error through, but I think maybe we should say exactly what the error is. Currently, we do an alert with "IRC Error 422" and that's it. -- Evan Doughty ev...@ca... |
From: Christian H. <ch...@gn...> - 2003-02-12 23:08:43
|
On Wed, Feb 12, 2003 at 11:25:12AM -0800, Mark Atwood wrote: > Many IRC servers do not have a MOTD file, and when a client connects > to them, they get a "422 No MOTD file" warning. It's a completely > harmless warning, and I think it's a wart on the IRC protocol that it > even gets reported to the clients. >=20 > The Gaim IRC plugin pops up a dialog box when it receives a warning > code from the server. Including this one. Which happens a lot. > Would it be difficult to modify the IRC plugin to ignore harmless > warnings? What version? Christian =20 --=20 Christian Hammond <> The GNUpdate Project ch...@gn... <> http://www.gnupdate.org/ "You haven't lived until you've died in a MUD!" |
From: Mark A. <mr...@po...> - 2003-02-12 19:25:19
|
Many IRC servers do not have a MOTD file, and when a client connects to them, they get a "422 No MOTD file" warning. It's a completely harmless warning, and I think it's a wart on the IRC protocol that it even gets reported to the clients. The Gaim IRC plugin pops up a dialog box when it receives a warning code from the server. Including this one. Which happens a lot. Would it be difficult to modify the IRC plugin to ignore harmless warnings? -- |
From: budtse <bu...@pi...> - 2003-02-11 20:55:32
|
> Gaim cvs now requires libao and libaudiofile, and their header files. If > you don't get sound, run gaim -d and look for the line that says what > output driver you are using. If that doesn't match what it should be, > create a file called ~/.libao, and put "default-driver=esd" in the file. > Substitute esd with arts or alsa if that's what you are using. > > Ka-Hing Hi, I'm using gaim cvs on Windows 2000 and have the same problem. I've been looking for a line that says which driver is used as said below, but can't seem to find it. There probably should be some other mechanism for Windows. Any hints ?? Budtse |
From: Christian R. <me...@gn...> - 2003-02-11 19:40:07
|
m=E5n 2003-01-13 klockan 10.33 skrev Christian Rose: > So, again, please don't take this as "random guy tries to force us to > become part of GNOME", that's certainly not my intention. I just want > you to choose to use a translation project, and the decision of what > translation project to use is closely related to your plans for the > future, since they work in different ways and one of those mentioned > here is tied to using GNOME cvs, and one is not. > And hopefully I have also outlined in enough detail why I think that not > using any translation project at all but instead handling all > translators on your own has its own share of problems, and why I think > that the benefits of using a translation project would be beneficial > both for you and translators. Was there any decision on this (using GNOME cvs vs. using the Translation Project)? I might have missed some replies, as I'm not subscribed to the mailing list. Please let me know when you have a decision, as we'd like to move forward soon. Thanks, Christian |
From: Ka-Hing C. <kh...@ja...> - 2003-02-10 04:15:06
|
On Sun, 2003-02-09 at 20:02, Adam Feakin wrote: > On Sun, Feb 09, 2003 at 10:48:14PM -0500, Scott Henson wrote: > > I just upgraded to the latest gaim(from the previous latest) and > > suddenly sound no longer works on gaim. Im using the cvs debs on a > > debian unstable system. > > > I got the same problem here with CVS, seems that "Automatic" means OSS, > either that or it gets stuck while trying to detect what driver to use > because something else has the audio device. Setting the sound option > to run whatever command to play for whatever sound daemon you have works > though - so I just run esdplay %s Gaim cvs now requires libao and libaudiofile, and their header files. If you don't get sound, run gaim -d and look for the line that says what output driver you are using. If that doesn't match what it should be, create a file called ~/.libao, and put "default-driver=esd" in the file. Substitute esd with arts or alsa if that's what you are using. Ka-Hing BOFH excuse #48: bad ether in the cables |
From: Ethan B. <ebl...@cs...> - 2003-02-10 04:14:00
|
Adam Feakin spake unto us the following wisdom: > On Sun, Feb 09, 2003 at 10:48:14PM -0500, Scott Henson wrote: > > I just upgraded to the latest gaim(from the previous latest) and > > suddenly sound no longer works on gaim. Im using the cvs debs on a > > debian unstable system. =20 >=20 > I got the same problem here with CVS, seems that "Automatic" means OSS, > either that or it gets stuck while trying to detect what driver to use > because something else has the audio device. Setting the sound option > to run whatever command to play for whatever sound daemon you have works > though - so I just run esdplay %s You can also put the line: default_driver=3Desd in ~/.libao -- use default_driver=3Darts if you want arts, instead. Ethan --=20 And if I claim to be a wise man / it surely means that I don't know. -- Kansas, "Carry on Wayward Son" |
From: Adam F. <ad...@sn...> - 2003-02-10 04:02:51
|
On Sun, Feb 09, 2003 at 10:48:14PM -0500, Scott Henson wrote: > I just upgraded to the latest gaim(from the previous latest) and > suddenly sound no longer works on gaim. Im using the cvs debs on a > debian unstable system. I got the same problem here with CVS, seems that "Automatic" means OSS, either that or it gets stuck while trying to detect what driver to use because something else has the audio device. Setting the sound option to run whatever command to play for whatever sound daemon you have works though - so I just run esdplay %s -- Adam ad...@sn... |
From: Scott H. <she...@si...> - 2003-02-10 03:48:35
|
I just upgraded to the latest gaim(from the previous latest) and suddenly sound no longer works on gaim. Im using the cvs debs on a debian unstable system. =20 --=20 Scott Henson <she...@si...> |