From: Jack Jansen Date: Tue, 4 Sep 2001 21:28:03 +0000 (+0000) Subject: Template for an OSX PythonInterpreter application. X-Git-Tag: v2.2a3~109 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f6af601dd4de7b7612737bf0c393664551cab468;p=python Template for an OSX PythonInterpreter application. --- diff --git a/Mac/OSXResources/app/Info.plist b/Mac/OSXResources/app/Info.plist new file mode 100644 index 0000000000..1a3c2e3b45 --- /dev/null +++ b/Mac/OSXResources/app/Info.plist @@ -0,0 +1,65 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleDocumentTypes + + + CFBundleTypeExtensions + + .py + + CFBundleTypeIconFile + PythonSource.icns + CFBundleTypeName + Python Module + CFBundleTypeOSTypes + + TEXT + + CFBundleTypeRole + Viewer + + + CFBundleTypeExtensions + + .pyc + + CFBundleTypeIconFile + PythonCompiled.icns + CFBundleTypeName + Python Compiled Module + CFBundleTypeOSTypes + + PYC + + CFBundleTypeRole + Viewer + + + CFBundleExecutable + python + CFBundleGetInfoString + Python Interpreter version 2.2a3, (c) 2001 Python Software Foundation. + CFBundleIconFile + PythonInterpreter.icns + CFBundleIdentifier + org.python.interpreter + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + PythonInterpreter + CFBundlePackageType + APPL + CFBundleShortVersionString + Python Interpreter version 2.2a3 + CFBundleSignature + PytX + CFBundleVersion + 2.2a3 + CSResourcesFileMapped + + + diff --git a/Mac/OSXResources/app/PkgInfo b/Mac/OSXResources/app/PkgInfo new file mode 100644 index 0000000000..67c491a8fc --- /dev/null +++ b/Mac/OSXResources/app/PkgInfo @@ -0,0 +1 @@ +APPLPytX \ No newline at end of file diff --git a/Mac/OSXResources/app/Resources/English.lproj/InfoPlist.strings b/Mac/OSXResources/app/Resources/English.lproj/InfoPlist.strings new file mode 100644 index 0000000000..c30ddb2284 Binary files /dev/null and b/Mac/OSXResources/app/Resources/English.lproj/InfoPlist.strings differ diff --git a/Mac/OSXResources/app/Resources/PythonCompiled.icns b/Mac/OSXResources/app/Resources/PythonCompiled.icns new file mode 100644 index 0000000000..afead3e42e Binary files /dev/null and b/Mac/OSXResources/app/Resources/PythonCompiled.icns differ diff --git a/Mac/OSXResources/app/Resources/PythonInterpreter.icns b/Mac/OSXResources/app/Resources/PythonInterpreter.icns new file mode 100644 index 0000000000..d5dd12fde3 Binary files /dev/null and b/Mac/OSXResources/app/Resources/PythonInterpreter.icns differ diff --git a/Mac/OSXResources/app/Resources/PythonSource.icns b/Mac/OSXResources/app/Resources/PythonSource.icns new file mode 100644 index 0000000000..4ac7a96874 Binary files /dev/null and b/Mac/OSXResources/app/Resources/PythonSource.icns differ