Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | replace .len() == 0 with is_empty() | João Oliveira | 2015-08-14 | 1 | -1/+1 |
| | | | | closes #7198 | ||||
* | Measure heap memory usage for more types. Fixes #6951 | Bogdan Cuza | 2015-08-13 | 1 | -3/+9 |
| | |||||
* | script: Make the resource task communication use IPC channels. | Patrick Walton | 2015-07-31 | 1 | -17/+17 |
| | |||||
* | net: Use a thread for each `AsyncResponseTarget` to avoid having to send | Patrick Walton | 2015-07-31 | 1 | -4/+10 |
| | | | | trait objects across process boundaries. | ||||
* | net: Make most of the resource task messages serializable. | Patrick Walton | 2015-07-31 | 1 | -9/+16 |
| | |||||
* | Add spec links | Bogdan Cuza | 2015-07-28 | 1 | -1/+1 |
| | |||||
* | Fix #6674 | Bogdan Cuza | 2015-07-22 | 1 | -1/+1 |
| | |||||
* | Upgrade to rustc 1.3.0-dev (fddfd089b 2015-07-10) | Simon Sapin | 2015-07-15 | 1 | -1/+2 |
| | |||||
* | Remove some more unnecessary let bindings | David Zbarsky | 2015-07-14 | 1 | -6/+2 |
| | |||||
* | Refactor #[jstraceable] to #[derive(JSTraceable)] | David Winslow | 2015-07-01 | 1 | -4/+2 |
| | | | | fixes #6524 | ||||
* | Upgrade to SM 39 | Michael Wu | 2015-06-19 | 1 | -34/+39 |
| | |||||
* | Use str::parse() rather than FromStr::from_str. | Ms2ger | 2015-06-13 | 1 | -2/+1 |
| | | | | The former appears to be preferred. | ||||
* | Cleanup URLSearchParams | Anthony Ramine | 2015-05-27 | 1 | -4/+9 |
| | | | | It now uses rust-url for its serializer. | ||||
* | 1. Add an Option<Pipeline_id> field to the LoadData struct, and a ↵ | Himaja | 2015-05-05 | 1 | -1/+3 |
| | | | | | | corresponding parameter to LoadData::new() 2. Change addEvent in the NetworkEventActor to add_request and add_response | ||||
* | Upgrade to rustc 551a74dddd84cf01440ee84148ebd18bc68bd7c8. | Simon Sapin | 2015-05-05 | 1 | -13/+16 |
| | |||||
* | Replace ByteString::as_slice() by a Deref implementation. | Ms2ger | 2015-05-01 | 1 | -4/+4 |
| | |||||
* | Implement Clone for Copy types. | Ms2ger | 2015-04-28 | 1 | -1/+1 |
| | |||||
* | Remove Temporary::new() | Anthony Ramine | 2015-04-28 | 1 | -2/+2 |
| | | | | Temporary::from_rooted() now takes an Assignable value. | ||||
* | Uniformise root() methods | Anthony Ramine | 2015-04-28 | 1 | -2/+2 |
| | | | | | They now live in traits Rootable, OptionalOptionalRootable, OptionalRootable and ResultRootable. | ||||
* | Change MutNullableJS<T> to MutNullableHeap<JS<T>> | Anthony Ramine | 2015-04-27 | 1 | -3/+4 |
| | |||||
* | Remove as_slice() calls from script. | Ms2ger | 2015-04-26 | 1 | -13/+13 |
| | |||||
* | Create easy common interface for off-thread network listeners, and remove ↵ | Josh Matthews | 2015-04-16 | 1 | -72/+16 |
| | | | | the CORS-specific reimplementation of async networking. | ||||
* | Remove old implementation of XHR's fetch. | Josh Matthews | 2015-04-16 | 1 | -136/+0 |
| | |||||
* | Implement sync XHR by creating and spinning on-demand event loops. | Josh Matthews | 2015-04-16 | 1 | -143/+172 |
| | |||||
* | Make the fetch method only handle sync XHRs. | Josh Matthews | 2015-04-16 | 1 | -43/+11 |
| | |||||
* | Make timeouts for async XHR post a runnable. | Josh Matthews | 2015-04-16 | 1 | -25/+40 |
| | |||||
* | Make async XMLHttpRequest requests use async network events. | Josh Matthews | 2015-04-16 | 1 | -12/+245 |
| | |||||
* | Start switching net/ to use abstractions over channels to allow introducing ↵ | Josh Matthews | 2015-04-16 | 1 | -9/+8 |
| | | | | non-channel communication in the future. | ||||
* | Update WHATWG links to use HTTPS | Corey Farwell | 2015-04-13 | 1 | -2/+2 |
| | | | | | | | | | | | | | | Extracted this out of #5649 This commit was created with the following commands: ``` find . -iname "*.webidl" -type f -print0 | xargs -0 sed -i '' 's/http:\(.*\)whatwg.org/https:\1whatwg.org/g' ``` ``` find . -iname "*.rs" -type f -print0 | xargs -0 sed -i '' 's/http:\(.*\)whatwg.org/https:\1whatwg.org/g' ``` | ||||
* | auto merge of #5511 : Ms2ger/servo/int, r=jdm | bors-servo | 2015-04-03 | 1 | -2/+2 |
|\ | |||||
| * | Stop using int/uint in script. | Ms2ger | 2015-04-03 | 1 | -2/+2 |
| | | |||||
* | | Split out shared networking code into net_traits crate | Gilles Leblanc | 2015-04-03 | 1 | -3/+3 |
|/ | | | | Fixes #4476 | ||||
* | auto merge of #5375 : frewsxcv/servo/xhr-docs, r=jdm | bors-servo | 2015-03-26 | 1 | -1/+42 |
|\ | | | | | | | | | Also adding some newlines for visual separation between functions/methods | ||||
| * | Add comments linking XHR code to XHR specification | Corey Farwell | 2015-03-25 | 1 | -1/+42 |
| | | | | | | | | | | Also adding some newlines for visual separation between functions/methods | ||||
* | | Remove enum variant prefix in XMLHttpRequestState | Corey Farwell | 2015-03-25 | 1 | -8/+8 |
|/ | | | | | | It was originally titled XHRDone to prevent conflicts with other variants called Done. This was done before enum namespacing landed, but now that it has, the prefixing is not necessary. | ||||
* | Stop abusing format! macro when construct a String | Corey Farwell | 2015-03-22 | 1 | -2/+2 |
| | | | | | In these cases for `format!`, we're just constructing a String of the single argument with no special format. | ||||
* | Replace unsafe_blocks by unsafe_code. | Manish Goregaokar | 2015-03-21 | 1 | -2/+2 |
| | |||||
* | Upgrade rustc to d3c49d2140fc65e8bb7d7cf25bfe74dda6ce5ecf/rustc-1.0.0-dev. | Ms2ger | 2015-03-18 | 1 | -5/+14 |
| | |||||
* | Use qitem rather than QualityItem::new in XHR. | Ms2ger | 2015-03-14 | 1 | -2/+2 |
| | | | | This is more future-proof. | ||||
* | Fixing Intermittent failure in pages with timers | Prabhjyot Singh Sodhi | 2015-02-22 | 1 | -1/+1 |
| | | | | Fixes #4923 | ||||
* | Upgrade to rustc ba2f13ef0 2015-02-04 | Simon Sapin | 2015-02-11 | 1 | -8/+7 |
| | |||||
* | Make XMLHttpRequest user-set headers be preserved across redirects. | Josh Matthews | 2015-02-04 | 1 | -33/+29 |
| | |||||
* | Initialize trusted-ness of DOM events properly | Gilles Leblanc | 2015-02-03 | 1 | -3/+3 |
| | | | | Fixes #3740 | ||||
* | add `unwrap` to `send/recv` calls | Alexandru Cojocaru | 2015-02-03 | 1 | -2/+2 |
| | |||||
* | Added error checking on XMLHttpRequest::setWithCredentials | Keith Yeung | 2015-02-02 | 1 | -2/+15 |
| | |||||
* | Import the util crate as util rather than servo_util. | Ms2ger | 2015-01-29 | 1 | -2/+2 |
| | | | | | | | | 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. | ||||
* | self import | Manish Goregaokar | 2015-01-28 | 1 | -1/+1 |
| | |||||
* | Update rustc to 00b112c45a604fa6f4b59af2a40c9deeadfdb7c6/rustc-1.0.0-dev. | Josh Matthews | 2015-01-28 | 1 | -31/+35 |
| | |||||
* | Pass a String to spawn_named. | Ms2ger | 2015-01-21 | 1 | -3/+3 |
| | | | | | IntoString has been removed from Rust, and named() will take a String, so there is no good reason to do otherwise here. | ||||
* | Move to to_owned rather than into_string. | Ms2ger | 2015-01-20 | 1 | -25/+26 |
| | | | | into_string has been removed from Rust. |