From mboxrd@z Thu Jan 1 00:00:00 1970 From: rmccabe@sourceware.org Date: 3 Nov 2006 21:47:28 -0000 Subject: [Cluster-devel] conga/luci cluster/form-macros docs/config_rhe ... Message-ID: <20061103214728.8056.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-03 21:47:27 Modified files: luci/cluster : form-macros luci/docs : config_rhel5 user_manual.html luci/homebase : luci_homebase.css luci/plone-custom: conga.js Log message: turn advanced cluster property labels into links to help for each particular property Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/cluster/form-macros.diff?cvsroot=cluster&r1=1.96&r2=1.97 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/docs/config_rhel5.diff?cvsroot=cluster&r1=1.1&r2=1.2 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/docs/user_manual.html.diff?cvsroot=cluster&r1=1.8&r2=1.9 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/luci_homebase.css.diff?cvsroot=cluster&r1=1.28&r2=1.29 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/conga.js.diff?cvsroot=cluster&r1=1.3&r2=1.4 --- conga/luci/cluster/form-macros 2006/11/03 21:11:40 1.96 +++ conga/luci/cluster/form-macros 2006/11/03 21:47:26 1.97 @@ -440,16 +440,19 @@ - + + + + + + + + + + + + + + + + + + +
Secure Authentication + Secure Authentication +
- Redundant Ring Protocol Mode + Redundant Ring Protocol Mode - @@ -465,7 +468,7 @@
- Network MTU + Network MTU - Number of Threads + Number of Threads -
- Virtual Synchrony Type + Virtual Synchrony Type - @@ -497,18 +501,20 @@
- Token Timeout (ms) + Token Timeout (ms)
- Token Retransmit (ms) + Token Retransmit (ms)
- Hold Token Timeout (ms) + Hold Token Timeout (ms)
- Number of retransmits before loss + Number of retransmits before loss
- Join Timeout (ms) + Join Timeout (ms)
- Consensus Timeout (ms) + Consensus Timeout (ms)
- Merge Detection Timeout (ms) + Merge Detection Timeout (ms)
- Interface Down Check Timeout (ms) + Interface Down Check Timeout (ms)
- Fail to Receive Constant + Fail to Receive Constant
- Rotations with no multicast traffic before merge detection timeout is started. + Rotations with no mcast traffic before merge detection timeout started - Number of Heartbeat Failures Allowed + Number of Heartbeat Failures Allowed
- Maximum Network Delay (ms) + Maximum Network Delay (ms)
- Window Size + Window Size
- Maximum Messages + Maximum Messages
- RRP Problem Count Timeout (ms) + RRP Problem Count Timeout (ms)
- RRP Problem Count Threshold + RRP Problem Count Threshold
- RRP Token Expired Timeout + RRP Token Expired Timeout Advanced Cluster Configuration Parameters - +

Advanced Cluster Configuration Parameters

--- conga/luci/docs/user_manual.html 2006/11/03 21:12:01 1.8 +++ conga/luci/docs/user_manual.html 2006/11/03 21:47:27 1.9 @@ -2,7 +2,7 @@ Conga User Manual - +

Conga User Manual

All you need to know to get Conga up and running

Introduction

Conga Architecture

--- conga/luci/homebase/luci_homebase.css 2006/10/16 19:13:45 1.28 +++ conga/luci/homebase/luci_homebase.css 2006/11/03 21:47:27 1.29 @@ -380,6 +380,20 @@ padding: .5em; } +a.cluster_help:link, +a.cluster_help:visited, +a.cluster_help:visited { + color: #000000; + text-decoration: none ! important; +} + +a.cluster_help:hover { + text-decoration: none ! important; + cursor: help; + color: #000000; + border-bottom: 1px solid #cccccc; +} + a.cluster:link, a.cluster:visited { border-bottom: 1px dashed #cccccc; --- conga/luci/plone-custom/conga.js 2006/10/10 19:19:13 1.3 +++ conga/luci/plone-custom/conga.js 2006/11/03 21:47:27 1.4 @@ -8,5 +8,7 @@ function popup_window(url, width_percent, height_percent) { var width = window.innerWidth * (width_percent / 100); var height = window.innerHeight * (height_percent / 100); - window.open('luci/doc', '', 'width=' + width + ',height=' + height + ',scrollbars,resizable', false); + var newwin = window.open(url, 'Conga Help', 'width=' + width + ',height=' + height + ',scrollbars,resizable', false); + if (newwin) + newwin.focus(); }