changed:
authorClaus Gittinger <cg@exept.de>
Wed, 06 Oct 2010 09:54:45 +0200
changeset 13089 f31a89295700
parent 13088 fd588a4030f2
child 13090 827d5322948f
changed: #start #usage
StandaloneStartup.st
--- a/StandaloneStartup.st	Tue Oct 05 18:05:30 2010 +0200
+++ b/StandaloneStartup.st	Wed Oct 06 09:54:45 2010 +0200
@@ -659,9 +659,9 @@
 
         self verboseInfo:('args: ', CommandLineArguments asStringCollection asString).
 
-        "--noRemote - do not reuse an existing application instance,
+        "--newAppInstance - do not reuse an existing application instance,
          but run in a separate process"
-        idx := CommandLineArguments indexOfAny:#('--noRemote').
+        idx := CommandLineArguments indexOfAny:#('--newAppInstance').
         idx == 0 ifTrue:[
             self shouldReuseRunningApplication ifTrue:[
                 "Multiple Application support:
@@ -687,7 +687,7 @@
         self main
     ].
 
-    "Modified: / 04-08-2010 / 12:30:05 / cg"
+    "Modified: / 06-10-2010 / 09:43:44 / cg"
 !
 
 startStartBlockProcess
@@ -709,25 +709,23 @@
 !
 
 usage
-    Stderr nextPutLine:'usage:'.
-    Stderr nextPutLine:'  ',self applicationName,' [options...]'.
-    Stderr nextPutLine:'    options:'.
-    Stderr nextPutLine:'          --help .................. output this message'.
-    Stderr nextPutLine:'          --verbose ............... verbose startup'.
-    Stderr nextPutLine:'          --noBanner .............. no splash screen'.
-    Stderr nextPutLine:'          --noRemote .............. start as its own application process (do not reuse a running instance)'.
+    Stderr nextPutLine:'usage: ',self applicationName,' [options...]'.
+    Stderr nextPutLine:'  --help .................. output this message'.
+    Stderr nextPutLine:'  --verbose ............... verbose startup'.
+    Stderr nextPutLine:'  --noBanner .............. no splash screen'.
+    Stderr nextPutLine:'  --newAppInstance ........ start as its own application process (do not reuse a running instance)'.
     self allowScriptingOption ifTrue:[
-        Stderr nextPutLine:'          --scripting portNr ...... enable scripting via port (or stdin/stdOut, if 0)'.
+        Stderr nextPutLine:'  --scripting portNr ...... enable scripting via port (or stdin/stdOut, if 0)'.
     ].
     self allowDebugOption ifTrue:[
-        Stderr nextPutLine:'          --debug ................. enable Debugger'.
+        Stderr nextPutLine:'  --debug ................. enable Debugger'.
     ].
     self suppressRCFileReading ifFalse:[
-        Stderr nextPutLine:'          --rcFileName file ....... execute code from file on startup (default: ',self startupFilename,')'.
+        Stderr nextPutLine:'  --rcFileName file ....... execute code from file on startup (default: ',self startupFilename,')'.
     ].
 
     "Created: / 19-09-2006 / 16:37:55 / cg"
-    "Modified: / 04-10-2010 / 10:47:48 / cg"
+    "Modified: / 06-10-2010 / 09:52:18 / cg"
 ! !
 
 !StandaloneStartup class methodsFor:'startup-to be redefined'!
@@ -799,11 +797,11 @@
 !StandaloneStartup class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/StandaloneStartup.st,v 1.52 2010-10-04 11:54:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/StandaloneStartup.st,v 1.53 2010-10-06 07:54:45 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/StandaloneStartup.st,v 1.52 2010-10-04 11:54:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/StandaloneStartup.st,v 1.53 2010-10-06 07:54:45 cg Exp $'
 ! !
 
 StandaloneStartup initialize!