From 45e52c4cdcf6c25815a211a7d48558cb72d0471a Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Thu, 12 Feb 2004 16:59:27 +0000 Subject: 2004-02-12 Christian Persch * lib/ephy-node-db.c: (ephy_node_db_write_to_xml_valist): * src/bookmarks/ephy-bookmarks-export.c: (ephy_bookmarks_export_rdf): --- ChangeLog | 9 +++++++++ embed/mozilla/GlobalHistory.h | 5 +++-- lib/ephy-node-db.c | 6 ++++++ src/bookmarks/ephy-bookmarks-export.c | 6 ++++++ src/ephy-session.c | 6 ++++++ 5 files changed, 30 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0c0809ccf..5b60da80e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2004-02-12 Christian Persch + + * lib/ephy-node-db.c: (ephy_node_db_write_to_xml_valist): + * src/bookmarks/ephy-bookmarks-export.c: + (ephy_bookmarks_export_rdf): + * src/ephy-session.c: (ephy_session_save): + + Re-enalble indentation. + 2004-02-12 Christian Persch * configure.in: diff --git a/embed/mozilla/GlobalHistory.h b/embed/mozilla/GlobalHistory.h index 35e744b0f..ab3937afa 100644 --- a/embed/mozilla/GlobalHistory.h +++ b/embed/mozilla/GlobalHistory.h @@ -1,6 +1,7 @@ /* - * Copyright (C) 2001, 204 Philip Langdale - * + * Copyright (C) 2001, 2004 Philip Langdale + * Copyright (C) 2004 Christian Persch + * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) diff --git a/lib/ephy-node-db.c b/lib/ephy-node-db.c index d7e0d34bc..874b2a30a 100644 --- a/lib/ephy-node-db.c +++ b/lib/ephy-node-db.c @@ -413,6 +413,12 @@ ephy_node_db_write_to_xml_valist (EphyNodeDb *db, return -1; } + ret = xmlTextWriterSetIndent (writer, 1); + if (ret < 0) goto out; + + ret = xmlTextWriterSetIndentString (writer, " "); + if (ret < 0) goto out; + ret = xmlTextWriterStartDocument (writer, "1.0", NULL, NULL); if (ret < 0) goto out; diff --git a/src/bookmarks/ephy-bookmarks-export.c b/src/bookmarks/ephy-bookmarks-export.c index f035e8fbb..bd3b3db55 100644 --- a/src/bookmarks/ephy-bookmarks-export.c +++ b/src/bookmarks/ephy-bookmarks-export.c @@ -100,6 +100,12 @@ ephy_bookmarks_export_rdf (EphyBookmarks *bookmarks, return; } + ret = xmlTextWriterSetIndent (writer, 1); + if (ret < 0) goto out; + + ret = xmlTextWriterSetIndentString (writer, " "); + if (ret < 0) goto out; + ret = xmlTextWriterStartDocument (writer, "1.0", NULL, NULL); if (ret < 0) goto out; diff --git a/src/ephy-session.c b/src/ephy-session.c index b95754187..96aa5919a 100644 --- a/src/ephy-session.c +++ b/src/ephy-session.c @@ -524,6 +524,12 @@ ephy_session_save (EphySession *session, return FALSE; } + ret = xmlTextWriterSetIndent (writer, 1); + if (ret < 0) goto out; + + ret = xmlTextWriterSetIndentString (writer, " "); + if (ret < 0) goto out; + START_PROFILER ("Saving session") ret = xmlTextWriterStartDocument (writer, "1.0", NULL, NULL); -- cgit v1.2.3