Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Cargoify servo | Jack Moffitt | 2014-09-08 | 1 | -267/+0 |
| | |||||
* | Add https support | Glenn Watson | 2014-08-26 | 1 | -1/+1 |
| | |||||
* | remove unnecessary clone usage | joaoxsouls | 2014-08-04 | 1 | -1/+1 |
| | |||||
* | refactor new_resource_task, use one channel instead of two | joaoxsouls | 2014-08-03 | 1 | -4/+2 |
| | |||||
* | Basic implementation of CORS | Manish Goregaokar | 2014-07-25 | 1 | -2/+12 |
| | |||||
* | Move about: URL handling from parsing to loading. Fix #1094 | Simon Sapin | 2014-07-21 | 1 | -2/+21 |
| | |||||
* | Hard-code resource task loaders. They never change. | Simon Sapin | 2014-07-21 | 1 | -66/+14 |
| | |||||
* | Start dogfooding rust-url. Fix #1673. | Simon Sapin | 2014-07-21 | 1 | -5/+5 |
| | |||||
* | Allow URLSearchParams to be passed to XHR Send() | Manish Goregaokar | 2014-07-12 | 1 | -1/+1 |
| | |||||
* | Test for tabs in tidy.py. | Ms2ger | 2014-07-11 | 1 | -2/+2 |
| | |||||
* | Fix or selectively silence warnings in src/components. | Simon Sapin | 2014-07-08 | 1 | -9/+11 |
| | |||||
* | Upgrade to latest Rust. | Manish Goregaokar | 2014-06-27 | 1 | -1/+1 |
| | |||||
* | Request termination for XHR | Manish Goregaokar | 2014-06-19 | 1 | -2/+10 |
| | |||||
* | Upgrade Rust. | Jack Moffitt | 2014-06-05 | 1 | -15/+15 |
| | |||||
* | Add responseText and status code support to XHR | Manish Goregaokar | 2014-06-04 | 1 | -1/+8 |
| | |||||
* | Request header and postdata support for XHR | Manish Goregaokar | 2014-05-28 | 1 | -19/+40 |
| | |||||
* | Update Rust. | Ms2ger | 2014-05-22 | 1 | -4/+4 |
| | |||||
* | Async XHR GET with basic response header support | Manish Goregaokar | 2014-05-20 | 1 | -2/+6 |
| | |||||
* | Allow resource load failures to send an error string which is reporting ↵ | Glenn Watson | 2014-05-08 | 1 | -3/+3 |
| | | | | during task failure. | ||||
* | Use Vec for ResourceTask. | Ms2ger | 2014-05-06 | 1 | -6/+6 |
| | |||||
* | Convert Vec::new() to vec!() | Matt Murphy | 2014-05-04 | 1 | -1/+1 |
| | |||||
* | ~[] to Vec in net/resource_task.rs | Matt Murphy | 2014-05-04 | 1 | -2/+2 |
| | |||||
* | Replace most ~"string"s with "string".to_owned(). | Ms2ger | 2014-05-04 | 1 | -4/+4 |
| | |||||
* | Make ProgressMsg use Vec. | Ms2ger | 2014-04-28 | 1 | -4/+4 |
| | |||||
* | This batch of changes upgrades Servo to work with the Rust upgrade as of | Lars Bergstrom | 2014-04-27 | 1 | -5/+5 |
| | | | | | | April 10, 2014. The main changes are to privacy, to work around the issues with incorrect bounds on the libstd `Arc<Mutex<T>>`, and the various API changes strewn throughout the libraries. | ||||
* | Fix some private type in public signature warnings. | Josh Matthews | 2014-04-16 | 1 | -3/+3 |
| | |||||
* | Fix tests. | Josh Matthews | 2014-04-04 | 1 | -1/+1 |
| | |||||
* | Upgrade rust. | Ms2ger | 2014-04-04 | 1 | -18/+18 |
| | |||||
* | Rust upgrade for new master rebase | Lars Bergstrom | 2014-03-18 | 1 | -12/+0 |
| | |||||
* | Warning police. | Josh Matthews | 2014-03-18 | 1 | -2/+1 |
| | |||||
* | Rust upgrades | Lars Bergstrom | 2014-03-18 | 1 | -5/+21 |
| | |||||
* | add names for all servo spawned tasks | zmike | 2014-01-13 | 1 | -1/+1 |
| | | | | | | | | * add servo_util::task::{spawn_named,spawn_with_named} functions * add name param for spawn_listener and spawn_conversation functions this should resolve #1169 | ||||
* | Upgrade to latest Rust. | Jack Moffitt | 2014-01-12 | 1 | -14/+11 |
| | |||||
* | fmt! -> format! | Keegan McAllister | 2013-10-31 | 1 | -2/+2 |
| | |||||
* | Factor out a convenience function load_whole_resource | Keegan McAllister | 2013-10-17 | 1 | -0/+17 |
| | | | | | Also remove an unnecessary spawn in js_script_listener, and remember the final script URL after redirects. | ||||
* | Fix bitrotten tests | Keegan McAllister | 2013-10-10 | 1 | -13/+28 |
| | |||||
* | Add support for data: URLs | Keegan McAllister | 2013-10-10 | 1 | -0/+2 |
| | | | | Fixes #778 | ||||
* | Extract content type and character set from HTTP response headers | Keegan McAllister | 2013-10-10 | 1 | -2/+26 |
| | | | | We don't use this information anywhere, yet. | ||||
* | Refactor resource loader protocol to send metadata first | Keegan McAllister | 2013-10-10 | 1 | -12/+50 |
| | |||||
* | Simplify ResourceTask creation | Keegan McAllister | 2013-10-10 | 1 | -7/+5 |
| | |||||
* | Handle HTTP 3xx redirects | Keegan McAllister | 2013-09-23 | 1 | -0/+3 |
| | | | | Fixes #973. | ||||
* | Remove old lint mode annotation. | Jack Moffitt | 2013-09-10 | 1 | -2/+0 |
| | |||||
* | Add rust-http to the build and begin using it to resolve http urls | Brian Anderson | 2013-09-03 | 1 | -3/+3 |
| | |||||
* | Remove HTTP support (!) | Keegan McAllister | 2013-08-15 | 1 | -3/+3 |
| | | | | We'll need a new HTTP client lib written against newrt. | ||||
* | For loops and misc changes | Keegan McAllister | 2013-08-15 | 1 | -1/+1 |
| | |||||
* | Library changes | Keegan McAllister | 2013-08-15 | 1 | -2/+2 |
| | |||||
* | Trait changes, and eliminate 'copy' | Keegan McAllister | 2013-08-15 | 1 | -1/+1 |
| | |||||
* | Update to latest Rust. | Jack Moffitt | 2013-07-09 | 1 | -1/+1 |
| | |||||
* | Update for language changes | Brian Anderson | 2013-06-26 | 1 | -4/+4 |
| | |||||
* | Remove the `servo-` prefix from core components. | Patrick Walton | 2013-05-28 | 1 | -0/+155 |