machine_id=machine_id).machine
d = infoDict(cherrypy.request.login, cherrypy.request.state, machine)
return d
- index = info
+ index = list
@cherrypy.expose
@cherrypy.tools.mako(filename="/info.mako")
def getMachines(self):
if self.isadmin:
- return Machine.query().all()
+ return Machine.query.all()
else:
- return Machine.query().join('acl').filter_by(user=self.username)
+ return Machine.query.join('acl').filter_by(user=self.username)
machines = cachedproperty(getMachines)
xmlist_raw = cachedproperty(lambda self: controls.getList())