1. 30 Jan, 2013 2 commits
  2. 24 Dec, 2012 1 commit
  3. 23 Dec, 2012 1 commit
  4. 30 Nov, 2012 2 commits
  5. 14 Nov, 2012 1 commit
    • Joel Martin's avatar
      Sync with websockify. · 705c54ed
      Joel Martin authored
      Pull c33f0b52e7 from websockify.
      
      - Fix for python2.4 with URL parsing.
      - Set binaryType earlier in Opera 12.10 to avoid receiving a blob.
      - Re-order client and target processing so that pending client data
        has an opportunity to be sent when the target closes.
      705c54ed
  6. 08 Nov, 2012 2 commits
  7. 01 Nov, 2012 2 commits
  8. 26 Oct, 2012 2 commits
  9. 23 Oct, 2012 2 commits
  10. 19 Oct, 2012 2 commits
  11. 18 Oct, 2012 2 commits
  12. 17 Oct, 2012 5 commits
  13. 16 Oct, 2012 1 commit
  14. 15 Oct, 2012 2 commits
    • Joel Martin's avatar
      e16ad2fd
    • Joel Martin's avatar
      Change noVNC license to from LGPLv3 to MPL 2.0 · 1d728ace
      Joel Martin authored
      The MPL 2.0 license is a "file-level" copyleft license vs the
      "project-level" nature of the L/GPL. The intention of noVNC has
      always been that it should be easy to incorporate into existing
      projects and sites whether free/open or proprietary/commercial. The MPL
      2.0 is designed for this sort of combination project but still
      requires that any distributed modifications to noVNC source files must
      also be published under the same license.
      
      In addition, the MPL 2.0 allows the code to be used in L/GPL projects
      (the secondary license clause). This means that any projects that are
      already incorporating noVNC should not be impacted by this change and
      in fact it should clarify the licensing situation (the exact
      application of the L/GPL to web applications and interpreted code is
      somewhat ambiguous).
      
      The HTML, CSS, image and font files continue to be under more
      permissive licenses (see LICENSE.txt). The included websockify python
      code remains under a LGPLv3 license although the include/websock.js
      file from the websockify component is now under MPL 2.0 as well.
      
      Permission was received from other noVNC authors to make this change to their
      code license on the following dates:
      
          - Chris Gordon (UI): Jun 24, 2012
          - Antoine Mercadal (DOM,*util.js): Oct 10, 2012
          - William Lightning (UltraVNC repeater): Oct 10, 2012
          - Mike Tinglof (tight encoding): Oct 15, 2012
      1d728ace
  15. 10 Oct, 2012 1 commit
  16. 06 Oct, 2012 1 commit
  17. 25 Sep, 2012 1 commit
  18. 21 Sep, 2012 1 commit
  19. 20 Sep, 2012 1 commit
  20. 17 Sep, 2012 8 commits
    • Joel Martin's avatar
      d5fe1509
    • Joel Martin's avatar
      include/ui.js: call setBarPosition on initial load. · 6f955236
      Joel Martin authored
      Call setBarPosition on initial load and not just when the window size
      changes or scrolling happens.
      6f955236
    • Joel Martin's avatar
      tcp-client.js: after read, try read again. · 5f03c3d0
      Joel Martin authored
      After a read completes it's possible more data is pending so issue an
      immediate read again to pick this up quickly.
      5f03c3d0
    • Joel Martin's avatar
      include/vnc.js: dynamic load without document.write. · 2cde6e43
      Joel Martin authored
      Instead of using document.write to load scripts, use createElement to
      create and append script tags. document.write is problematic in a lot
      of situation and in particular is not allowed in a Chrome
      extension/packaged app.
      
      Also, in webutil.js, instead of calling init_logging during parsing of
      include/webutil.js, rely on the caller to do this. The problem is that
      calling init_logging on parse tries to call Util logging functions and
      the new model of dynamic load may not having Util loaded by the time
      webutil is parsed.
      2cde6e43
    • Joel Martin's avatar
      vnc.html, ui.js: move all Javascript to ui.js. · 26945049
      Joel Martin authored
      Move all the inline Javascript event handlers from vnc.html to
      include/ui.js except the load handler which is moved to
      include/start.js). This is on the path towards a Chrome
      extension/packaged app since inline Javascript is prohibited in that
      situation.
      26945049
    • Joel Martin's avatar
      ui.js: use localStorage/chrome.storage for settings. · ee1af441
      Joel Martin authored
      Switch from using cookies to store setting to using localStorage (or
      chrome.storage.sync if available in extension/app mode) for the
      settings. Also refactor to make the initializing of the setting and
      and loading of the UI to be more asynchronous.
      ee1af441
    • Joel Martin's avatar
      webutil.js: add localStorage/chrome.storage settings. · 3af1c275
      Joel Martin authored
      Add routines to store/read settings in either localStorage or in
      chrome.storage.sync (which is synchronized between browsers for
      extensions/apps).
      
      Before using chrome.storage.sync the initSettings routine must to
      called setup the intermediate cache which speeds up access and allows
      multiple setting changes to be coallesced to avoid hitting storage
      change frequency limits/quotas.
      3af1c275
    • Joel Martin's avatar
      rfb.js: add onFBResize event callback. · 51fc3b5f
      Joel Martin authored
      51fc3b5f