From mboxrd@z Thu Jan 1 00:00:00 1970 From: rmccabe@sourceware.org Date: 7 Mar 2007 18:02:55 -0000 Subject: [Cluster-devel] conga/luci/cluster resource-form-macros resour ... Message-ID: <20070307180255.32498.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: RHEL5 Changes by: rmccabe at sourceware.org 2007-03-07 18:02:55 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=RHEL5&r1=1.21.2.4&r2=1.21.2.5 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/cluster/resource_form_handlers.js.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.20.2.4&r2=1.20.2.5 --- conga/luci/cluster/resource-form-macros 2007/03/01 00:31:08 1.21.2.4 +++ conga/luci/cluster/resource-form-macros 2007/03/07 18:02:54 1.21.2.5 @@ -1263,7 +1263,7 @@ -

Tomcat 5 Configuration

--- conga/luci/cluster/resource_form_handlers.js 2007/03/01 00:31:08 1.20.2.4 +++ conga/luci/cluster/resource_form_handlers.js 2007/03/07 18:02:55 1.20.2.5 @@ -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);