From ab5f74ea9c207799a9ea36d4ddac46790e3ecfb5 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Mon, 21 Jun 2004 11:21:47 +0000 Subject: Allow importing from Epiphany bookmarks format (RDF), fixes bug #144699. 2004-06-21 Christian Persch * src/bookmarks/ephy-bookmarks-import.c: (ephy_bookmarks_import): Allow importing from Epiphany bookmarks format (RDF), fixes bug #144699. --- ChangeLog | 7 +++++++ src/bookmarks/ephy-bookmarks-import.c | 4 ++++ 2 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index 5a8cdae7b..d50692750 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-06-21 Christian Persch + + * src/bookmarks/ephy-bookmarks-import.c: (ephy_bookmarks_import): + + Allow importing from Epiphany bookmarks format (RDF), + fixes bug #144699. + 2004-06-21 Adam Hooper * lib/ephy-marshal.list: diff --git a/src/bookmarks/ephy-bookmarks-import.c b/src/bookmarks/ephy-bookmarks-import.c index 8272455b4..615463f59 100644 --- a/src/bookmarks/ephy-bookmarks-import.c +++ b/src/bookmarks/ephy-bookmarks-import.c @@ -104,6 +104,10 @@ ephy_bookmarks_import (EphyBookmarks *bookmarks, { return ephy_bookmarks_import_xbel (bookmarks, filename); } + else if (strcmp (type, "text/rdf") == 0) + { + return ephy_bookmarks_import_rdf (bookmarks, filename); + } else if (strstr (filename, MOZILLA_BOOKMARKS_DIR) != NULL || strstr (filename, FIREBIRD_BOOKMARKS_DIR) != NULL || strstr (filename, FIREFOX_BOOKMARKS_DIR) != NULL) -- cgit v1.2.3