[29410] users/rhwood/Pallet

source_changes at macosforge.org source_changes at macosforge.org
Sun Sep 23 01:26:34 PDT 2007


Revision: 29410
          http://trac.macosforge.org/projects/macports/changeset/29410
Author:   rhwood at macports.org
Date:     2007-09-23 01:26:33 -0700 (Sun, 23 Sep 2007)

Log Message:
-----------
Rename all instances of port[Aa]uthority to pallet

Modified Paths:
--------------
    users/rhwood/Pallet/AuthorizedExecutable.m
    users/rhwood/Pallet/English.lproj/MainMenu.nib/classes.nib
    users/rhwood/Pallet/English.lproj/MainMenu.nib/info.nib
    users/rhwood/Pallet/English.lproj/MainMenu.nib/keyedobjects.nib
    users/rhwood/Pallet/Launcher.c
    users/rhwood/Pallet/MPToolbar.h
    users/rhwood/Pallet/MPToolbar.m
    users/rhwood/Pallet/PortAuthority.h
    users/rhwood/Pallet/PortAuthority.m

Modified: users/rhwood/Pallet/AuthorizedExecutable.m
===================================================================
--- users/rhwood/Pallet/AuthorizedExecutable.m	2007-09-23 07:35:38 UTC (rev 29409)
+++ users/rhwood/Pallet/AuthorizedExecutable.m	2007-09-23 08:26:33 UTC (rev 29410)
@@ -116,7 +116,7 @@
         // they should hold a pointer to a C string containing the path to
         // the tool you want to execute, and the length of the C string path.
         // There needs to be one item for each tool you want to execute.
-		items[0].name = "org.macports.portauthority";
+		items[0].name = "org.macports.pallet	";
 		items[0].value = 0;
 		items[0].valueLength = 0;		
         items[0].flags = 0;

Modified: users/rhwood/Pallet/English.lproj/MainMenu.nib/classes.nib
===================================================================
--- users/rhwood/Pallet/English.lproj/MainMenu.nib/classes.nib	2007-09-23 07:35:38 UTC (rev 29409)
+++ users/rhwood/Pallet/English.lproj/MainMenu.nib/classes.nib	2007-09-23 08:26:33 UTC (rev 29410)
@@ -59,7 +59,7 @@
                 haltPortCommand = id; 
                 installPort = id; 
                 macPortsSite = id; 
-                portAuthoritySite = id; 
+                palletSite = id; 
                 reinstallPort = id; 
                 removePort = id; 
                 syncPortsList = id; 

Modified: users/rhwood/Pallet/English.lproj/MainMenu.nib/info.nib
===================================================================
--- users/rhwood/Pallet/English.lproj/MainMenu.nib/info.nib	2007-09-23 07:35:38 UTC (rev 29409)
+++ users/rhwood/Pallet/English.lproj/MainMenu.nib/info.nib	2007-09-23 08:26:33 UTC (rev 29410)
@@ -18,9 +18,7 @@
 	<key>IBFramework Version</key>
 	<string>446.1</string>
 	<key>IBLockedObjects</key>
-	<array>
-		<integer>502</integer>
-	</array>
+	<array/>
 	<key>IBLockedTabItems</key>
 	<array>
 		<integer>210</integer>
@@ -29,8 +27,8 @@
 	<array>
 		<integer>29</integer>
 		<integer>568</integer>
-		<integer>21</integer>
 		<integer>290</integer>
+		<integer>21</integer>
 	</array>
 	<key>IBSystem Version</key>
 	<string>8R218</string>

Modified: users/rhwood/Pallet/English.lproj/MainMenu.nib/keyedobjects.nib
===================================================================
(Binary files differ)

Modified: users/rhwood/Pallet/Launcher.c
===================================================================
--- users/rhwood/Pallet/Launcher.c	2007-09-23 07:35:38 UTC (rev 29409)
+++ users/rhwood/Pallet/Launcher.c	2007-09-23 08:26:33 UTC (rev 29410)
@@ -53,7 +53,7 @@
 
 bool authorizedToExecute(AuthorizationRef *auth, const char* cmd)
 {
-    AuthorizationItem right = { "org.macports.portauthority", 0, NULL, 0 };
+    AuthorizationItem right = { "org.macports.pallet", 0, NULL, 0 };
     AuthorizationRights rights = { 1, &right };
     AuthorizationFlags flags =
         kAuthorizationFlagDefaults | kAuthorizationFlagExtendRights;

Modified: users/rhwood/Pallet/MPToolbar.h
===================================================================
--- users/rhwood/Pallet/MPToolbar.h	2007-09-23 07:35:38 UTC (rev 29409)
+++ users/rhwood/Pallet/MPToolbar.h	2007-09-23 08:26:33 UTC (rev 29410)
@@ -31,7 +31,7 @@
 @interface MPToolbar : NSObject {
 
 	IBOutlet NSWindow *ports;
-	IBOutlet MPAuthority *portAuthority;
+	IBOutlet MPAuthority *pallet;
 	IBOutlet NSSearchField *searchField;
 	IBOutlet NSView *searchView;
 

Modified: users/rhwood/Pallet/MPToolbar.m
===================================================================
--- users/rhwood/Pallet/MPToolbar.m	2007-09-23 07:35:38 UTC (rev 29409)
+++ users/rhwood/Pallet/MPToolbar.m	2007-09-23 08:26:33 UTC (rev 29410)
@@ -39,7 +39,7 @@
 					 label:NSLocalizedString(@"Install", @"Install label")
 			  paletteLabel:NSLocalizedString(@"Install Port", @"Install paletteLabel")
 				   toolTip:NSLocalizedString(@"Install the selected port", @"Install toolTip")
-					target:portAuthority
+					target:pallet
 					action:@selector(installPort:)
 		   settingSelector:@selector(setImage:)
 			   itemContent:[NSImage imageNamed:@"Install.tiff"]
@@ -48,7 +48,7 @@
 					 label:NSLocalizedString(@"Remove", @"Remove label")
 			  paletteLabel:NSLocalizedString(@"Remove Port", @"Remove paletteLabel")
 				   toolTip:NSLocalizedString(@"Remove the selected port", @"Remove toolTip")
-					target:portAuthority
+					target:pallet
 					action:@selector(removePort:)
 		   settingSelector:@selector(setImage:)
 			   itemContent:[NSImage imageNamed:@"Remove.tiff"]
@@ -57,7 +57,7 @@
 					 label:NSLocalizedString(@"Halt", @"Halt label")
 			  paletteLabel:NSLocalizedString(@"Halt Command", @"Halt paletteLabel")
 				   toolTip:NSLocalizedString(@"Halt the command being executed", @"Halt toolTip")
-					target:portAuthority
+					target:pallet
 					action:@selector(halt:)
 		   settingSelector:@selector(setImage:)
 			   itemContent:[NSImage imageNamed:@"Halt.tiff"]
@@ -66,7 +66,7 @@
 					 label:NSLocalizedString(@"Sync", @"Sync label")
 			  paletteLabel:NSLocalizedString(@"Sync Ports List", @"Sync paletteLabel")
 				   toolTip:NSLocalizedString(@"Synchronize the list of available ports", @"Sync toolTip")
-					target:portAuthority
+					target:pallet
 					action:@selector(syncPortsList:)
 		   settingSelector:@selector(setImage:)
 			   itemContent:[NSImage imageNamed:@"Sync.tiff"]
@@ -75,7 +75,7 @@
 					 label:NSLocalizedString(@"Upgrade", @"Upgrade label")
 			  paletteLabel:NSLocalizedString(@"Upgrade Port", @"Upgrade paletteLabel")
 				   toolTip:NSLocalizedString(@"Upgrade the selected port", @"Upgrade toolTip")
-					target:portAuthority
+					target:pallet
 					action:@selector(upgradePort:)
 		   settingSelector:@selector(setImage:)
 			   itemContent:[NSImage imageNamed:@"Upgrade.tiff"]
@@ -84,7 +84,7 @@
 					 label:NSLocalizedString(@"Update", @"Update label")
 			  paletteLabel:NSLocalizedString(@"Update MacPorts", @"Update paletteLabel")
 				   toolTip:NSLocalizedString(@"Update the MacPorts infrastructure", @"Update toolTip")
-					target:portAuthority
+					target:pallet
 					action:@selector(updateMacPorts:)
 		   settingSelector:@selector(setImage:)
 			   itemContent:[NSImage imageNamed:@"Update.tiff"]
@@ -93,7 +93,7 @@
 					 label:NSLocalizedString(@"Search", @"Search label")
 			  paletteLabel:NSLocalizedString(@"Search Ports", @"Search paletteLabel")
 				   toolTip:NSLocalizedString(@"Search for a port", @"Search toolTip")
-					target:portAuthority
+					target:pallet
 					action:NULL
 		   settingSelector:@selector(setView:)
 			   itemContent:searchView

Modified: users/rhwood/Pallet/PortAuthority.h
===================================================================
--- users/rhwood/Pallet/PortAuthority.h	2007-09-23 07:35:38 UTC (rev 29409)
+++ users/rhwood/Pallet/PortAuthority.h	2007-09-23 08:26:33 UTC (rev 29410)
@@ -89,7 +89,7 @@
 
 - (IBAction)about:(id)sender;
 - (IBAction)macPortsSite:(id)sender;
-- (IBAction)portAuthoritySite:(id)sender;
+- (IBAction)palletSite:(id)sender;
 
 - (void)populatePortIndex;
 

Modified: users/rhwood/Pallet/PortAuthority.m
===================================================================
--- users/rhwood/Pallet/PortAuthority.m	2007-09-23 07:35:38 UTC (rev 29409)
+++ users/rhwood/Pallet/PortAuthority.m	2007-09-23 08:26:33 UTC (rev 29410)
@@ -454,7 +454,7 @@
 	[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://www.macports.org"]];
 }
 
-- (IBAction)portAuthoritySite:(id)sender
+- (IBAction)palletSite:(id)sender
 {
 	[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://www.macports.org"]];
 }

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/macports-changes/attachments/20070923/bbb412ab/attachment.html


More information about the macports-changes mailing list