From mboxrd@z Thu Jan 1 00:00:00 1970 From: rmccabe@sourceware.org Date: 29 Nov 2006 18:39:52 -0000 Subject: [Cluster-devel] conga/luci/cluster form-macros index_html fenc ... Message-ID: <20061129183952.20166.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-11-29 18:39:51 Modified files: luci/cluster : form-macros index_html Added files: luci/cluster : fence_device.js Log message: fence device config updates Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/cluster/fence_device.js.diff?cvsroot=cluster&r1=NONE&r2=1.1 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/cluster/form-macros.diff?cvsroot=cluster&r1=1.109&r2=1.110 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/cluster/index_html.diff?cvsroot=cluster&r1=1.28&r2=1.29 /cvs/cluster/conga/luci/cluster/fence_device.js,v --> standard output revision 1.1 --- conga/luci/cluster/fence_device.js +++ - 2006-11-29 18:39:52.053462000 +0000 @@ -0,0 +1,19 @@ +function swap_fence_div(container_id, element_id) { + var container_element = document.getElementById(container_id) + if (!container_element) { + return (-1); + } + + var child_element = document.getElementById(element_id); + if (!child_element) { + if (container_element.firstChild) + container_element.removeChild(container_element.firstChild); + return (-1); + } + + if (container_element.firstChild) + container_element.removeChild(container_element.firstChild); + var target = child_element.cloneNode(1); + target.id = null; + container_element.appendChild(target); +} --- conga/luci/cluster/form-macros 2006/11/28 19:39:31 1.109 +++ conga/luci/cluster/form-macros 2006/11/29 18:39:50 1.110 @@ -1136,7 +1136,9 @@ -
+
+
@@ -1176,7 +1178,9 @@ -
+
+
@@ -1216,7 +1220,9 @@ -
+
+
@@ -1249,7 +1255,9 @@ -
+
+
@@ -1289,7 +1297,9 @@ -
+
+
@@ -1328,7 +1338,9 @@ -
+
+
@@ -1368,7 +1380,9 @@ -
+
+
@@ -1408,7 +1422,9 @@ -
+
+
@@ -1445,7 +1461,9 @@ -
+
+
@@ -1478,7 +1496,9 @@ -
+
+
@@ -1504,7 +1524,9 @@ -
+
+
@@ -1537,7 +1559,9 @@ -
+
+
@@ -1577,7 +1601,9 @@ -
+
+
@@ -1617,7 +1643,9 @@ -
+
+
@@ -1650,19 +1678,25 @@ -
+
+
-
-
+
+
-
-
+
+
@@ -1706,7 +1740,9 @@ -
+
+
@@ -1761,6 +1797,47 @@ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
@@ -1939,6 +2016,9 @@
+ @@ -2119,13 +2199,26 @@ +
+ + + +
@@ -2158,6 +2251,9 @@
+ @@ -2903,6 +2999,9 @@
+ --- conga/luci/cluster/index_html 2006/11/27 19:56:12 1.28 +++ conga/luci/cluster/index_html 2006/11/29 18:39:50 1.29 @@ -100,26 +100,6 @@ window.open(href, windowname, 'width=500,height=500,scrollbars=yes'); return false; } - - function swap_fence_div(container_id, element_id) { - var container_element = document.getElementById(container_id) - if (!container_element) { - return (-1); - } - - var child_element = document.getElementById(element_id); - if (!child_element) { - if (container_element.firstChild) - container_element.removeChild(container_element.firstChild); - return (-1); - } - - if (container_element.firstChild) - container_element.removeChild(container_element.firstChild); - var target = child_element.cloneNode(1); - target.id = null; - container_element.appendChild(target); - } //-->