You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@gump.apache.org by aj...@apache.org on 2004/04/08 16:14:23 UTC

cvs commit: gump/python/gump/model project.py

ajack       2004/04/08 07:14:23

  Modified:    python/gump/model project.py
  Log:
  Jira GUMP-48 says scripts do not want properties/switches/bootclasspath.
  
  Revision  Changes    Path
  1.73      +12 -9     gump/python/gump/model/project.py
  
  Index: project.py
  ===================================================================
  RCS file: /home/cvs/gump/python/gump/model/project.py,v
  retrieving revision 1.72
  retrieving revision 1.73
  diff -u -r1.72 -r1.73
  --- project.py	3 Apr 2004 17:32:18 -0000	1.72
  +++ project.py	8 Apr 2004 14:14:23 -0000	1.73
  @@ -823,8 +823,8 @@
               scriptfullname += '.bat'
         
           # Optional 'verbose' or 'debug'
  -        verbose=scriptxml.verbose
  -        debug=scriptxml.debug
  +        # verbose=scriptxml.verbose
  +        # debug=scriptxml.debug
          
           scriptfile=os.path.abspath(os.path.join(basedir, scriptfullname))
           
  @@ -838,21 +838,24 @@
           # AWT implementations cope w/o an X11 server running (e.g. on
           # Linux)
           #    
  -        cmd.addPrefixedParameter('-D','java.awt.headless','true','=')
  +        # Per GUMP-48 scripts do not want this.
  +        # cmd.addPrefixedParameter('-D','java.awt.headless','true','=')
       
           #
           # Add BOOTCLASSPATH
           #
  -        if bootclasspath:
  -            cmd.addPrefixedParameter('-X','bootclasspath/p',bootclasspath,':')
  +        # Per GUMP-48 scripts do not want this.
  +        #if bootclasspath:
  +        #    cmd.addPrefixedParameter('-X','bootclasspath/p',bootclasspath,':')
                       
           #
           # Allow script-level debugging...
           #
  -        if self.getWorkspace().isDebug() or self.isDebug() or debug:
  -            cmd.addParameter('-debug')  
  -        if self.getWorkspace().isVerbose()  or self.isVerbose() or verbose:
  -            cmd.addParameter('-verbose')  
  +        # Per GUMP-48 scripts do not want this.        
  +        #if self.getWorkspace().isDebug() or self.isDebug() or debug:
  +        #    cmd.addParameter('-debug')  
  +        #if self.getWorkspace().isVerbose()  or self.isVerbose() or verbose:
  +        #    cmd.addParameter('-verbose')  
           
           return cmd
       
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@gump.apache.org
For additional commands, e-mail: general-help@gump.apache.org