aboutsummaryrefslogtreecommitdiffstats
path: root/tools/sv
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
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')
-rwxr-xr-xtools/sv/Makefile5
-rw-r--r--tools/sv/images/destroy.pngbin0 -> 2408 bytes
-rw-r--r--tools/sv/images/small-destroy.pngbin0 -> 483 bytes
-rw-r--r--tools/sv/images/small-pause.pngbin0 -> 434 bytes
-rw-r--r--tools/sv/images/small-unpause.pngbin0 -> 500 bytes
-rwxr-xr-xtools/sv/inc/script.js7
6 files changed, 12 insertions, 0 deletions
diff --git a/tools/sv/Makefile b/tools/sv/Makefile
index c7bd3d5880..dcc298826a 100755
--- a/tools/sv/Makefile
+++ b/tools/sv/Makefile
@@ -33,7 +33,12 @@ install:
install -m0644 images/reboot.png $(sv_insdir)/images
install -m0644 images/pause.png $(sv_insdir)/images
install -m0644 images/unpause.png $(sv_insdir)/images
+ install -m0644 images/destroy.png $(sv_insdir)/images
+ install -m0644 images/small-destroy.png $(sv_insdir)/images
+ install -m0644 images/small-pause.png $(sv_insdir)/images
+ install -m0644 images/small-unpause.png $(sv_insdir)/images
+
install -m0644 images/next.png $(sv_insdir)/images
install -m0644 images/previous.png $(sv_insdir)/images
install -m0644 images/finish.png $(sv_insdir)/images
diff --git a/tools/sv/images/destroy.png b/tools/sv/images/destroy.png
new file mode 100644
index 0000000000..9545fc4837
--- /dev/null
+++ b/tools/sv/images/destroy.png
Binary files differ
diff --git a/tools/sv/images/small-destroy.png b/tools/sv/images/small-destroy.png
new file mode 100644
index 0000000000..f800bd7685
--- /dev/null
+++ b/tools/sv/images/small-destroy.png
Binary files differ
diff --git a/tools/sv/images/small-pause.png b/tools/sv/images/small-pause.png
new file mode 100644
index 0000000000..7bbdbfaafe
--- /dev/null
+++ b/tools/sv/images/small-pause.png
Binary files differ
diff --git a/tools/sv/images/small-unpause.png b/tools/sv/images/small-unpause.png
new file mode 100644
index 0000000000..6ae5687a0c
--- /dev/null
+++ b/tools/sv/images/small-unpause.png
Binary files differ
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()
+}