For foaf:Person I noticed, that in the meta tag of the profile HTML I get "/users/username#me" but in the RDF at '/users/1/rdf' I see "/users/username#this". In essense: #me vs. #this.
It would be nice if there weren't several URIs created for the same thing/person. Why does this happen, is this data from different modules?
Best regards!
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | rdfx-identifier-1139894.patch | 720 bytes | davidseth |
Comments
Comment #1
scor commentedyes, this is due to a silly copy/paste in rdfx_build_rdf_user():
$res_uri = url('user/' . $user->uid, array('fragment' => 'this', 'absolute' => TRUE));
should be
$res_uri = url('user/' . $user->uid, array('fragment' => 'me', 'absolute' => TRUE));
That's an easy fix, tagging novice.
Comment #2
davidseth commentedPut novice hat on! haha
Here you go!
Comment #3
scor commentedHey David, nice to see in the issue queue :)
Thanks for the patch, committed: 13cc7d6.
Comment #5
milesw commented