From: rmccabe@sourceware.org <rmccabe@sourceware.org>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] conga/luci/site/luci/Extensions/ClusterModel M ...
Date: 28 Aug 2007 16:57:57 -0000 [thread overview]
Message-ID: <20070828165757.9004.qmail@sourceware.org> (raw)
CVSROOT: /cvs/cluster
Module name: conga
Branch: RHEL4
Changes by: rmccabe at sourceware.org 2007-08-28 16:57:57
Modified files:
luci/site/luci/Extensions/ClusterModel: ModelBuilder.py
Log message:
Cleanups from the -RHEL5 branch
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/site/luci/Extensions/ClusterModel/ModelBuilder.py.diff?cvsroot=cluster&only_with_tag=RHEL4&r1=1.5.2.3&r2=1.5.2.4
--- conga/luci/site/luci/Extensions/ClusterModel/ModelBuilder.py 2007/08/24 21:55:43 1.5.2.3
+++ conga/luci/site/luci/Extensions/ClusterModel/ModelBuilder.py 2007/08/28 16:57:56 1.5.2.4
@@ -929,11 +929,11 @@
self.isModified = True
def set_nodes_multicast(self, mcast_addr, mcast_if=None):
- for node in iter(self.getNodes()):
+ for node in self.getNodes():
new_mcast_tag = True
mcast = None
- for node_child in iter(node.getChildren()):
+ for node_child in node.getChildren():
if node_child.getTagName() == MCAST_STR:
mcast = node_child
new_mcast_tag = False
@@ -980,8 +980,8 @@
self.isModified = True
def del_nodes_multicast(self):
- for node in iter(self.getNodes()):
- for node_child in iter(node.getChildren()):
+ for node in self.getNodes():
+ for node_child in node.getChildren():
if node_child.getTagName() == MCAST_STR:
node.removeChild(node_child)
break
@@ -990,7 +990,7 @@
if self.CMAN_ptr is None:
return False
- for child in iter(self.CMAN_ptr.getChildren()):
+ for child in self.CMAN_ptr.getChildren():
if child.getTagName() == MCAST_STR:
self.CMAN_ptr.removeChild(child)
next reply other threads:[~2007-08-28 16:57 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-08-28 16:57 rmccabe [this message]
-- strict thread matches above, loose matches on Subject: below --
2009-01-22 21:31 [Cluster-devel] conga/luci/site/luci/Extensions/ClusterModel M rmccabe
2009-01-22 20:35 rmccabe
2007-09-11 19:04 rmccabe
2007-07-26 5:57 rmccabe
2007-05-08 21:31 rmccabe
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070828165757.9004.qmail@sourceware.org \
--to=rmccabe@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.