aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-01-29 02:55:53 +0800
committerChristian Persch <chpe@src.gnome.org>2004-01-29 02:55:53 +0800
commit65b46c9e9e72d31a3a8937c4774f91b549fb214d (patch)
tree5e3792302008d40432c2bd9797530280e93b439d
parent283e534a38322c2783ff004081717e3d8eca83c2 (diff)
downloadgsoc2013-epiphany-65b46c9e9e72d31a3a8937c4774f91b549fb214d.tar
gsoc2013-epiphany-65b46c9e9e72d31a3a8937c4774f91b549fb214d.tar.gz
gsoc2013-epiphany-65b46c9e9e72d31a3a8937c4774f91b549fb214d.tar.bz2
gsoc2013-epiphany-65b46c9e9e72d31a3a8937c4774f91b549fb214d.tar.lz
gsoc2013-epiphany-65b46c9e9e72d31a3a8937c4774f91b549fb214d.tar.xz
gsoc2013-epiphany-65b46c9e9e72d31a3a8937c4774f91b549fb214d.tar.zst
gsoc2013-epiphany-65b46c9e9e72d31a3a8937c4774f91b549fb214d.zip
Use rdf:resource instead of rdf:about, fixes bug #131543.
2004-01-28 Christian Persch <chpe@cvs.gnome.org> * src/bookmarks/ephy-bookmarks-export.c: (ephy_bookmarks_export_rdf): Use rdf:resource instead of rdf:about, fixes bug #131543.
-rw-r--r--ChangeLog7
-rw-r--r--src/bookmarks/ephy-bookmarks-export.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7cb7178fe..0096b3b48 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2004-01-28 Christian Persch <chpe@cvs.gnome.org>
+ * src/bookmarks/ephy-bookmarks-export.c:
+ (ephy_bookmarks_export_rdf):
+
+ Use rdf:resource instead of rdf:about, fixes bug #131543.
+
+2004-01-28 Christian Persch <chpe@cvs.gnome.org>
+
* src/bookmarks/ephy-bookmarks-menu.c:
(ephy_bookmarks_menu_get_type), (sync_topic_properties),
(topic_child_changed_cb), (ephy_bookmarks_menu_init):
diff --git a/src/bookmarks/ephy-bookmarks-export.c b/src/bookmarks/ephy-bookmarks-export.c
index 1251eebe9..f035e8fbb 100644
--- a/src/bookmarks/ephy-bookmarks-export.c
+++ b/src/bookmarks/ephy-bookmarks-export.c
@@ -178,7 +178,7 @@ ephy_bookmarks_export_rdf (EphyBookmarks *bookmarks,
}
ret = xmlTextWriterWriteAttributeNS
- (writer, "rdf", "about", NULL, link ? link : url);
+ (writer, "rdf", "resource", NULL, link ? link : url);
g_free (link);
if (ret < 0) break;