Ben Copsey

Update readme

Remove debugging NSLog call
@@ -778,7 +778,6 @@ static NSError *ASIUnableToCreateRequestError; @@ -778,7 +778,6 @@ static NSError *ASIUnableToCreateRequestError;
778 778
779 if ([charsetScanner scanUpToString: charsetSeparator intoString: NULL] && [charsetScanner scanLocation] < [contentType length]) 779 if ([charsetScanner scanUpToString: charsetSeparator intoString: NULL] && [charsetScanner scanLocation] < [contentType length])
780 { 780 {
781 - NSLog(@"%hi %hi",[charsetScanner scanLocation],[charsetSeparator length]);  
782 [charsetScanner setScanLocation: [charsetScanner scanLocation] + [charsetSeparator length]]; 781 [charsetScanner setScanLocation: [charsetScanner scanLocation] + [charsetSeparator length]];
783 [charsetScanner scanUpToString: @";" intoString: &IANAEncoding]; 782 [charsetScanner scanUpToString: @";" intoString: &IANAEncoding];
784 } 783 }
@@ -4,13 +4,14 @@ It is suitable performing basic HTTP requests and interacting with REST-based se @@ -4,13 +4,14 @@ It is suitable performing basic HTTP requests and interacting with REST-based se
4 4
5 It provides: 5 It provides:
6 * A straightforward interface for submitting data to and fetching data from webservers 6 * A straightforward interface for submitting data to and fetching data from webservers
7 -* Download data to memory or directly to a file on disk(i) 7 +* Download data to memory or directly to a file on disk
8 * The ability to submit files on local drives as part of POST data, compatible with the HTML file input mechanism 8 * The ability to submit files on local drives as part of POST data, compatible with the HTML file input mechanism
9 * Easy access to request and response HTTP headers 9 * Easy access to request and response HTTP headers
10 * Progress delegates (NSProgressIndicators and UIProgressViews) to show information about download AND upload progress 10 * Progress delegates (NSProgressIndicators and UIProgressViews) to show information about download AND upload progress
11 * Auto-magic management of upload and download progress indicators for operation queues 11 * Auto-magic management of upload and download progress indicators for operation queues
12 * Basic + Digest authentication support, credentials are automatically re-used for the duration of a session, and can be stored for later in the Keychain. 12 * Basic + Digest authentication support, credentials are automatically re-used for the duration of a session, and can be stored for later in the Keychain.
13 * Cookie support 13 * Cookie support
  14 +* GZIP support for response data
14 * Based on NSOperation to make queuing requests and background operation easy 15 * Based on NSOperation to make queuing requests and background operation easy
15 * Basic unit tests (more to come!) 16 * Basic unit tests (more to come!)
16 17