diff --git a/doc/html/configurator.easy.html.in b/doc/html/configurator.easy.html.in index a188e9aa21d8c19963e6536baf0116ba33b34582..c904a3d5c2532425027579f85af69d5b12926ee6 100644 --- a/doc/html/configurator.easy.html.in +++ b/doc/html/configurator.easy.html.in @@ -72,6 +72,8 @@ function set_select_type(form) document.config.select_type[1].click() // linear } else if (form.name == "bluegene_params") { 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() return "#SelectTypeParameters=" } else if (document.config.select_type[2].checked) { // bluegene 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> resource allocation, does not manage individual processor allocation<BR> <input type="radio" name="select_type" value="bluegene"> <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> <H2>Task Launch</H2> diff --git a/doc/html/configurator.html.in b/doc/html/configurator.html.in index be6e768128365cc4fb67364ba7f2ac036bae41c2..12b05439fa95eb6ec7b8dcb91a0b6bd9a3adc11b 100644 --- a/doc/html/configurator.html.in +++ b/doc/html/configurator.html.in @@ -72,6 +72,8 @@ function set_select_type(form) document.config.select_type[1].click() // linear } else if (form.name == "bluegene_params") { 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() return "#SelectTypeParameters=" } else if (document.config.select_type[2].checked) { // bluegene 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> resource allocation, does not manage individual processor allocation<BR> <input type="radio" name="select_type" value="bluegene"> <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> <H2>Task Launch</H2>