summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Fixing build.xml syntax error.Hiroshi Ichikawa2011-08-141-1/+2
| |
| * Fixing a bug checking Flash Player version.Hiroshi Ichikawa2011-08-071-1/+1
| |
| * Merging, renaming WebSocketLogger to WEB_SOCKET_LOGGER and making ↵Hiroshi Ichikawa2011-08-071-13/+18
| |\ | | | | | | | | | window.console as default logger.
| | * Add WebSocketLogger and use it in every submodule.Bernard Potocki2011-08-051-12/+18
| | | | | | | | | | | | This allow to easly manage debug switch, but also allow overwrite of logger for use in other libraries using web-socket-js.
| * | Adding flag WEB_SOCKET_SUPPRESS_CROSS_DOMAIN_SWF_ERROR in case the user ↵Hiroshi Ichikawa2011-08-071-2/+4
| | | | | | | | | | | | rename WebSocketMainInsecure.swf.
| * | Adding Ant build file to build SWF and SWC files.Hiroshi Ichikawa2011-08-076-0/+71
| | |
| * | Moving Flash classes to package net.gimite.websocket.Hiroshi Ichikawa2011-08-068-7/+10
| | |
| * | Fixing import.Hiroshi Ichikawa2011-08-063-1/+1
| | |
| * | Setting for forcing use of Flash over native Web Socket implementationCarl Byström2011-07-221-2/+2
| |/
| * Updating link to node.js implementation of Flash socket policy file server.Hiroshi Ichikawa2011-07-191-1/+1
| |
| * Adding event.text to error message on IoError and SecurityError.Hiroshi Ichikawa2011-07-183-4/+8
| |
| * Adding HTML/SWF domain issue to 'Troubleshooting' section of README.Hiroshi Ichikawa2011-06-261-4/+6
| |
| * Adding error message when HTML and SWF is in the different domains.Hiroshi Ichikawa2011-06-261-0/+11
| |
| * Adding comment about Flash version check.Hiroshi Ichikawa2011-06-251-0/+1
| |
| * Merge pull request #72 from doenietzomoeilijk/masterHiroshi Ichikawa2011-06-241-1/+1
| |\ | | | | | | Making Flash version detection work with Gnash.
| | * Use getFlashPlayerVersion() to detect the Flash version more reliablyMax Roeleveld2011-06-151-1/+1
| |/
| * README fixes.Hiroshi Ichikawa2011-05-081-1/+1
| |
| * README fixes.Hiroshi Ichikawa2011-05-081-3/+5
| |
| * Fixing README style.Hiroshi Ichikawa2011-05-081-23/+25
| |
* | Merge branch 'master' into hybi-07Hiroshi Ichikawa2011-05-071-0/+7
|\ \ | |/
| * Adding "WebSocket protocol versions" section to README.Hiroshi Ichikawa2011-05-071-0/+7
| |
* | Merging.Hiroshi Ichikawa2011-05-075-22/+28
|\ \ | |/
| * Accepting array in addition to string for protocol parameter.Hiroshi Ichikawa2011-05-065-17/+24
| |
| * Fix protocol attribute handling.Joel Martin2011-05-063-4/+16
| | | | | | | | | | | | | | | | | | - First, the protocol parameter to open should accept a list or protocols (either as a comma separate string or an array of strings). - Second, the chosen protocol should be reported back to and set as the protocol attribute in the WebSocket instance object itself.
* | Use byte length rather than character length.Joel Martin2011-05-063-14/+17
| | | | | | | | | | | | | | | | Requires restructuring the code slightly so that we write the string into a ByteArray before determining the length so that we can get the byte length of the UTF-8 encoded string. Also, remove an extraneous debug statement.
* | Add HyBi-07 client masking.Joel Martin2011-05-023-4/+9
| |
* | Implement HyBi-07 version of the protocol.Joel Martin2011-05-027-126/+139
| | | | | | | | | | | | | | | | | | | | This is an initial implementation of http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-07 Limitations: - This does not implement the binary frame type since the API for this is still under discussion. - The client to server XOR mask is 0, i.e. masking is not used.
* | Fix protocol attribute handling.Joel Martin2011-05-023-4/+16
| | | | | | | | | | | | | | | | | | - First, the protocol parameter to open should accept a list or protocols (either as a comma separate string or an array of strings). - Second, the chosen protocol should be reported back to and set as the protocol attribute in the WebSocket instance object itself.
* | com/gsolo/encryption/SHA1.as: stop compile warnings.Joel Martin2011-05-021-3/+3
| |
* | Add gsolo SHA1 algorithm.Joel Martin2011-05-021-0/+218
|/ | | | | From: http://gsolofp.blogspot.com/2006/01/actionscript-3-md5-and-sha1.html
* Merge pull request #69 from luciferous/master.Hiroshi Ichikawa2011-04-303-2/+4
|\ | | | | Default to port 443 when scheme is wss
| * Only set port in Host if not default portNeuman Vong2011-04-283-1/+2
| |
| * Default to 443 default port for wssNeuman Vong2011-04-271-1/+2
|/
* Fixing WebSocket-Protocol to Sec-WebSocket-Protocol.Hiroshi Ichikawa2011-04-093-1/+1
|
* Fixing README.Hiroshi Ichikawa2011-04-071-1/+1
|
* Updating README.Hiroshi Ichikawa2011-04-031-2/+2
|
* Updating README.Hiroshi Ichikawa2011-04-031-3/+5
|
* Updating README.Hiroshi Ichikawa2011-04-031-25/+24
|
* Updating README.Hiroshi Ichikawa2011-04-031-23/+57
|
* markdownTakahiro Hozumi2011-04-011-39/+41
|
* Fixing an error on IE when window.Event is defined by user.Hiroshi Ichikawa2011-03-131-2/+2
|
* Cleaning up event handling.Hiroshi Ichikawa2011-03-061-146/+75
| | | | | Passing real event to both onXXX and handlers added by addEventHandler(). Deleting check of cancelBubble which (probably) should not affect.
* Style change.Hiroshi Ichikawa2011-03-051-6/+5
|
* The handler should not "invalid events" for valid events. Just because weArnout Kazemier2011-03-041-7/+7
| | | | didn't attach a handler for it doesn't indicate that it's not a valid event.
* Fixing a bug that it doesn't accept URL such as ws://myserver:8080?room=blah .Hiroshi Ichikawa2011-03-013-2/+2
| | | | https://github.com/gimite/web-socket-js/issues/59
* Minimizing dependency from WebSocket to WebSocketMain.Hiroshi Ichikawa2011-02-278-61/+55
| | | | Removing WebSocket.swc.
* Merging.Hiroshi Ichikawa2011-02-276-5/+17
|\
| * updating binary filesSimeon Bateman2011-02-223-0/+0
| |
| * changed build to not removed swcSimeon Bateman2011-02-221-2/+2
| |
| * updated binary filesSimeon Bateman2011-02-222-0/+0
| |