From: Thomas Goettlicher Date: Fri, 3 Aug 2007 08:56:17 +0000 (+0000) Subject: renamed resolvabletype to kind in xml outpu X-Git-Tag: BASE-SuSE-Linux-10_3-Branch~205 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8266bf49ad878db7b372dd6ea39f5fd70addb523;p=platform%2Fupstream%2Fzypper.git renamed resolvabletype to kind in xml outpu --- diff --git a/src/zypper-misc.cc b/src/zypper-misc.cc index 3ae174c..29d9f98 100644 --- a/src/zypper-misc.cc +++ b/src/zypper-misc.cc @@ -699,7 +699,7 @@ bool xml_list_patches () cout << "pkgmanager=\"" << ((patch->affects_pkg_manager()) ? "true" : "false") << "\" "; cout << "restart=\"" << ((patch->reboot_needed()) ? "true" : "false") << "\" "; cout << "interactive=\"" << ((patch->interactive()) ? "true" : "false") << "\" "; - cout << "resolvabletype=\"" << "patch" << "\" "; + cout << "kind=\"" << "patch" << "\" "; cout << ">" << endl; cout << " " << xml_escape(patch->summary()) << " " << endl; cout << " " << xml_escape(patch->description()) << "" << endl; @@ -1005,7 +1005,7 @@ void xml_list_updates() cout << " name () << "\" " ; cout << "edition=\"" << res->edition ().asString() << "\" "; - cout << "resolvabletype=\"" << "package" << "\" "; + cout << "kind=\"" << "package" << "\" "; cout << ">" << endl; cout << " " << xml_escape(res->summary()) << " " << endl; cout << " " << xml_escape(res->description()) << "" << endl;