Showing
3 changed files
with
195 additions
and
58 deletions
| @@ -138,7 +138,7 @@ More tests needed for: | @@ -138,7 +138,7 @@ More tests needed for: | ||
| 138 | success = [date isEqualToDate:referenceDate]; | 138 | success = [date isEqualToDate:referenceDate]; |
| 139 | STAssertTrue(success,@"Date parse 3 failed"); | 139 | STAssertTrue(success,@"Date parse 3 failed"); |
| 140 | 140 | ||
| 141 | - NSURL *url = [[[NSURL alloc] initWithString:@"http://asi/asi-http-request/tests/set_cookie"] autorelease]; | 141 | + NSURL *url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com/asi-http-request/tests/set_cookie"] autorelease]; |
| 142 | ASIHTTPRequest *request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease]; | 142 | ASIHTTPRequest *request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease]; |
| 143 | [request setUseCookiePersistance:YES]; | 143 | [request setUseCookiePersistance:YES]; |
| 144 | [request start]; | 144 | [request start]; |
| @@ -169,7 +169,7 @@ More tests needed for: | @@ -169,7 +169,7 @@ More tests needed for: | ||
| 169 | return; | 169 | return; |
| 170 | } | 170 | } |
| 171 | 171 | ||
| 172 | - url = [[[NSURL alloc] initWithString:@"http://asi/asi-http-request/tests/read_cookie"] autorelease]; | 172 | + url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com/asi-http-request/tests/read_cookie"] autorelease]; |
| 173 | request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease]; | 173 | request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease]; |
| 174 | [request setUseCookiePersistance:NO]; | 174 | [request setUseCookiePersistance:NO]; |
| 175 | [request setRequestCookies:[NSMutableArray arrayWithObject:cookie]]; | 175 | [request setRequestCookies:[NSMutableArray arrayWithObject:cookie]]; |
| @@ -178,7 +178,7 @@ More tests needed for: | @@ -178,7 +178,7 @@ More tests needed for: | ||
| 178 | success = [html isEqualToString:@"I have 'This is the value' as the value of 'ASIHTTPRequestTestCookie'"]; | 178 | success = [html isEqualToString:@"I have 'This is the value' as the value of 'ASIHTTPRequestTestCookie'"]; |
| 179 | STAssertTrue(success,@"Cookie not presented to the server with cookie persistance OFF"); | 179 | STAssertTrue(success,@"Cookie not presented to the server with cookie persistance OFF"); |
| 180 | 180 | ||
| 181 | - url = [[[NSURL alloc] initWithString:@"http://asi/asi-http-request/tests/read_cookie"] autorelease]; | 181 | + url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com/asi-http-request/tests/read_cookie"] autorelease]; |
| 182 | request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease]; | 182 | request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease]; |
| 183 | [request setUseCookiePersistance:YES]; | 183 | [request setUseCookiePersistance:YES]; |
| 184 | [request start]; | 184 | [request start]; |
| @@ -186,14 +186,14 @@ More tests needed for: | @@ -186,14 +186,14 @@ More tests needed for: | ||
| 186 | success = [html isEqualToString:@"I have 'This is the value' as the value of 'ASIHTTPRequestTestCookie'"]; | 186 | success = [html isEqualToString:@"I have 'This is the value' as the value of 'ASIHTTPRequestTestCookie'"]; |
| 187 | STAssertTrue(success,@"Cookie not presented to the server with cookie persistance ON"); | 187 | STAssertTrue(success,@"Cookie not presented to the server with cookie persistance ON"); |
| 188 | 188 | ||
| 189 | - url = [[[NSURL alloc] initWithString:@"http://asi/asi-http-request/tests/remove_cookie"] autorelease]; | 189 | + url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com/asi-http-request/tests/remove_cookie"] autorelease]; |
| 190 | request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease]; | 190 | request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease]; |
| 191 | [request start]; | 191 | [request start]; |
| 192 | html = [request dataString]; | 192 | html = [request dataString]; |
| 193 | success = [html isEqualToString:@"I have removed a cookie"]; | 193 | success = [html isEqualToString:@"I have removed a cookie"]; |
| 194 | STAssertTrue(success,@"Failed to remove a cookie"); | 194 | STAssertTrue(success,@"Failed to remove a cookie"); |
| 195 | 195 | ||
| 196 | - url = [[[NSURL alloc] initWithString:@"http://asi/asi-http-request/tests/read_cookie"] autorelease]; | 196 | + url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com/asi-http-request/tests/read_cookie"] autorelease]; |
| 197 | request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease]; | 197 | request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease]; |
| 198 | [request start]; | 198 | [request start]; |
| 199 | html = [request dataString]; | 199 | html = [request dataString]; |
| @@ -231,8 +231,6 @@ | @@ -231,8 +231,6 @@ | ||
| 231 | <key>Layout</key> | 231 | <key>Layout</key> |
| 232 | <array> | 232 | <array> |
| 233 | <dict> | 233 | <dict> |
| 234 | - <key>BecomeActive</key> | ||
| 235 | - <true/> | ||
| 236 | <key>ContentConfiguration</key> | 234 | <key>ContentConfiguration</key> |
| 237 | <dict> | 235 | <dict> |
| 238 | <key>PBXBottomSmartGroupGIDs</key> | 236 | <key>PBXBottomSmartGroupGIDs</key> |
| @@ -281,8 +279,8 @@ | @@ -281,8 +279,8 @@ | ||
| 281 | <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key> | 279 | <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key> |
| 282 | <array> | 280 | <array> |
| 283 | <array> | 281 | <array> |
| 284 | - <integer>11</integer> | 282 | + <integer>4</integer> |
| 285 | - <integer>5</integer> | 283 | + <integer>2</integer> |
| 286 | <integer>0</integer> | 284 | <integer>0</integer> |
| 287 | </array> | 285 | </array> |
| 288 | </array> | 286 | </array> |
| @@ -317,12 +315,14 @@ | @@ -317,12 +315,14 @@ | ||
| 317 | <key>Dock</key> | 315 | <key>Dock</key> |
| 318 | <array> | 316 | <array> |
| 319 | <dict> | 317 | <dict> |
| 318 | + <key>BecomeActive</key> | ||
| 319 | + <true/> | ||
| 320 | <key>ContentConfiguration</key> | 320 | <key>ContentConfiguration</key> |
| 321 | <dict> | 321 | <dict> |
| 322 | <key>PBXProjectModuleGUID</key> | 322 | <key>PBXProjectModuleGUID</key> |
| 323 | <string>1CE0B20306471E060097A5F4</string> | 323 | <string>1CE0B20306471E060097A5F4</string> |
| 324 | <key>PBXProjectModuleLabel</key> | 324 | <key>PBXProjectModuleLabel</key> |
| 325 | - <string>ASIHTTPRequest.m</string> | 325 | + <string>ASIHTTPRequestTests.m</string> |
| 326 | <key>PBXSplitModuleInNavigatorKey</key> | 326 | <key>PBXSplitModuleInNavigatorKey</key> |
| 327 | <dict> | 327 | <dict> |
| 328 | <key>Split0</key> | 328 | <key>Split0</key> |
| @@ -330,11 +330,11 @@ | @@ -330,11 +330,11 @@ | ||
| 330 | <key>PBXProjectModuleGUID</key> | 330 | <key>PBXProjectModuleGUID</key> |
| 331 | <string>1CE0B20406471E060097A5F4</string> | 331 | <string>1CE0B20406471E060097A5F4</string> |
| 332 | <key>PBXProjectModuleLabel</key> | 332 | <key>PBXProjectModuleLabel</key> |
| 333 | - <string>ASIHTTPRequest.m</string> | 333 | + <string>ASIHTTPRequestTests.m</string> |
| 334 | <key>_historyCapacity</key> | 334 | <key>_historyCapacity</key> |
| 335 | <integer>0</integer> | 335 | <integer>0</integer> |
| 336 | <key>bookmark</key> | 336 | <key>bookmark</key> |
| 337 | - <string>B500B57B0E635B5500744D82</string> | 337 | + <string>B500B5890E635BC700744D82</string> |
| 338 | <key>history</key> | 338 | <key>history</key> |
| 339 | <array> | 339 | <array> |
| 340 | <string>B5731B8B0E4310180008024F</string> | 340 | <string>B5731B8B0E4310180008024F</string> |
| @@ -347,13 +347,13 @@ | @@ -347,13 +347,13 @@ | ||
| 347 | <string>B5B3BF120E63470F0071D39F</string> | 347 | <string>B5B3BF120E63470F0071D39F</string> |
| 348 | <string>B5B3BF150E63470F0071D39F</string> | 348 | <string>B5B3BF150E63470F0071D39F</string> |
| 349 | <string>B5B3BF190E63470F0071D39F</string> | 349 | <string>B5B3BF190E63470F0071D39F</string> |
| 350 | - <string>B5B3BF3A0E634AB90071D39F</string> | ||
| 351 | - <string>B5B3BF4F0E634B0C0071D39F</string> | ||
| 352 | <string>B5B3BF5D0E634B5D0071D39F</string> | 350 | <string>B5B3BF5D0E634B5D0071D39F</string> |
| 353 | <string>B500B54C0E635A3200744D82</string> | 351 | <string>B500B54C0E635A3200744D82</string> |
| 354 | - <string>B500B5740E635B5500744D82</string> | 352 | + <string>B500B57E0E635BC700744D82</string> |
| 355 | - <string>B500B5750E635B5500744D82</string> | 353 | + <string>B500B57F0E635BC700744D82</string> |
| 356 | - <string>B500B5760E635B5500744D82</string> | 354 | + <string>B500B5800E635BC700744D82</string> |
| 355 | + <string>B500B5810E635BC700744D82</string> | ||
| 356 | + <string>B500B5820E635BC700744D82</string> | ||
| 357 | </array> | 357 | </array> |
| 358 | <key>prevStack</key> | 358 | <key>prevStack</key> |
| 359 | <array> | 359 | <array> |
| @@ -383,6 +383,12 @@ | @@ -383,6 +383,12 @@ | ||
| 383 | <string>B500B5780E635B5500744D82</string> | 383 | <string>B500B5780E635B5500744D82</string> |
| 384 | <string>B500B5790E635B5500744D82</string> | 384 | <string>B500B5790E635B5500744D82</string> |
| 385 | <string>B500B57A0E635B5500744D82</string> | 385 | <string>B500B57A0E635B5500744D82</string> |
| 386 | + <string>B500B5830E635BC700744D82</string> | ||
| 387 | + <string>B500B5840E635BC700744D82</string> | ||
| 388 | + <string>B500B5850E635BC700744D82</string> | ||
| 389 | + <string>B500B5860E635BC700744D82</string> | ||
| 390 | + <string>B500B5870E635BC700744D82</string> | ||
| 391 | + <string>B500B5880E635BC700744D82</string> | ||
| 386 | </array> | 392 | </array> |
| 387 | </dict> | 393 | </dict> |
| 388 | <key>SplitCount</key> | 394 | <key>SplitCount</key> |
| @@ -576,7 +582,6 @@ | @@ -576,7 +582,6 @@ | ||
| 576 | <integer>5</integer> | 582 | <integer>5</integer> |
| 577 | <key>WindowOrderList</key> | 583 | <key>WindowOrderList</key> |
| 578 | <array> | 584 | <array> |
| 579 | - <string>B500B57C0E635B5500744D82</string> | ||
| 580 | <string>B500B5570E635A3200744D82</string> | 585 | <string>B500B5570E635A3200744D82</string> |
| 581 | <string>B500B5580E635A3200744D82</string> | 586 | <string>B500B5580E635A3200744D82</string> |
| 582 | <string>1CD10A99069EF8BA00B06720</string> | 587 | <string>1CD10A99069EF8BA00B06720</string> |
| @@ -155,6 +155,18 @@ | @@ -155,6 +155,18 @@ | ||
| 155 | B500B5790E635B5500744D82 /* PBXTextBookmark */ = B500B5790E635B5500744D82 /* PBXTextBookmark */; | 155 | B500B5790E635B5500744D82 /* PBXTextBookmark */ = B500B5790E635B5500744D82 /* PBXTextBookmark */; |
| 156 | B500B57A0E635B5500744D82 /* PBXTextBookmark */ = B500B57A0E635B5500744D82 /* PBXTextBookmark */; | 156 | B500B57A0E635B5500744D82 /* PBXTextBookmark */ = B500B57A0E635B5500744D82 /* PBXTextBookmark */; |
| 157 | B500B57B0E635B5500744D82 /* PBXTextBookmark */ = B500B57B0E635B5500744D82 /* PBXTextBookmark */; | 157 | B500B57B0E635B5500744D82 /* PBXTextBookmark */ = B500B57B0E635B5500744D82 /* PBXTextBookmark */; |
| 158 | + B500B57E0E635BC700744D82 /* PBXTextBookmark */ = B500B57E0E635BC700744D82 /* PBXTextBookmark */; | ||
| 159 | + B500B57F0E635BC700744D82 /* PBXTextBookmark */ = B500B57F0E635BC700744D82 /* PBXTextBookmark */; | ||
| 160 | + B500B5800E635BC700744D82 /* PBXTextBookmark */ = B500B5800E635BC700744D82 /* PBXTextBookmark */; | ||
| 161 | + B500B5810E635BC700744D82 /* PBXTextBookmark */ = B500B5810E635BC700744D82 /* PBXTextBookmark */; | ||
| 162 | + B500B5820E635BC700744D82 /* PBXTextBookmark */ = B500B5820E635BC700744D82 /* PBXTextBookmark */; | ||
| 163 | + B500B5830E635BC700744D82 /* PBXTextBookmark */ = B500B5830E635BC700744D82 /* PBXTextBookmark */; | ||
| 164 | + B500B5840E635BC700744D82 /* PBXTextBookmark */ = B500B5840E635BC700744D82 /* PBXTextBookmark */; | ||
| 165 | + B500B5850E635BC700744D82 /* PBXTextBookmark */ = B500B5850E635BC700744D82 /* PBXTextBookmark */; | ||
| 166 | + B500B5860E635BC700744D82 /* PBXTextBookmark */ = B500B5860E635BC700744D82 /* PBXTextBookmark */; | ||
| 167 | + B500B5870E635BC700744D82 /* PBXTextBookmark */ = B500B5870E635BC700744D82 /* PBXTextBookmark */; | ||
| 168 | + B500B5880E635BC700744D82 /* PBXTextBookmark */ = B500B5880E635BC700744D82 /* PBXTextBookmark */; | ||
| 169 | + B500B5890E635BC700744D82 /* PBXTextBookmark */ = B500B5890E635BC700744D82 /* PBXTextBookmark */; | ||
| 158 | B513D4020E2BD48A000A50C6 = B513D4020E2BD48A000A50C6 /* PlistBookmark */; | 170 | B513D4020E2BD48A000A50C6 = B513D4020E2BD48A000A50C6 /* PlistBookmark */; |
| 159 | B513D4030E2BD48A000A50C6 = B513D4030E2BD48A000A50C6 /* PBXTextBookmark */; | 171 | B513D4030E2BD48A000A50C6 = B513D4030E2BD48A000A50C6 /* PBXTextBookmark */; |
| 160 | B567EF5C0E4EE4FC001E238F = B567EF5C0E4EE4FC001E238F /* PBXTextBookmark */; | 172 | B567EF5C0E4EE4FC001E238F = B567EF5C0E4EE4FC001E238F /* PBXTextBookmark */; |
| @@ -553,7 +565,7 @@ | @@ -553,7 +565,7 @@ | ||
| 553 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 565 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 554 | name = "ASIHTTPRequestTests.m: 183"; | 566 | name = "ASIHTTPRequestTests.m: 183"; |
| 555 | rLen = 0; | 567 | rLen = 0; |
| 556 | - rLoc = 7540; | 568 | + rLoc = 5618; |
| 557 | rType = 0; | 569 | rType = 0; |
| 558 | vrLen = 2416; | 570 | vrLen = 2416; |
| 559 | vrLoc = 6299; | 571 | vrLoc = 6299; |
| @@ -600,7 +612,7 @@ | @@ -600,7 +612,7 @@ | ||
| 600 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 612 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 601 | name = "ASIHTTPRequestTests.m: 183"; | 613 | name = "ASIHTTPRequestTests.m: 183"; |
| 602 | rLen = 0; | 614 | rLen = 0; |
| 603 | - rLoc = 7540; | 615 | + rLoc = 5618; |
| 604 | rType = 0; | 616 | rType = 0; |
| 605 | vrLen = 2416; | 617 | vrLen = 2416; |
| 606 | vrLoc = 6299; | 618 | vrLoc = 6299; |
| @@ -615,6 +627,126 @@ | @@ -615,6 +627,126 @@ | ||
| 615 | vrLen = 2093; | 627 | vrLen = 2093; |
| 616 | vrLoc = 4323; | 628 | vrLoc = 4323; |
| 617 | }; | 629 | }; |
| 630 | + B500B57E0E635BC700744D82 /* PBXTextBookmark */ = { | ||
| 631 | + isa = PBXTextBookmark; | ||
| 632 | + fRef = B5B3BC460E62D4790071D39F /* ASIHTTPCookie.h */; | ||
| 633 | + name = "ASIHTTPCookie.h: 25"; | ||
| 634 | + rLen = 15; | ||
| 635 | + rLoc = 528; | ||
| 636 | + rType = 0; | ||
| 637 | + vrLen = 789; | ||
| 638 | + vrLoc = 0; | ||
| 639 | + }; | ||
| 640 | + B500B57F0E635BC700744D82 /* PBXTextBookmark */ = { | ||
| 641 | + isa = PBXTextBookmark; | ||
| 642 | + fRef = B5B3BC470E62D4790071D39F /* ASIHTTPCookie.m */; | ||
| 643 | + name = "ASIHTTPCookie.m: 16"; | ||
| 644 | + rLen = 0; | ||
| 645 | + rLoc = 374; | ||
| 646 | + rType = 0; | ||
| 647 | + vrLen = 1581; | ||
| 648 | + vrLoc = 0; | ||
| 649 | + }; | ||
| 650 | + B500B5800E635BC700744D82 /* PBXTextBookmark */ = { | ||
| 651 | + isa = PBXTextBookmark; | ||
| 652 | + fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */; | ||
| 653 | + name = "ASIHTTPRequest.h: 257"; | ||
| 654 | + rLen = 0; | ||
| 655 | + rLoc = 8939; | ||
| 656 | + rType = 0; | ||
| 657 | + vrLen = 1984; | ||
| 658 | + vrLoc = 0; | ||
| 659 | + }; | ||
| 660 | + B500B5810E635BC700744D82 /* PBXTextBookmark */ = { | ||
| 661 | + isa = PBXTextBookmark; | ||
| 662 | + fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */; | ||
| 663 | + name = "ASIHTTPRequest.m: 175"; | ||
| 664 | + rLen = 0; | ||
| 665 | + rLoc = 4701; | ||
| 666 | + rType = 0; | ||
| 667 | + vrLen = 2118; | ||
| 668 | + vrLoc = 4320; | ||
| 669 | + }; | ||
| 670 | + B500B5820E635BC700744D82 /* PBXTextBookmark */ = { | ||
| 671 | + isa = PBXTextBookmark; | ||
| 672 | + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | ||
| 673 | + name = "ASIHTTPRequestTests.m: 21"; | ||
| 674 | + rLen = 0; | ||
| 675 | + rLoc = 392; | ||
| 676 | + rType = 0; | ||
| 677 | + vrLen = 2517; | ||
| 678 | + vrLoc = 1963; | ||
| 679 | + }; | ||
| 680 | + B500B5830E635BC700744D82 /* PBXTextBookmark */ = { | ||
| 681 | + isa = PBXTextBookmark; | ||
| 682 | + fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */; | ||
| 683 | + name = "ASIHTTPRequest.m: 175"; | ||
| 684 | + rLen = 0; | ||
| 685 | + rLoc = 4701; | ||
| 686 | + rType = 0; | ||
| 687 | + vrLen = 2093; | ||
| 688 | + vrLoc = 4323; | ||
| 689 | + }; | ||
| 690 | + B500B5840E635BC700744D82 /* PBXTextBookmark */ = { | ||
| 691 | + isa = PBXTextBookmark; | ||
| 692 | + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | ||
| 693 | + name = "ASIHTTPRequestTests.m: 21"; | ||
| 694 | + rLen = 0; | ||
| 695 | + rLoc = 392; | ||
| 696 | + rType = 0; | ||
| 697 | + vrLen = 2517; | ||
| 698 | + vrLoc = 1963; | ||
| 699 | + }; | ||
| 700 | + B500B5850E635BC700744D82 /* PBXTextBookmark */ = { | ||
| 701 | + isa = PBXTextBookmark; | ||
| 702 | + fRef = B5B3BC460E62D4790071D39F /* ASIHTTPCookie.h */; | ||
| 703 | + name = "ASIHTTPCookie.h: 25"; | ||
| 704 | + rLen = 15; | ||
| 705 | + rLoc = 528; | ||
| 706 | + rType = 0; | ||
| 707 | + vrLen = 789; | ||
| 708 | + vrLoc = 0; | ||
| 709 | + }; | ||
| 710 | + B500B5860E635BC700744D82 /* PBXTextBookmark */ = { | ||
| 711 | + isa = PBXTextBookmark; | ||
| 712 | + fRef = B5B3BC470E62D4790071D39F /* ASIHTTPCookie.m */; | ||
| 713 | + name = "ASIHTTPCookie.m: 16"; | ||
| 714 | + rLen = 0; | ||
| 715 | + rLoc = 374; | ||
| 716 | + rType = 0; | ||
| 717 | + vrLen = 1581; | ||
| 718 | + vrLoc = 0; | ||
| 719 | + }; | ||
| 720 | + B500B5870E635BC700744D82 /* PBXTextBookmark */ = { | ||
| 721 | + isa = PBXTextBookmark; | ||
| 722 | + fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */; | ||
| 723 | + name = "ASIHTTPRequest.h: 257"; | ||
| 724 | + rLen = 0; | ||
| 725 | + rLoc = 8939; | ||
| 726 | + rType = 0; | ||
| 727 | + vrLen = 1984; | ||
| 728 | + vrLoc = 0; | ||
| 729 | + }; | ||
| 730 | + B500B5880E635BC700744D82 /* PBXTextBookmark */ = { | ||
| 731 | + isa = PBXTextBookmark; | ||
| 732 | + fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */; | ||
| 733 | + name = "ASIHTTPRequest.m: 175"; | ||
| 734 | + rLen = 0; | ||
| 735 | + rLoc = 4701; | ||
| 736 | + rType = 0; | ||
| 737 | + vrLen = 2118; | ||
| 738 | + vrLoc = 4320; | ||
| 739 | + }; | ||
| 740 | + B500B5890E635BC700744D82 /* PBXTextBookmark */ = { | ||
| 741 | + isa = PBXTextBookmark; | ||
| 742 | + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | ||
| 743 | + name = "ASIHTTPRequestTests.m: 196"; | ||
| 744 | + rLen = 0; | ||
| 745 | + rLoc = 8273; | ||
| 746 | + rType = 0; | ||
| 747 | + vrLen = 2494; | ||
| 748 | + vrLoc = 6099; | ||
| 749 | + }; | ||
| 618 | B513D4020E2BD48A000A50C6 /* PlistBookmark */ = { | 750 | B513D4020E2BD48A000A50C6 /* PlistBookmark */ = { |
| 619 | isa = PlistBookmark; | 751 | isa = PlistBookmark; |
| 620 | fRef = 8D1107310486CEB800E47090 /* Info.plist */; | 752 | fRef = 8D1107310486CEB800E47090 /* Info.plist */; |
| @@ -679,8 +811,8 @@ | @@ -679,8 +811,8 @@ | ||
| 679 | B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */ = { | 811 | B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */ = { |
| 680 | uiCtxt = { | 812 | uiCtxt = { |
| 681 | sepNavIntBoundsRect = "{{0, 0}, {1252, 2926}}"; | 813 | sepNavIntBoundsRect = "{{0, 0}, {1252, 2926}}"; |
| 682 | - sepNavSelRange = "{392, 0}"; | 814 | + sepNavSelRange = "{8273, 0}"; |
| 683 | - sepNavVisRange = "{1971, 2367}"; | 815 | + sepNavVisRange = "{6099, 2494}"; |
| 684 | sepNavWindowFrame = "{{148, 98}, {1485, 874}}"; | 816 | sepNavWindowFrame = "{{148, 98}, {1485, 874}}"; |
| 685 | }; | 817 | }; |
| 686 | }; | 818 | }; |
| @@ -892,17 +1024,17 @@ | @@ -892,17 +1024,17 @@ | ||
| 892 | }; | 1024 | }; |
| 893 | B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */ = { | 1025 | B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */ = { |
| 894 | uiCtxt = { | 1026 | uiCtxt = { |
| 895 | - sepNavIntBoundsRect = "{{0, 0}, {1252, 13048}}"; | 1027 | + sepNavIntBoundsRect = "{{0, 0}, {1252, 13090}}"; |
| 896 | sepNavSelRange = "{4701, 0}"; | 1028 | sepNavSelRange = "{4701, 0}"; |
| 897 | - sepNavVisRange = "{4323, 2093}"; | 1029 | + sepNavVisRange = "{4320, 2118}"; |
| 898 | sepNavWindowFrame = "{{500, 55}, {1475, 874}}"; | 1030 | sepNavWindowFrame = "{{500, 55}, {1475, 874}}"; |
| 899 | }; | 1031 | }; |
| 900 | }; | 1032 | }; |
| 901 | B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */ = { | 1033 | B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */ = { |
| 902 | uiCtxt = { | 1034 | uiCtxt = { |
| 903 | - sepNavIntBoundsRect = "{{0, 0}, {1252, 3626}}"; | 1035 | + sepNavIntBoundsRect = "{{0, 0}, {1252, 3682}}"; |
| 904 | sepNavSelRange = "{8939, 0}"; | 1036 | sepNavSelRange = "{8939, 0}"; |
| 905 | - sepNavVisRange = "{140, 2061}"; | 1037 | + sepNavVisRange = "{0, 1984}"; |
| 906 | sepNavWindowFrame = "{{19, 304}, {1475, 874}}"; | 1038 | sepNavWindowFrame = "{{19, 304}, {1475, 874}}"; |
| 907 | }; | 1039 | }; |
| 908 | }; | 1040 | }; |
| @@ -990,7 +1122,7 @@ | @@ -990,7 +1122,7 @@ | ||
| 990 | uiCtxt = { | 1122 | uiCtxt = { |
| 991 | sepNavIntBoundsRect = "{{0, 0}, {1252, 1414}}"; | 1123 | sepNavIntBoundsRect = "{{0, 0}, {1252, 1414}}"; |
| 992 | sepNavSelRange = "{374, 0}"; | 1124 | sepNavSelRange = "{374, 0}"; |
| 993 | - sepNavVisRange = "{0, 1521}"; | 1125 | + sepNavVisRange = "{0, 1581}"; |
| 994 | }; | 1126 | }; |
| 995 | }; | 1127 | }; |
| 996 | B5B3BC680E62DA0E0071D39F /* PBXTextBookmark */ = { | 1128 | B5B3BC680E62DA0E0071D39F /* PBXTextBookmark */ = { |
| @@ -1148,7 +1280,7 @@ | @@ -1148,7 +1280,7 @@ | ||
| 1148 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 1280 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 1149 | name = "ASIHTTPRequestTests.m: 148"; | 1281 | name = "ASIHTTPRequestTests.m: 148"; |
| 1150 | rLen = 0; | 1282 | rLen = 0; |
| 1151 | - rLoc = 8521; | 1283 | + rLoc = 8581; |
| 1152 | rType = 0; | 1284 | rType = 0; |
| 1153 | vrLen = 1760; | 1285 | vrLen = 1760; |
| 1154 | vrLoc = 4106; | 1286 | vrLoc = 4106; |
| @@ -1368,7 +1500,7 @@ | @@ -1368,7 +1500,7 @@ | ||
| 1368 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 1500 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 1369 | name = "ASIHTTPRequestTests.m: 148"; | 1501 | name = "ASIHTTPRequestTests.m: 148"; |
| 1370 | rLen = 0; | 1502 | rLen = 0; |
| 1371 | - rLoc = 8521; | 1503 | + rLoc = 8581; |
| 1372 | rType = 0; | 1504 | rType = 0; |
| 1373 | vrLen = 1906; | 1505 | vrLen = 1906; |
| 1374 | vrLoc = 4264; | 1506 | vrLoc = 4264; |
| @@ -1398,7 +1530,7 @@ | @@ -1398,7 +1530,7 @@ | ||
| 1398 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 1530 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 1399 | name = "ASIHTTPRequestTests.m: 148"; | 1531 | name = "ASIHTTPRequestTests.m: 148"; |
| 1400 | rLen = 0; | 1532 | rLen = 0; |
| 1401 | - rLoc = 8521; | 1533 | + rLoc = 8581; |
| 1402 | rType = 0; | 1534 | rType = 0; |
| 1403 | vrLen = 1944; | 1535 | vrLen = 1944; |
| 1404 | vrLoc = 4226; | 1536 | vrLoc = 4226; |
| @@ -1418,7 +1550,7 @@ | @@ -1418,7 +1550,7 @@ | ||
| 1418 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 1550 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 1419 | name = "ASIHTTPRequestTests.m: 145"; | 1551 | name = "ASIHTTPRequestTests.m: 145"; |
| 1420 | rLen = 0; | 1552 | rLen = 0; |
| 1421 | - rLoc = 6751; | 1553 | + rLoc = 5618; |
| 1422 | rType = 0; | 1554 | rType = 0; |
| 1423 | vrLen = 1982; | 1555 | vrLen = 1982; |
| 1424 | vrLoc = 4224; | 1556 | vrLoc = 4224; |
| @@ -1518,7 +1650,7 @@ | @@ -1518,7 +1650,7 @@ | ||
| 1518 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 1650 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 1519 | name = "ASIHTTPRequestTests.m: 137"; | 1651 | name = "ASIHTTPRequestTests.m: 137"; |
| 1520 | rLen = 0; | 1652 | rLen = 0; |
| 1521 | - rLoc = 6258; | 1653 | + rLoc = 5618; |
| 1522 | rType = 0; | 1654 | rType = 0; |
| 1523 | vrLen = 2082; | 1655 | vrLen = 2082; |
| 1524 | vrLoc = 4701; | 1656 | vrLoc = 4701; |
| @@ -1538,7 +1670,7 @@ | @@ -1538,7 +1670,7 @@ | ||
| 1538 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 1670 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 1539 | name = "ASIHTTPRequestTests.m: 137"; | 1671 | name = "ASIHTTPRequestTests.m: 137"; |
| 1540 | rLen = 0; | 1672 | rLen = 0; |
| 1541 | - rLoc = 6258; | 1673 | + rLoc = 5618; |
| 1542 | rType = 0; | 1674 | rType = 0; |
| 1543 | vrLen = 2105; | 1675 | vrLen = 2105; |
| 1544 | vrLoc = 5050; | 1676 | vrLoc = 5050; |
| @@ -1562,7 +1694,7 @@ | @@ -1562,7 +1694,7 @@ | ||
| 1562 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 1694 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 1563 | name = "ASIHTTPRequestTests.m: 134"; | 1695 | name = "ASIHTTPRequestTests.m: 134"; |
| 1564 | rLen = 0; | 1696 | rLen = 0; |
| 1565 | - rLoc = 6117; | 1697 | + rLoc = 5618; |
| 1566 | rType = 0; | 1698 | rType = 0; |
| 1567 | vrLen = 2347; | 1699 | vrLen = 2347; |
| 1568 | vrLoc = 375; | 1700 | vrLoc = 375; |
| @@ -1582,7 +1714,7 @@ | @@ -1582,7 +1714,7 @@ | ||
| 1582 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 1714 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 1583 | name = "ASIHTTPRequestTests.m: 134"; | 1715 | name = "ASIHTTPRequestTests.m: 134"; |
| 1584 | rLen = 0; | 1716 | rLen = 0; |
| 1585 | - rLoc = 6117; | 1717 | + rLoc = 5618; |
| 1586 | rType = 0; | 1718 | rType = 0; |
| 1587 | vrLen = 2299; | 1719 | vrLen = 2299; |
| 1588 | vrLoc = 4851; | 1720 | vrLoc = 4851; |
| @@ -1602,7 +1734,7 @@ | @@ -1602,7 +1734,7 @@ | ||
| 1602 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 1734 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 1603 | name = "ASIHTTPRequestTests.m: 134"; | 1735 | name = "ASIHTTPRequestTests.m: 134"; |
| 1604 | rLen = 0; | 1736 | rLen = 0; |
| 1605 | - rLoc = 6117; | 1737 | + rLoc = 5618; |
| 1606 | rType = 0; | 1738 | rType = 0; |
| 1607 | vrLen = 2304; | 1739 | vrLen = 2304; |
| 1608 | vrLoc = 4851; | 1740 | vrLoc = 4851; |
| @@ -1622,7 +1754,7 @@ | @@ -1622,7 +1754,7 @@ | ||
| 1622 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 1754 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 1623 | name = "ASIHTTPRequestTests.m: 134"; | 1755 | name = "ASIHTTPRequestTests.m: 134"; |
| 1624 | rLen = 0; | 1756 | rLen = 0; |
| 1625 | - rLoc = 6117; | 1757 | + rLoc = 5618; |
| 1626 | rType = 0; | 1758 | rType = 0; |
| 1627 | vrLen = 2412; | 1759 | vrLen = 2412; |
| 1628 | vrLoc = 4743; | 1760 | vrLoc = 4743; |
| @@ -1692,7 +1824,7 @@ | @@ -1692,7 +1824,7 @@ | ||
| 1692 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 1824 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 1693 | name = "ASIHTTPRequestTests.m: 134"; | 1825 | name = "ASIHTTPRequestTests.m: 134"; |
| 1694 | rLen = 0; | 1826 | rLen = 0; |
| 1695 | - rLoc = 6117; | 1827 | + rLoc = 5618; |
| 1696 | rType = 0; | 1828 | rType = 0; |
| 1697 | vrLen = 2304; | 1829 | vrLen = 2304; |
| 1698 | vrLoc = 4851; | 1830 | vrLoc = 4851; |
| @@ -1732,7 +1864,7 @@ | @@ -1732,7 +1864,7 @@ | ||
| 1732 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 1864 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 1733 | name = "ASIHTTPRequestTests.m: 155"; | 1865 | name = "ASIHTTPRequestTests.m: 155"; |
| 1734 | rLen = 0; | 1866 | rLen = 0; |
| 1735 | - rLoc = 7092; | 1867 | + rLoc = 5618; |
| 1736 | rType = 0; | 1868 | rType = 0; |
| 1737 | vrLen = 2414; | 1869 | vrLen = 2414; |
| 1738 | vrLoc = 4743; | 1870 | vrLoc = 4743; |
| @@ -1752,7 +1884,7 @@ | @@ -1752,7 +1884,7 @@ | ||
| 1752 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 1884 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 1753 | name = "ASIHTTPRequestTests.m: 155"; | 1885 | name = "ASIHTTPRequestTests.m: 155"; |
| 1754 | rLen = 0; | 1886 | rLen = 0; |
| 1755 | - rLoc = 7092; | 1887 | + rLoc = 5618; |
| 1756 | rType = 0; | 1888 | rType = 0; |
| 1757 | vrLen = 2415; | 1889 | vrLen = 2415; |
| 1758 | vrLoc = 4741; | 1890 | vrLoc = 4741; |
| @@ -1772,7 +1904,7 @@ | @@ -1772,7 +1904,7 @@ | ||
| 1772 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 1904 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 1773 | name = "ASIHTTPRequestTests.m: 155"; | 1905 | name = "ASIHTTPRequestTests.m: 155"; |
| 1774 | rLen = 0; | 1906 | rLen = 0; |
| 1775 | - rLoc = 7054; | 1907 | + rLoc = 5618; |
| 1776 | rType = 0; | 1908 | rType = 0; |
| 1777 | vrLen = 2413; | 1909 | vrLen = 2413; |
| 1778 | vrLoc = 4743; | 1910 | vrLoc = 4743; |
| @@ -1792,7 +1924,7 @@ | @@ -1792,7 +1924,7 @@ | ||
| 1792 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 1924 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 1793 | name = "ASIHTTPRequestTests.m: 155"; | 1925 | name = "ASIHTTPRequestTests.m: 155"; |
| 1794 | rLen = 0; | 1926 | rLen = 0; |
| 1795 | - rLoc = 7054; | 1927 | + rLoc = 5618; |
| 1796 | rType = 0; | 1928 | rType = 0; |
| 1797 | vrLen = 2413; | 1929 | vrLen = 2413; |
| 1798 | vrLoc = 4743; | 1930 | vrLoc = 4743; |
| @@ -1812,7 +1944,7 @@ | @@ -1812,7 +1944,7 @@ | ||
| 1812 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 1944 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 1813 | name = "ASIHTTPRequestTests.m: 155"; | 1945 | name = "ASIHTTPRequestTests.m: 155"; |
| 1814 | rLen = 0; | 1946 | rLen = 0; |
| 1815 | - rLoc = 7054; | 1947 | + rLoc = 5618; |
| 1816 | rType = 0; | 1948 | rType = 0; |
| 1817 | vrLen = 2413; | 1949 | vrLen = 2413; |
| 1818 | vrLoc = 4743; | 1950 | vrLoc = 4743; |
| @@ -1852,7 +1984,7 @@ | @@ -1852,7 +1984,7 @@ | ||
| 1852 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 1984 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 1853 | name = "ASIHTTPRequestTests.m: 155"; | 1985 | name = "ASIHTTPRequestTests.m: 155"; |
| 1854 | rLen = 0; | 1986 | rLen = 0; |
| 1855 | - rLoc = 7054; | 1987 | + rLoc = 5618; |
| 1856 | rType = 0; | 1988 | rType = 0; |
| 1857 | vrLen = 2210; | 1989 | vrLen = 2210; |
| 1858 | vrLoc = 4952; | 1990 | vrLoc = 4952; |
| @@ -1982,7 +2114,7 @@ | @@ -1982,7 +2114,7 @@ | ||
| 1982 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 2114 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 1983 | name = "ASIHTTPRequestTests.m: 168"; | 2115 | name = "ASIHTTPRequestTests.m: 168"; |
| 1984 | rLen = 0; | 2116 | rLen = 0; |
| 1985 | - rLoc = 7821; | 2117 | + rLoc = 5618; |
| 1986 | rType = 0; | 2118 | rType = 0; |
| 1987 | vrLen = 2553; | 2119 | vrLen = 2553; |
| 1988 | vrLoc = 4851; | 2120 | vrLoc = 4851; |
| @@ -2012,7 +2144,7 @@ | @@ -2012,7 +2144,7 @@ | ||
| 2012 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 2144 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 2013 | name = "ASIHTTPRequestTests.m: 169"; | 2145 | name = "ASIHTTPRequestTests.m: 169"; |
| 2014 | rLen = 0; | 2146 | rLen = 0; |
| 2015 | - rLoc = 7821; | 2147 | + rLoc = 5618; |
| 2016 | rType = 0; | 2148 | rType = 0; |
| 2017 | vrLen = 2452; | 2149 | vrLen = 2452; |
| 2018 | vrLoc = 4992; | 2150 | vrLoc = 4992; |
| @@ -2042,7 +2174,7 @@ | @@ -2042,7 +2174,7 @@ | ||
| 2042 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 2174 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 2043 | name = "ASIHTTPRequestTests.m: 169"; | 2175 | name = "ASIHTTPRequestTests.m: 169"; |
| 2044 | rLen = 0; | 2176 | rLen = 0; |
| 2045 | - rLoc = 7821; | 2177 | + rLoc = 5618; |
| 2046 | rType = 0; | 2178 | rType = 0; |
| 2047 | vrLen = 2452; | 2179 | vrLen = 2452; |
| 2048 | vrLoc = 4992; | 2180 | vrLoc = 4992; |
| @@ -2062,7 +2194,7 @@ | @@ -2062,7 +2194,7 @@ | ||
| 2062 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 2194 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 2063 | name = "ASIHTTPRequestTests.m: 165"; | 2195 | name = "ASIHTTPRequestTests.m: 165"; |
| 2064 | rLen = 0; | 2196 | rLen = 0; |
| 2065 | - rLoc = 7540; | 2197 | + rLoc = 5618; |
| 2066 | rType = 0; | 2198 | rType = 0; |
| 2067 | vrLen = 2302; | 2199 | vrLen = 2302; |
| 2068 | vrLoc = 4703; | 2200 | vrLoc = 4703; |
| @@ -2092,7 +2224,7 @@ | @@ -2092,7 +2224,7 @@ | ||
| 2092 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 2224 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 2093 | name = "ASIHTTPRequestTests.m: 165"; | 2225 | name = "ASIHTTPRequestTests.m: 165"; |
| 2094 | rLen = 0; | 2226 | rLen = 0; |
| 2095 | - rLoc = 7540; | 2227 | + rLoc = 5618; |
| 2096 | rType = 0; | 2228 | rType = 0; |
| 2097 | vrLen = 2302; | 2229 | vrLen = 2302; |
| 2098 | vrLoc = 4703; | 2230 | vrLoc = 4703; |
| @@ -2232,7 +2364,7 @@ | @@ -2232,7 +2364,7 @@ | ||
| 2232 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 2364 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 2233 | name = "ASIHTTPRequestTests.m: 165"; | 2365 | name = "ASIHTTPRequestTests.m: 165"; |
| 2234 | rLen = 0; | 2366 | rLen = 0; |
| 2235 | - rLoc = 7540; | 2367 | + rLoc = 5618; |
| 2236 | rType = 0; | 2368 | rType = 0; |
| 2237 | vrLen = 2446; | 2369 | vrLen = 2446; |
| 2238 | vrLoc = 5267; | 2370 | vrLoc = 5267; |
| @@ -2262,7 +2394,7 @@ | @@ -2262,7 +2394,7 @@ | ||
| 2262 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 2394 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 2263 | name = "ASIHTTPRequestTests.m: 165"; | 2395 | name = "ASIHTTPRequestTests.m: 165"; |
| 2264 | rLen = 0; | 2396 | rLen = 0; |
| 2265 | - rLoc = 7540; | 2397 | + rLoc = 5618; |
| 2266 | rType = 0; | 2398 | rType = 0; |
| 2267 | vrLen = 2303; | 2399 | vrLen = 2303; |
| 2268 | vrLoc = 4704; | 2400 | vrLoc = 4704; |
| @@ -2302,7 +2434,7 @@ | @@ -2302,7 +2434,7 @@ | ||
| 2302 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 2434 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 2303 | name = "ASIHTTPRequestTests.m: 165"; | 2435 | name = "ASIHTTPRequestTests.m: 165"; |
| 2304 | rLen = 0; | 2436 | rLen = 0; |
| 2305 | - rLoc = 7540; | 2437 | + rLoc = 5618; |
| 2306 | rType = 0; | 2438 | rType = 0; |
| 2307 | vrLen = 2392; | 2439 | vrLen = 2392; |
| 2308 | vrLoc = 5503; | 2440 | vrLoc = 5503; |
| @@ -2322,7 +2454,7 @@ | @@ -2322,7 +2454,7 @@ | ||
| 2322 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 2454 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 2323 | name = "ASIHTTPRequestTests.m: 165"; | 2455 | name = "ASIHTTPRequestTests.m: 165"; |
| 2324 | rLen = 0; | 2456 | rLen = 0; |
| 2325 | - rLoc = 7540; | 2457 | + rLoc = 5618; |
| 2326 | rType = 0; | 2458 | rType = 0; |
| 2327 | vrLen = 2392; | 2459 | vrLen = 2392; |
| 2328 | vrLoc = 5503; | 2460 | vrLoc = 5503; |
| @@ -2372,7 +2504,7 @@ | @@ -2372,7 +2504,7 @@ | ||
| 2372 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 2504 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 2373 | name = "ASIHTTPRequestTests.m: 165"; | 2505 | name = "ASIHTTPRequestTests.m: 165"; |
| 2374 | rLen = 0; | 2506 | rLen = 0; |
| 2375 | - rLoc = 7540; | 2507 | + rLoc = 5618; |
| 2376 | rType = 0; | 2508 | rType = 0; |
| 2377 | vrLen = 2392; | 2509 | vrLen = 2392; |
| 2378 | vrLoc = 5503; | 2510 | vrLoc = 5503; |
| @@ -2392,7 +2524,7 @@ | @@ -2392,7 +2524,7 @@ | ||
| 2392 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 2524 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 2393 | name = "ASIHTTPRequestTests.m: 180"; | 2525 | name = "ASIHTTPRequestTests.m: 180"; |
| 2394 | rLen = 0; | 2526 | rLen = 0; |
| 2395 | - rLoc = 8348; | 2527 | + rLoc = 8408; |
| 2396 | rType = 0; | 2528 | rType = 0; |
| 2397 | vrLen = 2446; | 2529 | vrLen = 2446; |
| 2398 | vrLoc = 5449; | 2530 | vrLoc = 5449; |
| @@ -2412,7 +2544,7 @@ | @@ -2412,7 +2544,7 @@ | ||
| 2412 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 2544 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 2413 | name = "ASIHTTPRequestTests.m: 180"; | 2545 | name = "ASIHTTPRequestTests.m: 180"; |
| 2414 | rLen = 0; | 2546 | rLen = 0; |
| 2415 | - rLoc = 8348; | 2547 | + rLoc = 8408; |
| 2416 | rType = 0; | 2548 | rType = 0; |
| 2417 | vrLen = 2552; | 2549 | vrLen = 2552; |
| 2418 | vrLoc = 375; | 2550 | vrLoc = 375; |
| @@ -2642,7 +2774,7 @@ | @@ -2642,7 +2774,7 @@ | ||
| 2642 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 2774 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 2643 | name = "ASIHTTPRequestTests.m: 183"; | 2775 | name = "ASIHTTPRequestTests.m: 183"; |
| 2644 | rLen = 0; | 2776 | rLen = 0; |
| 2645 | - rLoc = 7540; | 2777 | + rLoc = 5618; |
| 2646 | rType = 0; | 2778 | rType = 0; |
| 2647 | vrLen = 2392; | 2779 | vrLen = 2392; |
| 2648 | vrLoc = 6363; | 2780 | vrLoc = 6363; |
| @@ -2762,7 +2894,7 @@ | @@ -2762,7 +2894,7 @@ | ||
| 2762 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; | 2894 | fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; |
| 2763 | name = "ASIHTTPRequestTests.m: 168"; | 2895 | name = "ASIHTTPRequestTests.m: 168"; |
| 2764 | rLen = 0; | 2896 | rLen = 0; |
| 2765 | - rLoc = 6258; | 2897 | + rLoc = 5618; |
| 2766 | rType = 0; | 2898 | rType = 0; |
| 2767 | vrLen = 2203; | 2899 | vrLen = 2203; |
| 2768 | vrLoc = 4132; | 2900 | vrLoc = 4132; |
-
Please register or login to post a comment