Changeset 19852 in vbox
- Timestamp:
- May 20, 2009 10:17:16 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 47518
- Location:
- trunk/src/VBox
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxShell/shellcommon.py
r19602 r19852 161 161 id = mach.id 162 162 print "removing machine ",mach.name,"with UUID",id 163 session = ctx['mgr'].getSessionObject(vb)163 session = mgr.getSessionObject(vb) 164 164 vb.openSession(session, id) 165 165 mach=session.machine … … 201 201 202 202 def getMachines(ctx): 203 # XPCOM brigde has trouble with array attributes 204 if ctx['type'] == 'xpcom': 205 return ctx['vb'].getMachines() 206 else: 207 return ctx['vb'].machines 203 return ctx['global'].getArray(ctx['vb'], 'machines') 208 204 209 205 def asState(var): … … 505 501 506 502 # MSCOM doesn't work with collector yet 507 if ctx['type'] != ' mscom':503 if ctx['type'] != 'MSCOM': 508 504 ctx['perf'] = PerfCollector(vbox) 509 505 else: -
trunk/src/VBox/Main/Makefile.kmk
r19844 r19852 173 173 VBox-main-xidl_SOURCES = $(VBOX_XIDL_FILE_SRC) 174 174 175 INSTALLS += VBox-python-glue 176 VBox-python-glue_INST = $(INST_SDK)bindings/ 177 # This file also should go to Python site-wide modules directory 178 # so for users it look 'just being here' 179 VBox-python-glue_SOURCES = glue/vboxapi.py=>glue/python/vboxapi.py 175 180 176 181 ifndef VBOX_ONLY_SDK # Note this goes on for *very* long
Note:
See TracChangeset
for help on using the changeset viewer.