- 15 May, 2011 2 commits
-
-
…celLoad if the whole download is complete * Also, don't clear responseHeaders in cancelLoad closes gh-182
Ben Copsey authored -
Ben Copsey authored
-
- 14 May, 2011 1 commit
-
-
* Tweak ouput from all debug options, adding a label to make debug output easier to scan * Tweak a couple of tests to make them more reliable
Ben Copsey authored
-
- 11 May, 2011 1 commit
-
-
Ben Copsey authored
-
- 08 May, 2011 3 commits
-
-
Ben Copsey authored
-
Ben Copsey authored
-
1) Fix a problem where a temporary request body would be discarded when retrying on a new connection 2) By default, all requests using POST, PUT or having a body at the time requestMethod is set will NOT use a persistent connection. You can override this by setting requestMethod manually, then setting shouldAttemptPersistentConnection to YES closes gh-94
Ben Copsey authored
-
- 07 May, 2011 6 commits
-
-
Ben Copsey authored
-
Ben Copsey authored
-
Ben Copsey authored
-
All requests now store a single expiry timestamp constructed from either secondsToCache, a cache-control: max-age header, or an expires header (in order of precedence) This is used for all expiry checks, and should speed up checking if cached data is stale because it elimiates the need for NSDateFormatter or NSScanner when reading from the cache (closes gh-173)
Ben Copsey authored
-
- 30 Apr, 2011 1 commit
-
-
Ben Copsey authored
-
- 11 Apr, 2011 12 commits
-
-
Ben Copsey authored
-
Ben Copsey authored
-
Ben Copsey authored
-
Arlo Borras authored
-
Jon Parise authored
-
Cédric Luthi authored
-
Ben Copsey authored
-
Many thanks to Garrett Bjerkhoel for the code and patience in getting this merged (I've slightly adapted his original take on this) Conflicts: Classes/ASIHTTPRequest.m
Ben Copsey authored
- 28 Mar, 2011 1 commit
-
-
Ben Copsey authored
-
- 04 Mar, 2011 1 commit
-
-
Ben Copsey authored
-
- 06 Feb, 2011 4 commits
-
-
…request, as long as you explictly set authenticationScheme to kCFHTTPAuthenticationSchemeBasic
Ben Copsey authored -
Ben Copsey authored
-
- 05 Feb, 2011 7 commits
-
-
Ben Copsey authored
-
* GHUnit is no longer included as a git submodule. Instead, build scripts are used to fetch a pre-compiled GHUnit framework if one does not exist in External/GHUnit. * iPhone sample has moved to using the framework rather than the static library for GHUnit * Fiddle with conditional compilation for NSXMLParserDelegate * Tweak the build phases to move running the scripts earlier * Fix a clang warning that crept in as part of the recent changes to behaviour for fetching PAC files * Remove legacy clang.sh script * Move build scripts into their own folder
Ben Copsey authored -
Ben Copsey authored
-
- 01 Feb, 2011 1 commit
-
-
Previously the loop terminated when the output buffer was not completely filled by the previous call. Most of the time this is correct, because if the output buffer was completely filled, there is probably more to come. However, in the situation that the output fits perfectly in the output buffer, the buffer will be completely filled, yet there is nothing left to process. In this case we would run through the loop again calling inflate() / deflate() which would return Z_BUF_ERROR. This would manifest itself as the request (needlessly) failing. Rather than this we should simply terminate the loop when there is no more input left to process. # Please enter the commit message for your changes. Lines starting # with '#' will be ignored, and an empty message aborts the commit. # # Committer: Alex Deem <alexdeem@Alex-MacBook-Pro.local> # # On branch master # Changes to be committed: # (use "git reset HEAD <file>..." to unstage) # # modified: Classes/ASIDataCompressor.m # modified: Classes/ASIDataDecompressor.m #
Alex Deem authored
-