- 20 Sep, 2007 3 commits
-
-
guus authored
First stab at replacing Stream Compression with a pluggable system. Note that this commit undoes JM-1059. I'll re-add the fix for that later. git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/rsm@9179 b35dd754-fafc-0310-a699-88a17e54d16e
-
guus authored
Bugfix: If a client sends </stream:stream>, the server has to reply with </stream:stream> before it closes the connection. Problem described in http://www.igniterealtime.org/community/thread/27013 git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/rsm@9178 b35dd754-fafc-0310-a699-88a17e54d16e
-
guus authored
Added a directory listing service for MUC rooms (jabber:iq:search). Applied the new search to the default MultiUserChatServer implementation, which can act as an example to any other implementation. Added service discovery identity and features to the service that reflect these changes. git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/rsm@9177 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 19 Sep, 2007 7 commits
-
-
guus authored
Ignore my last commit. It appears that multiple inheritance is possible, if it concerns interfaces only. That's by far a better solution. git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/rsm@9171 b35dd754-fafc-0310-a699-88a17e54d16e
-
guus authored
I'd like MUCRoom to extend another interface (Result). The MUCRoom interface was recently changed to extend the Externalizable interface. As duplicate inheritance in Java isn't an option, I refactored MUCRoom to be an abstract class instead. The classes that implemented MUCRoom didn't seem to extend any other class, that's why I hope I can get away with this. :) Gato, do you agree? I'd like your feedback before I proceed. git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/rsm@9170 b35dd754-fafc-0310-a699-88a17e54d16e
-
guus authored
Result Set Management applied to the user search plugin. This effectively enables users to page through a potentially large number of results. User search wasn't compliant with XEP-0055 in the basic search (invalid search fields were used). I replaced them. git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/rsm@9169 b35dd754-fafc-0310-a699-88a17e54d16e
-
guus authored
handleIQ() now validates the features that it adds to responses. It includes the disco#info feature in all responses, and includes the resultsetmanagement feature in all responses that include the disco#items feature. git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/rsm@9168 b35dd754-fafc-0310-a699-88a17e54d16e
-
guus authored
User now implements the Result interface, to make User objects suited for Result Set Management. Any user listing (the search plugin, for example) will benefit from this. git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/rsm@9167 b35dd754-fafc-0310-a699-88a17e54d16e
-
guus authored
Currently, there's an interface defining a DiscoItem object. There's no implementation of it, other than in-line implementations in methods (the same goes for the sub-interface, DiscoServerItem). Where manipulations of DiscoItem objects are done, Dom4J Element instances are used instead. The DiscoItem interface has been replaced by an implementation of that interface (again, same goes for the sub-interface, which is now a subclass). As I assumed there would not be other implementations of the same interface (which would give you 'another kind' of DiscoItem objects, but what's the point?), I removed the interface completely. As a result of the changed representation, the DiscoItemsProvider interface now declares a method that returns an Iterator of DiscoItem objects, instead of Elements. This caused changes in a number of classes. Result Set Management functionality has been added, which causes all disco#items request to be result set managable (this is, for instance, useful for large listings or MUC rooms). git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/rsm@9166 b35dd754-fafc-0310-a699-88a17e54d16e
-
guus authored
A new package that defines an interface definition for a 'manageable result' and an interface + default implementation for managing results. The set-up is as such, that it would be easy to implement another manager that does not need the entire resultset to base its calculations on. That can cause significant performance gains for result sets that are resource expensive to acquire or maintain in memory. git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/rsm@9165 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 18 Sep, 2007 2 commits
-
-
guus authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/rsm@9154 b35dd754-fafc-0310-a699-88a17e54d16e
-
guus authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/rsm@9153 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 07 Sep, 2007 1 commit
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/rsm@9083 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 15 Aug, 2007 1 commit
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/rsm@8946 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 07 Aug, 2007 3 commits
-
-
Derek DeMoro authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8895 b35dd754-fafc-0310-a699-88a17e54d16e
-
Daniel Henninger authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8892 b35dd754-fafc-0310-a699-88a17e54d16e
-
Daniel Henninger authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8891 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 02 Aug, 2007 1 commit
-
-
Derek DeMoro authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8847 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 26 Jul, 2007 1 commit
-
-
Jay Kline authored
Also fixed a logic flaw that allowed an unauthorized, but authenticated, PLAIN login. git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8806 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 25 Jul, 2007 1 commit
-
-
Derek DeMoro authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8804 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 22 Jul, 2007 5 commits
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8789 b35dd754-fafc-0310-a699-88a17e54d16e
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8788 b35dd754-fafc-0310-a699-88a17e54d16e
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8787 b35dd754-fafc-0310-a699-88a17e54d16e
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8786 b35dd754-fafc-0310-a699-88a17e54d16e
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8785 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 20 Jul, 2007 2 commits
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8772 b35dd754-fafc-0310-a699-88a17e54d16e
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8771 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 19 Jul, 2007 1 commit
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8768 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 17 Jul, 2007 2 commits
-
-
Daniel Henninger authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8752 b35dd754-fafc-0310-a699-88a17e54d16e
-
Daniel Henninger authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8749 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 16 Jul, 2007 1 commit
-
-
Daniel Henninger authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8747 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 14 Jul, 2007 3 commits
-
-
Daniel Henninger authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8745 b35dd754-fafc-0310-a699-88a17e54d16e
-
Daniel Henninger authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8744 b35dd754-fafc-0310-a699-88a17e54d16e
-
Daniel Henninger authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8743 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 11 Jul, 2007 1 commit
-
-
Daniel Henninger authored
[JM-65] Created roster viewer with delete support. (no add or edit yet) (click on user in user summary, look at submenu to left for Roster choice) git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8736 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 08 Jul, 2007 3 commits
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8730 b35dd754-fafc-0310-a699-88a17e54d16e
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8729 b35dd754-fafc-0310-a699-88a17e54d16e
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8728 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 07 Jul, 2007 1 commit
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8720 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 06 Jul, 2007 1 commit
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8715 b35dd754-fafc-0310-a699-88a17e54d16e
-