From mboxrd@z Thu Jan 1 00:00:00 1970 From: rmccabe@sourceware.org Date: 16 Aug 2006 19:08:40 -0000 Subject: [Cluster-devel] conga/luci cluster/form-macros homebase/homeba ... Message-ID: <20060816190840.13067.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-08-16 19:08:36 Modified files: luci/cluster : form-macros luci/homebase : homebase_common.js Log message: more cluster properties config form bits, and cleanups for homebase Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/cluster/form-macros.diff?cvsroot=cluster&r1=1.44&r2=1.45 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/homebase_common.js.diff?cvsroot=cluster&r1=1.2&r2=1.3 --- conga/luci/cluster/form-macros 2006/08/15 22:27:05 1.44 +++ conga/luci/cluster/form-macros 2006/08/16 19:08:35 1.45 @@ -398,6 +398,27 @@
+ +
@@ -412,7 +433,7 @@ @@ -454,6 +475,120 @@
+
Let cluster choose the multicast address @@ -422,7 +443,7 @@
@@ -435,7 +456,7 @@
@@ -465,13 +600,17 @@ - @@ -558,7 +697,7 @@ - @@ -619,7 +758,7 @@
- +
+ Do not use a Quorum Partition
- + Use a Quorum Partition
- +
@@ -630,6 +769,9 @@
+
--- conga/luci/homebase/homebase_common.js 2006/07/18 19:25:20 1.2 +++ conga/luci/homebase/homebase_common.js 2006/08/16 19:08:36 1.3 @@ -114,14 +114,14 @@ var num_systems = form.numStorage.value; var newsys = document.createElement('input'); - newsys.setAttribute('style', 'padding:.20em !important;width:200px;'); + newsys.className = 'hbInputSys'; newsys.setAttribute('name', '__SYSTEM' + num_systems + ':Addr'); newsys.setAttribute('id', '__SYSTEM' + num_systems + ':Addr'); newsys.setAttribute('type', 'text'); newsys.setAttribute('value', ''); var newsysp = document.createElement('input'); - newsysp.setAttribute('style', 'padding:.20em !important;width:160px;'); + newsysp.className = 'hbInputPass'; newsysp.setAttribute('name', '__SYSTEM' + num_systems + ':Passwd'); newsysp.setAttribute('id', '__SYSTEM' + num_systems + ':Passwd'); newsysp.setAttribute('type', 'password'); @@ -134,10 +134,11 @@ } var newrow = document.createElement('tr'); + newrow.className = 'systemsTable'; var hcol = document.createElement('td') - hcol.setAttribute('style', 'margin: 0em;padding: 0em 1em .33em 0em;background: #dee7ec;padding-left: .5em;text-align: left;'); + hcol.className = 'systemsTable'; var pcol = document.createElement('td') - pcol.setAttribute('style', 'margin: 0em;padding: 0em 1em .33em 0em;background: #dee7ec;padding-left: .5em;text-align: left;'); + pcol.className = 'systemsTable'; hcol.appendChild(newsys) pcol.appendChild(newsysp)