diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-02-13 00:59:27 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-02-13 00:59:27 +0800 |
commit | 45e52c4cdcf6c25815a211a7d48558cb72d0471a (patch) | |
tree | aabfd1651b7093ac946e29c7bf99d9e75ce007d8 /src/bookmarks | |
parent | bbd519c4867de487e09f8ac5f838a2b150cb75a1 (diff) | |
download | gsoc2013-epiphany-45e52c4cdcf6c25815a211a7d48558cb72d0471a.tar gsoc2013-epiphany-45e52c4cdcf6c25815a211a7d48558cb72d0471a.tar.gz gsoc2013-epiphany-45e52c4cdcf6c25815a211a7d48558cb72d0471a.tar.bz2 gsoc2013-epiphany-45e52c4cdcf6c25815a211a7d48558cb72d0471a.tar.lz gsoc2013-epiphany-45e52c4cdcf6c25815a211a7d48558cb72d0471a.tar.xz gsoc2013-epiphany-45e52c4cdcf6c25815a211a7d48558cb72d0471a.tar.zst gsoc2013-epiphany-45e52c4cdcf6c25815a211a7d48558cb72d0471a.zip |
2004-02-12 Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-node-db.c: (ephy_node_db_write_to_xml_valist):
* src/bookmarks/ephy-bookmarks-export.c:
(ephy_bookmarks_export_rdf):
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-export.c | 6 |
1 files changed, 6 insertions, 0 deletions
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; |