diff --git a/docs/build.sh b/docs/build.sh index e01c9e5..1c21da1 100755 --- a/docs/build.sh +++ b/docs/build.sh @@ -14,4 +14,6 @@ export DJANGO_SETTINGS_MODULE=fakesettings export PYTHONPATH=`pwd`/..:$GOOGLE_APPENGINE find ../apiclient/ -name "*.py" | sed "s/\/__init__.py//" | sed "s/\.py//" | sed "s/^\.\.\///" | sed "s#/#.#g" | xargs pydoc -w find ../oauth2client/ -name "*.py" | sed "s/\/__init__.py//" | sed "s/\.py//" | sed "s/^\.\.\///" | sed "s#/#.#g" | xargs pydoc -w +find ../httplib2/ -name "*.py" | sed "s/\/__init__.py//" | sed "s/\.py//" | sed "s/^\.\.\///" | sed "s#/#.#g" | xargs pydoc -w +find ../uritemplate/ -name "*.py" | sed "s/\/__init__.py//" | sed "s/\.py//" | sed "s/^\.\.\///" | sed "s#/#.#g" | xargs pydoc -w diff --git a/docs/httplib2.html b/docs/httplib2.html new file mode 100644 index 0000000..2f0d15a --- /dev/null +++ b/docs/httplib2.html @@ -0,0 +1,711 @@ + + +
| + httplib2 (version $Rev$) | index /home/jcgregorio/projects/apiary/httplib2/__init__.py |
+
| +Package Contents | ||||||
| + |
| |||||
+
| +Classes | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| + |
+
+
+
+
+
+
+
+
+
+
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
+
| +Data | ||
| + | __all__ = ['Http', 'Response', 'ProxyInfo', 'HttpLib2Error', 'RedirectMissingLocation', 'RedirectLimit', 'FailedToDecompressContent', 'UnimplementedDigestAuthOptionError', 'UnimplementedHmacDigestAuthOptionError', 'debuglevel', 'ProxiesUnavailableError'] +__author__ = 'Joe Gregorio (joe@bitworking.org)' +__contributors__ = ['Thomas Broyer (t.broyer@ltgt.net)', 'James Antill', 'Xavier Verges Farrero', 'Jonathan Feinberg', 'Blair Zajac', 'Sam Ruby', 'Louis Nyffenegger'] +__copyright__ = 'Copyright 2006, Joe Gregorio' +__license__ = 'MIT' +__version__ = '$Rev$' +debuglevel = 0 | |
+
| +Author | ||
| + | Joe Gregorio (joe@bitworking.org) | |
| + httplib2.socks | index /home/jcgregorio/projects/apiary/httplib2/socks.py |
SocksiPy - Python SOCKS module.
+Version 1.00
+
+Copyright 2006 Dan-Haim. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+1. Redistributions of source code must retain the above copyright notice, this
+ list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+3. Neither the name of Dan Haim nor the names of his contributors may be used
+ to endorse or promote products derived from this software without specific
+ prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY DAN HAIM "AS IS" AND ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+EVENT SHALL DAN HAIM OR HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA
+OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+This module provides a standard socket-like interface for Python
+for tunneling connections through SOCKS proxies.
+
| +Modules | ||||||
| + |
| |||||
+
| +Classes | ||||||||||||||||||||||||||||||||||||||||||||||
| + |
+
+
+
+
+
+
+
| |||||||||||||||||||||||||||||||||||||||||||||
+
| +Functions | ||
| + |
| |
+
| +Data | ||
| + | PROXY_TYPE_HTTP = 3 +PROXY_TYPE_SOCKS4 = 1 +PROXY_TYPE_SOCKS5 = 2 | |
| + uritemplate | index /home/jcgregorio/projects/apiary/uritemplate/__init__.py |
# Early, and incomplete implementation of -04.
+#
+
| +Package Contents | ||||||
| + | ||||||
+
| +Functions | ||
| + |
| |
+
| +Data | ||
| + | EXPLODE = '*+' +MODIFIER = ':^' +OPERATOR = '+./;?|!@' +RESERVED = ":/?#[]@!$&'()*+,;=" +TEMPLATE = <_sre.SRE_Pattern object> +TOSTRING = {'': <function _tostring>, '+': <function _tostring>, '.': <function _tostring_path>, '/': <function _tostring_path>, ';': <function _tostring_query>, '?': <function _tostring_query>} +VAR = <_sre.SRE_Pattern object> | |