Changeset 337

Show
Ignore:
Timestamp:
07/06/08 07:43:49 (3 months ago)
Author:
heyadayo
Message:

Fixed opera bug

Location:
branches/0.5/daemon
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • branches/0.5/daemon/orbited/static/protocols/stomp/stomp.js

    r324 r337  
    66 * Frank Salim (frank.salim@gmail.com) (c) 2008 Orbited (orbited.org) 
    77 */ 
    8 DATA = [] 
    98STOMPClient = function() { 
    109    var self = this 
  • branches/0.5/daemon/orbited/static/transports/SSEAppXDom.js

    r256 r337  
    1919//      TODO: uncomment this line to work in opera 8 - 9.27. 
    2020//            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        } 
    2224        source.addEventListener('orbited', receiveSSE, false); 
    2325    } 
  • branches/0.5/daemon/setup.py

    r320 r337  
    1717_install_requires = [ "demjson" ] 
    1818 
    19 if sys.platform != "win32": 
    20     _install_requires.append("Twisted") 
     19#if sys.platform != "win32": 
     20#    _install_requires.append("Twisted") 
    2121 
    2222setup(