From mboxrd@z Thu Jan 1 00:00:00 1970 From: rmccabe@sourceware.org Date: 26 Jul 2007 04:16:47 -0000 Subject: [Cluster-devel] conga/luci cluster/form-macros cluster/index_h ... Message-ID: <20070726041647.18020.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-07-26 04:16:46 Modified files: luci/cluster : form-macros index_html luci/homebase : validate_cluster_add.js Log message: Fix for 249091 Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/cluster/form-macros.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.90.2.25&r2=1.90.2.26 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/cluster/index_html.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.20.2.12&r2=1.20.2.13 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/validate_cluster_add.js.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.4.2.4&r2=1.4.2.5 --- conga/luci/cluster/form-macros 2007/07/12 04:41:39 1.90.2.25 +++ conga/luci/cluster/form-macros 2007/07/26 04:16:46 1.90.2.26 @@ -270,7 +270,7 @@ + checked add_cluster/shared_storage |string:checked" /> Enable Shared Storage Support @@ -515,6 +515,7 @@ tal:attributes="value cur_sysnum" />
+
@@ -2567,6 +2568,8 @@ + + + + + + + + + + + + Delete this node - --- conga/luci/cluster/index_html 2007/07/12 04:41:39 1.20.2.12 +++ conga/luci/cluster/index_html 2007/07/26 04:16:46 1.20.2.13 @@ -44,7 +44,7 @@ + tal:attributes="content isBusy/refreshurl | python:'5%surl=/luci/cluster' % chr(0x3b)" /> @@ -52,7 +52,7 @@ + tal:attributes="content isBusy/refreshurl | python:'5%surl=/luci/cluster' % chr(0x3b)" /> --- conga/luci/homebase/validate_cluster_add.js 2007/07/12 04:41:39 1.4.2.4 +++ conga/luci/homebase/validate_cluster_add.js 2007/07/26 04:16:46 1.4.2.5 @@ -43,9 +43,13 @@ if (!view_certs || !view_certs.checked) { var confirm_str = ''; if (form.addnode) { - confirm_str = 'Add ' + (added_storage.length > 1 ? 'these nodes' : 'this node') + ' to the \"' + clustername + '\" cluster?'; + confirm_str = 'Add ' + (added_storage.length > 1 ? 'these nodes' : 'this node') + ' to the \"' + clustername + '\" cluster?\nEach node added will be rebooted during this process.'; } else { - confirm_str = 'Add the cluster \"' + clustername + '\" to the Luci management interface?'; + if (form.cluster_create) { + confirm_str = 'All nodes added to this cluster will be rebooted as part of this process.\n\nCreate cluster \"' + clustername + '\"?'; + } else { + confirm_str = 'Add the cluster \"' + clustername + '\" to the Luci management interface?'; + } } if (confirm(confirm_str)) {