| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
This reverts commit efb42513359f4db545e3312e3c583d07c6306418.
|
|
|
|
|
|
|
|
| |
This reverts commit 00ab069a55f05f0203bf58f071fa7adc54b6e9ac.
Conflicts:
libempathy-gtk/empathy-contact-widget.c
|
|
|
|
| |
Fixes bug #525576
|
|
|
|
|
|
| |
Updated the the pkg-config version to 0.1.1
Updated the the pkg-config dep name fom libtelepathy-logger to telepathy-logger
Updated TPL's _finish() methods using one for each async API.
|
|
|
|
| |
or it will allow race conditions
|
|
|
|
| |
By default TPL is disabled, use --enable-tpl configure option to enable it.
|
| |
|
| |
|
| |
|
|
|
|
| |
Fixes: #609843
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(#608979)
Empathy displays this handy number of unread messages in the title bar, but
you can't replicate this behaviour using an Observer because Empathy
acknowledges the messages immediately. This patch makes it so that Empathy
only acknowledges the messages when it decrements the unread messages count.
N.B. EmpathyTpChat currently seems to assume that no other client is going to
acknowledge messages for channels, it is handling. This seems valid enough,
just pointing it out.
|
|
|
|
| |
search bar
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
This bug is caused by the behaviour of gtk_text_iter_backward_word_start. It
searches the text for delimiters, based on languages in pango. Numbers and
characters as | and [ are not considered to be part of a word in most
languages, while they are a part of nicknames. Therefore, empathy fails to get
the typed part of the nickname.
The attached patch will instead search backwards for a space character. The
text that needs to be completed, is the text between the caret and the first
space before that. (#554767)
|
|
|
|
|
|
|
| |
Lots of small spelling and grammar fixes, as well as some terminology
cleanups.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
|
|
|
|
|
|
|
| |
Fix punctuation in the IRC command help messages. Use proper Unicode ellipses
throughout Empathy, and proper em-dashes where appropriate.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
|
|
|
|
|
|
|
|
|
| |
empathy_chat_set_tp_chat has a comment saying that show_pending_messages is a
no-op when calling during object construction. This now is now actually true
as we added a boolean saying if we can display pending messages or not.
This is to avoid displaying pending messages *before* the messages fetched
from logs (#603980).
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
empathy_chat_set_show_contacts
That way priv->show_contacts is not changed and we'll redisplay the contact
list when reconnecting if needed (#598964).
|
|
|
|
|
| |
This will allow us to show/hide the contact list without changing
priv->show_contacts.
|
|
|
|
|
|
|
| |
connected
We should wait that the account is connected before reconnecting chats
(#603593).
|
| |
|
|\ |
|
| | |
|
| | |
|
|/ |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Telepathy-glib has a enum value for the MembersChanged signal to signify that a
user's ID has changed. Previously, empathy was simply interpreting this as if a
user with the old name had left the chat and a different user with the new name
had entered the chat. This change handles this case more gracefully by updating
the contact's id (and name) when this change reason is present
One thing that does not yet work with this patch is if you are engaged in a
private chat with a person and they change their nick in the middle of the chat.
Then the EmpathyContact* that you are chatting with is no longer the
EmpathyContact* representing the remote user, so messages won't be delivered
properly. When we detect that a user has been 'renamed', we probably need to
somehow go through all of the private chats with that person and swap out the
old (invalid) EmpathyContact* and replace it with the new one so that the chat
can continue without interruption.
|
|
|
|
|
|
|
|
|
| |
Some functions still remaining because there is not API
in GTK+ 2.19.0 yet.
http://bugzilla.gnome.org/show_bug.cgi?id=586476
Reviewed-By: Danielle Madeley <danielle.madeley@collabora.co.uk>
|
| |
|
| |
|
|
|
|
|
|
| |
This is needed when we are invited to a protected room. The channel is
created without the password requiered flag and then is updated once we
accept the invitation.
|
| |
|
| |
|
| |
|
| |
|
|\ |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
Also make commands not case sensitive and use g_ascii_isspace to detect spaces.
|
| |
| |
| |
| | |
Also improve a bit the support for optional args.
|
| |
| |
| |
| | |
https://bugzilla.gnome.org/show_bug.cgi?id=573407
|
| |
| |
| |
| | |
https://bugzilla.gnome.org/show_bug.cgi?id=573407
|
| |
| |
| |
| | |
https://bugzilla.gnome.org/show_bug.cgi?id=573407
|
| |
| |
| |
| | |
https://bugzilla.gnome.org/show_bug.cgi?id=573407
|
| |
| |
| |
| | |
https://bugzilla.gnome.org/show_bug.cgi?id=573407
|
| |
| |
| |
| | |
https://bugzilla.gnome.org/show_bug.cgi?id=573407
|
|\ \
| | |
| | |
| | |
| | | |
Conflicts:
libempathy-gtk/empathy-chat.c
|
| | | |
|
| | | |
|
| |/ |
|
| |
| |
| |
| | |
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
|
|/
|
|
| |
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
|
|\ |
|
| |
| |
| |
| | |
empathy_tp_chat
|
|/ |
|
|
|
|
|
|
| |
The only consumer of this signal just extracts the body from the
EmpathyMessage. It will be easier to handle the SendError D-Bus signal
if we don't have to construct an EmpathyMessage from it.
|
|
|
|
|
| |
Instead, call empathy_message_new_from_entry (), which parses the
entered text for us.
|
| |
|
|\ |
|
| |
| |
| |
| | |
of the args if needed (#587803)
|
| |
| |
| |
| | |
This makes it possible to send /unix/path (GNOME bug 589335)
|
| |
| |
| |
| |
| |
| |
| |
| | |
EmpathyAccountManager used to have a _lookup function that looked up accounts
by name and a _get function that lookup up accounts by connection. This is
confusing, as looking up an account for a connection is less common rename have
the _get_account be the same _lookup (but without returning a ref) and add a
_get_account_for_connection function lookup by account
|
|/ |
|
|
|
|
| |
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
|
|\ |
|
| |
| |
| |
| | |
Xavier said he preferred this, and it's shorter, so...
|
| |
| |
| |
| |
| |
| | |
Xavier suggested that just appending " (%s)" to the common prefix when
there is a message is probably okay from a translation point of view, as
long as there's a comment to translators.
|
| | |
|
| | |
|
| |
| |
| |
| | |
This avoids the function marching to the right quite so much.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
- Removed trailing spaces
- Notify change to visibility
- Added G_PARAM_STATIC_STRINGS to properties
- Broke empathy_chat_set_show_contacts() in two, simplifying call
|
| |
| |
| |
| |
| |
| |
| |
| | |
Added "show-contacts" property in empathy-chat with default value to preference.
Setter function show/hide contact list.
When Conv menu is opened in empathy-chat-window, update it with "show-contacts" value.
Uses "remote-contact" instead of "empathy_chat_is_room" for that.
Call setter function when Show Contacts menu is activated.
|
|/ |
|
| |
|
| |
|
|\ |
|
| | |
|
| |
| |
| |
| |
| | |
Some cleanup still required, done by
Davyd Madeley <davyd.madeley@collabora.co.uk>
|
| |
| |
| |
| | |
dialog. Fixes bug #578399
|
| | |
|
|/ |
|
|
|
|
|
|
| |
From: Xavier Claessens <xclaesse@gmail.com>
svn path=/trunk/; revision=2844
|
|
|
|
|
|
|
|
|
|
| |
When reconnecting open chat dialogs requests a new channel. It can grab this
directly when it is opened, no need to go through the dispatcher. Fixes issue
with stealing focus
From: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
svn path=/trunk/; revision=2814
|
|
|
|
|
|
| |
From: Xavier Claessens <xclaesse@gmail.com>
svn path=/trunk/; revision=2809
|
|
|
|
|
|
| |
From: Xavier Claessens <xclaesse@gmail.com>
svn path=/trunk/; revision=2762
|
|
|
|
|
|
| |
From: Xavier Claessens <xclaesse@gmail.com>
svn path=/trunk/; revision=2756
|
|
|
|
|
|
| |
From: Xavier Claessens <xclaesse@gmail.com>
svn path=/trunk/; revision=2727
|
|
|
|
|
|
| |
From: Xavier Claessens <xclaesse@gmail.com>
svn path=/trunk/; revision=2726
|
|
|
|
|
|
|
|
|
|
| |
MSN-like
MUCs.
From: Xavier Claessens <xclaesse@gmail.com>
svn path=/trunk/; revision=2724
|
|
|
|
|
|
| |
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
svn path=/trunk/; revision=2608
|
|
|
|
|
|
| |
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
svn path=/trunk/; revision=2602
|
|
|
|
|
|
| |
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
svn path=/trunk/; revision=2600
|
|
|
|
|
|
| |
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
svn path=/trunk/; revision=2586
|
|
|
|
|
|
| |
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
svn path=/trunk/; revision=2249
|
|
|
|
|
|
|
|
| |
show_pending_messages is there when tp-chat gets set
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
svn path=/trunk/; revision=2201
|
|
|
|
|
|
| |
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
svn path=/trunk/; revision=2170
|
|
|
|
|
|
| |
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
svn path=/trunk/; revision=2145
|
|
|
|
|
|
| |
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
svn path=/trunk/; revision=2129
|
|
|
|
| |
svn path=/trunk/; revision=2116
|
|
|
|
| |
svn path=/trunk/; revision=2115
|
|
|
|
| |
svn path=/trunk/; revision=2074
|
|
|
|
| |
svn path=/trunk/; revision=2062
|
|
|
|
| |
svn path=/trunk/; revision=2035
|
|
|
|
| |
svn path=/trunk/; revision=2034
|
|
|
|
|
|
| |
on other classes like webkit.
svn path=/trunk/; revision=1993
|
|
|
|
| |
svn path=/trunk/; revision=1987
|
|
|
|
| |
svn path=/trunk/; revision=1986
|
|
|
|
| |
svn path=/trunk/; revision=1984
|
|
|
|
| |
svn path=/trunk/; revision=1981
|
|
|
|
| |
svn path=/trunk/; revision=1967
|
|
|
|
|
|
| |
"Conversation". Fixes bug #560611.
svn path=/trunk/; revision=1717
|
|
|
|
| |
svn path=/trunk/; revision=1401
|
|
|
|
|
|
| |
anymore. Fixes bug #529084.
svn path=/trunk/; revision=1311
|
|
|
|
| |
svn path=/trunk/; revision=1191
|
|
|
|
| |
svn path=/trunk/; revision=1190
|
|
|
|
| |
svn path=/trunk/; revision=1189
|
|
|
|
|
|
|
|
| |
This allows users to send messages by just using the mouse.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
svn path=/trunk/; revision=1188
|
|
|
|
|
|
| |
#523918.
svn path=/trunk/; revision=1088
|
|
|
|
|
|
| |
G_TYPE_INSTANCE_GET_PRIVATE all the time.
svn path=/trunk/; revision=1082
|
|
|
|
| |
svn path=/trunk/; revision=1066
|
|
|
|
| |
svn path=/trunk/; revision=1057
|
|
|
|
| |
svn path=/trunk/; revision=1047
|
|
|
|
| |
svn path=/trunk/; revision=1046
|
|
|
|
| |
svn path=/trunk/; revision=1045
|
|
|
|
| |
svn path=/trunk/; revision=1044
|
|
|
|
| |
svn path=/trunk/; revision=1042
|
|
|
|
| |
svn path=/trunk/; revision=1032
|
|
|
|
| |
svn path=/trunk/; revision=1016
|
|
|
|
|
|
| |
appear/disappear. Fixes bug #528229.
svn path=/trunk/; revision=1013
|
|
|
|
| |
svn path=/trunk/; revision=966
|
|
|
|
| |
svn path=/trunk/; revision=962
|
|
|
|
| |
svn path=/trunk/; revision=941
|
|
|
|
| |
svn path=/trunk/; revision=940
|
|
|
|
| |
svn path=/trunk/; revision=938
|
|
|
|
| |
svn path=/trunk/; revision=932
|
|
|
|
|
|
| |
avoid problems move the code to a g_idle cb.
svn path=/trunk/; revision=922
|
|
|
|
| |
svn path=/trunk/; revision=907
|
|
|
|
| |
svn path=/trunk/; revision=854
|
|
|
|
| |
svn path=/trunk/; revision=853
|
|
|
|
| |
svn path=/trunk/; revision=852
|
|
|
|
| |
svn path=/trunk/; revision=851
|
|
|
|
| |
svn path=/trunk/; revision=850
|
|
|
|
| |
svn path=/trunk/; revision=846
|
|
|
|
| |
svn path=/trunk/; revision=845
|
|
|
|
| |
svn path=/trunk/; revision=841
|
|
|
|
| |
svn path=/trunk/; revision=840
|
|
|
|
| |
svn path=/trunk/; revision=838
|
|
|
|
| |
svn path=/trunk/; revision=836
|
|
|
|
|
|
| |
declare func on top.
svn path=/trunk/; revision=835
|
|
|
|
| |
svn path=/trunk/; revision=825
|
|
|
|
|
|
| |
libempathy-gtk/ to src/
svn path=/trunk/; revision=789
|
|
|
|
|
|
| |
some _run_until_ready.
svn path=/trunk/; revision=755
|
|
|
|
| |
svn path=/trunk/; revision=715
|
|
|
|
| |
svn path=/trunk/; revision=714
|
|
|
|
| |
svn path=/trunk/; revision=713
|
|
|
|
|
|
| |
dangerous to merge 2 days before GNOME 2.22.0
svn path=/trunk/; revision=710
|
|
|
|
|
|
| |
window. Fixes bug #479534 (Marco Barisione).
svn path=/trunk/; revision=705
|
|
|
|
| |
svn path=/trunk/; revision=688
|
|
|
|
|
|
| |
get alias/avatar.
svn path=/trunk/; revision=643
|
|
|
|
|
|
| |
Fixes bug #507515 and #516198.
svn path=/trunk/; revision=641
|
|
|
|
| |
svn path=/trunk/; revision=614
|
|
|
|
| |
svn path=/trunk/; revision=613
|
|
|
|
| |
svn path=/trunk/; revision=612
|
|
|
|
|
|
| |
gconf anymore.
svn path=/trunk/; revision=597
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-12-03 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-chat-window.c:
* libempathy-gtk/empathy-chat.c:
* libempathy-gtk/empathy-chat.h:
* libempathy-gtk/empathy-group-chat.c:
* libempathy-gtk/empathy-group-chat.h:
* libempathy-gtk/empathy-private-chat.c:
* libempathy-gtk/empathy-private-chat.h:
* libempathy/empathy-tp-chat.c:
* libempathy/empathy-tp-chat.h:
* python/pyempathy/pyempathy.defs:
* python/pyempathygtk/pyempathygtk.defs:
* src/empathy-chat-chandler.c: Cleanup chat objects API and request a
new Text channel if account gets reconnected.
svn path=/trunk/; revision=461
|
|
|
|
|
|
| |
ChangeLog
svn path=/trunk/; revision=455
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-11-21 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-group-chat.c:
* libempathy-gtk/empathy-chat.c:
* libempathy-gtk/empathy-chat.h: Add nick completion for MUCs.
Fixes bug #453418.
svn path=/trunk/; revision=441
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-11-11 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-chat.c:
* src/empathy-call-chandler.c:
* src/org.gnome.Empathy.Chat.service.in:
* src/empathy-chat-chandler.c:
* src/empathy.c:
* src/Makefile.am: Move chats to its own process.
svn path=/trunk/; revision=429
|
|
|
|
|
|
|
|
|
|
|
| |
2007-10-13 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-chat.c: Set chat state to ACTIVE when receiving
a message from a contact, avoid staying in COMPOSING state forever for
protocols like MSN that do not notify when contact stoped writing.
svn path=/trunk/; revision=372
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-10-13 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-chat-view.h:
* libempathy-gtk/empathy-main-window.c:
* libempathy-gtk/empathy-chat.c:
* libempathy-gtk/empathy-chat-window.c:
* libempathy-gtk/empathy-chat-view.c:
* libempathy/empathy-log-manager.c:
* libempathy/empathy-time.c:
* libempathy/empathy-tp-chat.c:
* libempathy/empathy-time.h:
* libempathy/empathy-message.c:
* libempathy/empathy-message.h:
* libempathy/empathy-presence.c:
* configure.ac: Don't use deprecated GtkTooltips API. Add commented out
lines in configure.ac to disable GLib and GTK deprecated symbols.
Replace EmpathyTime by time_t which is more appropriate for timestamps.
* doc/*: Updated.
svn path=/trunk/; revision=371
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-10-13 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-main-window.c:
* libempathy-gtk/empathy-presence-chooser.c:
* libempathy-gtk/empathy-contact-list-view.c:
* libempathy-gtk/empathy-contact-widget.c:
* libempathy-gtk/empathy-chat.c:
* libempathy-gtk/empathy-contact-list-store.c:
* libempathy-gtk/empathy-chat-window.c:
* libempathy/empathy-idle.c:
* tests/contact-manager.c: Use g_timeout_add_seconds when appropriated
to avoid weaking the process too much.
svn path=/trunk/; revision=370
|
|
|
|
|
|
|
|
|
|
| |
2007-09-21 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-chat.c: Move TP_CHANNEL_CHAT_STATE_PAUSED to
the not typing case. Fixes bug #474603 (Cosimo Cecchi).
svn path=/trunk/; revision=307
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-09-08 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-chat-view.h:
* libempathy-gtk/empathy-ui-utils.c:
* libempathy-gtk/empathy-ui-utils.h:
* libempathy-gtk/empathy-chat.c:
* libempathy-gtk/empathy-smiley-manager.c:
* libempathy-gtk/empathy-smiley-manager.h:
* libempathy-gtk/Makefile.am:
* libempathy-gtk/empathy-chat-window.c:
* libempathy-gtk/empathy-chat-view.c: More dynamic smiley managment and
more efficient algorithm to detect smileys in messages.
* doc/: Updated
svn path=/trunk/; revision=285
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-08-13 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-group-chat.c: Only update the topic of it has
really be changed, avoid diplaying many times "Topic set to:" message.
* libempathy-gtk/empathy-chat.c: Some Jabber chatroom sends messages
received before we joined the room, this avoid displaying those messages
if we already logged them last time we joined that room. Previous
workaround prevented Empathy to log offline messages.
svn path=/trunk/; revision=255
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-07-20 Xavier Claessens <xclaesse@gmail.com>
* libempathy/Makefile.am:
* libempathy/empathy-tp-roomlist.h:
* libempathy/empathy-tp-roomlist.c:
* libempathy-gtk/empathy-chatrooms-window.c:
* libempathy-gtk/empathy-new-chatroom-dialog.c: Initial room list
support. It does not works yet.
* libempathy-gtk/empathy-account-widget-generic.c: Add support for all
types of integer and float. Fixes bug #457740 (Jamey Hicks).
* libempathy/empathy-tp-chat.c:
* libempathy-gtk/empathy-chat.c: If there is an error sending a message,
show an error message to the user.
* libempathy-gtk/empathy-accounts-dialog.c: Fix a leak, profile should
be unrefed after mc_account_get_profile.
* libempathy/empathy-utils.c:
* libempathy/empathy-utils.h:
* libempathy/empathy-tp-chatroom.c:
* libempathy/empathy-tp-group.h:
* libempathy/empathy-tp-group.c:
* src/empathy.c: Rename empathy_get_channel_id() to
empathy_inspect_channel(). We now have empathy_inspect_handle().
* po/POTFILES.in:
* libempathy/empathy-tp-contact-list.c: Set all contacts from salut
protocol to the "Local Network" group.
* libempathy/empathy-idle.c: Fix NetworkManager support.
* libempathy/empathy-chatroom.h: Fix indentation.
* libempathy-gtk/empathy-status-icon.c:
* libempathy-gtk/empathy-ui-utils.c:
* libempathy-gtk/empathy-ui-utils.h:
- Iconify main window to the status icon like in rhythmbox.
Fixes bug #458106 (Jaap A. Haitsma).
- Rounded avatars. Fixes bug #457992 (Raphael Slinckx)
* Makefile.am: Fix distcheck for gtkdoc (Vincent Untz)
* data/empathy.desktop.in.in: Change application description
(Jaap A. Haitsma).
svn path=/trunk/; revision=190
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-06-30 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-account-widget-generic.c: Fix a leaked ref.
* src/empathy.c: If we get a chatroom we have to create an
EmpathyTpChatroom object.
* src/Makefile.am: Fix build system, programs links to libempathy-gtk
and libempathy.
* configure.ac: libempathy does not depends on libgnome-vfs.
* libempathy-gtk/empathy-status-icon.c:
* libempathy-gtk/empathy-chat.c:
* libempathy/empathy-tp-chat.c:
* libempathy/empathy-tp-chat.h:
* libempathy/empathy-filter.c:
* libempathy/empathy-filter.h:
* libempathy/empathy-filter.xml:
* libempathy/Makefile.am: Filter incoming text channels and make
status icon flash when there we receive a new message. Dispatch the
channel only when we get a message and the user click on the icon.
svn path=/trunk/; revision=175
|
|
2007-06-22 Xavier Claessens <xclaesse@gmail.com>
* libempathy/*.[ch]:
* libempathy-gtk/*.[ch]:
* src/*.[ch]: Rename all filenames starting with "gossip" by "empathy",
change namespace of all gossip_*() functions to empathy_*().
Fixes bug #444490 (Mario Danic, Xavier Claessens).
svn path=/trunk/; revision=170
|