Fri, 21 May 2004 14:33:32 +0000
[gaim-migrate @ 9774]
" This patch renames the existing received-*-msg signals
to receiving-*msg to fit the naming of other signals
where a pointer to the message is passed (writing,
sending, displaying)
It adds new received-*-msg signals which are emitted
after the receiving signals, in line with the other
conversation signals (wrote, sent, displayed)
This is necessary to allow plugins which depend on the
final received message to work alongside plugins which
may modify the message.
One known example of this is festival-gaim alongside
gaim-encryption - festival-gaim would try to "speak"
the encrypted text:
http://sf.net/tracker/?func=detail&aid=943216&group_id=89763&atid=591320
I've tested this with gaim-encryption and festival-gaim
(locally modified so gaim-encryption uses the receiving
signal and festival uses the received signal)
All in-tree users of received-*-msg are updated to use
receiving-*-msg if they do modify the message, the
conversation-signals documentation is updated, the
signals-test.c & signal-test.tcl plugins are also updated." --Stu Tomlinson
committer: Luke Schierer <lschiere@pidgin.im>
|
6198
8be5d3e84233
[gaim-migrate @ 6684]
Herman Bloggs <herman@bluedigits.com>
parents:
4202
diff
changeset
|
1 | EXTRA_DIST = \ |
|
8be5d3e84233
[gaim-migrate @ 6684]
Herman Bloggs <herman@bluedigits.com>
parents:
4202
diff
changeset
|
2 | PROTOCOL \ |
|
8be5d3e84233
[gaim-migrate @ 6684]
Herman Bloggs <herman@bluedigits.com>
parents:
4202
diff
changeset
|
3 | Makefile.mingw |
|
2287
76dd3086d677
[gaim-migrate @ 2297]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2086
diff
changeset
|
4 | |
| 2086 | 5 | pkgdir = $(libdir)/gaim |
| 6 | ||
|
4202
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
7 | TOCSOURCES = toc.c |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
8 | |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
9 | AM_CFLAGS = $(st) |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
10 | |
|
2894
6cf9278efb8a
[gaim-migrate @ 2907]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2341
diff
changeset
|
11 | libtoc_la_LDFLAGS = -module -avoid-version |
| 2086 | 12 | |
| 13 | if STATIC_TOC | |
| 14 | ||
| 8082 | 15 | st = -DGAIM_STATIC_PRPL |
| 2086 | 16 | noinst_LIBRARIES = libtoc.a |
|
4202
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
17 | libtoc_a_SOURCES = $(TOCSOURCES) |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
18 | libtoc_a_CFLAGS = $(AM_CFLAGS) |
|
3411
e9d50336f9c3
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
2894
diff
changeset
|
19 | |
| 2086 | 20 | else |
| 21 | ||
| 22 | st = | |
|
4202
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
23 | pkg_LTLIBRARIES = libtoc.la |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
24 | libtoc_la_SOURCES = $(TOCSOURCES) |
| 2086 | 25 | |
| 26 | endif | |
|
4202
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
27 | |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
28 | AM_CPPFLAGS = \ |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
29 | -I$(top_srcdir)/src \ |
|
6371
e92b66ee5518
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6360
diff
changeset
|
30 | $(GLIB_CFLAGS) \ |
|
4202
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
31 | $(DEBUG_CFLAGS) |