You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2010/12/08 22:47:57 UTC

svn commit: r1043702 - in /httpcomponents/httpclient/trunk/src/docbkx: fundamentals.xml httpagent.xml

Author: olegk
Date: Wed Dec  8 21:47:56 2010
New Revision: 1043702

URL: http://svn.apache.org/viewvc?rev=1043702&view=rev
Log:
Slightly more precise terminology

Modified:
    httpcomponents/httpclient/trunk/src/docbkx/fundamentals.xml
    httpcomponents/httpclient/trunk/src/docbkx/httpagent.xml

Modified: httpcomponents/httpclient/trunk/src/docbkx/fundamentals.xml
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/src/docbkx/fundamentals.xml?rev=1043702&r1=1043701&r2=1043702&view=diff
==============================================================================
--- httpcomponents/httpclient/trunk/src/docbkx/fundamentals.xml (original)
+++ httpcomponents/httpclient/trunk/src/docbkx/fundamentals.xml Wed Dec  8 21:47:56 2010
@@ -547,8 +547,8 @@ byte[] response = httpclient.execute(htt
                         The final HttpRequest object in the execution context always represents
                         the state of the message _exactly_ as it was sent to the target server.
                         Per default HTTP/1.0 and HTTP/1.1 use relative request URIs.
-                        However if the request is sent via a proxy without creating a tunnel
-                        (direct proxy mode) then the URI will be absolute.</para>
+                        However if the request is sent via a proxy in a non-tunneling mode then 
+                        the URI will be absolute.</para>
                 </formalpara>
             </listitem>
             <listitem>

Modified: httpcomponents/httpclient/trunk/src/docbkx/httpagent.xml
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/src/docbkx/httpagent.xml?rev=1043702&r1=1043701&r2=1043702&view=diff
==============================================================================
--- httpcomponents/httpclient/trunk/src/docbkx/httpagent.xml (original)
+++ httpcomponents/httpclient/trunk/src/docbkx/httpagent.xml Wed Dec  8 21:47:56 2010
@@ -187,9 +187,8 @@ httpclient.getConnectionManager().shutdo
             local HTTP context after the request has been executed.</para>
         <para>The final HttpRequest object in the execution context always represents
             the state of the message _exactly_ as it was sent to the target server.
-            Per default HTTP/1.0 and HTTP/1.1 use relative request URIs.
-            However if the request is sent via a proxy without creating a tunnel
-            (direct proxy mode) then the URI will be absolute.</para>
+            Per default HTTP/1.0 and HTTP/1.1 use relative request URIs. However if the request 
+            is sent via a proxy in a non-tunneling mode then the URI will be absolute.</para>
         <programlisting><![CDATA[
 DefaultHttpClient httpclient = new DefaultHttpClient();