Updated generated docs
diff --git a/docs/apiclient.http.html b/docs/apiclient.http.html
index d35f7fa..3776a97 100644
--- a/docs/apiclient.http.html
+++ b/docs/apiclient.http.html
@@ -21,10 +21,18 @@
<font color="#ffffff" face="helvetica, arial"><big><strong>Modules</strong></big></font></td></tr>
<tr><td bgcolor="#aa55cc"><tt> </tt></td><td> </td>
-<td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="httplib2.html">httplib2</a><br>
+<td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="StringIO.html">StringIO</a><br>
+<a href="copy.html">copy</a><br>
+<a href="gzip.html">gzip</a><br>
+</td><td width="25%" valign=top><a href="httplib2.html">httplib2</a><br>
+<a href="apiclient.mimeparse.html">apiclient.mimeparse</a><br>
+<a href="mimetypes.html">mimetypes</a><br>
</td><td width="25%" valign=top><a href="os.html">os</a><br>
-</td><td width="25%" valign=top><a href="django.utils.simplejson.html">django.utils.simplejson</a><br>
-</td><td width="25%" valign=top></td></tr></table></td></tr></table><p>
+<a href="simplejson.html">simplejson</a><br>
+<a href="urllib.html">urllib</a><br>
+</td><td width="25%" valign=top><a href="urlparse.html">urlparse</a><br>
+<a href="uuid.html">uuid</a><br>
+</td></tr></table></td></tr></table><p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ee77aa">
<td colspan=3 valign=bottom> <br>
@@ -50,7 +58,7 @@
<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, 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>
+<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>, resumable<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>
@@ -59,9 +67,10 @@
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>
+ body: string, the request body of the HTTP request,<br>
headers: dict, the HTTP request headers<br>
- methodId: string, a unique identifier for the API method being called.</tt></dd></dl>
+ methodId: string, a unique identifier for the API method being called.<br>
+ resumable: MediaUpload, None if this is not a resumbale request.</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>
<br>
@@ -77,6 +86,37 @@
apiclient.errors.HttpError if the response was not a 2xx.<br>
httplib2.Error if a transport error has occured.</tt></dd></dl>
+<dl><dt><a name="HttpRequest-next_chunk"><strong>next_chunk</strong></a>(self, http<font color="#909090">=None</font>)</dt><dd><tt>Execute the next step of a resumable upload.<br>
+ <br>
+Can only be used if the method being executed supports media uploads and<br>
+the MediaUpload <a href="__builtin__.html#object">object</a> passed in was flagged as using resumable upload.<br>
+ <br>
+Example:<br>
+ <br>
+ media = MediaFileUpload('smiley.png', mimetype='image/png',<br>
+ chunksize=1000, resumable=True)<br>
+ request = service.objects().insert(<br>
+ bucket=buckets['items'][0]['id'],<br>
+ name='smiley.png',<br>
+ media_body=media)<br>
+ <br>
+ response = None<br>
+ while response is None:<br>
+ status, response = request.<a href="#HttpRequest-next_chunk">next_chunk</a>()<br>
+ if status:<br>
+ print "Upload %d%% complete." % int(status.progress() * 100)<br>
+ <br>
+ <br>
+Returns:<br>
+ (status, body): (ResumableMediaStatus, <a href="__builtin__.html#object">object</a>)<br>
+ The body will be None until the resumable media is fully uploaded.</tt></dd></dl>
+
+<dl><dt><a name="HttpRequest-to_json"><strong>to_json</strong></a>(self)</dt><dd><tt>Returns a JSON representation of the <a href="#HttpRequest">HttpRequest</a>.</tt></dd></dl>
+
+<hr>
+Static methods defined here:<br>
+<dl><dt><a name="HttpRequest-from_json"><strong>from_json</strong></a>(s, http, postproc)</dt><dd><tt>Returns an <a href="#HttpRequest">HttpRequest</a> populated with info from a JSON <a href="__builtin__.html#object">object</a>.</tt></dd></dl>
+
<hr>
Data descriptors defined here:<br>
<dl><dt><strong>__dict__</strong></dt>
@@ -111,14 +151,14 @@
apiclient.discovery.build("plus", "v1", requestBuilder=requestBuilder)<br>
<br>
Methods that you do not supply a response for will return a<br>
-200 OK with an empty string as the response content or raise an excpetion if<br>
-check_unexpected is set to True. The methodId is taken from the rpcName<br>
+200 OK with an empty string as the response content or raise an excpetion<br>
+if check_unexpected is set to True. The methodId is taken from the rpcName<br>
in the discovery document.<br>
<br>
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, 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>
+<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>, resumable<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>