Skip to content
Snippets Groups Projects
Commit 4f161824 authored by Alvaro Graves's avatar Alvaro Graves
Browse files

Adding beatles example

small issue with the html namespace fixed
parent 46309ca9
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:mo="http://musicontology.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rel="http://relation/"
xmlns="http://localhost/lodspeakr/lodspeakr/">
<foaf:Person rdf:about="http://localhost/lodspeakr/lodspeakr/george">
<rel:collaboratesAt rdf:resource="http://localhost/lodspeakr/lodspeakr/the_beatles"/>
<foaf:firstName>George</foaf:firstName>
<foaf:knows rdf:resource="http://localhost/lodspeakr/lodspeakr/john"/>
<foaf:knows rdf:resource="http://localhost/lodspeakr/lodspeakr/paul"/>
<foaf:knows rdf:resource="http://localhost/lodspeakr/lodspeakr/ringo"/>
<foaf:lastName>Harrison</foaf:lastName>
</foaf:Person>
<foaf:Person rdf:about="http://localhost/lodspeakr/lodspeakr/john">
<rel:collaboratesAt rdf:resource="http://localhost/lodspeakr/lodspeakr/the_beatles"/>
<foaf:firstName>John</foaf:firstName>
<foaf:knows rdf:resource="http://localhost/lodspeakr/lodspeakr/george"/>
<foaf:knows rdf:resource="http://localhost/lodspeakr/lodspeakr/paul"/>
<foaf:knows rdf:resource="http://localhost/lodspeakr/lodspeakr/ringo"/>
<foaf:lastName>Lennon</foaf:lastName>
</foaf:Person>
<foaf:Person rdf:about="http://localhost/lodspeakr/lodspeakr/paul">
<rel:collaboratesAt rdf:resource="http://localhost/lodspeakr/lodspeakr/the_beatles"/>
<foaf:firstName>Paul</foaf:firstName>
<foaf:knows rdf:resource="http://localhost/lodspeakr/lodspeakr/george"/>
<foaf:knows rdf:resource="http://localhost/lodspeakr/lodspeakr/john"/>
<foaf:knows rdf:resource="http://localhost/lodspeakr/lodspeakr/ringo"/>
<foaf:lastName>McCartney</foaf:lastName>
</foaf:Person>
<foaf:Person rdf:about="http://localhost/lodspeakr/lodspeakr/ringo">
<rel:collaboratesAt rdf:resource="http://localhost/lodspeakr/lodspeakr/the_beatles"/>
<foaf:firstName>Ringo</foaf:firstName>
<foaf:knows rdf:resource="http://localhost/lodspeakr/lodspeakr/george"/>
<foaf:knows rdf:resource="http://localhost/lodspeakr/lodspeakr/john"/>
<foaf:knows rdf:resource="http://localhost/lodspeakr/lodspeakr/paul"/>
<foaf:lastName>Starr</foaf:lastName>
</foaf:Person>
<mo:Group rdf:about="http://localhost/lodspeakr/lodspeakr/the_beatles">
<dcterms:title>The Beatles</dcterms:title>
</mo:Group>
</rdf:RDF>
@prefix : <http://localhost/lodspeakr/lodspeakr/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix mo: <http://musicontology.org/ns#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix rel: <http://relation/> .
:john a foaf:Person;
rel:collaboratesAt :the_beatles;
foaf:knows :paul, :ringo, :george ;
foaf:firstName "John";
foaf:lastName "Lennon".
:paul a foaf:Person;
rel:collaboratesAt :the_beatles;
foaf:knows :john, :ringo, :george ;
foaf:firstName "Paul";
foaf:lastName "McCartney" .
:ringo a foaf:Person;
rel:collaboratesAt :the_beatles;
foaf:knows :john, :paul, :george ;
foaf:firstName "Ringo";
foaf:lastName "Starr" .
:george a foaf:Person;
rel:collaboratesAt :the_beatles;
foaf:knows :john, :ringo, :paul ;
foaf:firstName "George";
foaf:lastName "Harrison" .
:the_beatles a mo:Group ;
dcterms:title "The Beatles".
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html {% for i, ns in base.ns %}xmlns:{{i}}="{{ns}}" <html xmlns="http://www.w3.org/1999/xhtml" {% for i, ns in base.ns %}xmlns:{{i}}="{{ns}}"
{%endfor%}version="XHTML+RDFa 1.0" xml:lang="en"> {%endfor%}version="XHTML+RDFa 1.0" xml:lang="en">
<head> <head>
<title>Page about {{base.value.this}}</title> <title>Page about {{base.value.this}}</title>
...@@ -9,8 +9,6 @@ ...@@ -9,8 +9,6 @@
</head> </head>
<body> <body>
<h1>Page about <a href='{{base.value.this}}'>{{base.curie.this}}</a></h1> <h1>Page about <a href='{{base.value.this}}'>{{base.curie.this}}</a></h1>
<br/>
<br/>
<div> <div>
<h2>Information from {{base.curie.this}}</h2> <h2>Information from {{base.curie.this}}</h2>
<table about="{{base.value.this}}"> <table about="{{base.value.this}}">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment