diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-03-29 23:46:34 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-03-29 23:46:34 (GMT) |
commit | 8134976fee0e71a6d253972a2e705f1f8bf1ffc7 (patch) | |
tree | 4582f6a4ce6d9fd3a5a2502f71e11f0654fc6585 /Mac | |
parent | 9aa8fd0b7d71238e7c5380f05a0e73be36f34364 (diff) | |
download | cpython-8134976fee0e71a6d253972a2e705f1f8bf1ffc7.zip cpython-8134976fee0e71a6d253972a2e705f1f8bf1ffc7.tar.gz cpython-8134976fee0e71a6d253972a2e705f1f8bf1ffc7.tar.bz2 |
Auxiliary files for building the IDE applet. Running the IDE through
BuildApplet for MachoPython now seems to do the right thing, yeah!
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Tools/IDE/PythonIDE.icns | bin | 0 -> 51308 bytes | |||
-rw-r--r-- | Mac/Tools/IDE/PythonIDE.plist | 57 |
2 files changed, 57 insertions, 0 deletions
diff --git a/Mac/Tools/IDE/PythonIDE.icns b/Mac/Tools/IDE/PythonIDE.icns Binary files differnew file mode 100644 index 0000000..cd520cc --- /dev/null +++ b/Mac/Tools/IDE/PythonIDE.icns diff --git a/Mac/Tools/IDE/PythonIDE.plist b/Mac/Tools/IDE/PythonIDE.plist new file mode 100644 index 0000000..4a1a602 --- /dev/null +++ b/Mac/Tools/IDE/PythonIDE.plist @@ -0,0 +1,57 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd"> +<plist version="0.9"> +<dict> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleDocumentTypes</key> + <array> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>py</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>PythonSource.icns</string> + <key>CFBundleTypeName</key> + <string>Python Module</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>TEXT</string> + </array> + <key>CFBundleTypeRole</key> + <string>Editor</string> + </dict> + </array> + <key>CFBundleExecutable</key> + <string>python</string> + + <key>CFBundleGetInfoString</key> + <string>Python IDE version 2.3, (c) 2002 Python Software Foundation.</string> + <key>CFBundleLongVersionString</key> + <string>2.3, (c) 2002 Python Software Foundation.</string> + <key>NSHumanReadableCopyright</key> + <string>Copyright 2002 Python Software Foundation.</string> + <key>CFBundleShortVersionString</key> + <string>2.3</string> + + <key>CFBundleIconFile</key> + <string>PythonIDE.icns</string> + <key>CFBundleIdentifier</key> + <string>org.python.pythonide</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>PythonIDE</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleSignature</key> + <string>Pide</string> + <key>CFBundleVersion</key> + <string>2.3</string> + <key>LSRequiresCarbon</key> + <true/> + <key>CSResourcesFileMapped</key> + <true/> +</dict> +</plist> |