From mboxrd@z Thu Jan 1 00:00:00 1970 From: rmccabe@sourceware.org Date: 7 Mar 2007 18:03:52 -0000 Subject: [Cluster-devel] conga/luci/cluster resource-form-macros resour ... Message-ID: <20070307180352.32763.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 Branch: RHEL4 Changes by: rmccabe at sourceware.org 2007-03-07 18:03:52 Modified files: luci/cluster : resource-form-macros resource_form_handlers.js Log message: fix a bug that caused the tomcat-5 resource form to not be displayed Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/cluster/resource-form-macros.diff?cvsroot=cluster&only_with_tag=RHEL4&r1=1.31.2.4&r2=1.31.2.5 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/cluster/resource_form_handlers.js.diff?cvsroot=cluster&only_with_tag=RHEL4&r1=1.29.2.2&r2=1.29.2.3 --- conga/luci/cluster/resource-form-macros 2007/02/22 20:52:06 1.31.2.4 +++ conga/luci/cluster/resource-form-macros 2007/03/07 18:03:52 1.31.2.5 @@ -1263,7 +1263,7 @@ -

Tomcat 5 Configuration

--- conga/luci/cluster/resource_form_handlers.js 2007/02/16 02:12:46 1.29.2.2 +++ conga/luci/cluster/resource_form_handlers.js 2007/03/07 18:03:52 1.29.2.3 @@ -69,8 +69,10 @@ var divs = container.getElementsByTagName('div'); for (var i = 0 ; i < divs.length ; i++) { - if (!swap_in_elem && divs[i].getAttribute('name') == swap_in_name) + if (!swap_in_elem && divs[i].getAttribute('name') == swap_in_name) { swap_in_elem = divs[i]; + break; + } } if (!swap_in_elem) return (-1);