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!

CommentFileSizeAuthor
#2 rdfx-identifier-1139894.patch720 bytesdavidseth

Comments

scor’s picture

Version: 7.x-2.0-alpha1 » 7.x-2.x-dev
Issue tags: +Novice

yes, 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.

davidseth’s picture

Status: Active » Needs review
StatusFileSize
new720 bytes

Put novice hat on! haha

Here you go!

scor’s picture

Status: Needs review » Fixed

Hey David, nice to see in the issue queue :)

Thanks for the patch, committed: 13cc7d6.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

milesw’s picture

Project: Resource Description Framework (RDF) » RDF Extensions