]> git.saurik.com Git - wxWidgets.git/commitdiff
More tool script tweaks
authorRobin Dunn <robin@alldunn.com>
Thu, 8 Aug 2002 23:02:41 +0000 (23:02 +0000)
committerRobin Dunn <robin@alldunn.com>
Thu, 8 Aug 2002 23:02:41 +0000 (23:02 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16430 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/distrib/make_installer.py
wxPython/scripts/CreateBatchFiles.py
wxPython/scripts/img2png.bat
wxPython/scripts/img2py.bat
wxPython/scripts/img2xpm.bat
wxPython/scripts/pycrust.bat [new file with mode: 0755]
wxPython/scripts/pyshell.bat [new file with mode: 0755]
wxPython/scripts/xrced.bat
wxPython/setup.py

index 23418db29aa29f3afc1a6f14cd9e91bc6ef54f24..d6fbbe81c4d38df83572b58cbe60e288b2d5a0ea 100644 (file)
@@ -151,6 +151,8 @@ Source: "scripts\img2png";                  DestDir: "{code:GetPythonDir}\Script
 Source: "scripts\img2py";                   DestDir: "{code:GetPythonDir}\Scripts"; Components: tools
 Source: "scripts\img2xpm";                  DestDir: "{code:GetPythonDir}\Scripts"; Components: tools
 Source: "scripts\xrced";                    DestDir: "{code:GetPythonDir}\Scripts"; Components: tools
+Source: "scripts\pyshell";                  DestDir: "{code:GetPythonDir}\Scripts"; Components: tools
+Source: "scripts\pycrust";                  DestDir: "{code:GetPythonDir}\Scripts"; Components: tools
 
 Source: "samples\doodle\*.py";              DestDir: "{app}\wxPython\samples\doodle"; Components: samples
 Source: "samples\doodle\*.txt";             DestDir: "{app}\wxPython\samples\doodle"; Components: samples
@@ -194,14 +196,15 @@ Filename: "{code:GetPythonDir}\python.exe";  Parameters: "CreateBatchFiles.py";
 
 [Icons]
 Name: "{group}\Run the DEMO";          Filename: "{code:GetPythonDir}\pythonw.exe";   WorkingDir: "{app}\wxPython\demo";   Parameters: "demo.py"; IconFilename: "{app}\wxPython\demo\wxpdemo.ico"; Components: core
-Name: "{group}\PyCrust";               Filename: "{code:GetPythonDir}\pythonw.exe";   WorkingDir: "c:\";                   Parameters: "{app}\wxPython\lib\PyCrust\PyCrustApp.py";  IconFilename: "{app}\wxPython\lib\PyCrust\PyCrust.ico"; Components: core
+Name: "{group}\PyCrust";               Filename: "{code:GetPythonDir}\pythonw.exe";   WorkingDir: "c:\";                   Parameters: "{code:GetPythonDir}\Scripts\pycrust";  IconFilename: "{app}\wxPython\lib\PyCrust\PyCrust.ico"; Components: core
+Name: "{group}\PyShell";               Filename: "{code:GetPythonDir}\pythonw.exe";   WorkingDir: "c:\";                   Parameters: "{code:GetPythonDir}\Scripts\pyshell";  IconFilename: "{app}\wxPython\lib\PyCrust\PyCrust.ico"; Components: core
 Name: "{group}\wxWindows Reference";   Filename: "{app}\wxPython\docs\wx.chm";                Components: docs
 Name: "{group}\wxOGL Reference";       Filename: "{app}\wxPython\docs\ogl.chm";               Components: docs
 Name: "{group}\licence.txt";           Filename: "{app}\wxPython\docs\licence\licence.txt";   Components: core
 Name: "{group}\README.txt";            Filename: "{app}\wxPython\docs\README.txt";            Components: core
 Name: "{group}\CHANGES.txt";           Filename: "{app}\wxPython\docs\CHANGES.txt";           Components: core
 Name: "{group}\Sample Apps";           Filename: "{app}\wxPython\samples"; Components: samples
-Name: "{group}\Resource Editor";       Filename: "{code:GetPythonDir}\pythonw.exe";   WorkingDir: "c:\";   Parameters: "{app}\wxPython\Tools\XRCed\xrced.py"; IconFilename: "{app}\wxPython\Tools\XRCed\xrced.ico"; Components: tools
+Name: "{group}\Resource Editor";       Filename: "{code:GetPythonDir}\pythonw.exe";   WorkingDir: "c:\";   Parameters: "{code:GetPythonDir}\Scripts\xrced"; IconFilename: "{app}\wxPython\Tools\XRCed\xrced.ico"; Components: tools
 
 
 ;;------------------------------------------------------------
index ac4a84a0849dfd49ebee229d51da06f71aa9d768..60c4d520a43634468d71030f26fe3c7642aaa236 100644 (file)
@@ -13,7 +13,7 @@
 import sys, os
 
 python = sys.executable
-pythonw = ow.path.join(os.path.split(python)[0], 'pythonw.exe')
+pythonw = 'start ' + os.path.join(os.path.split(python)[0], 'pythonw.exe')
 scriptdir = os.getcwd()
 
 scripts = [ ("img2png", 0),
index 76c03115393cf29129ecbd5c9a6ee15285c36dde..d926caa621b3de7b5ce4fe50ab979a94f8aa5347 100755 (executable)
@@ -1,2 +1,3 @@
 @echo off
+
 C:\TOOLS\PYTHON22\PYTHON.EXE C:\projects\wx\wxPython\scripts\img2png %1 %2 %3 %4 %5 %6 %7 %8 %9
index f1f402483cd7c724b2bd1a3804f03daeae4d0e08..b63e13ac6288112f9463d7d5fdee3cf979baadbe 100755 (executable)
@@ -1,2 +1,3 @@
 @echo off
+
 C:\TOOLS\PYTHON22\PYTHON.EXE C:\projects\wx\wxPython\scripts\img2py %1 %2 %3 %4 %5 %6 %7 %8 %9
index 5fe28d97945150f0be82954ab26ea3d437bc1546..adda6be6de6116fdf5b25f2ab21d9602fa69fc33 100755 (executable)
@@ -1,2 +1,3 @@
 @echo off
+
 C:\TOOLS\PYTHON22\PYTHON.EXE C:\projects\wx\wxPython\scripts\img2xpm %1 %2 %3 %4 %5 %6 %7 %8 %9
diff --git a/wxPython/scripts/pycrust.bat b/wxPython/scripts/pycrust.bat
new file mode 100755 (executable)
index 0000000..6f4b5dc
--- /dev/null
@@ -0,0 +1,3 @@
+@echo off
+
+start C:\TOOLS\PYTHON22\pythonw.exe C:\projects\wx\wxPython\scripts\pycrust %1 %2 %3 %4 %5 %6 %7 %8 %9
diff --git a/wxPython/scripts/pyshell.bat b/wxPython/scripts/pyshell.bat
new file mode 100755 (executable)
index 0000000..6e02101
--- /dev/null
@@ -0,0 +1,3 @@
+@echo off
+
+start C:\TOOLS\PYTHON22\pythonw.exe C:\projects\wx\wxPython\scripts\pyshell %1 %2 %3 %4 %5 %6 %7 %8 %9
index 4f80e8a93700f99946d8be91cb85825ac6852f08..e3b87fa7939ad47784a6eb70237519709dbd5220 100755 (executable)
@@ -1,2 +1,3 @@
 @echo off
-C:\TOOLS\PYTHON22\PYTHON.EXE C:\projects\wx\wxPython\scripts\xrced %1 %2 %3 %4 %5 %6 %7 %8 %9
+
+start C:\TOOLS\PYTHON22\pythonw.exe C:\projects\wx\wxPython\scripts\xrced %1 %2 %3 %4 %5 %6 %7 %8 %9
index 0831e6d9b851f8b46f607579eafea47c650b0d51..fdea8d98262ea4acf82914a3d9417f6a6316dbd4 100755 (executable)
@@ -919,6 +919,8 @@ if __name__ == "__main__":
                          'scripts/img2xpm',
                          'scripts/img2py',
                          'scripts/xrced',
+                         'scripts/pyshell',
+                         'scripts/pycrust',
                          ],
               )