Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove CoreResourceMsg::Load. | Ms2ger | 2016-11-24 | 1 | -139/+0 |
| | | | | | | | | Also remove now-dead code that rustc warns about. It turns out that we lost support for some of our custom URL schemes; I intend to reimplement them, but I believe this will be significantly easier to do once the legacy code is out of the way. | ||||
* | Urlmageddon: Use refcounted urls more often. | Emilio Cobos Álvarez | 2016-11-17 | 1 | -3/+3 |
| | |||||
* | Move ReferrerPolicy to net_traits. | Ms2ger | 2016-11-04 | 1 | -2/+2 |
| | |||||
* | Don't require `PathBuf` ownership if we don't need it. | Corey Farwell | 2016-09-16 | 1 | -6/+6 |
| | |||||
* | Reorder `use` statements | UK992 | 2016-09-09 | 1 | -1/+1 |
| | |||||
* | Integrate service worker manager thread | Rahul Sharma | 2016-07-16 | 1 | -4/+1 |
| | |||||
* | Rename `MIMEClassifier` to match Rust acronym naming conventions. | Corey Farwell | 2016-07-02 | 1 | -3/+3 |
| | | | | e.g. `std::net::TcpStream` | ||||
* | adding interface for custom responses | Rahul Sharma | 2016-05-20 | 1 | -2/+21 |
| | |||||
* | Add `NetworkError::LoadCancelled` variant. | Corey Farwell | 2016-04-27 | 1 | -2/+2 |
| | |||||
* | Add referrer policy pass-through and referrer header logic | Rebecca | 2016-04-25 | 1 | -1/+1 |
| | | | | | | | add pass-through from doc to http-loader for referrer_policy, ref_URL add logic for setting referer header add script pass-through for referrer add unit tests for setting referer header | ||||
* | Upgrade to rust-url 1.0 and hyper 0.9 | Simon Sapin | 2016-04-23 | 1 | -1/+1 |
| | |||||
* | Propagating the load errors from network loader | Ravi Shankar | 2016-04-20 | 1 | -5/+5 |
| | |||||
* | Refactor `loop` into a `while` loop. | Corey Farwell | 2016-04-19 | 1 | -6/+3 |
| | |||||
* | Flatten implementation of `net::file_loader::factory`. | Corey Farwell | 2016-04-15 | 1 | -45/+45 |
| | |||||
* | Issue #9095: Send a notification when a file load is cancelled. | Simon Martin | 2016-01-10 | 1 | -21/+24 |
| | |||||
* | task -> thread | rohan.prinja | 2016-01-10 | 1 | -3/+3 |
| | |||||
* | Resolves #4183 - Implemementing context-based MIME type sniffing | David Rajchenbach-Teller | 2015-12-31 | 1 | -3/+5 |
| | | | | | The version of the standard is not finalized at the time of this writing. Specifications may be found here: https://mimesniff.spec.whatwg.org/#context-specific-sniffing . | ||||
* | Auto merge of #8650 - Wafflespeanut:about-404, r=Wafflespeanut | bors-servo | 2015-11-26 | 1 | -2/+9 |
|\ | | | | | | | | | | | | | | | | | | | Redirect to an error page on 404! fixes #7658 <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8650) <!-- Reviewable:end --> | ||||
| * | Redirect to an error page when file's not found | Ravi Shankar | 2015-11-26 | 1 | -2/+9 |
| | | |||||
* | | Add content_type to metadata in file_loader | Keith Yeung | 2015-11-24 | 1 | -2/+7 |
|/ | |||||
* | Implement cancellation listener for cancelling network requests | Ravi Shankar | 2015-11-12 | 1 | -7/+28 |
| | |||||
* | Consistently use content-type sniffing with all protocols. | Eli Friedman | 2015-10-31 | 1 | -8/+17 |
| | |||||
* | Refactor resource loaders to use send_error utility. | Eli Friedman | 2015-10-13 | 1 | -6/+4 |
| | | | | No substantial functional change. | ||||
* | Cleanup code that was warned by rust-clippy | Corey Farwell | 2015-10-11 | 1 | -1/+1 |
| | |||||
* | sorted the extern crate, mod & use declarations | Ravi Shankar | 2015-09-24 | 1 | -3/+3 |
| | |||||
* | Add plugins for compositing and net crates #7699 | Maciej Skrzypkowski | 2015-09-22 | 1 | -2/+2 |
| | | | | | Changed to_string calls to to_owned calls where was a need. | ||||
* | Fix reported test-tidy errors for unmerged import blocks | Brandon Fairchild | 2015-09-19 | 1 | -1/+0 |
| | | | | This merges import blocks that were reported by tidy as unmerged. | ||||
* | sort all uses | Johann Tuffe | 2015-08-20 | 1 | -2/+2 |
| | |||||
* | Upgrade to rustc 551a74dddd84cf01440ee84148ebd18bc68bd7c8. | Simon Sapin | 2015-05-05 | 1 | -0/+1 |
| | |||||
* | Remove as_mut_slice() calls. | Ms2ger | 2015-04-26 | 1 | -1/+1 |
| | |||||
* | Replace usage of ResponseSenders by LoadConsumer | Marcus Klaas | 2015-04-19 | 1 | -2/+2 |
| | |||||
* | Completely abstract sending responses over channels vs. listeners. | Josh Matthews | 2015-04-16 | 1 | -4/+3 |
| | |||||
* | Start switching net/ to use abstractions over channels to allow introducing ↵ | Josh Matthews | 2015-04-16 | 1 | -7/+6 |
| | | | | non-channel communication in the future. | ||||
* | Avoid virtual calls when loading files. | Ms2ger | 2015-04-10 | 1 | -3/+3 |
| | |||||
* | Remove int_uint from net. | Josh Matthews | 2015-04-07 | 1 | -1/+1 |
| | |||||
* | Enable optional mime sniffing, and integrate it with the file loader. | Josh Matthews | 2015-04-06 | 1 | -13/+39 |
| | |||||
* | Remove the sniffer task. | Josh Matthews | 2015-04-06 | 1 | -7/+4 |
| | |||||
* | Split out shared networking code into net_traits crate | Gilles Leblanc | 2015-04-03 | 1 | -2/+3 |
| | | | | Fixes #4476 | ||||
* | Stop using old_path in net. | Ms2ger | 2015-03-26 | 1 | -2/+3 |
| | |||||
* | Fixed some deprecation errors in components/net. | Avi Weinstock | 2015-03-23 | 1 | -18/+14 |
| | |||||
* | Update some code that's feature-gated under core. | Ms2ger | 2015-03-21 | 1 | -1/+1 |
| | |||||
* | Upgrade to rustc ba2f13ef0 2015-02-04 | Simon Sapin | 2015-02-11 | 1 | -2/+2 |
| | |||||
* | add `unwrap` to `send/recv` calls | Alexandru Cojocaru | 2015-02-03 | 1 | -3/+3 |
| | |||||
* | Import the util crate as util rather than servo_util. | Ms2ger | 2015-01-29 | 1 | -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. | ||||
* | Update rustc to 00b112c45a604fa6f4b59af2a40c9deeadfdb7c6/rustc-1.0.0-dev. | Josh Matthews | 2015-01-28 | 1 | -3/+4 |
| | |||||
* | Pass a String to spawn_named. | Ms2ger | 2015-01-21 | 1 | -1/+2 |
| | | | | | IntoString has been removed from Rust, and named() will take a String, so there is no good reason to do otherwise here. | ||||
* | Update rustc to revision 3dcd2157403163789aaf21a9ab3c4d30a7c6494d. | Ms2ger | 2014-12-17 | 1 | -1/+2 |
| | |||||
* | Shared Sniffer Task | Kshitij Parajuli | 2014-11-28 | 1 | -4/+7 |
| | | | | | | | | - Added TargetedLoadResponse and ResponseSenders - LoadData constructor contains the next consumer which means SnifferManager doesn't need the next consumer to start - New SnifferTask is created at new resource_task creation - Update Unit Tests | ||||
* | create about_loader, handle about:blank | Sean McArthur | 2014-09-11 | 1 | -1/+2 |
| | |||||
* | remove unnecessary proc from resource loader factory | Sean McArthur | 2014-09-11 | 1 | -24/+21 |
| |