|
From: Kevin A. <ka...@us...> - 2004-08-18 16:03:48
|
Update of /cvsroot/pythoncard/PythonCard/tools/codeEditor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10512 Modified Files: Info.plist macbuild.py Log Message: removed sys.argv handling Index: Info.plist =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/codeEditor/Info.plist,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Info.plist 18 Aug 2004 15:43:04 -0000 1.1 --- Info.plist 18 Aug 2004 16:03:37 -0000 1.2 *************** *** 47,51 **** </array> <key>CFBundleTypeName</key> ! <string>NSStringPboardType</string> <key>CFBundleTypeOSTypes</key> <array> --- 47,51 ---- </array> <key>CFBundleTypeName</key> ! <string>Python Module</string> <key>CFBundleTypeOSTypes</key> <array> Index: macbuild.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/codeEditor/macbuild.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** macbuild.py 18 Aug 2004 15:43:04 -0000 1.4 --- macbuild.py 18 Aug 2004 16:03:37 -0000 1.5 *************** *** 20,24 **** # drag&dropped filenames show up in sys.argv ! myapp.argv_emulation=1 # make this app self contained myapp.standalone = 1 --- 20,26 ---- # drag&dropped filenames show up in sys.argv ! # this doesn't seem to work, need to add additional ! # import argvemulator in my code? ! #myapp.argv_emulation=1 # make this app self contained myapp.standalone = 1 |