Jonas Schäfer

Results 221 comments of Jonas Schäfer

@yurimataev Couple notes: - If you need help, don’t hesitate to jump by [email protected] and ping me (jonas’). - If you don’t want to continue work on this, don’t hesitate...

@sheoran27 This is still open and you’re welcome to contribute! Hop in our chat room ([email protected]) or ask here if you have any questions.

There is unfortunately no way (to my knowledge) to express this constraint in XML schema, so at least the schema an RFC 612{0,1} doesn’t have that. However, [RFC 6121 states](https://tools.ietf.org/html/rfc6121#section-5.2.3)...

Currently, we don’t support that. To do this, one would start with: * Implement it in [XMLStreamWriter](https://github.com/horazont/aioxmpp/blob/devel/aioxmpp/xml.py#L649) * Make it possible to pass it to the writer via [XMLStream](https://github.com/horazont/aioxmpp/blob/devel/aioxmpp/protocol.py#L190) *...

Thinking of this again. At the moment, ChildText directly parses the event stream, thus preventing the construction of an XSO instance which will just be thrown away. In addition, we...

At the same time, we should evaluate whether RuntimeError is the correct base class for this, and if in doubt, make a breaking change.

I’d like to get some feedback on the interface before I go about implementing it. Specifically: * does this likely cover the MUC use cases? * does this likely cover...

> We have to think about the outbound presence filters, I think the directed presence should be in filter chain, perhaps we want an extra chain for directed presence to...

A ``"busy"`` presence is type ``AVAILABLE`` with a specific ```` child. The other presence types are subscription related and not handled by PresenceServer.

@sebastianriese Mind to give this a review? Somehow, the tight coupling between the DirectedPresenceHandle and the PresenceServer feels ugly. And also I assume that I’m missing some stuff here because...