- 22 Apr, 2013 1 commit
-
-
Will Rouesnel authored
Correctly identifies the use of http/https and forces the value of port to 80 and 443 respectively, as in this situation window.location.port is blank. This is patch includes the same changes as made in vnc_auto.html
-
- 13 Apr, 2013 1 commit
-
-
Will Rouesnel authored
Browsers (such as Chrome) don't report port numbers in window.location.port when used on standard ports such as 80 and 443. This causes vnc_auto.html to not automatically find the port as it should. This simple change checks if window.location.port is blank, and sets port as appropriate from the name of the protocol in use.
-
- 12 Apr, 2013 1 commit
-
-
Joel Martin authored
-
- 08 Apr, 2013 2 commits
-
-
Joel Martin authored
Import cfg from oslo in nova-novncproxy
-
Nikola Dipanov authored
Upstram OpenStack Nova package has moved the config engine into a separate package. Mirror that change in the novnc script.
-
- 05 Apr, 2013 4 commits
-
-
Joel Martin authored
Minimize differences between vnc.html and vnc_auto.html
-
Peter Åstrand (astrand) authored
* UTF-8 charset defintition. * Define IE=edge for X-UA-Compatible. * Add Apple iOS Safari settings.
-
Peter Åstrand (astrand) authored
-
Peter Åstrand (astrand) authored
names="apple-mobile-web-app-status-bar-style" should be: name="apple-mobile-web-app-status-bar-style"
-
- 04 Apr, 2013 1 commit
-
-
Joel Martin authored
Tweak order/whitespace/style to match vnc.html more closely.
-
- 03 Apr, 2013 1 commit
-
-
Peter Åstrand (astrand) authored
functional changes.
-
- 31 Jan, 2013 2 commits
-
-
Joel Martin authored
Consistent Unix line endings
-
jalf authored
-
- 30 Jan, 2013 3 commits
- 24 Dec, 2012 1 commit
-
-
Joel Martin authored
Ctrl+'-' won't work on a US keyboad with the latest Firefox.
-
- 23 Dec, 2012 1 commit
-
-
Hirokazu Takahashi authored
Firefox 17 generates 173 as the keycode for the minus key.
-
- 30 Nov, 2012 2 commits
-
-
Joel Martin authored
Changed the config module which includes CONF
-
Nikhil Komawar authored
currently CONF was attempted of being imported from nova config.py rather than openstack/common/cfg.py. this commit fixes that.
-
- 14 Nov, 2012 1 commit
-
-
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.
-
- 08 Nov, 2012 2 commits
-
-
Joel Martin authored
Update utils/nova-novncproxy to work with nova master branch
-
Terry Wilson authored
Nova recently removed parse_args from flags.py. This updates the nova proxy to properly use CONF instead of FLAGS.
-
- 01 Nov, 2012 2 commits
-
-
Joel Martin authored
-
Joel Martin authored
Related to issue: https://github.com/kanaka/noVNC/issues/205 Split out the function to load a single script to Util.load_script. In order to get sequential load, when on IE set the script defer flag. It is currently working on webkit and firefox but just in case also set the script.async flag to make sure that scripts execute in the order they are added. Scripts should still load in parallel.
-
- 26 Oct, 2012 2 commits
-
-
Joel Martin authored
Data files should now set the variable VNC_frame_encoding to either "binary" or "base64". The python websockify recording mode adds this automatically based on what is negotiated with the client being recorded.
-
Joel Martin authored
Pull in websockify 1669139
-
- 23 Oct, 2012 2 commits
-
-
Joel Martin authored
Generally this means falling back to 8-bit colour mapped hextile which is uses more bandwidth and is likely slower that tight with 24-bit true color. This is related to this query: http://superuser.com/questions/484790/how-to-use-8-bit-mode-with-novnc
-
Joel Martin authored
Use a mechanism described here to serialize the execution of scripts under IE: http://wiki.whatwg.org/wiki/Dynamic_Script_Execution_Order Basically, we set the src attribute but do not append the script to the body/head until after readyState is "loaded". Unfortunately, Opera uses readyState but in a different way (always "loaded" for both load and execution). This is related to (and hopefully fixes) these issues: https://github.com/kanaka/noVNC/issues/194, https://github.com/kanaka/noVNC/issues/205, https://github.com/kanaka/noVNC/issues/208.
-
- 19 Oct, 2012 2 commits
-
-
Joel Martin authored
The mobile doctype doesn't not seem to make any difference on iOS so I'm dropping it and just going with the standard HTML5 version since the wapforum mobile version may cause issues with IE 10.
-
Joel Martin authored
-
- 18 Oct, 2012 2 commits
-
-
Joel Martin authored
-
Joel Martin authored
Related to issue: https://github.com/kanaka/noVNC/issues/205 Split out the function to load a single script to Util.load_script. In order to get sequential load, when on IE set the script defer flag. It is currently working on webkit and firefox but just in case also set the script.async flag to make sure that scripts execute in the order they are added. Scripts should still load in parallel.
-
- 17 Oct, 2012 5 commits
-
-
Joel Martin authored
This reverts commit 079504a6.
-
Joel Martin authored
Keyboard altgr
-
Joel Martin authored
-
Joel Martin authored
Related to issue/pulls: https://github.com/kanaka/noVNC/issues/194 https://github.com/kanaka/noVNC/pull/201 https://github.com/kanaka/noVNC/pull/202 In IE9, the window.onload event can fire before dynamically loaded scripts have finished loading. This can result in either WebSocket (in the case of vnc_auto.html) or RFB (in the case of vnc.html) not being defined at the point when window.onload is called. - Move the load_scripts routine from vnc.js to util.js (so that websockify can use it too). Also, refactor to work when load_scripts is called by a script that itself uses load_scripts. When the whole chain of dynamically loaded scripts is finished then call window.onscriptsload. Use this mechanism in all the places that depend on dynamic loading of scripts: vnc.html, vnc_auto.html, websock.js, tests/vnc_playback.html, and tests/vnc_perf.html. - Use the new window.onscriptsload handler instead of window.onload. - Remove include/start.js and do the script loading and startup event handling in include/ui.js instead.
-
vj authored
This is a workaround for corrupted non-square cursors seen on some Windows 7 machines with NVIDIA cards. The corruption only happens when the screen is in portrait mode.
-
- 16 Oct, 2012 1 commit
-
-
Joel Martin authored
support ALTGR key event
-
- 15 Oct, 2012 1 commit
-
-
Joel Martin authored
-