Redland Release Timeline

A timeline of all the Redland releases.

Timeline Javascript from the MIT SIMILE project using the SPARQL XML results datasource for Timeline by Morten Frederiksen. on the output of the following SPARQL query ( query making result releases.xml )

PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX rss: <http://purl.org/rss/1.0/>
PREFIX content: <http://purl.org/rss/1.0/modules/content/>
SELECT ?date ?title ?description ?link
FROM <http://librdf.org/NEWS.rdf>
FROM <http://librdf.org/raptor/NEWS.rdf>
FROM <http://librdf.org/rasqal/NEWS.rdf>
FROM <http://librdf.org/bindings/NEWS.rdf>
WHERE {
  ?link a rss:item ;
        rss:title       ?title ;
        content:encoded ?description ;
        dc:date         ?date
}
ORDER BY DESC(?date)

Dave Beckett