Return-Path: X-Original-To: apmail-hc-dev-archive@www.apache.org Delivered-To: apmail-hc-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 750AB10BD6 for ; Sat, 20 Jul 2013 21:58:49 +0000 (UTC) Received: (qmail 53665 invoked by uid 500); 20 Jul 2013 21:58:48 -0000 Delivered-To: apmail-hc-dev-archive@hc.apache.org Received: (qmail 53622 invoked by uid 500); 20 Jul 2013 21:58:48 -0000 Mailing-List: contact dev-help@hc.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "HttpComponents Project" Delivered-To: mailing list dev@hc.apache.org Received: (qmail 53613 invoked by uid 99); 20 Jul 2013 21:58:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jul 2013 21:58:47 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of sebbaz@gmail.com designates 74.125.82.172 as permitted sender) Received: from [74.125.82.172] (HELO mail-we0-f172.google.com) (74.125.82.172) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jul 2013 21:58:42 +0000 Received: by mail-we0-f172.google.com with SMTP id q56so4937416wes.31 for ; Sat, 20 Jul 2013 14:58:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=cb52zNip1shROQc1aCpZvOhAi5PGhSJSKwQttC73iBk=; b=G3hq9BrQUyPjHYJwu6dygEELAL9rsI/QbG7iJnmyfaM4MmskRyWanN55/WchluYlVd OXxqTktUzEbz1ZYwj5bzDQSUqkK5KiDqlvtIfT7L7ljtSIeqjflRC1SIHtZiexYIKen1 EPxuaLniT9+eELia6+iqrAV9fM2Ww1GyHgpgfiE5YrTyA0hbnD32eeCyufuboT1GmXe6 sNfyg3RzBsMjPv7KNoVcedOXBXtVEieORIVblbIvF8+qlItubWKr5j0xhki0YLJGmQBG QG6+yHbhzK8N6BLF282nM/K+s1kUhT8AaYFfGo/fs8DxnnuYVxMHmcdZE3hjEVxfjV+j tC6w== MIME-Version: 1.0 X-Received: by 10.194.174.38 with SMTP id bp6mr15736900wjc.83.1374357501388; Sat, 20 Jul 2013 14:58:21 -0700 (PDT) Received: by 10.194.152.103 with HTTP; Sat, 20 Jul 2013 14:58:21 -0700 (PDT) In-Reply-To: <20130719020331.901762388906@eris.apache.org> References: <20130719020331.901762388906@eris.apache.org> Date: Sat, 20 Jul 2013 22:58:21 +0100 Message-ID: Subject: Re: svn commit: r1504746 - /httpcomponents/httpcore/trunk/src/docbkx/fundamentals.xml From: sebb To: HttpComponents Project Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org On 19 July 2013 03:03, wrote: > Author: ggregory > Date: Fri Jul 19 02:03:31 2013 > New Revision: 1504746 > > URL: http://svn.apache.org/r1504746 > Log: > Minor edits from proof-reading (just got started, but done for now). > > Modified: > httpcomponents/httpcore/trunk/src/docbkx/fundamentals.xml > > Modified: httpcomponents/httpcore/trunk/src/docbkx/fundamentals.xml > URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/src/docbkx/fundamentals.xml?rev=1504746&r1=1504745&r2=1504746&view=diff > ============================================================================== > --- httpcomponents/httpcore/trunk/src/docbkx/fundamentals.xml (original) > +++ httpcomponents/httpcore/trunk/src/docbkx/fundamentals.xml Fri Jul 19 02:03:31 2013 > @@ -36,7 +36,7 @@ > enclose a content body. > > > - HttpCore defines the HTTP message object model to closely follow this definition and > + HttpCore defines the HTTP message object model to follow closely this definition and That reads very oddly to me; the original read better. The adverb is OK after the verb, but not when it comes between the verb and the object. I think it should be: HttpCore defines the HTTP message object model to follow this definition closely, and > provides extensive support for serialization (formatting) and deserialization > (parsing) of HTTP message elements. > > @@ -47,7 +47,7 @@ > HTTP request message > > HTTP request is a message sent from the client to the server. The first line of > - that message includes the method to be applied to the resource, the identifier of > + that message includes the method to apply to the resource, the identifier of > the resource, and the protocol version in use. > > @@ -96,8 +96,8 @@ HTTP/1.1 200 OK > HTTP message common properties and methods > > An HTTP message can contain a number of headers describing properties of the > - message such as the content length, content type and so on. HttpCore provides > - methods to retrieve, add, remove and enumerate such headers. > + message such as the content length, content type, and so on. HttpCore provides > + methods to retrieve, add, remove, and enumerate such headers. > > HttpResponse response = new BasicHttpResponse(HttpVersion.HTTP_1_1, > @@ -177,9 +177,9 @@ c3 = c > domain=localhost > ]]> > > - HTTP headers get tokenized into individual header elements only on demand. HTTP > + HTTP headers are tokenized into individual header elements only on demand. HTTP > headers received over an HTTP connection are stored internally as an array of > - characters and parsed lazily only when their properties are accessed. > + characters and parsed lazily only when you access their properties. > > > > @@ -188,8 +188,8 @@ c3 = c > > HTTP messages can carry a content entity associated with the request or response. > Entities can be found in some requests and in some responses, as they are optional. > - Requests that use entities are referred to as entity enclosing requests. The HTTP > - specification defines two entity enclosing methods: POST and PUT. Responses are > + Requests that use entities are referred to as entity-enclosing requests. The HTTP > + specification defines two entity-enclosing methods: POST and PUT. Responses are > usually expected to enclose a content entity. There are exceptions to this rule such > as responses to HEAD method and 204 No Content, 304 Not Modified, 205 Reset Content > responses. > @@ -228,10 +228,10 @@ c3 = c > > > > - This distinction is important for connection management with incoming entities. For > - entities that are created by an application and only sent using the HttpCore framework, > + This distinction is important for connection management with incoming entities. For > + an application that creates entities and only sends them using the HttpCore framework, > the difference between streamed and self-contained is of little importance. In that > - case, it is suggested to consider non-repeatable entities as streamed, and those that > + case, we suggest you consider non-repeatable entities as streamed, and those that > are repeatable as self-contained. > >
> > --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org For additional commands, e-mail: dev-help@hc.apache.org