mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 00:21:08 +01:00
spelling check
This commit is contained in:
parent
d46854b315
commit
2d80c5053d
@ -1,4 +1,4 @@
|
|||||||
Copyright (c) 2017 Nikilay Kim
|
Copyright (c) 2017 Nikolay Kim
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any
|
Permission is hereby granted, free of charge, to any
|
||||||
person obtaining a copy of this software and associated
|
person obtaining a copy of this software and associated
|
||||||
|
@ -15,7 +15,7 @@ fn index(_req: HttpRequest) -> Box<Future<Item=HttpResponse, Error=Error>> {
|
|||||||
.map_err(error::Error::from) // <- convert SendRequestError to an Error
|
.map_err(error::Error::from) // <- convert SendRequestError to an Error
|
||||||
.and_then(
|
.and_then(
|
||||||
|resp| resp.body() // <- this is MessageBody type, resolves to complete body
|
|resp| resp.body() // <- this is MessageBody type, resolves to complete body
|
||||||
.from_err() // <- convet PayloadError to a Error
|
.from_err() // <- convert PayloadError to a Error
|
||||||
.and_then(|body| { // <- we got complete body, now send as server response
|
.and_then(|body| { // <- we got complete body, now send as server response
|
||||||
httpcodes::HttpOk.build()
|
httpcodes::HttpOk.build()
|
||||||
.body(body)
|
.body(body)
|
||||||
@ -36,7 +36,7 @@ fn streaming(_req: HttpRequest) -> Box<Future<Item=HttpResponse, Error=Error>> {
|
|||||||
// read one chunk from client response and send this chunk to a server response
|
// read one chunk from client response and send this chunk to a server response
|
||||||
// .from_err() converts PayloadError to a Error
|
// .from_err() converts PayloadError to a Error
|
||||||
.body(Body::Streaming(Box::new(resp.from_err())))
|
.body(Body::Streaming(Box::new(resp.from_err())))
|
||||||
.map_err(|e| e.into()) // HttpOk::build() mayb return HttpError, we need to convert it to a Error
|
.map_err(|e| e.into()) // HttpOk::build() maybe return HttpError, we need to convert it to a Error
|
||||||
})
|
})
|
||||||
.responder()
|
.responder()
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,7 @@ struct AppState {
|
|||||||
counter: Cell<usize>,
|
counter: Cell<usize>,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// somple handle
|
/// simple handle
|
||||||
fn index(req: HttpRequest<AppState>) -> HttpResponse {
|
fn index(req: HttpRequest<AppState>) -> HttpResponse {
|
||||||
println!("{:?}", req);
|
println!("{:?}", req);
|
||||||
req.state().counter.set(req.state().counter.get() + 1);
|
req.state().counter.set(req.state().counter.get() + 1);
|
||||||
|
@ -51,7 +51,7 @@ impl Handler<CreateUser> for DbExecutor {
|
|||||||
name: &msg.name,
|
name: &msg.name,
|
||||||
};
|
};
|
||||||
|
|
||||||
// normal diesl operations
|
// normal diesel operations
|
||||||
diesel::insert_into(users)
|
diesel::insert_into(users)
|
||||||
.values(&new_user)
|
.values(&new_user)
|
||||||
.execute(&self.0)
|
.execute(&self.0)
|
||||||
|
@ -63,7 +63,7 @@ header! {
|
|||||||
(AcceptCharset, http::ACCEPT_CHARSET) => (QualityItem<Charset>)+
|
(AcceptCharset, http::ACCEPT_CHARSET) => (QualityItem<Charset>)+
|
||||||
|
|
||||||
test_accept_charset {
|
test_accept_charset {
|
||||||
/// Testcase from RFC
|
/// Test case from RFC
|
||||||
test_header!(test1, vec![b"iso-8859-5, unicode-1-1;q=0.8"]);
|
test_header!(test1, vec![b"iso-8859-5, unicode-1-1;q=0.8"]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,7 @@ header! {
|
|||||||
(Expires, http::EXPIRES) => [HttpDate]
|
(Expires, http::EXPIRES) => [HttpDate]
|
||||||
|
|
||||||
test_expires {
|
test_expires {
|
||||||
// Testcase from RFC
|
// Test case from RFC
|
||||||
test_header!(test1, vec![b"Thu, 01 Dec 1994 16:00:00 GMT"]);
|
test_header!(test1, vec![b"Thu, 01 Dec 1994 16:00:00 GMT"]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,7 @@ header! {
|
|||||||
(IfModifiedSince, http::IF_MODIFIED_SINCE) => [HttpDate]
|
(IfModifiedSince, http::IF_MODIFIED_SINCE) => [HttpDate]
|
||||||
|
|
||||||
test_if_modified_since {
|
test_if_modified_since {
|
||||||
// Testcase from RFC
|
// Test case from RFC
|
||||||
test_header!(test1, vec![b"Sat, 29 Oct 1994 19:43:31 GMT"]);
|
test_header!(test1, vec![b"Sat, 29 Oct 1994 19:43:31 GMT"]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -34,7 +34,7 @@ header! {
|
|||||||
(IfUnmodifiedSince, http::IF_UNMODIFIED_SINCE) => [HttpDate]
|
(IfUnmodifiedSince, http::IF_UNMODIFIED_SINCE) => [HttpDate]
|
||||||
|
|
||||||
test_if_unmodified_since {
|
test_if_unmodified_since {
|
||||||
// Testcase from RFC
|
// Test case from RFC
|
||||||
test_header!(test1, vec![b"Sat, 29 Oct 1994 19:43:31 GMT"]);
|
test_header!(test1, vec![b"Sat, 29 Oct 1994 19:43:31 GMT"]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -33,6 +33,6 @@ header! {
|
|||||||
(LastModified, http::LAST_MODIFIED) => [HttpDate]
|
(LastModified, http::LAST_MODIFIED) => [HttpDate]
|
||||||
|
|
||||||
test_last_modified {
|
test_last_modified {
|
||||||
// Testcase from RFC
|
// Test case from RFC
|
||||||
test_header!(test1, vec![b"Sat, 29 Oct 1994 19:43:31 GMT"]);}
|
test_header!(test1, vec![b"Sat, 29 Oct 1994 19:43:31 GMT"]);}
|
||||||
}
|
}
|
||||||
|
@ -147,7 +147,7 @@ impl<'a> ConnectionInfo<'a> {
|
|||||||
///
|
///
|
||||||
/// - Forwarded
|
/// - Forwarded
|
||||||
/// - X-Forwarded-For
|
/// - X-Forwarded-For
|
||||||
/// - peername of opened socket
|
/// - peer name of opened socket
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn remote(&self) -> Option<&str> {
|
pub fn remote(&self) -> Option<&str> {
|
||||||
if let Some(r) = self.remote {
|
if let Some(r) = self.remote {
|
||||||
|
@ -103,8 +103,8 @@ pub enum ProtocolError {
|
|||||||
/// A payload reached size limit.
|
/// A payload reached size limit.
|
||||||
#[fail(display="A payload reached size limit.")]
|
#[fail(display="A payload reached size limit.")]
|
||||||
Overflow,
|
Overflow,
|
||||||
/// Continuation is not supproted
|
/// Continuation is not supported
|
||||||
#[fail(display="Continuation is not supproted.")]
|
#[fail(display="Continuation is not supported.")]
|
||||||
NoContinuation,
|
NoContinuation,
|
||||||
/// Bad utf-8 encoding
|
/// Bad utf-8 encoding
|
||||||
#[fail(display="Bad utf-8 encoding.")]
|
#[fail(display="Bad utf-8 encoding.")]
|
||||||
|
Loading…
Reference in New Issue
Block a user