hi,
I tried to add a reference to my foaf profile existing on my
server. Would probably be easier for those who do not deal with RDF
syntax if there were such a feature in one of the forms.
However, there wasn't a problem for me, I manually edited the rdf
file, and I want to know what you opinion about how I did it.
I will use n3 without relative path to be clear and easier to read.
1. I added a reference to the FOAF profile from my server:
<
http://myserver/myfoafprof> a foaf: PersonalProfileDocument;
foaf:primaryTopic <
http://myserver/myfoafprof#me> .
2. I stated explicitly that both profile refer to the same person:
<
http://myserver/myfoafprof#me> owl:sameAs <
http://foaf.me/
username#me> .
I avoided using rdfs:seeAlso although it's correctly because it can
mean any type of document not only a FOAF profile.
thank you.