Comment 22 for bug 719129

Revision history for this message
Curtis Gedak (gedakc) wrote :

As you discovered, the patch was not made against the Natty code, but against the head of the master branch in the upstream git repository. I apologize for this misunderstanding.

Attached is another patch that includes an update to the src/Dialog_Progress.cc file. This change includes the " --enable-libparted-dmraid" in the save_details.htm log file to help with diagnosing GParted bugs.

I would appreciate if you could add the update for src/Dialog_Progress.cc into the patch for Natty.

The specific diff for this one file is as follows:

$ git diff src/Dialog_Progress.cc
diff --git a/src/Dialog_Progress.cc b/src/Dialog_Progress.cc
index 1921d8a..03ea376 100644
--- a/src/Dialog_Progress.cc
+++ b/src/Dialog_Progress.cc
@@ -354,7 +354,11 @@ void Dialog_Progress::on_save()
                        << "<title>" << _("GParted Details") << "</title>" << std::endl
                        << "</head>" << std::endl
                        << "<body>" << std::endl
- << "<p>" << _("GParted") << " " << VERSION << "</p>" << std::endl
+ << "<p>" << _("GParted") << " " << VERSION
+#ifdef USE_LIBPARTED_DMRAID
+ << " --enable-libparted-dmraid"
+#endif
+ << "</p>" << std::endl
                        << "<p>" << _("Libparted") << " " << signal_get_libparted_version .emit() << "</p>" << std::endl ;

                        //Write out each operation
$

In the meantime I am downloading the daily build of natty-desktop-i386.iso today (Feb 22, 2011) in preparation for testing this patch with Natty.