Updated docs for 'follow_redirects'
diff --git a/ref/httplib2-example.html b/ref/httplib2-example.html
index 1b245a1..0543074 100644
--- a/ref/httplib2-example.html
+++ b/ref/httplib2-example.html
@@ -9,27 +9,28 @@
 <link rel="prev" href="response-objects.html" />
 <link rel="parent" href="module-httplib2.html" />
 <link rel="next" href="about.html" />
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <meta name='aesop' content='information' />
 <title>1.1.4 Examples </title>
 </head>
 <body>
-<DIV CLASS="navigation">
+<div class="navigation">
 <div id='top-navigation-panel' xml:id='top-navigation-panel'>
 <table align="center" width="100%" cellpadding="0" cellspacing="2">
 <tr>
-<td class='online-navigation'><a rel="prev" title="1.1.3 Response Objects"
+<td class='online-navigation'><a rel="prev" title="1.1.3 response Objects"
   href="response-objects.html"><img src='previous.png'
-  border='0' height='32'  alt='Previous Page' width='32' /></A></td>
+  border='0' height='32'  alt='Previous Page' width='32' /></a></td>
 <td class='online-navigation'><a rel="parent" title="1.1 httplib2 A comprehensive"
   href="module-httplib2.html"><img src='up.png'
-  border='0' height='32'  alt='Up One Level' width='32' /></A></td>
+  border='0' height='32'  alt='Up one Level' width='32' /></a></td>
 <td class='online-navigation'><a rel="next" title="About this document ..."
   href="about.html"><img src='next.png'
-  border='0' height='32'  alt='Next Page' width='32' /></A></td>
+  border='0' height='32'  alt='Next Page' width='32' /></a></td>
 <td align="center" width="100%">The httplib2 Library</td>
 <td class='online-navigation'><a rel="contents" title="Table of Contents"
   href="contents.html"><img src='contents.png'
-  border='0' height='32'  alt='Contents' width='32' /></A></td>
+  border='0' height='32'  alt='Contents' width='32' /></a></td>
 <td class='online-navigation'><img src='blank.png'
   border='0' height='32'  alt='' width='32' /></td>
 <td class='online-navigation'><img src='blank.png'
@@ -37,26 +38,26 @@
 </tr></table>
 <div class='online-navigation'>
 <b class="navlabel">Previous:</b>
-<a class="sectref" rel="prev" href="response-objects.html">1.1.3 Response Objects</A>
+<a class="sectref" rel="prev" href="response-objects.html">1.1.3 Response Objects</a>
 <b class="navlabel">Up:</b>
-<a class="sectref" rel="parent" href="module-httplib2.html">1.1 httplib2 A comprehensive</A>
+<a class="sectref" rel="parent" href="module-httplib2.html">1.1 httplib2 A comprehensive</a>
 <b class="navlabel">Next:</b>
-<a class="sectref" rel="next" href="about.html">About this document ...</A>
+<a class="sectref" rel="next" href="about.html">About this document ...</a>
 </div>
 <hr /></div>
-</DIV>
+</div>
 <!--End of Navigation Panel-->
 
-<H2><A NAME="SECTION002140000000000000000"></A><A NAME="httplib2-example"></A>
-<BR>
+<h2><a name="SECTION002140000000000000000"></a><a name="httplib2-example"></a>
+<br>
 1.1.4 Examples 
-</H2>
+</h2>
 
-<P>
+<p>
 To do a simple <code>GET</code> request just supply the absolute URI
 of the resource:
 
-<P>
+<p>
 <div class="verbatim"><pre>
 import httplib2
 h = httplib2.Http()
@@ -65,13 +66,13 @@
 assert resp['content-type'] == 'text/html'
 </pre></div>
 
-<P>
+<p>
 Here is more complex example that does a PUT 
 of some text to a resource that requires authentication.
 The Http instance also uses a file cache
 in the directory <code>.cache</code>. 
 
-<P>
+<p>
 <div class="verbatim"><pre>
 import httplib2
 h = httplib2.Http(".cache")
@@ -81,11 +82,11 @@
     headers={'content-type':'text/plain'} )
 </pre></div>
 
-<P>
+<p>
 Here is an example that connects to a server that 
 supports the Atom Publishing Protocol.
 
-<P>
+<p>
 <div class="verbatim"><pre>
 import httplib2
 h = httplib2.Http()
@@ -105,13 +106,13 @@
 resp, content = h.request(uri, "POST", body=body, headers=headers)
 </pre></div>
 
-<P>
+<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>
+<p>
 <div class="verbatim"><pre>
 &gt;&gt;&gt; import httplib2
 &gt;&gt;&gt; import urllib
@@ -123,34 +124,34 @@
 &gt;&gt;&gt; resp, content = h.request("http://example.com", method="POST", body=body)
 </pre></div>
 
-<P>
+<p>
 <IMG
  WIDTH="556" HEIGHT="20" ALIGN="BOTTOM" BORDER="0"
  SRC="img1.png"
  ALT="\begin{center}\vbox{\input{modref.ind}
 }\end{center}">     
-<P>
+<p>
         
-<P>
+<p>
 
-<DIV CLASS="navigation">
+<div class="navigation">
 <div class='online-navigation'>
 <p></p><hr />
 <table align="center" width="100%" cellpadding="0" cellspacing="2">
 <tr>
-<td class='online-navigation'><a rel="prev" title="1.1.3 Response Objects"
+<td class='online-navigation'><a rel="prev" title="1.1.3 response Objects"
   href="response-objects.html"><img src='previous.png'
-  border='0' height='32'  alt='Previous Page' width='32' /></A></td>
+  border='0' height='32'  alt='Previous Page' width='32' /></a></td>
 <td class='online-navigation'><a rel="parent" title="1.1 httplib2 A comprehensive"
   href="module-httplib2.html"><img src='up.png'
-  border='0' height='32'  alt='Up One Level' width='32' /></A></td>
+  border='0' height='32'  alt='Up one Level' width='32' /></a></td>
 <td class='online-navigation'><a rel="next" title="About this document ..."
   href="about.html"><img src='next.png'
-  border='0' height='32'  alt='Next Page' width='32' /></A></td>
+  border='0' height='32'  alt='Next Page' width='32' /></a></td>
 <td align="center" width="100%">The httplib2 Library</td>
 <td class='online-navigation'><a rel="contents" title="Table of Contents"
   href="contents.html"><img src='contents.png'
-  border='0' height='32'  alt='Contents' width='32' /></A></td>
+  border='0' height='32'  alt='Contents' width='32' /></a></td>
 <td class='online-navigation'><img src='blank.png'
   border='0' height='32'  alt='' width='32' /></td>
 <td class='online-navigation'><img src='blank.png'
@@ -158,17 +159,17 @@
 </tr></table>
 <div class='online-navigation'>
 <b class="navlabel">Previous:</b>
-<a class="sectref" rel="prev" href="response-objects.html">1.1.3 Response Objects</A>
+<a class="sectref" rel="prev" href="response-objects.html">1.1.3 Response Objects</a>
 <b class="navlabel">Up:</b>
-<a class="sectref" rel="parent" href="module-httplib2.html">1.1 httplib2 A comprehensive</A>
+<a class="sectref" rel="parent" href="module-httplib2.html">1.1 httplib2 A comprehensive</a>
 <b class="navlabel">Next:</b>
-<a class="sectref" rel="next" href="about.html">About this document ...</A>
+<a class="sectref" rel="next" href="about.html">About this document ...</a>
 </div>
 </div>
 <hr />
 <span class="release-info">Release 0.3, documentation updated on Mar 8, 2007.</span>
-</DIV>
+</div>
 <!--End of Navigation Panel-->
 
-</BODY>
-</HTML>
+</body>
+</html>