config update
authorKenneth Reitz <me@kennethreitz.com>
Mon, 16 May 2011 02:58:17 +0000 (22:58 -0400)
committerKenneth Reitz <me@kennethreitz.com>
Mon, 16 May 2011 02:58:17 +0000 (22:58 -0400)
docs/conf.py
docs/index.rst

index 11d8b99..a2f5d9d 100644 (file)
@@ -43,7 +43,7 @@ master_doc = 'index'
 
 # General information about the project.
 project = u'Requests'
-copyright = u'2011, Kenneth Reitz'
+copyright = u'2011. A Kenneth Reitz Project'
 
 # The version info for the project you're documenting, acts as replacement for
 # |version| and |release|, also used in various other places throughout the
@@ -149,10 +149,10 @@ html_static_path = ['_static']
 #html_split_index = False
 
 # If true, links to the reST sources are added to the pages.
-#html_show_sourcelink = True
+html_show_sourcelink = True
 
 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
-#html_show_sphinx = True
+html_show_sphinx = False
 
 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
 #html_show_copyright = True
index 06ca29e..16e83f2 100644 (file)
@@ -13,7 +13,7 @@ Requests is an :ref:`ISC Licensed <isc>` HTTP library, written in Python, for hu
 Most existing Python modules for sending HTTP requests are extremely verbose
 and cumbersome. Python's builtin :py:class:`urllib2 <library.urllib2>` module provides most of
 the HTTP capabilities you should need, but the api is thoroughly **broken**.
-It reqires an *enormous* amount of work (even method overrides) to perform the simplest of tasks.
+It requires an *enormous* amount of work (even method overrides) to perform the simplest of tasks.
 
 Things shouldn’t be this way. Not in Python.