* [Cluster-devel] conga/ricci/common XML.cpp
@ 2007-06-02 4:27 rmccabe
0 siblings, 0 replies; 2+ messages in thread
From: rmccabe @ 2007-06-02 4:27 UTC (permalink / raw)
To: cluster-devel.redhat.com
CVSROOT: /cvs/cluster
Module name: conga
Branch: EXPERIMENTAL
Changes by: rmccabe at sourceware.org 2007-06-02 04:27:42
Modified files:
ricci/common : XML.cpp
Log message:
kill all the extra whitespace and indentation. it generates too much wasted data for storage reports.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/ricci/common/XML.cpp.diff?cvsroot=cluster&only_with_tag=EXPERIMENTAL&r1=1.8&r2=1.8.2.1
--- conga/ricci/common/XML.cpp 2007/03/22 03:42:38 1.8
+++ conga/ricci/common/XML.cpp 2007/06/02 04:27:42 1.8.2.1
@@ -119,15 +119,15 @@
xml += " " + name + "=\"" + value + "\"";
}
if (children().empty())
- xml += "/>\n";
+ xml += "/>";
else {
- xml += ">\n";
+ xml += ">";
for (list<XMLObject>::const_iterator iter = children().begin();
iter != children().end();
iter++) {
- iter->generate_xml(xml, indent + "\t");
+ iter->generate_xml(xml, indent);
}
- xml += indent + "</" + _tag + ">\n";
+ xml += indent + "</" + _tag + ">";
}
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [Cluster-devel] conga/ricci/common XML.cpp
@ 2007-07-26 22:23 rmccabe
0 siblings, 0 replies; 2+ messages in thread
From: rmccabe @ 2007-07-26 22:23 UTC (permalink / raw)
To: cluster-devel.redhat.com
CVSROOT: /cvs/cluster
Module name: conga
Branch: RHEL5
Changes by: rmccabe at sourceware.org 2007-07-26 22:23:13
Modified files:
ricci/common : XML.cpp
Log message:
Fix bz249351: conga reports that ricci agent is unresponsive even though it's running
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/ricci/common/XML.cpp.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.6.2.3&r2=1.6.2.4
--- conga/ricci/common/XML.cpp 2007/06/18 18:39:50 1.6.2.3
+++ conga/ricci/common/XML.cpp 2007/07/26 22:23:13 1.6.2.4
@@ -119,15 +119,15 @@
xml += " " + name + "=\"" + value + "\"";
}
if (children().empty())
- xml += "/>";
+ xml += "/>\n";
else {
- xml += ">";
+ xml += ">\n";
for (list<XMLObject>::const_iterator iter = children().begin();
iter != children().end();
iter++) {
- iter->generate_xml(xml, indent);
+ iter->generate_xml(xml, indent + "\t");
}
- xml += indent + "</" + _tag + ">";
+ xml += indent + "</" + _tag + ">\n";
}
}
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-07-26 22:23 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-26 22:23 [Cluster-devel] conga/ricci/common XML.cpp rmccabe
-- strict thread matches above, loose matches on Subject: below --
2007-06-02 4:27 rmccabe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).