You can subscribe to this list here.
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(435) |
Dec
(252) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2005 |
Jan
(177) |
Feb
(157) |
Mar
(187) |
Apr
(168) |
May
(127) |
Jun
(291) |
Jul
(38) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: SourceForge.net <no...@so...> - 2005-04-24 21:16:37
|
Patches item #743100, was opened at 2003-05-25 06:48 Message generated for change (Comment added) made by thekingant You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=743100&group_id=235 Category: None Group: None >Status: Closed >Resolution: Out of Date Priority: 5 Submitted By: Mike Soh (sohmc) Assigned to: Etan Reisner (deryni9) Summary: redesigned fortuneprofile.pl Initial Comment: Completely redesigned it from scratch, taking bits and pieces from the original from Sean Egan. Overall Changes: * sorta centralized variables so the user can customize them * added $time variable to show the current time in 24-hour mode * $pre, $post replaced with a template structure; user can specifiy a template file (specified in $profile_template) using variables $fortune and $time. They get replaced before the profile is updated. This will allow the user to update their profile faster and slightly easier. * broke up most of the script into subroutines so it's easier to follow...for the most part. :-) * comments...oh the comments! (mind my mis-grammarage) * ability to specify customized fortune files Bugs: * text width is jagged; been working on how to get the script to format the text so that it doesn't look "unnatural" in the profile. * Profile doesn't actually get updated in the first run-through because the script loads before gaim goes online. ---------------------------------------------------------------------- >Comment By: Mark Doliner (thekingant) Date: 2005-04-24 17:16 Message: Logged In: YES user_id=20979 Looks like this was written with the old perl interface in mind. I'm going to close it, since it won't apply anymore ---------------------------------------------------------------------- Comment By: Mike Soh (sohmc) Date: 2003-05-25 14:38 Message: Logged In: YES user_id=558644 well, the benefit that I got out of it was the customizable template...makes it easier (I think) to add/remove stuff from your profile as you normally would without reading all the code. ---------------------------------------------------------------------- Comment By: Luke Schierer (lschiere) Date: 2003-05-25 14:35 Message: Logged In: YES user_id=28833 so the only benifit here is that the code is easier to configure? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=743100&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-24 21:12:08
|
Patches item #694856, was opened at 2003-02-28 00:08 Message generated for change (Comment added) made by thekingant You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=694856&group_id=235 Category: Plugins Group: None >Status: Closed >Resolution: Out of Date Priority: 5 Submitted By: Ernie Hershey (ehershey) Assigned to: Etan Reisner (deryni9) Summary: store pending messages to file Initial Comment: I've patched the message notification plugin to support a new configuration option to store pending messages in ~/.gaim/.notify-msgs. The main purpose is so mail notification style programs can also report how many pending IM messages are waiting to be seen. The following in ~/.wmbiffrc will show pending messages in wmbiff: label.0 = GAIM path.0 = shell:::cat /home/ernie/.gaim/.notify-msgs | wc -l other possible uses include: playing a sound if pending messages aren't viewed within a certain amount of time displaying other counters of pending messages popping up an alert if the number of pending messages goes above a certain limit all changes are in plugins/notify.c. I've tried to keep the code in the same style as the rest of the source file. ---------------------------------------------------------------------- >Comment By: Mark Doliner (thekingant) Date: 2005-04-24 17:12 Message: Logged In: YES user_id=20979 I'm going to close this for a few reasons: 1. It's probably way out of date (that's our fault--sorry) 2. The idea is pretty cool, but I don't really think this should be a part of the notification plugin. I think it would be better to do this in a small, self-contained perl, tcl or C plugin. 3. It seems like there should be a better way to do this... some people have talked about things like corba and D-BUS on the gaim-devel mailing list. Some sort of IPC like that would work a lot better, but that's a very long way off. 4. I don't think it's something that enough people would use to warrant having it package with Gaim ---------------------------------------------------------------------- Comment By: Ernie Hershey (ehershey) Date: 2003-04-05 14:31 Message: Logged In: YES user_id=19392 nobody likes my patch, oh well ---------------------------------------------------------------------- Comment By: Ernie Hershey (ehershey) Date: 2003-03-19 10:25 Message: Logged In: YES user_id=19392 This also makes it easy to grab pending messages from a remote machine. With sign ins/outs logged it's hard to easily tell which log files have new messages in them. ---------------------------------------------------------------------- Comment By: Ernie Hershey (ehershey) Date: 2003-02-28 21:45 Message: Logged In: YES user_id=19392 I added a total line too, so wmbiff can just read that line directly instead of using wc: label.0 = GAIM path.0 = shell:::grep ^__total: ~/.gaim/.notify-msgs|cut -f2 -d: ---------------------------------------------------------------------- Comment By: Ernie Hershey (ehershey) Date: 2003-02-28 11:40 Message: Logged In: YES user_id=19392 My patch file didn't make it. I'll re-attempt to upload it this evening. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=694856&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-24 20:58:08
|
Patches item #680803, was opened at 2003-02-05 06:31 Message generated for change (Comment added) made by thekingant You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=680803&group_id=235 Category: None Group: None >Status: Closed >Resolution: Out of Date Priority: 5 Submitted By: Michal (micu) Assigned to: Sean Egan (seanegan) Summary: Gadu-Gadu not working when first server port is blocked Initial Comment: When connecting to a Gadu-Gadu server across a firewall that blocks connections to GG default port (slight above 8000), switching to alternate (443) is not handled properly. I suppose gg_login() function behaves correctly, but this one is not used right now - gaim uses proxy_connect() instead. The quick-and-dirty workaround that I use is to skip first phase of GG connection and connect immediately to 443 (which is not blocked). Below is mini-patch implementing such behaviour (against 0.59.8 but as I far as I can see nothing has changed in GG handling since then). Regards MiCu ---------------------------------------------------------------------- >Comment By: Mark Doliner (thekingant) Date: 2005-04-24 16:58 Message: Logged In: YES user_id=20979 It looks like this patch is very out of date. I don't believe we use any of the connecting code in libgg.c (and it looks like it's blocking...). I think all the connecting is done in gg.c with calls to gaim_proxy_connect. And it looks like, to log in, we only attempt to use port 80. I haven't heard an astounding number of complaints about this, so I'm going to assume it's fine for most people. If you still want to try to fallback to a different port, feel free to write a new patch that applies to CVS HEAD (but to me, it seems unneeded). ---------------------------------------------------------------------- Comment By: Sean Egan (seanegan) Date: 2005-03-13 18:22 Message: Logged In: YES user_id=199625 Are there any downsides to connecting to this port instead? The comments imply that this is an https port. Unless I'm mistaken, we don't support SSL with GG. Are there any potential problems with that? Also, what about people for whom port 443 is blocked and the default is? This would really be better done by making the port specified in the account editor like it is for every other prpl. Care to take that task on? I'll follow your recommendation, regardless, though. Just because we don't have anyone else interested in GG to consult with. ---------------------------------------------------------------------- Comment By: Michal (micu) Date: 2003-02-05 08:25 Message: Logged In: YES user_id=704973 --- src/protocols/gg/libgg.c.ORIG Sat Dec 21 21:08:19 2002 +++ src/protocols/gg/libgg.c Wed Feb 5 12:23:54 2003 @@ -1011,7 +1011,7 @@ a.s_addr = inet_addr(host); sess->server_ip = a.s_addr; - if ((sess->fd = gg_connect(&a, port, sess->async)) == -1) { + /* if ((sess->fd = gg_connect(&a, port, sess->async)) == -1) { */ gg_debug(GG_DEBUG_MISC, "-- connection failed, trying https connection\n"); if ((sess->fd = gg_connect(&a, GG_HTTPS_PORT, sess->async)) == -1) { gg_debug(GG_DEBUG_MISC, "-- connection failed, errno = %d (%s)\n", errno, strerror(errno)); @@ -1021,7 +1021,7 @@ sess->state = GG_STATE_IDLE; break; } - } + /* } */ sess->state = GG_STATE_CONNECTING_GG; sess->check = GG_CHECK_WRITE; ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=680803&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-24 20:52:09
|
Patches item #1189105, was opened at 2005-04-24 21:52 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1189105&group_id=235 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Will Thompson (resiak--) Assigned to: Nobody/Anonymous (nobody) Summary: Fixed Alt-# to switch tab Initial Comment: Completes the previously commented-out block in gtkconv.c dealing with Alt-#. Checks that the tab exists before switching to it. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1189105&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-24 19:42:52
|
Patches item #603825, was opened at 2002-09-03 00:16 Message generated for change (Comment added) made by thekingant You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=603825&group_id=235 Category: None Group: None >Status: Closed >Resolution: Out of Date Priority: 5 Submitted By: Jay Guerette (jayguerette) Assigned to: Etan Reisner (deryni9) Summary: add chat_buddy_rename event Initial Comment: event called when someone changes their name in a chat room. ---------------------------------------------------------------------- >Comment By: Mark Doliner (thekingant) Date: 2005-04-24 15:42 Message: Logged In: YES user_id=20979 I'm closing this because it's very out of date. Our signals system has been rewritten since this was submitted. I think I would be willing to add a signal for when someone changes their name in a chat, if you're interested in submitting a new patch. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=603825&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-24 19:41:14
|
Patches item #550481, was opened at 2002-04-29 23:23 Message generated for change (Comment added) made by thekingant You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=550481&group_id=235 Category: None Group: None >Status: Closed >Resolution: Out of Date Priority: 5 Submitted By: Paul Miller (pmiller9) Assigned to: Etan Reisner (deryni9) Summary: add get/got_info/away plug in events Initial Comment: 1) This patch adds the following events to gaim: event_get_info/event_get_away - when *gaim* requests info/away on a buddy, etc. event_got_info - when info is received from protocol 2) It also makes the following modifications: Plugin event return codes - plugin event functions can return 0=success, positive=error, negative=error & disconnect signal. The feature of disconnecting signals is very useful because a the plugin event function cannot disconnect the signal itself (it'll cause gaim to segfault). Since most of the plugin event functions are type void, it also patches all the included plugins, changing them to type int and returning 0. Note: because of (2), many 3rd-party plugins may cause unexpected results if they do not return the proper value. A simple modification to the plugin will quickly fix the problem. Patch is against recent cvs. For the latest version of this patch, go to gaim osd's page (http://gaimosd.sourceforge.net). ---------------------------------------------------------------------- >Comment By: Mark Doliner (thekingant) Date: 2005-04-24 15:41 Message: Logged In: YES user_id=20979 I'm closing this because it's insanely out of date. I think I'd be willing to make these changes to CVS head, if you want to submit a new patch. ---------------------------------------------------------------------- Comment By: Eduardo Pérez (eperez) Date: 2004-11-19 16:36 Message: Logged In: YES user_id=60347 This patch doesn't apply anymore. Could you update it? or is totally deprecated? ---------------------------------------------------------------------- Comment By: Paul Miller (pmiller9) Date: 2002-05-09 20:00 Message: Logged In: YES user_id=509952 updated to support buddy_menu's and latest cvs ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=550481&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-24 18:13:17
|
Patches item #1188728, was opened at 2005-04-23 17:21 Message generated for change (Comment added) made by thekingant You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1188728&group_id=235 Category: None Group: None >Status: Closed >Resolution: Accepted Priority: 5 Submitted By: Enix (enix) Assigned to: Nobody/Anonymous (nobody) Summary: fix sort by status in HEAD Initial Comment: this patch fixes the sort by status option in HEAD so that it actually sorts by status. Also, changes the documenation in status.h for the gaim_presence_compare() function so that it makes sense. ---------------------------------------------------------------------- >Comment By: Mark Doliner (thekingant) Date: 2005-04-24 14:13 Message: Logged In: YES user_id=20979 Thanks ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1188728&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-24 17:39:19
|
Patches item #1188725, was opened at 2005-04-23 17:15 Message generated for change (Comment added) made by thekingant You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1188725&group_id=235 Category: None Group: None >Status: Closed >Resolution: Accepted Priority: 5 Submitted By: Enix (enix) Assigned to: Sean Egan (seanegan) Summary: change auto-reply option string Initial Comment: one of the options for auto-reply in HEAD is currently "if (away && idle)." This is code, not english. This patch changes that string to "When away and idle" as it is in gaim 1.2.1 ---------------------------------------------------------------------- >Comment By: Mark Doliner (thekingant) Date: 2005-04-24 13:39 Message: Logged In: YES user_id=20979 Thanks ---------------------------------------------------------------------- Comment By: Luke Schierer (lschiere) Date: 2005-04-23 17:52 Message: Logged In: YES user_id=28833 this somewhat tounge in cheak change was made because our users are consistently not understanding the difference between "and" and "or". ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1188725&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-23 21:52:06
|
Patches item #1188725, was opened at 2005-04-23 17:15 Message generated for change (Comment added) made by lschiere You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1188725&group_id=235 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Enix (enix) >Assigned to: Sean Egan (seanegan) Summary: change auto-reply option string Initial Comment: one of the options for auto-reply in HEAD is currently "if (away && idle)." This is code, not english. This patch changes that string to "When away and idle" as it is in gaim 1.2.1 ---------------------------------------------------------------------- >Comment By: Luke Schierer (lschiere) Date: 2005-04-23 17:52 Message: Logged In: YES user_id=28833 this somewhat tounge in cheak change was made because our users are consistently not understanding the difference between "and" and "or". ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1188725&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-23 21:21:12
|
Patches item #1188728, was opened at 2005-04-23 21:21 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1188728&group_id=235 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Enix (enix) Assigned to: Nobody/Anonymous (nobody) Summary: fix sort by status in HEAD Initial Comment: this patch fixes the sort by status option in HEAD so that it actually sorts by status. Also, changes the documenation in status.h for the gaim_presence_compare() function so that it makes sense. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1188728&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-23 21:15:43
|
Patches item #1188725, was opened at 2005-04-23 21:15 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1188725&group_id=235 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Enix (enix) Assigned to: Nobody/Anonymous (nobody) Summary: change auto-reply option string Initial Comment: one of the options for auto-reply in HEAD is currently "if (away && idle)." This is code, not english. This patch changes that string to "When away and idle" as it is in gaim 1.2.1 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1188725&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-21 02:47:01
|
Patches item #1186987, was opened at 2005-04-20 19:08 Message generated for change (Comment added) made by thekingant You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1186987&group_id=235 Category: Plugins Group: None >Status: Closed >Resolution: Accepted Priority: 5 Submitted By: Alex Converse (alex4) >Assigned to: Mark Doliner (thekingant) Summary: Mirror API removals in perl plugin/fix compile Initial Comment: Mirror the conversation api changes in the perl interface http://cvs.sourceforge.net/viewcvs.py/gaim/gaim/src/conversation.h?r1=1.60&r2=1.61 ---------------------------------------------------------------------- >Comment By: Mark Doliner (thekingant) Date: 2005-04-20 22:46 Message: Logged In: YES user_id=20979 Good patch, thanks ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1186987&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-20 23:18:07
|
Patches item #1186987, was opened at 2005-04-20 19:08 Message generated for change (Settings changed) made by lschiere You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1186987&group_id=235 Category: Plugins Group: None Status: Open Resolution: None Priority: 5 Submitted By: Alex Converse (alex4) >Assigned to: Etan Reisner (deryni9) Summary: Mirror API removals in perl plugin/fix compile Initial Comment: Mirror the conversation api changes in the perl interface http://cvs.sourceforge.net/viewcvs.py/gaim/gaim/src/conversation.h?r1=1.60&r2=1.61 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1186987&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-20 23:08:55
|
Patches item #1186987, was opened at 2005-04-20 23:08 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1186987&group_id=235 Category: Plugins Group: None Status: Open Resolution: None Priority: 5 Submitted By: Alex Converse (alex4) Assigned to: Nobody/Anonymous (nobody) Summary: Mirror API removals in perl plugin/fix compile Initial Comment: Mirror the conversation api changes in the perl interface http://cvs.sourceforge.net/viewcvs.py/gaim/gaim/src/conversation.h?r1=1.60&r2=1.61 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1186987&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-19 04:21:21
|
Patches item #1185449, was opened at 2005-04-18 17:12 Message generated for change (Settings changed) made by thekingant You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185449&group_id=235 Category: None Group: None >Status: Closed >Resolution: Accepted Priority: 5 Submitted By: Richard Laager (rlaager) >Assigned to: Mark Doliner (thekingant) Summary: Conversation History Saving Fix Initial Comment: As the comment in gtkconv.c says, saving a duplicate copy of the entire conversation is completely bogus. Saving a copy of a conversation is a UI thing (if the UI is only showing the last five messages, for example, that's all the user would expect to be saved). Therefore, there's no problem having the UI save its own buffer. The GTK+ UI is already doing this with the imhtml object. This patch removes the history from GaimConversation and uses the buffer in the imhtml object when saving a conversation. It also adds <html>, <head>, <title>, and <body> tags to the file to make it a bit more valid. This patch is extremely likely to break plugins because it changes the size of the GaimConversation struct. As such, if this is committed, I recommend the developers recompile non-default plugins. This broke Gaim-Encryption for me, hence the warning. ---------------------------------------------------------------------- Comment By: Richard Laager (rlaager) Date: 2005-04-18 17:45 Message: Logged In: YES user_id=156487 Forgot to mention, this needs a ChangeLog.API entry for the removal of gaim_conversation_set_history and gaim_conversation_get_history. ---------------------------------------------------------------------- Comment By: Richard Laager (rlaager) Date: 2005-04-18 17:22 Message: Logged In: YES user_id=156487 We should also escape the resulting filename. Here's a new patch that also does that. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185449&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-19 03:52:22
|
Patches item #1184976, was opened at 2005-04-18 00:00 Message generated for change (Settings changed) made by thekingant You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1184976&group_id=235 Category: None Group: None >Status: Closed >Resolution: Accepted Priority: 5 Submitted By: Richard Laager (rlaager) >Assigned to: Mark Doliner (thekingant) Summary: Conversation View Log Initial Comment: This contact-izes the View Log in the conversation window correctly. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1184976&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-19 03:41:01
|
Patches item #1185455, was opened at 2005-04-18 17:29 Message generated for change (Settings changed) made by thekingant You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185455&group_id=235 Category: None Group: None >Status: Closed >Resolution: Accepted Priority: 5 Submitted By: Richard Laager (rlaager) >Assigned to: Mark Doliner (thekingant) Summary: gtkimhtml.c gtk_key_pressed_cb Cleanup Initial Comment: I realize gtk_key_pressed_cb is a work-around hack, but given the stance of supporting GTK+ 2.0, we're going to be stuck with it for a while. There's no need to connect this signal for new versions of GTK+. Also, the logic in the hack is quite weird and there's some dead code. Without looking at CVS logs, I can only assume this is because it went through lots of changes. This patch makes it more clear what's going on and will make it easier to remove this code when GTK+ 2.2 support is eventually deprecated at some point in the distant future. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185455&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-19 03:31:43
|
Patches item #1185594, was opened at 2005-04-18 23:09 Message generated for change (Settings changed) made by thekingant You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185594&group_id=235 Category: None Group: None >Status: Closed >Resolution: Accepted Priority: 5 Submitted By: Richard Laager (rlaager) >Assigned to: Mark Doliner (thekingant) Summary: Command Error Messages Initial Comment: This cleans up a couple error messages. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185594&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-19 03:29:43
|
Patches item #1185433, was opened at 2005-04-18 16:52 Message generated for change (Settings changed) made by thekingant You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185433&group_id=235 Category: None Group: None >Status: Closed >Resolution: Accepted Priority: 5 Submitted By: Richard Laager (rlaager) >Assigned to: Mark Doliner (thekingant) Summary: [HEAD] Fix the Gesture Plugin Initial Comment: After marv (I think it was him.) removed some index function, the gestures plugin started giving me compiler warnings. I tracked them down and rewrote the appropriate section of code. Tested and found to work. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185433&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-19 03:18:57
|
Patches item #1185437, was opened at 2005-04-18 16:55 Message generated for change (Settings changed) made by thekingant You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185437&group_id=235 Category: None Group: None >Status: Closed >Resolution: Accepted Priority: 5 Submitted By: Richard Laager (rlaager) >Assigned to: Mark Doliner (thekingant) Summary: Fix Warning for notify Plugin Initial Comment: Again, after the removal of gaim_conversation_get_index, this plugin started spewing warnings. From what I can see, this is completely dead code. This patch removes it. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185437&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-19 03:16:46
|
Patches item #1185438, was opened at 2005-04-18 16:57 Message generated for change (Settings changed) made by thekingant You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185438&group_id=235 Category: None Group: None >Status: Closed >Resolution: Accepted Priority: 5 Submitted By: Richard Laager (rlaager) >Assigned to: Mark Doliner (thekingant) Summary: Fix Warning for conversation.c Initial Comment: Someone #if 0'ed code. I get warnings now. This fixes the warnings. (Yes, the comment change is legitimate. The compiler was warning because the comment is unclosed.) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185438&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-19 03:12:52
|
Patches item #1185478, was opened at 2005-04-18 18:13 Message generated for change (Settings changed) made by thekingant You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185478&group_id=235 Category: None Group: None >Status: Closed >Resolution: Accepted Priority: 5 Submitted By: Richard Laager (rlaager) >Assigned to: Mark Doliner (thekingant) Summary: gtkconv.c Compiler Warnings Initial Comment: This removes the last of the compiler warnings I'm seeing when I do a full rebuild of Gaim. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185478&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-19 03:09:35
|
Patches item #1185594, was opened at 2005-04-18 22:09 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185594&group_id=235 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Richard Laager (rlaager) Assigned to: Nobody/Anonymous (nobody) Summary: Command Error Messages Initial Comment: This cleans up a couple error messages. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185594&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-19 03:03:27
|
Patches item #1185493, was opened at 2005-04-18 18:42 Message generated for change (Settings changed) made by thekingant You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185493&group_id=235 Category: None Group: None >Status: Closed >Resolution: Accepted Priority: 5 Submitted By: Richard Laager (rlaager) >Assigned to: Mark Doliner (thekingant) Summary: ChangeLog Spelling Fix Initial Comment: This fixes the spelling of "background". ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185493&group_id=235 |
|
From: SourceForge.net <no...@so...> - 2005-04-18 22:42:39
|
Patches item #1185493, was opened at 2005-04-18 17:42 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185493&group_id=235 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Richard Laager (rlaager) Assigned to: Nobody/Anonymous (nobody) Summary: ChangeLog Spelling Fix Initial Comment: This fixes the spelling of "background". ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1185493&group_id=235 |