mirror of
https://github.com/jazzband/django-ddp.git
synced 2026-03-16 22:40:24 +00:00
Add explanations to limitations in README.
This commit is contained in:
parent
741111159c
commit
252f9bd9fc
1 changed files with 13 additions and 4 deletions
17
README.rst
17
README.rst
|
|
@ -18,12 +18,21 @@ Peer servers subscribe to aggregate broadcast events which are de-multiplexed an
|
|||
|
||||
Limitations
|
||||
-----------
|
||||
* No support for the SockJS protocol to support browsers that
|
||||
don't have WebSockets_ (see http://caniuse.com/websockets for
|
||||
supported browsers).
|
||||
* No support for the SockJS XHR fallback protocol to support browsers
|
||||
that don't have WebSockets_ (see http://caniuse.com/websockets for
|
||||
supported browsers). It is noteworthy that the only current browser
|
||||
listed that doesn't support WebSockets_ is Opera Mini, which doesn't
|
||||
support pages that use EcmaScript (JavaScript) for interactivity
|
||||
anyway. Offering SockJS XHR fallback wouldn't help to substantially
|
||||
increase browser support: if Opera Mini is excluded then all current
|
||||
browser versions including IE, Edge, Firefox, Chrome, Safari, Opera,
|
||||
iOS Safari, Android Browser Android and Chrome for Android are
|
||||
supported. Having said all that, pull requests are welcome.
|
||||
|
||||
* Changes must be made via the Django ORM as django-ddp uses `Django
|
||||
signals`_ to receive model save/update signals.
|
||||
signals`_ to receive model save/update signals. There are no
|
||||
technical reasons why database triggers couldn't be used - pull
|
||||
requests are welcome.
|
||||
|
||||
|
||||
Installation
|
||||
|
|
|
|||
Loading…
Reference in a new issue