From 72b49fe58f5feaa36ae4851415a76588793f1510 Mon Sep 17 00:00:00 2001 From: Vincent Untz Date: Thu, 30 Jul 2009 12:51:48 +0200 Subject: Move default bookmarks to separate rdf file instead of hard-coded values Bug #300190 --- data/Makefile.am | 15 ++++++++++++++- data/default-bookmarks.rdf.in | 23 +++++++++++++++++++++++ po/POTFILES.in | 1 + src/bookmarks/Makefile.am | 1 + src/bookmarks/ephy-bookmarks.c | 23 +---------------------- 5 files changed, 40 insertions(+), 23 deletions(-) create mode 100644 data/default-bookmarks.rdf.in diff --git a/data/Makefile.am b/data/Makefile.am index ec74a1e56..e17a252a7 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -42,6 +42,17 @@ service_DATA = $(service_in_files:.service.in=.service) $(service_DATA): $(service_in_files) Makefile @sed -e "s|\@bindir\@|$(bindir)|" $< > $@ +# Default bookmarks +# We don't put translations in the resulting rdf since the code can get +# the translations via gettext (although it can also get translations +# from the rdf if they are there and not available via gettext) +default_bookmarksdir = $(pkgdatadir) +default_bookmarks_in_files = default-bookmarks.rdf.in +default_bookmarks_DATA = $(default_bookmarks_in_files:.rdf.in=.rdf) +$(default_bookmarks_DATA): $(default_bookmarks_in_files) Makefile $(INTLTOOL_MERGE) + LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< $@.tmp + sed -e "s|\@pkgdatadir\@|$(pkgdatadir)|g" $@.tmp > $@ || rm -f $@.tmp + rm -f $@.tmp install-data-local: $(schema_DATA) if GCONF_SCHEMAS_INSTALL @@ -63,6 +74,7 @@ EXTRA_DIST = \ $(xsl_DATA) \ $(service_DATA) \ $(m4data_DATA) \ + $(default_bookmarks_in_files) \ epiphany-service.xml \ check-mime.py @@ -70,4 +82,5 @@ DISTCLEANFILES = \ $(service_DATA) \ $(schema_in_files:.schemas.in=.schemas) \ $(pkgconfig_DATA) \ - $(desktop_DATA) + $(desktop_DATA) \ + $(default_bookmarks_DATA) diff --git a/data/default-bookmarks.rdf.in b/data/default-bookmarks.rdf.in new file mode 100644 index 000000000..5c23ea6e5 --- /dev/null +++ b/data/default-bookmarks.rdf.in @@ -0,0 +1,23 @@ + + + + Epiphany bookmarks + http://www.gnome.org/projects/epiphany/ + + + + + + + + <_title>Search the web + + <_link>http://www.google.com + + <_ephy:smartlink>http://www.google.com/search?q=%s&ie=UTF-8&oe=UTF-8 + + diff --git a/po/POTFILES.in b/po/POTFILES.in index 1137436de..d29c2ce8f 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -2,6 +2,7 @@ # List of source files containing translatable strings. # Please keep this file sorted alphabetically. data/bme.desktop.in.in +[type: gettext/xml] data/default-bookmarks.rdf.in data/epiphany.desktop.in.in data/epiphany-lockdown.schemas.in data/epiphany.schemas.in diff --git a/src/bookmarks/Makefile.am b/src/bookmarks/Makefile.am index bf87823dd..52664459b 100644 --- a/src/bookmarks/Makefile.am +++ b/src/bookmarks/Makefile.am @@ -111,6 +111,7 @@ libephybookmarks_la_CPPFLAGS = \ -I$(top_srcdir)/embed \ -I$(top_srcdir)/lib/widgets \ -I$(top_srcdir)/lib/egg \ + -DDATADIR=\""$(pkgdatadir)"\" \ $(AM_CPPFLAGS) libephybookmarks_la_CFLAGS = \ diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c index c8f06d226..81137c757 100644 --- a/src/bookmarks/ephy-bookmarks.c +++ b/src/bookmarks/ephy-bookmarks.c @@ -94,21 +94,6 @@ struct _EphyBookmarksPrivate #endif }; -typedef struct -{ - const char *title; - const char *location; -} EphyBookmarksBookmarkInfo; - -static const EphyBookmarksBookmarkInfo default_bookmarks [] = -{ - /* Translators you should change these links to respect your locale. - * For instance in .nl these should be - * "http://www.google.nl" and "http://www.google.nl/search?q=%s" - */ - { N_("Search the web"), N_("http://www.google.com/search?q=%s&ie=UTF-8&oe=UTF-8") } -}; - static const char *default_topics [] = { N_("Entertainment"), @@ -152,13 +137,7 @@ ephy_bookmarks_init_defaults (EphyBookmarks *eb) ephy_bookmarks_add_keyword (eb, _(default_topics[i])); } - for (i = 0; i < G_N_ELEMENTS (default_bookmarks); i++) - { - EphyNode *bmk; - - bmk = ephy_bookmarks_add (eb, _(default_bookmarks[i].title), - _(default_bookmarks[i].location)); - } + ephy_bookmarks_import_rdf (eb, DATADIR "/default-bookmarks.rdf"); } static void -- cgit v1.2.3