Commit 1991ee23 authored by David Smith's avatar David Smith Committed by david

Part 2 of N

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@7659 b35dd754-fafc-0310-a699-88a17e54d16e
parent b832bb0a
B/* Localized versions of Info.plist keys */ B/* Localized versions of Info.plist keys */
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<key>CFBundleDevelopmentRegion</key> <key>CFBundleDevelopmentRegion</key>
<string>English</string> <string>English</string>
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
<string>Wildfire</string> <string>Openfire</string>
<key>CFBundleIconFile</key> <key>CFBundleIconFile</key>
<string></string> <string></string>
<key>CFBundleIdentifier</key> <key>CFBundleIdentifier</key>
...@@ -21,12 +21,12 @@ ...@@ -21,12 +21,12 @@
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>1.0</string> <string>1.0</string>
<key>NSMainNibFile</key> <key>NSMainNibFile</key>
<string>wildfirePrefPane</string> <string>openfirePrefPane</string>
<key>NSPrefPaneIconFile</key> <key>NSPrefPaneIconFile</key>
<string>wildfirePrefPaneLogo.tiff</string> <string>openfirePrefPaneLogo.tiff</string>
<key>NSPrefPaneIconLabel</key> <key>NSPrefPaneIconLabel</key>
<string>Wildfire</string> <string>Openfire</string>
<key>NSPrincipalClass</key> <key>NSPrincipalClass</key>
<string>wildfirePrefPane</string> <string>openfirePrefPane</string>
</dict> </dict>
</plist> </plist>
...@@ -116,7 +116,7 @@ static void toggleOpenfire() ...@@ -116,7 +116,7 @@ static void toggleOpenfire()
args[1] = "unload"; args[1] = "unload";
else else
args[1] = "load"; args[1] = "load";
args[2] = "/Library/LaunchDaemons/org.jivesoftware.wildfire.plist"; args[2] = "/Library/LaunchDaemons/org.jivesoftware.openfire.plist";
args[3] = NULL; args[3] = NULL;
execv("/bin/launchctl", args); execv("/bin/launchctl", args);
......
// //
// wildfirePrefPane.h // openfirePrefPane.h
// Preference panel for Openfire // Preference panel for Openfire
// //
// Created by Daniel Henninger on 7/7/06. // Created by Daniel Henninger on 7/7/06.
...@@ -14,13 +14,13 @@ ...@@ -14,13 +14,13 @@
#include <unistd.h> #include <unistd.h>
// 'ps' command to use to check for running openfire daemon // 'ps' command to use to check for running openfire daemon
char *pscmd = "/bin/ps auxww | fgrep -v 'fgrep' | fgrep wildfire/lib/startup.jar"; char *pscmd = "/bin/ps auxww | fgrep -v 'fgrep' | fgrep openfire/lib/startup.jar";
// The path to the plist file // The path to the plist file
NSString *plistPath = @"/Library/LaunchDaemons/org.jivesoftware.wildfire.plist"; NSString *plistPath = @"/Library/LaunchDaemons/org.jivesoftware.openfire.plist";
@interface wildfirePrefPane : NSPreferencePane @interface openfirePrefPane : NSPreferencePane
{ {
IBOutlet NSButton *startButton; IBOutlet NSButton *startButton;
IBOutlet NSButton *autoStartCheckbox; IBOutlet NSButton *autoStartCheckbox;
......
// //
// wildfirePrefPane.m // openfirePrefPane.m
// Preference panel for Wildfire // Preference panel for Openfire
// //
// Created by Daniel Henninger on 7/7/06. // Created by Daniel Henninger on 7/7/06.
// Copyright (c) 2006 Jive Software. All rights reserved. // Copyright (c) 2006 Jive Software. All rights reserved.
...@@ -10,9 +10,9 @@ ...@@ -10,9 +10,9 @@
#import <Security/Security.h> #import <Security/Security.h>
#import <CoreFoundation/CoreFoundation.h> #import <CoreFoundation/CoreFoundation.h>
#import "wildfirePrefPane.h" #import "openfirePrefPane.h"
@implementation wildfirePrefPane @implementation openfirePrefPane
- (void)mainViewDidLoad - (void)mainViewDidLoad
{ {
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
nil, nil,
nil, nil,
self, self,
@"An error occured while detecting a running Wildfire process.", @"An error occured while detecting a running Openfire process.",
nil); nil);
return NO; return NO;
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
nil, nil,
nil, nil,
self, self,
@"Could not start the Wildfire server.", @"Could not start the Openfire server.",
nil); nil);
[statusTimer invalidate]; [statusTimer invalidate];
[self checkStatus]; [self checkStatus];
...@@ -148,7 +148,7 @@ ...@@ -148,7 +148,7 @@
[statusMessage setStringValue:@"Stopped"]; [statusMessage setStringValue:@"Stopped"];
[statusMessage setTextColor:[NSColor redColor]]; [statusMessage setTextColor:[NSColor redColor]];
[statusDescription setStringValue:@"The server may take a few seconds to start up."]; [statusDescription setStringValue:@"The server may take a few seconds to start up."];
[startButton setTitle:@"Start Wildfire"]; [startButton setTitle:@"Start Openfire"];
[viewAdminButton setEnabled:NO]; [viewAdminButton setEnabled:NO];
} }
else else
...@@ -156,7 +156,7 @@ ...@@ -156,7 +156,7 @@
[statusMessage setStringValue:@"Running"]; [statusMessage setStringValue:@"Running"];
[statusMessage setTextColor:[NSColor greenColor]]; [statusMessage setTextColor:[NSColor greenColor]];
[statusDescription setStringValue:@"The server may take a few seconds to stop."]; [statusDescription setStringValue:@"The server may take a few seconds to stop."];
[startButton setTitle:@"Stop Wildfire"]; [startButton setTitle:@"Stop Openfire"];
[viewAdminButton setEnabled:YES]; [viewAdminButton setEnabled:YES];
} }
BOOL isStartingAtBoot = [[[NSMutableDictionary dictionaryWithContentsOfFile:plistPath] objectForKey:@"RunAtLoad"] boolValue]; BOOL isStartingAtBoot = [[[NSMutableDictionary dictionaryWithContentsOfFile:plistPath] objectForKey:@"RunAtLoad"] boolValue];
...@@ -186,7 +186,7 @@ ...@@ -186,7 +186,7 @@
nil, nil,
nil, nil,
self, self,
@"Could not start the Wildfire server.", @"Could not start the Openfire server.",
nil); nil);
[statusTimer invalidate]; [statusTimer invalidate];
[self checkStatus]; [self checkStatus];
...@@ -215,7 +215,7 @@ ...@@ -215,7 +215,7 @@
nil, nil,
nil, nil,
self, self,
@"Could not stop the Wildfire server.", @"Could not stop the Openfire server.",
nil); nil);
[statusTimer invalidate]; [statusTimer invalidate];
[self checkStatus]; [self checkStatus];
......
...@@ -12,14 +12,14 @@ ...@@ -12,14 +12,14 @@
633BEAAD0B39EEF8003AD355 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 633BEAAC0B39EEF8003AD355 /* CoreFoundation.framework */; }; 633BEAAD0B39EEF8003AD355 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 633BEAAC0B39EEF8003AD355 /* CoreFoundation.framework */; };
6358CFF40B39F6B800BFA7DC /* HelperTool in CopyFiles */ = {isa = PBXBuildFile; fileRef = 633BEA760B39EB2B003AD355 /* HelperTool */; }; 6358CFF40B39F6B800BFA7DC /* HelperTool in CopyFiles */ = {isa = PBXBuildFile; fileRef = 633BEA760B39EB2B003AD355 /* HelperTool */; };
650096350A60403400B6046A /* jivesoftware_logo.png in Resources */ = {isa = PBXBuildFile; fileRef = 650096340A60403400B6046A /* jivesoftware_logo.png */; }; 650096350A60403400B6046A /* jivesoftware_logo.png in Resources */ = {isa = PBXBuildFile; fileRef = 650096340A60403400B6046A /* jivesoftware_logo.png */; };
65E2E73A0A5E8F2900DFFC2E /* wildfire-logo.png in Resources */ = {isa = PBXBuildFile; fileRef = 65E2E7390A5E8F2900DFFC2E /* wildfire-logo.png */; }; 65E2E73A0A5E8F2900DFFC2E /* openfire-logo.png in Resources */ = {isa = PBXBuildFile; fileRef = 65E2E7390A5E8F2900DFFC2E /* openfire-logo.png */; };
65E2E74C0A5EAE6600DFFC2E /* wildfirePrefPaneLogo.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 65E2E74B0A5EAE6600DFFC2E /* wildfirePrefPaneLogo.tiff */; }; 65E2E74C0A5EAE6600DFFC2E /* openfirePrefPaneLogo.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 65E2E74B0A5EAE6600DFFC2E /* openfirePrefPaneLogo.tiff */; };
65E2E7C90A5EF1F200DFFC2E /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 65E2E7C80A5EF1F200DFFC2E /* Security.framework */; }; 65E2E7C90A5EF1F200DFFC2E /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 65E2E7C80A5EF1F200DFFC2E /* Security.framework */; };
8D202CEA0486D31800D8A456 /* wildfirePrefPane_Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = 32DBCFA20370C41700C91783 /* wildfirePrefPane_Prefix.pch */; }; 8D202CEA0486D31800D8A456 /* openfirePrefPane_Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = 32DBCFA20370C41700C91783 /* openfirePrefPane_Prefix.pch */; };
8D202CEB0486D31800D8A456 /* wildfirePrefPane.h in Headers */ = {isa = PBXBuildFile; fileRef = F506C03C013D9D7901CA16C8 /* wildfirePrefPane.h */; }; 8D202CEB0486D31800D8A456 /* openfirePrefPane.h in Headers */ = {isa = PBXBuildFile; fileRef = F506C03C013D9D7901CA16C8 /* openfirePrefPane.h */; };
8D202CED0486D31800D8A456 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C167DFE841241C02AAC07 /* InfoPlist.strings */; }; 8D202CED0486D31800D8A456 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C167DFE841241C02AAC07 /* InfoPlist.strings */; };
8D202CEF0486D31800D8A456 /* wildfirePrefPane.nib in Resources */ = {isa = PBXBuildFile; fileRef = F506C042013D9D8C01CA16C8 /* wildfirePrefPane.nib */; }; 8D202CEF0486D31800D8A456 /* openfirePrefPane.nib in Resources */ = {isa = PBXBuildFile; fileRef = F506C042013D9D8C01CA16C8 /* openfirePrefPane.nib */; };
8D202CF10486D31800D8A456 /* wildfirePrefPane.m in Sources */ = {isa = PBXBuildFile; fileRef = F506C03D013D9D7901CA16C8 /* wildfirePrefPane.m */; }; 8D202CF10486D31800D8A456 /* openfirePrefPane.m in Sources */ = {isa = PBXBuildFile; fileRef = F506C03D013D9D7901CA16C8 /* openfirePrefPane.m */; };
8D202CF30486D31800D8A456 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7ADFEA557BF11CA2CBB /* Cocoa.framework */; }; 8D202CF30486D31800D8A456 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7ADFEA557BF11CA2CBB /* Cocoa.framework */; };
8D202CF40486D31800D8A456 /* PreferencePanes.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F506C035013D953901CA16C8 /* PreferencePanes.framework */; }; 8D202CF40486D31800D8A456 /* PreferencePanes.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F506C035013D953901CA16C8 /* PreferencePanes.framework */; };
/* End PBXBuildFile section */ /* End PBXBuildFile section */
...@@ -52,21 +52,21 @@ ...@@ -52,21 +52,21 @@
089C167EFE841241C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; }; 089C167EFE841241C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
089C167FFE841241C02AAC07 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; }; 089C167FFE841241C02AAC07 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
1058C7ADFEA557BF11CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; }; 1058C7ADFEA557BF11CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
32DBCFA20370C41700C91783 /* wildfirePrefPane_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wildfirePrefPane_Prefix.pch; sourceTree = "<group>"; }; 32DBCFA20370C41700C91783 /* openfirePrefPane_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = openfirePrefPane_Prefix.pch; sourceTree = "<group>"; };
633BEA0A0B39DF03003AD355 /* SecurityInterface.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SecurityInterface.framework; path = /System/Library/Frameworks/SecurityInterface.framework; sourceTree = "<absolute>"; }; 633BEA0A0B39DF03003AD355 /* SecurityInterface.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SecurityInterface.framework; path = /System/Library/Frameworks/SecurityInterface.framework; sourceTree = "<absolute>"; };
633BEA760B39EB2B003AD355 /* HelperTool */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = HelperTool; sourceTree = BUILT_PRODUCTS_DIR; }; 633BEA760B39EB2B003AD355 /* HelperTool */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = HelperTool; sourceTree = BUILT_PRODUCTS_DIR; };
633BEA790B39EB60003AD355 /* authTool.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = authTool.c; sourceTree = "<group>"; }; 633BEA790B39EB60003AD355 /* authTool.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = authTool.c; sourceTree = "<group>"; };
633BEAAC0B39EEF8003AD355 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; }; 633BEAAC0B39EEF8003AD355 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; };
650096340A60403400B6046A /* jivesoftware_logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = jivesoftware_logo.png; sourceTree = "<group>"; }; 650096340A60403400B6046A /* jivesoftware_logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = jivesoftware_logo.png; sourceTree = "<group>"; };
65E2E7390A5E8F2900DFFC2E /* wildfire-logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "wildfire-logo.png"; sourceTree = "<group>"; }; 65E2E7390A5E8F2900DFFC2E /* openfire-logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "openfire-logo.png"; sourceTree = "<group>"; };
65E2E74B0A5EAE6600DFFC2E /* wildfirePrefPaneLogo.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = wildfirePrefPaneLogo.tiff; sourceTree = "<group>"; }; 65E2E74B0A5EAE6600DFFC2E /* openfirePrefPaneLogo.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = openfirePrefPaneLogo.tiff; sourceTree = "<group>"; };
65E2E7C80A5EF1F200DFFC2E /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = /System/Library/Frameworks/Security.framework; sourceTree = "<absolute>"; }; 65E2E7C80A5EF1F200DFFC2E /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = /System/Library/Frameworks/Security.framework; sourceTree = "<absolute>"; };
8D202CF70486D31800D8A456 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; }; 8D202CF70486D31800D8A456 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
8D202CF80486D31800D8A456 /* Wildfire.prefPane */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Wildfire.prefPane; sourceTree = BUILT_PRODUCTS_DIR; }; 8D202CF80486D31800D8A456 /* Openfire.prefPane */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Openfire.prefPane; sourceTree = BUILT_PRODUCTS_DIR; };
F506C035013D953901CA16C8 /* PreferencePanes.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PreferencePanes.framework; path = /System/Library/Frameworks/PreferencePanes.framework; sourceTree = "<absolute>"; }; F506C035013D953901CA16C8 /* PreferencePanes.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PreferencePanes.framework; path = /System/Library/Frameworks/PreferencePanes.framework; sourceTree = "<absolute>"; };
F506C03C013D9D7901CA16C8 /* wildfirePrefPane.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wildfirePrefPane.h; sourceTree = "<group>"; }; F506C03C013D9D7901CA16C8 /* openfirePrefPane.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = openfirePrefPane.h; sourceTree = "<group>"; };
F506C03D013D9D7901CA16C8 /* wildfirePrefPane.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = wildfirePrefPane.m; sourceTree = "<group>"; }; F506C03D013D9D7901CA16C8 /* openfirePrefPane.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = openfirePrefPane.m; sourceTree = "<group>"; };
F506C043013D9D8C01CA16C8 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/wildfirePrefPane.nib; sourceTree = "<group>"; }; F506C043013D9D8C01CA16C8 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/openfirePrefPane.nib; sourceTree = "<group>"; };
/* End PBXFileReference section */ /* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */
...@@ -92,7 +92,7 @@ ...@@ -92,7 +92,7 @@
/* End PBXFrameworksBuildPhase section */ /* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */ /* Begin PBXGroup section */
089C166AFE841209C02AAC07 /* wildfirePrefPane */ = { 089C166AFE841209C02AAC07 /* openfirePrefPane */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
08FB77AFFE84173DC02AAC07 /* Classes */, 08FB77AFFE84173DC02AAC07 /* Classes */,
...@@ -101,7 +101,7 @@ ...@@ -101,7 +101,7 @@
089C1671FE841209C02AAC07 /* Frameworks and Libraries */, 089C1671FE841209C02AAC07 /* Frameworks and Libraries */,
19C28FB8FE9D52D311CA2CBB /* Products */, 19C28FB8FE9D52D311CA2CBB /* Products */,
); );
name = wildfirePrefPane; name = openfirePrefPane;
sourceTree = "<group>"; sourceTree = "<group>";
}; };
089C1671FE841209C02AAC07 /* Frameworks and Libraries */ = { 089C1671FE841209C02AAC07 /* Frameworks and Libraries */ = {
...@@ -116,11 +116,11 @@ ...@@ -116,11 +116,11 @@
089C167CFE841241C02AAC07 /* Resources */ = { 089C167CFE841241C02AAC07 /* Resources */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
65E2E74B0A5EAE6600DFFC2E /* wildfirePrefPaneLogo.tiff */, 65E2E74B0A5EAE6600DFFC2E /* openfirePrefPaneLogo.tiff */,
8D202CF70486D31800D8A456 /* Info.plist */, 8D202CF70486D31800D8A456 /* Info.plist */,
089C167DFE841241C02AAC07 /* InfoPlist.strings */, 089C167DFE841241C02AAC07 /* InfoPlist.strings */,
65E2E7380A5E8F1600DFFC2E /* Images */, 65E2E7380A5E8F1600DFFC2E /* Images */,
F506C042013D9D8C01CA16C8 /* wildfirePrefPane.nib */, F506C042013D9D8C01CA16C8 /* openfirePrefPane.nib */,
); );
name = Resources; name = Resources;
sourceTree = "<group>"; sourceTree = "<group>";
...@@ -128,8 +128,8 @@ ...@@ -128,8 +128,8 @@
08FB77AFFE84173DC02AAC07 /* Classes */ = { 08FB77AFFE84173DC02AAC07 /* Classes */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
F506C03C013D9D7901CA16C8 /* wildfirePrefPane.h */, F506C03C013D9D7901CA16C8 /* openfirePrefPane.h */,
F506C03D013D9D7901CA16C8 /* wildfirePrefPane.m */, F506C03D013D9D7901CA16C8 /* openfirePrefPane.m */,
); );
name = Classes; name = Classes;
sourceTree = "<group>"; sourceTree = "<group>";
...@@ -158,7 +158,7 @@ ...@@ -158,7 +158,7 @@
19C28FB8FE9D52D311CA2CBB /* Products */ = { 19C28FB8FE9D52D311CA2CBB /* Products */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
8D202CF80486D31800D8A456 /* Wildfire.prefPane */, 8D202CF80486D31800D8A456 /* Openfire.prefPane */,
633BEA760B39EB2B003AD355 /* HelperTool */, 633BEA760B39EB2B003AD355 /* HelperTool */,
); );
name = Products; name = Products;
...@@ -167,7 +167,7 @@ ...@@ -167,7 +167,7 @@
32DBCFA10370C40200C91783 /* Other Sources */ = { 32DBCFA10370C40200C91783 /* Other Sources */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
32DBCFA20370C41700C91783 /* wildfirePrefPane_Prefix.pch */, 32DBCFA20370C41700C91783 /* openfirePrefPane_Prefix.pch */,
633BEA790B39EB60003AD355 /* authTool.c */, 633BEA790B39EB60003AD355 /* authTool.c */,
); );
name = "Other Sources"; name = "Other Sources";
...@@ -176,7 +176,7 @@ ...@@ -176,7 +176,7 @@
65E2E7380A5E8F1600DFFC2E /* Images */ = { 65E2E7380A5E8F1600DFFC2E /* Images */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
65E2E7390A5E8F2900DFFC2E /* wildfire-logo.png */, 65E2E7390A5E8F2900DFFC2E /* openfire-logo.png */,
650096340A60403400B6046A /* jivesoftware_logo.png */, 650096340A60403400B6046A /* jivesoftware_logo.png */,
); );
name = Images; name = Images;
...@@ -189,8 +189,8 @@ ...@@ -189,8 +189,8 @@
isa = PBXHeadersBuildPhase; isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
8D202CEA0486D31800D8A456 /* wildfirePrefPane_Prefix.pch in Headers */, 8D202CEA0486D31800D8A456 /* openfirePrefPane_Prefix.pch in Headers */,
8D202CEB0486D31800D8A456 /* wildfirePrefPane.h in Headers */, 8D202CEB0486D31800D8A456 /* openfirePrefPane.h in Headers */,
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
...@@ -213,9 +213,9 @@ ...@@ -213,9 +213,9 @@
productReference = 633BEA760B39EB2B003AD355 /* HelperTool */; productReference = 633BEA760B39EB2B003AD355 /* HelperTool */;
productType = "com.apple.product-type.tool"; productType = "com.apple.product-type.tool";
}; };
8D202CE80486D31800D8A456 /* Wildfire */ = { 8D202CE80486D31800D8A456 /* Openfire */ = {
isa = PBXNativeTarget; isa = PBXNativeTarget;
buildConfigurationList = 65E2E7290A5E8C0F00DFFC2E /* Build configuration list for PBXNativeTarget "Wildfire" */; buildConfigurationList = 65E2E7290A5E8C0F00DFFC2E /* Build configuration list for PBXNativeTarget "Openfire" */;
buildPhases = ( buildPhases = (
8D202CE90486D31800D8A456 /* Headers */, 8D202CE90486D31800D8A456 /* Headers */,
8D202CEC0486D31800D8A456 /* Resources */, 8D202CEC0486D31800D8A456 /* Resources */,
...@@ -229,10 +229,10 @@ ...@@ -229,10 +229,10 @@
dependencies = ( dependencies = (
633BEA870B39ED7D003AD355 /* PBXTargetDependency */, 633BEA870B39ED7D003AD355 /* PBXTargetDependency */,
); );
name = Wildfire; name = Openfire;
productInstallPath = "$(HOME)/Library/PreferencePanes"; productInstallPath = "$(HOME)/Library/PreferencePanes";
productName = wildfirePrefPane; productName = openfirePrefPane;
productReference = 8D202CF80486D31800D8A456 /* Wildfire.prefPane */; productReference = 8D202CF80486D31800D8A456 /* Openfire.prefPane */;
productType = "com.apple.product-type.bundle"; productType = "com.apple.product-type.bundle";
}; };
/* End PBXNativeTarget section */ /* End PBXNativeTarget section */
...@@ -240,13 +240,13 @@ ...@@ -240,13 +240,13 @@
/* Begin PBXProject section */ /* Begin PBXProject section */
089C1669FE841209C02AAC07 /* Project object */ = { 089C1669FE841209C02AAC07 /* Project object */ = {
isa = PBXProject; isa = PBXProject;
buildConfigurationList = 65E2E72D0A5E8C0F00DFFC2E /* Build configuration list for PBXProject "wildfirePrefPane" */; buildConfigurationList = 65E2E72D0A5E8C0F00DFFC2E /* Build configuration list for PBXProject "openfirePrefPane" */;
hasScannedForEncodings = 1; hasScannedForEncodings = 1;
mainGroup = 089C166AFE841209C02AAC07 /* wildfirePrefPane */; mainGroup = 089C166AFE841209C02AAC07 /* openfirePrefPane */;
projectDirPath = ""; projectDirPath = "";
projectRoot = ""; projectRoot = "";
targets = ( targets = (
8D202CE80486D31800D8A456 /* Wildfire */, 8D202CE80486D31800D8A456 /* Openfire */,
633BEA750B39EB2B003AD355 /* HelperTool */, 633BEA750B39EB2B003AD355 /* HelperTool */,
); );
}; };
...@@ -258,9 +258,9 @@ ...@@ -258,9 +258,9 @@
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
8D202CED0486D31800D8A456 /* InfoPlist.strings in Resources */, 8D202CED0486D31800D8A456 /* InfoPlist.strings in Resources */,
8D202CEF0486D31800D8A456 /* wildfirePrefPane.nib in Resources */, 8D202CEF0486D31800D8A456 /* openfirePrefPane.nib in Resources */,
65E2E73A0A5E8F2900DFFC2E /* wildfire-logo.png in Resources */, 65E2E73A0A5E8F2900DFFC2E /* openfire-logo.png in Resources */,
65E2E74C0A5EAE6600DFFC2E /* wildfirePrefPaneLogo.tiff in Resources */, 65E2E74C0A5EAE6600DFFC2E /* openfirePrefPaneLogo.tiff in Resources */,
650096350A60403400B6046A /* jivesoftware_logo.png in Resources */, 650096350A60403400B6046A /* jivesoftware_logo.png in Resources */,
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
...@@ -290,7 +290,7 @@ ...@@ -290,7 +290,7 @@
isa = PBXSourcesBuildPhase; isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
8D202CF10486D31800D8A456 /* wildfirePrefPane.m in Sources */, 8D202CF10486D31800D8A456 /* openfirePrefPane.m in Sources */,
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
...@@ -313,12 +313,12 @@ ...@@ -313,12 +313,12 @@
name = InfoPlist.strings; name = InfoPlist.strings;
sourceTree = "<group>"; sourceTree = "<group>";
}; };
F506C042013D9D8C01CA16C8 /* wildfirePrefPane.nib */ = { F506C042013D9D8C01CA16C8 /* openfirePrefPane.nib */ = {
isa = PBXVariantGroup; isa = PBXVariantGroup;
children = ( children = (
F506C043013D9D8C01CA16C8 /* English */, F506C043013D9D8C01CA16C8 /* English */,
); );
name = wildfirePrefPane.nib; name = openfirePrefPane.nib;
sourceTree = "<group>"; sourceTree = "<group>";
}; };
/* End PBXVariantGroup section */ /* End PBXVariantGroup section */
...@@ -413,7 +413,7 @@ ...@@ -413,7 +413,7 @@
GCC_GENERATE_DEBUGGING_SYMBOLS = YES; GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
GCC_OPTIMIZATION_LEVEL = 0; GCC_OPTIMIZATION_LEVEL = 0;
GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = wildfirePrefPane_Prefix.pch; GCC_PREFIX_HEADER = openfirePrefPane_Prefix.pch;
GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO; GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;
GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO; GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO; GCC_WARN_UNKNOWN_PRAGMAS = NO;
...@@ -430,7 +430,7 @@ ...@@ -430,7 +430,7 @@
"-twolevel_namespace", "-twolevel_namespace",
); );
OTHER_REZFLAGS = ""; OTHER_REZFLAGS = "";
PRODUCT_NAME = Wildfire; PRODUCT_NAME = Openfire;
SECTORDER_FLAGS = ""; SECTORDER_FLAGS = "";
SYMROOT = "$(PROJECT_DIR)/build"; SYMROOT = "$(PROJECT_DIR)/build";
WARNING_CFLAGS = ( WARNING_CFLAGS = (
...@@ -457,7 +457,7 @@ ...@@ -457,7 +457,7 @@
GCC_GENERATE_DEBUGGING_SYMBOLS = YES; GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
GCC_OPTIMIZATION_LEVEL = 0; GCC_OPTIMIZATION_LEVEL = 0;
GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = wildfirePrefPane_Prefix.pch; GCC_PREFIX_HEADER = openfirePrefPane_Prefix.pch;
GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO; GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;
GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO; GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO; GCC_WARN_UNKNOWN_PRAGMAS = NO;
...@@ -474,7 +474,7 @@ ...@@ -474,7 +474,7 @@
"-twolevel_namespace", "-twolevel_namespace",
); );
OTHER_REZFLAGS = ""; OTHER_REZFLAGS = "";
PRODUCT_NAME = Wildfire; PRODUCT_NAME = Openfire;
SECTORDER_FLAGS = ""; SECTORDER_FLAGS = "";
SYMROOT = "$(PROJECT_DIR)/build"; SYMROOT = "$(PROJECT_DIR)/build";
WARNING_CFLAGS = ( WARNING_CFLAGS = (
...@@ -502,7 +502,7 @@ ...@@ -502,7 +502,7 @@
GCC_ENABLE_TRIGRAPHS = NO; GCC_ENABLE_TRIGRAPHS = NO;
GCC_GENERATE_DEBUGGING_SYMBOLS = NO; GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = wildfirePrefPane_Prefix.pch; GCC_PREFIX_HEADER = openfirePrefPane_Prefix.pch;
GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO; GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;
GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO; GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO; GCC_WARN_UNKNOWN_PRAGMAS = NO;
...@@ -519,7 +519,7 @@ ...@@ -519,7 +519,7 @@
"-twolevel_namespace", "-twolevel_namespace",
); );
OTHER_REZFLAGS = ""; OTHER_REZFLAGS = "";
PRODUCT_NAME = Wildfire; PRODUCT_NAME = Openfire;
SECTORDER_FLAGS = ""; SECTORDER_FLAGS = "";
SKIP_INSTALL = NO; SKIP_INSTALL = NO;
SYMROOT = "$(PROJECT_DIR)/build"; SYMROOT = "$(PROJECT_DIR)/build";
...@@ -542,7 +542,7 @@ ...@@ -542,7 +542,7 @@
GCC_ENABLE_TRIGRAPHS = NO; GCC_ENABLE_TRIGRAPHS = NO;
GCC_GENERATE_DEBUGGING_SYMBOLS = NO; GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = wildfirePrefPane_Prefix.pch; GCC_PREFIX_HEADER = openfirePrefPane_Prefix.pch;
GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO; GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;
GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO; GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO; GCC_WARN_UNKNOWN_PRAGMAS = NO;
...@@ -558,7 +558,7 @@ ...@@ -558,7 +558,7 @@
"-twolevel_namespace", "-twolevel_namespace",
); );
OTHER_REZFLAGS = ""; OTHER_REZFLAGS = "";
PRODUCT_NAME = Wildfire; PRODUCT_NAME = Openfire;
SECTORDER_FLAGS = ""; SECTORDER_FLAGS = "";
SYMROOT = "$(PROJECT_DIR)/build"; SYMROOT = "$(PROJECT_DIR)/build";
WARNING_CFLAGS = ( WARNING_CFLAGS = (
...@@ -610,7 +610,7 @@ ...@@ -610,7 +610,7 @@
defaultConfigurationIsVisible = 0; defaultConfigurationIsVisible = 0;
defaultConfigurationName = Default; defaultConfigurationName = Default;
}; };
65E2E7290A5E8C0F00DFFC2E /* Build configuration list for PBXNativeTarget "Wildfire" */ = { 65E2E7290A5E8C0F00DFFC2E /* Build configuration list for PBXNativeTarget "Openfire" */ = {
isa = XCConfigurationList; isa = XCConfigurationList;
buildConfigurations = ( buildConfigurations = (
65E2E72A0A5E8C0F00DFFC2E /* Development */, 65E2E72A0A5E8C0F00DFFC2E /* Development */,
...@@ -621,7 +621,7 @@ ...@@ -621,7 +621,7 @@
defaultConfigurationIsVisible = 0; defaultConfigurationIsVisible = 0;
defaultConfigurationName = Default; defaultConfigurationName = Default;
}; };
65E2E72D0A5E8C0F00DFFC2E /* Build configuration list for PBXProject "wildfirePrefPane" */ = { 65E2E72D0A5E8C0F00DFFC2E /* Build configuration list for PBXProject "openfirePrefPane" */ = {
isa = XCConfigurationList; isa = XCConfigurationList;
buildConfigurations = ( buildConfigurations = (
65E2E72E0A5E8C0F00DFFC2E /* Development */, 65E2E72E0A5E8C0F00DFFC2E /* Development */,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment