1. 08 Sep, 2010 1 commit
  2. 06 Jul, 2010 1 commit
    • Joel Martin's avatar
      Refactor console logging code. · 81e5adaf
      Joel Martin authored
      Util.Debug, Util.Info, Util.Warn, Util.Error routines instead of
      direct calls to console.*. Add "logging=XXX" query variable that sets
      the logging level (default is "warn").
      
      Logging values:
          debug: code debug logging (many calls in performance path are also
                 commented for performance reasons).
          info: informative messages including timing information.
          warn: significant events
          error: something has gone wrong
      81e5adaf
  3. 23 Jun, 2010 1 commit
    • Joel Martin's avatar
      Various cross-browser fixes. · d93d3e09
      Joel Martin authored
      Now working under Arora 0.5.
      
      But not Konqueror 4.2.2 (WebSockets never connects).
      
      IE support with excanvas still pending.
      d93d3e09
  4. 11 May, 2010 1 commit
  5. 02 May, 2010 1 commit
  6. 17 Apr, 2010 1 commit
    • Joel Martin's avatar
      Add web-socket-js support with packet re-ordering. · 5d8e7ec0
      Joel Martin authored
      - web-socket-js is from http://github.com/gimite/web-socket-js. It is
        a flash object that emultates WebSockets.
      
      Unfortunately, events (or packets) from the web-socket-js object can
      get re-ordered so we need to know the packet order.
      
      - So wsproxy.py prepends the sequence number of the packet when
        sending.
      
      - If the client receives packets out of order it queues them up and
        scans the queue for the sequence number it's looking for until
        things are back on track. Gross, but hey: It works!
      
      - Also, add packet sequence checking to wstest.*
      5d8e7ec0
  7. 15 Apr, 2010 1 commit
  8. 06 Apr, 2010 1 commit