diff options
author | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-06-28 02:20:06 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-06-28 02:20:06 +0800 |
commit | af5e0c337633c1a40fcf9bfdab0aed3d5ce8e4f6 (patch) | |
tree | 757ce648fed770fc819b051b85a2382bb123dc32 /src/bookmarks | |
parent | 648c4d43ce6d6e0e177825d80db430cb656b36d3 (diff) | |
download | gsoc2013-epiphany-af5e0c337633c1a40fcf9bfdab0aed3d5ce8e4f6.tar gsoc2013-epiphany-af5e0c337633c1a40fcf9bfdab0aed3d5ce8e4f6.tar.gz gsoc2013-epiphany-af5e0c337633c1a40fcf9bfdab0aed3d5ce8e4f6.tar.bz2 gsoc2013-epiphany-af5e0c337633c1a40fcf9bfdab0aed3d5ce8e4f6.tar.lz gsoc2013-epiphany-af5e0c337633c1a40fcf9bfdab0aed3d5ce8e4f6.tar.xz gsoc2013-epiphany-af5e0c337633c1a40fcf9bfdab0aed3d5ce8e4f6.tar.zst gsoc2013-epiphany-af5e0c337633c1a40fcf9bfdab0aed3d5ce8e4f6.zip |
*** empty log message ***
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-export.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/bookmarks/ephy-bookmarks-export.c b/src/bookmarks/ephy-bookmarks-export.c index 223297f87..7ca93811e 100644 --- a/src/bookmarks/ephy-bookmarks-export.c +++ b/src/bookmarks/ephy-bookmarks-export.c @@ -17,6 +17,7 @@ */ #include <libxml/tree.h> +#include <libgnomevfs/gnome-vfs-utils.h> #include "ephy-bookmarks-export.h" #include "ephy-node-common.h" @@ -29,7 +30,7 @@ add_topics_list (EphyNode *topics, EphyNode *bmk, xmlNodePtr parent) GPtrArray *children; int i; GList *bmks = NULL, *l; - xmlNodePtr xml_node, bag_node, item_node; + xmlNodePtr xml_node; children = ephy_node_get_children (topics); for (i = 0; i < children->len; i++) @@ -52,18 +53,15 @@ add_topics_list (EphyNode *topics, EphyNode *bmk, xmlNodePtr parent) if (bmks == NULL) return; - xml_node = xmlNewChild (parent, NULL, "dc:subject", NULL); - bag_node = xmlNewChild (xml_node, NULL, "rdf:Bag", NULL); - for (l = bmks; l != NULL; l = l->next) { const char *name; EphyNode *node = l->data; + xml_node = xmlNewChild (parent, NULL, "dc:subject", NULL); name = ephy_node_get_property_string (node, EPHY_NODE_KEYWORD_PROP_NAME); - item_node = xmlNewChild (bag_node, NULL, "rdf:li", NULL); - xmlNodeSetContent (item_node, name); + xmlNodeSetContent (xml_node, name); } g_list_free (bmks); @@ -77,6 +75,7 @@ ephy_bookmarks_export_rdf (EphyBookmarks *bookmarks, EphyNode *topics; xmlDocPtr doc; xmlNodePtr root, xml_node, channel_node, channel_seq_node; + char *uri; GPtrArray *children; int i; @@ -92,7 +91,9 @@ ephy_bookmarks_export_rdf (EphyBookmarks *bookmarks, xmlSetProp (root, "xmlns:dc", "http://purl.org/dc/elements/1.1/"); channel_node = xmlNewChild (root, NULL, "channel", NULL); - xmlSetProp (channel_node, "rdf:about", "http://epiphany.mozdev.org/bookmarks"); + uri = gnome_vfs_get_uri_from_local_path (filename); + xmlSetProp (channel_node, "rdf:about", uri); + g_free (uri); xml_node = xmlNewChild (channel_node, NULL, "title", NULL); xmlNodeSetContent (xml_node, "Epiphany bookmarks"); |