Changeset ee3e75 in indico
- Timestamp:
- 03/14/11 16:43:33 (2 years ago)
- Branches:
- master, burotel, hello-world-walkthrough, ipv6, v0.98-series, v0.98.2, v0.98.3, v0.98b1, v0.98b2, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, 0da0c1403bae8e51d8229f460181c71b9e6dda72
- Children:
- 136ed9a
- Parents:
- d0e066
- git-author:
- Adrian Moennich <jerome.ernst.monnich@…> (03/14/11 16:44:13)
- git-committer:
- Jose Benito <jose.benito.gonzalez@…> (03/14/11 16:43:33)
- Location:
- indico/MaKaC
- Files:
-
- 3 edited
-
plugins/InstantMessaging/XMPP/handlers.py (modified) (8 diffs)
-
plugins/InstantMessaging/handlers.py (modified) (1 diff)
-
services/implementation/base.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
indico/MaKaC/plugins/InstantMessaging/XMPP/handlers.py
r010517 ree3e75 53 53 } 54 54 55 def __init__(self, params, remoteHost, session ):56 ChatroomServiceBase.__init__(self, params, remoteHost, session )55 def __init__(self, params, remoteHost, session, req): 56 ChatroomServiceBase.__init__(self, params, remoteHost, session, req) 57 57 #we want the data from the XMPP plugin in the InstantMessaging Plugin type 58 58 oh = PluginFieldsWrapper('InstantMessaging', 'XMPP') … … 153 153 class CreateChatroom( XMPPChatroomService ): 154 154 155 def __init__(self, params, remoteHost, session):156 XMPPChatroomService.__init__(self, params, remoteHost, session)157 158 155 def _checkParams(self): 159 156 XMPPChatroomService._checkParams(self) … … 211 208 class EditChatroom( XMPPChatroomService ): 212 209 213 def __init__(self, params, remoteHost, session):214 XMPPChatroomService.__init__(self, params, remoteHost, session)215 216 210 def _checkParams(self): 217 211 XMPPChatroomService._checkParams(self) … … 294 288 class DeleteChatroom( XMPPChatroomService ): 295 289 296 def __init__(self, params, remoteHost, session):297 XMPPChatroomService.__init__(self, params, remoteHost, session)298 299 290 def _checkParams(self): 300 291 XMPPChatroomService._checkParams(self) … … 332 323 class GetRoomPreferences( XMPPChatroomService ): 333 324 334 def __init__(self, params, remoteHost, session):335 XMPPChatroomService.__init__(self, params, remoteHost, session)336 337 325 def _checkParams(self): 338 326 XMPPChatroomService._checkParams(self) … … 364 352 class GetRoomsByUser( ServiceBase ): 365 353 366 def __init__(self, params, remoteHost, session):367 ServiceBase.__init__(self, params, remoteHost, session)368 369 354 def _checkParams(self): 370 355 self._user = self._params['usr'] … … 376 361 377 362 class AddConference2Room( ServiceBase, Observable ): 378 379 def __init__(self, params, remoteHost, session):380 ServiceBase.__init__(self, params, remoteHost, session)381 363 382 364 def _checkParams(self): … … 412 394 class AddLogs2Material( ServiceBase ): 413 395 414 def __init__(self, params, remoteHost, session):415 ServiceBase.__init__(self, params, remoteHost, session)416 417 396 def _checkParams(self): 418 397 self._conf = ConferenceHolder().getById(self._params['confId']) -
indico/MaKaC/plugins/InstantMessaging/handlers.py
rf7f228 ree3e75 27 27 class ChatroomServiceBase ( ProtectedModificationService, Observable ): 28 28 29 def __init__(self, params, remoteHost, session ):30 ProtectedModificationService.__init__(self, params, remoteHost, session )29 def __init__(self, params, remoteHost, session, req): 30 ProtectedModificationService.__init__(self, params, remoteHost, session, req) 31 31 32 32 def _checkParams(self): -
indico/MaKaC/services/implementation/base.py
rd0e066 ree3e75 35 35 ResultWithWarning 36 36 37 from MaKaC.webinterface.rh.base import RequestHandlerBase , RH37 from MaKaC.webinterface.rh.base import RequestHandlerBase 38 38 from MaKaC.webinterface.mail import GenericMailer, GenericNotification 39 39
Note: See TracChangeset
for help on using the changeset viewer.
