Ben Copsey

Attempt to removing annoying xcode files from project

@@ -262,7 +262,6 @@ static void ReadStreamClientCallBack(CFReadStreamRef readStream, CFStreamEventTy @@ -262,7 +262,6 @@ static void ReadStreamClientCallBack(CFReadStreamRef readStream, CFStreamEventTy
262 [self setLastActivityTime:[[NSDate new] autorelease]]; 262 [self setLastActivityTime:[[NSDate new] autorelease]];
263 263
264 // Wait for the request to finish 264 // Wait for the request to finish
265 - NSDate* endDate = [NSDate distantFuture];  
266 while (!complete) { 265 while (!complete) {
267 266
268 //See if we need to timeout 267 //See if we need to timeout
@@ -283,8 +282,9 @@ static void ReadStreamClientCallBack(CFReadStreamRef readStream, CFStreamEventTy @@ -283,8 +282,9 @@ static void ReadStreamClientCallBack(CFReadStreamRef readStream, CFStreamEventTy
283 break; 282 break;
284 } 283 }
285 [self updateProgressIndicators]; 284 [self updateProgressIndicators];
286 - CFRunLoopRunInMode(ASIHTTPRequestRunMode,0.5,YES); 285 +
287 - //[[NSRunLoop currentRunLoop] runMode:NSRunLoopCommonModes beforeDate:endDate]; 286 + //This thread should wait for 1/4 second for the stream to do something. We'll stop early if it does.
  287 + CFRunLoopRunInMode(ASIHTTPRequestRunMode,0.25,YES);
288 } 288 }
289 289
290 [pool release]; 290 [pool release];
@@ -227,7 +227,7 @@ More tests needed for: @@ -227,7 +227,7 @@ More tests needed for:
227 foundCookie = YES; 227 foundCookie = YES;
228 success = [[cookie decodedValue] isEqualToString:@"This is the value"]; 228 success = [[cookie decodedValue] isEqualToString:@"This is the value"];
229 STAssertTrue(success,@"Failed to store the correct value for a cookie"); 229 STAssertTrue(success,@"Failed to store the correct value for a cookie");
230 - success = [[cookie domain] isEqualToString:@".allseeing-i.com"]; 230 + success = [[cookie domain] isEqualToString:@"allseeing-i.com"];
231 STAssertTrue(success,@"Failed to store the correct domain for a cookie"); 231 STAssertTrue(success,@"Failed to store the correct domain for a cookie");
232 success = [[cookie path] isEqualToString:@"/asi-http-request/tests"]; 232 success = [[cookie path] isEqualToString:@"/asi-http-request/tests"];
233 STAssertTrue(success,@"Failed to store the correct path for a cookie"); 233 STAssertTrue(success,@"Failed to store the correct path for a cookie");
@@ -279,7 +279,7 @@ More tests needed for: @@ -279,7 +279,7 @@ More tests needed for:
279 NSDictionary *cookieProperties = [[[NSMutableDictionary alloc] init] autorelease]; 279 NSDictionary *cookieProperties = [[[NSMutableDictionary alloc] init] autorelease];
280 [cookieProperties setValue:@"Test Value" forKey:NSHTTPCookieValue]; 280 [cookieProperties setValue:@"Test Value" forKey:NSHTTPCookieValue];
281 [cookieProperties setValue:@"ASIHTTPRequestTestCookie" forKey:NSHTTPCookieName]; 281 [cookieProperties setValue:@"ASIHTTPRequestTestCookie" forKey:NSHTTPCookieName];
282 - [cookieProperties setValue:@".allseeing-i.com" forKey:NSHTTPCookieDomain]; 282 + [cookieProperties setValue:@"allseeing-i.com" forKey:NSHTTPCookieDomain];
283 [cookieProperties setValue:[NSDate dateWithTimeIntervalSinceNow:60*60*4] forKey:NSHTTPCookieExpires]; 283 [cookieProperties setValue:[NSDate dateWithTimeIntervalSinceNow:60*60*4] forKey:NSHTTPCookieExpires];
284 [cookieProperties setValue:@"/asi-http-request/tests" forKey:NSHTTPCookiePath]; 284 [cookieProperties setValue:@"/asi-http-request/tests" forKey:NSHTTPCookiePath];
285 cookie = [[[NSHTTPCookie alloc] initWithProperties:cookieProperties] autorelease]; 285 cookie = [[[NSHTTPCookie alloc] initWithProperties:cookieProperties] autorelease];
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">  
3 -<plist version="1.0">  
4 -<dict>  
5 - <key>ActivePerspectiveName</key>  
6 - <string>Project</string>  
7 - <key>AllowedModules</key>  
8 - <array>  
9 - <dict>  
10 - <key>BundleLoadPath</key>  
11 - <string></string>  
12 - <key>MaxInstances</key>  
13 - <string>n</string>  
14 - <key>Module</key>  
15 - <string>PBXSmartGroupTreeModule</string>  
16 - <key>Name</key>  
17 - <string>Groups and Files Outline View</string>  
18 - </dict>  
19 - <dict>  
20 - <key>BundleLoadPath</key>  
21 - <string></string>  
22 - <key>MaxInstances</key>  
23 - <string>n</string>  
24 - <key>Module</key>  
25 - <string>PBXNavigatorGroup</string>  
26 - <key>Name</key>  
27 - <string>Editor</string>  
28 - </dict>  
29 - <dict>  
30 - <key>BundleLoadPath</key>  
31 - <string></string>  
32 - <key>MaxInstances</key>  
33 - <string>n</string>  
34 - <key>Module</key>  
35 - <string>XCTaskListModule</string>  
36 - <key>Name</key>  
37 - <string>Task List</string>  
38 - </dict>  
39 - <dict>  
40 - <key>BundleLoadPath</key>  
41 - <string></string>  
42 - <key>MaxInstances</key>  
43 - <string>n</string>  
44 - <key>Module</key>  
45 - <string>XCDetailModule</string>  
46 - <key>Name</key>  
47 - <string>File and Smart Group Detail Viewer</string>  
48 - </dict>  
49 - <dict>  
50 - <key>BundleLoadPath</key>  
51 - <string></string>  
52 - <key>MaxInstances</key>  
53 - <string>1</string>  
54 - <key>Module</key>  
55 - <string>PBXBuildResultsModule</string>  
56 - <key>Name</key>  
57 - <string>Detailed Build Results Viewer</string>  
58 - </dict>  
59 - <dict>  
60 - <key>BundleLoadPath</key>  
61 - <string></string>  
62 - <key>MaxInstances</key>  
63 - <string>1</string>  
64 - <key>Module</key>  
65 - <string>PBXProjectFindModule</string>  
66 - <key>Name</key>  
67 - <string>Project Batch Find Tool</string>  
68 - </dict>  
69 - <dict>  
70 - <key>BundleLoadPath</key>  
71 - <string></string>  
72 - <key>MaxInstances</key>  
73 - <string>n</string>  
74 - <key>Module</key>  
75 - <string>XCProjectFormatConflictsModule</string>  
76 - <key>Name</key>  
77 - <string>Project Format Conflicts List</string>  
78 - </dict>  
79 - <dict>  
80 - <key>BundleLoadPath</key>  
81 - <string></string>  
82 - <key>MaxInstances</key>  
83 - <string>n</string>  
84 - <key>Module</key>  
85 - <string>PBXBookmarksModule</string>  
86 - <key>Name</key>  
87 - <string>Bookmarks Tool</string>  
88 - </dict>  
89 - <dict>  
90 - <key>BundleLoadPath</key>  
91 - <string></string>  
92 - <key>MaxInstances</key>  
93 - <string>n</string>  
94 - <key>Module</key>  
95 - <string>PBXClassBrowserModule</string>  
96 - <key>Name</key>  
97 - <string>Class Browser</string>  
98 - </dict>  
99 - <dict>  
100 - <key>BundleLoadPath</key>  
101 - <string></string>  
102 - <key>MaxInstances</key>  
103 - <string>n</string>  
104 - <key>Module</key>  
105 - <string>PBXCVSModule</string>  
106 - <key>Name</key>  
107 - <string>Source Code Control Tool</string>  
108 - </dict>  
109 - <dict>  
110 - <key>BundleLoadPath</key>  
111 - <string></string>  
112 - <key>MaxInstances</key>  
113 - <string>n</string>  
114 - <key>Module</key>  
115 - <string>PBXDebugBreakpointsModule</string>  
116 - <key>Name</key>  
117 - <string>Debug Breakpoints Tool</string>  
118 - </dict>  
119 - <dict>  
120 - <key>BundleLoadPath</key>  
121 - <string></string>  
122 - <key>MaxInstances</key>  
123 - <string>n</string>  
124 - <key>Module</key>  
125 - <string>XCDockableInspector</string>  
126 - <key>Name</key>  
127 - <string>Inspector</string>  
128 - </dict>  
129 - <dict>  
130 - <key>BundleLoadPath</key>  
131 - <string></string>  
132 - <key>MaxInstances</key>  
133 - <string>n</string>  
134 - <key>Module</key>  
135 - <string>PBXOpenQuicklyModule</string>  
136 - <key>Name</key>  
137 - <string>Open Quickly Tool</string>  
138 - </dict>  
139 - <dict>  
140 - <key>BundleLoadPath</key>  
141 - <string></string>  
142 - <key>MaxInstances</key>  
143 - <string>1</string>  
144 - <key>Module</key>  
145 - <string>PBXDebugSessionModule</string>  
146 - <key>Name</key>  
147 - <string>Debugger</string>  
148 - </dict>  
149 - <dict>  
150 - <key>BundleLoadPath</key>  
151 - <string></string>  
152 - <key>MaxInstances</key>  
153 - <string>1</string>  
154 - <key>Module</key>  
155 - <string>PBXDebugCLIModule</string>  
156 - <key>Name</key>  
157 - <string>Debug Console</string>  
158 - </dict>  
159 - <dict>  
160 - <key>BundleLoadPath</key>  
161 - <string></string>  
162 - <key>MaxInstances</key>  
163 - <string>n</string>  
164 - <key>Module</key>  
165 - <string>XCSnapshotModule</string>  
166 - <key>Name</key>  
167 - <string>Snapshots Tool</string>  
168 - </dict>  
169 - </array>  
170 - <key>BundlePath</key>  
171 - <string>/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources</string>  
172 - <key>Description</key>  
173 - <string>DefaultDescriptionKey</string>  
174 - <key>DockingSystemVisible</key>  
175 - <false/>  
176 - <key>Extension</key>  
177 - <string>mode1v3</string>  
178 - <key>FavBarConfig</key>  
179 - <dict>  
180 - <key>PBXProjectModuleGUID</key>  
181 - <string>B5ABC7B40E24C52A0072F422</string>  
182 - <key>XCBarModuleItemNames</key>  
183 - <dict/>  
184 - <key>XCBarModuleItems</key>  
185 - <array/>  
186 - </dict>  
187 - <key>FirstTimeWindowDisplayed</key>  
188 - <false/>  
189 - <key>Identifier</key>  
190 - <string>com.apple.perspectives.project.mode1v3</string>  
191 - <key>MajorVersion</key>  
192 - <integer>33</integer>  
193 - <key>MinorVersion</key>  
194 - <integer>0</integer>  
195 - <key>Name</key>  
196 - <string>Default</string>  
197 - <key>Notifications</key>  
198 - <array/>  
199 - <key>OpenEditors</key>  
200 - <array/>  
201 - <key>PerspectiveWidths</key>  
202 - <array>  
203 - <integer>-1</integer>  
204 - <integer>-1</integer>  
205 - </array>  
206 - <key>Perspectives</key>  
207 - <array>  
208 - <dict>  
209 - <key>ChosenToolbarItems</key>  
210 - <array>  
211 - <string>active-target-popup</string>  
212 - <string>active-buildstyle-popup</string>  
213 - <string>action</string>  
214 - <string>NSToolbarFlexibleSpaceItem</string>  
215 - <string>buildOrClean</string>  
216 - <string>build-and-goOrGo</string>  
217 - <string>com.apple.ide.PBXToolbarStopButton</string>  
218 - <string>get-info</string>  
219 - <string>toggle-editor</string>  
220 - <string>NSToolbarFlexibleSpaceItem</string>  
221 - <string>com.apple.pbx.toolbar.searchfield</string>  
222 - </array>  
223 - <key>ControllerClassBaseName</key>  
224 - <string></string>  
225 - <key>IconName</key>  
226 - <string>WindowOfProjectWithEditor</string>  
227 - <key>Identifier</key>  
228 - <string>perspective.project</string>  
229 - <key>IsVertical</key>  
230 - <false/>  
231 - <key>Layout</key>  
232 - <array>  
233 - <dict>  
234 - <key>BecomeActive</key>  
235 - <true/>  
236 - <key>ContentConfiguration</key>  
237 - <dict>  
238 - <key>PBXBottomSmartGroupGIDs</key>  
239 - <array>  
240 - <string>1C37FBAC04509CD000000102</string>  
241 - <string>1C37FAAC04509CD000000102</string>  
242 - <string>1C08E77C0454961000C914BD</string>  
243 - <string>1C37FABC05509CD000000102</string>  
244 - <string>1C37FABC05539CD112110102</string>  
245 - <string>E2644B35053B69B200211256</string>  
246 - <string>1C37FABC04509CD000100104</string>  
247 - <string>1CC0EA4004350EF90044410B</string>  
248 - <string>1CC0EA4004350EF90041110B</string>  
249 - </array>  
250 - <key>PBXProjectModuleGUID</key>  
251 - <string>1CE0B1FE06471DED0097A5F4</string>  
252 - <key>PBXProjectModuleLabel</key>  
253 - <string>Files</string>  
254 - <key>PBXProjectStructureProvided</key>  
255 - <string>yes</string>  
256 - <key>PBXSmartGroupTreeModuleColumnData</key>  
257 - <dict>  
258 - <key>PBXSmartGroupTreeModuleColumnWidthsKey</key>  
259 - <array>  
260 - <real>312</real>  
261 - </array>  
262 - <key>PBXSmartGroupTreeModuleColumnsKey_v4</key>  
263 - <array>  
264 - <string>MainColumn</string>  
265 - </array>  
266 - </dict>  
267 - <key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key>  
268 - <dict>  
269 - <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>  
270 - <array>  
271 - <string>29B97314FDCFA39411CA2CEA</string>  
272 - <string>B5CFFBCA0EC46DF0009ADE56</string>  
273 - <string>B5CFFBC70EC46DDE009ADE56</string>  
274 - <string>B5731AF70E430B020008024F</string>  
275 - <string>080E96DDFE201D6D7F000001</string>  
276 - <string>29B97317FDCFA39411CA2CEA</string>  
277 - <string>29B97323FDCFA39411CA2CEA</string>  
278 - <string>1058C7A0FEA54F0111CA2CBB</string>  
279 - <string>1058C7A2FEA54F0111CA2CBB</string>  
280 - <string>1C37FBAC04509CD000000102</string>  
281 - <string>1C37FABC05509CD000000102</string>  
282 - </array>  
283 - <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>  
284 - <array>  
285 - <array>  
286 - <integer>11</integer>  
287 - <integer>6</integer>  
288 - <integer>0</integer>  
289 - </array>  
290 - </array>  
291 - <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>  
292 - <string>{{0, 0}, {312, 917}}</string>  
293 - </dict>  
294 - <key>PBXTopSmartGroupGIDs</key>  
295 - <array/>  
296 - <key>XCIncludePerspectivesSwitch</key>  
297 - <true/>  
298 - <key>XCSharingToken</key>  
299 - <string>com.apple.Xcode.GFSharingToken</string>  
300 - </dict>  
301 - <key>GeometryConfiguration</key>  
302 - <dict>  
303 - <key>Frame</key>  
304 - <string>{{0, 0}, {329, 935}}</string>  
305 - <key>GroupTreeTableConfiguration</key>  
306 - <array>  
307 - <string>MainColumn</string>  
308 - <real>312</real>  
309 - </array>  
310 - <key>RubberWindowFrame</key>  
311 - <string>411 202 1432 976 0 0 1920 1178 </string>  
312 - </dict>  
313 - <key>Module</key>  
314 - <string>PBXSmartGroupTreeModule</string>  
315 - <key>Proportion</key>  
316 - <string>329pt</string>  
317 - </dict>  
318 - <dict>  
319 - <key>Dock</key>  
320 - <array>  
321 - <dict>  
322 - <key>ContentConfiguration</key>  
323 - <dict>  
324 - <key>PBXProjectModuleGUID</key>  
325 - <string>1CE0B20306471E060097A5F4</string>  
326 - <key>PBXProjectModuleLabel</key>  
327 - <string>SynchronousViewController.m</string>  
328 - <key>PBXSplitModuleInNavigatorKey</key>  
329 - <dict>  
330 - <key>Split0</key>  
331 - <dict>  
332 - <key>PBXProjectModuleGUID</key>  
333 - <string>1CE0B20406471E060097A5F4</string>  
334 - <key>PBXProjectModuleLabel</key>  
335 - <string>SynchronousViewController.m</string>  
336 - <key>_historyCapacity</key>  
337 - <integer>0</integer>  
338 - <key>bookmark</key>  
339 - <string>B56D95070EC6300600B3649A</string>  
340 - <key>history</key>  
341 - <array>  
342 - <string>B5731B8B0E4310180008024F</string>  
343 - <string>B5731BBE0E4319180008024F</string>  
344 - <string>B5731BEE0E431A050008024F</string>  
345 - <string>B5731BEF0E431A050008024F</string>  
346 - <string>B5CF35640E7A7B2C0050CBA7</string>  
347 - <string>B5CFFBDB0EC46E83009ADE56</string>  
348 - <string>B5F4C4080EC4882400D4F31C</string>  
349 - <string>B5B03D180EC5BE420089D01F</string>  
350 - <string>B5B03D400EC5BED20089D01F</string>  
351 - <string>B5B03DBC0EC5D21B0089D01F</string>  
352 - <string>B5B040C90EC5EA970089D01F</string>  
353 - <string>B5B040CB0EC5EA970089D01F</string>  
354 - <string>B5B041360EC5F01A0089D01F</string>  
355 - <string>B5B041A70EC5FA800089D01F</string>  
356 - <string>B5B041AA0EC5FA800089D01F</string>  
357 - <string>B5B041AC0EC5FA800089D01F</string>  
358 - <string>B5B041E90EC5FB670089D01F</string>  
359 - <string>B5B041EA0EC5FB670089D01F</string>  
360 - <string>B5B041EB0EC5FB670089D01F</string>  
361 - <string>B5B042080EC5FD750089D01F</string>  
362 - <string>B5B042090EC5FD750089D01F</string>  
363 - <string>B5B042410EC612E10089D01F</string>  
364 - <string>B5B042640EC613850089D01F</string>  
365 - <string>B5B0428B0EC614680089D01F</string>  
366 - <string>B5B042AC0EC6159B0089D01F</string>  
367 - <string>B5B042AD0EC6159B0089D01F</string>  
368 - <string>B5B042B00EC6159B0089D01F</string>  
369 - <string>B5B042EC0EC61B270089D01F</string>  
370 - <string>B5B042ED0EC61B270089D01F</string>  
371 - <string>B5B042EF0EC61B270089D01F</string>  
372 - <string>B5B043210EC621890089D01F</string>  
373 - <string>B56D94E40EC62EAF00B3649A</string>  
374 - <string>B56D94E50EC62EAF00B3649A</string>  
375 - <string>B56D94E60EC62EAF00B3649A</string>  
376 - <string>B56D94E70EC62EAF00B3649A</string>  
377 - <string>B56D94E80EC62EAF00B3649A</string>  
378 - </array>  
379 - <key>prevStack</key>  
380 - <array>  
381 - <string>B5ABC8250E24CDE70072F422</string>  
382 - <string>B5ABC8280E24CDE70072F422</string>  
383 - <string>B5ABC82F0E24CDE70072F422</string>  
384 - <string>B5ABC8300E24CDE70072F422</string>  
385 - <string>B513D4020E2BD48A000A50C6</string>  
386 - <string>B513D4030E2BD48A000A50C6</string>  
387 - <string>B5731B390E430D310008024F</string>  
388 - <string>B5731B3A0E430D310008024F</string>  
389 - <string>B5731B8F0E4310180008024F</string>  
390 - <string>B5731BC00E4319180008024F</string>  
391 - <string>B5731BF60E431A050008024F</string>  
392 - <string>B5731D9B0E433A750008024F</string>  
393 - <string>B567EF630E4EE4FC001E238F</string>  
394 - <string>B5B3BC690E62DA0E0071D39F</string>  
395 - <string>B5B3BC6C0E62DA0E0071D39F</string>  
396 - <string>B5CF356D0E7A7B2C0050CBA7</string>  
397 - <string>B5CFFA6C0EC46252009ADE56</string>  
398 - <string>B5CFFA6F0EC46252009ADE56</string>  
399 - <string>B5CFFB7B0EC468F5009ADE56</string>  
400 - <string>B5CFFBE00EC46E83009ADE56</string>  
401 - <string>B5F4C1E10EC471D500D4F31C</string>  
402 - <string>B5F4C1E20EC471D500D4F31C</string>  
403 - <string>B5F4C1FC0EC4725B00D4F31C</string>  
404 - <string>B5F4C2460EC4748700D4F31C</string>  
405 - <string>B5F4C2490EC4748700D4F31C</string>  
406 - <string>B5F4C2B40EC4778E00D4F31C</string>  
407 - <string>B5F4C2C10EC4778E00D4F31C</string>  
408 - <string>B5F4C4120EC4882400D4F31C</string>  
409 - <string>B5F4C45E0EC4AD6900D4F31C</string>  
410 - <string>B5F4C4600EC4AD6900D4F31C</string>  
411 - <string>B5B03D280EC5BE420089D01F</string>  
412 - <string>B5B03DEE0EC5D21B0089D01F</string>  
413 - <string>B5B03DF10EC5D21B0089D01F</string>  
414 - <string>B5B03E0A0EC5D21B0089D01F</string>  
415 - <string>B5B03FAA0EC5E1380089D01F</string>  
416 - <string>B5B03FAF0EC5E1380089D01F</string>  
417 - <string>B56D94B00EC6299500B3649A</string>  
418 - <string>B56D94B10EC6299500B3649A</string>  
419 - <string>B56D94C50EC62C3200B3649A</string>  
420 - <string>B56D94E90EC62EAF00B3649A</string>  
421 - <string>B56D94EA0EC62EAF00B3649A</string>  
422 - <string>B56D94EB0EC62EAF00B3649A</string>  
423 - <string>B56D94EC0EC62EAF00B3649A</string>  
424 - <string>B56D94ED0EC62EAF00B3649A</string>  
425 - </array>  
426 - </dict>  
427 - <key>SplitCount</key>  
428 - <string>1</string>  
429 - </dict>  
430 - <key>StatusBarVisibility</key>  
431 - <true/>  
432 - </dict>  
433 - <key>GeometryConfiguration</key>  
434 - <dict>  
435 - <key>Frame</key>  
436 - <string>{{0, 0}, {1098, 836}}</string>  
437 - <key>RubberWindowFrame</key>  
438 - <string>411 202 1432 976 0 0 1920 1178 </string>  
439 - </dict>  
440 - <key>Module</key>  
441 - <string>PBXNavigatorGroup</string>  
442 - <key>Proportion</key>  
443 - <string>836pt</string>  
444 - </dict>  
445 - <dict>  
446 - <key>ContentConfiguration</key>  
447 - <dict>  
448 - <key>PBXProjectModuleGUID</key>  
449 - <string>1CE0B20506471E060097A5F4</string>  
450 - <key>PBXProjectModuleLabel</key>  
451 - <string>Detail</string>  
452 - </dict>  
453 - <key>GeometryConfiguration</key>  
454 - <dict>  
455 - <key>Frame</key>  
456 - <string>{{0, 841}, {1098, 94}}</string>  
457 - <key>RubberWindowFrame</key>  
458 - <string>411 202 1432 976 0 0 1920 1178 </string>  
459 - </dict>  
460 - <key>Module</key>  
461 - <string>XCDetailModule</string>  
462 - <key>Proportion</key>  
463 - <string>94pt</string>  
464 - </dict>  
465 - </array>  
466 - <key>Proportion</key>  
467 - <string>1098pt</string>  
468 - </dict>  
469 - </array>  
470 - <key>Name</key>  
471 - <string>Project</string>  
472 - <key>ServiceClasses</key>  
473 - <array>  
474 - <string>XCModuleDock</string>  
475 - <string>PBXSmartGroupTreeModule</string>  
476 - <string>XCModuleDock</string>  
477 - <string>PBXNavigatorGroup</string>  
478 - <string>XCDetailModule</string>  
479 - </array>  
480 - <key>TableOfContents</key>  
481 - <array>  
482 - <string>B56D948C0EC628B300B3649A</string>  
483 - <string>1CE0B1FE06471DED0097A5F4</string>  
484 - <string>B56D948D0EC628B300B3649A</string>  
485 - <string>1CE0B20306471E060097A5F4</string>  
486 - <string>1CE0B20506471E060097A5F4</string>  
487 - </array>  
488 - <key>ToolbarConfiguration</key>  
489 - <string>xcode.toolbar.config.defaultV3</string>  
490 - </dict>  
491 - <dict>  
492 - <key>ControllerClassBaseName</key>  
493 - <string></string>  
494 - <key>IconName</key>  
495 - <string>WindowOfProject</string>  
496 - <key>Identifier</key>  
497 - <string>perspective.morph</string>  
498 - <key>IsVertical</key>  
499 - <integer>0</integer>  
500 - <key>Layout</key>  
501 - <array>  
502 - <dict>  
503 - <key>BecomeActive</key>  
504 - <integer>1</integer>  
505 - <key>ContentConfiguration</key>  
506 - <dict>  
507 - <key>PBXBottomSmartGroupGIDs</key>  
508 - <array>  
509 - <string>1C37FBAC04509CD000000102</string>  
510 - <string>1C37FAAC04509CD000000102</string>  
511 - <string>1C08E77C0454961000C914BD</string>  
512 - <string>1C37FABC05509CD000000102</string>  
513 - <string>1C37FABC05539CD112110102</string>  
514 - <string>E2644B35053B69B200211256</string>  
515 - <string>1C37FABC04509CD000100104</string>  
516 - <string>1CC0EA4004350EF90044410B</string>  
517 - <string>1CC0EA4004350EF90041110B</string>  
518 - </array>  
519 - <key>PBXProjectModuleGUID</key>  
520 - <string>11E0B1FE06471DED0097A5F4</string>  
521 - <key>PBXProjectModuleLabel</key>  
522 - <string>Files</string>  
523 - <key>PBXProjectStructureProvided</key>  
524 - <string>yes</string>  
525 - <key>PBXSmartGroupTreeModuleColumnData</key>  
526 - <dict>  
527 - <key>PBXSmartGroupTreeModuleColumnWidthsKey</key>  
528 - <array>  
529 - <real>186</real>  
530 - </array>  
531 - <key>PBXSmartGroupTreeModuleColumnsKey_v4</key>  
532 - <array>  
533 - <string>MainColumn</string>  
534 - </array>  
535 - </dict>  
536 - <key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key>  
537 - <dict>  
538 - <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>  
539 - <array>  
540 - <string>29B97314FDCFA39411CA2CEA</string>  
541 - <string>1C37FABC05509CD000000102</string>  
542 - </array>  
543 - <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>  
544 - <array>  
545 - <array>  
546 - <integer>0</integer>  
547 - </array>  
548 - </array>  
549 - <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>  
550 - <string>{{0, 0}, {186, 337}}</string>  
551 - </dict>  
552 - <key>PBXTopSmartGroupGIDs</key>  
553 - <array/>  
554 - <key>XCIncludePerspectivesSwitch</key>  
555 - <integer>1</integer>  
556 - <key>XCSharingToken</key>  
557 - <string>com.apple.Xcode.GFSharingToken</string>  
558 - </dict>  
559 - <key>GeometryConfiguration</key>  
560 - <dict>  
561 - <key>Frame</key>  
562 - <string>{{0, 0}, {203, 355}}</string>  
563 - <key>GroupTreeTableConfiguration</key>  
564 - <array>  
565 - <string>MainColumn</string>  
566 - <real>186</real>  
567 - </array>  
568 - <key>RubberWindowFrame</key>  
569 - <string>373 269 690 397 0 0 1440 878 </string>  
570 - </dict>  
571 - <key>Module</key>  
572 - <string>PBXSmartGroupTreeModule</string>  
573 - <key>Proportion</key>  
574 - <string>100%</string>  
575 - </dict>  
576 - </array>  
577 - <key>Name</key>  
578 - <string>Morph</string>  
579 - <key>PreferredWidth</key>  
580 - <integer>300</integer>  
581 - <key>ServiceClasses</key>  
582 - <array>  
583 - <string>XCModuleDock</string>  
584 - <string>PBXSmartGroupTreeModule</string>  
585 - </array>  
586 - <key>TableOfContents</key>  
587 - <array>  
588 - <string>11E0B1FE06471DED0097A5F4</string>  
589 - </array>  
590 - <key>ToolbarConfiguration</key>  
591 - <string>xcode.toolbar.config.default.shortV3</string>  
592 - </dict>  
593 - </array>  
594 - <key>PerspectivesBarVisible</key>  
595 - <false/>  
596 - <key>ShelfIsVisible</key>  
597 - <false/>  
598 - <key>SourceDescription</key>  
599 - <string>file at '/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources/XCPerspectivesSpecificationMode1.xcperspec'</string>  
600 - <key>StatusbarIsVisible</key>  
601 - <true/>  
602 - <key>TimeStamp</key>  
603 - <real>0.0</real>  
604 - <key>ToolbarDisplayMode</key>  
605 - <integer>1</integer>  
606 - <key>ToolbarIsVisible</key>  
607 - <true/>  
608 - <key>ToolbarSizeMode</key>  
609 - <integer>1</integer>  
610 - <key>Type</key>  
611 - <string>Perspectives</string>  
612 - <key>UpdateMessage</key>  
613 - <string>The Default Workspace in this version of Xcode now includes support to hide and show the detail view (what has been referred to as the "Metro-Morph" feature). You must discard your current Default Workspace settings and update to the latest Default Workspace in order to gain this feature. Do you wish to update to the latest Workspace defaults for project '%@'?</string>  
614 - <key>WindowJustification</key>  
615 - <integer>5</integer>  
616 - <key>WindowOrderList</key>  
617 - <array>  
618 - <string>B56D94A10EC6290D00B3649A</string>  
619 - <string>B56D94970EC628B300B3649A</string>  
620 - <string>1CD10A99069EF8BA00B06720</string>  
621 - <string>B5ABC8410E24CDE70072F422</string>  
622 - <string>/Users/ben/asi-http-request/asi-http-request.xcodeproj</string>  
623 - <string>1C78EAAD065D492600B07095</string>  
624 - </array>  
625 - <key>WindowString</key>  
626 - <string>411 202 1432 976 0 0 1920 1178 </string>  
627 - <key>WindowToolsV3</key>  
628 - <array>  
629 - <dict>  
630 - <key>FirstTimeWindowDisplayed</key>  
631 - <false/>  
632 - <key>Identifier</key>  
633 - <string>windowTool.build</string>  
634 - <key>IsVertical</key>  
635 - <true/>  
636 - <key>Layout</key>  
637 - <array>  
638 - <dict>  
639 - <key>Dock</key>  
640 - <array>  
641 - <dict>  
642 - <key>ContentConfiguration</key>  
643 - <dict>  
644 - <key>PBXProjectModuleGUID</key>  
645 - <string>1CD0528F0623707200166675</string>  
646 - <key>PBXProjectModuleLabel</key>  
647 - <string></string>  
648 - <key>StatusBarVisibility</key>  
649 - <true/>  
650 - </dict>  
651 - <key>GeometryConfiguration</key>  
652 - <dict>  
653 - <key>Frame</key>  
654 - <string>{{0, 0}, {1279, 533}}</string>  
655 - <key>RubberWindowFrame</key>  
656 - <string>93 215 1279 815 0 0 1920 1178 </string>  
657 - </dict>  
658 - <key>Module</key>  
659 - <string>PBXNavigatorGroup</string>  
660 - <key>Proportion</key>  
661 - <string>533pt</string>  
662 - </dict>  
663 - <dict>  
664 - <key>ContentConfiguration</key>  
665 - <dict>  
666 - <key>PBXProjectModuleGUID</key>  
667 - <string>XCMainBuildResultsModuleGUID</string>  
668 - <key>PBXProjectModuleLabel</key>  
669 - <string>Build</string>  
670 - <key>XCBuildResultsTrigger_Collapse</key>  
671 - <integer>1021</integer>  
672 - <key>XCBuildResultsTrigger_Open</key>  
673 - <integer>1011</integer>  
674 - </dict>  
675 - <key>GeometryConfiguration</key>  
676 - <dict>  
677 - <key>Frame</key>  
678 - <string>{{0, 538}, {1279, 236}}</string>  
679 - <key>RubberWindowFrame</key>  
680 - <string>93 215 1279 815 0 0 1920 1178 </string>  
681 - </dict>  
682 - <key>Module</key>  
683 - <string>PBXBuildResultsModule</string>  
684 - <key>Proportion</key>  
685 - <string>236pt</string>  
686 - </dict>  
687 - </array>  
688 - <key>Proportion</key>  
689 - <string>774pt</string>  
690 - </dict>  
691 - </array>  
692 - <key>Name</key>  
693 - <string>Build Results</string>  
694 - <key>ServiceClasses</key>  
695 - <array>  
696 - <string>PBXBuildResultsModule</string>  
697 - </array>  
698 - <key>StatusbarIsVisible</key>  
699 - <true/>  
700 - <key>TableOfContents</key>  
701 - <array>  
702 - <string>B5ABC8410E24CDE70072F422</string>  
703 - <string>B56D948E0EC628B300B3649A</string>  
704 - <string>1CD0528F0623707200166675</string>  
705 - <string>XCMainBuildResultsModuleGUID</string>  
706 - </array>  
707 - <key>ToolbarConfiguration</key>  
708 - <string>xcode.toolbar.config.buildV3</string>  
709 - <key>WindowString</key>  
710 - <string>93 215 1279 815 0 0 1920 1178 </string>  
711 - <key>WindowToolGUID</key>  
712 - <string>B5ABC8410E24CDE70072F422</string>  
713 - <key>WindowToolIsVisible</key>  
714 - <false/>  
715 - </dict>  
716 - <dict>  
717 - <key>FirstTimeWindowDisplayed</key>  
718 - <false/>  
719 - <key>Identifier</key>  
720 - <string>windowTool.debugger</string>  
721 - <key>IsVertical</key>  
722 - <true/>  
723 - <key>Layout</key>  
724 - <array>  
725 - <dict>  
726 - <key>Dock</key>  
727 - <array>  
728 - <dict>  
729 - <key>ContentConfiguration</key>  
730 - <dict>  
731 - <key>Debugger</key>  
732 - <dict>  
733 - <key>HorizontalSplitView</key>  
734 - <dict>  
735 - <key>_collapsingFrameDimension</key>  
736 - <real>0.0</real>  
737 - <key>_indexOfCollapsedView</key>  
738 - <integer>0</integer>  
739 - <key>_percentageOfCollapsedView</key>  
740 - <real>0.0</real>  
741 - <key>isCollapsed</key>  
742 - <string>yes</string>  
743 - <key>sizes</key>  
744 - <array>  
745 - <string>{{0, 0}, {798, 465}}</string>  
746 - <string>{{798, 0}, {871, 465}}</string>  
747 - </array>  
748 - </dict>  
749 - <key>VerticalSplitView</key>  
750 - <dict>  
751 - <key>_collapsingFrameDimension</key>  
752 - <real>0.0</real>  
753 - <key>_indexOfCollapsedView</key>  
754 - <integer>0</integer>  
755 - <key>_percentageOfCollapsedView</key>  
756 - <real>0.0</real>  
757 - <key>isCollapsed</key>  
758 - <string>yes</string>  
759 - <key>sizes</key>  
760 - <array>  
761 - <string>{{0, 0}, {1669, 465}}</string>  
762 - <string>{{0, 465}, {1669, 494}}</string>  
763 - </array>  
764 - </dict>  
765 - </dict>  
766 - <key>LauncherConfigVersion</key>  
767 - <string>8</string>  
768 - <key>PBXProjectModuleGUID</key>  
769 - <string>1C162984064C10D400B95A72</string>  
770 - <key>PBXProjectModuleLabel</key>  
771 - <string>Debug - GLUTExamples (Underwater)</string>  
772 - </dict>  
773 - <key>GeometryConfiguration</key>  
774 - <dict>  
775 - <key>DebugConsoleVisible</key>  
776 - <string>None</string>  
777 - <key>DebugConsoleWindowFrame</key>  
778 - <string>{{200, 200}, {500, 300}}</string>  
779 - <key>DebugSTDIOWindowFrame</key>  
780 - <string>{{200, 200}, {500, 300}}</string>  
781 - <key>Frame</key>  
782 - <string>{{0, 0}, {1669, 959}}</string>  
783 - <key>PBXDebugSessionStackFrameViewKey</key>  
784 - <dict>  
785 - <key>DebugVariablesTableConfiguration</key>  
786 - <array>  
787 - <string>Name</string>  
788 - <real>276</real>  
789 - <string>Value</string>  
790 - <real>197</real>  
791 - <string>Summary</string>  
792 - <real>590</real>  
793 - </array>  
794 - <key>Frame</key>  
795 - <string>{{798, 0}, {871, 465}}</string>  
796 - <key>RubberWindowFrame</key>  
797 - <string>149 178 1669 1000 0 0 1920 1178 </string>  
798 - </dict>  
799 - <key>RubberWindowFrame</key>  
800 - <string>149 178 1669 1000 0 0 1920 1178 </string>  
801 - </dict>  
802 - <key>Module</key>  
803 - <string>PBXDebugSessionModule</string>  
804 - <key>Proportion</key>  
805 - <string>959pt</string>  
806 - </dict>  
807 - </array>  
808 - <key>Proportion</key>  
809 - <string>959pt</string>  
810 - </dict>  
811 - </array>  
812 - <key>Name</key>  
813 - <string>Debugger</string>  
814 - <key>ServiceClasses</key>  
815 - <array>  
816 - <string>PBXDebugSessionModule</string>  
817 - </array>  
818 - <key>StatusbarIsVisible</key>  
819 - <true/>  
820 - <key>TableOfContents</key>  
821 - <array>  
822 - <string>1CD10A99069EF8BA00B06720</string>  
823 - <string>B56D948F0EC628B300B3649A</string>  
824 - <string>1C162984064C10D400B95A72</string>  
825 - <string>B56D94900EC628B300B3649A</string>  
826 - <string>B56D94910EC628B300B3649A</string>  
827 - <string>B56D94920EC628B300B3649A</string>  
828 - <string>B56D94930EC628B300B3649A</string>  
829 - <string>B56D94940EC628B300B3649A</string>  
830 - </array>  
831 - <key>ToolbarConfiguration</key>  
832 - <string>xcode.toolbar.config.debugV3</string>  
833 - <key>WindowString</key>  
834 - <string>149 178 1669 1000 0 0 1920 1178 </string>  
835 - <key>WindowToolGUID</key>  
836 - <string>1CD10A99069EF8BA00B06720</string>  
837 - <key>WindowToolIsVisible</key>  
838 - <false/>  
839 - </dict>  
840 - <dict>  
841 - <key>FirstTimeWindowDisplayed</key>  
842 - <false/>  
843 - <key>Identifier</key>  
844 - <string>windowTool.find</string>  
845 - <key>IsVertical</key>  
846 - <true/>  
847 - <key>Layout</key>  
848 - <array>  
849 - <dict>  
850 - <key>Dock</key>  
851 - <array>  
852 - <dict>  
853 - <key>Dock</key>  
854 - <array>  
855 - <dict>  
856 - <key>ContentConfiguration</key>  
857 - <dict>  
858 - <key>PBXProjectModuleGUID</key>  
859 - <string>1CDD528C0622207200134675</string>  
860 - <key>PBXProjectModuleLabel</key>  
861 - <string>ASIHTTPRequest.m</string>  
862 - <key>StatusBarVisibility</key>  
863 - <true/>  
864 - </dict>  
865 - <key>GeometryConfiguration</key>  
866 - <dict>  
867 - <key>Frame</key>  
868 - <string>{{0, 0}, {781, 212}}</string>  
869 - <key>RubberWindowFrame</key>  
870 - <string>948 363 781 470 0 0 1920 1178 </string>  
871 - </dict>  
872 - <key>Module</key>  
873 - <string>PBXNavigatorGroup</string>  
874 - <key>Proportion</key>  
875 - <string>781pt</string>  
876 - </dict>  
877 - </array>  
878 - <key>Proportion</key>  
879 - <string>212pt</string>  
880 - </dict>  
881 - <dict>  
882 - <key>BecomeActive</key>  
883 - <true/>  
884 - <key>ContentConfiguration</key>  
885 - <dict>  
886 - <key>PBXProjectModuleGUID</key>  
887 - <string>1CD0528E0623707200166675</string>  
888 - <key>PBXProjectModuleLabel</key>  
889 - <string>Project Find</string>  
890 - </dict>  
891 - <key>GeometryConfiguration</key>  
892 - <dict>  
893 - <key>Frame</key>  
894 - <string>{{0, 217}, {781, 212}}</string>  
895 - <key>RubberWindowFrame</key>  
896 - <string>948 363 781 470 0 0 1920 1178 </string>  
897 - </dict>  
898 - <key>Module</key>  
899 - <string>PBXProjectFindModule</string>  
900 - <key>Proportion</key>  
901 - <string>212pt</string>  
902 - </dict>  
903 - </array>  
904 - <key>Proportion</key>  
905 - <string>429pt</string>  
906 - </dict>  
907 - </array>  
908 - <key>Name</key>  
909 - <string>Project Find</string>  
910 - <key>ServiceClasses</key>  
911 - <array>  
912 - <string>PBXProjectFindModule</string>  
913 - </array>  
914 - <key>StatusbarIsVisible</key>  
915 - <true/>  
916 - <key>TableOfContents</key>  
917 - <array>  
918 - <string>1C530D57069F1CE1000CFCEE</string>  
919 - <string>B5B03CB10EC4DA070089D01F</string>  
920 - <string>B5B03CB20EC4DA070089D01F</string>  
921 - <string>1CDD528C0622207200134675</string>  
922 - <string>1CD0528E0623707200166675</string>  
923 - </array>  
924 - <key>WindowString</key>  
925 - <string>948 363 781 470 0 0 1920 1178 </string>  
926 - <key>WindowToolGUID</key>  
927 - <string>1C530D57069F1CE1000CFCEE</string>  
928 - <key>WindowToolIsVisible</key>  
929 - <false/>  
930 - </dict>  
931 - <dict>  
932 - <key>Identifier</key>  
933 - <string>MENUSEPARATOR</string>  
934 - </dict>  
935 - <dict>  
936 - <key>FirstTimeWindowDisplayed</key>  
937 - <false/>  
938 - <key>Identifier</key>  
939 - <string>windowTool.debuggerConsole</string>  
940 - <key>IsVertical</key>  
941 - <true/>  
942 - <key>Layout</key>  
943 - <array>  
944 - <dict>  
945 - <key>Dock</key>  
946 - <array>  
947 - <dict>  
948 - <key>BecomeActive</key>  
949 - <true/>  
950 - <key>ContentConfiguration</key>  
951 - <dict>  
952 - <key>PBXProjectModuleGUID</key>  
953 - <string>1C78EAAC065D492600B07095</string>  
954 - <key>PBXProjectModuleLabel</key>  
955 - <string>Debugger Console</string>  
956 - </dict>  
957 - <key>GeometryConfiguration</key>  
958 - <dict>  
959 - <key>Frame</key>  
960 - <string>{{0, 0}, {1211, 827}}</string>  
961 - <key>RubberWindowFrame</key>  
962 - <string>250 167 1211 868 0 0 1920 1178 </string>  
963 - </dict>  
964 - <key>Module</key>  
965 - <string>PBXDebugCLIModule</string>  
966 - <key>Proportion</key>  
967 - <string>827pt</string>  
968 - </dict>  
969 - </array>  
970 - <key>Proportion</key>  
971 - <string>827pt</string>  
972 - </dict>  
973 - </array>  
974 - <key>Name</key>  
975 - <string>Debugger Console</string>  
976 - <key>ServiceClasses</key>  
977 - <array>  
978 - <string>PBXDebugCLIModule</string>  
979 - </array>  
980 - <key>StatusbarIsVisible</key>  
981 - <true/>  
982 - <key>TableOfContents</key>  
983 - <array>  
984 - <string>1C78EAAD065D492600B07095</string>  
985 - <string>B56D94950EC628B300B3649A</string>  
986 - <string>1C78EAAC065D492600B07095</string>  
987 - </array>  
988 - <key>ToolbarConfiguration</key>  
989 - <string>xcode.toolbar.config.consoleV3</string>  
990 - <key>WindowString</key>  
991 - <string>250 167 1211 868 0 0 1920 1178 </string>  
992 - <key>WindowToolGUID</key>  
993 - <string>1C78EAAD065D492600B07095</string>  
994 - <key>WindowToolIsVisible</key>  
995 - <true/>  
996 - </dict>  
997 - <dict>  
998 - <key>Identifier</key>  
999 - <string>windowTool.snapshots</string>  
1000 - <key>Layout</key>  
1001 - <array>  
1002 - <dict>  
1003 - <key>Dock</key>  
1004 - <array>  
1005 - <dict>  
1006 - <key>Module</key>  
1007 - <string>XCSnapshotModule</string>  
1008 - <key>Proportion</key>  
1009 - <string>100%</string>  
1010 - </dict>  
1011 - </array>  
1012 - <key>Proportion</key>  
1013 - <string>100%</string>  
1014 - </dict>  
1015 - </array>  
1016 - <key>Name</key>  
1017 - <string>Snapshots</string>  
1018 - <key>ServiceClasses</key>  
1019 - <array>  
1020 - <string>XCSnapshotModule</string>  
1021 - </array>  
1022 - <key>StatusbarIsVisible</key>  
1023 - <string>Yes</string>  
1024 - <key>ToolbarConfiguration</key>  
1025 - <string>xcode.toolbar.config.snapshots</string>  
1026 - <key>WindowString</key>  
1027 - <string>315 824 300 550 0 0 1440 878 </string>  
1028 - <key>WindowToolIsVisible</key>  
1029 - <string>Yes</string>  
1030 - </dict>  
1031 - <dict>  
1032 - <key>Identifier</key>  
1033 - <string>windowTool.scm</string>  
1034 - <key>Layout</key>  
1035 - <array>  
1036 - <dict>  
1037 - <key>Dock</key>  
1038 - <array>  
1039 - <dict>  
1040 - <key>ContentConfiguration</key>  
1041 - <dict>  
1042 - <key>PBXProjectModuleGUID</key>  
1043 - <string>1C78EAB2065D492600B07095</string>  
1044 - <key>PBXProjectModuleLabel</key>  
1045 - <string>&lt;No Editor&gt;</string>  
1046 - <key>PBXSplitModuleInNavigatorKey</key>  
1047 - <dict>  
1048 - <key>Split0</key>  
1049 - <dict>  
1050 - <key>PBXProjectModuleGUID</key>  
1051 - <string>1C78EAB3065D492600B07095</string>  
1052 - </dict>  
1053 - <key>SplitCount</key>  
1054 - <string>1</string>  
1055 - </dict>  
1056 - <key>StatusBarVisibility</key>  
1057 - <integer>1</integer>  
1058 - </dict>  
1059 - <key>GeometryConfiguration</key>  
1060 - <dict>  
1061 - <key>Frame</key>  
1062 - <string>{{0, 0}, {452, 0}}</string>  
1063 - <key>RubberWindowFrame</key>  
1064 - <string>743 379 452 308 0 0 1280 1002 </string>  
1065 - </dict>  
1066 - <key>Module</key>  
1067 - <string>PBXNavigatorGroup</string>  
1068 - <key>Proportion</key>  
1069 - <string>0pt</string>  
1070 - </dict>  
1071 - <dict>  
1072 - <key>BecomeActive</key>  
1073 - <integer>1</integer>  
1074 - <key>ContentConfiguration</key>  
1075 - <dict>  
1076 - <key>PBXProjectModuleGUID</key>  
1077 - <string>1CD052920623707200166675</string>  
1078 - <key>PBXProjectModuleLabel</key>  
1079 - <string>SCM</string>  
1080 - </dict>  
1081 - <key>GeometryConfiguration</key>  
1082 - <dict>  
1083 - <key>ConsoleFrame</key>  
1084 - <string>{{0, 259}, {452, 0}}</string>  
1085 - <key>Frame</key>  
1086 - <string>{{0, 7}, {452, 259}}</string>  
1087 - <key>RubberWindowFrame</key>  
1088 - <string>743 379 452 308 0 0 1280 1002 </string>  
1089 - <key>TableConfiguration</key>  
1090 - <array>  
1091 - <string>Status</string>  
1092 - <real>30</real>  
1093 - <string>FileName</string>  
1094 - <real>199</real>  
1095 - <string>Path</string>  
1096 - <real>197.09500122070312</real>  
1097 - </array>  
1098 - <key>TableFrame</key>  
1099 - <string>{{0, 0}, {452, 250}}</string>  
1100 - </dict>  
1101 - <key>Module</key>  
1102 - <string>PBXCVSModule</string>  
1103 - <key>Proportion</key>  
1104 - <string>262pt</string>  
1105 - </dict>  
1106 - </array>  
1107 - <key>Proportion</key>  
1108 - <string>266pt</string>  
1109 - </dict>  
1110 - </array>  
1111 - <key>Name</key>  
1112 - <string>SCM</string>  
1113 - <key>ServiceClasses</key>  
1114 - <array>  
1115 - <string>PBXCVSModule</string>  
1116 - </array>  
1117 - <key>StatusbarIsVisible</key>  
1118 - <integer>1</integer>  
1119 - <key>TableOfContents</key>  
1120 - <array>  
1121 - <string>1C78EAB4065D492600B07095</string>  
1122 - <string>1C78EAB5065D492600B07095</string>  
1123 - <string>1C78EAB2065D492600B07095</string>  
1124 - <string>1CD052920623707200166675</string>  
1125 - </array>  
1126 - <key>ToolbarConfiguration</key>  
1127 - <string>xcode.toolbar.config.scm</string>  
1128 - <key>WindowString</key>  
1129 - <string>743 379 452 308 0 0 1280 1002 </string>  
1130 - </dict>  
1131 - <dict>  
1132 - <key>FirstTimeWindowDisplayed</key>  
1133 - <false/>  
1134 - <key>Identifier</key>  
1135 - <string>windowTool.breakpoints</string>  
1136 - <key>IsVertical</key>  
1137 - <false/>  
1138 - <key>Layout</key>  
1139 - <array>  
1140 - <dict>  
1141 - <key>Dock</key>  
1142 - <array>  
1143 - <dict>  
1144 - <key>ContentConfiguration</key>  
1145 - <dict>  
1146 - <key>PBXBottomSmartGroupGIDs</key>  
1147 - <array>  
1148 - <string>1C77FABC04509CD000000102</string>  
1149 - </array>  
1150 - <key>PBXProjectModuleGUID</key>  
1151 - <string>1CE0B1FE06471DED0097A5F4</string>  
1152 - <key>PBXProjectModuleLabel</key>  
1153 - <string>Files</string>  
1154 - <key>PBXProjectStructureProvided</key>  
1155 - <string>no</string>  
1156 - <key>PBXSmartGroupTreeModuleColumnData</key>  
1157 - <dict>  
1158 - <key>PBXSmartGroupTreeModuleColumnWidthsKey</key>  
1159 - <array>  
1160 - <real>168</real>  
1161 - </array>  
1162 - <key>PBXSmartGroupTreeModuleColumnsKey_v4</key>  
1163 - <array>  
1164 - <string>MainColumn</string>  
1165 - </array>  
1166 - </dict>  
1167 - <key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key>  
1168 - <dict>  
1169 - <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>  
1170 - <array>  
1171 - <string>1C77FABC04509CD000000102</string>  
1172 - </array>  
1173 - <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>  
1174 - <array>  
1175 - <array>  
1176 - <integer>0</integer>  
1177 - </array>  
1178 - </array>  
1179 - <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>  
1180 - <string>{{0, 0}, {168, 350}}</string>  
1181 - </dict>  
1182 - <key>PBXTopSmartGroupGIDs</key>  
1183 - <array/>  
1184 - <key>XCIncludePerspectivesSwitch</key>  
1185 - <false/>  
1186 - </dict>  
1187 - <key>GeometryConfiguration</key>  
1188 - <dict>  
1189 - <key>Frame</key>  
1190 - <string>{{0, 0}, {185, 368}}</string>  
1191 - <key>GroupTreeTableConfiguration</key>  
1192 - <array>  
1193 - <string>MainColumn</string>  
1194 - <real>168</real>  
1195 - </array>  
1196 - <key>RubberWindowFrame</key>  
1197 - <string>791 264 744 409 0 0 1920 1178 </string>  
1198 - </dict>  
1199 - <key>Module</key>  
1200 - <string>PBXSmartGroupTreeModule</string>  
1201 - <key>Proportion</key>  
1202 - <string>185pt</string>  
1203 - </dict>  
1204 - <dict>  
1205 - <key>BecomeActive</key>  
1206 - <true/>  
1207 - <key>ContentConfiguration</key>  
1208 - <dict>  
1209 - <key>PBXProjectModuleGUID</key>  
1210 - <string>1CA1AED706398EBD00589147</string>  
1211 - <key>PBXProjectModuleLabel</key>  
1212 - <string>Detail</string>  
1213 - </dict>  
1214 - <key>GeometryConfiguration</key>  
1215 - <dict>  
1216 - <key>Frame</key>  
1217 - <string>{{190, 0}, {554, 368}}</string>  
1218 - <key>RubberWindowFrame</key>  
1219 - <string>791 264 744 409 0 0 1920 1178 </string>  
1220 - </dict>  
1221 - <key>Module</key>  
1222 - <string>XCDetailModule</string>  
1223 - <key>Proportion</key>  
1224 - <string>554pt</string>  
1225 - </dict>  
1226 - </array>  
1227 - <key>Proportion</key>  
1228 - <string>368pt</string>  
1229 - </dict>  
1230 - </array>  
1231 - <key>MajorVersion</key>  
1232 - <integer>3</integer>  
1233 - <key>MinorVersion</key>  
1234 - <integer>0</integer>  
1235 - <key>Name</key>  
1236 - <string>Breakpoints</string>  
1237 - <key>ServiceClasses</key>  
1238 - <array>  
1239 - <string>PBXSmartGroupTreeModule</string>  
1240 - <string>XCDetailModule</string>  
1241 - </array>  
1242 - <key>StatusbarIsVisible</key>  
1243 - <true/>  
1244 - <key>TableOfContents</key>  
1245 - <array>  
1246 - <string>B5B03F0D0EC5D91E0089D01F</string>  
1247 - <string>B5B03F0E0EC5D91E0089D01F</string>  
1248 - <string>1CE0B1FE06471DED0097A5F4</string>  
1249 - <string>1CA1AED706398EBD00589147</string>  
1250 - </array>  
1251 - <key>ToolbarConfiguration</key>  
1252 - <string>xcode.toolbar.config.breakpointsV3</string>  
1253 - <key>WindowString</key>  
1254 - <string>791 264 744 409 0 0 1920 1178 </string>  
1255 - <key>WindowToolGUID</key>  
1256 - <string>B5B03F0D0EC5D91E0089D01F</string>  
1257 - <key>WindowToolIsVisible</key>  
1258 - <false/>  
1259 - </dict>  
1260 - <dict>  
1261 - <key>Identifier</key>  
1262 - <string>windowTool.debugAnimator</string>  
1263 - <key>Layout</key>  
1264 - <array>  
1265 - <dict>  
1266 - <key>Dock</key>  
1267 - <array>  
1268 - <dict>  
1269 - <key>Module</key>  
1270 - <string>PBXNavigatorGroup</string>  
1271 - <key>Proportion</key>  
1272 - <string>100%</string>  
1273 - </dict>  
1274 - </array>  
1275 - <key>Proportion</key>  
1276 - <string>100%</string>  
1277 - </dict>  
1278 - </array>  
1279 - <key>Name</key>  
1280 - <string>Debug Visualizer</string>  
1281 - <key>ServiceClasses</key>  
1282 - <array>  
1283 - <string>PBXNavigatorGroup</string>  
1284 - </array>  
1285 - <key>StatusbarIsVisible</key>  
1286 - <integer>1</integer>  
1287 - <key>ToolbarConfiguration</key>  
1288 - <string>xcode.toolbar.config.debugAnimatorV3</string>  
1289 - <key>WindowString</key>  
1290 - <string>100 100 700 500 0 0 1280 1002 </string>  
1291 - </dict>  
1292 - <dict>  
1293 - <key>Identifier</key>  
1294 - <string>windowTool.bookmarks</string>  
1295 - <key>Layout</key>  
1296 - <array>  
1297 - <dict>  
1298 - <key>Dock</key>  
1299 - <array>  
1300 - <dict>  
1301 - <key>Module</key>  
1302 - <string>PBXBookmarksModule</string>  
1303 - <key>Proportion</key>  
1304 - <string>100%</string>  
1305 - </dict>  
1306 - </array>  
1307 - <key>Proportion</key>  
1308 - <string>100%</string>  
1309 - </dict>  
1310 - </array>  
1311 - <key>Name</key>  
1312 - <string>Bookmarks</string>  
1313 - <key>ServiceClasses</key>  
1314 - <array>  
1315 - <string>PBXBookmarksModule</string>  
1316 - </array>  
1317 - <key>StatusbarIsVisible</key>  
1318 - <integer>0</integer>  
1319 - <key>WindowString</key>  
1320 - <string>538 42 401 187 0 0 1280 1002 </string>  
1321 - </dict>  
1322 - <dict>  
1323 - <key>FirstTimeWindowDisplayed</key>  
1324 - <false/>  
1325 - <key>Identifier</key>  
1326 - <string>windowTool.projectFormatConflicts</string>  
1327 - <key>IsVertical</key>  
1328 - <true/>  
1329 - <key>Layout</key>  
1330 - <array>  
1331 - <dict>  
1332 - <key>Dock</key>  
1333 - <array>  
1334 - <dict>  
1335 - <key>BecomeActive</key>  
1336 - <true/>  
1337 - <key>ContentConfiguration</key>  
1338 - <dict>  
1339 - <key>PBXProjectModuleGUID</key>  
1340 - <string>B5CFFB040EC46616009ADE56</string>  
1341 - </dict>  
1342 - <key>GeometryConfiguration</key>  
1343 - <dict>  
1344 - <key>Frame</key>  
1345 - <string>{{0, 0}, {472, 302}}</string>  
1346 - <key>RubberWindowFrame</key>  
1347 - <string>268 833 472 322 0 0 1920 1178 </string>  
1348 - </dict>  
1349 - <key>Module</key>  
1350 - <string>XCProjectFormatConflictsModule</string>  
1351 - <key>Proportion</key>  
1352 - <string>302pt</string>  
1353 - </dict>  
1354 - </array>  
1355 - <key>Proportion</key>  
1356 - <string>302pt</string>  
1357 - </dict>  
1358 - </array>  
1359 - <key>Name</key>  
1360 - <string>Project Format Conflicts</string>  
1361 - <key>ServiceClasses</key>  
1362 - <array>  
1363 - <string>XCProjectFormatConflictsModule</string>  
1364 - </array>  
1365 - <key>StatusbarIsVisible</key>  
1366 - <false/>  
1367 - <key>TableOfContents</key>  
1368 - <array>  
1369 - <string>B5CFFB050EC46616009ADE56</string>  
1370 - <string>B5CFFB060EC46616009ADE56</string>  
1371 - <string>B5CFFB040EC46616009ADE56</string>  
1372 - </array>  
1373 - <key>WindowContentMinSize</key>  
1374 - <string>450 300</string>  
1375 - <key>WindowString</key>  
1376 - <string>268 833 472 322 0 0 1920 1178 </string>  
1377 - <key>WindowToolGUID</key>  
1378 - <string>B5CFFB050EC46616009ADE56</string>  
1379 - <key>WindowToolIsVisible</key>  
1380 - <true/>  
1381 - </dict>  
1382 - <dict>  
1383 - <key>Identifier</key>  
1384 - <string>windowTool.classBrowser</string>  
1385 - <key>Layout</key>  
1386 - <array>  
1387 - <dict>  
1388 - <key>Dock</key>  
1389 - <array>  
1390 - <dict>  
1391 - <key>BecomeActive</key>  
1392 - <integer>1</integer>  
1393 - <key>ContentConfiguration</key>  
1394 - <dict>  
1395 - <key>OptionsSetName</key>  
1396 - <string>Hierarchy, all classes</string>  
1397 - <key>PBXProjectModuleGUID</key>  
1398 - <string>1CA6456E063B45B4001379D8</string>  
1399 - <key>PBXProjectModuleLabel</key>  
1400 - <string>Class Browser - NSObject</string>  
1401 - </dict>  
1402 - <key>GeometryConfiguration</key>  
1403 - <dict>  
1404 - <key>ClassesFrame</key>  
1405 - <string>{{0, 0}, {374, 96}}</string>  
1406 - <key>ClassesTreeTableConfiguration</key>  
1407 - <array>  
1408 - <string>PBXClassNameColumnIdentifier</string>  
1409 - <real>208</real>  
1410 - <string>PBXClassBookColumnIdentifier</string>  
1411 - <real>22</real>  
1412 - </array>  
1413 - <key>Frame</key>  
1414 - <string>{{0, 0}, {630, 331}}</string>  
1415 - <key>MembersFrame</key>  
1416 - <string>{{0, 105}, {374, 395}}</string>  
1417 - <key>MembersTreeTableConfiguration</key>  
1418 - <array>  
1419 - <string>PBXMemberTypeIconColumnIdentifier</string>  
1420 - <real>22</real>  
1421 - <string>PBXMemberNameColumnIdentifier</string>  
1422 - <real>216</real>  
1423 - <string>PBXMemberTypeColumnIdentifier</string>  
1424 - <real>97</real>  
1425 - <string>PBXMemberBookColumnIdentifier</string>  
1426 - <real>22</real>  
1427 - </array>  
1428 - <key>PBXModuleWindowStatusBarHidden2</key>  
1429 - <integer>1</integer>  
1430 - <key>RubberWindowFrame</key>  
1431 - <string>385 179 630 352 0 0 1440 878 </string>  
1432 - </dict>  
1433 - <key>Module</key>  
1434 - <string>PBXClassBrowserModule</string>  
1435 - <key>Proportion</key>  
1436 - <string>332pt</string>  
1437 - </dict>  
1438 - </array>  
1439 - <key>Proportion</key>  
1440 - <string>332pt</string>  
1441 - </dict>  
1442 - </array>  
1443 - <key>Name</key>  
1444 - <string>Class Browser</string>  
1445 - <key>ServiceClasses</key>  
1446 - <array>  
1447 - <string>PBXClassBrowserModule</string>  
1448 - </array>  
1449 - <key>StatusbarIsVisible</key>  
1450 - <integer>0</integer>  
1451 - <key>TableOfContents</key>  
1452 - <array>  
1453 - <string>1C0AD2AF069F1E9B00FABCE6</string>  
1454 - <string>1C0AD2B0069F1E9B00FABCE6</string>  
1455 - <string>1CA6456E063B45B4001379D8</string>  
1456 - </array>  
1457 - <key>ToolbarConfiguration</key>  
1458 - <string>xcode.toolbar.config.classbrowser</string>  
1459 - <key>WindowString</key>  
1460 - <string>385 179 630 352 0 0 1440 878 </string>  
1461 - <key>WindowToolGUID</key>  
1462 - <string>1C0AD2AF069F1E9B00FABCE6</string>  
1463 - <key>WindowToolIsVisible</key>  
1464 - <integer>0</integer>  
1465 - </dict>  
1466 - <dict>  
1467 - <key>FirstTimeWindowDisplayed</key>  
1468 - <false/>  
1469 - <key>Identifier</key>  
1470 - <string>windowTool.refactoring</string>  
1471 - <key>IncludeInToolsMenu</key>  
1472 - <integer>0</integer>  
1473 - <key>IsVertical</key>  
1474 - <true/>  
1475 - <key>Layout</key>  
1476 - <array>  
1477 - <dict>  
1478 - <key>Dock</key>  
1479 - <array>  
1480 - <dict>  
1481 - <key>ContentConfiguration</key>  
1482 - <dict>  
1483 - <key>PBXProjectModuleGUID</key>  
1484 - <string>B50FD6F70E3B813B003CEB08</string>  
1485 - </dict>  
1486 - <key>GeometryConfiguration</key>  
1487 - <dict>  
1488 - <key>Frame</key>  
1489 - <string>{{0, 0}, {1131, 779}}</string>  
1490 - <key>RubberWindowFrame</key>  
1491 - <string>346 275 1131 820 0 0 1920 1178 </string>  
1492 - <key>XCRefactoringSplitViewLowerHeight</key>  
1493 - <real>355</real>  
1494 - <key>XCRefactoringSplitViewTotalHeight</key>  
1495 - <real>719</real>  
1496 - </dict>  
1497 - <key>Module</key>  
1498 - <string>XCRefactoringModule</string>  
1499 - <key>Proportion</key>  
1500 - <string>779pt</string>  
1501 - </dict>  
1502 - </array>  
1503 - <key>Proportion</key>  
1504 - <string>779pt</string>  
1505 - </dict>  
1506 - </array>  
1507 - <key>Name</key>  
1508 - <string>Refactoring</string>  
1509 - <key>ServiceClasses</key>  
1510 - <array>  
1511 - <string>XCRefactoringModule</string>  
1512 - </array>  
1513 - <key>StatusbarIsVisible</key>  
1514 - <true/>  
1515 - <key>TableOfContents</key>  
1516 - <array>  
1517 - <string>B50FD6F80E3B813B003CEB08</string>  
1518 - <string>B50FD6F90E3B813B003CEB08</string>  
1519 - <string>B50FD6F70E3B813B003CEB08</string>  
1520 - </array>  
1521 - <key>WindowString</key>  
1522 - <string>346 275 1131 820 0 0 1920 1178 </string>  
1523 - <key>WindowToolGUID</key>  
1524 - <string>B50FD6F80E3B813B003CEB08</string>  
1525 - <key>WindowToolIsVisible</key>  
1526 - <false/>  
1527 - </dict>  
1528 - </array>  
1529 -</dict>  
1530 -</plist>  
This diff could not be displayed because it is too large.
This diff was suppressed by a .gitattributes entry.