Changeset 19859 in vbox for trunk/src/VBox/Frontends/VBoxShell
- Timestamp:
- May 20, 2009 11:50:09 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 47525
- Location:
- trunk/src/VBox/Frontends/VBoxShell
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxShell/shellcommon.py
r19852 r19859 1 # 2 # Copyright (C) 2009 Sun Microsystems, Inc. 3 # 4 # This file is part of VirtualBox Open Source Edition (OSE), as 5 # available from http://www.virtualbox.org. This file is free software; 6 # you can redistribute it and/or modify it under the terms of the GNU 7 # General Public License (GPL) as published by the Free Software 8 # Foundation, in version 2 as it comes in the "COPYING" file of the 9 # VirtualBox OSE distribution. VirtualBox OSE is distributed in the 10 # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 11 # 12 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa 13 # Clara, CA 95054 USA or visit http://www.sun.com if you need 14 # additional information or have any questions. 15 # 16 # 1 17 import traceback 2 18 import sys … … 499 515 vbox = ctx['vb'] 500 516 print "Running VirtualBox version %s" %(vbox.version) 501 502 # MSCOM doesn't work with collector yet 503 if ctx['type'] != 'MSCOM': 504 ctx['perf'] = PerfCollector(vbox) 505 else: 506 ctx['perf'] = None 517 ctx['perf'] = PerfCollector(vbox) 507 518 508 519 autoCompletion(commands, ctx) -
trunk/src/VBox/Frontends/VBoxShell/vboxshell.py
r19852 r19859 1 1 #!/usr/bin/python 2 # 3 # Copyright (C) 2009 Sun Microsystems, Inc. 4 # 5 # This file is part of VirtualBox Open Source Edition (OSE), as 6 # available from http://www.virtualbox.org. This file is free software; 7 # you can redistribute it and/or modify it under the terms of the GNU 8 # General Public License (GPL) as published by the Free Software 9 # Foundation, in version 2 as it comes in the "COPYING" file of the 10 # VirtualBox OSE distribution. VirtualBox OSE is distributed in the 11 # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 12 # 13 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa 14 # Clara, CA 95054 USA or visit http://www.sun.com if you need 15 # additional information or have any questions. 16 # 2 17 # 3 18 #################################################################################
Note:
See TracChangeset
for help on using the changeset viewer.