Commit 9dc7fdd1 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gaston

1. Removed #roomRenamed(String, String).

2. Many references to MUCRoom.getName were replaced with MUCRoom.getNaturalLanguageName.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@217 b35dd754-fafc-0310-a699-88a17e54d16e
parent 4dc412de
...@@ -593,15 +593,6 @@ public class MultiUserChatServerImpl extends BasicModule implements MultiUserCha ...@@ -593,15 +593,6 @@ public class MultiUserChatServerImpl extends BasicModule implements MultiUserCha
return totalChatTime; return totalChatTime;
} }
public void roomRenamed(String oldName, String newName) {
MUCRoom room = null;
synchronized (rooms) {
room = rooms.get(oldName);
rooms.put(newName, room);
rooms.remove(oldName);
}
}
public void logConversation(MUCRoom room, Message message, XMPPAddress sender) { public void logConversation(MUCRoom room, Message message, XMPPAddress sender) {
logQueue.add(new ConversationLogEntry(new Date(), room, message, sender)); logQueue.add(new ConversationLogEntry(new Date(), room, message, sender));
} }
...@@ -655,7 +646,7 @@ public class MultiUserChatServerImpl extends BasicModule implements MultiUserCha ...@@ -655,7 +646,7 @@ public class MultiUserChatServerImpl extends BasicModule implements MultiUserCha
if (room != null && room.isPublicRoom()) { if (room != null && room.isPublicRoom()) {
Element identity = DocumentHelper.createElement("identity"); Element identity = DocumentHelper.createElement("identity");
identity.addAttribute("category", "conference"); identity.addAttribute("category", "conference");
identity.addAttribute("name", room.getName()); identity.addAttribute("name", room.getNaturalLanguageName());
identity.addAttribute("type", "text"); identity.addAttribute("type", "text");
identities.add(identity); identities.add(identity);
...@@ -801,7 +792,7 @@ public class MultiUserChatServerImpl extends BasicModule implements MultiUserCha ...@@ -801,7 +792,7 @@ public class MultiUserChatServerImpl extends BasicModule implements MultiUserCha
if (room.isPublicRoom()) { if (room.isPublicRoom()) {
item = DocumentHelper.createElement("item"); item = DocumentHelper.createElement("item");
item.addAttribute("jid", room.getRole().getRoleAddress().toStringPrep()); item.addAttribute("jid", room.getRole().getRoleAddress().toStringPrep());
item.addAttribute("name", room.getName()); item.addAttribute("name", room.getNaturalLanguageName());
answer.add(item); answer.add(item);
} }
...@@ -817,7 +808,7 @@ public class MultiUserChatServerImpl extends BasicModule implements MultiUserCha ...@@ -817,7 +808,7 @@ public class MultiUserChatServerImpl extends BasicModule implements MultiUserCha
room = (MUCRoom)it.next(); room = (MUCRoom)it.next();
item = DocumentHelper.createElement("item"); item = DocumentHelper.createElement("item");
item.addAttribute("jid", room.getRole().getRoleAddress().toStringPrep()); item.addAttribute("jid", room.getRole().getRoleAddress().toStringPrep());
item.addAttribute("name", room.getName()); item.addAttribute("name", room.getNaturalLanguageName());
answer.add(item); answer.add(item);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment