Revision cc176feb asi-http-request-with-pithos/Classes/ASIWebPageRequest/ASIWebPageRequest.h

b/asi-http-request-with-pithos/Classes/ASIWebPageRequest/ASIWebPageRequest.h
11 11
//  Known issue: You cannot use startSychronous with an ASIWebPageRequest
12 12

  
13 13
#import "ASIHTTPRequest.h"
14
#import <libxml/HTMLparser.h>
15
#import <libxml/xmlsave.h>
16
#import <libxml/xpath.h>
17
#import <libxml/xpathInternals.h>
18 14

  
19 15
@class ASINetworkQueue;
20 16

  
......
52 48
	NSMutableDictionary *resourceList;
53 49

  
54 50
	// Used internally for parsing HTML (with libxml)
55
	xmlDocPtr doc;
51
	struct _xmlDoc *doc;
56 52

  
57 53
	// If the response is an HTML or CSS file, this will be set so the content can be correctly parsed when it has finished fetching external resources
58 54
	ASIWebContentType webContentType;
......
64 60

  
65 61
	// Controls what ASIWebPageRequest does with external resources. See the notes above for more.
66 62
	ASIURLReplacementMode urlReplacementMode;
63

  
64
	// When set to NO, loading will stop when an external resource fails to load. Defaults to YES
65
	BOOL shouldIgnoreExternalResourceErrors;
67 66
}
68 67

  
69 68
// Will return a data URI that contains a base64 version of the content at this url
......
77 76

  
78 77
@property (retain, nonatomic) ASIWebPageRequest *parentRequest;
79 78
@property (assign, nonatomic) ASIURLReplacementMode urlReplacementMode;
79
@property (assign, nonatomic) BOOL shouldIgnoreExternalResourceErrors;
80 80
@end

Also available in: Unified diff