From 41433e5efc50187b3dab95b4aefbe855eafad6d7 Mon Sep 17 00:00:00 2001 From: Stephen Soltesz Date: Wed, 13 Oct 2010 19:41:47 -0400 Subject: [PATCH] Add a 'report a problem' link for the RebootNode button on node page. The link fills in a template message based on the current node to help a support person track down the problem. --- planetlab/nodes/node.php | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/planetlab/nodes/node.php b/planetlab/nodes/node.php index 694e05f..3389832 100644 --- a/planetlab/nodes/node.php +++ b/planetlab/nodes/node.php @@ -239,10 +239,31 @@ if ($display_pcus) { //////////////////// Reboot Node if ( $display_reboot_button ) { + if ( ! empty($_SESSION['messages']) ) { + $msg = $_SESSION['messages']['status'][0]; + } else { + $msg = ""; + } + $body="Hello, + +This message is a template from the 'Report a problem' link on the node details page. + +I've experienced a problem rebooting $hostname with the pcu_id $pcu_id; + + http://".PLC_WWW_HOST."/db/sites/pcu.php?id=$pcu_id + http://".PLC_WWW_HOST."/db/nodes/node.php?id=$node_id\n\n"; + + if ( $msg != "" ) { + $body .= "The last time I tried, it returned:\n $msg\n\n"; + } + $body .= "And, this what I've tried, which leads me to believe that there is a bug on your side:"; + + $url=rawurlencode($body); + $email = ">Report a problem"; + $details->form_start(l_actions(),array("action"=>"reboot-node-with-pcu", "node_id"=>$node_id, "hostname"=>$hostname)); - $details->tr_submit("submit", "Reboot Node"); + print $details->tr_html($email . $details->form->submit_html("submit","Reboot Node"), "right"); $details->form_end(); - //if ($privileges) $details->space(); } $details->space(); -- 2.43.0