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

rmccabe at sourceware.org rmccabe at sourceware.org
Wed Mar 7 18:04:05 UTC 2007


CVSROOT:	/cvs/cluster
Module name:	conga
Changes by:	rmccabe at sourceware.org	2007-03-07 18:04:05

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&r1=1.35&r2=1.36
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/cluster/resource_form_handlers.js.diff?cvsroot=cluster&r1=1.32&r2=1.33

--- conga/luci/cluster/resource-form-macros	2007/02/22 20:52:50	1.35
+++ conga/luci/cluster/resource-form-macros	2007/03/07 18:04:05	1.36
@@ -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:06:08	1.32
+++ conga/luci/cluster/resource_form_handlers.js	2007/03/07 18:04:05	1.33
@@ -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