* [Cluster-devel] conga/luci/cluster validate_config_gulm.js
@ 2007-01-22 21:19 rmccabe
0 siblings, 0 replies; only message in thread
From: rmccabe @ 2007-01-22 21:19 UTC (permalink / raw)
To: cluster-devel.redhat.com
CVSROOT: /cvs/cluster
Module name: conga
Changes by: rmccabe at sourceware.org 2007-01-22 21:19:29
Added files:
luci/cluster : validate_config_gulm.js
Log message:
GULM properties
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/cluster/validate_config_gulm.js.diff?cvsroot=cluster&r1=NONE&r2=1.1
/cvs/cluster/conga/luci/cluster/validate_config_gulm.js,v --> standard output
revision 1.1
--- conga/luci/cluster/validate_config_gulm.js
+++ - 2007-01-22 21:19:29.438683000 +0000
@@ -0,0 +1,23 @@
+function validate_form(form) {
+ var errors = new Array();
+ var lscount = 0;
+
+ var elem = form.getElementsByTagName('input');
+ for (var i = 0 ; i < elem.length ; i++) {
+ if (elem[i].type != 'checkbox')
+ continue;
+ if (elem[i].checked)
+ lscount++;
+ }
+
+ if (lscount != 1 && lscount != 3 && lscount != 4 && lscount != 5)
+ errors.push('You must have exactly 1, 3, 4, or 5 GULM lockservers.');
+
+ if (error_dialog(errors))
+ return (-1);
+
+ if (confirm('Update GULM properties?'))
+ form.submit();
+
+ return (0);
+}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-01-22 21:19 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-01-22 21:19 [Cluster-devel] conga/luci/cluster validate_config_gulm.js rmccabe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).