Toggle navigation
Toggle navigation
This project
Loading...
Sign in
iOS
/
asi-http-request
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Cédric Luthi
2011-05-19 09:48:00 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5936cdd22eb5ba2441d2bbfbcc15ea69ccd83e84
5936cdd2
1 parent
cf574d17
Tidy up
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
Classes/ASIWebPageRequest/ASIWebPageRequest.h
Classes/ASIWebPageRequest/ASIWebPageRequest.m
Classes/ASIWebPageRequest/ASIWebPageRequest.h
View file @
5936cdd
...
...
@@ -47,12 +47,12 @@ typedef enum _ASIURLReplacementMode {
// This dictionary stores a list of external resources to download, along with their content-type data or a path to the data
NSMutableDictionary
*
resourceList
;
// 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
ASIWebContentType
webContentType
;
// Used internally for parsing HTML (with libxml)
struct
_xmlDoc
*
doc
;
// 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
ASIWebContentType
webContentType
;
// Stores a reference to the ASIWebPageRequest that created this request
// Note that a parentRequest can also have a parent request because ASIWebPageRequests parse their contents to look for external resources recursively
// For example, a request for an image can be created by a request for a stylesheet which was created by a request for a web page
...
...
Classes/ASIWebPageRequest/ASIWebPageRequest.m
View file @
5936cdd
...
...
@@ -37,7 +37,6 @@ static NSMutableArray *requestsUsingXMLParser = nil;
@property
(
retain
,
nonatomic
)
ASINetworkQueue
*
externalResourceQueue
;
@property
(
retain
,
nonatomic
)
NSMutableDictionary
*
resourceList
;
@end
@implementation
ASIWebPageRequest
...
...
Please
register
or
login
to post a comment