Documented changes in fixing bug 1597381 Map exceptions to status codes
diff --git a/ref/httplib2-example.html b/ref/httplib2-example.html
index 6e6e5c0..1b245a1 100644
--- a/ref/httplib2-example.html
+++ b/ref/httplib2-example.html
@@ -106,6 +106,22 @@
</pre></div>
<P>
+Here is an example of providing data to an HTML form processor.
+In this case we presume this is a POST form. We need to take our
+data and format it as "application/x-www-form-urlencoded" data and use that as a
+body for a POST request.
+
+<P>
+<div class="verbatim"><pre>
+>>> import httplib2
+>>> import urllib
+>>> data = {'name': 'fred', 'address': '123 shady lane'}
+>>> body = urllib.urlencode(data)
+>>> body
+'name=fred&address=123+shady+lane'
+>>> h = httplib2.Http()
+>>> resp, content = h.request("http://example.com", method="POST", body=body)
+</pre></div>
<P>
<IMG
@@ -150,7 +166,7 @@
</div>
</div>
<hr />
-<span class="release-info">Release 0.2, documentation updated on July 2, 2006.</span>
+<span class="release-info">Release 0.3, documentation updated on Mar 8, 2007.</span>
</DIV>
<!--End of Navigation Panel-->