]> git.proxmox.com Git - mirror_novnc.git/log
mirror_novnc.git
14 years agoNew API. Refactor Canvas and RFB objects.
Joel Martin [Mon, 2 Aug 2010 22:07:27 +0000 (17:07 -0500)]
New API. Refactor Canvas and RFB objects.

New API:

To use the RFB object, you now must instantiate it (this allows more
than one instance of it on the same page).

    rfb = new RFB(settings);

The 'settings' variable is a namespace that contains initial default
settings. These can also be set and read using 'rfb.set_FOO()' and
'rfb.get_FOO()' where FOO is the setting name. The current settings
are (and defaults) are:
    - target: the DOM Canvas element to use ('VNC_canvas').
    - encrypt: whether to encrypt the connection (false)
    - true_color: true_color or palette (true)
    - b64encode: base64 encode the WebSockets data (true)
    - local_cursor: use local cursor rendering (true if supported)
    - connectTimeout: milliseconds to wait for connect (2000)
    - updateState: callback when RFB state changes (none)
    - clipboardReceive: callback when clipboard data received (none)

The parameters to the updateState callback have also changed. The
function spec is now updateState(rfb, state, oldstate, msg):
    - rfb: the RFB object that this state change is for.
    - state: the new state
    - oldstate: the previous state
    - msg: a message associate with the state (not always set).

The clipboardReceive spec is clipboardReceive(rfb, text):
    - rfb: the RFB object that this text is from.
    - text: the clipboard text received.

Changes:

- The RFB and Canvas namespaces are now more proper objects. Private
  implementation is no longer exposed and the public API has been made
  explicit. Also, instantiation allows more than one VNC connection
  on the same page (to complete this, DefaultControls will also need
  this same refactoring).

- Added 'none' logging level.

- Removed automatic stylesheet selection workaround in util.js and
  move it to defaultcontrols so that it doesn't interfere with
  intergration.

- Also, some major JSLinting.

- Fix input, canvas, and cursor tests to work with new model.

14 years agoCatch exceptions in cursor detection.
Joel Martin [Mon, 2 Aug 2010 15:11:47 +0000 (10:11 -0500)]
Catch exceptions in cursor detection.

If cursor Data URI scheme detection threw an exception, it would cause
canvas initialization to fail. cursor detection exceptions should just
disable local cursor change support, not cause canvas init to fail.

14 years agoPreliminary scaling code (deactivated).
Joel Martin [Fri, 30 Jul 2010 14:53:33 +0000 (09:53 -0500)]
Preliminary scaling code (deactivated).

Uses the CSS "scale()" operation. The main problem is that the DOM
container is not rescaled, only the size of the displayed content
within it so there will need to be some sort of mechanism to handle
this better so other elements reflow to the new size. Or it might just
not work and be removed later. The zoom property seems to do the right
behavior, but it's not widely supported. Worth exploring though.

14 years agoGive other events chance to fire.
Joel Martin [Thu, 29 Jul 2010 15:47:32 +0000 (10:47 -0500)]
Give other events chance to fire.

After each complete framebufferUpdate, set a short timer to continue
processing the receive queue. This gives other events a chance to
fire. Especially important when noVNC is integrated into another
website.

14 years agoUpdate TODO.
Joel Martin [Thu, 29 Jul 2010 15:46:58 +0000 (10:46 -0500)]
Update TODO.

14 years agoREADME.md: fix command formatting.
Joel Martin [Mon, 26 Jul 2010 22:41:19 +0000 (17:41 -0500)]
README.md: fix command formatting.

14 years agoREADME.md: correction about VNC_uri_prefix.
Joel Martin [Fri, 23 Jul 2010 17:32:15 +0000 (12:32 -0500)]
README.md: correction about VNC_uri_prefix.

It points to the include sub-directory, not to the directory above.

14 years agoAdd twitter link to follow @noVNC for commits/news.
Joel Martin [Fri, 23 Jul 2010 17:30:31 +0000 (12:30 -0500)]
Add twitter link to follow @noVNC for commits/news.

14 years agoIssue #15: noVNC falls behind.
Joel Martin [Fri, 23 Jul 2010 16:46:41 +0000 (11:46 -0500)]
Issue #15: noVNC falls behind.

noVNC was never processing more than one framebufferUpdate message per
onmessage event. If noVNC receives an incomplete framebufferUpdate and
then receives the rest of the framebufferUpdate plus another complete
framebufferUpdate, then it will fall permanently behind.

If there is more to process after a completed framebufferUpdate, then
execute normal_msg again.

All the render routines must return false if there is not enough data
in the receive queue to process their current update, and true
otherwise.

14 years agoREADME.md: Add more bug/issue suggested info.
Joel Martin [Fri, 23 Jul 2010 14:25:16 +0000 (09:25 -0500)]
README.md: Add more bug/issue suggested info.

14 years agoTurn off firebug-lite in canvas test page.
Joel Martin [Thu, 22 Jul 2010 16:35:26 +0000 (11:35 -0500)]
Turn off firebug-lite in canvas test page.

14 years agoQuery string cleanup and move it to util.js
Joel Martin [Thu, 22 Jul 2010 16:33:21 +0000 (11:33 -0500)]
Query string cleanup and move it to util.js

14 years agoJSLint. RFB obj to rfb.js; vnc.js the 'loader'.
Joel Martin [Thu, 22 Jul 2010 15:54:47 +0000 (10:54 -0500)]
JSLint. RFB obj to rfb.js; vnc.js the 'loader'.

Move the whole RFB object to rfb.js. vnc.js is now just the loader
file. This allows an integrating project to easily replace vnc.js with
an alternate loader mechanism (or just do it directly in the html
file). Thanks for the idea primalmotion (http://github.com/primalmotion).

Also, JSLint the various files.

14 years agoFix logging init on first page load (not in cookie).
Joel Martin [Thu, 22 Jul 2010 15:46:50 +0000 (10:46 -0500)]
Fix logging init on first page load (not in cookie).

14 years agoFix error when cursor Data URI scheme not supported.
Joel Martin [Thu, 22 Jul 2010 15:26:50 +0000 (10:26 -0500)]
Fix error when cursor Data URI scheme not supported.

14 years agoAPI changes. Client cursor and settings menu.
Joel Martin [Thu, 22 Jul 2010 01:34:23 +0000 (20:34 -0500)]
API changes. Client cursor and settings menu.

The following API changes may affect integrators:

    - Settings have been moved out of the RFB.connect() call. Each
      setting now has it's own setter function: setEncrypt, setBase64,
      setTrueColor, setCursor.

    - Encrypt and cursor settings now default to on.

    - CSS changes:
        - VNC_status_bar for input buttons switched to a element class.

        - VNC_buttons split into VNC_buttons_right and
          VNC_buttons_left

        - New id styles for VNC_settings_menu and VNC_setting

Note: the encrypt, true_color and cursor, logging setting can all be
  set on load using query string variables (in addition to host, port
  and password).

Client cursor (cursor pseudo-encoding) support has been polished and
activated.

The RFB settings are now presented as radio button list items in
a drop-down "Settings" menu when using the default controls.

Also, in the settings menu is the ability to select between alternate
style-sheets.

Cookie and stylesheet selection support added to util.js.

14 years agoFail if initial server connection fails.
Joel Martin [Tue, 20 Jul 2010 19:54:49 +0000 (14:54 -0500)]
Fail if initial server connection fails.

14 years agoAdd Cursor pseudo-encoding support (disabled for now).
Joel Martin [Tue, 20 Jul 2010 19:34:44 +0000 (14:34 -0500)]
Add Cursor pseudo-encoding support (disabled for now).

To change the appearance of the cursor, we use the CSS cursor style
and set the url to a data URI scheme. The image data sent via the
cursor pseudo-encoding has to be encoded to a CUR format file before
being used in the data URI.

During Canvas initialization we try and set a simple cursor to see if
the browser has support. Opera is missing support for data URI scheme
in cursor URLs.

Disabled for now until we have a better way of specifying settings
overall (too many settings for control bar now).

14 years agoFix listen_port check.
Joel Martin [Sat, 17 Jul 2010 17:13:54 +0000 (12:13 -0500)]
Fix listen_port check.

Interestingly, the bug depends on compiler behavior. If local
variables are automatically initialized to 0, then this always caused
the program to error out indicating a failure to parse the listen
port. Otherwise, the test was a no-op (except the rare case where the
memory happened to be zero anyways).

Thanks to Eugen Melnikoff for finding this.

14 years agoIssue #11: daemonize after opening listen port.
Joel Martin [Sat, 17 Jul 2010 17:05:58 +0000 (12:05 -0500)]
Issue #11: daemonize after opening listen port.

The listen port should be opened before daemonizing otherwise if
opening the port fails, the user will get no feedback. The only
complication was that the listen socket needs to not be closed as part
of daemonizing.

Thanks to http://github.com/rickr for finding it.

14 years agoTypos and formatting.
Joel Martin [Fri, 16 Jul 2010 01:22:55 +0000 (20:22 -0500)]
Typos and formatting.

14 years agoLaunch script and reworked usage in README.md.
Joel Martin [Fri, 16 Jul 2010 01:18:39 +0000 (20:18 -0500)]
Launch script and reworked usage in README.md.

14 years agoMake black.css an alternate stylesheet.
Joel Martin [Fri, 16 Jul 2010 00:58:33 +0000 (19:58 -0500)]
Make black.css an alternate stylesheet.

14 years agoState machine refactoring.
Joel Martin [Fri, 16 Jul 2010 00:38:25 +0000 (19:38 -0500)]
State machine refactoring.

Add new states 'loaded', 'connect' and 'fatal':
- Loaded state is first page state. Pass WebSockets mode message using
  this state.
- Connect indicates that the user has issued a "connect" but we
  haven't gotten an WebSockets onopen yet.
- Fatal is a condition that indicates inability to continue on: right
  now, lack of WebSockets/Flash or non-working canvas.

Move much of the actual state transition code into updateState.

Handle 'password' state better in default_controls.js; instead of
disconnecting, prompt for password to send.

Add comments to updateState indicating possible states.

14 years agoAdd info on firefox 3.0.17.
Joel Martin [Fri, 16 Jul 2010 00:22:07 +0000 (19:22 -0500)]
Add info on firefox 3.0.17.

14 years agoClean up top level: move license files to docs/
Joel Martin [Thu, 15 Jul 2010 23:45:32 +0000 (18:45 -0500)]
Clean up top level: move license files to docs/

14 years agoUTF-8: send 0 as 256 during encoding too.
Joel Martin [Wed, 14 Jul 2010 21:57:02 +0000 (16:57 -0500)]
UTF-8: send 0 as 256 during encoding too.

0 is valid UTF-8, but in order to avoid WebSockets framing, we
encode/decode it as 256.

Also, be tolerant of 0 length messages.

14 years agoAdd native base64 test (atob and btoa).
Joel Martin [Tue, 13 Jul 2010 22:53:01 +0000 (17:53 -0500)]
Add native base64 test (atob and btoa).

Interestingly it turns out that using the native base64 routines does
not improve performance. Likely because the actual time is in
marshalling/unmarshalling between strings and arrays (and associated
garbage collection overhead) which has to be done either way.

14 years agoTightPng fixups and thanks to Sentry Data Systems.
Joel Martin [Tue, 13 Jul 2010 22:51:26 +0000 (17:51 -0500)]
TightPng fixups and thanks to Sentry Data Systems.

- Change tightpng encoding number to -260 (aliguori provided it until
  an official number can be allocated).

14 years agoScreenshots section, link to more.
Joel Martin [Fri, 9 Jul 2010 16:41:36 +0000 (11:41 -0500)]
Screenshots section, link to more.

14 years agoREADME.md: caption formatting.
Joel Martin [Fri, 9 Jul 2010 15:52:42 +0000 (10:52 -0500)]
README.md: caption formatting.

14 years agoREADME.md: image caption and bigger dimensions.
Joel Martin [Fri, 9 Jul 2010 15:51:51 +0000 (10:51 -0500)]
README.md: image caption and bigger dimensions.

14 years agoAdd screenshots to README.md.
Joel Martin [Fri, 9 Jul 2010 15:50:33 +0000 (10:50 -0500)]
Add screenshots to README.md.

14 years agoMarkdown links in README.md.
Joel Martin [Wed, 7 Jul 2010 21:06:44 +0000 (16:06 -0500)]
Markdown links in README.md.

14 years agoLinks related to Tight PNG encoding work.
Joel Martin [Wed, 7 Jul 2010 17:41:19 +0000 (12:41 -0500)]
Links related to Tight PNG encoding work.

14 years agoRemoved missed mootools include in ws.html test.
Joel Martin [Wed, 7 Jul 2010 17:40:56 +0000 (12:40 -0500)]
Removed missed mootools include in ws.html test.

14 years agoAdd troubleshooting section.
Joel Martin [Tue, 6 Jul 2010 17:29:37 +0000 (12:29 -0500)]
Add troubleshooting section.

14 years agoRemove unneeded mootools and FABridge test.
Joel Martin [Tue, 6 Jul 2010 17:14:38 +0000 (12:14 -0500)]
Remove unneeded mootools and FABridge test.

mootools is no longer needed. The bug that the FABridge test was
testing has been resolved in web-socket-js so it's no longer needed.

14 years agoRefactor console logging code.
Joel Martin [Tue, 6 Jul 2010 16:56:13 +0000 (11:56 -0500)]
Refactor console logging code.

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

14 years agoInit updated web-socket-js correctly. TODO updates.
Joel Martin [Mon, 5 Jul 2010 20:54:15 +0000 (15:54 -0500)]
Init updated web-socket-js correctly. TODO updates.

14 years agoDisable excanvas experiment.
Joel Martin [Fri, 2 Jul 2010 19:25:12 +0000 (14:25 -0500)]
Disable excanvas experiment.

Also, move bugs from TODO to github issues.

14 years agoA little more cleanup of browser table.
Joel Martin [Fri, 2 Jul 2010 17:50:34 +0000 (12:50 -0500)]
A little more cleanup of browser table.

14 years agoMore browser table cleanup.
Joel Martin [Fri, 2 Jul 2010 17:40:29 +0000 (12:40 -0500)]
More browser table cleanup.

14 years agoRemove unsupported table colors. Cleanup table.
Joel Martin [Fri, 2 Jul 2010 17:34:37 +0000 (12:34 -0500)]
Remove unsupported table colors. Cleanup table.

14 years agoREADME.md: try browser tests in table.
Joel Martin [Fri, 2 Jul 2010 17:25:13 +0000 (12:25 -0500)]
README.md: try browser tests in table.

14 years agoTest table in markdown.
Joel Martin [Fri, 2 Jul 2010 17:12:30 +0000 (12:12 -0500)]
Test table in markdown.

14 years agoREADME/TODO: Windows browser testing results.
Joel Martin [Fri, 2 Jul 2010 17:02:57 +0000 (12:02 -0500)]
README/TODO: Windows browser testing results.

14 years agoRebuild web-socket-js swf with gimite updates.
Joel Martin [Fri, 2 Jul 2010 15:50:52 +0000 (10:50 -0500)]
Rebuild web-socket-js swf with gimite updates.

Bug fixes, restore RFC2817 proxy for non wss://, and handle new closing
handshake from WebSockets 76.

14 years agoAdd global variable option for swf location.
Joel Martin [Fri, 2 Jul 2010 14:54:55 +0000 (09:54 -0500)]
Add global variable option for swf location.

The problem is, you can't set WebSocket.__swfLocation before you load
web_socket.js (because it creates the WebSocket global), but you also
can't reliably set WebSocket.__swfLocation after because if you are
doing dynamic script file includes then the onload (i.e.
WebSocket.__initialize) may fire before you have a chance to set
Websocket.__swfLocation.

14 years agoImport/merge gimite/web-socket-js up to da7caff96496c7d7bfb3.
Joel Martin [Fri, 2 Jul 2010 14:52:59 +0000 (09:52 -0500)]
Import/merge gimite/web-socket-js up to da7caff96496c7d7bfb3.

Bug fixes, restore RFC2817 proxy for non wss://, and handle new
closing handshake from WebSockets 76.

14 years agoClarify browser results in README.md
Joel Martin [Thu, 1 Jul 2010 17:18:18 +0000 (12:18 -0500)]
Clarify browser results in README.md

14 years agoRemove sequence code in client and proxies.
Joel Martin [Thu, 1 Jul 2010 17:13:17 +0000 (12:13 -0500)]
Remove sequence code in client and proxies.

14 years agoUpdate web-socket-js binary build and README.md
Joel Martin [Thu, 1 Jul 2010 17:04:26 +0000 (12:04 -0500)]
Update web-socket-js binary build and README.md

Brings it up to date with the most recent web-socket-js event handling
fixes.

14 years agoOpera fixes and big Opera performance boost.
Joel Martin [Thu, 1 Jul 2010 16:54:44 +0000 (11:54 -0500)]
Opera fixes and big Opera performance boost.

Add message/state pollling in web-socket-js. Since Opera tends to drop
message events, we can dramatically increase performance by polling
every now for message event data.

Also, add more direct calls to update readyState so that it's not
missed when Opera drops events.

14 years agoBetter web-socket-js dataQueue reset.
Joel Martin [Thu, 1 Jul 2010 15:35:03 +0000 (10:35 -0500)]
Better web-socket-js dataQueue reset.

At connect and close time instead of initialization time.

14 years agoweb-socket-js event fixes.
Joel Martin [Thu, 1 Jul 2010 15:32:14 +0000 (10:32 -0500)]
web-socket-js event fixes.

When using web-socket-js, the onopen event may happen inline so the
caller may not have time to set onopen before the event fires. In this
case set a short timeout and try again. In particular this affects
Opera most of the time.

Also, to get around Opera event droppings, always read the readyState
directly instead of relying on the local readyState variable to be
correct (which it isn't if stateChange event were dropped).

14 years agoAlways prefer JS ops if we have imageData.
Joel Martin [Thu, 1 Jul 2010 15:30:07 +0000 (10:30 -0500)]
Always prefer JS ops if we have imageData.

All browsers with Canvas imageData are faster with JS ops instead of
canvas ops. This gives significant performance improvement in Opera.
Except for missing web-socet-js message notifications, Opera 10.60 is
now faster than firefox 3.5.

14 years agoOpera works! Fix message event drops/reorders.
Joel Martin [Thu, 1 Jul 2010 14:53:38 +0000 (09:53 -0500)]
Opera works! Fix message event drops/reorders.

Instead of relying on FABridge AS -> JS event delivery, we just use
the events to notify JS of pending data. The message handler then
calls the AS readSocketData routine which sends back an array of
the pending WebSocket frames.

There is still a minor bug somewhere that happens after the first
connect where the web-socket-js throws an "INVALID_STATE_ERR: Web
Socket connection has not been established". But, Opera is now usable
and we should be able to drop the packet sequence numbering and
re-ordering code.

Another minor issue to better support Opera is to move JS script
includes to the <head> of the page instead of after the body.

14 years agoUpdate C proxy to WS protocol version 76.
Joel Martin [Thu, 1 Jul 2010 01:39:41 +0000 (20:39 -0500)]
Update C proxy to WS protocol version 76.

Pull in LGPL md5.c and md5.h files (written by Ulrich Drepper).

Now both python and C version of the proxy support both protocol 75
and protocol 76 (hybi 00).

Reorganize websocket.py slightly to match websocket.c.

14 years agoSignificant firefox perf improvement. Update TODOs.
Joel Martin [Tue, 29 Jun 2010 19:36:18 +0000 (14:36 -0500)]
Significant firefox perf improvement. Update TODOs.

Interesting. Enough has changed in the Canvas tile operations, that
Canvas.prefer_js=true is better for firefox/gecko too. Approximately
2X improvement in firefox for large hextile renders.

14 years agoFix issue #7: security scheme list parsing.
Joel Martin [Sat, 26 Jun 2010 22:41:39 +0000 (17:41 -0500)]
Fix issue #7: security scheme list parsing.

Also, lower connect timeout to 2 seconds.

14 years agoRemove proxy handshake debug.
Joel Martin [Thu, 24 Jun 2010 23:45:30 +0000 (18:45 -0500)]
Remove proxy handshake debug.

14 years agoAdd WebSockets spec links.
Joel Martin [Thu, 24 Jun 2010 23:42:45 +0000 (18:42 -0500)]
Add WebSockets spec links.

14 years agoAdd missing full GPL-3 text.
Joel Martin [Thu, 24 Jun 2010 23:04:40 +0000 (18:04 -0500)]
Add missing full GPL-3 text.

14 years agoRefactor canvas imageData test slightly.
Joel Martin [Thu, 24 Jun 2010 22:09:54 +0000 (17:09 -0500)]
Refactor canvas imageData test slightly.

14 years agoSupport WebSockets 76 (hixie-76, hybi-00).
Joel Martin [Thu, 24 Jun 2010 22:04:57 +0000 (17:04 -0500)]
Support WebSockets 76 (hixie-76, hybi-00).

Looks like disabling web-socket-js debug messages by default that we
get a minor speedup.

Python proxy should support both 75 and 76 (00) modes. Also, update ws
test to more reliably hit the WebSockets ordering/drop issue.

14 years agoRemove invalid pos check from web-socket-js.
Joel Martin [Thu, 24 Jun 2010 22:01:58 +0000 (17:01 -0500)]
Remove invalid pos check from web-socket-js.

14 years agoMissed change web-socket-js to dd80a1807758abfab4a0fde840f94c5d649e4a24.
Joel Martin [Thu, 24 Jun 2010 22:00:41 +0000 (17:00 -0500)]
Missed change web-socket-js to dd80a1807758abfab4a0fde840f94c5d649e4a24.

14 years agoAdd web-socket-js debug flag and default to off.
Joel Martin [Thu, 24 Jun 2010 21:59:53 +0000 (16:59 -0500)]
Add web-socket-js debug flag and default to off.

14 years agoSquelch MD5.as build warnings.
Joel Martin [Thu, 24 Jun 2010 21:58:24 +0000 (16:58 -0500)]
Squelch MD5.as build warnings.

14 years agoTODO: Test IE 9 preview 3.
Joel Martin [Thu, 24 Jun 2010 17:55:26 +0000 (12:55 -0500)]
TODO: Test IE 9 preview 3.

14 years agoUpdate gimite/web-socket-js to dd80a1807758abfab4a0fde840f94c5d649e4a24
Joel Martin [Thu, 24 Jun 2010 17:42:34 +0000 (12:42 -0500)]
Update gimite/web-socket-js to dd80a1807758abfab4a0fde840f94c5d649e4a24

14 years agoTODO: already got Arora 0.5 working.
Joel Martin [Thu, 24 Jun 2010 16:19:19 +0000 (11:19 -0500)]
TODO: already got Arora 0.5 working.

14 years agoTODO (WebSockets version 76) and Opera/Arora.
Joel Martin [Thu, 24 Jun 2010 16:12:49 +0000 (11:12 -0500)]
TODO (WebSockets version 76) and Opera/Arora.

14 years agoAdd proxy functionality description.
Joel Martin [Thu, 24 Jun 2010 15:50:36 +0000 (10:50 -0500)]
Add proxy functionality description.

14 years agoVarious cross-browser fixes.
Joel Martin [Wed, 23 Jun 2010 21:08:36 +0000 (16:08 -0500)]
Various cross-browser fixes.

Now working under Arora 0.5.

But not Konqueror 4.2.2 (WebSockets never connects).

IE support with excanvas still pending.

14 years agoFix browser detection code in IE.
Joel Martin [Mon, 21 Jun 2010 21:30:32 +0000 (16:30 -0500)]
Fix browser detection code in IE.

14 years agoUpdate README.md with browser support.
Joel Martin [Mon, 21 Jun 2010 18:20:57 +0000 (13:20 -0500)]
Update README.md with browser support.

14 years agoBetter support console debug under Opera (DragonFly).
Joel Martin [Sun, 20 Jun 2010 20:10:34 +0000 (15:10 -0500)]
Better support console debug under Opera (DragonFly).

14 years agoTimeout connection.
Joel Martin [Fri, 18 Jun 2010 20:18:41 +0000 (15:18 -0500)]
Timeout connection.

14 years agoUpdate usage and README.md.
Joel Martin [Thu, 17 Jun 2010 22:50:15 +0000 (17:50 -0500)]
Update usage and README.md.

14 years agoMore arg processing fixes.
Joel Martin [Thu, 17 Jun 2010 22:24:54 +0000 (17:24 -0500)]
More arg processing fixes.

14 years agoArgument processing fixes. Misc proxy fixes.
Joel Martin [Thu, 17 Jun 2010 22:05:33 +0000 (17:05 -0500)]
Argument processing fixes. Misc proxy fixes.

14 years agoAdd daemonization support to wsproxy.*.
Joel Martin [Thu, 17 Jun 2010 21:06:18 +0000 (16:06 -0500)]
Add daemonization support to wsproxy.*.

Refactor how settings are passed around.

14 years agoUpdate TODO.
Joel Martin [Thu, 17 Jun 2010 14:31:13 +0000 (09:31 -0500)]
Update TODO.

14 years agoForce SSL option to proxies. Use getopt_long.
Joel Martin [Wed, 16 Jun 2010 18:58:00 +0000 (13:58 -0500)]
Force SSL option to proxies. Use getopt_long.

14 years agoUpdate TODO.
Joel Martin [Wed, 16 Jun 2010 18:57:10 +0000 (13:57 -0500)]
Update TODO.

14 years agoBetter C proxy host resolution.
Joel Martin [Wed, 16 Jun 2010 18:11:07 +0000 (13:11 -0500)]
Better C proxy host resolution.

Use getaddrinfo instead of gethostbyname.

14 years agoAdd listen address to proxy (C and python).
Joel Martin [Wed, 16 Jun 2010 17:37:03 +0000 (12:37 -0500)]
Add listen address to proxy (C and python).

This allows forwarding from an external port to the same port on
localhost (loopback). I.e.

./utils/wsproxy `hostname -f`:5901 localhost:5901

14 years agoRemove debug sendCtrlC function.
Joel Martin [Wed, 16 Jun 2010 14:48:49 +0000 (09:48 -0500)]
Remove debug sendCtrlC function.

14 years agoDisabled ctrlAltDel button when N/A.
Joel Martin [Tue, 15 Jun 2010 22:56:38 +0000 (17:56 -0500)]
Disabled ctrlAltDel button when N/A.

14 years agoAdd CtrlAltDel send button to status bar.
Joel Martin [Tue, 15 Jun 2010 22:47:01 +0000 (17:47 -0500)]
Add CtrlAltDel send button to status bar.

Some default_controls.js jslinting.

Needs to be some modularity between controls you probably always want
(like sending CtrlAltDel) and how the interface is presented and
controlled.

14 years agoNo mootools dep outside of default_controls.js.
Joel Martin [Tue, 15 Jun 2010 20:21:41 +0000 (15:21 -0500)]
No mootools dep outside of default_controls.js.

Some basic functions from mootools implemented in util.js.

Also, some more DOM separation. Move clipboard focus logic into
default_controls and canvas and out of vnc.js.

JSLint cleanup.

14 years agoAdd mouse position routines to util.js.
Joel Martin [Tue, 15 Jun 2010 16:10:18 +0000 (11:10 -0500)]
Add mouse position routines to util.js.

On path towards removing dependency on mootools in non-UI code.

14 years agoMove DOM event handling from vnc.js to canvas.js.
Joel Martin [Tue, 15 Jun 2010 14:36:23 +0000 (09:36 -0500)]
Move DOM event handling from vnc.js to canvas.js.

14 years agoMove vnc.js into include directory.
Joel Martin [Mon, 14 Jun 2010 19:56:19 +0000 (14:56 -0500)]
Move vnc.js into include directory.

Also, allow 'include/' to be overridden in VNC_uri_prefix.

14 years agoAdd summary timing info on disconnect.
Joel Martin [Mon, 14 Jun 2010 19:43:21 +0000 (14:43 -0500)]
Add summary timing info on disconnect.

Also, move Frame Buffer Update code out of normal_msg into separate
function.

14 years agoLess debug output.
Joel Martin [Mon, 14 Jun 2010 19:42:34 +0000 (14:42 -0500)]
Less debug output.

14 years agoMove cert gen to Usage section of README.md.
Joel Martin [Mon, 14 Jun 2010 19:34:05 +0000 (14:34 -0500)]
Move cert gen to Usage section of README.md.

14 years agoRender PNG images in order. Update TODO.
Joel Martin [Sun, 13 Jun 2010 16:00:12 +0000 (11:00 -0500)]
Render PNG images in order. Update TODO.