README 643 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. The Orbited plugin enables "real time" updates using Orbited + STOMP
  2. See:
  3. * https://pypi.python.org/pypi/orbited
  4. * https://en.wikipedia.org/wiki/Streaming_Text_Oriented_Messaging_Protocol
  5. Installation
  6. ============
  7. add "addPlugin('Orbited');"
  8. to the bottom of your config.php
  9. Settings
  10. ========
  11. webserver:
  12. webport:
  13. channelbase:
  14. stompserver:
  15. stompport:
  16. username:
  17. password:
  18. webuser:
  19. webpass:
  20. Example
  21. =======
  22. addPlugin('Orbited', array(
  23. 'webserver' => '',
  24. 'webport' => '',
  25. 'channelbase' => '',
  26. 'stompserver' => '',
  27. 'stompport' => '',
  28. 'username' => '',
  29. 'password' => '',
  30. 'webuser' => '',
  31. 'webpass' => ''
  32. ));