From mboxrd@z Thu Jan 1 00:00:00 1970 From: rmccabe@sourceware.org Date: 30 Oct 2006 21:21:18 -0000 Subject: [Cluster-devel] conga/luci cluster/resource_form_handlers.js h ... Message-ID: <20061030212118.3402.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: conga Changes by: rmccabe at sourceware.org 2006-10-30 21:21:17 Modified files: luci/cluster : resource_form_handlers.js luci/homebase : form-macros luci/site/luci/Extensions: ricci_bridge.py Log message: - fix for javascript FS resource validation (would always say you had not selected a FS type) - fix for batchAttemptResult function decl: callers expect to pass only one argument Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/cluster/resource_form_handlers.js.diff?cvsroot=cluster&r1=1.20&r2=1.21 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/form-macros.diff?cvsroot=cluster&r1=1.45&r2=1.46 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/site/luci/Extensions/ricci_bridge.py.diff?cvsroot=cluster&r1=1.36&r2=1.37 --- conga/luci/cluster/resource_form_handlers.js 2006/10/07 20:12:47 1.20 +++ conga/luci/cluster/resource_form_handlers.js 2006/10/30 21:21:16 1.21 @@ -140,7 +140,7 @@ function validate_filesystem(form) { var errors = new Array(); - if (!form.fsTypeSelect || str_is_blank(form.fsTypeSelect.value)) { + if (!form.fstype || str_is_blank(form.fstype.value)) { errors.push('No file system type was given.'); set_form_err(form.fsTypeSelect); } else --- conga/luci/homebase/form-macros 2006/10/30 20:42:03 1.45 +++ conga/luci/homebase/form-macros 2006/10/30 21:21:16 1.46 @@ -1,7 +1,7 @@ - $Id: form-macros,v 1.45 2006/10/30 20:42:03 rmccabe Exp $ + $Id: form-macros,v 1.46 2006/10/30 21:21:16 rmccabe Exp $ @@ -560,8 +560,6 @@ - Add Cluster