aboutsummaryrefslogtreecommitdiffstats
path: root/tools/sv/inc/script.js
diff options
context:
space:
mode:
authortw275@labyrinth.cl.cam.ac.uk <tw275@labyrinth.cl.cam.ac.uk>2004-08-16 13:04:39 +0000
committertw275@labyrinth.cl.cam.ac.uk <tw275@labyrinth.cl.cam.ac.uk>2004-08-16 13:04:39 +0000
commit992c4d6f0bee1d82b9ca160a49e163ff0fa396cb (patch)
tree42cfa8f3fe1ae8e9a15a9902311929dc8f90cb9b /tools/sv/inc/script.js
parent636ff6f2888766da3afa13e23422321365d66871 (diff)
downloadxen-992c4d6f0bee1d82b9ca160a49e163ff0fa396cb.tar.gz
xen-992c4d6f0bee1d82b9ca160a49e163ff0fa396cb.tar.bz2
xen-992c4d6f0bee1d82b9ca160a49e163ff0fa396cb.zip
bitkeeper revision 1.1159.32.1 (4120b0e7LRYrL1B3ICa0Qkit5txAbQ)
Added error checking, small button on domain list, updated to be compatible with latest xend, and some small changes to domain creation.
Diffstat (limited to 'tools/sv/inc/script.js')
-rwxr-xr-xtools/sv/inc/script.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/sv/inc/script.js b/tools/sv/inc/script.js
index fca5a972ab..47cd10399c 100755
--- a/tools/sv/inc/script.js
+++ b/tools/sv/inc/script.js
@@ -13,3 +13,10 @@ function doOp( op )
document.forms[0].op.value = op
document.forms[0].submit()
}
+
+function doOp2( op, args )
+{
+ document.forms[0].op.value = op
+ document.forms[0].args.value = args
+ document.forms[0].submit()
+}