This site has been retired. For up to date information, see handbook.gnome.org or gitlab.gnome.org.


[Home] [TitleIndex] [WordIndex

1. Web history - Bookmarks handling in tracker

1.1. Summary

In tracker we are interested on storing the WebHistory and the bookmarks to offer to the user a better "search experience". Those data can provide a very valuable information to find "related items".

On the epiphany side, they need an efficient storage for this information. They have a clear set of requirements and documented work about it in this page

1.2. Web history - Bookmarks in tracker

1.2.1. Relevant classes and properties

1.2.2. Examples of data in turtle format

The user has visited http://www.semanticdesktop.org/ontologies/nie/

<urn:uuid:1331264514> a nfo:WebHistory;
        nie:title "Nepomuk information ontology";
        nie:contentCreated "2009-03-12T15:02:53";
        nfo:domain "http://www.semanticdesktop.org";
        nfo:uri "http://www.semanticdesktop.org/ontologies/nie/".

A bookmark to "Git for GNOME developers" tagged with "tutorial" and "git"

<urn:uuid:2094738855> a nfo:Bookmark;
        nie:title "Git for GNOME developers - Gnome Live!";
        nie:contentCreated "2008-04-12T14:17:54";
        nao:hasTag [a nao:Tag; nao:prefLabel "tutorial"];
        nao:hasTag [a nao:Tag; nao:prefLabel "git"];
        nfo:bookmarks <http://live.gnome.org/GitForGnomeDevelopers>.

1.2.3. Example of some insertions/queries

Creating the previous WebHistory item. This is the Sparql to tracker (using the SparqlUpdate method)

INSERT { 
<urn:uuid:1331264514> a nfo:WebHistory;
        nie:title "Nepomuk information ontology";
        nie:contentCreated "2009-03-12T15:02:53";
        nfo:domain "http://www.semanticdesktop.org";
        nfo:uri "http://www.semanticdesktop.org/ontologies/nie/". }

SELECT ?title ?date WHERE {
      ?entry a nfo:WebHistory ;
         nie:title ?title ;
         nie:contentCreated ?date .
} ORDER BY ?date LIMIT 10

SELECT ?entry ?title WHERE {
      ?entry a nfo:WebHistory ;
         nie:title ?title ;
         nie:contentCreated ?date .
      FILTER (?date > "last_week_day")
} ORDER BY ?date 

SELECT ?entry ?title WHERE {
      ?entry a nfo:WebHistory ;
             fts:match "design".
} 

SELECT ?entry ?title WHERE {
      ?entry a nfo:WebHistory ;
         nie:title ?title ;
         nfo:domain ?domain.
} GROUP BY ?domain LIMIT 10

SELECT ?entry ?title WHERE {
      ?entry a nfo:WebHistory ;
         nie:title ?title ;
         nao:hasTag ?tag.
} GROUP BY ?tag

SELECT ?entry ?title WHERE {
      ?entry a nfo:WebHistory ;
         nie:title ?title ;
         nie:contentCreated ?date.
} ORDER BY ?date

SELECT ?entry ?title WHERE {
      ?entry a nfo:WebHistory ;
         nie:title ?title ;
         nao:hit ?hit.
} ORDER BY ?hit

1.2.4. How to test this (Development)

Please note that this code is under HEAVY development, not ready for release.

1.2.5. Some remarks


2024-10-23 10:59