pokeb

Update readme

1 -ASIHTTPRequest is an easy to use wrapper around the CFNetwork API that makes some of the more tedious aspects of communicating with web servers easier. It is written in Objective-C and works in both Mac OS X and iPhone applications. 1 +ASIHTTPRequest is an easy to use wrapper around the CFNetwork API that makes some of the more tedious aspects of communicating with web servers easier. It is written in Objective-C and works in both Mac OS X and iPhone applications.
2 - 2 +
3 -It is suitable performing basic HTTP requests and interacting with REST-based services (GET / POST / PUT / DELETE). The included ASIFormDataRequest subclass makes it easy to submit POST data and files using multipart/form-data. 3 +It is suitable performing basic HTTP requests and interacting with REST-based services (GET / POST / PUT / DELETE). The included ASIFormDataRequest subclass makes it easy to submit POST data and files using multipart/form-data.
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 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 +* 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 +* Stream request bodies directly from disk to the server, to conserve memory
10 -* Progress delegates (NSProgressIndicators and UIProgressViews) to show information about download AND upload progress 10 +* Resume for partial downloads
11 -* Auto-magic management of upload and download progress indicators for operation queues 11 +* Easy access to request and response HTTP headers
12 -* Basic, Digest + NTLM authentication support, credentials are automatically re-used for the duration of a session, and can be stored for later in the Keychain. 12 +* Progress delegates (NSProgressIndicators and UIProgressViews) to show information about download AND upload progress
13 -* Cookie support 13 +* Auto-magic management of upload and download progress indicators for operation queues
14 -* GZIP support for response data 14 +* Basic, Digest + NTLM authentication support, credentials are automatically re-used for the duration of a session, and can be stored for later in the Keychain.
15 -* Based on NSOperation to make queuing requests and background operation easy 15 +* Cookie support
16 -* Comes with a broad range of unit tests 16 +* GZIP support for response data
17 - 17 +* Based on NSOperation to make queuing requests and background operation easy
  18 +* Comes with a broad range of unit tests
  19 +
18 Documentation is available "here":http://allseeing-i.com/ASIHTTPRequest. 20 Documentation is available "here":http://allseeing-i.com/ASIHTTPRequest.