diff options
author | Jonas Bonn <jonas@southpole.se> | 2010-03-05 23:52:08 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-05-27 23:00:15 +0800 |
commit | c886f096cf16280f02e4f5c4b3211f6dc8711f97 (patch) | |
tree | f29f6ea67b2e0ddd5f0dc3505ab3cb7bf50b5cb4 /libempathy/empathy-chatroom-manager.dtd | |
parent | 6da94f6bce71e0d2c1b44260da986eecd089defa (diff) | |
download | gsoc2013-empathy-c886f096cf16280f02e4f5c4b3211f6dc8711f97.tar gsoc2013-empathy-c886f096cf16280f02e4f5c4b3211f6dc8711f97.tar.gz gsoc2013-empathy-c886f096cf16280f02e4f5c4b3211f6dc8711f97.tar.bz2 gsoc2013-empathy-c886f096cf16280f02e4f5c4b3211f6dc8711f97.tar.lz gsoc2013-empathy-c886f096cf16280f02e4f5c4b3211f6dc8711f97.tar.xz gsoc2013-empathy-c886f096cf16280f02e4f5c4b3211f6dc8711f97.tar.zst gsoc2013-empathy-c886f096cf16280f02e4f5c4b3211f6dc8711f97.zip |
Make chatroom manager retain room's "always_urgent" state
This patch adds the always_urgent property to the list of chatroom
properties that are saved by the chatroom manager for the favorite
chatrooms. This allows Empathy to bring favorite chatrooms back
up with the same notification properties they had the last time they
were used.
This seems reasonable as a room marked as "Notify Always" will most likely
be of such a character that this would be a reasonable setting every time
the room is joined.
Diffstat (limited to 'libempathy/empathy-chatroom-manager.dtd')
-rw-r--r-- | libempathy/empathy-chatroom-manager.dtd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libempathy/empathy-chatroom-manager.dtd b/libempathy/empathy-chatroom-manager.dtd index df6b953f6..d40cae23a 100644 --- a/libempathy/empathy-chatroom-manager.dtd +++ b/libempathy/empathy-chatroom-manager.dtd @@ -8,10 +8,11 @@ <!ELEMENT chatrooms (chatroom*)> <!ELEMENT chatroom - (name,room,account,(auto_connect?))> + (name,room,account,(auto_connect?),(always_urgent?))> <!ELEMENT name (#PCDATA)> <!ELEMENT room (#PCDATA)> <!ELEMENT auto_connect (#PCDATA)> +<!ELEMENT always_urgent (#PCDATA)> <!ELEMENT account (#PCDATA)> |