This is an automated email from the ASF dual-hosted git repository.

ralaoui pushed a change to branch xep-0313
in repository https://gitbox.apache.org/repos/asf/mina-vysper.git.


 discard 6b86cb4  XEP-0313 Message Archive Management
     add 149bfa8  StanzaHandler should be able to respond with multiple stanzas
     new 255b339  XEP-0313 Message Archive Management

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (6b86cb4)
            \
             N -- N -- N   refs/heads/xep-0313 (255b339)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../core/base/handler/DefaultIQHandler.java        | 55 +++++++++++++---------
 .../core/base/handler/DefaultMessageHandler.java   | 11 +++--
 .../core/base/handler/DefaultPresenceHandler.java  | 11 +++--
 .../xmpp/modules/core/base/handler/IQHandler.java  | 27 ++++++-----
 .../modules/core/base/handler/MessageHandler.java  |  6 ++-
 .../core/base/handler/RelayingIQHandler.java       | 21 +++++----
 .../core/base/handler/XMPPCoreStanzaHandler.java   | 16 +++----
 .../handler/async/AbstractAsyncIQGetHandler.java   |  7 +--
 .../modules/core/bind/handler/BindIQHandler.java   | 11 +++--
 .../handler/AuthCompatibilityIQHandler.java        | 11 +++--
 .../modules/core/im/handler/PresenceHandler.java   | 15 +++---
 .../core/session/handler/SessionIQHandler.java     |  9 ++--
 .../xep0049_privatedata/PrivateDataIQHandler.java  | 39 ++++++++-------
 .../AdhocCommandIQHandler.java                     | 32 ++++++-------
 .../xep0054_vcardtemp/VcardTempIQHandler.java      | 33 +++++++------
 .../InBandRegistrationHandler.java                 | 42 +++++------------
 .../SoftwareVersionIQHandler.java                  |  7 ++-
 .../xep0199_xmppping/XmppPingIQHandler.java        |  9 ++--
 .../xep0202_entity_time/EntityTimeIQHandler.java   |  6 ++-
 .../EntityTimeXEP0090IQHandler.java                |  6 ++-
 .../modules/roster/handler/RosterIQHandler.java    | 39 +++++++--------
 .../handler/DiscoInfoIQHandler.java                | 19 ++++----
 .../handler/DiscoItemIQHandler.java                | 17 +++----
 .../xmpp/protocol/ResponseStanzaContainer.java     | 12 ++++-
 .../xmpp/protocol/ResponseStanzaContainerImpl.java | 32 +++++++++++--
 .../vysper/xmpp/protocol/ResponseWriter.java       |  4 +-
 .../worker/AbstractStateAwareProtocolWorker.java   | 13 ++---
 .../worker/InboundStanzaProtocolWorker.java        |  8 ++--
 .../components/ComponentStanzaProcessor.java       | 17 ++++---
 .../server/s2s/DefaultXMPPServerConnector.java     |  2 +-
 .../core/base/handler/IQHandlerTestCase.java       |  8 ++--
 .../base/handler/RelayingIQHandlerTestCase.java    |  8 ++--
 .../modules/core/base/handler/TestIQHandler.java   |  9 ++--
 .../core/bind/handler/BindIQHandlerTestCase.java   | 20 +++++---
 .../AuthCompatibilityIQHandlerTestCase.java        |  6 +--
 .../PresenceAvailInitialOutHandlerTestCase.java    | 12 +++--
 .../core/sasl/handler/AbortHandlerTestCase.java    |  2 +-
 .../handler/AuthHandlerPlainMechanismTestCase.java |  8 ++--
 .../session/handler/SessionIQHandlerTestCase.java  |  2 +-
 .../starttls/handler/StartTLSHandlerTestCase.java  |  2 +-
 .../PrivateDataIQHandlerTestCase.java              | 20 ++++----
 .../VcardTempIQHandlerTestCase.java                | 18 +++----
 .../InBandRegistrationHandlerTestCase.java         | 12 ++---
 .../SoftwareVersionIQHandlerTestCase.java          |  6 ++-
 .../XmppPingIQHandlerTestCase.java                 | 24 +++++-----
 .../EntityTimeIQHandlerTestCase.java               |  6 ++-
 .../EntityTimeXEP0090IQHandlerTestCase.java        |  5 +-
 .../DbVerifyHandlerTestCase.java                   |  2 +-
 .../handler/DiscoInfoIQHandlerTestCase.java        | 46 +++++++++++-------
 .../handler/ExtendedDiscoInfoTestCase.java         |  9 ++--
 .../protocol/CallTestStanzaHandlerResponse.java    | 12 ++++-
 .../protocol/ProtocolWorkerProcessTestCase.java    |  2 +-
 .../xmpp/server/s2s/FeaturesHandlerTestCase.java   |  6 +--
 .../xep0045_muc/handler/MUCHandlerHelper.java      |  1 +
 .../xep0045_muc/handler/MUCIqAdminHandler.java     | 35 +++++++-------
 .../xep0045_muc/handler/MUCMessageHandler.java     | 15 +++---
 .../xep0045_muc/handler/MUCPresenceHandler.java    | 13 ++---
 .../xep0045_muc/AbstractDiscoTestCase.java         |  2 +-
 .../AbstractMUCOccupantDiscoTestCase.java          |  2 +-
 .../handler/AbstractMUCHandlerTestCase.java        |  2 +-
 .../handler/AbstractMUCMessageHandlerTestCase.java |  2 +-
 .../xep0045_muc/handler/ChangeNickTestCase.java    |  2 +-
 .../xep0045_muc/handler/ChangeStatusTestCase.java  |  2 +-
 .../xep0045_muc/handler/EnterRoomTestCase.java     |  2 +-
 .../xep0045_muc/handler/ExitRoomTestCase.java      |  2 +-
 .../handler/PubSubCreateNodeHandler.java           |  9 ++--
 .../handler/PubSubPublishHandler.java              | 11 +++--
 .../handler/PubSubRetrieveAffiliationsHandler.java |  5 +-
 .../PubSubRetrieveSubscriptionsHandler.java        |  4 +-
 .../handler/PubSubSubscribeHandler.java            | 13 +++--
 .../handler/PubSubUnsubscribeHandler.java          | 19 ++++----
 .../owner/PubSubOwnerDeleteNodeHandler.java        | 11 +++--
 .../PubSubOwnerManageAffiliationsHandler.java      | 25 +++++-----
 .../disco/PubSubDiscoInfoTestCase.java             |  4 +-
 .../disco/PubSubDiscoItemsTestCase.java            |  8 ++--
 .../handler/PubSubCreateNodeTestCase.java          |  4 +-
 .../handler/PubSubPublishTestCase.java             |  8 ++--
 .../PubSubRetrieveAffiliationsTestCase.java        |  4 +-
 .../PubSubRetrieveSubscriptionsTestCase.java       |  6 +--
 .../handler/PubSubSubscribeTestCase.java           | 10 ++--
 .../handler/PubSubUnsubscribeTestCase.java         | 14 +++---
 .../handler/owner/PubSubDeleteNodeTestCase.java    |  6 +--
 .../PubSubOwnerModifyAffiliationsTestCase.java     | 10 ++--
 .../PubSubOwnerRetrieveAffiliationsTestCase.java   |  6 +--
 .../extension/xep0065_socks/Socks5IqHandler.java   | 12 +++--
 .../xep0065_socks/Socks5IqHandlerTest.java         | 11 +++--
 .../extension/xep0313_mam/query/MAMIQHandler.java  | 16 +++----
 .../xep0313_mam/query/MAMQueryHandler.java         |  8 ++--
 .../query/muc/MUCArchiveQueryHandler.java          | 17 ++++---
 .../pubsub/PubsubNodeArchiveQueryHandler.java      | 17 ++++---
 .../query/user/UserArchiveQueryHandler.java        | 28 ++++++-----
 91 files changed, 650 insertions(+), 498 deletions(-)

Reply via email to