comparison sat/plugins/__init__.py @ 2778:f7deb1c36b47

core, XEP-0315: move XML element handling to sat_tmp: XML Element is now implemented in sat_tmp, so it can be available also for SàT Pubsub. The XEP-0315 is thus not needed anymore and have been removed, XEP-0315 namespace has been added to base disco features. Use the new install() function of sat_tmp to do the patching.
author Goffi <goffi@goffi.org>
date Wed, 16 Jan 2019 09:18:16 +0100
parents 56f94936df1e
children 11003f9f92fb
comparison
equal deleted inserted replaced
2777:ff1b40823b07 2778:f7deb1c36b47
1 # FIXME: remove this when RSM and MAM are in wokkel
2 # XXX: the Monkey Patch is here and not in src/__init__ to avoir issues with pyjamas compilation 1 # XXX: the Monkey Patch is here and not in src/__init__ to avoir issues with pyjamas compilation
3 import wokkel 2 # TODO: remove this when changes are merged in Wokkel
4 from sat_tmp.wokkel import pubsub as tmp_pubsub, rsm as tmp_rsm, mam as tmp_mam 3 from sat_tmp.wokkel import install
5 4 install()
6 wokkel.pubsub = tmp_pubsub
7 wokkel.rsm = tmp_rsm
8 wokkel.mam = tmp_mam