[Cluster-devel] conga/luci/cluster resource-form-macros resour ...

rmccabe at sourceware.org rmccabe at sourceware.org
Wed Mar 7 18:03:52 UTC 2007


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 @@
 	</form>
 </div>
 
-<div class="rescfg" name="tomcat-5"
+<div class="rescfg" name="TOMCAT-5"
 	tal:attributes="id res/name | nothing" metal:define-macro="tomcat-5_macro">
 	<p class="reshdr">Tomcat 5 Configuration</p>
 
--- 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);




More information about the Cluster-devel mailing list