Added in more documentation, cleaned up use of postproc in HttpRequest and refreshed docs
diff --git a/docs/apiclient.http.html b/docs/apiclient.http.html
index 368a1dc..a378677 100644
--- a/docs/apiclient.http.html
+++ b/docs/apiclient.http.html
@@ -48,19 +48,17 @@
<td colspan=2><tt>Encapsulates a single HTTP request.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
-<dl><dt><a name="HttpRequest-__init__"><strong>__init__</strong></a>(self, http, uri, method<font color="#909090">='GET'</font>, body<font color="#909090">=None</font>, headers<font color="#909090">=None</font>, postproc<font color="#909090">=None</font>, methodId<font color="#909090">=None</font>)</dt><dd><tt>Constructor for an <a href="#HttpRequest">HttpRequest</a>.<br>
- <br>
-Only http and uri are required.<br>
+<dl><dt><a name="HttpRequest-__init__"><strong>__init__</strong></a>(self, http, postproc, uri, method<font color="#909090">='GET'</font>, body<font color="#909090">=None</font>, headers<font color="#909090">=None</font>, methodId<font color="#909090">=None</font>)</dt><dd><tt>Constructor for an <a href="#HttpRequest">HttpRequest</a>.<br>
<br>
Args:<br>
http: httplib2.Http, the transport <a href="__builtin__.html#object">object</a> to use to make a request<br>
+ postproc: callable, called on the HTTP response and content to transform<br>
+ it into a data <a href="__builtin__.html#object">object</a> before returning, or raising an exception<br>
+ on an error.<br>
uri: string, the absolute URI to send the request to<br>
method: string, the HTTP method to use<br>
body: string, the request body of the HTTP request<br>
headers: dict, the HTTP request headers<br>
- postproc: callable, called on the HTTP response and content to transform<br>
- it into a data <a href="__builtin__.html#object">object</a> before returning, or raising an exception<br>
- on an error.<br>
methodId: string, a unique identifier for the API method being called.</tt></dd></dl>
<dl><dt><a name="HttpRequest-execute"><strong>execute</strong></a>(self, http<font color="#909090">=None</font>)</dt><dd><tt>Execute the request.<br>
@@ -115,7 +113,7 @@
For more details see the project wiki.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
-<dl><dt><a name="RequestMockBuilder-__call__"><strong>__call__</strong></a>(self, http, uri, method<font color="#909090">='GET'</font>, body<font color="#909090">=None</font>, headers<font color="#909090">=None</font>, postproc<font color="#909090">=None</font>, methodId<font color="#909090">=None</font>)</dt><dd><tt>Implements the callable interface that discovery.build() expects<br>
+<dl><dt><a name="RequestMockBuilder-__call__"><strong>__call__</strong></a>(self, http, postproc, uri, method<font color="#909090">='GET'</font>, body<font color="#909090">=None</font>, headers<font color="#909090">=None</font>, methodId<font color="#909090">=None</font>)</dt><dd><tt>Implements the callable interface that discovery.build() expects<br>
of requestBuilder, which is to build an <a href="__builtin__.html#object">object</a> compatible with<br>
<a href="#HttpRequest">HttpRequest</a>.execute(). See that method for the description of the<br>
parameters and the expected response.</tt></dd></dl>