svn path=/trunk/packages/invirt-web/; revision=1709
def accessList(m):
people = set()
people.update(expandLocker(m.owner))
- people.update(expandName(m.administrator))
+ if m.administrator is not None:
+ people.update(expandName(m.administrator))
return people
def refreshMachine(m):
machine.description = description
machine.memory = memory
machine.owner = owner
- machine.administrator = owner
+ machine.administrator = None
machine.contact = contact
machine.uuid = uuidToString(randomUUID())
machine.boot_off_cd = True
owner = testOwner(username, owner, machine)
if owner is not None:
self.owner = owner
- admin = testAdmin(username, admin, machine)
- if admin is not None:
- self.admin = admin
+ self.admin = testAdmin(username, admin, machine)
contact = testContact(username, contact, machine)
if contact is not None:
self.contact = contact
if admin is None:
return None
if machine is not None and admin == machine.administrator:
- return None
+ return admin
if admin == user:
return admin
if ':' not in admin: