Ben Copsey

Fix using one too many boundary strings in post data. Some servers (like PHP) co…

…uld handle this, which is why I didn't catch it before. Others (like Rails) would fail. Now compatible with Rails, anyway.
Split username and password setter into two
Added domain for NTLM authentication, will be applied if server asks for it (untested!)
Fix wrong url in tests
build
... ...
... ... @@ -61,6 +61,9 @@
NSString *username;
NSString *password;
//Domain used for NTLM authentication
NSString *domain;
//Delegate for displaying upload progress (usually an NSProgressIndicator, but you can supply a different object and handle this yourself)
NSObject <ASIProgressDelegate> *uploadProgressDelegate;
... ... @@ -129,9 +132,6 @@
//Add the contents of a local file as a POST variable to the request
- (void)setFile:(NSString *)filePath forKey:(NSString *)key;
// When set, username and password will be presented for HTTP authentication
- (void)setUsername:(NSString *)newUsername andPassword:(NSString *)newPassword;
#pragma mark get information about this request
- (BOOL)isFinished; //Same thing, for NSOperationQueues to read
... ... @@ -215,6 +215,9 @@
// Remove credentials from the keychain
+ (void)removeCredentialsForHost:(NSString *)host port:(int)port protocol:(NSString *)protocol realm:(NSString *)realm;
@property (retain) NSString *username;
@property (retain) NSString *password;
@property (retain) NSString *domain;
@property (retain,readonly) NSURL *url;
@property (assign) id delegate;
... ...
... ... @@ -110,15 +110,6 @@ static void ReadStreamClientCallBack(CFReadStreamRef readStream, CFStreamEventTy
[fileData setValue:filePath forKey:key];
}
- (void)setUsername:(NSString *)newUsername andPassword:(NSString *)newPassword
{
[username release];
username = [newUsername retain];
[password release];
password = [newPassword retain];
}
#pragma mark get information about this request
... ... @@ -190,25 +181,35 @@ static void ReadStreamClientCallBack(CFReadStreamRef readStream, CFStreamEventTy
NSData *endItemBoundary = [[NSString stringWithFormat:@"\r\n--%@\r\n",stringBoundary] dataUsingEncoding:NSUTF8StringEncoding];
NSEnumerator *e = [postData keyEnumerator];
NSString *key;
int i=0;
while (key = [e nextObject]) {
[postBody appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"%@\"\r\n\r\n",key] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[postData objectForKey:key] dataUsingEncoding:NSUTF8StringEncoding]];
i++;
if (i != [postData count] || [fileData count] > 0) { //Only add the boundary if this is not the last item in the post body
[postBody appendData:endItemBoundary];
}
}
//Adds files to upload
NSData *contentTypeHeader = [[NSString stringWithString:@"Content-Type: application/octet-stream\r\n\r\n"] dataUsingEncoding:NSUTF8StringEncoding];
NSData *contentBlueprintHeader = [[NSString stringWithString:@"Content-Type: application/octet-stream\r\n\r\n"] dataUsingEncoding:NSUTF8StringEncoding];
e = [fileData keyEnumerator];
i=0;
while (key = [e nextObject]) {
NSString *filePath = [fileData objectForKey:key];
[postBody appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"%@\"; filename=\"%@\"\r\n",key,[filePath lastPathComponent]] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:contentTypeHeader];
[postBody appendData:contentBlueprintHeader];
[postBody appendData:[NSData dataWithContentsOfMappedFile:filePath]];
i++;
if (i != [fileData count]) { //Only add the boundary if this is not the last item in the post body
[postBody appendData:endItemBoundary];
}
}
[postBody appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",stringBoundary] dataUsingEncoding:NSUTF8StringEncoding]];
NSString *foo = [[[NSString alloc] initWithBytes:[postBody bytes] length:[postBody length] encoding:NSUTF8StringEncoding] autorelease];
// Set the body.
CFHTTPMessageSetBody(request, (CFDataRef)postBody);
... ... @@ -465,6 +466,11 @@ static void ReadStreamClientCallBack(CFReadStreamRef readStream, CFStreamEventTy
{
NSMutableDictionary *newCredentials = [[[NSMutableDictionary alloc] init] autorelease];
// Is an account domain needed? (used currently for NTLM only)
if (CFHTTPAuthenticationRequiresAccountDomain(requestAuthentication)) {
[newCredentials setObject:domain forKey:(NSString *)kCFHTTPAuthenticationAccountDomain];
}
// Get the authentication realm
[authenticationRealm release];
authenticationRealm = nil;
... ... @@ -763,8 +769,9 @@ static void ReadStreamClientCallBack(CFReadStreamRef readStream, CFStreamEventTy
}
@synthesize username;
@synthesize password;
@synthesize domain;
@synthesize url;
@synthesize delegate;
@synthesize uploadProgressDelegate;
... ...
... ... @@ -62,7 +62,7 @@ More tests needed for:
NSOperationQueue *queue = [[[NSOperationQueue alloc] init] autorelease];
NSURL *url;
url = [[[NSURL alloc] initWithString:@"http:/allseeing-i.com/asi-http-request/tests/first"] autorelease];
url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com/asi-http-request/tests/first"] autorelease];
ASIHTTPRequest *request1 = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
[queue addOperation:request1];
... ...
... ... @@ -26,3 +26,7 @@ ASIHTTPRequest is partly based on code from Apple's ImageClient code samples, so
ASIHTTPRequest is my first open source Objective-C code. I hope to expand the class and example application further (unit tests, maybe even iphone examples...) in the coming months. If you find it helpful, please do get in touch!
To do:
NTLM Authentication?
Digest Authentication?
PUT / DELETE /GET?
... ...
... ... @@ -304,7 +304,7 @@
<real>312</real>
</array>
<key>RubberWindowFrame</key>
<string>408 248 1342 819 0 0 1920 1178 </string>
<string>409 250 1342 819 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXSmartGroupTreeModule</string>
... ... @@ -334,7 +334,7 @@
<key>_historyCapacity</key>
<integer>0</integer>
<key>bookmark</key>
<string>B5F3B7490E43698300E001FD</string>
<string>B567EF2F0E4EDC06001E238F</string>
<key>history</key>
<array>
<string>B5731B8B0E4310180008024F</string>
... ... @@ -345,12 +345,12 @@
<string>B5731E180E43424A0008024F</string>
<string>B5731E330E4344F90008024F</string>
<string>B5731E550E435ADB0008024F</string>
<string>B5F3B71B0E4367CA00E001FD</string>
<string>B5F3B71C0E4367CA00E001FD</string>
<string>B5F3B7370E43683600E001FD</string>
<string>B5F3B7380E43683600E001FD</string>
<string>B5F3B7440E43698300E001FD</string>
<string>B5F3B7450E43698300E001FD</string>
<string>B5F3B74C0E4378FA00E001FD</string>
<string>B567EEF10E4EDA85001E238F</string>
<string>B567EF2B0E4EDC06001E238F</string>
<string>B567EF2C0E4EDC06001E238F</string>
<string>B567EF140E4EDB3D001E238F</string>
</array>
<key>prevStack</key>
<array>
... ... @@ -367,21 +367,16 @@
<string>B5731BC00E4319180008024F</string>
<string>B5731BF60E431A050008024F</string>
<string>B5731D9B0E433A750008024F</string>
<string>B5F3B7200E4367CA00E001FD</string>
<string>B5F3B7210E4367CA00E001FD</string>
<string>B5F3B7220E4367CA00E001FD</string>
<string>B5F3B7230E4367CA00E001FD</string>
<string>B5F3B7240E4367CA00E001FD</string>
<string>B5F3B7250E4367CA00E001FD</string>
<string>B5F3B7260E4367CA00E001FD</string>
<string>B5F3B7270E4367CA00E001FD</string>
<string>B5F3B7280E4367CA00E001FD</string>
<string>B5F3B7290E4367CA00E001FD</string>
<string>B5F3B7390E43683600E001FD</string>
<string>B5F3B73A0E43683600E001FD</string>
<string>B5F3B7460E43698300E001FD</string>
<string>B5F3B7470E43698300E001FD</string>
<string>B5F3B7480E43698300E001FD</string>
<string>B567EEF40E4EDA85001E238F</string>
<string>B567EEF50E4EDA85001E238F</string>
<string>B567EEF60E4EDA85001E238F</string>
<string>B567EEF70E4EDA85001E238F</string>
<string>B567EEF80E4EDA85001E238F</string>
<string>B567EEF90E4EDA85001E238F</string>
<string>B567EF160E4EDB3D001E238F</string>
<string>B567EF2D0E4EDC06001E238F</string>
<string>B567EF2E0E4EDC06001E238F</string>
</array>
</dict>
<key>SplitCount</key>
... ... @@ -395,7 +390,7 @@
<key>Frame</key>
<string>{{0, 0}, {1008, 679}}</string>
<key>RubberWindowFrame</key>
<string>408 248 1342 819 0 0 1920 1178 </string>
<string>409 250 1342 819 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
... ... @@ -415,7 +410,7 @@
<key>Frame</key>
<string>{{0, 684}, {1008, 94}}</string>
<key>RubberWindowFrame</key>
<string>408 248 1342 819 0 0 1920 1178 </string>
<string>409 250 1342 819 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>XCDetailModule</string>
... ... @@ -439,9 +434,9 @@
</array>
<key>TableOfContents</key>
<array>
<string>B5F3B72C0E4367CA00E001FD</string>
<string>B567EEE20E4ED8D2001E238F</string>
<string>1CE0B1FE06471DED0097A5F4</string>
<string>B5F3B72D0E4367CA00E001FD</string>
<string>B567EEE30E4ED8D2001E238F</string>
<string>1CE0B20306471E060097A5F4</string>
<string>1CE0B20506471E060097A5F4</string>
</array>
... ... @@ -575,16 +570,15 @@
<integer>5</integer>
<key>WindowOrderList</key>
<array>
<string>B5F3B7100E4367C800E001FD</string>
<string>B5F3B72F0E4367CA00E001FD</string>
<string>B5F3B7300E4367CA00E001FD</string>
<string>B567EF0F0E4EDB31001E238F</string>
<string>B567EF100E4EDB31001E238F</string>
<string>B5ABC8410E24CDE70072F422</string>
<string>1C78EAAD065D492600B07095</string>
<string>1CD10A99069EF8BA00B06720</string>
<string>1C78EAAD065D492600B07095</string>
<string>/Users/ben/asi-http-request/asi-http-request.xcodeproj</string>
</array>
<key>WindowString</key>
<string>408 248 1342 819 0 0 1920 1178 </string>
<string>409 250 1342 819 0 0 1920 1178 </string>
<key>WindowToolsV3</key>
<array>
<dict>
... ... @@ -600,12 +594,14 @@
<key>Dock</key>
<array>
<dict>
<key>BecomeActive</key>
<true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>1CD0528F0623707200166675</string>
<key>PBXProjectModuleLabel</key>
<string></string>
<string>ASIHTTPRequestTests.m</string>
<key>StatusBarVisibility</key>
<true/>
</dict>
... ... @@ -614,7 +610,7 @@
<key>Frame</key>
<string>{{0, 0}, {1440, 536}}</string>
<key>RubberWindowFrame</key>
<string>241 -125 1440 818 0 0 1920 1178 </string>
<string>287 118 1440 818 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
... ... @@ -638,7 +634,7 @@
<key>Frame</key>
<string>{{0, 541}, {1440, 236}}</string>
<key>RubberWindowFrame</key>
<string>241 -125 1440 818 0 0 1920 1178 </string>
<string>287 118 1440 818 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXBuildResultsModule</string>
... ... @@ -661,18 +657,18 @@
<key>TableOfContents</key>
<array>
<string>B5ABC8410E24CDE70072F422</string>
<string>B5F3B7080E4367C800E001FD</string>
<string>B567EEE40E4ED8D2001E238F</string>
<string>1CD0528F0623707200166675</string>
<string>XCMainBuildResultsModuleGUID</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.buildV3</string>
<key>WindowString</key>
<string>241 -125 1440 818 0 0 1920 1178 </string>
<string>287 118 1440 818 0 0 1920 1178 </string>
<key>WindowToolGUID</key>
<string>B5ABC8410E24CDE70072F422</string>
<key>WindowToolIsVisible</key>
<false/>
<true/>
</dict>
<dict>
<key>FirstTimeWindowDisplayed</key>
... ... @@ -746,21 +742,19 @@
<key>DebugVariablesTableConfiguration</key>
<array>
<string>Name</string>
<real>348</real>
<string>Type</string>
<real>216</real>
<real>420</real>
<string>Value</string>
<real>184</real>
<real>255</real>
<string>Summary</string>
<real>80</real>
<real>151</real>
</array>
<key>Frame</key>
<string>{{713, 0}, {851, 339}}</string>
<key>RubberWindowFrame</key>
<string>238 283 1564 676 0 0 1920 1178 </string>
<string>158 131 1564 676 0 0 1920 1178 </string>
</dict>
<key>RubberWindowFrame</key>
<string>238 283 1564 676 0 0 1920 1178 </string>
<string>158 131 1564 676 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXDebugSessionModule</string>
... ... @@ -783,18 +777,18 @@
<key>TableOfContents</key>
<array>
<string>1CD10A99069EF8BA00B06720</string>
<string>B5F3B7090E4367C800E001FD</string>
<string>B567EEE50E4ED8D2001E238F</string>
<string>1C162984064C10D400B95A72</string>
<string>B5F3B70A0E4367C800E001FD</string>
<string>B5F3B70B0E4367C800E001FD</string>
<string>B5F3B70C0E4367C800E001FD</string>
<string>B5F3B70D0E4367C800E001FD</string>
<string>B5F3B70E0E4367C800E001FD</string>
<string>B567EEE60E4ED8D2001E238F</string>
<string>B567EEE70E4ED8D2001E238F</string>
<string>B567EEE80E4ED8D2001E238F</string>
<string>B567EEE90E4ED8D2001E238F</string>
<string>B567EEEA0E4ED8D2001E238F</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.debugV3</string>
<key>WindowString</key>
<string>238 283 1564 676 0 0 1920 1178 </string>
<string>158 131 1564 676 0 0 1920 1178 </string>
<key>WindowToolGUID</key>
<string>1CD10A99069EF8BA00B06720</string>
<key>WindowToolIsVisible</key>
... ... @@ -922,7 +916,7 @@
<key>Frame</key>
<string>{{0, 0}, {636, 839}}</string>
<key>RubberWindowFrame</key>
<string>121 12 636 880 0 0 1920 1178 </string>
<string>138 298 636 880 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXDebugCLIModule</string>
... ... @@ -945,13 +939,13 @@
<key>TableOfContents</key>
<array>
<string>1C78EAAD065D492600B07095</string>
<string>B5F3B70F0E4367C800E001FD</string>
<string>B567EEEB0E4ED8D2001E238F</string>
<string>1C78EAAC065D492600B07095</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.consoleV3</string>
<key>WindowString</key>
<string>121 12 636 880 0 0 1920 1178 </string>
<string>138 298 636 880 0 0 1920 1178 </string>
<key>WindowToolGUID</key>
<string>1C78EAAD065D492600B07095</string>
<key>WindowToolIsVisible</key>
... ...
... ... @@ -127,12 +127,38 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
PBXPerProjectTemplateStateSaveDate = 239296833;
PBXWorkspaceStateSaveDate = 239296833;
PBXPerProjectTemplateStateSaveDate = 240048315;
PBXWorkspaceStateSaveDate = 240048315;
};
perUserProjectItems = {
B513D4020E2BD48A000A50C6 = B513D4020E2BD48A000A50C6 /* PlistBookmark */;
B513D4030E2BD48A000A50C6 = B513D4030E2BD48A000A50C6 /* PBXTextBookmark */;
B567EEE10E4ED8D2001E238F /* PBXTextBookmark */ = B567EEE10E4ED8D2001E238F /* PBXTextBookmark */;
B567EEEE0E4EDA82001E238F /* PBXTextBookmark */ = B567EEEE0E4EDA82001E238F /* PBXTextBookmark */;
B567EEEF0E4EDA82001E238F /* PBXTextBookmark */ = B567EEEF0E4EDA82001E238F /* PBXTextBookmark */;
B567EEF10E4EDA85001E238F /* PBXTextBookmark */ = B567EEF10E4EDA85001E238F /* PBXTextBookmark */;
B567EEF20E4EDA85001E238F /* PBXTextBookmark */ = B567EEF20E4EDA85001E238F /* PBXTextBookmark */;
B567EEF30E4EDA85001E238F /* PBXTextBookmark */ = B567EEF30E4EDA85001E238F /* PBXTextBookmark */;
B567EEF40E4EDA85001E238F /* PBXTextBookmark */ = B567EEF40E4EDA85001E238F /* PBXTextBookmark */;
B567EEF50E4EDA85001E238F /* PBXTextBookmark */ = B567EEF50E4EDA85001E238F /* PBXTextBookmark */;
B567EEF60E4EDA85001E238F /* PBXTextBookmark */ = B567EEF60E4EDA85001E238F /* PBXTextBookmark */;
B567EEF70E4EDA85001E238F /* PBXTextBookmark */ = B567EEF70E4EDA85001E238F /* PBXTextBookmark */;
B567EEF80E4EDA85001E238F /* PBXTextBookmark */ = B567EEF80E4EDA85001E238F /* PBXTextBookmark */;
B567EEF90E4EDA85001E238F /* PBXTextBookmark */ = B567EEF90E4EDA85001E238F /* PBXTextBookmark */;
B567EEFA0E4EDA85001E238F /* PBXTextBookmark */ = B567EEFA0E4EDA85001E238F /* PBXTextBookmark */;
B567EEFC0E4EDA95001E238F /* PBXTextBookmark */ = B567EEFC0E4EDA95001E238F /* PBXTextBookmark */;
B567EF0D0E4EDB31001E238F /* PBXTextBookmark */ = B567EF0D0E4EDB31001E238F /* PBXTextBookmark */;
B567EF140E4EDB3D001E238F /* PBXTextBookmark */ = B567EF140E4EDB3D001E238F /* PBXTextBookmark */;
B567EF150E4EDB3D001E238F /* PBXTextBookmark */ = B567EF150E4EDB3D001E238F /* PBXTextBookmark */;
B567EF160E4EDB3D001E238F /* PBXTextBookmark */ = B567EF160E4EDB3D001E238F /* PBXTextBookmark */;
B567EF170E4EDB3D001E238F /* PBXTextBookmark */ = B567EF170E4EDB3D001E238F /* PBXTextBookmark */;
B567EF230E4EDBA2001E238F /* PBXTextBookmark */ = B567EF230E4EDBA2001E238F /* PBXTextBookmark */;
B567EF290E4EDBC5001E238F /* PBXTextBookmark */ = B567EF290E4EDBC5001E238F /* PBXTextBookmark */;
B567EF2B0E4EDC06001E238F /* PBXTextBookmark */ = B567EF2B0E4EDC06001E238F /* PBXTextBookmark */;
B567EF2C0E4EDC06001E238F /* PBXTextBookmark */ = B567EF2C0E4EDC06001E238F /* PBXTextBookmark */;
B567EF2D0E4EDC06001E238F /* PBXTextBookmark */ = B567EF2D0E4EDC06001E238F /* PBXTextBookmark */;
B567EF2E0E4EDC06001E238F /* PBXTextBookmark */ = B567EF2E0E4EDC06001E238F /* PBXTextBookmark */;
B567EF2F0E4EDC06001E238F /* PBXTextBookmark */ = B567EF2F0E4EDC06001E238F /* PBXTextBookmark */;
B5731B390E430D310008024F = B5731B390E430D310008024F /* PBXTextBookmark */;
B5731B3A0E430D310008024F = B5731B3A0E430D310008024F /* PBXTextBookmark */;
B5731B8B0E4310180008024F = B5731B8B0E4310180008024F /* PBXTextBookmark */;
... ... @@ -142,151 +168,42 @@
B5731BEE0E431A050008024F = B5731BEE0E431A050008024F /* PBXTextBookmark */;
B5731BEF0E431A050008024F = B5731BEF0E431A050008024F /* PlistBookmark */;
B5731BF00E431A050008024F = B5731BF00E431A050008024F /* PBXTextBookmark */;
B5731BF30E431A050008024F = B5731BF30E431A050008024F /* PBXTextBookmark */;
B5731BF40E431A050008024F = B5731BF40E431A050008024F /* PBXTextBookmark */;
B5731BF50E431A050008024F = B5731BF50E431A050008024F /* PlistBookmark */;
B5731BF60E431A050008024F = B5731BF60E431A050008024F /* PBXTextBookmark */;
B5731BF70E431A050008024F = B5731BF70E431A050008024F /* PBXTextBookmark */;
B5731BF80E431A050008024F = B5731BF80E431A050008024F /* PBXTextBookmark */;
B5731BF90E431A050008024F = B5731BF90E431A050008024F /* PBXTextBookmark */;
B5731BFA0E431A050008024F = B5731BFA0E431A050008024F /* PBXTextBookmark */;
B5731BFB0E431A050008024F = B5731BFB0E431A050008024F /* PBXTextBookmark */;
B5731BFC0E431A050008024F = B5731BFC0E431A050008024F /* PBXTextBookmark */;
B5731C0B0E431A3C0008024F = B5731C0B0E431A3C0008024F /* PBXTextBookmark */;
B5731C350E431B3F0008024F = B5731C350E431B3F0008024F /* PBXTextBookmark */;
B5731C360E431B3F0008024F = B5731C360E431B3F0008024F /* PBXTextBookmark */;
B5731C370E431B3F0008024F = B5731C370E431B3F0008024F /* PBXTextBookmark */;
B5731C380E431B3F0008024F = B5731C380E431B3F0008024F /* PBXTextBookmark */;
B5731C4D0E431B890008024F = B5731C4D0E431B890008024F /* PBXTextBookmark */;
B5731C4E0E431B890008024F = B5731C4E0E431B890008024F /* PBXTextBookmark */;
B5731C4F0E431B890008024F = B5731C4F0E431B890008024F /* PBXTextBookmark */;
B5731C500E431B890008024F = B5731C500E431B890008024F /* PBXTextBookmark */;
B5731C620E431CD80008024F = B5731C620E431CD80008024F /* PBXTextBookmark */;
B5731C630E431CD80008024F = B5731C630E431CD80008024F /* PBXTextBookmark */;
B5731C7C0E4333810008024F = B5731C7C0E4333810008024F /* PBXTextBookmark */;
B5731C7D0E4333810008024F = B5731C7D0E4333810008024F /* PBXTextBookmark */;
B5731C7E0E4333810008024F = B5731C7E0E4333810008024F /* PBXTextBookmark */;
B5731C7F0E4333810008024F = B5731C7F0E4333810008024F /* PBXTextBookmark */;
B5731C800E4333810008024F = B5731C800E4333810008024F /* PBXTextBookmark */;
B5731C810E4333810008024F = B5731C810E4333810008024F /* PBXTextBookmark */;
B5731C820E4333810008024F = B5731C820E4333810008024F /* PBXTextBookmark */;
B5731C830E4333810008024F = B5731C830E4333810008024F /* PBXTextBookmark */;
B5731C840E4333810008024F = B5731C840E4333810008024F /* PBXTextBookmark */;
B5731C9A0E4334260008024F = B5731C9A0E4334260008024F /* PBXTextBookmark */;
B5731C9B0E4334260008024F = B5731C9B0E4334260008024F /* PBXTextBookmark */;
B5731C9C0E4334260008024F = B5731C9C0E4334260008024F /* PBXTextBookmark */;
B5731C9D0E4334260008024F = B5731C9D0E4334260008024F /* PBXTextBookmark */;
B5731D840E4339F30008024F = B5731D840E4339F30008024F /* PBXTextBookmark */;
B5731D8C0E433A1F0008024F = B5731D8C0E433A1F0008024F /* PBXTextBookmark */;
B5731D990E433A750008024F = B5731D990E433A750008024F /* PBXTextBookmark */;
B5731D9A0E433A750008024F = B5731D9A0E433A750008024F /* PBXTextBookmark */;
B5731D9B0E433A750008024F = B5731D9B0E433A750008024F /* PBXTextBookmark */;
B5731D9C0E433A750008024F = B5731D9C0E433A750008024F /* PBXTextBookmark */;
B5731DA50E433B550008024F = B5731DA50E433B550008024F /* PBXTextBookmark */;
B5731DA60E433B550008024F = B5731DA60E433B550008024F /* PBXTextBookmark */;
B5731DBB0E433E280008024F = B5731DBB0E433E280008024F /* PBXTextBookmark */;
B5731DBC0E433E280008024F = B5731DBC0E433E280008024F /* PBXTextBookmark */;
B5731DBD0E433E280008024F = B5731DBD0E433E280008024F /* PBXTextBookmark */;
B5731DBE0E433E280008024F = B5731DBE0E433E280008024F /* PBXTextBookmark */;
B5731DBF0E433E280008024F = B5731DBF0E433E280008024F /* PBXTextBookmark */;
B5731DC00E433E280008024F = B5731DC00E433E280008024F /* PBXTextBookmark */;
B5731DC10E433E280008024F = B5731DC10E433E280008024F /* PBXTextBookmark */;
B5731DC20E433E280008024F = B5731DC20E433E280008024F /* PBXTextBookmark */;
B5731DC30E433E280008024F = B5731DC30E433E280008024F /* PBXTextBookmark */;
B5731DC40E433E280008024F = B5731DC40E433E280008024F /* PBXTextBookmark */;
B5731DDC0E433E990008024F = B5731DDC0E433E990008024F /* PBXTextBookmark */;
B5731DEA0E4340CF0008024F = B5731DEA0E4340CF0008024F /* PBXTextBookmark */;
B5731DEB0E4340CF0008024F = B5731DEB0E4340CF0008024F /* PBXTextBookmark */;
B5731DEC0E4340CF0008024F = B5731DEC0E4340CF0008024F /* PBXTextBookmark */;
B5731DED0E4340CF0008024F = B5731DED0E4340CF0008024F /* PBXTextBookmark */;
B5731DEE0E4340CF0008024F = B5731DEE0E4340CF0008024F /* PBXTextBookmark */;
B5731E180E43424A0008024F = B5731E180E43424A0008024F /* PBXTextBookmark */;
B5731E1A0E43424A0008024F = B5731E1A0E43424A0008024F /* PBXTextBookmark */;
B5731E1B0E43424A0008024F = B5731E1B0E43424A0008024F /* PBXTextBookmark */;
B5731E330E4344F90008024F = B5731E330E4344F90008024F /* PBXTextBookmark */;
B5731E350E4344F90008024F = B5731E350E4344F90008024F /* PBXTextBookmark */;
B5731E360E4344F90008024F = B5731E360E4344F90008024F /* PBXTextBookmark */;
B5731E370E4344F90008024F = B5731E370E4344F90008024F /* PBXTextBookmark */;
B5731E380E4344F90008024F = B5731E380E4344F90008024F /* PBXTextBookmark */;
B5731E390E4344F90008024F = B5731E390E4344F90008024F /* PBXTextBookmark */;
B5731E3A0E4344F90008024F = B5731E3A0E4344F90008024F /* PBXTextBookmark */;
B5731E3B0E4344F90008024F = B5731E3B0E4344F90008024F /* PBXTextBookmark */;
B5731E3C0E4344F90008024F = B5731E3C0E4344F90008024F /* PBXTextBookmark */;
B5731E3D0E4344F90008024F = B5731E3D0E4344F90008024F /* PBXTextBookmark */;
B5731E3E0E4344F90008024F = B5731E3E0E4344F90008024F /* PBXTextBookmark */;
B5731E3F0E4344F90008024F = B5731E3F0E4344F90008024F /* PBXTextBookmark */;
B5731E400E4344F90008024F = B5731E400E4344F90008024F /* PBXTextBookmark */;
B5731E410E4344F90008024F = B5731E410E4344F90008024F /* PBXTextBookmark */;
B5731E420E4344F90008024F = B5731E420E4344F90008024F /* PBXTextBookmark */;
B5731E430E4344F90008024F = B5731E430E4344F90008024F /* PBXTextBookmark */;
B5731E440E4344F90008024F = B5731E440E4344F90008024F /* PBXTextBookmark */;
B5731E450E4344F90008024F = B5731E450E4344F90008024F /* PBXTextBookmark */;
B5731E540E435ADB0008024F = B5731E540E435ADB0008024F /* PBXTextBookmark */;
B5731E550E435ADB0008024F = B5731E550E435ADB0008024F /* PBXTextBookmark */;
B5731E560E435ADB0008024F = B5731E560E435ADB0008024F /* PBXTextBookmark */;
B5731E580E435ADB0008024F = B5731E580E435ADB0008024F /* PBXTextBookmark */;
B5731E5A0E435ADB0008024F = B5731E5A0E435ADB0008024F /* PBXTextBookmark */;
B5731E5B0E435ADB0008024F = B5731E5B0E435ADB0008024F /* PBXTextBookmark */;
B5731E5C0E435ADB0008024F = B5731E5C0E435ADB0008024F /* PBXTextBookmark */;
B5731E5D0E435ADB0008024F = B5731E5D0E435ADB0008024F /* PBXTextBookmark */;
B5731E5E0E435ADB0008024F = B5731E5E0E435ADB0008024F /* PBXTextBookmark */;
B5731E5F0E435ADB0008024F = B5731E5F0E435ADB0008024F /* PBXTextBookmark */;
B5731E600E435ADB0008024F = B5731E600E435ADB0008024F /* PBXTextBookmark */;
B5731E610E435ADB0008024F = B5731E610E435ADB0008024F /* PBXTextBookmark */;
B5731E620E435ADB0008024F = B5731E620E435ADB0008024F /* PBXTextBookmark */;
B5731E630E435ADB0008024F = B5731E630E435ADB0008024F /* PBXTextBookmark */;
B5731E640E435ADB0008024F = B5731E640E435ADB0008024F /* PBXTextBookmark */;
B5731E650E435ADB0008024F = B5731E650E435ADB0008024F /* PBXTextBookmark */;
B5731E660E435ADB0008024F = B5731E660E435ADB0008024F /* PBXTextBookmark */;
B5731E670E435ADB0008024F = B5731E670E435ADB0008024F /* PBXTextBookmark */;
B5731E680E435ADB0008024F = B5731E680E435ADB0008024F /* PBXTextBookmark */;
B5731E690E435ADB0008024F = B5731E690E435ADB0008024F /* PBXTextBookmark */;
B5731E6A0E435ADB0008024F = B5731E6A0E435ADB0008024F /* PBXTextBookmark */;
B5731E6B0E435ADB0008024F = B5731E6B0E435ADB0008024F /* PBXTextBookmark */;
B5731E6C0E435ADB0008024F = B5731E6C0E435ADB0008024F /* PBXTextBookmark */;
B5731E6D0E435ADB0008024F = B5731E6D0E435ADB0008024F /* PBXTextBookmark */;
B5731E6E0E435ADB0008024F = B5731E6E0E435ADB0008024F /* PBXTextBookmark */;
B5731E6F0E435ADB0008024F = B5731E6F0E435ADB0008024F /* PBXTextBookmark */;
B5731E700E435ADB0008024F = B5731E700E435ADB0008024F /* PBXTextBookmark */;
B5731E710E435ADB0008024F = B5731E710E435ADB0008024F /* PBXTextBookmark */;
B5731E720E435ADB0008024F = B5731E720E435ADB0008024F /* PBXTextBookmark */;
B5731E740E435DE50008024F = B5731E740E435DE50008024F /* PBXTextBookmark */;
B5731E750E435DE50008024F = B5731E750E435DE50008024F /* PBXTextBookmark */;
B5731E760E435DE50008024F = B5731E760E435DE50008024F /* PBXTextBookmark */;
B5731E770E435DE50008024F = B5731E770E435DE50008024F /* PBXTextBookmark */;
B5ABC8250E24CDE70072F422 = B5ABC8250E24CDE70072F422 /* PBXTextBookmark */;
B5ABC8260E24CDE70072F422 = B5ABC8260E24CDE70072F422 /* PBXTextBookmark */;
B5ABC8280E24CDE70072F422 = B5ABC8280E24CDE70072F422 /* PBXTextBookmark */;
B5ABC82F0E24CDE70072F422 = B5ABC82F0E24CDE70072F422 /* PBXTextBookmark */;
B5ABC8300E24CDE70072F422 = B5ABC8300E24CDE70072F422 /* PBXTextBookmark */;
B5F3B6D30E43613800E001FD /* PBXTextBookmark */ = B5F3B6D30E43613800E001FD /* PBXTextBookmark */;
B5F3B71B0E4367CA00E001FD /* PBXTextBookmark */ = B5F3B71B0E4367CA00E001FD /* PBXTextBookmark */;
B5F3B71C0E4367CA00E001FD /* PBXTextBookmark */ = B5F3B71C0E4367CA00E001FD /* PBXTextBookmark */;
B5F3B71D0E4367CA00E001FD /* PBXTextBookmark */ = B5F3B71D0E4367CA00E001FD /* PBXTextBookmark */;
B5F3B71E0E4367CA00E001FD /* PBXTextBookmark */ = B5F3B71E0E4367CA00E001FD /* PBXTextBookmark */;
B5F3B71F0E4367CA00E001FD /* PBXTextBookmark */ = B5F3B71F0E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7200E4367CA00E001FD /* PBXTextBookmark */ = B5F3B7200E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7210E4367CA00E001FD /* PBXTextBookmark */ = B5F3B7210E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7220E4367CA00E001FD /* PBXTextBookmark */ = B5F3B7220E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7230E4367CA00E001FD /* PBXTextBookmark */ = B5F3B7230E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7240E4367CA00E001FD /* PBXTextBookmark */ = B5F3B7240E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7250E4367CA00E001FD /* PBXTextBookmark */ = B5F3B7250E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7260E4367CA00E001FD /* PBXTextBookmark */ = B5F3B7260E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7270E4367CA00E001FD /* PBXTextBookmark */ = B5F3B7270E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7280E4367CA00E001FD /* PBXTextBookmark */ = B5F3B7280E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7290E4367CA00E001FD /* PBXTextBookmark */ = B5F3B7290E4367CA00E001FD /* PBXTextBookmark */;
B5F3B72A0E4367CA00E001FD /* PBXTextBookmark */ = B5F3B72A0E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7370E43683600E001FD /* PBXTextBookmark */ = B5F3B7370E43683600E001FD /* PBXTextBookmark */;
B5F3B7380E43683600E001FD /* PBXTextBookmark */ = B5F3B7380E43683600E001FD /* PBXTextBookmark */;
B5F3B7390E43683600E001FD /* PBXTextBookmark */ = B5F3B7390E43683600E001FD /* PBXTextBookmark */;
B5F3B73A0E43683600E001FD /* PBXTextBookmark */ = B5F3B73A0E43683600E001FD /* PBXTextBookmark */;
B5F3B73B0E43683600E001FD /* PBXTextBookmark */ = B5F3B73B0E43683600E001FD /* PBXTextBookmark */;
B5F3B7440E43698300E001FD /* PBXTextBookmark */ = B5F3B7440E43698300E001FD /* PBXTextBookmark */;
B5F3B7450E43698300E001FD /* PBXTextBookmark */ = B5F3B7450E43698300E001FD /* PBXTextBookmark */;
B5F3B7460E43698300E001FD /* PBXTextBookmark */ = B5F3B7460E43698300E001FD /* PBXTextBookmark */;
B5F3B7470E43698300E001FD /* PBXTextBookmark */ = B5F3B7470E43698300E001FD /* PBXTextBookmark */;
B5F3B7480E43698300E001FD /* PBXTextBookmark */ = B5F3B7480E43698300E001FD /* PBXTextBookmark */;
B5F3B7490E43698300E001FD /* PBXTextBookmark */ = B5F3B7490E43698300E001FD /* PBXTextBookmark */;
B5F3B7200E4367CA00E001FD = B5F3B7200E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7210E4367CA00E001FD = B5F3B7210E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7220E4367CA00E001FD = B5F3B7220E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7230E4367CA00E001FD = B5F3B7230E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7240E4367CA00E001FD = B5F3B7240E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7250E4367CA00E001FD = B5F3B7250E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7260E4367CA00E001FD = B5F3B7260E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7270E4367CA00E001FD = B5F3B7270E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7280E4367CA00E001FD = B5F3B7280E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7290E4367CA00E001FD = B5F3B7290E4367CA00E001FD /* PBXTextBookmark */;
B5F3B7370E43683600E001FD = B5F3B7370E43683600E001FD /* PBXTextBookmark */;
B5F3B7380E43683600E001FD = B5F3B7380E43683600E001FD /* PBXTextBookmark */;
B5F3B7390E43683600E001FD = B5F3B7390E43683600E001FD /* PBXTextBookmark */;
B5F3B73A0E43683600E001FD = B5F3B73A0E43683600E001FD /* PBXTextBookmark */;
B5F3B7460E43698300E001FD = B5F3B7460E43698300E001FD /* PBXTextBookmark */;
B5F3B7470E43698300E001FD = B5F3B7470E43698300E001FD /* PBXTextBookmark */;
B5F3B7480E43698300E001FD = B5F3B7480E43698300E001FD /* PBXTextBookmark */;
B5F3B74A0E4378FA00E001FD = B5F3B74A0E4378FA00E001FD /* PBXTextBookmark */;
B5F3B74B0E4378FA00E001FD = B5F3B74B0E4378FA00E001FD /* PBXTextBookmark */;
B5F3B74C0E4378FA00E001FD = B5F3B74C0E4378FA00E001FD /* PBXTextBookmark */;
B5F3B74D0E4378FA00E001FD = B5F3B74D0E4378FA00E001FD /* PBXTextBookmark */;
B5F3B74E0E4378FA00E001FD = B5F3B74E0E4378FA00E001FD /* PBXTextBookmark */;
B5F3B74F0E4378FA00E001FD = B5F3B74F0E4378FA00E001FD /* PBXTextBookmark */;
B5F3B7500E4378FA00E001FD = B5F3B7500E4378FA00E001FD /* PBXTextBookmark */;
B5F3B7510E4378FA00E001FD = B5F3B7510E4378FA00E001FD /* PBXTextBookmark */;
B5F3B7520E4378FA00E001FD = B5F3B7520E4378FA00E001FD /* PBXTextBookmark */;
};
sourceControlManager = B5ABC7B50E24C52A0072F422 /* Source Control */;
userBuildSettings = {
... ... @@ -326,1289 +243,456 @@
vrLen = 100;
vrLoc = 0;
};
B5187CC70C1C186B002792C0 /* TimelineViewSelectionManagement.m */ = {
isa = PBXFileReference;
fileEncoding = 4;
lastKnownFileType = sourcecode.c.objc;
path = TimelineViewSelectionManagement.m;
sourceTree = "<group>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1379, 3948}}";
sepNavSelRange = "{3940, 5}";
sepNavVisRange = "{3400, 979}";
sepNavVisRect = "{{0, 0}, {0, 0}}";
sepNavWindowFrame = "{{189, 281}, {916, 494}}";
};
};
B5731AE50E430AC30008024F /* Tests */ = {
activeExec = 0;
};
B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {947, 624}}";
sepNavSelRange = "{250, 0}";
sepNavVisRange = "{0, 315}";
};
};
B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {947, 1666}}";
sepNavSelRange = "{3290, 0}";
sepNavVisRange = "{0, 1408}";
};
};
B5731B390E430D310008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 1";
rLen = 0;
rLoc = 0;
rType = 0;
vrLen = 260;
vrLoc = 0;
};
B5731B3A0E430D310008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 1";
rLen = 0;
rLoc = 0;
rType = 0;
vrLen = 238;
vrLoc = 0;
};
B5731B8B0E4310180008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731B8C0E4310180008024F /* SenTest.h */;
name = "SenTest.h: 1";
rLen = 0;
rLoc = 0;
rType = 0;
vrLen = 1915;
vrLoc = 0;
};
B5731B8C0E4310180008024F /* SenTest.h */ = {
isa = PBXFileReference;
lastKnownFileType = sourcecode.c.h;
name = SenTest.h;
path = /Developer/Library/Frameworks/SenTestingKit.framework/Headers/SenTest.h;
sourceTree = "<absolute>";
};
B5731B8F0E4310180008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731B900E4310180008024F /* SenTest.h */;
name = "SenTest.h: 1";
rLen = 0;
rLoc = 0;
rType = 0;
vrLen = 1915;
vrLoc = 0;
};
B5731B900E4310180008024F /* SenTest.h */ = {
isa = PBXFileReference;
lastKnownFileType = sourcecode.c.h;
name = SenTest.h;
path = /Developer/Library/Frameworks/SenTestingKit.framework/Headers/SenTest.h;
sourceTree = "<absolute>";
};
B5731BAD0E4318BF0008024F /* SenTestingKit.h */ = {
isa = PBXFileReference;
lastKnownFileType = sourcecode.c.h;
name = SenTestingKit.h;
path = /Developer/Library/Frameworks/SenTestingKit.framework/Headers/SenTestingKit.h;
sourceTree = "<absolute>";
};
B5731BBE0E4319180008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731BAD0E4318BF0008024F /* SenTestingKit.h */;
name = "SenTestingKit.h: 1";
rLen = 0;
rLoc = 0;
rType = 0;
vrLen = 2017;
vrLoc = 0;
};
B5731BC00E4319180008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731BAD0E4318BF0008024F /* SenTestingKit.h */;
name = "SenTestingKit.h: 1";
rLen = 0;
rLoc = 0;
rType = 0;
vrLen = 2017;
vrLoc = 0;
};
B5731BEE0E431A050008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 089C165DFE840E0CC02AAC07 /* English */;
name = "InfoPlist.strings: 3";
rLen = 0;
rLoc = 104;
rType = 0;
vrLen = 110;
vrLoc = 0;
};
B5731BEF0E431A050008024F /* 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;
};
B5731BF00E431A050008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 32CA4F630368D1EE00C91783 /* asi-http-request_Prefix.pch */;
name = "asi-http-request_Prefix.pch: 1";
rLen = 0;
rLoc = 0;
rType = 0;
vrLen = 163;
vrLoc = 0;
};
B5731BF30E431A050008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 9";
rLen = 0;
rLoc = 201;
rType = 0;
vrLen = 281;
vrLoc = 0;
};
B5731BF40E431A050008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 089C165DFE840E0CC02AAC07 /* English */;
name = "InfoPlist.strings: 3";
rLen = 0;
rLoc = 104;
rType = 0;
vrLen = 110;
vrLoc = 0;
};
B5731BF50E431A050008024F /* 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;
};
B5731BF60E431A050008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 32CA4F630368D1EE00C91783 /* asi-http-request_Prefix.pch */;
name = "asi-http-request_Prefix.pch: 1";
rLen = 0;
rLoc = 0;
rType = 0;
vrLen = 163;
vrLoc = 0;
};
B5731BF70E431A050008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 9";
rLen = 0;
rLoc = 201;
rType = 0;
vrLen = 281;
vrLoc = 0;
};
B5731BF80E431A050008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 20";
rLen = 0;
rLoc = 2006;
rType = 0;
vrLen = 575;
vrLoc = 0;
};
B5731BF90E431A050008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 9";
rLen = 0;
rLoc = 201;
rType = 0;
vrLen = 281;
vrLoc = 0;
};
B5731BFA0E431A050008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 20";
rLen = 0;
rLoc = 2006;
rType = 0;
vrLen = 575;
vrLoc = 0;
};
B5731BFB0E431A050008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 9";
rLen = 0;
rLoc = 201;
rType = 0;
vrLen = 281;
vrLoc = 0;
};
B5731BFC0E431A050008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 20";
rLen = 0;
rLoc = 2006;
rType = 0;
vrLen = 575;
vrLoc = 0;
};
B5731C0B0E431A3C0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 550";
rLen = 0;
rLoc = 18311;
rType = 0;
vrLen = 1554;
vrLoc = 17744;
};
B5731C350E431B3F0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 16";
rLen = 0;
rLoc = 465;
rType = 0;
vrLen = 577;
vrLoc = 0;
};
B5731C360E431B3F0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 9";
rLen = 0;
rLoc = 201;
rType = 0;
vrLen = 281;
vrLoc = 0;
};
B5731C370E431B3F0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 16";
rLen = 0;
rLoc = 465;
rType = 0;
vrLen = 577;
vrLoc = 0;
};
B5731C380E431B3F0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 9";
rLen = 40;
rLoc = 162;
rType = 0;
vrLen = 281;
vrLoc = 0;
};
B5731C4D0E431B890008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 21";
rLen = 0;
rLoc = 705;
rType = 0;
vrLen = 574;
vrLoc = 0;
};
B5731C4E0E431B890008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 13";
rLen = 0;
rLoc = 252;
rType = 0;
vrLen = 281;
vrLoc = 0;
};
B5731C4F0E431B890008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 21";
rLen = 0;
rLoc = 705;
rType = 0;
vrLen = 574;
vrLoc = 0;
};
B5731C500E431B890008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 12";
rLen = 0;
rLoc = 248;
rType = 0;
vrLen = 281;
vrLoc = 0;
};
B5731C620E431CD80008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 14";
rLen = 17;
rLoc = 433;
rType = 0;
vrLen = 788;
vrLoc = 0;
};
B5731C630E431CD80008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 15";
rLen = 0;
rLoc = 279;
rType = 0;
vrLen = 287;
vrLoc = 0;
};
B5731C7C0E4333810008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 30";
rLen = 0;
rLoc = 1332;
rType = 0;
vrLen = 1744;
vrLoc = 94;
};
B5731C7D0E4333810008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
name = "ASIProgressDelegate.h: 17";
rLen = 0;
rLoc = 356;
rType = 0;
vrLen = 356;
vrLoc = 0;
};
B5731C7E0E4333810008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 400";
rLen = 57;
rLoc = 12690;
rType = 0;
vrLen = 1816;
vrLoc = 11882;
};
B5731C7F0E4333810008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 233";
rLen = 0;
rLoc = 8201;
rType = 0;
vrLen = 1681;
vrLoc = 6433;
};
B5731C800E4333810008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 779";
rLen = 0;
rLoc = 24949;
rType = 0;
vrLen = 1660;
vrLoc = 23159;
};
B5731C810E4333810008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 233";
rLen = 0;
rLoc = 8201;
rType = 0;
vrLen = 1964;
vrLoc = 5847;
};
B5731C820E4333810008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 406";
rLen = 0;
rLoc = 13102;
rType = 0;
vrLen = 1659;
vrLoc = 23170;
};
B5731C830E4333810008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 233";
rLen = 0;
rLoc = 8201;
rType = 0;
vrLen = 1646;
vrLoc = 6468;
};
B5731C840E4333810008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 406";
rLen = 0;
rLoc = 13102;
rType = 0;
vrLen = 1803;
vrLoc = 11880;
};
B5731C9A0E4334260008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 29";
rLen = 49;
rLoc = 1132;
rType = 0;
vrLen = 1797;
vrLoc = 53;
};
B5731C9B0E4334260008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 15";
rLen = 0;
rLoc = 279;
rType = 0;
vrLen = 287;
vrLoc = 0;
};
B5731C9C0E4334260008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 29";
rLen = 49;
rLoc = 1132;
rType = 0;
vrLen = 1797;
vrLoc = 53;
};
B5731C9D0E4334260008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 406";
rLen = 21;
rLoc = 13037;
rType = 0;
vrLen = 1803;
vrLoc = 11880;
};
B5731D760E4339B00008024F /* RunPlatformUnitTests.include */ = {
isa = PBXFileReference;
lastKnownFileType = text.script.sh;
name = RunPlatformUnitTests.include;
path = /Developer/Tools/RunPlatformUnitTests.include;
sourceTree = "<absolute>";
};
B5731D840E4339F30008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 31";
rLen = 0;
rLoc = 1331;
rType = 0;
vrLen = 1805;
vrLoc = 53;
};
B5731D8C0E433A1F0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 406";
rLen = 21;
rLoc = 13037;
rType = 0;
vrLen = 1803;
vrLoc = 11880;
};
B5731D990E433A750008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 31";
rLen = 0;
rLoc = 1282;
rType = 0;
vrLen = 1815;
vrLoc = 53;
};
B5731D9A0E433A750008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 409";
rLen = 0;
rLoc = 13163;
rType = 0;
vrLen = 1825;
vrLoc = 11882;
};
B5731D9B0E433A750008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731D760E4339B00008024F /* RunPlatformUnitTests.include */;
name = "RunPlatformUnitTests.include: 310";
rLen = 0;
rLoc = 10259;
rType = 0;
vrLen = 1874;
vrLoc = 9274;
};
B5731D9C0E433A750008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 15";
rLen = 0;
rLoc = 279;
rType = 0;
vrLen = 287;
vrLoc = 0;
};
B5731DA50E433B550008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 44";
rLen = 0;
rLoc = 1936;
rType = 0;
vrLen = 1801;
vrLoc = 50;
};
B5731DA60E433B550008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 409";
rLen = 0;
rLoc = 13163;
rType = 0;
vrLen = 1825;
vrLoc = 11882;
};
B5731DBB0E433E280008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 73";
rLen = 0;
rLoc = 4440;
rType = 0;
vrLen = 1852;
vrLoc = 926;
};
B5731DBC0E433E280008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 13";
rLen = 0;
rLoc = 250;
rType = 0;
vrLen = 324;
vrLoc = 0;
};
B5731DBD0E433E280008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 73";
rLen = 0;
rLoc = 4440;
rType = 0;
vrLen = 1904;
vrLoc = 874;
};
B5731DBE0E433E280008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 13";
rLen = 0;
rLoc = 250;
rType = 0;
vrLen = 324;
vrLoc = 0;
};
B5731DBF0E433E280008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 73";
rLen = 0;
rLoc = 4440;
rType = 0;
vrLen = 1852;
vrLoc = 926;
};
B5731DC00E433E280008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 13";
rLen = 0;
rLoc = 250;
rType = 0;
vrLen = 324;
vrLoc = 0;
};
B5731DC10E433E280008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 73";
rLen = 0;
rLoc = 4440;
rType = 0;
vrLen = 1904;
vrLoc = 874;
};
B5731DC20E433E280008024F /* PBXTextBookmark */ = {
B567EEE10E4ED8D2001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 13";
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 157";
rLen = 0;
rLoc = 250;
rLoc = 5256;
rType = 0;
vrLen = 347;
vrLoc = 0;
vrLen = 2133;
vrLoc = 1170;
};
B5731DC30E433E280008024F /* PBXTextBookmark */ = {
B567EEEE0E4EDA82001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 86";
rLen = 0;
rLoc = 4440;
rType = 0;
vrLen = 1315;
vrLoc = 1736;
comments = "warning: property 'username' requires method '-username' to be defined - use @synthesize, @dynamic or provide a method implementation";
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
rLen = 1;
rLoc = 790;
rType = 1;
};
B5731DC40E433E280008024F /* PBXTextBookmark */ = {
B567EEEF0E4EDA82001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 22";
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 775";
rLen = 0;
rLoc = 309;
rType = 0;
vrLen = 462;
vrLoc = 0;
};
B5731DDC0E433E990008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 48";
rLen = 26;
rLoc = 2010;
rLoc = 24996;
rType = 0;
vrLen = 2093;
vrLoc = 487;
vrLen = 959;
vrLoc = 24386;
};
B5731DEA0E4340CF0008024F /* PBXTextBookmark */ = {
B567EEF10E4EDA85001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 20";
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 157";
rLen = 0;
rLoc = 309;
rLoc = 5256;
rType = 0;
vrLen = 490;
vrLen = 1170;
vrLoc = 0;
};
B5731DEB0E4340CF0008024F /* PBXTextBookmark */ = {
B567EEF20E4EDA85001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 50";
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 133";
rLen = 0;
rLoc = 2038;
rLoc = 4343;
rType = 0;
vrLen = 1861;
vrLoc = 1553;
vrLen = 1375;
vrLoc = 3985;
};
B5731DEC0E4340CF0008024F /* PBXTextBookmark */ = {
B567EEF30E4EDA85001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
comments = "warning: assignment from incompatible pointer type";
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 373";
rLen = 0;
rLoc = 11938;
rType = 0;
vrLen = 1765;
vrLoc = 11652;
};
B5731DED0E4340CF0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 80";
rLen = 0;
rLoc = 4440;
rType = 0;
vrLen = 1971;
vrLoc = 1228;
rLoc = 469;
rType = 1;
};
B5731DEE0E4340CF0008024F /* PBXTextBookmark */ = {
B567EEF40E4EDA85001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 12";
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 157";
rLen = 0;
rLoc = 250;
rLoc = 5256;
rType = 0;
vrLen = 315;
vrLen = 1170;
vrLoc = 0;
};
B5731E180E43424A0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731D760E4339B00008024F /* RunPlatformUnitTests.include */;
name = "RunPlatformUnitTests.include: 304";
rLen = 138;
rLoc = 10038;
rType = 0;
vrLen = 1911;
vrLoc = 9274;
};
B5731E1A0E43424A0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 75";
rLen = 0;
rLoc = 3594;
rType = 0;
vrLen = 1705;
vrLoc = 1736;
};
B5731E1B0E43424A0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731D760E4339B00008024F /* RunPlatformUnitTests.include */;
name = "RunPlatformUnitTests.include: 304";
rLen = 138;
rLoc = 10038;
rType = 0;
vrLen = 1911;
vrLoc = 9274;
};
B5731E330E4344F90008024F /* PBXTextBookmark */ = {
B567EEF50E4EDA85001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 12";
rLen = 0;
rLoc = 250;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 6";
rLen = 99;
rLoc = 137;
rType = 0;
vrLen = 315;
vrLoc = 0;
vrLen = 1495;
vrLoc = 1728;
};
B5731E350E4344F90008024F /* PBXTextBookmark */ = {
B567EEF60E4EDA85001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 102";
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 17";
rLen = 0;
rLoc = 4431;
rLoc = 507;
rType = 0;
vrLen = 1841;
vrLen = 1379;
vrLoc = 0;
};
B5731E360E4344F90008024F /* PBXTextBookmark */ = {
B567EEF70E4EDA85001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
name = "AppDelegate.h: 4";
rLen = 0;
rLoc = 42;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 6";
rLen = 99;
rLoc = 137;
rType = 0;
vrLen = 1083;
vrLoc = 0;
vrLen = 1243;
vrLoc = 2711;
};
B5731E370E4344F90008024F /* PBXTextBookmark */ = {
B567EEF80E4EDA85001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 102";
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 480";
rLen = 0;
rLoc = 4431;
rLoc = 15647;
rType = 0;
vrLen = 1664;
vrLoc = 2569;
vrLen = 1694;
vrLoc = 15428;
};
B5731E380E4344F90008024F /* PBXTextBookmark */ = {
B567EEF90E4EDA85001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 233";
name = "ASIHTTPRequest.h: 133";
rLen = 0;
rLoc = 8201;
rLoc = 4343;
rType = 0;
vrLen = 1610;
vrLoc = 6504;
};
B5731E390E4344F90008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 12";
rLen = 0;
rLoc = 250;
rType = 0;
vrLen = 315;
vrLoc = 0;
vrLen = 1375;
vrLoc = 3985;
};
B5731E3A0E4344F90008024F /* PBXTextBookmark */ = {
B567EEFA0E4EDA85001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 19";
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 470";
rLen = 0;
rLoc = 420;
rLoc = 15647;
rType = 0;
vrLen = 1473;
vrLoc = 0;
vrLen = 1381;
vrLoc = 14831;
};
B5731E3B0E4344F90008024F /* PBXTextBookmark */ = {
B567EEFC0E4EDA95001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 12";
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 471";
rLen = 0;
rLoc = 250;
rLoc = 15702;
rType = 0;
vrLen = 315;
vrLoc = 0;
vrLen = 1393;
vrLoc = 14831;
};
B5731E3C0E4344F90008024F /* PBXTextBookmark */ = {
B567EF0D0E4EDB31001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 19";
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 472";
rLen = 0;
rLoc = 420;
rType = 0;
vrLen = 1473;
vrLoc = 0;
};
B5731E3D0E4344F90008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 34";
rLen = 96;
rLoc = 663;
rLoc = 15741;
rType = 0;
vrLen = 1038;
vrLoc = 0;
vrLen = 1558;
vrLoc = 15168;
};
B5731E3E0E4344F90008024F /* PBXTextBookmark */ = {
B567EF140E4EDB3D001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
name = "AppDelegate.h: 4";
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 472";
rLen = 0;
rLoc = 42;
rType = 0;
vrLen = 1083;
vrLoc = 0;
};
B5731E3F0E4344F90008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 34";
rLen = 96;
rLoc = 663;
rLoc = 15741;
rType = 0;
vrLen = 1038;
vrLoc = 0;
vrLen = 1558;
vrLoc = 15168;
};
B5731E400E4344F90008024F /* PBXTextBookmark */ = {
B567EF150E4EDB3D001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 230";
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
rLen = 0;
rLoc = 8201;
rType = 0;
vrLen = 1732;
vrLoc = 6382;
rLoc = 89;
rType = 1;
};
B5731E410E4344F90008024F /* PBXTextBookmark */ = {
B567EF160E4EDB3D001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 373";
rLen = 0;
rLoc = 11938;
rType = 0;
vrLen = 1675;
vrLoc = 11652;
};
B5731E420E4344F90008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
name = "ASIProgressDelegate.h: 17";
name = "ASIHTTPRequest.m: 472";
rLen = 0;
rLoc = 356;
rLoc = 15741;
rType = 0;
vrLen = 356;
vrLoc = 0;
vrLen = 1558;
vrLoc = 15168;
};
B5731E430E4344F90008024F /* PBXTextBookmark */ = {
B567EF170E4EDB3D001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
name = "AppDelegate.h: 4";
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 90";
rLen = 0;
rLoc = 42;
rLoc = 3346;
rType = 0;
vrLen = 1083;
vrLoc = 0;
vrLen = 1951;
vrLoc = 2351;
};
B5731E440E4344F90008024F /* PBXTextBookmark */ = {
B567EF230E4EDBA2001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 19";
name = "ASIHTTPRequestTests.m: 89";
rLen = 0;
rLoc = 420;
rLoc = 3345;
rType = 0;
vrLen = 1473;
vrLoc = 0;
vrLen = 1917;
vrLoc = 2007;
};
B5731E450E4344F90008024F /* PBXTextBookmark */ = {
B567EF290E4EDBC5001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 12";
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 89";
rLen = 0;
rLoc = 250;
rLoc = 3345;
rType = 0;
vrLen = 315;
vrLoc = 0;
vrLen = 1917;
vrLoc = 2007;
};
B5731E540E435ADB0008024F /* PBXTextBookmark */ = {
B567EF2B0E4EDC06001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 62";
rLen = 72;
rLoc = 2040;
rType = 0;
vrLen = 2251;
vrLoc = 1040;
};
B5731E550E435ADB0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
name = "ASIProgressDelegate.h: 17";
name = "ASIHTTPRequestTests.m: 89";
rLen = 0;
rLoc = 356;
rLoc = 3345;
rType = 0;
vrLen = 356;
vrLoc = 0;
vrLen = 2058;
vrLoc = 1333;
};
B5731E560E435ADB0008024F /* PBXTextBookmark */ = {
B567EF2C0E4EDC06001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
name = "AppDelegate.h: 4";
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 133";
rLen = 0;
rLoc = 42;
rType = 0;
vrLen = 1083;
vrLoc = 0;
};
B5731E580E435ADB0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 46";
rLen = 27;
rLoc = 1048;
rLoc = 4343;
rType = 0;
vrLen = 1227;
vrLoc = 3449;
vrLen = 1823;
vrLoc = 1211;
};
B5731E5A0E435ADB0008024F /* PBXTextBookmark */ = {
B567EF2D0E4EDC06001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 62";
rLen = 72;
rLoc = 2040;
name = "ASIHTTPRequestTests.m: 89";
rLen = 0;
rLoc = 3345;
rType = 0;
vrLen = 2251;
vrLoc = 1040;
vrLen = 2058;
vrLoc = 1333;
};
B5731E5B0E435ADB0008024F /* PBXTextBookmark */ = {
B567EF2E0E4EDC06001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 121";
rLen = 16;
rLoc = 4000;
rType = 0;
vrLen = 1362;
vrLoc = 2988;
};
B5731E5C0E435ADB0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
name = "ASIProgressDelegate.h: 17";
name = "ASIHTTPRequest.h: 133";
rLen = 0;
rLoc = 356;
rType = 0;
vrLen = 356;
vrLoc = 0;
};
B5731E5D0E435ADB0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 32";
rLen = 14;
rLoc = 620;
rLoc = 4343;
rType = 0;
vrLen = 1782;
vrLoc = 376;
vrLen = 1823;
vrLoc = 1211;
};
B5731E5E0E435ADB0008024F /* PBXTextBookmark */ = {
B567EF2F0E4EDC06001E238F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 373";
name = "ASIHTTPRequest.m: 212";
rLen = 0;
rLoc = 11938;
rType = 0;
vrLen = 1637;
vrLoc = 5614;
};
B5731E5F0E435ADB0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 124";
rLen = 12;
rLoc = 4107;
rLoc = 6701;
rType = 0;
vrLen = 1399;
vrLoc = 3680;
vrLen = 1896;
vrLoc = 3053;
};
B5731E600E435ADB0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 373";
rLen = 0;
rLoc = 11938;
rType = 0;
vrLen = 1281;
vrLoc = 8279;
B5731AE50E430AC30008024F /* Tests */ = {
activeExec = 0;
};
B5731E610E435ADB0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 32";
rLen = 14;
rLoc = 620;
rType = 0;
vrLen = 1567;
vrLoc = 4532;
B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {947, 624}}";
sepNavSelRange = "{250, 0}";
sepNavVisRange = "{0, 315}";
};
B5731E620E435ADB0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
name = "AppDelegate.h: 4";
rLen = 0;
rLoc = 42;
rType = 0;
vrLen = 1083;
vrLoc = 0;
};
B5731E630E435ADB0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 124";
rLen = 12;
rLoc = 4107;
rType = 0;
vrLen = 1400;
vrLoc = 3680;
B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {947, 1666}}";
sepNavSelRange = "{3345, 0}";
sepNavVisRange = "{1333, 2058}";
};
B5731E640E435ADB0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 48";
rLen = 168;
rLoc = 1170;
rType = 0;
vrLen = 2443;
vrLoc = 763;
};
B5731E650E435ADB0008024F /* PBXTextBookmark */ = {
B5731B390E430D310008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
name = "AppDelegate.h: 4";
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 1";
rLen = 0;
rLoc = 42;
rLoc = 0;
rType = 0;
vrLen = 1083;
vrLen = 260;
vrLoc = 0;
};
B5731E660E435ADB0008024F /* PBXTextBookmark */ = {
B5731B3A0E430D310008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 124";
rLen = 12;
rLoc = 4107;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 1";
rLen = 0;
rLoc = 0;
rType = 0;
vrLen = 1507;
vrLoc = 3897;
vrLen = 238;
vrLoc = 0;
};
B5731E670E435ADB0008024F /* PBXTextBookmark */ = {
B5731B8B0E4310180008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
name = "AppDelegate.h: 4";
fRef = B5731B8C0E4310180008024F /* SenTest.h */;
name = "SenTest.h: 1";
rLen = 0;
rLoc = 42;
rLoc = 0;
rType = 0;
vrLen = 1083;
vrLen = 1915;
vrLoc = 0;
};
B5731E680E435ADB0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 46";
rLen = 27;
rLoc = 1048;
rType = 0;
vrLen = 1427;
vrLoc = 188;
B5731B8C0E4310180008024F /* SenTest.h */ = {
isa = PBXFileReference;
lastKnownFileType = sourcecode.c.h;
name = SenTest.h;
path = /Developer/Library/Frameworks/SenTestingKit.framework/Headers/SenTest.h;
sourceTree = "<absolute>";
};
B5731E690E435ADB0008024F /* PBXTextBookmark */ = {
B5731B8F0E4310180008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 178";
rLen = 19;
rLoc = 4861;
fRef = B5731B900E4310180008024F /* SenTest.h */;
name = "SenTest.h: 1";
rLen = 0;
rLoc = 0;
rType = 0;
vrLen = 2291;
vrLoc = 3563;
vrLen = 1915;
vrLoc = 0;
};
B5731E6A0E435ADB0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 124";
rLen = 12;
rLoc = 4107;
rType = 0;
vrLen = 1462;
vrLoc = 3063;
B5731B900E4310180008024F /* SenTest.h */ = {
isa = PBXFileReference;
lastKnownFileType = sourcecode.c.h;
name = SenTest.h;
path = /Developer/Library/Frameworks/SenTestingKit.framework/Headers/SenTest.h;
sourceTree = "<absolute>";
};
B5731E6B0E435ADB0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 51";
rLen = 15;
rLoc = 1581;
rType = 0;
vrLen = 969;
vrLoc = 1040;
B5731BAD0E4318BF0008024F /* SenTestingKit.h */ = {
isa = PBXFileReference;
lastKnownFileType = sourcecode.c.h;
name = SenTestingKit.h;
path = /Developer/Library/Frameworks/SenTestingKit.framework/Headers/SenTestingKit.h;
sourceTree = "<absolute>";
};
B5731E6C0E435ADB0008024F /* PBXTextBookmark */ = {
B5731BBE0E4319180008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 165";
rLen = 15;
rLoc = 5422;
fRef = B5731BAD0E4318BF0008024F /* SenTestingKit.h */;
name = "SenTestingKit.h: 1";
rLen = 0;
rLoc = 0;
rType = 0;
vrLen = 1679;
vrLoc = 4666;
vrLen = 2017;
vrLoc = 0;
};
B5731E6D0E435ADB0008024F /* PBXTextBookmark */ = {
B5731BC00E4319180008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
name = "AppDelegate.h: 4";
fRef = B5731BAD0E4318BF0008024F /* SenTestingKit.h */;
name = "SenTestingKit.h: 1";
rLen = 0;
rLoc = 42;
rLoc = 0;
rType = 0;
vrLen = 1083;
vrLen = 2017;
vrLoc = 0;
};
B5731E6E0E435ADB0008024F /* PBXTextBookmark */ = {
B5731BEE0E431A050008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 51";
rLen = 15;
rLoc = 1581;
fRef = 089C165DFE840E0CC02AAC07 /* English */;
name = "InfoPlist.strings: 3";
rLen = 0;
rLoc = 104;
rType = 0;
vrLen = 969;
vrLoc = 1040;
vrLen = 110;
vrLoc = 0;
};
B5731E6F0E435ADB0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 230";
rLen = 18;
rLoc = 8182;
rType = 0;
vrLen = 1535;
vrLoc = 4190;
B5731BEF0E431A050008024F /* 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;
};
B5731E700E435ADB0008024F /* PBXTextBookmark */ = {
B5731BF00E431A050008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 135";
rLen = 12;
rLoc = 3216;
fRef = 32CA4F630368D1EE00C91783 /* asi-http-request_Prefix.pch */;
name = "asi-http-request_Prefix.pch: 1";
rLen = 0;
rLoc = 0;
rType = 0;
vrLen = 1061;
vrLoc = 2656;
vrLen = 163;
vrLoc = 0;
};
B5731E710E435ADB0008024F /* PBXTextBookmark */ = {
B5731BF60E431A050008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 221";
rLen = 21;
rLoc = 7760;
fRef = 32CA4F630368D1EE00C91783 /* asi-http-request_Prefix.pch */;
name = "asi-http-request_Prefix.pch: 1";
rLen = 0;
rLoc = 0;
rType = 0;
vrLen = 1769;
vrLoc = 6345;
vrLen = 163;
vrLoc = 0;
};
B5731E720E435ADB0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 46";
rLen = 27;
rLoc = 1048;
rType = 0;
vrLen = 1227;
vrLoc = 3449;
B5731D760E4339B00008024F /* RunPlatformUnitTests.include */ = {
isa = PBXFileReference;
lastKnownFileType = text.script.sh;
name = RunPlatformUnitTests.include;
path = /Developer/Tools/RunPlatformUnitTests.include;
sourceTree = "<absolute>";
};
B5731E740E435DE50008024F /* PBXTextBookmark */ = {
B5731D9B0E433A750008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 49";
fRef = B5731D760E4339B00008024F /* RunPlatformUnitTests.include */;
name = "RunPlatformUnitTests.include: 310";
rLen = 0;
rLoc = 1509;
rLoc = 10259;
rType = 0;
vrLen = 903;
vrLoc = 1006;
vrLen = 1874;
vrLoc = 9274;
};
B5731E750E435DE50008024F /* PBXTextBookmark */ = {
B5731E180E43424A0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 221";
rLen = 21;
rLoc = 7760;
fRef = B5731D760E4339B00008024F /* RunPlatformUnitTests.include */;
name = "RunPlatformUnitTests.include: 304";
rLen = 138;
rLoc = 10038;
rType = 0;
vrLen = 1770;
vrLoc = 6344;
vrLen = 1911;
vrLoc = 9274;
};
B5731E760E435DE50008024F /* PBXTextBookmark */ = {
B5731E330E4344F90008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 49";
fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
name = "ASIHTTPRequestTests.h: 12";
rLen = 0;
rLoc = 1509;
rLoc = 250;
rType = 0;
vrLen = 903;
vrLoc = 1006;
vrLen = 315;
vrLoc = 0;
};
B5731E770E435DE50008024F /* PBXTextBookmark */ = {
B5731E550E435ADB0008024F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 203";
rLen = 648;
rLoc = 6858;
fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
name = "ASIProgressDelegate.h: 17";
rLen = 0;
rLoc = 356;
rType = 0;
vrLen = 1722;
vrLoc = 335;
vrLen = 356;
vrLoc = 0;
};
B5ABC7A70E24C5280072F422 /* asi-http-request */ = {
isa = PBXExecutable;
activeArgIndices = (
NO,
YES,
);
argumentStrings = (
"-SenTest All",
);
autoAttachOnCrash = 1;
breakpointsEnabled = 0;
breakpointsEnabled = 1;
configStateDict = {
};
customDataFormattersEnabled = 1;
... ... @@ -1628,22 +712,22 @@
value = YES;
},
{
active = NO;
active = YES;
name = XCInjectBundleInto;
value = "asi-http-request.app/Contents/MacOS/asi-http-request";
},
{
active = NO;
active = YES;
name = XCInjectBundle;
value = Tests.octest;
},
{
active = NO;
active = YES;
name = DYLD_FALLBACK_FRAMEWORK_PATH;
value = "$(DEVELOPER_LIBRARY_DIR)/Frameworks";
},
{
active = NO;
active = YES;
name = DYLD_INSERT_LIBRARIES;
value = "$(DEVELOPER_LIBRARY_DIR)/PrivateFrameworks/DevToolsBundleInjection.framework/DevToolsBundleInjection";
},
... ... @@ -1672,17 +756,17 @@
};
B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {947, 11004}}";
sepNavSelRange = "{507, 0}";
sepNavVisRange = "{0, 1379}";
sepNavIntBoundsRect = "{{0, 0}, {1680, 10878}}";
sepNavSelRange = "{6701, 0}";
sepNavVisRange = "{3053, 1896}";
sepNavWindowFrame = "{{500, 55}, {1475, 874}}";
};
};
B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1098, 3304}}";
sepNavSelRange = "{137, 99}";
sepNavVisRange = "{0, 1657}";
sepNavIntBoundsRect = "{{0, 0}, {1098, 3598}}";
sepNavSelRange = "{4343, 0}";
sepNavVisRange = "{1211, 1823}";
sepNavWindowFrame = "{{19, 304}, {1475, 874}}";
};
};
... ... @@ -1703,9 +787,9 @@
};
B5ABC80E0E24CB100072F422 /* AppDelegate.m */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1503, 2702}}";
sepNavSelRange = "{681, 0}";
sepNavVisRange = "{376, 633}";
sepNavIntBoundsRect = "{{0, 0}, {1032, 2562}}";
sepNavSelRange = "{5256, 0}";
sepNavVisRange = "{0, 1170}";
sepNavWindowFrame = "{{84, 60}, {1475, 1050}}";
};
};
... ... @@ -1759,69 +843,12 @@
vrLen = 281;
vrLoc = 0;
};
B5F3B6D30E43613800E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5187CC70C1C186B002792C0 /* TimelineViewSelectionManagement.m */;
rLen = 1;
rLoc = 274;
rType = 1;
};
B5F3B71B0E4367CA00E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
name = "AppDelegate.h: 4";
rLen = 0;
rLoc = 42;
rType = 0;
vrLen = 1083;
vrLoc = 0;
};
B5F3B71C0E4367CA00E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 46";
rLen = 27;
rLoc = 1048;
rType = 0;
vrLen = 1719;
vrLoc = 4330;
};
B5F3B71D0E4367CA00E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 86";
rLen = 0;
rLoc = 3290;
rType = 0;
vrLen = 1408;
vrLoc = 0;
};
B5F3B71E0E4367CA00E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 46";
rLen = 6;
rLoc = 1731;
rType = 0;
vrLen = 1946;
vrLoc = 599;
};
B5F3B71F0E4367CA00E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 780";
rLen = 9;
rLoc = 24936;
rType = 0;
vrLen = 1554;
vrLoc = 23304;
};
B5F3B7200E4367CA00E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 203";
rLen = 648;
rLoc = 6858;
rLoc = 6758;
rType = 0;
vrLen = 1722;
vrLoc = 335;
... ... @@ -1871,7 +898,7 @@
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 86";
rLen = 0;
rLoc = 3290;
rLoc = 3291;
rType = 0;
vrLen = 1408;
vrLoc = 0;
... ... @@ -1881,7 +908,7 @@
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 231";
rLen = 0;
rLoc = 8249;
rLoc = 8264;
rType = 0;
vrLen = 1817;
vrLoc = 6342;
... ... @@ -1891,7 +918,7 @@
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 661";
rLen = 0;
rLoc = 21299;
rLoc = 21456;
rType = 0;
vrLen = 1216;
vrLoc = 20414;
... ... @@ -1911,32 +938,17 @@
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 780";
rLen = 9;
rLoc = 24936;
rLoc = 25155;
rType = 0;
vrLen = 1554;
vrLoc = 23304;
};
B5F3B72A0E4367CA00E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5F3B72B0E4367CA00E001FD /* TimelineViewSelectionManagement.m */;
name = "TimelineViewSelectionManagement.m: 275";
rLen = 1;
rLoc = 7367;
rType = 0;
vrLen = 1106;
vrLoc = 6269;
};
B5F3B72B0E4367CA00E001FD /* TimelineViewSelectionManagement.m */ = {
isa = PBXFileReference;
lastKnownFileType = sourcecode.c.objc;
name = TimelineViewSelectionManagement.m;
path = "/Users/ben/Documents/cocoa-trails/TimelineViewSelectionManagement.m";
sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1188, 3906}}";
sepNavSelRange = "{7367, 1}";
sepNavVisRange = "{0, 943}";
};
};
B5F3B7370E43683600E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
... ... @@ -1953,7 +965,7 @@
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 86";
rLen = 0;
rLoc = 3290;
rLoc = 3291;
rType = 0;
vrLen = 1408;
vrLoc = 0;
... ... @@ -1973,22 +985,12 @@
fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
name = "ASIHTTPRequestTests.m: 86";
rLen = 0;
rLoc = 3290;
rLoc = 3291;
rType = 0;
vrLen = 1408;
vrLoc = 0;
};
B5F3B73B0E43683600E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 231";
rLen = 0;
rLoc = 8219;
rType = 0;
vrLen = 1631;
vrLoc = 0;
};
B5F3B7440E43698300E001FD /* PBXTextBookmark */ = {
B5F3B7460E43698300E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 6";
... ... @@ -1998,7 +1000,7 @@
vrLen = 1657;
vrLoc = 0;
};
B5F3B7450E43698300E001FD /* PBXTextBookmark */ = {
B5F3B7470E43698300E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 9";
... ... @@ -2008,7 +1010,7 @@
vrLen = 1379;
vrLoc = 0;
};
B5F3B7460E43698300E001FD /* PBXTextBookmark */ = {
B5F3B7480E43698300E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 6";
... ... @@ -2018,27 +1020,47 @@
vrLen = 1657;
vrLoc = 0;
};
B5F3B7470E43698300E001FD /* PBXTextBookmark */ = {
B5F3B74A0E4378FA00E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 9";
name = "ASIHTTPRequest.m: 17";
rLen = 0;
rLoc = 236;
rLoc = 507;
rType = 0;
vrLen = 1379;
vrLoc = 0;
};
B5F3B7480E43698300E001FD /* PBXTextBookmark */ = {
B5F3B74B0E4378FA00E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 6";
rLen = 99;
rLoc = 137;
rType = 0;
vrLen = 1657;
vrLen = 1495;
vrLoc = 1728;
};
B5F3B74C0E4378FA00E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
name = "AppDelegate.h: 4";
rLen = 0;
rLoc = 42;
rType = 0;
vrLen = 1083;
vrLoc = 0;
};
B5F3B7490E43698300E001FD /* PBXTextBookmark */ = {
B5F3B74D0E4378FA00E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 146";
rLen = 0;
rLoc = 4820;
rType = 0;
vrLen = 1567;
vrLoc = 4532;
};
B5F3B74E0E4378FA00E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
name = "ASIHTTPRequest.m: 17";
... ... @@ -2048,4 +1070,44 @@
vrLen = 1379;
vrLoc = 0;
};
B5F3B74F0E4378FA00E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
name = "ASIHTTPRequest.h: 6";
rLen = 99;
rLoc = 137;
rType = 0;
vrLen = 1495;
vrLoc = 1728;
};
B5F3B7500E4378FA00E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 146";
rLen = 0;
rLoc = 4820;
rType = 0;
vrLen = 1567;
vrLoc = 4532;
};
B5F3B7510E4378FA00E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
name = "AppDelegate.h: 4";
rLen = 0;
rLoc = 42;
rType = 0;
vrLen = 1083;
vrLoc = 0;
};
B5F3B7520E4378FA00E001FD /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
name = "AppDelegate.m: 157";
rLen = 0;
rLoc = 5256;
rType = 0;
vrLen = 1567;
vrLoc = 4532;
};
}
... ...