Ben Copsey

Convert getters / setters to obj-c 2.0 properties

Stop retaining delegate
... ... @@ -109,14 +109,6 @@
#pragma mark delegate configuration
// Delegate will get messages when the request completes, fails or when authentication is required
- (void)setDelegate:(id)newDelegate;
// upload progress delegate (usually an NSProgressIndicator) is sent information on upload progress
- (void)setUploadProgressDelegate:(id)newDelegate;
// download progress delegate (usually an NSProgressIndicator) is sent information on download progress
- (void)setDownloadProgressDelegate:(id)newDelegate;
#pragma mark setup request
... ... @@ -132,32 +124,8 @@
// When set, username and password will be presented for HTTP authentication
- (void)setUsername:(NSString *)newUsername andPassword:(NSString *)newPassword;
// When true, authentication information will automatically be stored in (and re-used from) the keychain
- (void)setUsesKeychain:(BOOL)shouldUseKeychain;
//the results of this request will be saved to downloadDestinationPath, if it is set
- (void)setDownloadDestinationPath:(NSString *)newDestinationPath;
- (NSString *)downloadDestinationPath;
// This selector will be called on the delegate when the request completes successfully
- (void)setDidFinishSelector:(SEL)selector;
// This selector will be called on the delegate when the request fails
- (void)setDidFailSelector:(SEL)selector;
#pragma mark get information about this request
// Accessors for getting information about the request (useful for auth dialogs)
- (NSString *)authenticationRealm;
- (NSString *)host;
// Contains a description of the error that occurred if the request failed
- (NSError *)error;
- (void)setError:(NSError *)newError;
// Will be true when the request is complete (success or failure)
- (BOOL)complete;
- (BOOL)isFinished; //Same thing, for NSOperationQueues to read
// Get total amount of data received so far for this request
... ... @@ -230,12 +198,17 @@
+ (void)removeCredentialsForHost:(NSString *)host port:(int)port protocol:(NSString *)protocol realm:(NSString *)realm;
@property (retain,readonly) NSURL *url;
@property (assign) id delegate;
@property (assign) NSObject *uploadProgressDelegate;
@property (assign) NSObject *downloadProgressDelegate;
@property (assign) BOOL usesKeychain;
@property (retain) NSString *downloadDestinationPath;
@property (assign) SEL didFinishSelector;
@property (assign) SEL didFailSelector;
@property (retain,readonly) NSString *authenticationRealm;
@property (retain) NSError *error;
@property (assign,readonly) BOOL complete;
@end
... ...
... ... @@ -25,8 +25,12 @@ static void ReadStreamClientCallBack(CFReadStreamRef readStream, CFStreamEventTy
}
@implementation ASIHTTPRequest
#pragma mark init / dealloc
- (id)initWithURL:(NSURL *)newURL
... ... @@ -51,6 +55,7 @@ static void ReadStreamClientCallBack(CFReadStreamRef readStream, CFStreamEventTy
usesKeychain = NO;
didFinishSelector = @selector(requestFinished:);
didFailSelector = @selector(requestFailed:);
delegate = nil;
return self;
}
... ... @@ -67,9 +72,6 @@ static void ReadStreamClientCallBack(CFReadStreamRef readStream, CFStreamEventTy
}
[self cancelLoad];
[error release];
[delegate release];
[uploadProgressDelegate release];
[downloadProgressDelegate release];
[postData release];
[fileData release];
[requestHeaders release];
... ... @@ -83,26 +85,6 @@ static void ReadStreamClientCallBack(CFReadStreamRef readStream, CFStreamEventTy
[super dealloc];
}
#pragma mark delegate configuration
- (void)setDelegate:(id)newDelegate
{
[delegate release];
delegate = [newDelegate retain];
}
- (void)setUploadProgressDelegate:(id)newDelegate
{
[uploadProgressDelegate release];
uploadProgressDelegate = [newDelegate retain];
}
- (void)setDownloadProgressDelegate:(id)newDelegate
{
[downloadProgressDelegate release];
downloadProgressDelegate = [newDelegate retain];
}
#pragma mark setup request
... ... @@ -139,67 +121,10 @@ static void ReadStreamClientCallBack(CFReadStreamRef readStream, CFStreamEventTy
password = [newPassword retain];
}
- (void)setUsesKeychain:(BOOL)shouldUseKeychain
{
usesKeychain = shouldUseKeychain;
}
- (void)setDownloadDestinationPath:(NSString *)newDestinationPath
{
[downloadDestinationPath release];
downloadDestinationPath = [newDestinationPath retain];
}
- (NSString *)downloadDestinationPath
{
return downloadDestinationPath;
}
- (void)setDidFinishSelector:(SEL)selector
{
didFinishSelector = selector;
}
- (void)setDidFailSelector:(SEL)selector
{
didFinishSelector = selector;
}
#pragma mark get information about this request
- (NSString *)authenticationRealm
{
return authenticationRealm;
}
- (NSString *)host
{
return [url host];
}
- (NSError *)error
{
return error;
}
- (void)setError:(NSError *)newError
{
[error release];
error = [newError retain];
}
- (BOOL)complete
{
return complete;
}
- (BOOL)isFinished
{
return complete;
... ... @@ -216,8 +141,7 @@ static void ReadStreamClientCallBack(CFReadStreamRef readStream, CFStreamEventTy
if (!receivedData) {
return nil;
}
NSString *theData = [[[NSString alloc] initWithBytes:[(NSData *)receivedData bytes] length:[(NSData *)receivedData length] encoding:NSUTF8StringEncoding] autorelease];
return theData;
return [[[NSString alloc] initWithBytes:[(NSData *)receivedData bytes] length:[(NSData *)receivedData length] encoding:NSUTF8StringEncoding] autorelease];
}
... ... @@ -451,10 +375,10 @@ static void ReadStreamClientCallBack(CFReadStreamRef readStream, CFStreamEventTy
{
complete = YES;
if (!error) {
error = [[NSError errorWithDomain:NetworkRequestErrorDomain
[self setError:[NSError errorWithDomain:NetworkRequestErrorDomain
code:1
userInfo:[NSDictionary dictionaryWithObjectsAndKeys:@"An error occurred",@"Title",
problem,@"Description",nil]] retain];
problem,@"Description",nil]]];
NSLog(problem);
if (didFailSelector && ![self isCancelled] && [delegate respondsToSelector:didFailSelector]) {
... ... @@ -801,6 +725,16 @@ static void ReadStreamClientCallBack(CFReadStreamRef readStream, CFStreamEventTy
}
@synthesize url;
@synthesize delegate;
@synthesize uploadProgressDelegate;
@synthesize downloadProgressDelegate;
@synthesize usesKeychain;
@synthesize downloadDestinationPath;
@synthesize didFinishSelector;
@synthesize didFailSelector;
@synthesize authenticationRealm;
@synthesize error;
@synthesize complete;
@end
... ...
... ... @@ -131,7 +131,7 @@
- (void)authorizationNeededForRequest:(ASIHTTPRequest *)request
{
[realm setStringValue:[request authenticationRealm]];
[host setStringValue:[request host]];
[host setStringValue:[[request url] host]];
[NSApp beginSheet: loginWindow
modalForWindow: window
... ...
... ... @@ -231,8 +231,6 @@
<key>Layout</key>
<array>
<dict>
<key>BecomeActive</key>
<true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXBottomSmartGroupGIDs</key>
... ... @@ -282,7 +280,7 @@
</array>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
<string>{{0, 0}, {186, 915}}</string>
<string>{{0, 0}, {186, 760}}</string>
</dict>
<key>PBXTopSmartGroupGIDs</key>
<array/>
... ... @@ -294,14 +292,14 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 0}, {203, 933}}</string>
<string>{{0, 0}, {203, 778}}</string>
<key>GroupTreeTableConfiguration</key>
<array>
<string>MainColumn</string>
<real>186</real>
</array>
<key>RubberWindowFrame</key>
<string>239 171 1342 974 0 0 1920 1178 </string>
<string>243 359 1342 819 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXSmartGroupTreeModule</string>
... ... @@ -312,6 +310,8 @@
<key>Dock</key>
<array>
<dict>
<key>BecomeActive</key>
<true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
... ... @@ -329,16 +329,16 @@
<key>_historyCapacity</key>
<integer>0</integer>
<key>bookmark</key>
<string>B50FD72E0E3B87EE003CEB08</string>
<string>B5AACAC30E3F3DDC00064080</string>
<key>history</key>
<array>
<string>B513D3E90E2BD48A000A50C6</string>
<string>B513D3EA0E2BD48A000A50C6</string>
<string>B50FD6D80E3B7FFB003CEB08</string>
<string>B50FD6E50E3B809F003CEB08</string>
<string>B50FD7270E3B87EE003CEB08</string>
<string>B50FD7280E3B87EE003CEB08</string>
<string>B50FD7290E3B87EE003CEB08</string>
<string>B5AAC4CE0E3F1BEF00064080</string>
<string>B5AAC5460E3F1D8300064080</string>
<string>B5AACA810E3F3D3400064080</string>
<string>B5AACA820E3F3D3400064080</string>
<string>B5AACAC20E3F3DDC00064080</string>
</array>
<key>prevStack</key>
<array>
... ... @@ -349,38 +349,8 @@
<string>B5ABC8300E24CDE70072F422</string>
<string>B513D4020E2BD48A000A50C6</string>
<string>B513D4030E2BD48A000A50C6</string>
<string>B50FD6B80E3B7DAC003CEB08</string>
<string>B50FD6C40E3B7E7B003CEB08</string>
<string>B50FD6C50E3B7E7B003CEB08</string>
<string>B50FD6C60E3B7E7B003CEB08</string>
<string>B50FD6C70E3B7E7B003CEB08</string>
<string>B50FD6C80E3B7E7B003CEB08</string>
<string>B50FD6C90E3B7E7B003CEB08</string>
<string>B50FD6CA0E3B7E7B003CEB08</string>
<string>B50FD6CB0E3B7E7B003CEB08</string>
<string>B50FD6D30E3B7F49003CEB08</string>
<string>B50FD6D40E3B7F49003CEB08</string>
<string>B50FD6D50E3B7F49003CEB08</string>
<string>B50FD6D60E3B7F49003CEB08</string>
<string>B50FD6DC0E3B7FFB003CEB08</string>
<string>B50FD6DD0E3B7FFB003CEB08</string>
<string>B50FD6DE0E3B7FFB003CEB08</string>
<string>B50FD6DF0E3B7FFB003CEB08</string>
<string>B50FD6E00E3B7FFB003CEB08</string>
<string>B50FD6E10E3B7FFB003CEB08</string>
<string>B50FD6E20E3B7FFB003CEB08</string>
<string>B50FD6E30E3B7FFB003CEB08</string>
<string>B50FD6E80E3B809F003CEB08</string>
<string>B50FD6E90E3B809F003CEB08</string>
<string>B50FD6EA0E3B809F003CEB08</string>
<string>B50FD6EB0E3B809F003CEB08</string>
<string>B50FD7010E3B8143003CEB08</string>
<string>B50FD7180E3B86B4003CEB08</string>
<string>B50FD7190E3B86B4003CEB08</string>
<string>B50FD72A0E3B87EE003CEB08</string>
<string>B50FD72B0E3B87EE003CEB08</string>
<string>B50FD72C0E3B87EE003CEB08</string>
<string>B50FD72D0E3B87EE003CEB08</string>
<string>B5AACA830E3F3D3400064080</string>
<string>B5AACA840E3F3D3400064080</string>
</array>
</dict>
<key>SplitCount</key>
... ... @@ -392,14 +362,14 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 0}, {1134, 815}}</string>
<string>{{0, 0}, {1134, 679}}</string>
<key>RubberWindowFrame</key>
<string>239 171 1342 974 0 0 1920 1178 </string>
<string>243 359 1342 819 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
<key>Proportion</key>
<string>815pt</string>
<string>679pt</string>
</dict>
<dict>
<key>ContentConfiguration</key>
... ... @@ -412,14 +382,14 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 820}, {1134, 113}}</string>
<string>{{0, 684}, {1134, 94}}</string>
<key>RubberWindowFrame</key>
<string>239 171 1342 974 0 0 1920 1178 </string>
<string>243 359 1342 819 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>XCDetailModule</string>
<key>Proportion</key>
<string>113pt</string>
<string>94pt</string>
</dict>
</array>
<key>Proportion</key>
... ... @@ -438,9 +408,9 @@
</array>
<key>TableOfContents</key>
<array>
<string>B50FD6AE0E3B7D97003CEB08</string>
<string>B5AACA860E3F3D3400064080</string>
<string>1CE0B1FE06471DED0097A5F4</string>
<string>B50FD6AF0E3B7D97003CEB08</string>
<string>B5AACA870E3F3D3400064080</string>
<string>1CE0B20306471E060097A5F4</string>
<string>1CE0B20506471E060097A5F4</string>
</array>
... ... @@ -574,17 +544,14 @@
<integer>5</integer>
<key>WindowOrderList</key>
<array>
<string>1C530D57069F1CE1000CFCEE</string>
<string>B50FD7090E3B82B8003CEB08</string>
<string>B50FD70A0E3B82B8003CEB08</string>
<string>B50FD6F80E3B813B003CEB08</string>
<string>B5AACAC40E3F3DDC00064080</string>
<string>1C78EAAD065D492600B07095</string>
<string>1CD10A99069EF8BA00B06720</string>
<string>B5ABC8410E24CDE70072F422</string>
<string>/Users/ben/asi-http-request/asi-http-request.xcodeproj</string>
</array>
<key>WindowString</key>
<string>239 171 1342 974 0 0 1920 1178 </string>
<string>243 359 1342 819 0 0 1920 1178 </string>
<key>WindowToolsV3</key>
<array>
<dict>
... ... @@ -605,7 +572,7 @@
<key>PBXProjectModuleGUID</key>
<string>1CD0528F0623707200166675</string>
<key>PBXProjectModuleLabel</key>
<string>ASIHTTPRequest.h</string>
<string></string>
<key>StatusBarVisibility</key>
<true/>
</dict>
... ... @@ -614,7 +581,7 @@
<key>Frame</key>
<string>{{0, 0}, {1440, 536}}</string>
<key>RubberWindowFrame</key>
<string>434 237 1440 818 0 0 1920 1178 </string>
<string>793 360 1440 818 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
... ... @@ -622,8 +589,6 @@
<string>536pt</string>
</dict>
<dict>
<key>BecomeActive</key>
<true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
... ... @@ -640,7 +605,7 @@
<key>Frame</key>
<string>{{0, 541}, {1440, 236}}</string>
<key>RubberWindowFrame</key>
<string>434 237 1440 818 0 0 1920 1178 </string>
<string>793 360 1440 818 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXBuildResultsModule</string>
... ... @@ -663,14 +628,14 @@
<key>TableOfContents</key>
<array>
<string>B5ABC8410E24CDE70072F422</string>
<string>B50FD6B00E3B7D97003CEB08</string>
<string>B5AACA880E3F3D3400064080</string>
<string>1CD0528F0623707200166675</string>
<string>XCMainBuildResultsModuleGUID</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.buildV3</string>
<key>WindowString</key>
<string>434 237 1440 818 0 0 1920 1178 </string>
<string>793 360 1440 818 0 0 1920 1178 </string>
<key>WindowToolGUID</key>
<string>B5ABC8410E24CDE70072F422</string>
<key>WindowToolIsVisible</key>
... ... @@ -749,6 +714,8 @@
<array>
<string>Name</string>
<real>277</real>
<string>Type</string>
<real>84</real>
<string>Value</string>
<real>114</real>
<string>Summary</string>
... ... @@ -757,10 +724,10 @@
<key>Frame</key>
<string>{{713, 0}, {851, 339}}</string>
<key>RubberWindowFrame</key>
<string>-221 502 1564 676 0 0 1920 1178 </string>
<string>103 471 1564 676 0 0 1920 1178 </string>
</dict>
<key>RubberWindowFrame</key>
<string>-221 502 1564 676 0 0 1920 1178 </string>
<string>103 471 1564 676 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXDebugSessionModule</string>
... ... @@ -783,18 +750,18 @@
<key>TableOfContents</key>
<array>
<string>1CD10A99069EF8BA00B06720</string>
<string>B50FD6BA0E3B7DAC003CEB08</string>
<string>B5AACA890E3F3D3400064080</string>
<string>1C162984064C10D400B95A72</string>
<string>B50FD6BB0E3B7DAC003CEB08</string>
<string>B50FD6BC0E3B7DAC003CEB08</string>
<string>B50FD6BD0E3B7DAC003CEB08</string>
<string>B50FD6BE0E3B7DAC003CEB08</string>
<string>B50FD6BF0E3B7DAC003CEB08</string>
<string>B5AACA8A0E3F3D3400064080</string>
<string>B5AACA8B0E3F3D3400064080</string>
<string>B5AACA8C0E3F3D3400064080</string>
<string>B5AACA8D0E3F3D3400064080</string>
<string>B5AACA8E0E3F3D3400064080</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.debugV3</string>
<key>WindowString</key>
<string>-221 502 1564 676 0 0 1920 1178 </string>
<string>103 471 1564 676 0 0 1920 1178 </string>
<key>WindowToolGUID</key>
<string>1CD10A99069EF8BA00B06720</string>
<key>WindowToolIsVisible</key>
... ... @@ -920,7 +887,7 @@
<key>Frame</key>
<string>{{0, 0}, {629, 511}}</string>
<key>RubberWindowFrame</key>
<string>78 379 629 552 0 0 1920 1178 </string>
<string>281 151 629 552 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXDebugCLIModule</string>
... ... @@ -943,13 +910,13 @@
<key>TableOfContents</key>
<array>
<string>1C78EAAD065D492600B07095</string>
<string>B50FD6C00E3B7DAC003CEB08</string>
<string>B5AACA8F0E3F3D3400064080</string>
<string>1C78EAAC065D492600B07095</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.consoleV3</string>
<key>WindowString</key>
<string>78 379 629 552 0 0 1920 1178 </string>
<string>281 151 629 552 0 0 1920 1178 </string>
<key>WindowToolGUID</key>
<string>1C78EAAD065D492600B07095</string>
<key>WindowToolIsVisible</key>
... ... @@ -1090,10 +1057,12 @@
<string>743 379 452 308 0 0 1280 1002 </string>
</dict>
<dict>
<key>FirstTimeWindowDisplayed</key>
<false/>
<key>Identifier</key>
<string>windowTool.breakpoints</string>
<key>IsVertical</key>
<integer>0</integer>
<false/>
<key>Layout</key>
<array>
<dict>
... ... @@ -1101,7 +1070,7 @@
<array>
<dict>
<key>BecomeActive</key>
<integer>1</integer>
<true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXBottomSmartGroupGIDs</key>
... ... @@ -1143,7 +1112,7 @@
<key>PBXTopSmartGroupGIDs</key>
<array/>
<key>XCIncludePerspectivesSwitch</key>
<integer>0</integer>
<false/>
</dict>
<key>GeometryConfiguration</key>
<dict>
... ... @@ -1155,7 +1124,7 @@
<real>168</real>
</array>
<key>RubberWindowFrame</key>
<string>315 424 744 409 0 0 1440 878 </string>
<string>996 21 744 409 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXSmartGroupTreeModule</string>
... ... @@ -1175,7 +1144,7 @@
<key>Frame</key>
<string>{{190, 0}, {554, 368}}</string>
<key>RubberWindowFrame</key>
<string>315 424 744 409 0 0 1440 878 </string>
<string>996 21 744 409 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>XCDetailModule</string>
... ... @@ -1199,22 +1168,22 @@
<string>XCDetailModule</string>
</array>
<key>StatusbarIsVisible</key>
<integer>1</integer>
<true/>
<key>TableOfContents</key>
<array>
<string>1CDDB66807F98D9800BB5817</string>
<string>1CDDB66907F98D9800BB5817</string>
<string>B5AAC53A0E3F1D5800064080</string>
<string>B5AAC53B0E3F1D5800064080</string>
<string>1CE0B1FE06471DED0097A5F4</string>
<string>1CA1AED706398EBD00589147</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.breakpointsV3</string>
<key>WindowString</key>
<string>315 424 744 409 0 0 1440 878 </string>
<string>996 21 744 409 0 0 1920 1178 </string>
<key>WindowToolGUID</key>
<string>1CDDB66807F98D9800BB5817</string>
<string>B5AAC53A0E3F1D5800064080</string>
<key>WindowToolIsVisible</key>
<integer>1</integer>
<true/>
</dict>
<dict>
<key>Identifier</key>
... ...
... ... @@ -15,12 +15,37 @@
8D1107260486CEB800E47090 /* asi-http-request */,
);
breakpoints = (
B5AAC50B0E3F1CC300064080 /* AppDelegate.m:22 */,
);
codeSenseManager = B5ABC7B60E24C52A0072F422 /* Code sense */;
executables = (
B5ABC7A70E24C5280072F422 /* asi-http-request */,
);
perUserDictionary = {
"PBXConfiguration.PBXBreakpointsDataSource.v1:1CA1AED706398EBD00589147" = {
PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
PBXFileTableDataSourceColumnSortingKey = PBXBreakpointsDataSource_BreakpointID;
PBXFileTableDataSourceColumnWidthsKey = (
20,
20,
198,
20,
99,
99,
29,
20,
);
PBXFileTableDataSourceColumnsKey = (
PBXBreakpointsDataSource_ActionID,
PBXBreakpointsDataSource_TypeID,
PBXBreakpointsDataSource_BreakpointID,
PBXBreakpointsDataSource_UseID,
PBXBreakpointsDataSource_LocationID,
PBXBreakpointsDataSource_ConditionID,
PBXBreakpointsDataSource_IgnoreCountID,
PBXBreakpointsDataSource_ContinueID,
);
};
PBXConfiguration.PBXFileTableDataSource3.PBXBookmarksDataSource = {
PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
PBXFileTableDataSourceColumnSortingKey = PBXBookmarksDataSource_NameID;
... ... @@ -103,106 +128,42 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
PBXPerProjectTemplateStateSaveDate = 238779744;
PBXWorkspaceStateSaveDate = 238779744;
PBXPerProjectTemplateStateSaveDate = 239025449;
PBXWorkspaceStateSaveDate = 239025449;
};
perUserProjectItems = {
B50FD68C0E3B7D5A003CEB08 = B50FD68C0E3B7D5A003CEB08 /* PBXTextBookmark */;
B50FD68D0E3B7D5A003CEB08 = B50FD68D0E3B7D5A003CEB08 /* PBXTextBookmark */;
B50FD68E0E3B7D5A003CEB08 = B50FD68E0E3B7D5A003CEB08 /* PBXTextBookmark */;
B50FD68F0E3B7D5A003CEB08 = B50FD68F0E3B7D5A003CEB08 /* PBXTextBookmark */;
B50FD6900E3B7D5A003CEB08 = B50FD6900E3B7D5A003CEB08 /* PBXTextBookmark */;
B50FD6910E3B7D5A003CEB08 = B50FD6910E3B7D5A003CEB08 /* PBXTextBookmark */;
B50FD6920E3B7D5A003CEB08 = B50FD6920E3B7D5A003CEB08 /* PBXTextBookmark */;
B50FD6930E3B7D5A003CEB08 = B50FD6930E3B7D5A003CEB08 /* PBXTextBookmark */;
B50FD6AC0E3B7D97003CEB08 /* PBXTextBookmark */ = B50FD6AC0E3B7D97003CEB08 /* PBXTextBookmark */;
B50FD6AD0E3B7D97003CEB08 /* PBXTextBookmark */ = B50FD6AD0E3B7D97003CEB08 /* PBXTextBookmark */;
B50FD6B30E3B7DA6003CEB08 /* PBXTextBookmark */ = B50FD6B30E3B7DA6003CEB08 /* PBXTextBookmark */;
B50FD6B40E3B7DA6003CEB08 /* PBXTextBookmark */ = B50FD6B40E3B7DA6003CEB08 /* PBXTextBookmark */;
B50FD6B60E3B7DAC003CEB08 /* PBXTextBookmark */ = B50FD6B60E3B7DAC003CEB08 /* PBXTextBookmark */;
B50FD6B70E3B7DAC003CEB08 /* PBXTextBookmark */ = B50FD6B70E3B7DAC003CEB08 /* PBXTextBookmark */;
B50FD6B80E3B7DAC003CEB08 /* PBXTextBookmark */ = B50FD6B80E3B7DAC003CEB08 /* PBXTextBookmark */;
B50FD6B90E3B7DAC003CEB08 /* PBXTextBookmark */ = B50FD6B90E3B7DAC003CEB08 /* PBXTextBookmark */;
B50FD6C10E3B7E7B003CEB08 /* PBXTextBookmark */ = B50FD6C10E3B7E7B003CEB08 /* PBXTextBookmark */;
B50FD6C20E3B7E7B003CEB08 /* PBXTextBookmark */ = B50FD6C20E3B7E7B003CEB08 /* PBXTextBookmark */;
B50FD6C30E3B7E7B003CEB08 /* PBXTextBookmark */ = B50FD6C30E3B7E7B003CEB08 /* PBXTextBookmark */;
B50FD6C40E3B7E7B003CEB08 /* PBXTextBookmark */ = B50FD6C40E3B7E7B003CEB08 /* PBXTextBookmark */;
B50FD6C50E3B7E7B003CEB08 /* PBXTextBookmark */ = B50FD6C50E3B7E7B003CEB08 /* PBXTextBookmark */;
B50FD6C60E3B7E7B003CEB08 /* PBXTextBookmark */ = B50FD6C60E3B7E7B003CEB08 /* PBXTextBookmark */;
B50FD6C70E3B7E7B003CEB08 /* PBXTextBookmark */ = B50FD6C70E3B7E7B003CEB08 /* PBXTextBookmark */;
B50FD6C80E3B7E7B003CEB08 /* PBXTextBookmark */ = B50FD6C80E3B7E7B003CEB08 /* PBXTextBookmark */;
B50FD6C90E3B7E7B003CEB08 /* PBXTextBookmark */ = B50FD6C90E3B7E7B003CEB08 /* PBXTextBookmark */;
B50FD6CA0E3B7E7B003CEB08 /* PBXTextBookmark */ = B50FD6CA0E3B7E7B003CEB08 /* PBXTextBookmark */;
B50FD6CB0E3B7E7B003CEB08 /* PBXTextBookmark */ = B50FD6CB0E3B7E7B003CEB08 /* PBXTextBookmark */;
B50FD6CC0E3B7E7B003CEB08 /* PBXTextBookmark */ = B50FD6CC0E3B7E7B003CEB08 /* PBXTextBookmark */;
B50FD6D00E3B7F49003CEB08 /* PBXTextBookmark */ = B50FD6D00E3B7F49003CEB08 /* PBXTextBookmark */;
B50FD6D10E3B7F49003CEB08 /* PBXTextBookmark */ = B50FD6D10E3B7F49003CEB08 /* PBXTextBookmark */;
B50FD6D20E3B7F49003CEB08 /* PBXTextBookmark */ = B50FD6D20E3B7F49003CEB08 /* PBXTextBookmark */;
B50FD6D30E3B7F49003CEB08 /* PBXTextBookmark */ = B50FD6D30E3B7F49003CEB08 /* PBXTextBookmark */;
B50FD6D40E3B7F49003CEB08 /* PBXTextBookmark */ = B50FD6D40E3B7F49003CEB08 /* PBXTextBookmark */;
B50FD6D50E3B7F49003CEB08 /* PBXTextBookmark */ = B50FD6D50E3B7F49003CEB08 /* PBXTextBookmark */;
B50FD6D60E3B7F49003CEB08 /* PBXTextBookmark */ = B50FD6D60E3B7F49003CEB08 /* PBXTextBookmark */;
B50FD6D70E3B7F49003CEB08 /* PBXTextBookmark */ = B50FD6D70E3B7F49003CEB08 /* PBXTextBookmark */;
B50FD6D80E3B7FFB003CEB08 /* PBXTextBookmark */ = B50FD6D80E3B7FFB003CEB08 /* PBXTextBookmark */;
B50FD6D90E3B7FFB003CEB08 /* PBXTextBookmark */ = B50FD6D90E3B7FFB003CEB08 /* PBXTextBookmark */;
B50FD6DA0E3B7FFB003CEB08 /* PBXTextBookmark */ = B50FD6DA0E3B7FFB003CEB08 /* PBXTextBookmark */;
B50FD6DB0E3B7FFB003CEB08 /* PBXTextBookmark */ = B50FD6DB0E3B7FFB003CEB08 /* PBXTextBookmark */;
B50FD6DC0E3B7FFB003CEB08 /* PBXTextBookmark */ = B50FD6DC0E3B7FFB003CEB08 /* PBXTextBookmark */;
B50FD6DD0E3B7FFB003CEB08 /* PBXTextBookmark */ = B50FD6DD0E3B7FFB003CEB08 /* PBXTextBookmark */;
B50FD6DE0E3B7FFB003CEB08 /* PBXTextBookmark */ = B50FD6DE0E3B7FFB003CEB08 /* PBXTextBookmark */;
B50FD6DF0E3B7FFB003CEB08 /* PBXTextBookmark */ = B50FD6DF0E3B7FFB003CEB08 /* PBXTextBookmark */;
B50FD6E00E3B7FFB003CEB08 /* PBXTextBookmark */ = B50FD6E00E3B7FFB003CEB08 /* PBXTextBookmark */;
B50FD6E10E3B7FFB003CEB08 /* PBXTextBookmark */ = B50FD6E10E3B7FFB003CEB08 /* PBXTextBookmark */;
B50FD6E20E3B7FFB003CEB08 /* PBXTextBookmark */ = B50FD6E20E3B7FFB003CEB08 /* PBXTextBookmark */;
B50FD6E30E3B7FFB003CEB08 /* PBXTextBookmark */ = B50FD6E30E3B7FFB003CEB08 /* PBXTextBookmark */;
B50FD6E40E3B7FFB003CEB08 /* PBXTextBookmark */ = B50FD6E40E3B7FFB003CEB08 /* PBXTextBookmark */;
B50FD6E50E3B809F003CEB08 /* PBXTextBookmark */ = B50FD6E50E3B809F003CEB08 /* PBXTextBookmark */;
B50FD6E60E3B809F003CEB08 /* PBXTextBookmark */ = B50FD6E60E3B809F003CEB08 /* PBXTextBookmark */;
B50FD6E70E3B809F003CEB08 /* PBXTextBookmark */ = B50FD6E70E3B809F003CEB08 /* PBXTextBookmark */;
B50FD6E80E3B809F003CEB08 /* PBXTextBookmark */ = B50FD6E80E3B809F003CEB08 /* PBXTextBookmark */;
B50FD6E90E3B809F003CEB08 /* PBXTextBookmark */ = B50FD6E90E3B809F003CEB08 /* PBXTextBookmark */;
B50FD6EA0E3B809F003CEB08 /* PBXTextBookmark */ = B50FD6EA0E3B809F003CEB08 /* PBXTextBookmark */;
B50FD6EB0E3B809F003CEB08 /* PBXTextBookmark */ = B50FD6EB0E3B809F003CEB08 /* PBXTextBookmark */;
B50FD6EC0E3B809F003CEB08 /* PBXTextBookmark */ = B50FD6EC0E3B809F003CEB08 /* PBXTextBookmark */;
B50FD6EE0E3B80CB003CEB08 /* PBXTextBookmark */ = B50FD6EE0E3B80CB003CEB08 /* PBXTextBookmark */;
B50FD6F50E3B813B003CEB08 /* PBXTextBookmark */ = B50FD6F50E3B813B003CEB08 /* PBXTextBookmark */;
B50FD6F60E3B813B003CEB08 /* PBXTextBookmark */ = B50FD6F60E3B813B003CEB08 /* PBXTextBookmark */;
B50FD6FF0E3B8143003CEB08 /* PBXTextBookmark */ = B50FD6FF0E3B8143003CEB08 /* PBXTextBookmark */;
B50FD7000E3B8143003CEB08 /* PBXTextBookmark */ = B50FD7000E3B8143003CEB08 /* PBXTextBookmark */;
B50FD7010E3B8143003CEB08 /* PBXTextBookmark */ = B50FD7010E3B8143003CEB08 /* PBXTextBookmark */;
B50FD7020E3B8143003CEB08 /* PBXTextBookmark */ = B50FD7020E3B8143003CEB08 /* PBXTextBookmark */;
B50FD7030E3B817C003CEB08 /* PBXTextBookmark */ = B50FD7030E3B817C003CEB08 /* PBXTextBookmark */;
B50FD7070E3B82B8003CEB08 /* PBXTextBookmark */ = B50FD7070E3B82B8003CEB08 /* PBXTextBookmark */;
B50FD70B0E3B8340003CEB08 /* PBXBookmark */ = B50FD70B0E3B8340003CEB08 /* PBXBookmark */;
B50FD70C0E3B83F3003CEB08 /* PBXTextBookmark */ = B50FD70C0E3B83F3003CEB08 /* PBXTextBookmark */;
B50FD70E0E3B83F3003CEB08 /* PBXTextBookmark */ = B50FD70E0E3B83F3003CEB08 /* PBXTextBookmark */;
B50FD70F0E3B83F3003CEB08 /* PBXTextBookmark */ = B50FD70F0E3B83F3003CEB08 /* PBXTextBookmark */;
B50FD7170E3B86B4003CEB08 /* PBXTextBookmark */ = B50FD7170E3B86B4003CEB08 /* PBXTextBookmark */;
B50FD7180E3B86B4003CEB08 /* PBXTextBookmark */ = B50FD7180E3B86B4003CEB08 /* PBXTextBookmark */;
B50FD7190E3B86B4003CEB08 /* PBXTextBookmark */ = B50FD7190E3B86B4003CEB08 /* PBXTextBookmark */;
B50FD71A0E3B86B4003CEB08 /* PBXTextBookmark */ = B50FD71A0E3B86B4003CEB08 /* PBXTextBookmark */;
B50FD71D0E3B86B4003CEB08 /* PBXTextBookmark */ = B50FD71D0E3B86B4003CEB08 /* PBXTextBookmark */;
B50FD71F0E3B86BC003CEB08 /* PBXTextBookmark */ = B50FD71F0E3B86BC003CEB08 /* PBXTextBookmark */;
B50FD7200E3B86BC003CEB08 /* PBXTextBookmark */ = B50FD7200E3B86BC003CEB08 /* PBXTextBookmark */;
B50FD7220E3B86CF003CEB08 /* PBXTextBookmark */ = B50FD7220E3B86CF003CEB08 /* PBXTextBookmark */;
B50FD7230E3B86CF003CEB08 /* PBXTextBookmark */ = B50FD7230E3B86CF003CEB08 /* PBXTextBookmark */;
B50FD7240E3B86CF003CEB08 /* PBXTextBookmark */ = B50FD7240E3B86CF003CEB08 /* PBXTextBookmark */;
B50FD7250E3B86CF003CEB08 /* PBXTextBookmark */ = B50FD7250E3B86CF003CEB08 /* PBXTextBookmark */;
B50FD7260E3B86CF003CEB08 /* PBXTextBookmark */ = B50FD7260E3B86CF003CEB08 /* PBXTextBookmark */;
B50FD7270E3B87EE003CEB08 /* PBXTextBookmark */ = B50FD7270E3B87EE003CEB08 /* PBXTextBookmark */;
B50FD7280E3B87EE003CEB08 /* PBXTextBookmark */ = B50FD7280E3B87EE003CEB08 /* PBXTextBookmark */;
B50FD7290E3B87EE003CEB08 /* PBXTextBookmark */ = B50FD7290E3B87EE003CEB08 /* PBXTextBookmark */;
B50FD72A0E3B87EE003CEB08 /* PBXTextBookmark */ = B50FD72A0E3B87EE003CEB08 /* PBXTextBookmark */;
B50FD72B0E3B87EE003CEB08 /* PBXTextBookmark */ = B50FD72B0E3B87EE003CEB08 /* PBXTextBookmark */;
B50FD72C0E3B87EE003CEB08 /* PBXTextBookmark */ = B50FD72C0E3B87EE003CEB08 /* PBXTextBookmark */;
B50FD72D0E3B87EE003CEB08 /* PBXTextBookmark */ = B50FD72D0E3B87EE003CEB08 /* PBXTextBookmark */;
B50FD72E0E3B87EE003CEB08 /* PBXTextBookmark */ = B50FD72E0E3B87EE003CEB08 /* PBXTextBookmark */;
B513D3E90E2BD48A000A50C6 = B513D3E90E2BD48A000A50C6 /* PBXTextBookmark */;
B513D3EA0E2BD48A000A50C6 = B513D3EA0E2BD48A000A50C6 /* PlistBookmark */;
B513D4020E2BD48A000A50C6 = B513D4020E2BD48A000A50C6 /* PlistBookmark */;
B513D4030E2BD48A000A50C6 = B513D4030E2BD48A000A50C6 /* PBXTextBookmark */;
B513D4170E2BE8A9000A50C6 = B513D4170E2BE8A9000A50C6 /* PBXTextBookmark */;
B513D41B0E2BE8A9000A50C6 = B513D41B0E2BE8A9000A50C6 /* PBXTextBookmark */;
B5AAC4CE0E3F1BEF00064080 = B5AAC4CE0E3F1BEF00064080 /* PBXTextBookmark */;
B5AAC4D10E3F1BEF00064080 = B5AAC4D10E3F1BEF00064080 /* PBXTextBookmark */;
B5AAC4D20E3F1BEF00064080 = B5AAC4D20E3F1BEF00064080 /* PBXTextBookmark */;
B5AAC4D30E3F1BEF00064080 = B5AAC4D30E3F1BEF00064080 /* PBXTextBookmark */;
B5AAC4D40E3F1BEF00064080 = B5AAC4D40E3F1BEF00064080 /* PBXTextBookmark */;
B5AAC4D50E3F1BEF00064080 = B5AAC4D50E3F1BEF00064080 /* PBXTextBookmark */;
B5AAC4D60E3F1BEF00064080 = B5AAC4D60E3F1BEF00064080 /* PBXTextBookmark */;
B5AAC4D70E3F1BEF00064080 = B5AAC4D70E3F1BEF00064080 /* PBXTextBookmark */;
B5AAC4F50E3F1C4100064080 = B5AAC4F50E3F1C4100064080 /* PBXTextBookmark */;
B5AAC4F70E3F1C4100064080 = B5AAC4F70E3F1C4100064080 /* PBXTextBookmark */;
B5AAC4F80E3F1C4100064080 = B5AAC4F80E3F1C4100064080 /* PBXTextBookmark */;
B5AAC5290E3F1D0A00064080 = B5AAC5290E3F1D0A00064080 /* PBXTextBookmark */;
B5AAC5370E3F1D5800064080 = B5AAC5370E3F1D5800064080 /* PBXTextBookmark */;
B5AAC5380E3F1D5800064080 = B5AAC5380E3F1D5800064080 /* PBXTextBookmark */;
B5AAC5460E3F1D8300064080 = B5AAC5460E3F1D8300064080 /* PBXTextBookmark */;
B5AAC5470E3F1D8300064080 = B5AAC5470E3F1D8300064080 /* PBXTextBookmark */;
B5AAC5C00E3F220500064080 = B5AAC5C00E3F220500064080 /* PBXTextBookmark */;
B5AAC5C10E3F220500064080 = B5AAC5C10E3F220500064080 /* PBXTextBookmark */;
B5AAC5C20E3F220500064080 = B5AAC5C20E3F220500064080 /* PBXTextBookmark */;
B5AAC6F80E3F275B00064080 = B5AAC6F80E3F275B00064080 /* PBXTextBookmark */;
B5AACA810E3F3D3400064080 /* PBXTextBookmark */ = B5AACA810E3F3D3400064080 /* PBXTextBookmark */;
B5AACA820E3F3D3400064080 /* PBXTextBookmark */ = B5AACA820E3F3D3400064080 /* PBXTextBookmark */;
B5AACA830E3F3D3400064080 /* PBXTextBookmark */ = B5AACA830E3F3D3400064080 /* PBXTextBookmark */;
B5AACA840E3F3D3400064080 /* PBXTextBookmark */ = B5AACA840E3F3D3400064080 /* PBXTextBookmark */;
B5AACA850E3F3D3400064080 /* PBXTextBookmark */ = B5AACA850E3F3D3400064080 /* PBXTextBookmark */;
B5AACA920E3F3D4800064080 /* PBXTextBookmark */ = B5AACA920E3F3D4800064080 /* PBXTextBookmark */;
B5AACAC20E3F3DDC00064080 /* PBXTextBookmark */ = B5AACAC20E3F3DDC00064080 /* PBXTextBookmark */;
B5AACAC30E3F3DDC00064080 /* PBXTextBookmark */ = B5AACAC30E3F3DDC00064080 /* PBXTextBookmark */;
B5ABC8250E24CDE70072F422 = B5ABC8250E24CDE70072F422 /* PBXTextBookmark */;
B5ABC8260E24CDE70072F422 = B5ABC8260E24CDE70072F422 /* PBXTextBookmark */;
B5ABC8280E24CDE70072F422 = B5ABC8280E24CDE70072F422 /* PBXTextBookmark */;
... ... @@ -219,493 +180,266 @@
B5ABC7A70E24C5280072F422 /* asi-http-request */,
);
};
B50FD68C0E3B7D5A003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 69";
rLen = 18;
rLoc = 2199;
rType = 0;
vrLen = 2074;
vrLoc = 1051;
};
B50FD68D0E3B7D5A003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 122";
rLen = 2;
rLoc = 5163;
rType = 0;
vrLen = 1732;
vrLoc = 3426;
};
B50FD68E0E3B7D5A003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 300";
rLen = 0;
rLoc = 7499;
rType = 0;
vrLen = 1385;
vrLoc = 6795;
};
B50FD68F0E3B7D5A003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 440";
rLen = 0;
rLoc = 11734;
rType = 0;
vrLen = 1135;
vrLoc = 11460;
};
B50FD6900E3B7D5A003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 69";
rLen = 18;
rLoc = 2199;
rType = 0;
vrLen = 2074;
vrLoc = 1051;
};
B50FD6910E3B7D5A003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 300";
rLen = 0;
rLoc = 7499;
rType = 0;
vrLen = 1385;
vrLoc = 6795;
};
B50FD6920E3B7D5A003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 122";
rLen = 2;
rLoc = 5163;
rType = 0;
vrLen = 1732;
vrLoc = 3426;
};
B50FD6930E3B7D5A003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 823";
rLen = 0;
rLoc = 24037;
rType = 0;
vrLen = 1291;
vrLoc = 3939;
};
B50FD6AC0E3B7D97003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
comments = "error: invalid operands to binary +";
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
rLen = 1;
rLoc = 403;
rType = 1;
};
B50FD6AD0E3B7D97003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 12";
rLen = 0;
rLoc = 381;
rType = 0;
vrLen = 1520;
vrLoc = 14521;
};
B50FD6B30E3B7DA6003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
comments = "error: 'PROGRESS_INDICATOR_TIMER_INTERVAL' undeclared (first use in this function)";
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
rLen = 0;
rLoc = 389;
rType = 1;
};
B50FD6B40E3B7DA6003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 406";
rLen = 0;
rLoc = 10210;
rType = 0;
vrLen = 769;
vrLoc = 11010;
};
B50FD6B60E3B7DAC003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 12";
rLen = 0;
rLoc = 381;
rType = 0;
vrLen = 1296;
vrLoc = 14675;
};
B50FD6B70E3B7DAC003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 125";
rLen = 2;
rLoc = 5163;
rType = 0;
vrLen = 1722;
vrLoc = 3442;
};
B50FD6B80E3B7DAC003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 12";
rLen = 0;
rLoc = 381;
rType = 0;
vrLen = 1296;
vrLoc = 14675;
};
B50FD6B90E3B7DAC003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 120";
rLen = 0;
rLoc = 4695;
rType = 0;
vrLen = 1687;
vrLoc = 3442;
};
B50FD6C10E3B7E7B003CEB08 /* PBXTextBookmark */ = {
B513D3E90E2BD48A000A50C6 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
name = "ASIProgressDelegate.h: 2";
fRef = 089C165DFE840E0CC02AAC07 /* English */;
name = "InfoPlist.strings: 3";
rLen = 0;
rLoc = 28;
rLoc = 104;
rType = 0;
vrLen = 360;
vrLen = 110;
vrLoc = 0;
};
B50FD6C20E3B7E7B003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 12";
B513D3EA0E2BD48A000A50C6 /* PlistBookmark */ = {
isa = PlistBookmark;
fRef = 8D1107310486CEB800E47090 /* Info.plist */;
fallbackIsa = PBXBookmark;
isK = 0;
kPath = (
CFBundleIdentifier,
);
name = "/Users/ben/asi-http-request/Info.plist";
rLen = 0;
rLoc = 381;
rType = 0;
vrLen = 1667;
vrLoc = 6314;
rLoc = 2147483647;
};
B50FD6C30E3B7E7B003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 81";
B513D4020E2BD48A000A50C6 /* PlistBookmark */ = {
isa = PlistBookmark;
fRef = 8D1107310486CEB800E47090 /* Info.plist */;
fallbackIsa = PBXBookmark;
isK = 0;
kPath = (
);
name = "/Users/ben/asi-http-request/Info.plist";
rLen = 0;
rLoc = 2748;
rType = 0;
vrLen = 2166;
vrLoc = 4012;
rLoc = 2147483647;
};
B50FD6C40E3B7E7B003CEB08 /* PBXTextBookmark */ = {
B513D4030E2BD48A000A50C6 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 81";
fRef = 089C165DFE840E0CC02AAC07 /* English */;
name = "InfoPlist.strings: 1";
rLen = 0;
rLoc = 2748;
rLoc = 0;
rType = 0;
vrLen = 1377;
vrLoc = 4408;
vrLen = 100;
vrLoc = 0;
};
B50FD6C50E3B7E7B003CEB08 /* PBXTextBookmark */ = {
B5AAC4CE0E3F1BEF00064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
name = "ASIProgressDelegate.h: 2";
fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
name = "AppDelegate.h: 7";
rLen = 0;
rLoc = 28;
rLoc = 136;
rType = 0;
vrLen = 360;
vrLen = 1083;
vrLoc = 0;
};
B50FD6C60E3B7E7B003CEB08 /* PBXTextBookmark */ = {
B5AAC4D10E3F1BEF00064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 81";
name = "ASIHTTPRequest.h: 202";
rLen = 0;
rLoc = 2748;
rLoc = 6697;
rType = 0;
vrLen = 1477;
vrLoc = 4308;
vrLen = 1602;
vrLoc = 5509;
};
B50FD6C70E3B7E7B003CEB08 /* PBXTextBookmark */ = {
B5AAC4D20E3F1BEF00064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 12";
name = "ASIHTTPRequest.m: 740";
rLen = 0;
rLoc = 381;
rLoc = 23054;
rType = 0;
vrLen = 1665;
vrLoc = 6317;
vrLen = 1614;
vrLoc = 21447;
};
B50FD6C80E3B7E7B003CEB08 /* PBXTextBookmark */ = {
B5AAC4D30E3F1BEF00064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 81";
name = "ASIHTTPRequest.h: 201";
rLen = 0;
rLoc = 2748;
rLoc = 6666;
rType = 0;
vrLen = 2200;
vrLoc = 4012;
vrLen = 1752;
vrLoc = 5386;
};
B50FD6C90E3B7E7B003CEB08 /* PBXTextBookmark */ = {
B5AAC4D40E3F1BEF00064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 12";
name = "ASIHTTPRequest.m: 39";
rLen = 0;
rLoc = 381;
rLoc = 1133;
rType = 0;
vrLen = 1668;
vrLoc = 6314;
vrLen = 903;
vrLoc = 626;
};
B50FD6CA0E3B7E7B003CEB08 /* PBXTextBookmark */ = {
B5AAC4D50E3F1BEF00064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 81";
rLen = 0;
rLoc = 2748;
name = "ASIHTTPRequest.h: 201";
rLen = 8;
rLoc = 6658;
rType = 0;
vrLen = 2166;
vrLoc = 4012;
vrLen = 1815;
vrLoc = 5318;
};
B50FD6CB0E3B7E7B003CEB08 /* PBXTextBookmark */ = {
B5AAC4D60E3F1BEF00064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 12";
fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
name = "AppDelegate.h: 7";
rLen = 0;
rLoc = 381;
rLoc = 136;
rType = 0;
vrLen = 1667;
vrLoc = 6314;
vrLen = 1083;
vrLoc = 0;
};
B50FD6CC0E3B7E7B003CEB08 /* PBXTextBookmark */ = {
B5AAC4D70E3F1BEF00064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 129";
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 134";
rLen = 0;
rLoc = 5435;
rLoc = 4486;
rType = 0;
vrLen = 2166;
vrLoc = 4012;
vrLen = 1170;
vrLoc = 0;
};
B50FD6D00E3B7F49003CEB08 /* PBXTextBookmark */ = {
B5AAC4F50E3F1C4100064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 129";
rLen = 0;
rLoc = 5435;
name = "ASIHTTPRequest.h: 201";
rLen = 8;
rLoc = 6658;
rType = 0;
vrLen = 1807;
vrLoc = 2282;
};
B50FD6D10E3B7F49003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
name = "ASIProgressDelegate.h: 2";
rLen = 0;
rLoc = 28;
rType = 0;
vrLen = 360;
vrLoc = 0;
vrLen = 1321;
vrLoc = 3201;
};
B50FD6D20E3B7F49003CEB08 /* PBXTextBookmark */ = {
B5AAC4F70E3F1C4100064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 12";
name = "ASIHTTPRequest.m: 39";
rLen = 0;
rLoc = 381;
rLoc = 1133;
rType = 0;
vrLen = 2499;
vrLoc = 4063;
vrLen = 1020;
vrLoc = 551;
};
B50FD6D30E3B7F49003CEB08 /* PBXTextBookmark */ = {
B5AAC4F80E3F1C4100064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 129";
rLen = 0;
rLoc = 5435;
rType = 0;
vrLen = 1807;
vrLoc = 2282;
};
B50FD6D40E3B7F49003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 12";
rLen = 0;
rLoc = 381;
name = "ASIHTTPRequest.h: 201";
rLen = 8;
rLoc = 6658;
rType = 0;
vrLen = 1163;
vrLoc = 699;
vrLen = 1321;
vrLoc = 3201;
};
B50FD6D50E3B7F49003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
name = "ASIProgressDelegate.h: 2";
rLen = 0;
rLoc = 28;
rType = 0;
vrLen = 360;
vrLoc = 0;
B5AAC50B0E3F1CC300064080 /* AppDelegate.m:22 */ = {
isa = PBXFileBreakpoint;
actions = (
);
breakpointStyle = 0;
continueAfterActions = 0;
countType = 0;
delayBeforeContinue = 0;
fileReference = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
functionName = "-dealloc";
hitCount = 0;
ignoreCount = 0;
lineNumber = 22;
modificationTime = 239019839.524838;
state = 1;
};
B50FD6D60E3B7F49003CEB08 /* PBXTextBookmark */ = {
B5AAC5290E3F1D0A00064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 12";
name = "ASIHTTPRequest.m: 58";
rLen = 0;
rLoc = 381;
rLoc = 1517;
rType = 0;
vrLen = 2499;
vrLoc = 4063;
vrLen = 803;
vrLoc = 817;
};
B50FD6D70E3B7F49003CEB08 /* PBXTextBookmark */ = {
B5AAC5370E3F1D5800064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 30";
name = "AppDelegate.m: 134";
rLen = 0;
rLoc = 662;
rLoc = 4486;
rType = 0;
vrLen = 1737;
vrLoc = 218;
};
B50FD6D80E3B7FFB003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 35";
rLen = 0;
rLoc = 682;
rType = 0;
vrLen = 1605;
vrLoc = 0;
vrLen = 2071;
vrLoc = 1338;
};
B50FD6D90E3B7FFB003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 129";
rLen = 0;
rLoc = 5435;
rType = 0;
vrLen = 1876;
vrLoc = 5304;
};
B50FD6DA0E3B7FFB003CEB08 /* PBXTextBookmark */ = {
B5AAC5380E3F1D5800064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 12";
name = "ASIHTTPRequest.m: 643";
rLen = 0;
rLoc = 381;
rLoc = 19582;
rType = 0;
vrLen = 2494;
vrLoc = 4063;
vrLen = 960;
vrLoc = 18923;
};
B50FD6DB0E3B7FFB003CEB08 /* PBXTextBookmark */ = {
B5AAC5460E3F1D8300064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
name = "ASIProgressDelegate.h: 2";
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 22";
rLen = 0;
rLoc = 28;
rLoc = 354;
rType = 0;
vrLen = 360;
vrLen = 1038;
vrLoc = 0;
};
B50FD6DC0E3B7FFB003CEB08 /* PBXTextBookmark */ = {
B5AAC5470E3F1D8300064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 35";
name = "AppDelegate.m: 22";
rLen = 0;
rLoc = 682;
rLoc = 354;
rType = 0;
vrLen = 1605;
vrLen = 1038;
vrLoc = 0;
};
B50FD6DD0E3B7FFB003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 129";
rLen = 0;
rLoc = 5435;
rType = 0;
vrLen = 1773;
vrLoc = 2316;
};
B50FD6DE0E3B7FFB003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 12";
rLen = 0;
rLoc = 381;
rType = 0;
vrLen = 2494;
vrLoc = 4063;
};
B50FD6DF0E3B7FFB003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 129";
rLen = 0;
rLoc = 5435;
rType = 0;
vrLen = 1773;
vrLoc = 2316;
};
B50FD6E00E3B7FFB003CEB08 /* PBXTextBookmark */ = {
B5AAC5C00E3F220500064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 12";
name = "ASIHTTPRequest.m: 349";
rLen = 0;
rLoc = 381;
rLoc = 10451;
rType = 0;
vrLen = 2494;
vrLoc = 4063;
vrLen = 1783;
vrLoc = 10010;
};
B50FD6E10E3B7FFB003CEB08 /* PBXTextBookmark */ = {
B5AAC5C10E3F220500064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
name = "ASIProgressDelegate.h: 2";
name = "ASIProgressDelegate.h: 17";
rLen = 0;
rLoc = 28;
rLoc = 360;
rType = 0;
vrLen = 360;
vrLoc = 0;
};
B50FD6E20E3B7FFB003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 129";
rLen = 0;
rLoc = 5435;
rType = 0;
vrLen = 1876;
vrLoc = 5304;
};
B50FD6E30E3B7FFB003CEB08 /* PBXTextBookmark */ = {
B5AAC5C20E3F220500064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 12";
name = "ASIHTTPRequest.m: 349";
rLen = 0;
rLoc = 381;
rLoc = 10451;
rType = 0;
vrLen = 2494;
vrLoc = 4063;
vrLen = 1783;
vrLoc = 10010;
};
B50FD6E40E3B7FFB003CEB08 /* PBXTextBookmark */ = {
B5AAC6F80E3F275B00064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
name = "ASIProgressDelegate.h: 2";
name = "ASIProgressDelegate.h: 17";
rLen = 0;
rLoc = 28;
rLoc = 360;
rType = 0;
vrLen = 360;
vrLoc = 0;
};
B50FD6E50E3B809F003CEB08 /* PBXTextBookmark */ = {
B5AACA810E3F3D3400064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
name = "ASIProgressDelegate.h: 17";
... ... @@ -715,27 +449,17 @@
vrLen = 360;
vrLoc = 0;
};
B50FD6E60E3B809F003CEB08 /* PBXTextBookmark */ = {
B5AACA820E3F3D3400064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 54";
rLen = 13;
rLoc = 1491;
rType = 0;
vrLen = 1161;
vrLoc = 701;
};
B50FD6E70E3B809F003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 192";
name = "ASIHTTPRequest.m: 349";
rLen = 0;
rLoc = 8037;
rLoc = 10451;
rType = 0;
vrLen = 1992;
vrLoc = 5274;
vrLen = 1689;
vrLoc = 21372;
};
B50FD6E80E3B809F003CEB08 /* PBXTextBookmark */ = {
B5AACA830E3F3D3400064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
name = "ASIProgressDelegate.h: 17";
... ... @@ -745,425 +469,55 @@
vrLen = 360;
vrLoc = 0;
};
B50FD6E90E3B809F003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 53";
rLen = 27;
rLoc = 1433;
rType = 0;
vrLen = 1182;
vrLoc = 701;
};
B50FD6EA0E3B809F003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 192";
rLen = 0;
rLoc = 8037;
rType = 0;
vrLen = 1992;
vrLoc = 5274;
};
B50FD6EB0E3B809F003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 54";
rLen = 13;
rLoc = 1491;
rType = 0;
vrLen = 1161;
vrLoc = 701;
};
B50FD6EC0E3B809F003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 165";
rLen = 0;
rLoc = 7517;
rType = 0;
vrLen = 1990;
vrLoc = 5274;
};
B50FD6EE0E3B80CB003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 165";
rLen = 0;
rLoc = 7517;
rType = 0;
vrLen = 1990;
vrLoc = 5274;
};
B50FD6F50E3B813B003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
comments = "error: 'progressTimer' undeclared (first use in this function)";
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
rLen = 0;
rLoc = 408;
rType = 1;
};
B50FD6F60E3B813B003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 427";
rLen = 0;
rLoc = 11770;
rType = 0;
vrLen = 879;
vrLoc = 10987;
};
B50FD6FF0E3B8143003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 165";
rLen = 0;
rLoc = 7517;
rType = 0;
vrLen = 1817;
vrLoc = 1895;
};
B50FD7000E3B8143003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 54";
rLen = 13;
rLoc = 1491;
rType = 0;
vrLen = 1183;
vrLoc = 700;
};
B50FD7010E3B8143003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 165";
rLen = 0;
rLoc = 7517;
rType = 0;
vrLen = 1817;
vrLoc = 1895;
};
B50FD7020E3B8143003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 190";
rLen = 0;
rLoc = 4621;
rType = 0;
vrLen = 2042;
vrLoc = 3806;
};
B50FD7030E3B817C003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 209";
rLen = 15;
rLoc = 5417;
rType = 0;
vrLen = 2075;
vrLoc = 3853;
};
B50FD7070E3B82B8003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 306";
rLen = 0;
rLoc = 7500;
rType = 0;
vrLen = 1830;
vrLoc = 7581;
};
B50FD70B0E3B8340003CEB08 /* PBXBookmark */ = {
isa = PBXBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
};
B50FD70C0E3B83F3003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 431";
rLen = 0;
rLoc = 11770;
rType = 0;
vrLen = 807;
vrLoc = 11097;
};
B50FD70E0E3B83F3003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
rLen = 10;
rLoc = 4107;
rType = 0;
};
B50FD70F0E3B83F3003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 184";
rLen = 10;
rLoc = 4107;
rType = 0;
vrLen = 150;
vrLoc = 3811;
};
B50FD7170E3B86B4003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 165";
rLen = 0;
rLoc = 7517;
rType = 0;
vrLen = 1758;
vrLoc = 1954;
};
B50FD7180E3B86B4003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 467";
rLen = 0;
rLoc = 14197;
rType = 0;
vrLen = 2050;
vrLoc = 12242;
};
B50FD7190E3B86B4003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 165";
rLen = 0;
rLoc = 7517;
rType = 0;
vrLen = 1758;
vrLoc = 1954;
};
B50FD71A0E3B86B4003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 211";
rLen = 0;
rLoc = 4194;
rType = 0;
vrLen = 834;
vrLoc = 3883;
};
B50FD71D0E3B86B4003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 164";
rLen = 0;
rLoc = 5672;
rType = 0;
vrLen = 1732;
vrLoc = 0;
};
B50FD71F0E3B86BC003CEB08 /* PBXTextBookmark */ = {
B5AACA840E3F3D3400064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 211";
name = "ASIHTTPRequest.m: 349";
rLen = 0;
rLoc = 4194;
rLoc = 10451;
rType = 0;
vrLen = 1844;
vrLoc = 6576;
vrLen = 1689;
vrLoc = 21372;
};
B50FD7200E3B86BC003CEB08 /* PBXTextBookmark */ = {
B5AACA850E3F3D3400064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 164";
rLen = 0;
rLoc = 5672;
rType = 0;
vrLen = 1732;
vrLoc = 0;
};
B50FD7220E3B86CF003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 422";
rLen = 0;
rLoc = 11770;
name = "ASIHTTPRequest.h: 201";
rLen = 8;
rLoc = 6658;
rType = 0;
vrLen = 1030;
vrLoc = 10311;
vrLen = 1206;
vrLoc = 2415;
};
B50FD7230E3B86CF003CEB08 /* PBXTextBookmark */ = {
B5AACA920E3F3D4800064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
comments = "error: syntax error before '-' token";
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
rLen = 1;
rLoc = 209;
rType = 1;
};
B50FD7240E3B86CF003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 422";
rLen = 0;
rLoc = 11770;
name = "ASIHTTPRequest.h: 201";
rLen = 8;
rLoc = 6658;
rType = 0;
vrLen = 1030;
vrLoc = 10311;
vrLen = 1206;
vrLoc = 2415;
};
B50FD7250E3B86CF003CEB08 /* PBXTextBookmark */ = {
B5AACAC20E3F3DDC00064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 207";
name = "ASIHTTPRequest.h: 109";
rLen = 0;
rLoc = 7164;
rLoc = 3517;
rType = 0;
vrLen = 1382;
vrLoc = 6047;
vrLen = 1314;
vrLoc = 3342;
};
B50FD7260E3B86CF003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 203";
rLen = 10;
rLoc = 4107;
rType = 0;
vrLen = 146;
vrLoc = 3930;
};
B50FD7270E3B87EE003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
name = "AppDelegate.h: 7";
rLen = 0;
rLoc = 136;
rType = 0;
vrLen = 1083;
vrLoc = 0;
};
B50FD7280E3B87EE003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 803";
rLen = 0;
rLoc = 24029;
rType = 0;
vrLen = 1526;
vrLoc = 0;
};
B50FD7290E3B87EE003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 221";
rLen = 0;
rLoc = 7517;
rType = 0;
vrLen = 1637;
vrLoc = 2155;
};
B50FD72A0E3B87EE003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 211";
rLen = 0;
rLoc = 4194;
rType = 0;
vrLen = 1944;
vrLoc = 6576;
};
B50FD72B0E3B87EE003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
name = "AppDelegate.h: 7";
rLen = 0;
rLoc = 136;
rType = 0;
vrLen = 1083;
vrLoc = 0;
};
B50FD72C0E3B87EE003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 221";
rLen = 0;
rLoc = 7517;
rType = 0;
vrLen = 1637;
vrLoc = 2155;
};
B50FD72D0E3B87EE003CEB08 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 803";
rLen = 0;
rLoc = 24029;
rType = 0;
vrLen = 1526;
vrLoc = 0;
};
B50FD72E0E3B87EE003CEB08 /* PBXTextBookmark */ = {
B5AACAC30E3F3DDC00064080 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 221";
rLen = 0;
rLoc = 7517;
rType = 0;
vrLen = 1800;
vrLoc = 6251;
};
B513D3E90E2BD48A000A50C6 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 089C165DFE840E0CC02AAC07 /* English */;
name = "InfoPlist.strings: 3";
rLen = 0;
rLoc = 104;
rType = 0;
vrLen = 110;
vrLoc = 0;
};
B513D3EA0E2BD48A000A50C6 /* PlistBookmark */ = {
isa = PlistBookmark;
fRef = 8D1107310486CEB800E47090 /* Info.plist */;
fallbackIsa = PBXBookmark;
isK = 0;
kPath = (
CFBundleIdentifier,
);
name = "/Users/ben/asi-http-request/Info.plist";
rLen = 0;
rLoc = 2147483647;
};
B513D4020E2BD48A000A50C6 /* PlistBookmark */ = {
isa = PlistBookmark;
fRef = 8D1107310486CEB800E47090 /* Info.plist */;
fallbackIsa = PBXBookmark;
isK = 0;
kPath = (
);
name = "/Users/ben/asi-http-request/Info.plist";
rLen = 0;
rLoc = 2147483647;
};
B513D4030E2BD48A000A50C6 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 089C165DFE840E0CC02AAC07 /* English */;
name = "InfoPlist.strings: 1";
rLen = 0;
rLoc = 0;
rType = 0;
vrLen = 100;
vrLoc = 0;
};
B513D4170E2BE8A9000A50C6 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
name = "AppDelegate.h: 7";
name = "ASIHTTPRequest.h: 205";
rLen = 0;
rLoc = 136;
rLoc = 6948;
rType = 0;
vrLen = 1036;
vrLoc = 0;
};
B513D41B0E2BE8A9000A50C6 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
name = "ASIProgressDelegate.h: 2";
rLen = 0;
rLoc = 28;
rType = 0;
vrLen = 340;
vrLoc = 0;
vrLen = 1629;
vrLoc = 5471;
};
B5ABC7A70E24C5280072F422 /* asi-http-request */ = {
isa = PBXExecutable;
... ... @@ -1172,7 +526,7 @@
argumentStrings = (
);
autoAttachOnCrash = 1;
breakpointsEnabled = 1;
breakpointsEnabled = 0;
configStateDict = {
};
customDataFormattersEnabled = 1;
... ... @@ -1181,6 +535,16 @@
dylibVariantSuffix = "";
enableDebugStr = 1;
environmentEntries = (
{
active = YES;
name = CFZombieLevel;
value = 5;
},
{
active = YES;
name = NSZombieEnabled;
value = YES;
},
);
executableSystemSymbolLevel = 0;
executableUserSymbolLevel = 0;
... ... @@ -1206,30 +570,30 @@
};
B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1236, 11298}}";
sepNavSelRange = "{24029, 0}";
sepNavVisRange = "{0, 1526}";
sepNavWindowFrame = "{{190, -388}, {1475, 874}}";
sepNavIntBoundsRect = "{{0, 0}, {1416, 10374}}";
sepNavSelRange = "{0, 0}";
sepNavVisRange = "{20938, 2123}";
sepNavWindowFrame = "{{500, 55}, {1475, 874}}";
};
};
B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1073, 3388}}";
sepNavSelRange = "{7517, 0}";
sepNavVisRange = "{6251, 1800}";
sepNavIntBoundsRect = "{{0, 0}, {1073, 2968}}";
sepNavSelRange = "{6948, 0}";
sepNavVisRange = "{5471, 1629}";
sepNavWindowFrame = "{{19, 304}, {1475, 874}}";
};
};
B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1073, 760}}";
sepNavIntBoundsRect = "{{0, 0}, {1073, 647}}";
sepNavSelRange = "{360, 0}";
sepNavVisRange = "{0, 360}";
};
};
B5ABC80D0E24CB100072F422 /* AppDelegate.h */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1073, 783}}";
sepNavIntBoundsRect = "{{0, 0}, {1073, 647}}";
sepNavSelRange = "{136, 0}";
sepNavVisRange = "{0, 1083}";
sepNavWindowFrame = "{{15, -1}, {1475, 874}}";
... ... @@ -1237,9 +601,9 @@
};
B5ABC80E0E24CB100072F422 /* AppDelegate.m */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1073, 2534}}";
sepNavSelRange = "{682, 0}";
sepNavVisRange = "{0, 1605}";
sepNavIntBoundsRect = "{{0, 0}, {1073, 2548}}";
sepNavSelRange = "{354, 0}";
sepNavVisRange = "{0, 1038}";
sepNavWindowFrame = "{{84, 60}, {1475, 1050}}";
};
};
... ...