diff options
author | Vincent Untz <vuntz@gnome.org> | 2009-07-30 18:51:48 +0800 |
---|---|---|
committer | Vincent Untz <vuntz@gnome.org> | 2009-07-30 18:51:48 +0800 |
commit | 72b49fe58f5feaa36ae4851415a76588793f1510 (patch) | |
tree | 388029e647659e812421247453a6298f2876ad29 /data/default-bookmarks.rdf.in | |
parent | 048b02780261819c29de2b43a1c1a18d3cbb066f (diff) | |
download | gsoc2013-epiphany-72b49fe58f5feaa36ae4851415a76588793f1510.tar gsoc2013-epiphany-72b49fe58f5feaa36ae4851415a76588793f1510.tar.gz gsoc2013-epiphany-72b49fe58f5feaa36ae4851415a76588793f1510.tar.bz2 gsoc2013-epiphany-72b49fe58f5feaa36ae4851415a76588793f1510.tar.lz gsoc2013-epiphany-72b49fe58f5feaa36ae4851415a76588793f1510.tar.xz gsoc2013-epiphany-72b49fe58f5feaa36ae4851415a76588793f1510.tar.zst gsoc2013-epiphany-72b49fe58f5feaa36ae4851415a76588793f1510.zip |
Move default bookmarks to separate rdf file instead of hard-coded values
Bug #300190
Diffstat (limited to 'data/default-bookmarks.rdf.in')
-rw-r--r-- | data/default-bookmarks.rdf.in | 23 |
1 files changed, 23 insertions, 0 deletions
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 @@ +<?xml version="1.0"?> +<rdf:RDF xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ephy="http://gnome.org/ns/epiphany#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <channel rdf:about="file://@pkgdatadir@/default-bookmarks.rdf"> + <title>Epiphany bookmarks</title> + <link>http://www.gnome.org/projects/epiphany/</link> + <items> + <rdf:Seq> + <rdf:li rdf:resource="http://www.google.com"/> + </rdf:Seq> + </items> + </channel> + <item rdf:about="http://www.google.com"> + <_title>Search the web</_title> + <!-- 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" --> + <_link>http://www.google.com</_link> + <!-- 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" --> + <_ephy:smartlink>http://www.google.com/search?q=%s&ie=UTF-8&oe=UTF-8</_ephy:smartlink> + </item> +</rdf:RDF> |