aboutsummaryrefslogtreecommitdiffstats
path: root/components/net/fetch/methods.rs
Commit message (Collapse)AuthorAgeFilesLines
...
| * http-cache: improve handling of network errors and partial contentGregory Terzian2019-06-171-4/+2
| |
* | Upgrade headers, headers-core, and hyper_serde.Josh Matthews2019-06-131-2/+1
|/
* Added fetch_start functionality in http_fetchAdit Jain2019-01-241-0/+7
| | | | | | Added spec link for webidl. Added fetch_start functionality to PRT . Changed the fetch_start location
* Rustfmt has changed its default style :/Simon Sapin2018-12-281-15/+19
|
* Remove redundant `.clone()`sShotaro Yamada2018-12-111-1/+1
|
* net: Wait for underlying response body of filtered responses.Josh Matthews2018-11-301-1/+1
|
* Change Response's statusText default value from 'Ok' to an empty stringGeorge Roman2018-11-271-0/+7
|
* Add comment about incorrect tests for file url range requests. Fmt and ↵Fernando Jiménez Moreno2018-11-261-1/+2
| | | | manifest update
* Use crossbeam channel instead of servo channel. Fix rebase issues and add ↵Fernando Jiménez Moreno2018-11-261-3/+3
| | | | comment
* Set response status for range requests to file and blob urlsFernando Jiménez Moreno2018-11-261-11/+59
|
* Do not set Receiving body to Done when it's not neededFernando Jiménez Moreno2018-11-261-1/+0
|
* Allow range requests to blob URLs with negative offsetsFernando Jiménez Moreno2018-11-261-30/+59
|
* Add support fo byte range requests for blob URLsFernando Jiménez Moreno2018-11-261-101/+84
|
* Finish asynchronous blob url fetchingFernando Jiménez Moreno2018-11-261-1/+1
|
* Blob url's changes now build and testms23002018-11-261-5/+1
|
* Initial implementation of asynchronous blob url fetchingms23002018-11-261-14/+6
|
* refactored performance timing to align with updated specddh2018-11-201-5/+9
| | | | | | | | | | | | refactoring with ResourceFetchMetadata implemented deprecated window.timing functionality created ResourceTimingListener trait fixed w3c links in navigation timing updated include.ini to run resource timing tests on ci
* Update MPL license to https (part 4)Jan Andre Ikenmeyer2018-11-191-1/+1
|
* Update crossbeam-channel to 0.3Bastien Orivel2018-11-181-2/+2
|
* `cargo fix --edition-idioms`Simon Sapin2018-11-081-1/+1
|
* Reorder importsPyfisch2018-11-061-6/+6
|
* Format remaining filesPyfisch2018-11-061-16/+15
|
* Switch most crates to the 2018 editionSimon Sapin2018-11-061-2/+2
|
* Sort `use` statementsSimon Sapin2018-11-061-2/+2
|
* `cargo fix --edition`Simon Sapin2018-11-061-7/+7
|
* Reduce right drift in scheme_fetchPyfisch2018-11-031-124/+108
|
* Rustfmt net cratePyfisch2018-11-031-179/+262
|
* Update hyper to 0.12Bastien Orivel2018-11-011-112/+88
|
* Support for byte range requests on file urlsFernando Jiménez Moreno2018-10-311-3/+45
|
* Replace mpsc with crossbeam/servo channel, update ipc-channelSimon Sapin2018-09-121-1/+1
| | | | Co-authored-by: Gregory Terzian <gterzian@users.noreply.github.com>
* Tidy things upJackson Lewis2018-09-061-3/+2
|
* Make file fetch asynchronousJackson Lewis2018-09-041-15/+43
|
* Read file in chunks and send chunks to FetchTaskTarget instead of ↵Jackson Lewis2018-08-281-3/+17
| | | | read_to_end call
* Use specific assertion for net fetch methodsCYBAI2018-01-261-1/+1
|
* handle caching of response with a body of ResponseBody::ReceivingGregory Terzian2018-01-131-0/+6
|
* ignore aborted response in http cachingGregory Terzian2018-01-131-1/+2
|
* Add aborted flag to response, set when fetch is abortedManish Goregaokar2017-11-201-7/+12
|
* Fetch cancellation: Add CancellationListenerManish Goregaokar2017-11-201-2/+30
|
* Fetch cancellation: Add cancel_chan to FetchContextManish Goregaokar2017-11-171-0/+2
|
* Auto merge of #18882 - KiChjang:fix-origin, r=jdmbors-servo2017-11-151-1/+1
|\ | | | | | | | | | | | | | | | | | | | | Use the correct origin in fetch Fixes #18147. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/18882) <!-- Reviewable:end -->
| * Use the correct URL when checking for bad portKeith Yeung2017-11-151-1/+1
| |
* | Upgrade to rustc 1.23.0-nightly (02004ef78 2017-11-08)Simon Sapin2017-11-091-1/+0
|/
* Merge request type and destinationKeith Yeung2017-10-231-22/+22
|
* Fix commonmark Markdown warnings in docs, part 1Matt Brubeck2017-10-171-9/+9
| | | | | | | | Fixes warnings from rust-lang/rust#44229 when `--enable-commonmark` is passed to rustdoc. This is mostly a global find-and-replace for bare URIs on lines by themselves in doc comments.
* order derivable traits listsClément DAVID2017-08-231-1/+1
| | | | | | Ignoring : - **generated**.rs - python/tidy/servo_tidy_tests/rust_tidy.rs
* Rename basic fetch to scheme fetchKeith Yeung2017-08-081-5/+5
|
* Update main fetchKeith Yeung2017-08-081-17/+50
|
* Audit usages of unicode case-changing methods.Corey Farwell2017-07-261-3/+5
|
* Ignore mime type parameters in nosniffFabrice Desré2017-05-151-4/+4
| | | | | | | | | This patch implements the following changes: - Only check for the toplevel/sublevel part of the mime type when deciding if it's a js or css resource, ignoring the mime parameters. - Fix the wpt tests that did not escape url parameters properly and also used an invalid syntax for the mime parameter. - Update the wpt manifest.
* Do not return an error for non-GET data: requests (fixes #13293)Anthony Ramine2017-04-081-12/+8
|