diff options
author | Siri Reiter <siri@jones.dk> | 2010-06-15 23:53:29 +0200 |
---|---|---|
committer | Siri Reiter <siri@jones.dk> | 2010-06-15 23:53:29 +0200 |
commit | f2c0348cb93b5b072de77fabfefb2ebfd1be361c (patch) | |
tree | 783f00c250c2846cc3bb487d8f5df90c4ed39968 | |
parent | 20c5ca38b48a3b2859461528ca03a2bcb97e5017 (diff) |
Fix internal anchers in foaf.
-rw-r--r-- | foaf.ttl | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -1,4 +1,4 @@ -@base <http://sirireiter.dk/foaf.rdf#> . +@base <http://sirireiter.dk/foaf.rdf> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix dc: <http://purl.org/dc/elements/1.1/> . @@ -15,10 +15,10 @@ dcterms:modified "2008-08-31T14:03:05Z" ; admin:errorReportsTo <mailto:leigh@ldodds.com> ; a foaf:PersonalProfileDocument ; - foaf:maker <me> ; - foaf:primaryTopic <me> . + foaf:maker <#me> ; + foaf:primaryTopic <#me> . -<jonas> +<#jonas> a foaf:Person ; rdfs:seeAlso <http://dr.jones.dk/foaf.rdf#me> ; foaf:homepage <http://dr.jones.dk/> ; @@ -27,7 +27,7 @@ foaf:name "Jonas Smedegaard" ; foaf:nick "dr. Jones" . -<me> +<#me> lang:masters "danish", "english", "german" ; lang:reads "french", "norwegian", "swedish" ; lang:speaks "french" ; @@ -37,10 +37,10 @@ bio:place "Århus fødeanstalt, Århus, Denmark" ; a bio:Birth ] ; - rel:collaboratesWith _:jonas ; - rel:lifePartnerOf _:jonas ; - rel:livesWith _:jonas ; - rel:worksWith _:jonas ; + rel:collaboratesWith <#jonas> ; + rel:lifePartnerOf <#jonas> ; + rel:livesWith <#jonas> ; + rel:worksWith <#jonas> ; a foaf:Person ; foaf:based_near [ geo:lat "55.647647" ; @@ -51,7 +51,7 @@ foaf:gender "female" ; foaf:givenname "Siri Snell" ; foaf:homepage <.> ; - foaf:knows <jonas> ; + foaf:knows <#jonas> ; foaf:mbox <mailto:siri@jones.dk> ; foaf:mbox_sha1sum "bf62f0e279fdf15881944a6070fa3c7c78932216" ; foaf:myersBriggs "INFJ" ; |