Fixed URLs to new documentation (under github domain)

This commit is contained in:
jorge@miv.uk.com 2012-09-17 19:37:54 +01:00
parent 94bbe4c1e8
commit d2077e5609

View file

@ -30,32 +30,32 @@ AFNetworking is architected to be as small and modular as possible, in order to
<table> <table>
<tr><th colspan="2" style="text-align:center;">Core</th></tr> <tr><th colspan="2" style="text-align:center;">Core</th></tr>
<tr> <tr>
<td><a href="http://afnetworking.org/Documentation/Classes/AFURLConnectionOperation.html">AFURLConnectionOperation</a></td> <td><a href="http://afnetworking.github.com/AFNetworking/Classes/AFURLConnectionOperation.html">AFURLConnectionOperation</a></td>
<td>An <tt>NSOperation</tt> that implements the <tt>NSURLConnection</tt> delegate methods.</td> <td>An <tt>NSOperation</tt> that implements the <tt>NSURLConnection</tt> delegate methods.</td>
</tr> </tr>
<tr><th colspan="2" style="text-align:center;">HTTP Requests</th></tr> <tr><th colspan="2" style="text-align:center;">HTTP Requests</th></tr>
<tr> <tr>
<td><a href="http://afnetworking.org/Documentation/Classes/AFHTTPRequestOperation.html">AFHTTPRequestOperation</a></td> <td><a href="http://afnetworking.github.com/AFNetworking/Classes/AFHTTPRequestOperation.html">AFHTTPRequestOperation</a></td>
<td>A subclass of <tt>AFURLConnectionOperation</tt> for requests using the HTTP or HTTPS protocols. It encapsulates the concept of acceptable status codes and content types, which determine the success or failure of a request.</td> <td>A subclass of <tt>AFURLConnectionOperation</tt> for requests using the HTTP or HTTPS protocols. It encapsulates the concept of acceptable status codes and content types, which determine the success or failure of a request.</td>
</tr> </tr>
<tr> <tr>
<td><a href="http://afnetworking.org/Documentation/Classes/AFJSONRequestOperation.html">AFJSONRequestOperation</a></td> <td><a href="http://afnetworking.github.com/AFNetworking/Classes/AFJSONRequestOperation.html">AFJSONRequestOperation</a></td>
<td>A subclass of <tt>AFHTTPRequestOperation</tt> for downloading and working with JSON response data.</td> <td>A subclass of <tt>AFHTTPRequestOperation</tt> for downloading and working with JSON response data.</td>
</tr> </tr>
<tr> <tr>
<td><a href="http://afnetworking.org/Documentation/Classes/AFXMLRequestOperation.html">AFXMLRequestOperation</a></td> <td><a href="http://afnetworking.github.com/AFNetworking/Classes/AFXMLRequestOperation.html">AFXMLRequestOperation</a></td>
<td>A subclass of <tt>AFHTTPRequestOperation</tt> for downloading and working with XML response data.</td> <td>A subclass of <tt>AFHTTPRequestOperation</tt> for downloading and working with XML response data.</td>
</tr> </tr>
<tr> <tr>
<td><a href="http://afnetworking.org/Documentation/Classes/AFPropertyListRequestOperation.html">AFPropertyListRequestOperation</a></td> <td><a href="http://afnetworking.github.com/AFNetworking/Classes/AFPropertyListRequestOperation.html">AFPropertyListRequestOperation</a></td>
<td>A subclass of <tt>AFHTTPRequestOperation</tt> for downloading and deserializing objects with <a href="http://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/PropertyLists/index.html">property list</a> response data.</td> <td>A subclass of <tt>AFHTTPRequestOperation</tt> for downloading and deserializing objects with <a href="http://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/PropertyLists/index.html">property list</a> response data.</td>
</tr> </tr>
<tr><th colspan="2" style="text-align:center;">HTTP Client</th></tr> <tr><th colspan="2" style="text-align:center;">HTTP Client</th></tr>
<tr> <tr>
<td><a href="http://afnetworking.org/Documentation/Classes/AFHTTPClient.html">AFHTTPClient</a></td> <td><a href="http://afnetworking.github.com/AFNetworking/Classes/AFHTTPClient.html">AFHTTPClient</a></td>
<td> <td>
Captures the common patterns of communicating with an web application over HTTP, including: Captures the common patterns of communicating with an web application over HTTP, including:
@ -74,11 +74,11 @@ AFNetworking is architected to be as small and modular as possible, in order to
<tr><th colspan="2" style="text-align:center;">Images</th></tr> <tr><th colspan="2" style="text-align:center;">Images</th></tr>
<tr> <tr>
<td><a href="http://afnetworking.org/Documentation/Classes/AFImageRequestOperation.html">AFImageRequestOperation</a></td> <td><a href="http://afnetworking.github.com/AFNetworking/Classes/AFImageRequestOperation.html">AFImageRequestOperation</a></td>
<td>A subclass of <tt>AFHTTPRequestOperation</tt> for downloading and processing images.</td> <td>A subclass of <tt>AFHTTPRequestOperation</tt> for downloading and processing images.</td>
</tr> </tr>
<tr> <tr>
<td><a href="http://afnetworking.org/Documentation/Categories/UIImageView+AFNetworking.html">UIImageView+AFNetworking</a></td> <td><a href="http://afnetworking.github.com/AFNetworking/Categories/UIImageView+AFNetworking.html">UIImageView+AFNetworking</a></td>
<td>Adds methods to <tt>UIImageView</tt> for loading remote images asynchronously from a URL.</td> <td>Adds methods to <tt>UIImageView</tt> for loading remote images asynchronously from a URL.</td>
</tr> </tr>
</table> </table>