From mboxrd@z Thu Jan 1 00:00:00 1970 From: jparsons@sourceware.org Date: 13 Aug 2006 16:16:17 -0000 Subject: [Cluster-devel] conga/luci/cluster form-macros form-chooser in ... Message-ID: <20060813161617.29270.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: jparsons at sourceware.org 2006-08-13 17:16:17 Modified files: luci/cluster : form-macros form-chooser index_html Log message: logging support Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/cluster/form-macros.diff?cvsroot=cluster&r1=1.34&r2=1.35 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/cluster/form-chooser.diff?cvsroot=cluster&r1=1.5&r2=1.6 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/cluster/index_html.diff?cvsroot=cluster&r1=1.8&r2=1.9 --- conga/luci/cluster/form-macros 2006/08/13 14:54:08 1.34 +++ conga/luci/cluster/form-macros 2006/08/13 16:16:17 1.35 @@ -720,6 +720,7 @@ + Show recent log activity for this node @@ -738,6 +739,13 @@

Node Configuration Form

+
+

Recent Log Activity for

+ --------------------------------------------------------------------------------------- +
+ +
+
--- conga/luci/cluster/form-chooser 2006/08/02 17:20:20 1.5 +++ conga/luci/cluster/form-chooser 2006/08/13 16:16:17 1.6 @@ -56,6 +56,9 @@
+ +
+
--- conga/luci/cluster/index_html 2006/08/03 18:45:13 1.8 +++ conga/luci/cluster/index_html 2006/08/13 16:16:17 1.9 @@ -76,6 +76,18 @@ } return false; } + function popup_log(mylink, windowname) + { + //Thanks to htmlcodetutorial.com + if (! window.focus)return true; + var href; + if (typeof(mylink) == 'string') + href=mylink; + else + href=mylink.href; + window.open(href, windowname, 'width=400,height=200,scrollbars=yes'); + return false; + } //-->