Skip to content
Snippets Groups Projects
Commit bd35af70 authored by Morris Jette's avatar Morris Jette
Browse files

Add select/cray option to configuration tool

parent 472f1cf8
No related branches found
No related tags found
No related merge requests found
...@@ -72,6 +72,8 @@ function set_select_type(form) ...@@ -72,6 +72,8 @@ function set_select_type(form)
document.config.select_type[1].click() // linear document.config.select_type[1].click() // linear
} else if (form.name == "bluegene_params") { } else if (form.name == "bluegene_params") {
document.config.select_type[2].click() // bluegene document.config.select_type[2].click() // bluegene
} else if (form.name == "cray_params") {
document.config.select_type[3].click() // cray
} }
} }
...@@ -86,6 +88,8 @@ function get_select_type_params() ...@@ -86,6 +88,8 @@ function get_select_type_params()
return "#SelectTypeParameters=" return "#SelectTypeParameters="
} else if (document.config.select_type[2].checked) { // bluegene } else if (document.config.select_type[2].checked) { // bluegene
return "#SelectTypeParameters=" return "#SelectTypeParameters="
} else if (document.config.select_type[3].checked) { // cray
return "#SelectTypeParameters="
} }
} }
...@@ -459,6 +463,8 @@ Select one value for <B>SelectType</B>:<BR> ...@@ -459,6 +463,8 @@ Select one value for <B>SelectType</B>:<BR>
resource allocation, does not manage individual processor allocation<BR> resource allocation, does not manage individual processor allocation<BR>
<input type="radio" name="select_type" value="bluegene"> <input type="radio" name="select_type" value="bluegene">
<B>BlueGene</B>: For IBM Blue Gene systems only<BR> <B>BlueGene</B>: For IBM Blue Gene systems only<BR>
<input type="radio" name="select_type" value="cray">
<B>Cray</B>: Cray systems running ALPS only<BR>
<P> <P>
<H2>Task Launch</H2> <H2>Task Launch</H2>
......
...@@ -72,6 +72,8 @@ function set_select_type(form) ...@@ -72,6 +72,8 @@ function set_select_type(form)
document.config.select_type[1].click() // linear document.config.select_type[1].click() // linear
} else if (form.name == "bluegene_params") { } else if (form.name == "bluegene_params") {
document.config.select_type[2].click() // bluegene document.config.select_type[2].click() // bluegene
} else if (form.name == "cray_params") {
document.config.select_type[3].click() // cray
} }
} }
...@@ -86,6 +88,8 @@ function get_select_type_params() ...@@ -86,6 +88,8 @@ function get_select_type_params()
return "#SelectTypeParameters=" return "#SelectTypeParameters="
} else if (document.config.select_type[2].checked) { // bluegene } else if (document.config.select_type[2].checked) { // bluegene
return "#SelectTypeParameters=" return "#SelectTypeParameters="
} else if (document.config.select_type[3].checked) { // cray
return "#SelectTypeParameters="
} }
} }
...@@ -640,6 +644,8 @@ Select one value for <B>SelectType</B>:<BR> ...@@ -640,6 +644,8 @@ Select one value for <B>SelectType</B>:<BR>
resource allocation, does not manage individual processor allocation<BR> resource allocation, does not manage individual processor allocation<BR>
<input type="radio" name="select_type" value="bluegene"> <input type="radio" name="select_type" value="bluegene">
<B>BlueGene</B>: For IBM Blue Gene systems only<BR> <B>BlueGene</B>: For IBM Blue Gene systems only<BR>
<input type="radio" name="select_type" value="cray">
<B>Cray</B>: Cray systems running ALPS only<BR>
<P> <P>
<H2>Task Launch</H2> <H2>Task Launch</H2>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment