summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Allowing HTTP -> HTTPS access on WebSocketMainInsecure.swf.hixie-76Hiroshi Ichikawa2011-09-104-1/+4
|
* Fixing scope of event callbacks (Bug #91 ).Hiroshi Ichikawa2011-09-101-1/+1
|
* Merge pull request #88 from kanaka/masterHiroshi Ichikawa2011-09-031-1/+8
|\ | | | | init/close fix.
| * close() should cancel create task.Joel Martin2011-08-311-1/+8
|/ | | | | | | | | | | | | | | | Change the init and close code so that the async __flash.create() task is cancelled in close() so that you can do something like this which tests whether the newer binary API exists: var wstest = new WebSocket('ws://localhost:57111'); if (typeof(wstest.binaryType) !== "undefined") { ... } wstest.close(); wstest = null; Without the change, a Flash error occurs later when the connect fails (because the close() call doesn't cancel the connect).
* Moving our own .as files into flash-src/src and third-party .as files into ↵Hiroshi Ichikawa2011-08-28116-15/+60
| | | | | | flash-src/third-party. Adding build rule for WebSocketWithoutDependencies.swc.
* Setting static-link-runtime-shared-libraries to false for swc file to avoid ↵Hiroshi Ichikawa2011-08-141-1/+1
| | | | errors, per issue #86 .
* 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
|
* Adding "WebSocket protocol versions" section to README.Hiroshi Ichikawa2011-05-071-0/+7
|
* 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.
* 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
| |
| * updated build script to create WebSocket.swc library fileSimeon Bateman2011-02-221-2/+5
| |
| * Updated WebSocket.as to use interface instead of implementation class. ↵Simeon Bateman2011-02-223-3/+13
| | | | | | | | Updated WebSocketMain to implement IWebSocketWrapper. Created IWebSocketWrapper