Changeset 337
- Timestamp:
- 07/06/08 07:43:49 (3 months ago)
- Location:
- branches/0.5/daemon
- Files:
-
- 3 modified
-
orbited/static/protocols/stomp/stomp.js (modified) (1 diff)
-
orbited/static/transports/SSEAppXDom.js (modified) (1 diff)
-
setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.5/daemon/orbited/static/protocols/stomp/stomp.js
r324 r337 6 6 * Frank Salim (frank.salim@gmail.com) (c) 2008 Orbited (orbited.org) 7 7 */ 8 DATA = []9 8 STOMPClient = function() { 10 9 var self = this -
branches/0.5/daemon/orbited/static/transports/SSEAppXDom.js
r256 r337 19 19 // TODO: uncomment this line to work in opera 8 - 9.27. 20 20 // there should be some way to make this work in both. 21 // document.body.appendChild(source); 21 if (opera.version() < 9.5) { 22 document.body.appendChild(source); 23 } 22 24 source.addEventListener('orbited', receiveSSE, false); 23 25 } -
branches/0.5/daemon/setup.py
r320 r337 17 17 _install_requires = [ "demjson" ] 18 18 19 if sys.platform != "win32":20 _install_requires.append("Twisted")19 #if sys.platform != "win32": 20 # _install_requires.append("Twisted") 21 21 22 22 setup(