give useful URIs after per-VM commands
authorGreg Price <price@mit.edu>
Thu, 3 Apr 2008 07:12:13 +0000 (03:12 -0400)
committerGreg Price <price@mit.edu>
Thu, 3 Apr 2008 07:12:13 +0000 (03:12 -0400)
I haven't done this for the list page, because the create command's
result message is at least minimally useful and I haven't made a
mechanism for displaying those messages at the standard URIs.

svn path=/trunk/packages/sipb-xen-www/; revision=407

code/main.py

index 8bc9ece..ebbd7dd 100755 (executable)
@@ -344,9 +344,9 @@ def command(user, fields):
         return templates.list(searchList=[d])
     elif back == 'info':
         machine = validation.testMachineId(user, fields.getfirst('machine_id'))
         return templates.list(searchList=[d])
     elif back == 'info':
         machine = validation.testMachineId(user, fields.getfirst('machine_id'))
-        d = infoDict(user, machine)
-        d['result'] = result
-        return templates.info(searchList=[d])
+        return ({'Status': '302',
+                 'Location': '/info?machine_id=%d' % machine.machine_id},
+                "You shouldn't see this message.")
     else:
         raise InvalidInput('back', back, 'Not a known back page.')
 
     else:
         raise InvalidInput('back', back, 'Not a known back page.')