source: python/trunk/Mac/IDLE/Info.plist.in

Last change on this file was 391, checked in by dmik, 12 years ago

python: Merge vendor 2.7.6 to trunk.

  • Property svn:eol-style set to native
File size: 1.7 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3<plist version="1.0">
4<dict>
5 <key>CFBundleDevelopmentRegion</key>
6 <string>English</string>
7 <key>CFBundleDocumentTypes</key>
8 <array>
9 <dict>
10 <key>CFBundleTypeExtensions</key>
11 <array>
12 <string>py</string>
13 <string>pyw</string>
14 </array>
15 <key>CFBundleTypeIconFile</key>
16 <string>PythonSource.icns</string>
17 <key>CFBundleTypeName</key>
18 <string>Python Script</string>
19 <key>CFBundleTypeRole</key>
20 <string>Editor</string>
21 </dict>
22 <dict>
23 <key>CFBundleTypeExtensions</key>
24 <array>
25 <string>pyc</string>
26 <string>pyo</string>
27 </array>
28 <key>CFBundleTypeIconFile</key>
29 <string>PythonCompiled.icns</string>
30 <key>CFBundleTypeName</key>
31 <string>Python Bytecode Document</string>
32 <key>CFBundleTypeRole</key>
33 <string>Editor</string>
34 </dict>
35 </array>
36 <key>CFBundleExecutable</key>
37 <string>IDLE</string>
38 <key>CFBundleGetInfoString</key>
39 <string>%VERSION%, © 2001-2013 Python Software Foundation</string>
40 <key>CFBundleIconFile</key>
41 <string>IDLE.icns</string>
42 <key>CFBundleIdentifier</key>
43 <string>org.python.IDLE</string>
44 <key>CFBundleInfoDictionaryVersion</key>
45 <string>6.0</string>
46 <key>CFBundleName</key>
47 <string>IDLE</string>
48 <key>CFBundlePackageType</key>
49 <string>APPL</string>
50 <key>CFBundleShortVersionString</key>
51 <string>%VERSION%</string>
52 <key>CFBundleVersion</key>
53 <string>%VERSION%</string>
54 <key>NSHighResolutionCapable</key>
55 <true/>
56<!--
57 <key>LSMinimumSystemVersionByArchitecture</key>
58 <dict>
59 <key>x86_64</key>
60 <string>10.6.0</string>
61 <key>ppc64</key>
62 <string>10.6.0</string>
63 </dict>
64-->
65</dict>
66</plist>
Note: See TracBrowser for help on using the repository browser.