Thread: [PXCDD-commit] SF.net SVN: pxcdd: [73] trunk/client/osx
Status: Alpha
Brought to you by:
tangentsoft
From: <tan...@us...> - 2006-04-23 18:27:58
|
Revision: 73 Author: tangentsoft Date: 2006-04-23 11:27:53 -0700 (Sun, 23 Apr 2006) ViewCVS: http://svn.sourceforge.net/pxcdd/?rev=73&view=rev Log Message: ----------- Created mktest, which creates 'test' script with the proper HFS+ metadata to cause it to be associated with the shell script helper program. Added Paths: ----------- trunk/client/osx/mktest Property Changed: ---------------- trunk/client/osx/ Property changes on: trunk/client/osx ___________________________________________________________________ Name: svn:ignore + test Added: trunk/client/osx/mktest =================================================================== --- trunk/client/osx/mktest (rev 0) +++ trunk/client/osx/mktest 2006-04-23 18:27:53 UTC (rev 73) @@ -0,0 +1,5 @@ +#!/bin/sh +echo '#!/bin/sh' > test +echo 'touch /tmp/do-sh.`date +%Y%m%d-%H%M`' >> test +chmod +x test +/Developer/Tools/SetFile -c 'PXC ' -t 'DoSh' test Property changes on: trunk/client/osx/mktest ___________________________________________________________________ Name: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tan...@us...> - 2006-04-26 08:06:31
|
Revision: 74 Author: tangentsoft Date: 2006-04-26 01:06:26 -0700 (Wed, 26 Apr 2006) ViewCVS: http://svn.sourceforge.net/pxcdd/?rev=74&view=rev Log Message: ----------- Another attempt at handling the openFile(s) Apple Event sent by the Finder. Still doesn't work, but saving progress here anyway... Modified Paths: -------------- trunk/client/osx/ShellScriptHelper.h trunk/client/osx/ShellScriptHelper.m Modified: trunk/client/osx/ShellScriptHelper.h =================================================================== --- trunk/client/osx/ShellScriptHelper.h 2006-04-23 18:27:53 UTC (rev 73) +++ trunk/client/osx/ShellScriptHelper.h 2006-04-26 08:06:26 UTC (rev 74) @@ -14,6 +14,6 @@ } - (IBAction)showArgs:(id)sender; -- (BOOL)openFile:(NSString*)path; +- (void)application:(NSApplication*)sender openFiles:(NSArray*)filenames; @end Modified: trunk/client/osx/ShellScriptHelper.m =================================================================== --- trunk/client/osx/ShellScriptHelper.m 2006-04-23 18:27:53 UTC (rev 73) +++ trunk/client/osx/ShellScriptHelper.m 2006-04-26 08:06:26 UTC (rev 74) @@ -25,16 +25,16 @@ } } -- (BOOL)openFile:(NSString*)path +- (void)application:(NSApplication*)sender openFiles:(NSArray*)filenames { - NSRunAlertPanel(@"Open File:", @"%@", @"OK", nil, nil, path); - return YES; + NSRunAlertPanel(@"Open File:", @"%@", @"OK", nil, nil, + [filenames objectAtIndex:0]); } - (void)awakeFromNib { - NSRunAlertPanel(@"Awake!", @"yes...", @"OK", nil, nil); - [NSApp setDelegate: self]; + NSRunAlertPanel(@"Awake!", @"Delegate: %@", @"OK", nil, nil, + [NSApp delegate]); } @end This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tan...@us...> - 2006-04-27 16:02:46
|
Revision: 76 Author: tangentsoft Date: 2006-04-27 09:02:23 -0700 (Thu, 27 Apr 2006) ViewCVS: http://svn.sourceforge.net/pxcdd/?rev=76&view=rev Log Message: ----------- FINALLY got the openFile:application event to fire when double-clicking a file with the 'PXC ' creator code in Finder. Apparently the awakeFromNib method was interfering: on removing it, the app started working as the docs said it should. Modified Paths: -------------- trunk/client/osx/ShellScriptHelper.h trunk/client/osx/ShellScriptHelper.m Modified: trunk/client/osx/ShellScriptHelper.h =================================================================== --- trunk/client/osx/ShellScriptHelper.h 2006-04-26 08:07:20 UTC (rev 75) +++ trunk/client/osx/ShellScriptHelper.h 2006-04-27 16:02:23 UTC (rev 76) @@ -14,6 +14,6 @@ } - (IBAction)showArgs:(id)sender; -- (void)application:(NSApplication*)sender openFiles:(NSArray*)filenames; +- (BOOL)application:(NSApplication*)sender openFile:(NSString*)pathname; @end Modified: trunk/client/osx/ShellScriptHelper.m =================================================================== --- trunk/client/osx/ShellScriptHelper.m 2006-04-26 08:07:20 UTC (rev 75) +++ trunk/client/osx/ShellScriptHelper.m 2006-04-27 16:02:23 UTC (rev 76) @@ -25,16 +25,11 @@ } } -- (void)application:(NSApplication*)sender openFiles:(NSArray*)filenames +- (BOOL)application:(NSApplication*)sender openFile:(NSString*)pathname { - NSRunAlertPanel(@"Open File:", @"%@", @"OK", nil, nil, - [filenames objectAtIndex:0]); + NSRunAlertPanel(@"Open File:", @"%@", @"OK", nil, nil, pathname); + [NSApp stop:self]; + return YES; } -- (void)awakeFromNib -{ - NSRunAlertPanel(@"Awake!", @"Delegate: %@", @"OK", nil, nil, - [NSApp delegate]); -} - @end This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tan...@us...> - 2006-04-29 16:03:18
|
Revision: 82 Author: tangentsoft Date: 2006-04-29 09:03:15 -0700 (Sat, 29 Apr 2006) ViewCVS: http://svn.sourceforge.net/pxcdd/?rev=82&view=rev Log Message: ----------- Removed showArgs event handler (for real this time...) Modified Paths: -------------- trunk/client/osx/ShellScriptHelper.h trunk/client/osx/ShellScriptHelper.m Modified: trunk/client/osx/ShellScriptHelper.h =================================================================== --- trunk/client/osx/ShellScriptHelper.h 2006-04-29 16:02:17 UTC (rev 81) +++ trunk/client/osx/ShellScriptHelper.h 2006-04-29 16:03:15 UTC (rev 82) @@ -13,7 +13,6 @@ { } -- (IBAction)showArgs:(id)sender; - (BOOL)application:(NSApplication*)sender openFile:(NSString*)pathname; @end Modified: trunk/client/osx/ShellScriptHelper.m =================================================================== --- trunk/client/osx/ShellScriptHelper.m 2006-04-29 16:02:17 UTC (rev 81) +++ trunk/client/osx/ShellScriptHelper.m 2006-04-29 16:03:15 UTC (rev 82) @@ -13,19 +13,6 @@ @implementation ShellScriptHelper -//// showArgs ////////////////////////////////////////////////////////// - -- (IBAction)showArgs:(id)sender -{ - NSArray* args = [[NSProcessInfo processInfo] arguments]; - int i; - for (i = 0; i < [args count]; ++i) { - NSRunAlertPanel(@"Arguments:", @"ARG %d: %@", @"OK", nil, nil, - i, [args objectAtIndex: i]); - } -} - - //// application:openFile ////////////////////////////////////////////// // Apple Event sent when the user launches a document (such as from the // Finder) that we're associated with, so we are being asked to open This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tan...@us...> - 2006-04-29 22:09:58
|
Revision: 85 Author: tangentsoft Date: 2006-04-29 15:09:39 -0700 (Sat, 29 Apr 2006) ViewCVS: http://svn.sourceforge.net/pxcdd/?rev=85&view=rev Log Message: ----------- Moved Shell Script Helper project into new subdir, client/osx/sshelper Added Paths: ----------- trunk/client/osx/sshelper/English.lproj/ trunk/client/osx/sshelper/English.lproj/InfoPlist.strings trunk/client/osx/sshelper/English.lproj/MainMenu.nib/ trunk/client/osx/sshelper/Info.plist trunk/client/osx/sshelper/LICENSE trunk/client/osx/sshelper/Shell Script Helper.xcodeproj/ trunk/client/osx/sshelper/Shell Script Helper.xcodeproj/project.pbxproj trunk/client/osx/sshelper/ShellScriptHelper.h trunk/client/osx/sshelper/ShellScriptHelper.m trunk/client/osx/sshelper/icon.icns trunk/client/osx/sshelper/main.m trunk/client/osx/sshelper/mktest Removed Paths: ------------- trunk/client/osx/English.lproj/ trunk/client/osx/Info.plist trunk/client/osx/LICENSE trunk/client/osx/Shell Script Helper.xcodeproj/ trunk/client/osx/ShellScriptHelper.h trunk/client/osx/ShellScriptHelper.m trunk/client/osx/icon.icns trunk/client/osx/main.m trunk/client/osx/mktest trunk/client/osx/sshelper/English.lproj/InfoPlist.strings trunk/client/osx/sshelper/English.lproj/MainMenu.nib/ trunk/client/osx/sshelper/Shell Script Helper.xcodeproj/project.pbxproj Property Changed: ---------------- trunk/client/osx/ trunk/client/osx/sshelper/ Property changes on: trunk/client/osx ___________________________________________________________________ Name: svn:ignore - build test + Deleted: trunk/client/osx/Info.plist =================================================================== --- trunk/client/osx/Info.plist 2006-04-29 22:06:33 UTC (rev 84) +++ trunk/client/osx/Info.plist 2006-04-29 22:09:39 UTC (rev 85) @@ -1,44 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> -<plist version="1.0"> -<dict> - <key>CFBundleDevelopmentRegion</key> - <string>English</string> - <key>CFBundleExecutable</key> - <string>${EXECUTABLE_NAME}</string> - <key>CFBundleIconFile</key> - <string>icon</string> - <key>CFBundleIdentifier</key> - <string>com.pixelcorps.Shell Script Helper</string> - <key>CFBundleInfoDictionaryVersion</key> - <string>6.0</string> - <key>CFBundleName</key> - <string>${PRODUCT_NAME}</string> - <key>CFBundlePackageType</key> - <string>APPL</string> - <key>CFBundleSignature</key> - <string>PXC </string> - <key>CFBundleVersion</key> - <string>0.2</string> - <key>NSHumanReadableCopyright</key> - <string>Copyright © 2006, Pixel Corps, -All Rights Reserved.</string> - <key>NSMainNibFile</key> - <string>MainMenu</string> - <key>NSPrincipalClass</key> - <string>NSApplication</string> - <key>CFBundleDocumentTypes</key> - <array> - <dict> - <key>CFBundleTypeName</key> - <string>BourneShellScript</string> - <key>CFBundleTypeOSTypes</key> - <array> - <string>DoSh</string> - </array> - <key>CFBundleTypeRole</key> - <string>Shell</string> - </dict> - </array> -</dict> -</plist> Deleted: trunk/client/osx/LICENSE =================================================================== --- trunk/client/osx/LICENSE 2006-04-29 22:06:33 UTC (rev 84) +++ trunk/client/osx/LICENSE 2006-04-29 22:09:39 UTC (rev 85) @@ -1,20 +0,0 @@ -Copyright (c) 2006 Pixel Corps - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Deleted: trunk/client/osx/ShellScriptHelper.h =================================================================== --- trunk/client/osx/ShellScriptHelper.h 2006-04-29 22:06:33 UTC (rev 84) +++ trunk/client/osx/ShellScriptHelper.h 2006-04-29 22:09:39 UTC (rev 85) @@ -1,18 +0,0 @@ -/*********************************************************************** - ShellScriptHelper.h - Defines the interface to the main application - object. - - Copyright (c) 2006 by Pixel Corps. This program may be used under - the terms of the X11 license, a copy of which should have accompanied - this program, in the LICENSE file. -***********************************************************************/ - -#import <Cocoa/Cocoa.h> - -@interface ShellScriptHelper : NSObject -{ -} - -- (BOOL)application:(NSApplication*)sender openFile:(NSString*)pathname; - -@end Deleted: trunk/client/osx/ShellScriptHelper.m =================================================================== --- trunk/client/osx/ShellScriptHelper.m 2006-04-29 22:06:33 UTC (rev 84) +++ trunk/client/osx/ShellScriptHelper.m 2006-04-29 22:09:39 UTC (rev 85) @@ -1,86 +0,0 @@ -/*********************************************************************** - ShellScriptHelper.m - The main application object: implements the - app's core functionality. - - Created 2006.04.23 by Warren Young - - Copyright (c) 2006 by Pixel Corps. This program may be used under - the terms of the X11 license, a copy of which should have accompanied - this program, in the LICENSE file. -***********************************************************************/ - -#import "ShellScriptHelper.h" - -#include <unistd.h> -#include <sys/wait.h> - -#include <signal.h> -#include <stdlib.h> - - -@implementation ShellScriptHelper - -//// application:openFile ////////////////////////////////////////////// -// Apple Event sent when the user launches a document (such as from the -// Finder) that we're associated with, so we are being asked to open -// that file. - -- (BOOL)application:(NSApplication*)sender openFile:(NSString*)pathname -{ - // Build /bin/sh command, and execute it - const char* debugOutput = "/tmp/ShellScriptHelper.debug"; - NSString* command = [NSString stringWithFormat:@"'%@' > %s 2>&1", - pathname, debugOutput]; - int exitCode, status = system([command UTF8String]); - - // Discern which failure mode we have encountered, if any. - if (status == -1) { - // system() call failed utterly - NSRunAlertPanel(@"fork() or waitpid() failed for command:", - @"%@", @"OK", nil, nil, pathname); - } - else if (!WIFEXITED(status)) { - // Command ran, but exited abnormally - if (WIFSIGNALED(status)) { - if (WCOREDUMP(status)) { - NSRunAlertPanel(@"Program core-dumped:", - @"%@", @"OK", nil, nil, pathname); - } - else { - NSRunAlertPanel(@"Command stopped due to signal:", - @"Signal %d", @"OK", nil, nil, - WSTOPSIG(status)); - } - } - else { - NSRunAlertPanel(@"Unknown failure when running command:", - @"Command: %@\n\nCode: 0x%X", @"OK", nil, - nil, command, status); - } - } - else if (exitCode = WEXITSTATUS(status)) { - // Command ran, but returned error code - if (exitCode > 128) { - int sig = exitCode - 128; - NSRunAlertPanel(@"Shell caught signal:", @"%s (%d)", - @"OK", nil, nil, sys_signame[sig], sig); - } - else { - NSRunAlertPanel(@"Command failed:", @"%@ returned %d", - @"OK", nil, nil, pathname, exitCode); - } - } - else { - // Command ran and returned 0, indicating success - unlink(debugOutput); - //NSRunAlertPanel(@"Successfully ran command:", @"%@", @"OK", - // nil, nil, command); - } - - // Terminate application; we've done what we were asked to do. - [NSApp stop:self]; - - return YES; -} - -@end Deleted: trunk/client/osx/icon.icns =================================================================== (Binary files differ) Deleted: trunk/client/osx/main.m =================================================================== --- trunk/client/osx/main.m 2006-04-29 22:06:33 UTC (rev 84) +++ trunk/client/osx/main.m 2006-04-29 22:09:39 UTC (rev 85) @@ -1,26 +0,0 @@ -/*********************************************************************** - main.m - Main module of helper app to launch Bourne Shell scripts - marked with a our creator code. Needed to allow C4D on Mac to - launch shell scripts because that app uses traditional Mac OS - methods of opening files, which doesn't work well with Unix - mechanisms. - - Created 2006.04.23 by Warren Young - - Copyright (c) 2006 by Pixel Corps. This program may be used under - the terms of the X11 license, a copy of which should have accompanied - this program, in the LICENSE file. -***********************************************************************/ - -#import <Cocoa/Cocoa.h> - -#include <unistd.h> - - -//// main ////////////////////////////////////////////////////////////// - -int main(int argc, char *argv[]) -{ - // Start application's main event loop - return NSApplicationMain(argc, (const char**)argv); -} Deleted: trunk/client/osx/mktest =================================================================== --- trunk/client/osx/mktest 2006-04-29 22:06:33 UTC (rev 84) +++ trunk/client/osx/mktest 2006-04-29 22:09:39 UTC (rev 85) @@ -1,5 +0,0 @@ -#!/bin/sh -echo '#!/bin/sh' > test -echo 'touch /tmp/do-sh.`date +%Y%m%d-%H%M`' >> test -chmod +x test -/Developer/Tools/SetFile -c 'PXC ' -t 'DoSh' test Property changes on: trunk/client/osx/sshelper ___________________________________________________________________ Name: svn:ignore + build test Copied: trunk/client/osx/sshelper/English.lproj (from rev 80, trunk/client/osx/English.lproj) Deleted: trunk/client/osx/sshelper/English.lproj/InfoPlist.strings =================================================================== (Binary files differ) Copied: trunk/client/osx/sshelper/English.lproj/InfoPlist.strings (from rev 84, trunk/client/osx/English.lproj/InfoPlist.strings) =================================================================== (Binary files differ) Copied: trunk/client/osx/sshelper/English.lproj/MainMenu.nib (from rev 84, trunk/client/osx/English.lproj/MainMenu.nib) Copied: trunk/client/osx/sshelper/Info.plist (from rev 80, trunk/client/osx/Info.plist) =================================================================== --- trunk/client/osx/sshelper/Info.plist (rev 0) +++ trunk/client/osx/sshelper/Info.plist 2006-04-29 22:09:39 UTC (rev 85) @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleExecutable</key> + <string>${EXECUTABLE_NAME}</string> + <key>CFBundleIconFile</key> + <string>icon</string> + <key>CFBundleIdentifier</key> + <string>com.pixelcorps.Shell Script Helper</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>${PRODUCT_NAME}</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleSignature</key> + <string>PXC </string> + <key>CFBundleVersion</key> + <string>0.2</string> + <key>NSHumanReadableCopyright</key> + <string>Copyright © 2006, Pixel Corps, +All Rights Reserved.</string> + <key>NSMainNibFile</key> + <string>MainMenu</string> + <key>NSPrincipalClass</key> + <string>NSApplication</string> + <key>CFBundleDocumentTypes</key> + <array> + <dict> + <key>CFBundleTypeName</key> + <string>BourneShellScript</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>DoSh</string> + </array> + <key>CFBundleTypeRole</key> + <string>Shell</string> + </dict> + </array> +</dict> +</plist> Copied: trunk/client/osx/sshelper/LICENSE (from rev 80, trunk/client/osx/LICENSE) =================================================================== --- trunk/client/osx/sshelper/LICENSE (rev 0) +++ trunk/client/osx/sshelper/LICENSE 2006-04-29 22:09:39 UTC (rev 85) @@ -0,0 +1,20 @@ +Copyright (c) 2006 Pixel Corps + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Copied: trunk/client/osx/sshelper/Shell Script Helper.xcodeproj (from rev 80, trunk/client/osx/Shell Script Helper.xcodeproj) Deleted: trunk/client/osx/sshelper/Shell Script Helper.xcodeproj/project.pbxproj =================================================================== --- trunk/client/osx/Shell Script Helper.xcodeproj/project.pbxproj 2006-04-29 15:56:06 UTC (rev 80) +++ trunk/client/osx/sshelper/Shell Script Helper.xcodeproj/project.pbxproj 2006-04-29 22:09:39 UTC (rev 85) @@ -1,302 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 42; - objects = { - -/* Begin PBXBuildFile section */ - 8D11072A0486CEB800E47090 /* MainMenu.nib in Resources */ = {isa = PBXBuildFile; fileRef = 29B97318FDCFA39411CA2CEA /* MainMenu.nib */; }; - 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; }; - 8D11072D0486CEB800E47090 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; settings = {ATTRIBUTES = (); }; }; - 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; - BA710FB509FBCBA900FD60AF /* icon.icns in Resources */ = {isa = PBXBuildFile; fileRef = BA710FB409FBCBA900FD60AF /* icon.icns */; }; - BAB80F3509FBE2EE006E9366 /* ShellScriptHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = BAB80F3409FBE2EE006E9366 /* ShellScriptHelper.m */; }; -/* End PBXBuildFile section */ - -/* Begin PBXBuildStyle section */ - 4A9504CCFFE6A4B311CA0CBA /* Debug */ = { - isa = PBXBuildStyle; - buildSettings = { - }; - name = Debug; - }; - 4A9504CDFFE6A4B311CA0CBA /* Release */ = { - isa = PBXBuildStyle; - buildSettings = { - }; - name = Release; - }; -/* End PBXBuildStyle section */ - -/* Begin PBXFileReference section */ - 089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; }; - 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; }; - 13E42FB307B3F0F600E4EEF1 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = /System/Library/Frameworks/CoreData.framework; sourceTree = "<absolute>"; }; - 29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; }; - 29B97319FDCFA39411CA2CEA /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/MainMenu.nib; sourceTree = "<group>"; }; - 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; }; - 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; }; - 32CA4F630368D1EE00C91783 /* Shell Script Helper_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Shell Script Helper_Prefix.pch"; sourceTree = "<group>"; }; - 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; }; - 8D1107320486CEB800E47090 /* Shell Script Helper.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Shell Script Helper.app"; sourceTree = BUILT_PRODUCTS_DIR; }; - BA710FB409FBCBA900FD60AF /* icon.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = icon.icns; sourceTree = "<group>"; }; - BAB80F3309FBE2EE006E9366 /* ShellScriptHelper.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ShellScriptHelper.h; sourceTree = "<group>"; }; - BAB80F3409FBE2EE006E9366 /* ShellScriptHelper.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = ShellScriptHelper.m; sourceTree = "<group>"; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 8D11072E0486CEB800E47090 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 080E96DDFE201D6D7F000001 /* Classes */ = { - isa = PBXGroup; - children = ( - ); - name = Classes; - sourceTree = "<group>"; - }; - 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = { - isa = PBXGroup; - children = ( - 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */, - ); - name = "Linked Frameworks"; - sourceTree = "<group>"; - }; - 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = { - isa = PBXGroup; - children = ( - 29B97324FDCFA39411CA2CEA /* AppKit.framework */, - 13E42FB307B3F0F600E4EEF1 /* CoreData.framework */, - 29B97325FDCFA39411CA2CEA /* Foundation.framework */, - ); - name = "Other Frameworks"; - sourceTree = "<group>"; - }; - 19C28FACFE9D520D11CA2CBB /* Products */ = { - isa = PBXGroup; - children = ( - 8D1107320486CEB800E47090 /* Shell Script Helper.app */, - ); - name = Products; - sourceTree = "<group>"; - }; - 29B97314FDCFA39411CA2CEA /* Shell Script Helper */ = { - isa = PBXGroup; - children = ( - 080E96DDFE201D6D7F000001 /* Classes */, - 29B97315FDCFA39411CA2CEA /* Other Sources */, - 29B97317FDCFA39411CA2CEA /* Resources */, - 29B97323FDCFA39411CA2CEA /* Frameworks */, - 19C28FACFE9D520D11CA2CBB /* Products */, - ); - name = "Shell Script Helper"; - sourceTree = "<group>"; - }; - 29B97315FDCFA39411CA2CEA /* Other Sources */ = { - isa = PBXGroup; - children = ( - 32CA4F630368D1EE00C91783 /* Shell Script Helper_Prefix.pch */, - 29B97316FDCFA39411CA2CEA /* main.m */, - BAB80F3309FBE2EE006E9366 /* ShellScriptHelper.h */, - BAB80F3409FBE2EE006E9366 /* ShellScriptHelper.m */, - ); - name = "Other Sources"; - sourceTree = "<group>"; - }; - 29B97317FDCFA39411CA2CEA /* Resources */ = { - isa = PBXGroup; - children = ( - BA710FB409FBCBA900FD60AF /* icon.icns */, - 8D1107310486CEB800E47090 /* Info.plist */, - 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */, - 29B97318FDCFA39411CA2CEA /* MainMenu.nib */, - ); - name = Resources; - sourceTree = "<group>"; - }; - 29B97323FDCFA39411CA2CEA /* Frameworks */ = { - isa = PBXGroup; - children = ( - 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */, - 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */, - ); - name = Frameworks; - sourceTree = "<group>"; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 8D1107260486CEB800E47090 /* Shell Script Helper */ = { - isa = PBXNativeTarget; - buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "Shell Script Helper" */; - buildPhases = ( - 8D1107290486CEB800E47090 /* Resources */, - 8D11072C0486CEB800E47090 /* Sources */, - 8D11072E0486CEB800E47090 /* Frameworks */, - ); - buildRules = ( - ); - buildSettings = { - }; - dependencies = ( - ); - name = "Shell Script Helper"; - productInstallPath = "$(HOME)/Applications"; - productName = "Shell Script Helper"; - productReference = 8D1107320486CEB800E47090 /* Shell Script Helper.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 29B97313FDCFA39411CA2CEA /* Project object */ = { - isa = PBXProject; - buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Shell Script Helper" */; - buildSettings = { - }; - buildStyles = ( - 4A9504CCFFE6A4B311CA0CBA /* Debug */, - 4A9504CDFFE6A4B311CA0CBA /* Release */, - ); - hasScannedForEncodings = 1; - mainGroup = 29B97314FDCFA39411CA2CEA /* Shell Script Helper */; - projectDirPath = ""; - targets = ( - 8D1107260486CEB800E47090 /* Shell Script Helper */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 8D1107290486CEB800E47090 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 8D11072A0486CEB800E47090 /* MainMenu.nib in Resources */, - 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */, - BA710FB509FBCBA900FD60AF /* icon.icns in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 8D11072C0486CEB800E47090 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 8D11072D0486CEB800E47090 /* main.m in Sources */, - BAB80F3509FBE2EE006E9366 /* ShellScriptHelper.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXVariantGroup section */ - 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = { - isa = PBXVariantGroup; - children = ( - 089C165DFE840E0CC02AAC07 /* English */, - ); - name = InfoPlist.strings; - sourceTree = "<group>"; - }; - 29B97318FDCFA39411CA2CEA /* MainMenu.nib */ = { - isa = PBXVariantGroup; - children = ( - 29B97319FDCFA39411CA2CEA /* English */, - ); - name = MainMenu.nib; - sourceTree = "<group>"; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - C01FCF4B08A954540054247B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - INFOPLIST_FILE = Info.plist; - INSTALL_PATH = "$(HOME)/Applications"; - PRODUCT_NAME = "Shell Script Helper"; - WRAPPER_EXTENSION = app; - ZERO_LINK = YES; - }; - name = Debug; - }; - C01FCF4C08A954540054247B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = ( - ppc, - i386, - ); - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - INFOPLIST_FILE = Info.plist; - INSTALL_PATH = "$(HOME)/Applications"; - PRODUCT_NAME = "Shell Script Helper"; - WRAPPER_EXTENSION = app; - }; - name = Release; - }; - C01FCF4F08A954540054247B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - PREBINDING = NO; - SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; - }; - name = Debug; - }; - C01FCF5008A954540054247B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - PREBINDING = NO; - SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "Shell Script Helper" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C01FCF4B08A954540054247B /* Debug */, - C01FCF4C08A954540054247B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Shell Script Helper" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C01FCF4F08A954540054247B /* Debug */, - C01FCF5008A954540054247B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; -} Copied: trunk/client/osx/sshelper/Shell Script Helper.xcodeproj/project.pbxproj (from rev 84, trunk/client/osx/Shell Script Helper.xcodeproj/project.pbxproj) =================================================================== --- trunk/client/osx/sshelper/Shell Script Helper.xcodeproj/project.pbxproj (rev 0) +++ trunk/client/osx/sshelper/Shell Script Helper.xcodeproj/project.pbxproj 2006-04-29 22:09:39 UTC (rev 85) @@ -0,0 +1,302 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 42; + objects = { + +/* Begin PBXBuildFile section */ + 8D11072A0486CEB800E47090 /* MainMenu.nib in Resources */ = {isa = PBXBuildFile; fileRef = 29B97318FDCFA39411CA2CEA /* MainMenu.nib */; }; + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; }; + 8D11072D0486CEB800E47090 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; settings = {ATTRIBUTES = (); }; }; + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; + BA710FB509FBCBA900FD60AF /* icon.icns in Resources */ = {isa = PBXBuildFile; fileRef = BA710FB409FBCBA900FD60AF /* icon.icns */; }; + BAB80F3509FBE2EE006E9366 /* ShellScriptHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = BAB80F3409FBE2EE006E9366 /* ShellScriptHelper.m */; }; +/* End PBXBuildFile section */ + +/* Begin PBXBuildStyle section */ + 4A9504CCFFE6A4B311CA0CBA /* Debug */ = { + isa = PBXBuildStyle; + buildSettings = { + }; + name = Debug; + }; + 4A9504CDFFE6A4B311CA0CBA /* Release */ = { + isa = PBXBuildStyle; + buildSettings = { + }; + name = Release; + }; +/* End PBXBuildStyle section */ + +/* Begin PBXFileReference section */ + 089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; }; + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; }; + 13E42FB307B3F0F600E4EEF1 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = /System/Library/Frameworks/CoreData.framework; sourceTree = "<absolute>"; }; + 29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; }; + 29B97319FDCFA39411CA2CEA /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/MainMenu.nib; sourceTree = "<group>"; }; + 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; }; + 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; }; + 32CA4F630368D1EE00C91783 /* Shell Script Helper_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Shell Script Helper_Prefix.pch"; sourceTree = "<group>"; }; + 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; }; + 8D1107320486CEB800E47090 /* Shell Script Helper.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Shell Script Helper.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + BA710FB409FBCBA900FD60AF /* icon.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = icon.icns; sourceTree = "<group>"; }; + BAB80F3309FBE2EE006E9366 /* ShellScriptHelper.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ShellScriptHelper.h; sourceTree = "<group>"; }; + BAB80F3409FBE2EE006E9366 /* ShellScriptHelper.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = ShellScriptHelper.m; sourceTree = "<group>"; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 8D11072E0486CEB800E47090 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 080E96DDFE201D6D7F000001 /* Classes */ = { + isa = PBXGroup; + children = ( + ); + name = Classes; + sourceTree = "<group>"; + }; + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = { + isa = PBXGroup; + children = ( + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */, + ); + name = "Linked Frameworks"; + sourceTree = "<group>"; + }; + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = { + isa = PBXGroup; + children = ( + 29B97324FDCFA39411CA2CEA /* AppKit.framework */, + 13E42FB307B3F0F600E4EEF1 /* CoreData.framework */, + 29B97325FDCFA39411CA2CEA /* Foundation.framework */, + ); + name = "Other Frameworks"; + sourceTree = "<group>"; + }; + 19C28FACFE9D520D11CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + 8D1107320486CEB800E47090 /* Shell Script Helper.app */, + ); + name = Products; + sourceTree = "<group>"; + }; + 29B97314FDCFA39411CA2CEA /* Shell Script Helper */ = { + isa = PBXGroup; + children = ( + 080E96DDFE201D6D7F000001 /* Classes */, + 29B97315FDCFA39411CA2CEA /* Other Sources */, + 29B97317FDCFA39411CA2CEA /* Resources */, + 29B97323FDCFA39411CA2CEA /* Frameworks */, + 19C28FACFE9D520D11CA2CBB /* Products */, + ); + name = "Shell Script Helper"; + sourceTree = "<group>"; + }; + 29B97315FDCFA39411CA2CEA /* Other Sources */ = { + isa = PBXGroup; + children = ( + 32CA4F630368D1EE00C91783 /* Shell Script Helper_Prefix.pch */, + 29B97316FDCFA39411CA2CEA /* main.m */, + BAB80F3309FBE2EE006E9366 /* ShellScriptHelper.h */, + BAB80F3409FBE2EE006E9366 /* ShellScriptHelper.m */, + ); + name = "Other Sources"; + sourceTree = "<group>"; + }; + 29B97317FDCFA39411CA2CEA /* Resources */ = { + isa = PBXGroup; + children = ( + BA710FB409FBCBA900FD60AF /* icon.icns */, + 8D1107310486CEB800E47090 /* Info.plist */, + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */, + 29B97318FDCFA39411CA2CEA /* MainMenu.nib */, + ); + name = Resources; + sourceTree = "<group>"; + }; + 29B97323FDCFA39411CA2CEA /* Frameworks */ = { + isa = PBXGroup; + children = ( + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */, + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */, + ); + name = Frameworks; + sourceTree = "<group>"; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 8D1107260486CEB800E47090 /* Shell Script Helper */ = { + isa = PBXNativeTarget; + buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "Shell Script Helper" */; + buildPhases = ( + 8D1107290486CEB800E47090 /* Resources */, + 8D11072C0486CEB800E47090 /* Sources */, + 8D11072E0486CEB800E47090 /* Frameworks */, + ); + buildRules = ( + ); + buildSettings = { + }; + dependencies = ( + ); + name = "Shell Script Helper"; + productInstallPath = "$(HOME)/Applications"; + productName = "Shell Script Helper"; + productReference = 8D1107320486CEB800E47090 /* Shell Script Helper.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 29B97313FDCFA39411CA2CEA /* Project object */ = { + isa = PBXProject; + buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Shell Script Helper" */; + buildSettings = { + }; + buildStyles = ( + 4A9504CCFFE6A4B311CA0CBA /* Debug */, + 4A9504CDFFE6A4B311CA0CBA /* Release */, + ); + hasScannedForEncodings = 1; + mainGroup = 29B97314FDCFA39411CA2CEA /* Shell Script Helper */; + projectDirPath = ""; + targets = ( + 8D1107260486CEB800E47090 /* Shell Script Helper */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 8D1107290486CEB800E47090 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8D11072A0486CEB800E47090 /* MainMenu.nib in Resources */, + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */, + BA710FB509FBCBA900FD60AF /* icon.icns in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 8D11072C0486CEB800E47090 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8D11072D0486CEB800E47090 /* main.m in Sources */, + BAB80F3509FBE2EE006E9366 /* ShellScriptHelper.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 089C165DFE840E0CC02AAC07 /* English */, + ); + name = InfoPlist.strings; + sourceTree = "<group>"; + }; + 29B97318FDCFA39411CA2CEA /* MainMenu.nib */ = { + isa = PBXVariantGroup; + children = ( + 29B97319FDCFA39411CA2CEA /* English */, + ); + name = MainMenu.nib; + sourceTree = "<group>"; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + C01FCF4B08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_FIX_AND_CONTINUE = YES; + GCC_MODEL_TUNING = G5; + GCC_OPTIMIZATION_LEVEL = 0; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "Shell Script Helper"; + WRAPPER_EXTENSION = app; + ZERO_LINK = YES; + }; + name = Debug; + }; + C01FCF4C08A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = ( + ppc, + i386, + ); + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_MODEL_TUNING = G5; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "Shell Script Helper"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; + C01FCF4F08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + PREBINDING = NO; + SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; + }; + name = Debug; + }; + C01FCF5008A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + PREBINDING = NO; + SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "Shell Script Helper" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4B08A954540054247B /* Debug */, + C01FCF4C08A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Shell Script Helper" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4F08A954540054247B /* Debug */, + C01FCF5008A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; +} Copied: trunk/client/osx/sshelper/ShellScriptHelper.h (from rev 82, trunk/client/osx/ShellScriptHelper.h) =================================================================== --- trunk/client/osx/sshelper/ShellScriptHelper.h (rev 0) +++ trunk/client/osx/sshelper/ShellScriptHelper.h 2006-04-29 22:09:39 UTC (rev 85) @@ -0,0 +1,18 @@ +/*********************************************************************** + ShellScriptHelper.h - Defines the interface to the main application + object. + + Copyright (c) 2006 by Pixel Corps. This program may be used under + the terms of the X11 license, a copy of which should have accompanied + this program, in the LICENSE file. +***********************************************************************/ + +#import <Cocoa/Cocoa.h> + +@interface ShellScriptHelper : NSObject +{ +} + +- (BOOL)application:(NSApplication*)sender openFile:(NSString*)pathname; + +@end Copied: trunk/client/osx/sshelper/ShellScriptHelper.m (from rev 83, trunk/client/osx/ShellScriptHelper.m) =================================================================== --- trunk/client/osx/sshelper/ShellScriptHelper.m (rev 0) +++ trunk/client/osx/sshelper/ShellScriptHelper.m 2006-04-29 22:09:39 UTC (rev 85) @@ -0,0 +1,86 @@ +/*********************************************************************** + ShellScriptHelper.m - The main application object: implements the + app's core functionality. + + Created 2006.04.23 by Warren Young + + Copyright (c) 2006 by Pixel Corps. This program may be used under + the terms of the X11 license, a copy of which should have accompanied + this program, in the LICENSE file. +***********************************************************************/ + +#import "ShellScriptHelper.h" + +#include <unistd.h> +#include <sys/wait.h> + +#include <signal.h> +#include <stdlib.h> + + +@implementation ShellScriptHelper + +//// application:openFile ////////////////////////////////////////////// +// Apple Event sent when the user launches a document (such as from the +// Finder) that we're associated with, so we are being asked to open +// that file. + +- (BOOL)application:(NSApplication*)sender openFile:(NSString*)pathname +{ + // Build /bin/sh command, and execute it + const char* debugOutput = "/tmp/ShellScriptHelper.debug"; + NSString* command = [NSString stringWithFormat:@"'%@' > %s 2>&1", + pathname, debugOutput]; + int exitCode, status = system([command UTF8String]); + + // Discern which failure mode we have encountered, if any. + if (status == -1) { + // system() call failed utterly + NSRunAlertPanel(@"fork() or waitpid() failed for command:", + @"%@", @"OK", nil, nil, pathname); + } + else if (!WIFEXITED(status)) { + // Command ran, but exited abnormally + if (WIFSIGNALED(status)) { + if (WCOREDUMP(status)) { + NSRunAlertPanel(@"Program core-dumped:", + @"%@", @"OK", nil, nil, pathname); + } + else { + NSRunAlertPanel(@"Command stopped due to signal:", + @"Signal %d", @"OK", nil, nil, + WSTOPSIG(status)); + } + } + else { + NSRunAlertPanel(@"Unknown failure when running command:", + @"Command: %@\n\nCode: 0x%X", @"OK", nil, + nil, command, status); + } + } + else if (exitCode = WEXITSTATUS(status)) { + // Command ran, but returned error code + if (exitCode > 128) { + int sig = exitCode - 128; + NSRunAlertPanel(@"Shell caught signal:", @"%s (%d)", + @"OK", nil, nil, sys_signame[sig], sig); + } + else { + NSRunAlertPanel(@"Command failed:", @"%@ returned %d", + @"OK", nil, nil, pathname, exitCode); + } + } + else { + // Command ran and returned 0, indicating success + unlink(debugOutput); + //NSRunAlertPanel(@"Successfully ran command:", @"%@", @"OK", + // nil, nil, command); + } + + // Terminate application; we've done what we were asked to do. + [NSApp stop:self]; + + return YES; +} + +@end Copied: trunk/client/osx/sshelper/icon.icns (from rev 80, trunk/client/osx/icon.icns) =================================================================== (Binary files differ) Copied: trunk/client/osx/sshelper/main.m (from rev 81, trunk/client/osx/main.m) =================================================================== --- trunk/client/osx/sshelper/main.m (rev 0) +++ trunk/client/osx/sshelper/main.m 2006-04-29 22:09:39 UTC (rev 85) @@ -0,0 +1,26 @@ +/*********************************************************************** + main.m - Main module of helper app to launch Bourne Shell scripts + marked with a our creator code. Needed to allow C4D on Mac to + launch shell scripts because that app uses traditional Mac OS + methods of opening files, which doesn't work well with Unix + mechanisms. + + Created 2006.04.23 by Warren Young + + Copyright (c) 2006 by Pixel Corps. This program may be used under + the terms of the X11 license, a copy of which should have accompanied + this program, in the LICENSE file. +***********************************************************************/ + +#import <Cocoa/Cocoa.h> + +#include <unistd.h> + + +//// main ////////////////////////////////////////////////////////////// + +int main(int argc, char *argv[]) +{ + // Start application's main event loop + return NSApplicationMain(argc, (const char**)argv); +} Copied: trunk/client/osx/sshelper/mktest (from rev 80, trunk/client/osx/mktest) =================================================================== --- trunk/client/osx/sshelper/mktest (rev 0) +++ trunk/client/osx/sshelper/mktest 2006-04-29 22:09:39 UTC (rev 85) @@ -0,0 +1,5 @@ +#!/bin/sh +echo '#!/bin/sh' > test +echo 'touch /tmp/do-sh.`date +%Y%m%d-%H%M`' >> test +chmod +x test +/Developer/Tools/SetFile -c 'PXC ' -t 'DoSh' test This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tan...@us...> - 2006-05-19 07:40:22
|
Revision: 179 Author: tangentsoft Date: 2006-05-19 00:40:04 -0700 (Fri, 19 May 2006) ViewCVS: http://svn.sourceforge.net/pxcdd/?rev=179&view=rev Log Message: ----------- Moved client/osx/installer/* to client/osx Added Paths: ----------- trunk/client/osx/Info.plist trunk/client/osx/icon.icns trunk/client/osx/mkapp Removed Paths: ------------- trunk/client/osx/installer/Info.plist trunk/client/osx/installer/icon.icns trunk/client/osx/installer/mkapp Copied: trunk/client/osx/Info.plist (from rev 178, trunk/client/osx/installer/Info.plist) =================================================================== --- trunk/client/osx/Info.plist (rev 0) +++ trunk/client/osx/Info.plist 2006-05-19 07:40:04 UTC (rev 179) @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleSignature</key> + <string>PXC1</string> + <key>CFBundleVersion</key> + <string>0.3</string> + <key>NSHumanReadableCopyright</key> + <string>Copyright © 2006, Pixel Corps, +All Rights Reserved.</string> + <key>CFBundleDocumentTypes</key> + <array> + <dict> + <key>CFBundleTypeName</key> + <string>pxcddup.py Command Line Arguments</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>DDUP</string> + </array> + <key>CFBundleTypeRole</key> + <string>Shell</string> + </dict> + </array> +</dict> +</plist> Copied: trunk/client/osx/icon.icns (from rev 178, trunk/client/osx/installer/icon.icns) =================================================================== (Binary files differ) Deleted: trunk/client/osx/installer/Info.plist =================================================================== --- trunk/client/osx/installer/Info.plist 2006-05-19 04:35:16 UTC (rev 178) +++ trunk/client/osx/installer/Info.plist 2006-05-19 07:40:04 UTC (rev 179) @@ -1,32 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> -<plist version="1.0"> -<dict> - <key>CFBundleDevelopmentRegion</key> - <string>English</string> - <key>CFBundleInfoDictionaryVersion</key> - <string>6.0</string> - <key>CFBundlePackageType</key> - <string>APPL</string> - <key>CFBundleSignature</key> - <string>PXC1</string> - <key>CFBundleVersion</key> - <string>0.3</string> - <key>NSHumanReadableCopyright</key> - <string>Copyright © 2006, Pixel Corps, -All Rights Reserved.</string> - <key>CFBundleDocumentTypes</key> - <array> - <dict> - <key>CFBundleTypeName</key> - <string>pxcddup.py Command Line Arguments</string> - <key>CFBundleTypeOSTypes</key> - <array> - <string>DDUP</string> - </array> - <key>CFBundleTypeRole</key> - <string>Shell</string> - </dict> - </array> -</dict> -</plist> Deleted: trunk/client/osx/installer/icon.icns =================================================================== (Binary files differ) Deleted: trunk/client/osx/installer/mkapp =================================================================== --- trunk/client/osx/installer/mkapp 2006-05-19 04:35:16 UTC (rev 178) +++ trunk/client/osx/installer/mkapp 2006-05-19 07:40:04 UTC (rev 179) @@ -1,4 +0,0 @@ -#!/bin/sh -rm -rf pxcddup.app -py2applet ../../pxcddup/pxcddup.py icon.icns Info.plist && - mv ../../pxcddup/pxcddup.app . Copied: trunk/client/osx/mkapp (from rev 178, trunk/client/osx/installer/mkapp) =================================================================== --- trunk/client/osx/mkapp (rev 0) +++ trunk/client/osx/mkapp 2006-05-19 07:40:04 UTC (rev 179) @@ -0,0 +1,4 @@ +#!/bin/sh +rm -rf pxcddup.app +py2applet ../../pxcddup/pxcddup.py icon.icns Info.plist && + mv ../../pxcddup/pxcddup.app . This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tan...@us...> - 2006-05-19 14:42:47
|
Revision: 192 Author: tangentsoft Date: 2006-05-19 07:42:40 -0700 (Fri, 19 May 2006) ViewCVS: http://svn.sourceforge.net/pxcdd/?rev=192&view=rev Log Message: ----------- pxcdd-upload.cof v0.4 Modified Paths: -------------- trunk/client/c4d/pxcdd-upload.cof trunk/client/osx/Info.plist Modified: trunk/client/c4d/pxcdd-upload.cof =================================================================== --- trunk/client/c4d/pxcdd-upload.cof 2006-05-19 14:33:13 UTC (rev 191) +++ trunk/client/c4d/pxcdd-upload.cof 2006-05-19 14:42:40 UTC (rev 192) @@ -262,7 +262,7 @@ println("-------------"); println("Pixel Corps digital dailies model upload script started."); - println("$Revision$"); + println("Version 0.4, $Revision$"); println("-------------"); } Modified: trunk/client/osx/Info.plist =================================================================== --- trunk/client/osx/Info.plist 2006-05-19 14:33:13 UTC (rev 191) +++ trunk/client/osx/Info.plist 2006-05-19 14:42:40 UTC (rev 192) @@ -11,7 +11,7 @@ <key>CFBundleSignature</key> <string>PXC1</string> <key>CFBundleVersion</key> - <string>0.3</string> + <string>0.4</string> <key>NSHumanReadableCopyright</key> <string>Copyright © 2006, Pixel Corps, All Rights Reserved.</string> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tan...@us...> - 2006-05-19 15:21:22
|
Revision: 195 Author: tangentsoft Date: 2006-05-19 08:21:08 -0700 (Fri, 19 May 2006) ViewCVS: http://svn.sourceforge.net/pxcdd/?rev=195&view=rev Log Message: ----------- Initial cut at OS X installers Added Paths: ----------- trunk/client/osx/PXC Digital Dailies clients.pmproj trunk/client/osx/c4d.pmproj trunk/client/osx/license.txt trunk/client/osx/mkinst trunk/client/osx/pxcddup.pmproj trunk/client/osx/welcome.txt Removed Paths: ------------- trunk/client/osx/mkapp Property Changed: ---------------- trunk/client/osx/ Property changes on: trunk/client/osx ___________________________________________________________________ Name: svn:ignore - + *.mpkg *.pkg inst Added: trunk/client/osx/PXC Digital Dailies clients.pmproj =================================================================== (Binary files differ) Property changes on: trunk/client/osx/PXC Digital Dailies clients.pmproj ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/client/osx/c4d.pmproj =================================================================== (Binary files differ) Property changes on: trunk/client/osx/c4d.pmproj ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/client/osx/license.txt =================================================================== --- trunk/client/osx/license.txt (rev 0) +++ trunk/client/osx/license.txt 2006-05-19 15:21:08 UTC (rev 195) @@ -0,0 +1,12 @@ +The C4D plugins are released under the X11 license: + +Copyright (c) 2006 Pixel Corps + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +All of the PXC-developed code in the pxcddup utility is also released under that license, but some of the libraries it uses are licensed differently, such as under the GNU Lesser General Public License. Deleted: trunk/client/osx/mkapp =================================================================== --- trunk/client/osx/mkapp 2006-05-19 14:44:02 UTC (rev 194) +++ trunk/client/osx/mkapp 2006-05-19 15:21:08 UTC (rev 195) @@ -1,4 +0,0 @@ -#!/bin/sh -rm -rf pxcddup.app -py2applet ../../pxcddup/pxcddup.py icon.icns Info.plist && - mv ../../pxcddup/pxcddup.app . Copied: trunk/client/osx/mkinst (from rev 179, trunk/client/osx/mkapp) =================================================================== --- trunk/client/osx/mkinst (rev 0) +++ trunk/client/osx/mkinst 2006-05-19 15:21:08 UTC (rev 195) @@ -0,0 +1,15 @@ +#!/bin/sh +MAIN_DIR=inst +rm -rf $MAIN_DIR +C4D_DIR=$MAIN_DIR/c4d/plugins/PXCDD +mkdir -p "$C4D_DIR" +PXCDDUP_DIR="$MAIN_DIR/pxcddup" +mkdir -p "$PXCDDUP_DIR" + +cp ../c4d/*.co[fh] ../c4d/LICENSE "$C4D_DIR" +cp -R ../c4d/res "$C4D_DIR" +find -d inst -type d -name .svn -exec rm -rf {} \; + +py2applet ../pxcddup/pxcddup.py icon.icns Info.plist && + mv ../pxcddup/pxcddup.app "$PXCDDUP_DIR" +cp ../pxcddup/LICENSE "$PXCDDUP_DIR" Added: trunk/client/osx/pxcddup.pmproj =================================================================== (Binary files differ) Property changes on: trunk/client/osx/pxcddup.pmproj ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/client/osx/welcome.txt =================================================================== --- trunk/client/osx/welcome.txt (rev 0) +++ trunk/client/osx/welcome.txt 2006-05-19 15:21:08 UTC (rev 195) @@ -0,0 +1,9 @@ +This installs the client pieces of the PXC Digital Dailies system: + + - The uploader plugin for C4D + + - The texture versioning plugin for C4D + + - The pxcddup utility program + +The C4D plugins are optional. Click the Customize button after selecting the installation location, and uncheck the C4D plugins to prevent them from being installed. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tan...@us...> - 2006-05-19 16:26:27
|
Revision: 196 Author: tangentsoft Date: 2006-05-19 09:26:20 -0700 (Fri, 19 May 2006) ViewCVS: http://svn.sourceforge.net/pxcdd/?rev=196&view=rev Log Message: ----------- - Added OS X installer's background image to repo -- new image, scaled to fit properly in the dialog. - Using new background image in project file, instead of hi-res original elsewhere on my HDD. Modified Paths: -------------- trunk/client/osx/PXC Digital Dailies clients.pmproj Added Paths: ----------- trunk/client/osx/background.tif Modified: trunk/client/osx/PXC Digital Dailies clients.pmproj =================================================================== (Binary files differ) Added: trunk/client/osx/background.tif =================================================================== (Binary files differ) Property changes on: trunk/client/osx/background.tif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tan...@us...> - 2006-05-19 16:30:20
|
Revision: 197 Author: tangentsoft Date: 2006-05-19 09:30:16 -0700 (Fri, 19 May 2006) ViewCVS: http://svn.sourceforge.net/pxcdd/?rev=197&view=rev Log Message: ----------- Added mkdist script, which packages OS X installers up in a zip file. We should do something slicker for the release, but this will do for now. Added Paths: ----------- trunk/client/osx/mkdist Property Changed: ---------------- trunk/client/osx/ Property changes on: trunk/client/osx ___________________________________________________________________ Name: svn:ignore - *.mpkg *.pkg inst + *.mpkg *.pkg *.zip inst Added: trunk/client/osx/mkdist =================================================================== --- trunk/client/osx/mkdist (rev 0) +++ trunk/client/osx/mkdist 2006-05-19 16:30:16 UTC (rev 197) @@ -0,0 +1,2 @@ +#!/bin/sh +zip -9r pxcdd-clients-0.4.zip *.mpkg *.pkg Property changes on: trunk/client/osx/mkdist ___________________________________________________________________ Name: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tan...@us...> - 2006-05-19 16:59:51
|
Revision: 198 Author: tangentsoft Date: 2006-05-19 09:59:45 -0700 (Fri, 19 May 2006) ViewCVS: http://svn.sourceforge.net/pxcdd/?rev=198&view=rev Log Message: ----------- Moved *.pkg inside *.mpkg, and took care of symlinks bloating package size. Now we only have one file to zip, it's smaller, and comletely self-contained. Modified Paths: -------------- trunk/client/osx/PXC Digital Dailies clients.pmproj trunk/client/osx/mkdist Modified: trunk/client/osx/PXC Digital Dailies clients.pmproj =================================================================== (Binary files differ) Modified: trunk/client/osx/mkdist =================================================================== --- trunk/client/osx/mkdist 2006-05-19 16:30:16 UTC (rev 197) +++ trunk/client/osx/mkdist 2006-05-19 16:59:45 UTC (rev 198) @@ -1,2 +1,19 @@ -#!/bin/sh -zip -9r pxcdd-clients-0.4.zip *.mpkg *.pkg +#!/bin/bash +if [ -d *.mpkg ] +then + for p in *.pkg + do + if [ -d "$p" ] + then + cp -R "$p" *.mpkg/Contents/Packages + fi + done + + rm *.zip + zip -9rqy pxcdd-clients-0.4.zip *.mpkg +else + echo No metapackage created! + exit 1 +fi + + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tan...@us...> - 2006-06-05 23:42:10
|
Revision: 227 Author: tangentsoft Date: 2006-06-05 09:14:43 -0700 (Mon, 05 Jun 2006) ViewCVS: http://svn.sourceforge.net/pxcdd/?rev=227&view=rev Log Message: ----------- Changed v0.4 version numbers to v0.90, in preparation for beta test Modified Paths: -------------- trunk/client/c4d/pxcdd-texVersion.cof trunk/client/c4d/pxcdd-upload.cof trunk/client/osx/mkdist Modified: trunk/client/c4d/pxcdd-texVersion.cof =================================================================== --- trunk/client/c4d/pxcdd-texVersion.cof 2006-06-05 03:53:39 UTC (rev 226) +++ trunk/client/c4d/pxcdd-texVersion.cof 2006-06-05 16:14:43 UTC (rev 227) @@ -276,7 +276,7 @@ println("-------------"); println("Pixel Corps digital dailies texVersion script started."); - println("Version 0.4, $Revision: 136 $"); + println("Version 0.90, $Revision: 136 $"); println("-------------"); } Modified: trunk/client/c4d/pxcdd-upload.cof =================================================================== --- trunk/client/c4d/pxcdd-upload.cof 2006-06-05 03:53:39 UTC (rev 226) +++ trunk/client/c4d/pxcdd-upload.cof 2006-06-05 16:14:43 UTC (rev 227) @@ -262,7 +262,7 @@ println("-------------"); println("Pixel Corps digital dailies model upload script started."); - println("Version 0.4, $Revision$"); + println("Version 0.90, $Revision$"); println("-------------"); } Modified: trunk/client/osx/mkdist =================================================================== --- trunk/client/osx/mkdist 2006-06-05 03:53:39 UTC (rev 226) +++ trunk/client/osx/mkdist 2006-06-05 16:14:43 UTC (rev 227) @@ -10,7 +10,7 @@ done rm *.zip - zip -9rqy pxcdd-clients-0.4.zip *.mpkg + zip -9rqy pxcdd-clients-0.90.zip *.mpkg else echo No metapackage created! exit 1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tan...@us...> - 2006-06-13 08:53:33
|
Revision: 282 Author: tangentsoft Date: 2006-06-13 01:53:24 -0700 (Tue, 13 Jun 2006) ViewCVS: http://svn.sourceforge.net/pxcdd/?rev=282&view=rev Log Message: ----------- Updated OS X install setup for 0.90 final release Modified Paths: -------------- trunk/client/osx/PXC Digital Dailies clients.pmproj trunk/client/osx/c4d.pmproj trunk/client/osx/mkinst trunk/client/osx/pxcddup.pmproj Modified: trunk/client/osx/PXC Digital Dailies clients.pmproj =================================================================== (Binary files differ) Modified: trunk/client/osx/c4d.pmproj =================================================================== (Binary files differ) Modified: trunk/client/osx/mkinst =================================================================== --- trunk/client/osx/mkinst 2006-06-13 04:07:50 UTC (rev 281) +++ trunk/client/osx/mkinst 2006-06-13 08:53:24 UTC (rev 282) @@ -6,7 +6,7 @@ PXCDDUP_DIR="$MAIN_DIR/pxcddup" mkdir -p "$PXCDDUP_DIR" -cp ../c4d/*.co[fh] ../c4d/LICENSE "$C4D_DIR" +cp ../c4d/*.co[fh] ../version.txt ../c4d/LICENSE "$C4D_DIR" cp -R ../c4d/res "$C4D_DIR" find -d inst -type d -name .svn -exec rm -rf {} \; Modified: trunk/client/osx/pxcddup.pmproj =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tan...@us...> - 2006-07-10 05:42:08
|
Revision: 379 Author: tangentsoft Date: 2006-07-09 22:42:04 -0700 (Sun, 09 Jul 2006) ViewCVS: http://svn.sourceforge.net/pxcdd/?rev=379&view=rev Log Message: ----------- OS X client installers v1.0 Modified Paths: -------------- trunk/client/osx/c4d.pmproj trunk/client/osx/pxcddup.pmproj Modified: trunk/client/osx/c4d.pmproj =================================================================== (Binary files differ) Modified: trunk/client/osx/pxcddup.pmproj =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |