aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/websocket.rs
Commit message (Collapse)AuthorAgeFilesLines
...
| * Reduce max line length from 150 to 120 charactersCorey Farwell2015-05-241-5/+10
| | | | | | | | Part of https://github.com/servo/servo/issues/6041
* | fixes 6111: WebSocket close event shouldn't be CancelableAlexander Putilin2015-05-241-1/+1
|/
* Adding in a missed algorithm step number in the comments.Paul Faria2015-05-201-1/+1
|
* Auto merge of #6127 - Nashenas88:websockets-invalid-urls, r=Ms2gerbors-servo2015-05-201-9/+54
|\ | | | | | | | | | | | | | | Fix #6061. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6127) <!-- Reviewable:end -->
| * Responded to more code review comments. Simplified code a lot.Paul Faria2015-05-191-64/+12
| |
| * Responded to code review comments, general cleanupPaul Faria2015-05-191-51/+29
| |
| * Fixing one missed trailing whitespace, and fixed urlPaul Faria2015-05-191-2/+2
| |
| * Removing trailing whitespacePaul Faria2015-05-191-4/+4
| |
| * Initial work on #6061.Paul Faria2015-05-191-8/+127
| |
* | Fixed definition of Close and Send in WebSocket.webidl and updated ↵Paul Faria2015-05-191-5/+6
|/ | | | implementation in websocket.rs.
* Made open event in WebScoket not cancelable (fixes #6101)Keith Yeung2015-05-181-1/+1
|
* Fix some overlong lines.Ms2ger2015-05-141-1/+2
|
* Implement incomplete opening, sending, and closing behaviour for WebSockets ↵William Galliher2015-05-051-12/+269
| | | | | | | | | | using rust-websocket. Authors: Shivaji Vidhale <savidhal@ncsu.edu> William Galliher <wpgallih@ncsu.edu> Allen Chen <achen4@ncsu.edu> Rucha Jogaikar <rsjogaik@ncsu.edu>
* Add links to spec for script::dom structs/methodsCorey Farwell2015-03-281-0/+2
|
* Import the util crate as util rather than servo_util.Ms2ger2015-01-291-1/+1
| | | | | | | | This used to conflict with the util crate from the standard library, which has long since been removed. The import in layout has not been changed because of a conflict with the util mod there.
* Fixes #4164 Make Constructor and new functions take GlobalRef by valueMatt McCoy2015-01-071-2/+2
|
* Remove extra spacesManish Goregaokar2014-12-271-1/+0
| | | | Command: `find . -maxdepth 1 -type f -print0 | xargs -0 sed -z -i "s/}\\n\\n\\n/}\\n\\n/"`
* Remove manual impls of Reflectors (autogen)Manish Goregaokar2014-12-271-6/+1
| | | | | | | | | Obtained via: `find . -maxdepth 1 -type f -print0 | xargs -0 sed -z -i "s/\\nimpl Reflectable for[^{]*{[^}]*}[^}]*}\\n//"` `find . -maxdepth 1 -type f -print0 |xargs -0 grep -lZ dom_struct | xargs -0 grep -LZ "reflector()\\|Reflector::new" |xargs -0 sed -z -i "s/use dom::bindings::utils::{Reflectable, Reflector, reflect_dom_object};/use dom::bindings::utils::reflect_dom_object;/"` followed by semi-automated removal of leftover imports
* Update rustc to revision 3dcd2157403163789aaf21a9ab3c4d30a7c6494d.Ms2ger2014-12-171-2/+2
|
* Updated reflect_dom_object to be passed by valueMichael Booth2014-11-301-2/+2
|
* Implement a basic WebSocket interface.Hinali Marfatia2014-11-251-0/+49