From mboxrd@z Thu Jan 1 00:00:00 1970 From: jparsons@sourceware.org Date: 12 Aug 2006 21:13:55 -0000 Subject: [Cluster-devel] conga/luci/site/luci/Extensions cluster_adapte ... Message-ID: <20060812211355.21191.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-12 22:13:55 Modified files: luci/site/luci/Extensions: cluster_adapters.py Log message: Various flaw fixes Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/site/luci/Extensions/cluster_adapters.py.diff?cvsroot=cluster&r1=1.43&r2=1.44 --- conga/luci/site/luci/Extensions/cluster_adapters.py 2006/08/12 20:31:18 1.43 +++ conga/luci/site/luci/Extensions/cluster_adapters.py 2006/08/12 21:13:55 1.44 @@ -1319,7 +1319,7 @@ clustername = request['clustername'] nodename = request['nodename'] task = request['task'] - nodename_resolved = resolve_nodename(clustername, nodename) + nodename_resolved = resolve_nodename(self, clustername, nodename) if nodename_resolved == None: return None @@ -1339,9 +1339,9 @@ flag.manage_addProperty(TASKTYPE,NODE_LEAVE_CLUSTER, "string") flag.manage_addProperty(FLAG_DESC,"Node \'" + nodename + "\' leaving cluster", "string") - response = req.RESPONSE + response = request.RESPONSE #Is this correct? Should we re-direct to the cluster page? - response.redirect(req['URL'] + "?pagetype=" + CLUSTER_CONFIG) + response.redirect(request['URL'] + "?pagetype=" + CLUSTER_CONFIG + "&clustername=" + clustername) elif task == NODE_JOIN_CLUSTER: rb = ricci_bridge(nodename_resolved) @@ -1359,9 +1359,9 @@ flag.manage_addProperty(TASKTYPE,NODE_JOIN_CLUSTER, "string") flag.manage_addProperty(FLAG_DESC,"Node \'" + nodename + "\' joining cluster", "string") - response = req.RESPONSE + response = request.RESPONSE #Once again, is this correct? Should we re-direct to the cluster page? - response.redirect(req['URL'] + "?pagetype=" + CLUSTER_CONFIG) + response.redirect(request['URL'] + "?pagetype=" + CLUSTER_CONFIG + "&clustername=" + clustername) elif task == NODE_REBOOT: @@ -1380,9 +1380,9 @@ flag.manage_addProperty(TASKTYPE,NODE_REBOOT, "string") flag.manage_addProperty(FLAG_DESC,"Node \'" + nodename + "\' is being rebooted", "string") - response = req.RESPONSE + response = request.RESPONSE #Once again, is this correct? Should we re-direct to the cluster page? - response.redirect(req['URL'] + "?pagetype=" + CLUSTER_CONFIG) + response.redirect(request['URL'] + "?pagetype=" + CLUSTER_CONFIG + "&clustername=" + clustername) elif task == NODE_FENCE: @@ -1418,9 +1418,9 @@ flag.manage_addProperty(TASKTYPE,NODE_FENCE, "string") flag.manage_addProperty(FLAG_DESC,"Node \'" + nodename + "\' is being fenced", "string") - response = req.RESPONSE + response = request.RESPONSE #Once again, is this correct? Should we re-direct to the cluster page? - response.redirect(req['URL'] + "?pagetype=" + CLUSTER_CONFIG) + response.redirect(request['URL'] + "?pagetype=" + CLUSTER_CONFIG + "&clustername=" + clustername) elif task == NODE_DELETE: