mine/kitsu-http.git
2011-10-31 Alexey BorzenkovUpdate version to 0.0.6 master
2011-10-31 Alexey BorzenkovMake kitsu.http a namespace package as well
2011-10-31 Alexey BorzenkovUpdate code to use kitsu.http.client
2011-10-31 Alexey Borzenkovkitsu.http.client: renamed from kitsu.http.sockets
2011-10-31 Alexey Borzenkovkitsu.http.sockets: remove ssl from sys.modules in...
2011-10-31 Alexey Borzenkovkitsu.http.sockets: make HTTPProxyClient a better socke...
2011-09-01 Alexey BorzenkovDon't fail on multiple Content-Length headers
2011-06-25 Alexey BorzenkovUpdate version to 0.0.4
2011-06-25 Alexey BorzenkovRespect request headers, but blacklist some of them...
2011-06-25 Alexey BorzenkovDon't expose header instances, only their names
2011-06-25 Alexey BorzenkovOn redirects switch to GET method and add referer
2011-03-04 Alexey Borzenkovtests/test_sockets.py: fix a weird symbol near the end
2011-03-03 Alexey BorzenkovUpdate version to 0.0.3
2011-03-03 Alexey BorzenkovAdd scripts to run setup.py with monkey patches from...
2011-03-03 Alexey BorzenkovFix eventlet-related bug with requesting secure urls...
2010-12-12 Alexey BorzenkovAdd examples/proxy-example.py
2010-12-12 Alexey BorzenkovChange version and description
2010-12-12 Alexey BorzenkovMake sure Headers keys and values are strings, add...
2010-12-12 Alexey BorzenkovRemove old twisted code
2010-12-12 Alexey BorzenkovAvoid importing anything inside of functions
2010-09-16 Alexey BorzenkovMake kitsu namespace package the way setuptools recommends
2010-09-15 Alexey BorzenkovAdd some very simple tests for Agent
2010-09-15 Alexey BorzenkovAdd url and urlchain to responses in Agent.makeRequest
2010-09-15 Alexey BorzenkovRename create_connection to create_socket. Make connect...
2010-09-15 Alexey BorzenkovGet rid of wrappers for gethostbyname and gethostbyaddr
2010-09-14 Alexey BorzenkovRename Client to HTTPClient and HTTPSProxyClient to...
2010-09-14 Alexey BorzenkovMove __all__ to top everywhere
2010-09-14 Alexey BorzenkovAllow Headers to be used as weakref
2010-09-14 Alexey BorzenkovGet rid of unnecessary __slots__
2010-09-13 Alexey BorzenkovAdd Connector to __all__
2010-09-13 Alexey BorzenkovBetter mimic socket behavior in HTTPSProxyClient
2010-09-13 Alexey BorzenkovAdd Connector class for connecting via http proxies
2010-09-13 Alexey BorzenkovFix HTTPSProxyClient
2010-09-13 Alexey BorzenkovInclude failing lines when parsing Request and Response
2010-09-13 Alexey Borzenkovkitsu.http.sockets: fix some typos
2010-09-13 Alexey BorzenkovAdd kitsu.http to packages and mark it zip_safe
2010-09-13 Alexey BorzenkovDon't pollute kitsu namespace with symbols
2010-09-11 Alexey BorzenkovProcess redirects
2010-09-11 Alexey BorzenkovUse default agent headers
2010-09-11 Alexey BorzenkovProcess keepalive and close client when needed
2010-09-11 Alexey BorzenkovAllow using None values to remove headers
2010-09-11 Alexey BorzenkovClose client in agent when request fails
2010-09-11 Alexey BorzenkovDon't keep function references as method defaults
2010-09-08 Alexey BorzenkovWork around some bugs with ssl timeouts not working
2010-09-08 Alexey BorzenkovPartial implementation of Agent for sockets
2010-09-08 Alexey BorzenkovChange the way Client's sizelimit is enforced
2010-09-08 Alexey BorzenkovMake sure to escape any whitespace in request target
2010-09-07 Alexey Borzenkovsockets.py: add total size limit
2010-09-06 Alexey Borzenkovtest_sockets: make Server threads shutdown properly
2010-09-06 Alexey BorzenkovAdd more .gitignore's
2010-09-06 Alexey BorzenkovAdd stub setup.py and README files
2010-09-06 Alexey BorzenkovMake test_sockets a proper test case
2010-09-06 Alexey BorzenkovRename kitsu.http.agent to kitsu.http.sockets
2010-09-06 Alexey BorzenkovMake socket and data detachable from Client
2010-09-06 Alexey BorzenkovBetter http exceptions
2010-09-06 Alexey BorzenkovStart reimplementing with both Twisted and sockets...
2010-06-15 Alexey BorzenkovMake sure there are no circular references in TunnelPro...
2010-06-15 Alexey BorzenkovFix a typo in TunnelProtocol
2010-06-15 Alexey BorzenkovClear all members in TunnelFactory after connection
2010-06-15 Alexey BorzenkovProcess tunnel responses earlier
2010-06-12 Alexey BorzenkovDon't overwrite Host if it is specified in headers
2010-05-24 Alexey Borzenkov_parseProxy shouldn't fail if there is no proxy
2010-05-16 Alexey BorzenkovAdd TunnelCreator class and example
2010-05-16 Alexey BorzenkovGet rid of 'HTTP' prefixes in class names
2010-05-16 Alexey BorzenkovSay "in progress" instead of "is pending"
2010-05-16 Alexey BorzenkovSplit proxy parsing into _parseProxy function
2010-05-16 Alexey BorzenkovFixed: buffer was always empty at response time
2010-05-16 Alexey BorzenkovMove stuff around a little
2010-05-11 Alexey BorzenkovSuccessful response should include a url
2010-05-11 Alexey BorzenkovMake it possible to limit response body size
2010-05-11 Alexey BorzenkovAlways specify Content-Length for non-GET requests
2010-05-11 Alexey BorzenkovHard dependency on ssl is not needed here
2010-05-10 Alexey BorzenkovAdded two usage examples
2010-05-10 Alexey BorzenkovMore features and cleanup
2010-05-10 Alexey BorzenkovGet rid of unnecessary imports/exports and errors
2010-05-10 Alexey BorzenkovGet rid of HTTPClient.state, we don't need it
2010-05-10 Alexey BorzenkovHTTPAgent.makeRequest should always return Deferred
2010-05-10 Alexey BorzenkovEnsure there's no buffered data before starting TLS
2010-05-10 Alexey BorzenkovRename kitsu/http.py to kitsu_http.py
2010-05-10 Alexey BorzenkovAdd LICENSE information
2010-05-10 Alexey BorzenkovImplement HTTPS proxies, redirects, etc
2010-05-09 Alexey BorzenkovAdd .gitignore
2010-05-09 Alexey BorzenkovAdd a very simplistic http agent
2010-05-09 Alexey BorzenkovGet rid of unnecessary callbacks for parsers and implem...
2010-05-09 Alexey BorzenkovSome more work with headers
2010-05-08 Alexey Borzenkovinitial protocol implementation