add issue numbers to todos
This commit is contained in:
		| @@ -34,7 +34,7 @@ impl Response { | |||||||
|             match headers.get_ref::<TransferEncoding>() { |             match headers.get_ref::<TransferEncoding>() { | ||||||
|                 Some(&TransferEncoding(ref codings)) => { |                 Some(&TransferEncoding(ref codings)) => { | ||||||
|                     if codings.len() > 1 { |                     if codings.len() > 1 { | ||||||
|                         debug!("TODO: handle other codings: {}", codings); |                         debug!("TODO: #2 handle other codings: {}", codings); | ||||||
|                     }; |                     }; | ||||||
|  |  | ||||||
|                     if codings.contains(&Chunked) { |                     if codings.contains(&Chunked) { | ||||||
|   | |||||||
| @@ -422,7 +422,7 @@ pub enum Encoding { | |||||||
|     /// The `chunked` encoding. |     /// The `chunked` encoding. | ||||||
|     Chunked, |     Chunked, | ||||||
|  |  | ||||||
|     // TODO: implement this in `HttpReader`. |     // TODO: #2 implement this in `HttpReader`. | ||||||
|     /// The `gzip` encoding. |     /// The `gzip` encoding. | ||||||
|     Gzip, |     Gzip, | ||||||
|     /// The `deflate` encoding. |     /// The `deflate` encoding. | ||||||
|   | |||||||
							
								
								
									
										10
									
								
								src/uri.rs
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								src/uri.rs
									
									
									
									
									
								
							| @@ -10,10 +10,12 @@ use url::Url; | |||||||
| /// > depending on both the method being requested and whether the request | /// > depending on both the method being requested and whether the request | ||||||
| /// > is to a proxy. | /// > is to a proxy. | ||||||
| /// > | /// > | ||||||
| /// >   request-target = origin-form | /// > ```notrust | ||||||
| /// >                  / absolute-form | /// > request-target = origin-form | ||||||
| /// >                  / authority-form | /// >                / absolute-form | ||||||
| /// >                  / asterisk-form | /// >                / authority-form | ||||||
|  | /// >                / asterisk-form | ||||||
|  | /// > ``` | ||||||
| #[deriving(Show, PartialEq, Clone)] | #[deriving(Show, PartialEq, Clone)] | ||||||
| pub enum RequestUri { | pub enum RequestUri { | ||||||
|     /// The most common request target, an absolute path and optional query. |     /// The most common request target, an absolute path and optional query. | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user