At startup the preference pane check for the presence in ~/Library/LaunchAgents of the file it.infn.lnf.network.AFSBackgrounder.plist that. The agent could be started in OpenAFS preference pane view.
AFSBackgrounder has replaced the NSMenuExtra, when it doesn't quit well launchd restart it. AFSBackgrounder can be used also for other work, for now, at login it check the user preference for get token.
Has been made some refactoring in code for remove most warning.
The unused think are been delete from project.
Reviewed-on: http://gerrit.openafs.org/263
Reviewed-by: Derrick Brashear <shadow@dementia.org>
Tested-by: Derrick Brashear <shadow@dementia.org>
BOOL gotToken; //0-no 1-one o more token
@protected
+ AFSPropertyManager *afsMngr;
NSString *afsSysPath;
NSNumber *useAklogPrefValue;
NSNumber *showStatusMenu;
+ NSNumber *aklogTokenAtLogin;
//Icon for state visualization
- NSImage *hasTokenImage;
- NSImage *noTokenImage;
+ NSImage *hasTokenImage;
+ NSImage *noTokenImage;
//credential windows mainWindow
AFSMenuCredentialContoller *credentialMenuController;
- (void)chageMenuVisibility:(NSNotification *)notification;
- (NSImage*)getImageFromBundle:(NSString*)fileName fileExt:(NSString*)ext;
- (NSImage*)imageToRender;
-- (void)updateMenu;
+- (void)menuNeedsUpdate:(NSMenu *)menu;
- (void)repairHelperTool;
- (void) afsVolumeMountChange:(NSNotification *)notification;
@implementation AFSBackgrounderDelegate
#pragma mark NSApp Delegate
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
- NSLog(@"applicationDidFinishLaunching");
- //Create the NSStatusBar and set its length
- statusItem = [[[NSStatusBar systemStatusBar] statusItemWithLength:NSSquareStatusItemLength] retain];
-
- //Used to detect where our files are
- //NSBundle *bundle = [NSBundle mainBundle];
-
+ NSLog(@"Init the afs manager");
+ afsMngr = [[AFSPropertyManager alloc] initWithAfsPath:afsSysPath];
+ // allocate the lock for concurent afs check state
+ tokensLock = [[NSLock alloc] init];
+
+ //remove the auto eanble on menu item
+ [backgrounderMenu setAutoenablesItems:NO];
//Sets the images in our NSStatusItem
statusItem = nil;
name:NSWorkspaceDidUnmountNotification object:nil];
//try to see if we need tho show the menu at startup
- NSLog(@"showStatusMenu %d", [showStatusMenu intValue]);
+
[self setStatusItem:[showStatusMenu boolValue]];
-
+
+ NSLog(@"Check if we need to get token at login time %d", [aklogTokenAtLogin intValue]);
+ if([aklogTokenAtLogin boolValue] && afsState && !gotToken) {
+ NSLog(@"Proceed to get token");
+ //check if we must get the aklog at logint(first run of backgrounder
+ [self getToken:nil];
+ }
}
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender {
// send notify that menuextra has closed
[[NSDistributedNotificationCenter defaultCenter] postNotificationName:kAfsCommanderID object:kPrefChangeNotification];
+ if(tokensLock) [tokensLock release];
+ if(afsMngr) [afsMngr release];
return NSTerminateNow;
}
// -------------------------------------------------------------------------------
[afsSysPath release];
afsSysPath = nil;
}
+ CFPreferencesSynchronize((CFStringRef)kAfsCommanderID, kCFPreferencesAnyUser, kCFPreferencesAnyHost);
+ CFPreferencesSynchronize((CFStringRef)kAfsCommanderID, kCFPreferencesCurrentUser, kCFPreferencesAnyHost);
afsSysPath = PREFERENCE_AFS_SYS_PAT_STATIC;
(CFStringRef)kAfsCommanderID,
kCFPreferencesCurrentUser,
kCFPreferencesAnyHost);
+
+ aklogTokenAtLogin = (NSNumber*)CFPreferencesCopyValue((CFStringRef)PREFERENCE_AKLOG_TOKEN_AT_LOGIN, (CFStringRef)kAfsCommanderID,
+ kCFPreferencesCurrentUser, kCFPreferencesAnyHost);
+
//set the menu name
[self updateAfsStatus:nil];
}
// -------------------------------------------------------------------------------
-// -(void) readPreferenceFile
+// - (void)chageMenuVisibility:(NSNotification *)notification
// -------------------------------------------------------------------------------
+/**/
- (void)chageMenuVisibility:(NSNotification *)notification {
NSLog(@"chageMenuVisibility");
[self readPreferenceFile:nil];
@try {
if(afsdPath == nil) return;
- AFSPropertyManager *afsMngr = [[AFSPropertyManager alloc] initWithAfsPath:afsSysPath];
currentAfsState = [afsMngr checkAfsStatus];
- [afsMngr release];
-
rootHelperApp = [[NSBundle mainBundle] pathForResource:@"afshlp" ofType:@""];
//[startStopScript setString: resourcePath];
[self repairHelperTool];
// make the parameter to call the root helper app
- //NSLog(@"Path installazione afs: %s",[afsSysPath UTF8String]);
- //NSLog(@"Path installazione afsd: %s", [afsdPath UTF8String]);
status = [[AuthUtil shared] autorize];
if(status == noErr){
if(currentAfsState){
[afsPropMngr loadConfiguration];
- if([useAklogPrefValue intValue]==NSOnState ) {
+ if([useAklogPrefValue boolValue]) {
NSLog(@"Use Aklog");
[afsPropMngr getTokens:false
usr:nil
// -------------------------------------------------------------------------------
- (void)releaseToken:(id)sender
{
- AFSPropertyManager *afsMngr = [[AFSPropertyManager alloc] initWithAfsPath:afsSysPath];
[afsMngr unlog:nil];
- [afsMngr release];
[self updateAfsStatus:nil];
}
if(![tokensLock tryLock]) return;
// check the afs state in esclusive mode
- AFSPropertyManager *afsMngr = [[AFSPropertyManager alloc] initWithAfsPath:afsSysPath];
afsState = [afsMngr checkAfsStatus];
NSArray *tokens = [afsMngr getTokenList];
- [afsMngr release];
gotToken = [tokens count] > 0;
[tokens release];
- [self updateMenu];
//unlock
[tokensLock unlock];
}
-
-
// -------------------------------------------------------------------------------
-// -(void) updateMenu
+// - (void)menuNeedsUpdate:(NSMenu *)menu
// -------------------------------------------------------------------------------
-- (void)updateMenu{
- [getReleaseTokenMenuItem setEnabled:afsState];
- [startStopMenuItem setTitle:afsState?kAfsButtonShutdown:kAfsButtonStartup];
- [[statusItem view] setNeedsDisplay:YES];
-
+- (void)menuNeedsUpdate:(NSMenu *)menu {
+ if (menu == backgrounderMenu)
+ {
+ [startStopMenuItem setTitle:afsState?@"Shutdown AFS":@"Startup AFS"];
+ [getReleaseTokenMenuItem setTitle:gotToken?@"Release token":@"Get New Token"];
+ [getReleaseTokenMenuItem setEnabled:afsState];
+ [[statusItem view] setNeedsDisplay:YES];
+
+ }
}
[statusItem setImage:noTokenImage];
} else {
if(!statusItem) return;
- [statusItem release];
+ [[NSStatusBar systemStatusBar] removeStatusItem:statusItem];
+ [statusItem autorelease];
statusItem = nil;
}
}
[statusItemMenu setDelegate:nil];
[self setNeedsDisplay:YES];
}
+
+// -------------------------------------------------------------------------------
+// - (void)menuNeedsUpdate:(NSMenu *)menu
+// -------------------------------------------------------------------------------
+- (void)menuNeedsUpdate:(NSMenu *)menu {
+ [backgrounderDelegator menuNeedsUpdate:menu];
+}
@end
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilderKit</string>
<string>com.apple.InterfaceBuilderKit</string>
- <string>{{113, 626}, {125, 53}}</string>
+ <string>{{120, 603}, {125, 53}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
</object>
</object>
<nil key="sourceID"/>
- <int key="maxID">18</int>
+ <int key="maxID">19</int>
</object>
<object class="IBClassDescriber" key="IBDocument.Classes">
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
- <key>LSUIElement</key>
- <true/>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
- <string>1.0</string>
+ <string>1.0b</string>
+ <key>LSUIElement</key>
+ <true/>
<key>NSMainNibFile</key>
<string>AFSBackounderMainMenu</string>
<key>NSPrincipalClass</key>
IBOutlet NSButton *dynRoot;
IBOutlet NSButton *afsDB;
IBOutlet NSButton *verbose;
+ IBOutlet NSButton *backgrounderActivationCheck;
IBOutlet NSBox *groupsBox;
//id installationPathTextField;
- (IBAction) aklogSwitchEvent:(id) sender;
- (IBAction) credentialAtLoginTimeEvent:(id) sender;
- (IBAction) afsStartupSwitchEvent:(id) sender;
-- (void) credentialAtLoginTimeEventCreationLaunchAgentDir:(NSWindow*)alert returnCode:(int)returnCode contextInfo:(void *)contextInfo;
- (IBAction) krb5KredentialAtLoginTimeEvent:(id) sender;
- (IBAction) searchCellTextEvent:(id) sender;
+- (IBAction) manageBackgrounderActivation:(id)sender;
+- (void) credentialAtLoginTimeEventCreationLaunchAgentDir:(NSWindow*)alert returnCode:(int)returnCode contextInfo:(void *)contextInfo;
- (void) clearCellServDBFiltering;
- (void) filterCellServDB:(NSString*)textToFilter;
- (DBCellElement*) getCurrentCellInDB;
- (void) readPreferenceFile;
- (void) refreshGui:(NSNotification *)notification;
- (void) afsVolumeMountChange:(NSNotification *)notification;
+- (void)tabView:(NSTabView *)tabView willSelectTabViewItem: (NSTabViewItem *)tabViewItem;
@end
@interface AFSCommanderPref (NSTableDataSource)
#define TAB_TOKENS 1
#define TAB_CELL_SERV_DB 2
#define TAB_CACHE 3
-#define TAB_GROUP 4
+#define TAB_LINK 4
//CellServDB table id
#define CELLSRVDB_TABLE_USR_DFLT_CHECK_COLUMN 0
- (void) readPreferenceFile
{
- // read the preference for afs path
- //NSString *afsSysPath = PREFERENCE_AFS_SYS_PAT_STATIC;/*(NSString*)CFPreferencesCopyValue((CFStringRef)PREFERENCE_AFS_SYS_PAT, (CFStringRef)kAfsCommanderID,
- // kCFPreferencesAnyUser, kCFPreferencesAnyHost);*/
- /*if(afsSysPath){
- [((NSTextField*) installationPathTextField ) setStringValue:afsSysPath];
- }*/
-
// read the preference for aklog use
NSNumber *useAklogPrefValue = (NSNumber*)CFPreferencesCopyValue((CFStringRef)PREFERENCE_USE_AKLOG, (CFStringRef)kAfsCommanderID,
kCFPreferencesCurrentUser, kCFPreferencesAnyHost);
NSNumber *aklogTokenAtLogin = (NSNumber*)CFPreferencesCopyValue((CFStringRef)PREFERENCE_AKLOG_TOKEN_AT_LOGIN, (CFStringRef)kAfsCommanderID,
kCFPreferencesCurrentUser, kCFPreferencesAnyHost);
[useAklogCheck setState:[useAklogPrefValue intValue]];
- if(useAklogPrefValue){
- [aklogCredentialAtLoginTime setEnabled:[aklogTokenAtLogin boolValue]];
- } else {
- [aklogCredentialAtLoginTime setEnabled:NSOffState];
- [aklogCredentialAtLoginTime setState:NSOffState];
- }
-
+ [aklogCredentialAtLoginTime setEnabled:useAklogPrefValue && [useAklogPrefValue boolValue]];
+ [aklogCredentialAtLoginTime setState:aklogTokenAtLogin && [aklogTokenAtLogin boolValue]];
+
+ //check krb5 at login time
+ [installKRB5AuthAtLoginButton setState:[PListManager checkKrb5AtLoginTimeLaunchdEnable]];
+
//check for AFS enable at startup
NSNumber *afsEnableStartupTime = (NSNumber*)CFPreferencesCopyValue((CFStringRef)PREFERENCE_START_AFS_AT_STARTUP,
(CFStringRef)kAfsCommanderID, kCFPreferencesAnyUser, kCFPreferencesAnyHost);
//set the check button state
[checkButtonAfsAtBootTime setState:startAFSAtLogin];
- NSNumber *showStatusMenu = (NSNumber*)CFPreferencesCopyValue((CFStringRef)PREFERENCE_SHOW_STATUS_MENU, (CFStringRef)kAfsCommanderID, kCFPreferencesAnyUser, kCFPreferencesAnyHost);
+ NSNumber *showStatusMenu = (NSNumber*)CFPreferencesCopyValue((CFStringRef)PREFERENCE_SHOW_STATUS_MENU, (CFStringRef)kAfsCommanderID, kCFPreferencesCurrentUser, kCFPreferencesAnyHost);
[(NSButton*)afsMenucheckBox setState: [showStatusMenu boolValue]];
+
+ //backgrounder state
+ [backgrounderActivationCheck setState:[PListManager launchdJobState:BACKGROUNDER_P_FILE]];
}
// -------------------------------------------------------------------------------
//set aklog at login
CFPreferencesSetValue((CFStringRef)PREFERENCE_AKLOG_TOKEN_AT_LOGIN,
(CFNumberRef)[NSNumber numberWithBool:[aklogCredentialAtLoginTime state]],
- (CFStringRef)kAfsCommanderID, kCFPreferencesAnyUser, kCFPreferencesAnyHost);
+ (CFStringRef)kAfsCommanderID, kCFPreferencesCurrentUser, kCFPreferencesAnyHost);
//set aklog at login
CFPreferencesSetValue((CFStringRef)PREFERENCE_SHOW_STATUS_MENU,
(CFNumberRef)[NSNumber numberWithBool:[afsMenucheckBox state]],
- (CFStringRef)kAfsCommanderID, kCFPreferencesAnyUser, kCFPreferencesAnyHost);
+ (CFStringRef)kAfsCommanderID, kCFPreferencesCurrentUser, kCFPreferencesAnyHost);
CFPreferencesSynchronize((CFStringRef)kAfsCommanderID, kCFPreferencesAnyUser, kCFPreferencesAnyHost);
CFPreferencesSynchronize((CFStringRef)kAfsCommanderID, kCFPreferencesCurrentUser, kCFPreferencesAnyHost);
}
-
// -------------------------------------------------------------------------------
// credentialAtLoginTimeEvent:
// -------------------------------------------------------------------------------
- (IBAction) enableLink:(id) sender {
}
+
+// -------------------------------------------------------------------------------
+// removeExtra:
+// -------------------------------------------------------------------------------
+- (IBAction) manageBackgrounderActivation:(id)sender {
+ [PListManager launchctlCommand:[(NSButton*)sender state]
+ userDomain:YES
+ option:[NSArray arrayWithObjects:@"-S", @"Aqua", nil]
+ plistName:[NSString stringWithFormat:@"%@.plist", BACKGROUNDER_P_FILE]];
+ //re ad the status to check taht all is gone well
+ [backgrounderActivationCheck setState:[PListManager launchdJobState:BACKGROUNDER_P_FILE]];
+}
+
+
+// -------------------------------------------------------------------------------
+// - (void)tabView:(NSTabView *)tabView willSelectTabViewItem: (NSTabViewItem *)tabViewItem
+// -------------------------------------------------------------------------------
+- (void)tabView:(NSTabView *)tabView willSelectTabViewItem: (NSTabViewItem *)tabViewItem
+{
+ //check to see if the cache param tab is the tab that will be selected
+ if([((NSString*)[tabViewItem identifier]) intValue] == TAB_LINK)
+ {
+
+ // [groupsBox setHidden:YES];
+ NSLog([tabViewItem label]);
+ [ViewUtility enbleDisableControlView:[tabViewItem view]
+ controlState:NO];
+ }
+}
+
@end
@implementation AFSCommanderPref (NSTableDataSource)
}
return rowCount;
}
-
-
@end
[lyncCreationSheet orderOut:self];
}
@end
-
-// -------------------------------------------------------------------------------
-// AFSCommanderPref(NSTabViewDelegator) - delegate for nstabview in
-// main preference view
-// -------------------------------------------------------------------------------
-@implementation AFSCommanderPref(NSTabViewDelegator)
-- (void)tabView:(NSTabView *)tabView willSelectTabViewItem: (NSTabViewItem *)tabViewItem
-{
- //check to see if the cache param tab is the tab that will be selected
- if([((NSString*)[tabViewItem identifier]) intValue] == TAB_GROUP)
- {
- //get
- NSLog(@"cache param tab");
- // [groupsBox setHidden:YES];
- NSLog([groupsBox title]);
- [ViewUtility enbleDisableControlView:[groupsBox contentView]
- controlState:NO];
- }
-}
-@end
\ No newline at end of file
reason:kThisCellFOError
userInfo:nil];
}
- NSLog(@"Cell found: %s", [cellName cString]);
+ NSLog(@"Cell found: %@", cellName);
//read TheseCell file
[filePath setString: installationPath];
{
NSString *tmpString = nil;
NSString *result = [TaskUtil executeTaskSearchingPath:@"fs" args:[NSArray arrayWithObjects:@"-version", nil]];
- if(result) NSLog(@"fs -version return: %s", [result cString]);
+ if(result) NSLog(@"fs -version return: %@", result);
NSCharacterSet *endVersionCS = [NSCharacterSet characterSetWithCharactersInString:@"qwertyuiopasdfghjklzxcvbnmMNBVCXZLKJHGFDSAPOIUYTREWQ"];
NSError *error = nil;
NSString *tmpStr = nil;
- NSLog(@"Try to opening file: %s",[configFile cString] );
+ NSLog(@"Try to opening file: %@",configFile);
NSString * result = [NSString stringWithContentsOfFile:configFile
encoding:NSASCIIStringEncoding
error:&error];
modalDelegate:delegator
didEndSelector:fSelector
contextInfo:nil];
+ return YES;
}
@end
<?xml version="1.0" encoding="UTF-8"?>
-<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.02">
+<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.03">
<data>
<int key="IBDocument.SystemTarget">1050</int>
- <string key="IBDocument.SystemVersion">9C31</string>
- <string key="IBDocument.InterfaceBuilderVersion">648</string>
- <string key="IBDocument.AppKitVersion">949.26</string>
- <string key="IBDocument.HIToolboxVersion">352.00</string>
+ <string key="IBDocument.SystemVersion">9J61</string>
+ <string key="IBDocument.InterfaceBuilderVersion">680</string>
+ <string key="IBDocument.AppKitVersion">949.46</string>
+ <string key="IBDocument.HIToolboxVersion">353.00</string>
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
<bool key="EncodedWithXMLCoder">YES</bool>
+ <integer value="6"/>
</object>
<object class="NSArray" key="IBDocument.PluginDependencies">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
</object>
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSArray" key="dict.sortedKeys">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ </object>
<object class="NSMutableArray" key="IBDocument.RootObjects" id="429600039">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSCustomObject" id="657952263">
<object class="NSWindowTemplate" id="249730404">
<int key="NSWindowStyleMask">11</int>
<int key="NSWindowBacking">2</int>
- <string key="NSWindowRect">{{622, 526}, {525, 370}}</string>
+ <string key="NSWindowRect">{{622, 551}, {525, 345}}</string>
<int key="NSWTFlags">813170688</int>
<string key="NSWindowTitle">Panel</string>
<object class="NSMutableString" key="NSWindowClass">
<object class="NSMutableString" key="NSViewClass">
<characters key="NS.bytes">View</characters>
</object>
+ <string key="NSWindowContentMaxSize">{3.40282e+38, 3.40282e+38}</string>
<string key="NSWindowContentMinSize">{525, 345}</string>
<object class="NSView" key="NSWindowView" id="274468230">
- <nil key="NSNextResponder"/>
+ <reference key="NSNextResponder"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSButton" id="800283714">
<reference key="NSNextResponder" ref="274468230"/>
<int key="NSvFlags">289</int>
- <string key="NSFrame">{{430, 13}, {80, 28}}</string>
+ <string key="NSFrame">{{428, 12}, {80, 28}}</string>
<reference key="NSSuperview" ref="274468230"/>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="1042040079">
<object class="NSButton" id="956015576">
<reference key="NSNextResponder" ref="274468230"/>
<int key="NSvFlags">289</int>
- <string key="NSFrame">{{348, 13}, {80, 28}}</string>
+ <string key="NSFrame">{{346, 12}, {80, 28}}</string>
<reference key="NSSuperview" ref="274468230"/>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="441391248">
<object class="NSTextField" id="680338282">
<reference key="NSNextResponder" ref="274468230"/>
<int key="NSvFlags">268</int>
- <string key="NSFrame">{{51, 344}, {54, 16}}</string>
+ <string key="NSFrame">{{51, 319}, {54, 16}}</string>
<reference key="NSSuperview" ref="274468230"/>
<bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="496687085">
<object class="NSTableView" id="234348651">
<reference key="NSNextResponder" ref="786132725"/>
<int key="NSvFlags">256</int>
- <string key="NSFrameSize">{453, 190}</string>
+ <string key="NSFrameSize">{453, 165}</string>
<reference key="NSSuperview" ref="786132725"/>
<bool key="NSEnabled">YES</bool>
<object class="NSTableHeaderView" key="NSHeaderView" id="367895900">
<bool key="NSAllowsTypeSelect">YES</bool>
</object>
</object>
- <string key="NSFrame">{{1, 17}, {453, 190}}</string>
+ <string key="NSFrame">{{1, 17}, {453, 165}}</string>
<reference key="NSSuperview" ref="585065386"/>
<reference key="NSNextKeyView" ref="234348651"/>
<reference key="NSDocView" ref="234348651"/>
</object>
<reference ref="211425262"/>
</object>
- <string key="NSFrame">{{16, 30}, {455, 208}}</string>
+ <string key="NSFrame">{{16, 30}, {455, 183}}</string>
<reference key="NSSuperview" ref="612441040"/>
<reference key="NSNextKeyView" ref="786132725"/>
<int key="NSsFlags">562</int>
<reference key="NSHScroller" ref="814656055"/>
<reference key="NSContentView" ref="786132725"/>
<reference key="NSHeaderClipView" ref="336840699"/>
+ <reference key="NSCornerView" ref="211425262"/>
<bytes key="NSScrollAmts">QSAAAEEgAABBmAAAQZgAAA</bytes>
</object>
+ <object class="NSButton" id="216429474">
+ <reference key="NSNextResponder" ref="612441040"/>
+ <int key="NSvFlags">289</int>
+ <string key="NSFrame">{{315, 6}, {75, 16}}</string>
+ <reference key="NSSuperview" ref="612441040"/>
+ <bool key="NSEnabled">YES</bool>
+ <object class="NSButtonCell" key="NSCell" id="305136955">
+ <int key="NSCellFlags">604110336</int>
+ <int key="NSCellFlags2">134479872</int>
+ <string key="NSContents">Delete</string>
+ <object class="NSFont" key="NSSupport" id="22">
+ <string key="NSName">LucidaGrande</string>
+ <double key="NSSize">9.000000e+00</double>
+ <int key="NSfFlags">3614</int>
+ </object>
+ <reference key="NSControlView" ref="216429474"/>
+ <int key="NSButtonFlags">-2038284033</int>
+ <int key="NSButtonFlags2">1</int>
+ <object class="NSFont" key="NSAlternateImage" id="160758642">
+ <string key="NSName">LucidaGrande</string>
+ <double key="NSSize">9.000000e+00</double>
+ <int key="NSfFlags">16</int>
+ </object>
+ <string key="NSAlternateContents"/>
+ <object class="NSMutableString" key="NSKeyEquivalent">
+ <characters key="NS.bytes"/>
+ </object>
+ <int key="NSPeriodicDelay">200</int>
+ <int key="NSPeriodicInterval">25</int>
+ </object>
+ </object>
+ <object class="NSButton" id="655780437">
+ <reference key="NSNextResponder" ref="612441040"/>
+ <int key="NSvFlags">289</int>
+ <string key="NSFrame">{{396, 6}, {75, 16}}</string>
+ <reference key="NSSuperview" ref="612441040"/>
+ <bool key="NSEnabled">YES</bool>
+ <object class="NSButtonCell" key="NSCell" id="675738899">
+ <int key="NSCellFlags">67239424</int>
+ <int key="NSCellFlags2">134479872</int>
+ <string key="NSContents">Add</string>
+ <reference key="NSSupport" ref="22"/>
+ <reference key="NSControlView" ref="655780437"/>
+ <int key="NSButtonFlags">-2038284033</int>
+ <int key="NSButtonFlags2">1</int>
+ <reference key="NSAlternateImage" ref="160758642"/>
+ <string key="NSAlternateContents"/>
+ <object class="NSMutableString" key="NSKeyEquivalent">
+ <characters key="NS.bytes"/>
+ </object>
+ <int key="NSPeriodicDelay">200</int>
+ <int key="NSPeriodicInterval">25</int>
+ </object>
+ </object>
</object>
- <string key="NSFrame">{{2, 2}, {487, 249}}</string>
+ <string key="NSFrame">{{2, 2}, {487, 224}}</string>
<reference key="NSSuperview" ref="338197250"/>
</object>
</object>
- <string key="NSFrame">{{17, 41}, {491, 266}}</string>
+ <string key="NSFrame">{{17, 41}, {491, 241}}</string>
<reference key="NSSuperview" ref="274468230"/>
<string key="NSOffsets">{0, 0}</string>
<object class="NSTextFieldCell" key="NSTitleCell">
<int key="NSTitlePosition">2</int>
<bool key="NSTransparent">NO</bool>
</object>
- <object class="NSButton" id="216429474">
- <reference key="NSNextResponder" ref="274468230"/>
- <int key="NSvFlags">289</int>
- <string key="NSFrame">{{331, 52}, {75, 16}}</string>
- <reference key="NSSuperview" ref="274468230"/>
- <bool key="NSEnabled">YES</bool>
- <object class="NSButtonCell" key="NSCell" id="305136955">
- <int key="NSCellFlags">604110336</int>
- <int key="NSCellFlags2">134479872</int>
- <string key="NSContents">Delete</string>
- <object class="NSFont" key="NSSupport" id="22">
- <string key="NSName">LucidaGrande</string>
- <double key="NSSize">9.000000e+00</double>
- <int key="NSfFlags">3614</int>
- </object>
- <reference key="NSControlView" ref="216429474"/>
- <int key="NSButtonFlags">-2038284033</int>
- <int key="NSButtonFlags2">1</int>
- <object class="NSFont" key="NSAlternateImage" id="160758642">
- <string key="NSName">LucidaGrande</string>
- <double key="NSSize">9.000000e+00</double>
- <int key="NSfFlags">16</int>
- </object>
- <string key="NSAlternateContents"/>
- <object class="NSMutableString" key="NSKeyEquivalent">
- <characters key="NS.bytes"/>
- </object>
- <int key="NSPeriodicDelay">200</int>
- <int key="NSPeriodicInterval">25</int>
- </object>
- </object>
- <object class="NSButton" id="655780437">
- <reference key="NSNextResponder" ref="274468230"/>
- <int key="NSvFlags">289</int>
- <string key="NSFrame">{{412, 52}, {75, 16}}</string>
- <reference key="NSSuperview" ref="274468230"/>
- <bool key="NSEnabled">YES</bool>
- <object class="NSButtonCell" key="NSCell" id="675738899">
- <int key="NSCellFlags">67239424</int>
- <int key="NSCellFlags2">134479872</int>
- <string key="NSContents">Add</string>
- <reference key="NSSupport" ref="22"/>
- <reference key="NSControlView" ref="655780437"/>
- <int key="NSButtonFlags">-2038284033</int>
- <int key="NSButtonFlags2">1</int>
- <reference key="NSAlternateImage" ref="160758642"/>
- <string key="NSAlternateContents"/>
- <object class="NSMutableString" key="NSKeyEquivalent">
- <characters key="NS.bytes"/>
- </object>
- <int key="NSPeriodicDelay">200</int>
- <int key="NSPeriodicInterval">25</int>
- </object>
- </object>
<object class="NSTextField" id="953679499">
<reference key="NSNextResponder" ref="274468230"/>
<int key="NSvFlags">268</int>
- <string key="NSFrame">{{44, 314}, {61, 16}}</string>
+ <string key="NSFrame">{{44, 289}, {61, 16}}</string>
<reference key="NSSuperview" ref="274468230"/>
<bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="847361982">
<object class="NSTextField" id="379757882">
<reference key="NSNextResponder" ref="274468230"/>
<int key="NSvFlags">266</int>
- <string key="NSFrame">{{110, 344}, {389, 19}}</string>
+ <string key="NSFrame">{{110, 319}, {389, 19}}</string>
<reference key="NSSuperview" ref="274468230"/>
<bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="620196816">
<object class="NSTextField" id="523190513">
<reference key="NSNextResponder" ref="274468230"/>
<int key="NSvFlags">266</int>
- <string key="NSFrame">{{110, 315}, {389, 19}}</string>
+ <string key="NSFrame">{{110, 290}, {389, 19}}</string>
<reference key="NSSuperview" ref="274468230"/>
<bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="115478350">
</object>
</object>
</object>
- <string key="NSFrameSize">{525, 370}</string>
+ <string key="NSFrameSize">{525, 345}</string>
+ <reference key="NSSuperview"/>
</object>
<string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string>
<string key="NSMinSize">{525, 367}</string>
<reference key="object" ref="274468230"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="800283714"/>
- <reference ref="956015576"/>
<reference ref="680338282"/>
<reference ref="338197250"/>
- <reference ref="216429474"/>
- <reference ref="655780437"/>
<reference ref="953679499"/>
<reference ref="379757882"/>
<reference ref="523190513"/>
+ <reference ref="800283714"/>
+ <reference ref="956015576"/>
</object>
<reference key="parent" ref="249730404"/>
</object>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="585065386"/>
- </object>
- <reference key="parent" ref="274468230"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">38</int>
- <reference key="object" ref="216429474"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="305136955"/>
- </object>
- <reference key="parent" ref="274468230"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">39</int>
- <reference key="object" ref="655780437"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="675738899"/>
+ <reference ref="655780437"/>
+ <reference ref="216429474"/>
</object>
<reference key="parent" ref="274468230"/>
</object>
<reference key="parent" ref="680338282"/>
</object>
<object class="IBObjectRecord">
- <int key="objectID">65</int>
- <reference key="object" ref="305136955"/>
- <reference key="parent" ref="216429474"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">66</int>
- <reference key="object" ref="675738899"/>
- <reference key="parent" ref="655780437"/>
- </object>
- <object class="IBObjectRecord">
<int key="objectID">67</int>
<reference key="object" ref="847361982"/>
<reference key="parent" ref="953679499"/>
<reference key="object" ref="228999791"/>
<reference key="parent" ref="1066913939"/>
</object>
+ <object class="IBObjectRecord">
+ <int key="objectID">38</int>
+ <reference key="object" ref="216429474"/>
+ <object class="NSMutableArray" key="children">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <reference ref="305136955"/>
+ </object>
+ <reference key="parent" ref="338197250"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">65</int>
+ <reference key="object" ref="305136955"/>
+ <reference key="parent" ref="216429474"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">39</int>
+ <reference key="object" ref="655780437"/>
+ <object class="NSMutableArray" key="children">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <reference ref="675738899"/>
+ </object>
+ <reference key="parent" ref="338197250"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">66</int>
+ <reference key="object" ref="675738899"/>
+ <reference key="parent" ref="655780437"/>
+ </object>
</object>
</object>
<object class="NSMutableDictionary" key="flattenedProperties">
<string>38.ImportedFromIB2</string>
<string>39.IBPluginDependency</string>
<string>39.ImportedFromIB2</string>
- <string>5.IBPluginDependency</string>
+ <string>5.IBEditorWindowLastContentRect</string>
+ <string>5.IBViewEditorWindowController.showingBoundsRectangles</string>
+ <string>5.IBViewEditorWindowController.showingLayoutRectangles</string>
+ <string>5.IBWindowTemplateEditedContentRect</string>
<string>5.ImportedFromIB2</string>
<string>5.windowTemplate.hasMinSize</string>
<string>5.windowTemplate.minSize</string>
<string>56.ImportedFromIB2</string>
<string>6.IBPluginDependency</string>
<string>6.ImportedFromIB2</string>
+ <string>62.IBPluginDependency</string>
+ <string>63.IBPluginDependency</string>
+ <string>64.IBPluginDependency</string>
+ <string>65.IBPluginDependency</string>
+ <string>66.IBPluginDependency</string>
+ <string>67.IBPluginDependency</string>
+ <string>68.IBPluginDependency</string>
+ <string>69.IBPluginDependency</string>
<string>7.IBPluginDependency</string>
<string>7.ImportedFromIB2</string>
+ <string>70.IBPluginDependency</string>
<string>70.IBShouldRemoveOnLegacySave</string>
+ <string>71.IBPluginDependency</string>
<string>71.IBShouldRemoveOnLegacySave</string>
+ <string>72.IBPluginDependency</string>
<string>72.IBShouldRemoveOnLegacySave</string>
+ <string>73.IBPluginDependency</string>
<string>73.IBShouldRemoveOnLegacySave</string>
+ <string>74.IBPluginDependency</string>
<string>74.IBShouldRemoveOnLegacySave</string>
<string>8.IBPluginDependency</string>
<string>8.ImportedFromIB2</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
- <integer value="1" id="5"/>
+ <integer value="1" id="9"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
- <reference ref="5"/>
- <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
- <reference ref="5"/>
+ <reference ref="9"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
- <reference ref="5"/>
+ <reference ref="9"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
- <reference ref="5"/>
+ <reference ref="9"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
- <reference ref="5"/>
+ <reference ref="9"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
- <reference ref="5"/>
+ <reference ref="9"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
- <reference ref="5"/>
+ <reference ref="9"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
- <reference ref="5"/>
+ <reference ref="9"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
- <reference ref="5"/>
+ <reference ref="9"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
- <reference ref="5"/>
+ <reference ref="9"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+ <reference ref="9"/>
+ <string>{{76, 288}, {525, 345}}</string>
+ <boolean value="YES" id="5"/>
<reference ref="5"/>
- <reference ref="5"/>
+ <string>{{76, 288}, {525, 345}}</string>
+ <reference ref="9"/>
+ <reference ref="9"/>
<string>{525, 345}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
- <reference ref="5"/>
+ <reference ref="9"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
- <reference ref="5"/>
+ <reference ref="9"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
- <reference ref="5"/>
+ <reference ref="9"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
- <reference ref="5"/>
+ <reference ref="9"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
- <reference ref="5"/>
- <reference ref="5"/>
- <reference ref="5"/>
- <reference ref="5"/>
- <reference ref="5"/>
- <reference ref="5"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
- <reference ref="5"/>
+ <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+ <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+ <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+ <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+ <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+ <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+ <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+ <reference ref="9"/>
+ <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+ <reference ref="9"/>
+ <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+ <reference ref="9"/>
+ <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+ <reference ref="9"/>
+ <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+ <reference ref="9"/>
+ <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+ <reference ref="9"/>
+ <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+ <reference ref="9"/>
</object>
</object>
<object class="NSMutableDictionary" key="unlocalizedProperties">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSMutableArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
+ <string>addLink:</string>
<string>addRemoveCell:</string>
<string>afsMenuActivationEvent:</string>
+ <string>afsStartupSwitchEvent:</string>
<string>aklogSwitchEvent:</string>
+ <string>credentialAtLoginTimeEvent:</string>
+ <string>enableLink:</string>
<string>getNewToken:</string>
<string>info:</string>
+ <string>krb5KredentialAtLoginTimeEvent:</string>
+ <string>manageBackgrounderActivation:</string>
<string>refreshConfiguration:</string>
+ <string>removeLink:</string>
<string>saveCacheManagerParam:</string>
<string>saveConfiguration:</string>
<string>searchCellTextEvent:</string>
<string>id</string>
<string>id</string>
<string>id</string>
+ <string>id</string>
+ <string>id</string>
+ <string>id</string>
+ <string>id</string>
+ <string>id</string>
+ <string>id</string>
+ <string>id</string>
</object>
</object>
<object class="NSMutableDictionary" key="outlets">
<string>afsMenucheckBox</string>
<string>afsRootMountPoint</string>
<string>afsVersionLabel</string>
+ <string>aklogCredentialAtLoginTime</string>
+ <string>backgrounderActivationCheck</string>
+ <string>buttonAddLink</string>
+ <string>buttonRemoveLink</string>
<string>cacheDimension</string>
<string>cellIpButton</string>
<string>cellList</string>
+ <string>checkButtonAfsAtBootTime</string>
+ <string>checkEnableLink</string>
<string>credentialCommander</string>
<string>credentialSheet</string>
<string>dCacheDim</string>
<string>groupsBox</string>
<string>infoController</string>
<string>infoSheet</string>
- <string>installationPathTextField</string>
+ <string>installKRB5AuthAtLoginButton</string>
<string>ipConfControllerCommander</string>
<string>ipConfigurationSheet</string>
<string>labelSaveResult</string>
+ <string>lyncCreationSheet</string>
+ <string>lynkCreationController</string>
<string>nVolEntry</string>
- <string>refreshConfigurationButton</string>
<string>removeCellButton</string>
<string>saveConfigurationButton</string>
<string>startStopButton</string>
<string>statCacheEntry</string>
+ <string>textFieldDevInfoLabel</string>
<string>textSearchField</string>
<string>tokensButton</string>
<string>tokensTable</string>
<string>id</string>
<string>NSTextField</string>
<string>NSTextField</string>
+ <string>NSButton</string>
+ <string>NSButton</string>
+ <string>NSButton</string>
+ <string>NSButton</string>
<string>NSTextField</string>
<string>id</string>
<string>id</string>
+ <string>NSButton</string>
+ <string>NSButton</string>
<string>id</string>
<string>id</string>
<string>NSTextField</string>
<string>NSBox</string>
<string>id</string>
<string>id</string>
+ <string>NSButton</string>
<string>id</string>
<string>id</string>
<string>id</string>
<string>id</string>
+ <string>LynkCreationController</string>
<string>NSTextField</string>
<string>id</string>
<string>id</string>
<string>id</string>
- <string>id</string>
+ <string>NSTextField</string>
<string>NSTextField</string>
<string>NSSearchField</string>
<string>NSButton</string>
</object>
<object class="IBPartialClassDescription">
<string key="className">FirstResponder</string>
+ <string key="superclassName">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBUserSource</string>
<string key="minorKey"/>
</object>
</object>
<object class="IBPartialClassDescription">
+ <string key="className">LynkCreationController</string>
+ <string key="superclassName">NSObject</string>
+ <object class="NSMutableDictionary" key="actions">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSMutableArray" key="dict.sortedKeys">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>cancell:</string>
+ <string>save:</string>
+ <string>selectLinkDest:</string>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>id</string>
+ <string>id</string>
+ <string>id</string>
+ </object>
+ </object>
+ <object class="NSMutableDictionary" key="outlets">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSMutableArray" key="dict.sortedKeys">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>lynkCreationSheet</string>
+ <string>textFieldLinkDestPath</string>
+ <string>textfieldLinkName</string>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>NSPanel</string>
+ <string>NSTextField</string>
+ <string>NSTextField</string>
+ </object>
+ </object>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBProjectSource</string>
+ <string key="minorKey">LynkCreationController.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
<string key="className">NSPreferencePane</string>
<string key="superclassName">NSObject</string>
<object class="NSMutableDictionary" key="outlets">
</object>
</object>
<int key="IBDocument.localizationMode">0</int>
- <string key="IBDocument.LastKnownRelativeProjectPath">../../AFSCommander.xcodeproj</string>
+ <string key="IBDocument.LastKnownRelativeProjectPath">../OpenAFS.xcodeproj</string>
<int key="IBDocument.defaultPropertyAccessControl">3</int>
</data>
</archive>
<string key="IBDocument.HIToolboxVersion">353.00</string>
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
<bool key="EncodedWithXMLCoder">YES</bool>
- <integer value="6"/>
+ <integer value="101"/>
</object>
<object class="NSArray" key="IBDocument.PluginDependencies">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSTextField" id="415603882">
<reference key="NSNextResponder" ref="645279396"/>
<int key="NSvFlags">256</int>
- <string key="NSFrame">{{17, 0}, {488, 17}}</string>
+ <string key="NSFrame">{{17, 1}, {304, 14}}</string>
<reference key="NSSuperview" ref="645279396"/>
<bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="947523856">
<object class="NSButton" id="709840556">
<reference key="NSNextResponder" ref="520583273"/>
<int key="NSvFlags">268</int>
- <string key="NSFrame">{{13, 9}, {109, 28}}</string>
+ <string key="NSFrame">{{13, 7}, {109, 28}}</string>
<reference key="NSSuperview" ref="520583273"/>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="675447498">
<object class="NSButton" id="871603218">
<reference key="NSNextResponder" ref="520583273"/>
<int key="NSvFlags">265</int>
- <string key="NSFrame">{{526, 12}, {21, 23}}</string>
+ <string key="NSFrame">{{526, 9}, {21, 23}}</string>
<reference key="NSSuperview" ref="520583273"/>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="1009755861">
<int key="NSPeriodicInterval">25</int>
</object>
</object>
- <object class="NSButton" id="239701474">
- <reference key="NSNextResponder" ref="520583273"/>
- <int key="NSvFlags">268</int>
- <string key="NSFrame">{{273, 15}, {170, 18}}</string>
- <reference key="NSSuperview" ref="520583273"/>
- <bool key="NSEnabled">YES</bool>
- <object class="NSButtonCell" key="NSCell" id="855912809">
- <int key="NSCellFlags">67239424</int>
- <int key="NSCellFlags2">0</int>
- <string key="NSContents">Get Krb5 credential at login</string>
- <object class="NSFont" key="NSSupport" id="894635401">
- <string key="NSName">LucidaGrande</string>
- <double key="NSSize">1.100000e+01</double>
- <int key="NSfFlags">16</int>
- </object>
- <reference key="NSControlView" ref="239701474"/>
- <int key="NSButtonFlags">1211912703</int>
- <int key="NSButtonFlags2">130</int>
- <object class="NSCustomResource" key="NSNormalImage" id="1069694397">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">NSSwitch</string>
- </object>
- <object class="NSButtonImageSource" key="NSAlternateImage" id="894136682">
- <string key="NSImageName">NSSwitch</string>
- </object>
- <string key="NSAlternateContents"/>
- <string key="NSKeyEquivalent"/>
- <int key="NSPeriodicDelay">200</int>
- <int key="NSPeriodicInterval">25</int>
- </object>
- </object>
<object class="NSButton" id="713307252">
<reference key="NSNextResponder" ref="520583273"/>
<int key="NSvFlags">-2147483380</int>
- <string key="NSFrame">{{138, 15}, {117, 18}}</string>
+ <string key="NSFrame">{{138, 13}, {117, 18}}</string>
<reference key="NSSuperview" ref="520583273"/>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="98390178">
<reference key="NSControlView" ref="713307252"/>
<int key="NSButtonFlags">1211912703</int>
<int key="NSButtonFlags2">130</int>
- <reference key="NSNormalImage" ref="1069694397"/>
- <reference key="NSAlternateImage" ref="894136682"/>
+ <object class="NSCustomResource" key="NSNormalImage" id="502435249">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">NSSwitch</string>
+ </object>
+ <object class="NSButtonImageSource" key="NSAlternateImage" id="894136682">
+ <string key="NSImageName">NSSwitch</string>
+ </object>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<int key="NSPeriodicDelay">200</int>
</object>
</object>
</object>
- <string key="NSFrame">{{1, 1}, {562, 49}}</string>
+ <string key="NSFrame">{{1, 1}, {562, 43}}</string>
<reference key="NSSuperview" ref="748501112"/>
</object>
</object>
- <string key="NSFrame">{{17, 417}, {564, 51}}</string>
+ <string key="NSFrame">{{17, 423}, {564, 45}}</string>
<reference key="NSSuperview" ref="645279396"/>
<string key="NSOffsets">{0, 0}</string>
<object class="NSTextFieldCell" key="NSTitleCell">
<object class="NSButton" id="210387551">
<reference key="NSNextResponder" ref="1020318718"/>
<int key="NSvFlags">265</int>
- <string key="NSFrame">{{322, 167}, {80, 28}}</string>
+ <string key="NSFrame">{{329, 164}, {80, 28}}</string>
<reference key="NSSuperview" ref="1020318718"/>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="327131725">
<object class="NSButton" id="977607312">
<reference key="NSNextResponder" ref="1020318718"/>
<int key="NSvFlags">265</int>
- <string key="NSFrame">{{407, 167}, {133, 28}}</string>
+ <string key="NSFrame">{{407, 164}, {133, 28}}</string>
<reference key="NSSuperview" ref="1020318718"/>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="73578210">
<object class="NSButton" id="893552286">
<reference key="NSNextResponder" ref="1020318718"/>
<int key="NSvFlags">268</int>
- <string key="NSFrame">{{14, 163}, {86, 18}}</string>
+ <string key="NSFrame">{{14, 172}, {86, 18}}</string>
<reference key="NSSuperview" ref="1020318718"/>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="428850916">
<reference key="NSControlView" ref="893552286"/>
<int key="NSButtonFlags">1211912703</int>
<int key="NSButtonFlags2">2</int>
- <reference key="NSNormalImage" ref="1069694397"/>
+ <reference key="NSNormalImage" ref="502435249"/>
<reference key="NSAlternateImage" ref="894136682"/>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<object class="NSButton" id="478533800">
<reference key="NSNextResponder" ref="1000204505"/>
<int key="NSvFlags">268</int>
- <string key="NSFrame">{{5, 31}, {75, 18}}</string>
+ <string key="NSFrame">{{5, 32}, {75, 18}}</string>
<reference key="NSSuperview" ref="1000204505"/>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="989004902">
<reference key="NSControlView" ref="478533800"/>
<int key="NSButtonFlags">1211912703</int>
<int key="NSButtonFlags2">130</int>
- <reference key="NSNormalImage" ref="1069694397"/>
+ <reference key="NSNormalImage" ref="502435249"/>
<reference key="NSAlternateImage" ref="894136682"/>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<object class="NSButton" id="541208829">
<reference key="NSNextResponder" ref="1000204505"/>
<int key="NSvFlags">268</int>
- <string key="NSFrame">{{5, 11}, {167, 18}}</string>
+ <string key="NSFrame">{{5, 12}, {167, 18}}</string>
<reference key="NSSuperview" ref="1000204505"/>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="95048095">
<reference key="NSControlView" ref="541208829"/>
<int key="NSButtonFlags">1211912703</int>
<int key="NSButtonFlags2">130</int>
- <reference key="NSNormalImage" ref="1069694397"/>
+ <reference key="NSNormalImage" ref="502435249"/>
+ <reference key="NSAlternateImage" ref="894136682"/>
+ <string key="NSAlternateContents"/>
+ <string key="NSKeyEquivalent"/>
+ <int key="NSPeriodicDelay">200</int>
+ <int key="NSPeriodicInterval">25</int>
+ </object>
+ </object>
+ <object class="NSButton" id="239701474">
+ <reference key="NSNextResponder" ref="1000204505"/>
+ <int key="NSvFlags">268</int>
+ <string key="NSFrame">{{5, 52}, {170, 18}}</string>
+ <reference key="NSSuperview" ref="1000204505"/>
+ <bool key="NSEnabled">YES</bool>
+ <object class="NSButtonCell" key="NSCell" id="855912809">
+ <int key="NSCellFlags">67239424</int>
+ <int key="NSCellFlags2">131072</int>
+ <string key="NSContents">Get Krb5 credential at login</string>
+ <reference key="NSSupport" ref="26"/>
+ <reference key="NSControlView" ref="239701474"/>
+ <int key="NSButtonFlags">1211912703</int>
+ <int key="NSButtonFlags2">130</int>
+ <reference key="NSNormalImage" ref="502435249"/>
<reference key="NSAlternateImage" ref="894136682"/>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
</object>
</object>
</object>
- <string key="NSFrame">{{1, 1}, {195, 57}}</string>
+ <string key="NSFrame">{{1, 1}, {193, 78}}</string>
<reference key="NSSuperview" ref="184192603"/>
</object>
</object>
- <string key="NSFrame">{{103, 130}, {197, 73}}</string>
+ <string key="NSFrame">{{113, 97}, {195, 94}}</string>
<reference key="NSSuperview" ref="1020318718"/>
<string key="NSOffsets">{0, 0}</string>
<object class="NSTextFieldCell" key="NSTitleCell">
<int key="NSCellFlags">67239424</int>
<int key="NSCellFlags2">0</int>
- <string key="NSContents"/>
+ <string key="NSContents">Kerberos Setting</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSBackgroundColor" ref="878835253"/>
<object class="NSColor" key="NSTextColor">
<int key="NSTitlePosition">2</int>
<bool key="NSTransparent">NO</bool>
</object>
+ <object class="NSButton" id="343070533">
+ <reference key="NSNextResponder" ref="1020318718"/>
+ <int key="NSvFlags">268</int>
+ <string key="NSFrame">{{14, 152}, {96, 18}}</string>
+ <reference key="NSSuperview" ref="1020318718"/>
+ <bool key="NSEnabled">YES</bool>
+ <object class="NSButtonCell" key="NSCell" id="237101992">
+ <int key="NSCellFlags">67239424</int>
+ <int key="NSCellFlags2">131072</int>
+ <string key="NSContents">Backgrounder</string>
+ <reference key="NSSupport" ref="26"/>
+ <reference key="NSControlView" ref="343070533"/>
+ <int key="NSButtonFlags">1211912703</int>
+ <int key="NSButtonFlags2">130</int>
+ <reference key="NSNormalImage" ref="502435249"/>
+ <reference key="NSAlternateImage" ref="894136682"/>
+ <string key="NSAlternateContents"/>
+ <string key="NSKeyEquivalent"/>
+ <int key="NSPeriodicDelay">200</int>
+ <int key="NSPeriodicInterval">25</int>
+ </object>
+ </object>
</object>
<string key="NSFrame">{{10, 25}, {552, 363}}</string>
<reference key="NSSuperview" ref="739317740"/>
<reference key="NSControlView" ref="788506691"/>
<int key="NSButtonFlags">-2038021889</int>
<int key="NSButtonFlags2">35</int>
- <reference key="NSAlternateImage" ref="894635401"/>
+ <object class="NSFont" key="NSAlternateImage" id="894635401">
+ <string key="NSName">LucidaGrande</string>
+ <double key="NSSize">1.100000e+01</double>
+ <int key="NSfFlags">16</int>
+ </object>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<int key="NSPeriodicDelay">400</int>
<reference key="NSControlView" ref="536830463"/>
<int key="NSButtonFlags">1215582719</int>
<int key="NSButtonFlags2">130</int>
- <reference key="NSNormalImage" ref="1069694397"/>
+ <reference key="NSNormalImage" ref="502435249"/>
<reference key="NSAlternateImage" ref="894136682"/>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<reference key="NSControlView" ref="536830463"/>
<int key="NSButtonFlags">1212436991</int>
<int key="NSButtonFlags2">130</int>
- <reference key="NSNormalImage" ref="1069694397"/>
+ <reference key="NSNormalImage" ref="502435249"/>
<reference key="NSAlternateImage" ref="894136682"/>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<reference key="NSControlView" ref="1070305297"/>
<int key="NSButtonFlags">1211912703</int>
<int key="NSButtonFlags2">2</int>
- <reference key="NSNormalImage" ref="1069694397"/>
+ <reference key="NSNormalImage" ref="502435249"/>
<reference key="NSAlternateImage" ref="894136682"/>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<reference key="NSControlView" ref="805322468"/>
<int key="NSButtonFlags">1211912703</int>
<int key="NSButtonFlags2">2</int>
- <reference key="NSNormalImage" ref="1069694397"/>
+ <reference key="NSNormalImage" ref="502435249"/>
<reference key="NSAlternateImage" ref="894136682"/>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<reference key="NSControlView" ref="1064737768"/>
<int key="NSButtonFlags">1211912703</int>
<int key="NSButtonFlags2">130</int>
- <reference key="NSNormalImage" ref="1069694397"/>
+ <reference key="NSNormalImage" ref="502435249"/>
<reference key="NSAlternateImage" ref="894136682"/>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<reference key="NSControlView" ref="509563943"/>
<int key="NSButtonFlags">1211912703</int>
<int key="NSButtonFlags2">130</int>
- <reference key="NSNormalImage" ref="1069694397"/>
+ <reference key="NSNormalImage" ref="502435249"/>
<reference key="NSAlternateImage" ref="894136682"/>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<reference key="NSControlView" ref="224507096"/>
<int key="NSButtonFlags">1211912703</int>
<int key="NSButtonFlags2">130</int>
- <reference key="NSNormalImage" ref="1069694397"/>
+ <reference key="NSNormalImage" ref="502435249"/>
<reference key="NSAlternateImage" ref="894136682"/>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<object class="NSTextField" id="1047946385">
<reference key="NSNextResponder" ref="645279396"/>
<int key="NSvFlags">289</int>
- <string key="NSFrame">{{229, 6}, {349, 11}}</string>
+ <string key="NSFrame">{{323, 3}, {258, 11}}</string>
<reference key="NSSuperview" ref="645279396"/>
<bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="999146642">
</object>
<int key="connectionID">2053</int>
</object>
+ <object class="IBConnectionRecord">
+ <object class="IBOutletConnection" key="connection">
+ <string key="label">backgrounderActivationCheck</string>
+ <reference key="source" ref="773588579"/>
+ <reference key="destination" ref="343070533"/>
+ </object>
+ <int key="connectionID">2056</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBActionConnection" key="connection">
+ <string key="label">manageBackgrounderActivation:</string>
+ <reference key="source" ref="773588579"/>
+ <reference key="destination" ref="343070533"/>
+ </object>
+ <int key="connectionID">2057</int>
+ </object>
</object>
<object class="IBMutableOrderedSet" key="objectRecords">
<object class="NSArray" key="orderedObjects">
<reference key="object" ref="645279396"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="415603882"/>
<reference ref="1047946385"/>
- <reference ref="748501112"/>
+ <reference ref="415603882"/>
<reference ref="739317740"/>
+ <reference ref="748501112"/>
</object>
<reference key="parent" ref="61231707"/>
</object>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="440720679"/>
- <reference ref="210387551"/>
<reference ref="977607312"/>
<reference ref="184192603"/>
<reference ref="893552286"/>
+ <reference ref="343070533"/>
+ <reference ref="210387551"/>
</object>
<reference key="parent" ref="269508902"/>
</object>
<reference ref="709840556"/>
<reference ref="713307252"/>
<reference ref="871603218"/>
- <reference ref="239701474"/>
</object>
<reference key="parent" ref="645279396"/>
</object>
<reference key="object" ref="184192603"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
+ <reference ref="239701474"/>
<reference ref="478533800"/>
<reference ref="541208829"/>
</object>
<reference key="parent" ref="541208829"/>
</object>
<object class="IBObjectRecord">
- <int key="objectID">2018</int>
- <reference key="object" ref="239701474"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="855912809"/>
- </object>
- <reference key="parent" ref="748501112"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">2019</int>
- <reference key="object" ref="855912809"/>
- <reference key="parent" ref="239701474"/>
- </object>
- <object class="IBObjectRecord">
<int key="objectID">2022</int>
<reference key="object" ref="126070858"/>
<object class="NSMutableArray" key="children">
<reference key="object" ref="98390178"/>
<reference key="parent" ref="713307252"/>
</object>
+ <object class="IBObjectRecord">
+ <int key="objectID">2054</int>
+ <reference key="object" ref="343070533"/>
+ <object class="NSMutableArray" key="children">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <reference ref="237101992"/>
+ </object>
+ <reference key="parent" ref="1020318718"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">2055</int>
+ <reference key="object" ref="237101992"/>
+ <reference key="parent" ref="343070533"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">2018</int>
+ <reference key="object" ref="239701474"/>
+ <object class="NSMutableArray" key="children">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <reference ref="855912809"/>
+ </object>
+ <reference key="parent" ref="184192603"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">2019</int>
+ <reference key="object" ref="855912809"/>
+ <reference key="parent" ref="239701474"/>
+ </object>
</object>
</object>
<object class="NSMutableDictionary" key="flattenedProperties">
<string>1199.IBPluginDependency</string>
<string>1199.ImportedFromIB2</string>
<string>12.IBEditorWindowLastContentRect</string>
+ <string>12.IBViewEditorWindowController.showingBoundsRectangles</string>
+ <string>12.IBViewEditorWindowController.showingLayoutRectangles</string>
<string>12.IBWindowTemplateEditedContentRect</string>
<string>12.ImportedFromIB2</string>
<string>12.windowTemplate.hasMinSize</string>
<string>2038.IBPluginDependency</string>
<string>2049.IBPluginDependency</string>
<string>2050.IBPluginDependency</string>
+ <string>2054.IBPluginDependency</string>
+ <string>2055.IBPluginDependency</string>
<string>207.IBPluginDependency</string>
<string>207.ImportedFromIB2</string>
<string>208.IBEditorWindowLastContentRect</string>
<reference ref="9"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<reference ref="9"/>
- <string>{{50, 153}, {595, 486}}</string>
- <string>{{50, 153}, {595, 486}}</string>
- <reference ref="9"/>
+ <string>{{70, 135}, {595, 486}}</string>
<boolean value="NO" id="6"/>
+ <reference ref="6"/>
+ <string>{{70, 135}, {595, 486}}</string>
+ <reference ref="9"/>
+ <reference ref="6"/>
<string>{3.40282e+38, 3.40282e+38}</string>
<string>{0, 0}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+ <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+ <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<reference ref="9"/>
<string>{{0, 510}, {715, 485}}</string>
<string>{{0, 510}, {715, 485}}</string>
</object>
</object>
<nil key="sourceID"/>
- <int key="maxID">2053</int>
+ <int key="maxID">2057</int>
</object>
<object class="IBClassDescriber" key="IBDocument.Classes">
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
<string>getNewToken:</string>
<string>info:</string>
<string>krb5KredentialAtLoginTimeEvent:</string>
+ <string>manageBackgrounderActivation:</string>
<string>refreshConfiguration:</string>
<string>removeLink:</string>
<string>saveCacheManagerParam:</string>
<string>id</string>
<string>id</string>
<string>id</string>
+ <string>id</string>
</object>
</object>
<object class="NSMutableDictionary" key="outlets">
<string>afsRootMountPoint</string>
<string>afsVersionLabel</string>
<string>aklogCredentialAtLoginTime</string>
+ <string>backgrounderActivationCheck</string>
<string>buttonAddLink</string>
<string>buttonRemoveLink</string>
<string>cacheDimension</string>
<string>NSButton</string>
<string>NSButton</string>
<string>NSButton</string>
+ <string>NSButton</string>
<string>NSTextField</string>
<string>id</string>
<string>id</string>
[cellElement setCellName:[((NSControl*) textFieldCellName) stringValue]];
[cellElement setCellComment:[((NSControl*) textFieldComment) stringValue]];
- NSLog(@"Deleting:\n%s",[[bkIPArray description] cString]);
+ NSLog(@"Deleting:\n%@",[bkIPArray description]);
[bkIPArray removeAllObjects];
NSLog(@"deleted:\n");
- NSLog(@"Coping:\n%s",[[workIPArray description] cString]);
+ NSLog(@"Coping:\n%@",[workIPArray description]);
[bkIPArray setArray:workIPArray];
- NSLog(@"Copied:\n%s",[[workIPArray description] cString]);
- NSLog(@"Releasing:\n%s",[[workIPArray description] cString]);
+ NSLog(@"Copied:\n%@",[workIPArray description]);
+ NSLog(@"Releasing:\n%@",[workIPArray description]);
[workIPArray release];
- NSLog(@"Released:\n%s",[[workIPArray description] cString]);
+ NSLog(@"Released:\n%@",[workIPArray description]);
}
// -------------------------------------------------------------------------------
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>ActivePerspectiveName</key>
+ <string>Project</string>
+ <key>AllowedModules</key>
+ <array>
+ <dict>
+ <key>BundleLoadPath</key>
+ <string></string>
+ <key>MaxInstances</key>
+ <string>n</string>
+ <key>Module</key>
+ <string>PBXSmartGroupTreeModule</string>
+ <key>Name</key>
+ <string>Groups and Files Outline View</string>
+ </dict>
+ <dict>
+ <key>BundleLoadPath</key>
+ <string></string>
+ <key>MaxInstances</key>
+ <string>n</string>
+ <key>Module</key>
+ <string>PBXNavigatorGroup</string>
+ <key>Name</key>
+ <string>Editor</string>
+ </dict>
+ <dict>
+ <key>BundleLoadPath</key>
+ <string></string>
+ <key>MaxInstances</key>
+ <string>n</string>
+ <key>Module</key>
+ <string>XCTaskListModule</string>
+ <key>Name</key>
+ <string>Task List</string>
+ </dict>
+ <dict>
+ <key>BundleLoadPath</key>
+ <string></string>
+ <key>MaxInstances</key>
+ <string>n</string>
+ <key>Module</key>
+ <string>XCDetailModule</string>
+ <key>Name</key>
+ <string>File and Smart Group Detail Viewer</string>
+ </dict>
+ <dict>
+ <key>BundleLoadPath</key>
+ <string></string>
+ <key>MaxInstances</key>
+ <string>1</string>
+ <key>Module</key>
+ <string>PBXBuildResultsModule</string>
+ <key>Name</key>
+ <string>Detailed Build Results Viewer</string>
+ </dict>
+ <dict>
+ <key>BundleLoadPath</key>
+ <string></string>
+ <key>MaxInstances</key>
+ <string>1</string>
+ <key>Module</key>
+ <string>PBXProjectFindModule</string>
+ <key>Name</key>
+ <string>Project Batch Find Tool</string>
+ </dict>
+ <dict>
+ <key>BundleLoadPath</key>
+ <string></string>
+ <key>MaxInstances</key>
+ <string>n</string>
+ <key>Module</key>
+ <string>XCProjectFormatConflictsModule</string>
+ <key>Name</key>
+ <string>Project Format Conflicts List</string>
+ </dict>
+ <dict>
+ <key>BundleLoadPath</key>
+ <string></string>
+ <key>MaxInstances</key>
+ <string>n</string>
+ <key>Module</key>
+ <string>PBXBookmarksModule</string>
+ <key>Name</key>
+ <string>Bookmarks Tool</string>
+ </dict>
+ <dict>
+ <key>BundleLoadPath</key>
+ <string></string>
+ <key>MaxInstances</key>
+ <string>n</string>
+ <key>Module</key>
+ <string>PBXClassBrowserModule</string>
+ <key>Name</key>
+ <string>Class Browser</string>
+ </dict>
+ <dict>
+ <key>BundleLoadPath</key>
+ <string></string>
+ <key>MaxInstances</key>
+ <string>n</string>
+ <key>Module</key>
+ <string>PBXCVSModule</string>
+ <key>Name</key>
+ <string>Source Code Control Tool</string>
+ </dict>
+ <dict>
+ <key>BundleLoadPath</key>
+ <string></string>
+ <key>MaxInstances</key>
+ <string>n</string>
+ <key>Module</key>
+ <string>PBXDebugBreakpointsModule</string>
+ <key>Name</key>
+ <string>Debug Breakpoints Tool</string>
+ </dict>
+ <dict>
+ <key>BundleLoadPath</key>
+ <string></string>
+ <key>MaxInstances</key>
+ <string>n</string>
+ <key>Module</key>
+ <string>XCDockableInspector</string>
+ <key>Name</key>
+ <string>Inspector</string>
+ </dict>
+ <dict>
+ <key>BundleLoadPath</key>
+ <string></string>
+ <key>MaxInstances</key>
+ <string>n</string>
+ <key>Module</key>
+ <string>PBXOpenQuicklyModule</string>
+ <key>Name</key>
+ <string>Open Quickly Tool</string>
+ </dict>
+ <dict>
+ <key>BundleLoadPath</key>
+ <string></string>
+ <key>MaxInstances</key>
+ <string>1</string>
+ <key>Module</key>
+ <string>PBXDebugSessionModule</string>
+ <key>Name</key>
+ <string>Debugger</string>
+ </dict>
+ <dict>
+ <key>BundleLoadPath</key>
+ <string></string>
+ <key>MaxInstances</key>
+ <string>1</string>
+ <key>Module</key>
+ <string>PBXDebugCLIModule</string>
+ <key>Name</key>
+ <string>Debug Console</string>
+ </dict>
+ <dict>
+ <key>BundleLoadPath</key>
+ <string></string>
+ <key>MaxInstances</key>
+ <string>n</string>
+ <key>Module</key>
+ <string>XCSnapshotModule</string>
+ <key>Name</key>
+ <string>Snapshots Tool</string>
+ </dict>
+ </array>
+ <key>BundlePath</key>
+ <string>/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources</string>
+ <key>Description</key>
+ <string>AIODescriptionKey</string>
+ <key>DockingSystemVisible</key>
+ <false/>
+ <key>Extension</key>
+ <string>perspectivev3</string>
+ <key>FavBarConfig</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>320DBA1B10270A3300A18A89</string>
+ <key>XCBarModuleItemNames</key>
+ <dict/>
+ <key>XCBarModuleItems</key>
+ <array/>
+ </dict>
+ <key>FirstTimeWindowDisplayed</key>
+ <false/>
+ <key>Identifier</key>
+ <string>com.apple.perspectives.project.defaultV3</string>
+ <key>MajorVersion</key>
+ <integer>34</integer>
+ <key>MinorVersion</key>
+ <integer>0</integer>
+ <key>Name</key>
+ <string>All-In-One</string>
+ <key>Notifications</key>
+ <array/>
+ <key>OpenEditors</key>
+ <array/>
+ <key>PerspectiveWidths</key>
+ <array>
+ <integer>-1</integer>
+ <integer>-1</integer>
+ </array>
+ <key>Perspectives</key>
+ <array>
+ <dict>
+ <key>ChosenToolbarItems</key>
+ <array>
+ <string>XCToolbarPerspectiveControl</string>
+ <string>NSToolbarSeparatorItem</string>
+ <string>active-combo-popup</string>
+ <string>action</string>
+ <string>NSToolbarFlexibleSpaceItem</string>
+ <string>clean-target</string>
+ <string>clean</string>
+ <string>buildOrClean</string>
+ <string>build-and-go</string>
+ <string>go-debug</string>
+ <string>com.apple.ide.PBXToolbarStopButton</string>
+ <string>servicesModuledebug</string>
+ <string>debugger-enable-breakpoints</string>
+ <string>NSToolbarFlexibleSpaceItem</string>
+ <string>researchAssistant</string>
+ <string>get-info</string>
+ <string>com.apple.pbx.toolbar.searchfield</string>
+ </array>
+ <key>ControllerClassBaseName</key>
+ <string></string>
+ <key>IconName</key>
+ <string>WindowOfProject</string>
+ <key>Identifier</key>
+ <string>perspective.project</string>
+ <key>IsVertical</key>
+ <false/>
+ <key>Layout</key>
+ <array>
+ <dict>
+ <key>BecomeActive</key>
+ <true/>
+ <key>ContentConfiguration</key>
+ <dict>
+ <key>PBXBottomSmartGroupGIDs</key>
+ <array>
+ <string>1C37FBAC04509CD000000102</string>
+ <string>1C37FAAC04509CD000000102</string>
+ <string>1C08E77C0454961000C914BD</string>
+ <string>1C37FABC05509CD000000102</string>
+ <string>1C37FABC05539CD112110102</string>
+ <string>E2644B35053B69B200211256</string>
+ <string>1C37FABC04509CD000100104</string>
+ <string>1CC0EA4004350EF90044410B</string>
+ <string>1CC0EA4004350EF90041110B</string>
+ <string>1C77FABC04509CD000000102</string>
+ </array>
+ <key>PBXProjectModuleGUID</key>
+ <string>1CA23ED40692098700951B8B</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>Files</string>
+ <key>PBXProjectStructureProvided</key>
+ <string>yes</string>
+ <key>PBXSmartGroupTreeModuleColumnData</key>
+ <dict>
+ <key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
+ <array>
+ <real>231</real>
+ </array>
+ <key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
+ <array>
+ <string>MainColumn</string>
+ </array>
+ </dict>
+ <key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key>
+ <dict>
+ <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>
+ <array>
+ <string>089C166AFE841209C02AAC07</string>
+ <string>08FB77AFFE84173DC02AAC07</string>
+ <string>3276591010204DB4004CA418</string>
+ <string>19C28FB8FE9D52D311CA2CBB</string>
+ </array>
+ <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
+ <array>
+ <array>
+ <integer>27</integer>
+ <integer>26</integer>
+ <integer>0</integer>
+ </array>
+ </array>
+ <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
+ <string>{{0, 0}, {231, 1090}}</string>
+ </dict>
+ <key>PBXTopSmartGroupGIDs</key>
+ <array/>
+ <key>XCIncludePerspectivesSwitch</key>
+ <false/>
+ </dict>
+ <key>GeometryConfiguration</key>
+ <dict>
+ <key>Frame</key>
+ <string>{{0, 0}, {248, 1108}}</string>
+ <key>GroupTreeTableConfiguration</key>
+ <array>
+ <string>MainColumn</string>
+ <real>231</real>
+ </array>
+ <key>RubberWindowFrame</key>
+ <string>-1920 -126 1018 1149 -1920 -176 1920 1200 </string>
+ </dict>
+ <key>Module</key>
+ <string>PBXSmartGroupTreeModule</string>
+ <key>Proportion</key>
+ <string>248pt</string>
+ </dict>
+ <dict>
+ <key>Dock</key>
+ <array>
+ <dict>
+ <key>ContentConfiguration</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>320DBA1610270A3300A18A89</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>AFSBackgrounderDelegate.m</string>
+ <key>PBXSplitModuleInNavigatorKey</key>
+ <dict>
+ <key>Split0</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>320DBA1710270A3300A18A89</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>AFSBackgrounderDelegate.m</string>
+ <key>_historyCapacity</key>
+ <integer>0</integer>
+ <key>bookmark</key>
+ <string>320DBACD10272E1000A18A89</string>
+ <key>history</key>
+ <array>
+ <string>320DBA3E102725AA00A18A89</string>
+ <string>320DBAAD10272D2100A18A89</string>
+ <string>320DBACC10272E1000A18A89</string>
+ </array>
+ <key>prevStack</key>
+ <array>
+ <string>320DBA40102725AA00A18A89</string>
+ <string>320DBAAF10272D2100A18A89</string>
+ </array>
+ </dict>
+ <key>SplitCount</key>
+ <string>1</string>
+ </dict>
+ <key>StatusBarVisibility</key>
+ <true/>
+ <key>XCSharingToken</key>
+ <string>com.apple.Xcode.CommonNavigatorGroupSharingToken</string>
+ </dict>
+ <key>GeometryConfiguration</key>
+ <dict>
+ <key>Frame</key>
+ <string>{{0, 0}, {765, 1103}}</string>
+ <key>RubberWindowFrame</key>
+ <string>-1920 -126 1018 1149 -1920 -176 1920 1200 </string>
+ </dict>
+ <key>Module</key>
+ <string>PBXNavigatorGroup</string>
+ <key>Proportion</key>
+ <string>1103pt</string>
+ </dict>
+ <dict>
+ <key>Proportion</key>
+ <string>0pt</string>
+ <key>Tabs</key>
+ <array>
+ <dict>
+ <key>ContentConfiguration</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>1CA23EDF0692099D00951B8B</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>Detail</string>
+ </dict>
+ <key>GeometryConfiguration</key>
+ <dict>
+ <key>Frame</key>
+ <string>{{10, 27}, {765, -27}}</string>
+ <key>RubberWindowFrame</key>
+ <string>-1920 -126 1018 1149 -1920 -176 1920 1200 </string>
+ </dict>
+ <key>Module</key>
+ <string>XCDetailModule</string>
+ </dict>
+ <dict>
+ <key>ContentConfiguration</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>1CA23EE00692099D00951B8B</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>Project Find</string>
+ </dict>
+ <key>GeometryConfiguration</key>
+ <dict>
+ <key>Frame</key>
+ <string>{{10, 31}, {603, 297}}</string>
+ </dict>
+ <key>Module</key>
+ <string>PBXProjectFindModule</string>
+ </dict>
+ <dict>
+ <key>ContentConfiguration</key>
+ <dict>
+ <key>PBXCVSModuleFilterTypeKey</key>
+ <integer>1032</integer>
+ <key>PBXProjectModuleGUID</key>
+ <string>1CA23EE10692099D00951B8B</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>SCM Results</string>
+ </dict>
+ <key>GeometryConfiguration</key>
+ <dict>
+ <key>Frame</key>
+ <string>{{10, 31}, {603, 297}}</string>
+ </dict>
+ <key>Module</key>
+ <string>PBXCVSModule</string>
+ </dict>
+ <dict>
+ <key>ContentConfiguration</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>XCMainBuildResultsModuleGUID</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>Build</string>
+ <key>XCBuildResultsTrigger_Collapse</key>
+ <integer>1021</integer>
+ <key>XCBuildResultsTrigger_Open</key>
+ <integer>1011</integer>
+ </dict>
+ <key>GeometryConfiguration</key>
+ <dict>
+ <key>Frame</key>
+ <string>{{10, 31}, {603, 297}}</string>
+ </dict>
+ <key>Module</key>
+ <string>PBXBuildResultsModule</string>
+ </dict>
+ </array>
+ </dict>
+ </array>
+ <key>Proportion</key>
+ <string>765pt</string>
+ </dict>
+ </array>
+ <key>Name</key>
+ <string>Project</string>
+ <key>ServiceClasses</key>
+ <array>
+ <string>XCModuleDock</string>
+ <string>PBXSmartGroupTreeModule</string>
+ <string>XCModuleDock</string>
+ <string>PBXNavigatorGroup</string>
+ <string>XCDockableTabModule</string>
+ <string>XCDetailModule</string>
+ <string>PBXProjectFindModule</string>
+ <string>PBXCVSModule</string>
+ <string>PBXBuildResultsModule</string>
+ </array>
+ <key>TableOfContents</key>
+ <array>
+ <string>320DBAB110272D2100A18A89</string>
+ <string>1CA23ED40692098700951B8B</string>
+ <string>320DBAB210272D2100A18A89</string>
+ <string>320DBA1610270A3300A18A89</string>
+ <string>320DBAB310272D2100A18A89</string>
+ <string>1CA23EDF0692099D00951B8B</string>
+ <string>1CA23EE00692099D00951B8B</string>
+ <string>1CA23EE10692099D00951B8B</string>
+ <string>XCMainBuildResultsModuleGUID</string>
+ </array>
+ <key>ToolbarConfiguration</key>
+ <string>xcode.toolbar.config.defaultV3</string>
+ </dict>
+ <dict>
+ <key>ChosenToolbarItems</key>
+ <array>
+ <string>XCToolbarPerspectiveControl</string>
+ <string>NSToolbarSeparatorItem</string>
+ <string>active-combo-popup</string>
+ <string>NSToolbarFlexibleSpaceItem</string>
+ <string>build-and-go</string>
+ <string>com.apple.ide.PBXToolbarStopButton</string>
+ <string>debugger-restart-executable</string>
+ <string>debugger-pause</string>
+ <string>debugger-step-over</string>
+ <string>debugger-step-into</string>
+ <string>debugger-step-out</string>
+ <string>debugger-enable-breakpoints</string>
+ <string>NSToolbarFlexibleSpaceItem</string>
+ <string>com.apple.ide.XCBreakpointsToolbarItem</string>
+ <string>clear-log</string>
+ </array>
+ <key>ControllerClassBaseName</key>
+ <string>PBXDebugSessionModule</string>
+ <key>IconName</key>
+ <string>DebugTabIcon</string>
+ <key>Identifier</key>
+ <string>perspective.debug</string>
+ <key>IsVertical</key>
+ <integer>1</integer>
+ <key>Layout</key>
+ <array>
+ <dict>
+ <key>ContentConfiguration</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>1CCC7628064C1048000F2A68</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>Debugger Console</string>
+ </dict>
+ <key>GeometryConfiguration</key>
+ <dict>
+ <key>Frame</key>
+ <string>{{0, 0}, {810, 0}}</string>
+ </dict>
+ <key>Module</key>
+ <string>PBXDebugCLIModule</string>
+ <key>Proportion</key>
+ <string>0%</string>
+ </dict>
+ <dict>
+ <key>ContentConfiguration</key>
+ <dict>
+ <key>Debugger</key>
+ <dict>
+ <key>HorizontalSplitView</key>
+ <dict>
+ <key>_collapsingFrameDimension</key>
+ <real>0.0</real>
+ <key>_indexOfCollapsedView</key>
+ <integer>0</integer>
+ <key>_percentageOfCollapsedView</key>
+ <real>0.0</real>
+ <key>isCollapsed</key>
+ <string>yes</string>
+ <key>sizes</key>
+ <array>
+ <string>{{0, 0}, {395, 213}}</string>
+ <string>{{395, 0}, {415, 213}}</string>
+ </array>
+ </dict>
+ <key>VerticalSplitView</key>
+ <dict>
+ <key>_collapsingFrameDimension</key>
+ <real>0.0</real>
+ <key>_indexOfCollapsedView</key>
+ <integer>0</integer>
+ <key>_percentageOfCollapsedView</key>
+ <real>0.0</real>
+ <key>isCollapsed</key>
+ <string>yes</string>
+ <key>sizes</key>
+ <array>
+ <string>{{0, 0}, {810, 213}}</string>
+ <string>{{0, 213}, {810, 225}}</string>
+ </array>
+ </dict>
+ </dict>
+ <key>LauncherConfigVersion</key>
+ <string>8</string>
+ <key>PBXProjectModuleGUID</key>
+ <string>1CCC7629064C1048000F2A68</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>Debug</string>
+ </dict>
+ <key>GeometryConfiguration</key>
+ <dict>
+ <key>DebugConsoleDrawerSize</key>
+ <string>{100, 120}</string>
+ <key>DebugConsoleVisible</key>
+ <string>None</string>
+ <key>DebugConsoleWindowFrame</key>
+ <string>{{200, 200}, {500, 300}}</string>
+ <key>DebugSTDIOWindowFrame</key>
+ <string>{{200, 200}, {500, 300}}</string>
+ <key>Frame</key>
+ <string>{{0, 7}, {810, 438}}</string>
+ </dict>
+ <key>Module</key>
+ <string>PBXDebugSessionModule</string>
+ <key>Proportion</key>
+ <string>443pt</string>
+ </dict>
+ </array>
+ <key>Name</key>
+ <string>Debug</string>
+ <key>ServiceClasses</key>
+ <array>
+ <string>XCModuleDock</string>
+ <string>XCModuleDock</string>
+ <string>PBXDebugCLIModule</string>
+ <string>PBXDebugSessionModule</string>
+ <string>XCConsole</string>
+ </array>
+ <key>TableOfContents</key>
+ <array>
+ <string>1CC8E6A5069209BD00BB180A</string>
+ <string>1CC8E6A6069209BD00BB180A</string>
+ <string>1CCC7628064C1048000F2A68</string>
+ <string>1CCC7629064C1048000F2A68</string>
+ <string>1CC8E6A7069209BD00BB180A</string>
+ </array>
+ <key>ToolbarConfiguration</key>
+ <string>xcode.toolbar.config.debugV3</string>
+ </dict>
+ </array>
+ <key>PerspectivesBarVisible</key>
+ <true/>
+ <key>ShelfIsVisible</key>
+ <false/>
+ <key>SourceDescription</key>
+ <string>file at '/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources/XCPerspectivesSpecification.xcperspec'</string>
+ <key>StatusbarIsVisible</key>
+ <true/>
+ <key>TimeStamp</key>
+ <real>0.0</real>
+ <key>ToolbarDisplayMode</key>
+ <integer>1</integer>
+ <key>ToolbarIsVisible</key>
+ <true/>
+ <key>ToolbarSizeMode</key>
+ <integer>2</integer>
+ <key>Type</key>
+ <string>Perspectives</string>
+ <key>UpdateMessage</key>
+ <string></string>
+ <key>WindowJustification</key>
+ <integer>5</integer>
+ <key>WindowOrderList</key>
+ <array>
+ <string>/Volumes/DeepData/Sorgenti/gitrepo/openafs/src/platform/DARWIN/AFSPreference/OpenAFS.xcodeproj</string>
+ </array>
+ <key>WindowString</key>
+ <string>-1920 -126 1018 1149 -1920 -176 1920 1200 </string>
+ <key>WindowToolsV3</key>
+ <array>
+ <dict>
+ <key>Identifier</key>
+ <string>windowTool.debugger</string>
+ <key>Layout</key>
+ <array>
+ <dict>
+ <key>Dock</key>
+ <array>
+ <dict>
+ <key>ContentConfiguration</key>
+ <dict>
+ <key>Debugger</key>
+ <dict>
+ <key>HorizontalSplitView</key>
+ <dict>
+ <key>_collapsingFrameDimension</key>
+ <real>0.0</real>
+ <key>_indexOfCollapsedView</key>
+ <integer>0</integer>
+ <key>_percentageOfCollapsedView</key>
+ <real>0.0</real>
+ <key>isCollapsed</key>
+ <string>yes</string>
+ <key>sizes</key>
+ <array>
+ <string>{{0, 0}, {317, 164}}</string>
+ <string>{{317, 0}, {377, 164}}</string>
+ </array>
+ </dict>
+ <key>VerticalSplitView</key>
+ <dict>
+ <key>_collapsingFrameDimension</key>
+ <real>0.0</real>
+ <key>_indexOfCollapsedView</key>
+ <integer>0</integer>
+ <key>_percentageOfCollapsedView</key>
+ <real>0.0</real>
+ <key>isCollapsed</key>
+ <string>yes</string>
+ <key>sizes</key>
+ <array>
+ <string>{{0, 0}, {694, 164}}</string>
+ <string>{{0, 164}, {694, 216}}</string>
+ </array>
+ </dict>
+ </dict>
+ <key>LauncherConfigVersion</key>
+ <string>8</string>
+ <key>PBXProjectModuleGUID</key>
+ <string>1C162984064C10D400B95A72</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>Debug - GLUTExamples (Underwater)</string>
+ </dict>
+ <key>GeometryConfiguration</key>
+ <dict>
+ <key>DebugConsoleDrawerSize</key>
+ <string>{100, 120}</string>
+ <key>DebugConsoleVisible</key>
+ <string>None</string>
+ <key>DebugConsoleWindowFrame</key>
+ <string>{{200, 200}, {500, 300}}</string>
+ <key>DebugSTDIOWindowFrame</key>
+ <string>{{200, 200}, {500, 300}}</string>
+ <key>Frame</key>
+ <string>{{0, 0}, {694, 380}}</string>
+ <key>RubberWindowFrame</key>
+ <string>321 238 694 422 0 0 1440 878 </string>
+ </dict>
+ <key>Module</key>
+ <string>PBXDebugSessionModule</string>
+ <key>Proportion</key>
+ <string>100%</string>
+ </dict>
+ </array>
+ <key>Proportion</key>
+ <string>100%</string>
+ </dict>
+ </array>
+ <key>Name</key>
+ <string>Debugger</string>
+ <key>ServiceClasses</key>
+ <array>
+ <string>PBXDebugSessionModule</string>
+ </array>
+ <key>StatusbarIsVisible</key>
+ <integer>1</integer>
+ <key>TableOfContents</key>
+ <array>
+ <string>1CD10A99069EF8BA00B06720</string>
+ <string>1C0AD2AB069F1E9B00FABCE6</string>
+ <string>1C162984064C10D400B95A72</string>
+ <string>1C0AD2AC069F1E9B00FABCE6</string>
+ </array>
+ <key>ToolbarConfiguration</key>
+ <string>xcode.toolbar.config.debugV3</string>
+ <key>WindowString</key>
+ <string>321 238 694 422 0 0 1440 878 </string>
+ <key>WindowToolGUID</key>
+ <string>1CD10A99069EF8BA00B06720</string>
+ <key>WindowToolIsVisible</key>
+ <integer>0</integer>
+ </dict>
+ <dict>
+ <key>Identifier</key>
+ <string>windowTool.build</string>
+ <key>Layout</key>
+ <array>
+ <dict>
+ <key>Dock</key>
+ <array>
+ <dict>
+ <key>ContentConfiguration</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>1CD0528F0623707200166675</string>
+ <key>PBXProjectModuleLabel</key>
+ <string><No Editor></string>
+ <key>PBXSplitModuleInNavigatorKey</key>
+ <dict>
+ <key>Split0</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>1CD052900623707200166675</string>
+ </dict>
+ <key>SplitCount</key>
+ <string>1</string>
+ </dict>
+ <key>StatusBarVisibility</key>
+ <integer>1</integer>
+ </dict>
+ <key>GeometryConfiguration</key>
+ <dict>
+ <key>Frame</key>
+ <string>{{0, 0}, {500, 215}}</string>
+ <key>RubberWindowFrame</key>
+ <string>192 257 500 500 0 0 1280 1002 </string>
+ </dict>
+ <key>Module</key>
+ <string>PBXNavigatorGroup</string>
+ <key>Proportion</key>
+ <string>218pt</string>
+ </dict>
+ <dict>
+ <key>BecomeActive</key>
+ <integer>1</integer>
+ <key>ContentConfiguration</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>XCMainBuildResultsModuleGUID</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>Build</string>
+ </dict>
+ <key>GeometryConfiguration</key>
+ <dict>
+ <key>Frame</key>
+ <string>{{0, 222}, {500, 236}}</string>
+ <key>RubberWindowFrame</key>
+ <string>192 257 500 500 0 0 1280 1002 </string>
+ </dict>
+ <key>Module</key>
+ <string>PBXBuildResultsModule</string>
+ <key>Proportion</key>
+ <string>236pt</string>
+ </dict>
+ </array>
+ <key>Proportion</key>
+ <string>458pt</string>
+ </dict>
+ </array>
+ <key>Name</key>
+ <string>Build Results</string>
+ <key>ServiceClasses</key>
+ <array>
+ <string>PBXBuildResultsModule</string>
+ </array>
+ <key>StatusbarIsVisible</key>
+ <integer>1</integer>
+ <key>TableOfContents</key>
+ <array>
+ <string>1C78EAA5065D492600B07095</string>
+ <string>1C78EAA6065D492600B07095</string>
+ <string>1CD0528F0623707200166675</string>
+ <string>XCMainBuildResultsModuleGUID</string>
+ </array>
+ <key>ToolbarConfiguration</key>
+ <string>xcode.toolbar.config.buildV3</string>
+ <key>WindowString</key>
+ <string>192 257 500 500 0 0 1280 1002 </string>
+ </dict>
+ <dict>
+ <key>Identifier</key>
+ <string>windowTool.find</string>
+ <key>Layout</key>
+ <array>
+ <dict>
+ <key>Dock</key>
+ <array>
+ <dict>
+ <key>Dock</key>
+ <array>
+ <dict>
+ <key>ContentConfiguration</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>1CDD528C0622207200134675</string>
+ <key>PBXProjectModuleLabel</key>
+ <string><No Editor></string>
+ <key>PBXSplitModuleInNavigatorKey</key>
+ <dict>
+ <key>Split0</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>1CD0528D0623707200166675</string>
+ </dict>
+ <key>SplitCount</key>
+ <string>1</string>
+ </dict>
+ <key>StatusBarVisibility</key>
+ <integer>1</integer>
+ </dict>
+ <key>GeometryConfiguration</key>
+ <dict>
+ <key>Frame</key>
+ <string>{{0, 0}, {781, 167}}</string>
+ <key>RubberWindowFrame</key>
+ <string>62 385 781 470 0 0 1440 878 </string>
+ </dict>
+ <key>Module</key>
+ <string>PBXNavigatorGroup</string>
+ <key>Proportion</key>
+ <string>781pt</string>
+ </dict>
+ </array>
+ <key>Proportion</key>
+ <string>50%</string>
+ </dict>
+ <dict>
+ <key>BecomeActive</key>
+ <integer>1</integer>
+ <key>ContentConfiguration</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>1CD0528E0623707200166675</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>Project Find</string>
+ </dict>
+ <key>GeometryConfiguration</key>
+ <dict>
+ <key>Frame</key>
+ <string>{{8, 0}, {773, 254}}</string>
+ <key>RubberWindowFrame</key>
+ <string>62 385 781 470 0 0 1440 878 </string>
+ </dict>
+ <key>Module</key>
+ <string>PBXProjectFindModule</string>
+ <key>Proportion</key>
+ <string>50%</string>
+ </dict>
+ </array>
+ <key>Proportion</key>
+ <string>428pt</string>
+ </dict>
+ </array>
+ <key>Name</key>
+ <string>Project Find</string>
+ <key>ServiceClasses</key>
+ <array>
+ <string>PBXProjectFindModule</string>
+ </array>
+ <key>StatusbarIsVisible</key>
+ <integer>1</integer>
+ <key>TableOfContents</key>
+ <array>
+ <string>1C530D57069F1CE1000CFCEE</string>
+ <string>1C530D58069F1CE1000CFCEE</string>
+ <string>1C530D59069F1CE1000CFCEE</string>
+ <string>1CDD528C0622207200134675</string>
+ <string>1C530D5A069F1CE1000CFCEE</string>
+ <string>1CE0B1FE06471DED0097A5F4</string>
+ <string>1CD0528E0623707200166675</string>
+ </array>
+ <key>WindowString</key>
+ <string>62 385 781 470 0 0 1440 878 </string>
+ <key>WindowToolGUID</key>
+ <string>1C530D57069F1CE1000CFCEE</string>
+ <key>WindowToolIsVisible</key>
+ <integer>0</integer>
+ </dict>
+ <dict>
+ <key>Identifier</key>
+ <string>windowTool.snapshots</string>
+ <key>Layout</key>
+ <array>
+ <dict>
+ <key>Dock</key>
+ <array>
+ <dict>
+ <key>Module</key>
+ <string>XCSnapshotModule</string>
+ <key>Proportion</key>
+ <string>100%</string>
+ </dict>
+ </array>
+ <key>Proportion</key>
+ <string>100%</string>
+ </dict>
+ </array>
+ <key>Name</key>
+ <string>Snapshots</string>
+ <key>ServiceClasses</key>
+ <array>
+ <string>XCSnapshotModule</string>
+ </array>
+ <key>StatusbarIsVisible</key>
+ <string>Yes</string>
+ <key>ToolbarConfiguration</key>
+ <string>xcode.toolbar.config.snapshots</string>
+ <key>WindowString</key>
+ <string>315 824 300 550 0 0 1440 878 </string>
+ <key>WindowToolIsVisible</key>
+ <string>Yes</string>
+ </dict>
+ <dict>
+ <key>Identifier</key>
+ <string>windowTool.debuggerConsole</string>
+ <key>Layout</key>
+ <array>
+ <dict>
+ <key>Dock</key>
+ <array>
+ <dict>
+ <key>BecomeActive</key>
+ <integer>1</integer>
+ <key>ContentConfiguration</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>1C78EAAC065D492600B07095</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>Debugger Console</string>
+ </dict>
+ <key>GeometryConfiguration</key>
+ <dict>
+ <key>Frame</key>
+ <string>{{0, 0}, {700, 358}}</string>
+ <key>RubberWindowFrame</key>
+ <string>149 87 700 400 0 0 1440 878 </string>
+ </dict>
+ <key>Module</key>
+ <string>PBXDebugCLIModule</string>
+ <key>Proportion</key>
+ <string>358pt</string>
+ </dict>
+ </array>
+ <key>Proportion</key>
+ <string>358pt</string>
+ </dict>
+ </array>
+ <key>Name</key>
+ <string>Debugger Console</string>
+ <key>ServiceClasses</key>
+ <array>
+ <string>PBXDebugCLIModule</string>
+ </array>
+ <key>StatusbarIsVisible</key>
+ <integer>1</integer>
+ <key>TableOfContents</key>
+ <array>
+ <string>1C530D5B069F1CE1000CFCEE</string>
+ <string>1C530D5C069F1CE1000CFCEE</string>
+ <string>1C78EAAC065D492600B07095</string>
+ </array>
+ <key>ToolbarConfiguration</key>
+ <string>xcode.toolbar.config.consoleV3</string>
+ <key>WindowString</key>
+ <string>149 87 440 400 0 0 1440 878 </string>
+ <key>WindowToolGUID</key>
+ <string>1C530D5B069F1CE1000CFCEE</string>
+ <key>WindowToolIsVisible</key>
+ <integer>0</integer>
+ </dict>
+ <dict>
+ <key>Identifier</key>
+ <string>windowTool.scm</string>
+ <key>Layout</key>
+ <array>
+ <dict>
+ <key>Dock</key>
+ <array>
+ <dict>
+ <key>ContentConfiguration</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>1C78EAB2065D492600B07095</string>
+ <key>PBXProjectModuleLabel</key>
+ <string><No Editor></string>
+ <key>PBXSplitModuleInNavigatorKey</key>
+ <dict>
+ <key>Split0</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>1C78EAB3065D492600B07095</string>
+ </dict>
+ <key>SplitCount</key>
+ <string>1</string>
+ </dict>
+ <key>StatusBarVisibility</key>
+ <integer>1</integer>
+ </dict>
+ <key>GeometryConfiguration</key>
+ <dict>
+ <key>Frame</key>
+ <string>{{0, 0}, {452, 0}}</string>
+ <key>RubberWindowFrame</key>
+ <string>743 379 452 308 0 0 1280 1002 </string>
+ </dict>
+ <key>Module</key>
+ <string>PBXNavigatorGroup</string>
+ <key>Proportion</key>
+ <string>0pt</string>
+ </dict>
+ <dict>
+ <key>BecomeActive</key>
+ <integer>1</integer>
+ <key>ContentConfiguration</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>1CD052920623707200166675</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>SCM</string>
+ </dict>
+ <key>GeometryConfiguration</key>
+ <dict>
+ <key>ConsoleFrame</key>
+ <string>{{0, 259}, {452, 0}}</string>
+ <key>Frame</key>
+ <string>{{0, 7}, {452, 259}}</string>
+ <key>RubberWindowFrame</key>
+ <string>743 379 452 308 0 0 1280 1002 </string>
+ <key>TableConfiguration</key>
+ <array>
+ &