HughP / simal

Automatically exported from code.google.com/p/simal
0 stars 0 forks source link

Incorrect modelling of homepages and blog URLs #333

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The doapcreator generates RDF that I'm not so happy with now that I revisit the 
blog part.

For the project blog RSS feed we use the non-existent foaf:seeAlso. This was 
inspired by the DOAP description of OSS Watch in the testdata [1] so that needs 
to be revised as well. The current description is:

    <foaf:seeAlso
      rdf:resource="http://www.oss-watch.ac.uk/rss/communitynews.rss"
      dc:format="application/rss+xml" dc:title="Community" />

It's rdfs:seeAlso but that's also not appropriate I think because it suggests a 
too great similarity between the project and a website.

An improvement would be to make the website a foaf:Document rather than just 
having a URL and some properties for that.

[1] 
https://simal.googlecode.com/svn/trunk/uk.ac.osswatch.simal.core/src/main/resour
ces/testData/ossWatchDOAP.xml

Original issue reported on code.google.com by sander.v...@oucs.ox.ac.uk on 3 Aug 2010 at 4:01

GoogleCodeExporter commented 9 years ago
Now changed to add a blog property for both the blog url and the RSS feed, both 
of which are foaf:Document s.

The distinction is made based on the dc:format, for example:

 <blog>
  <foaf:Document rdf:about="http://asdf.com/rss"/>
 </blog>
 <blog>
  <foaf:Document rdf:about="http://asdf.com">
   <dc:format>application/rss+xml</dc:format>
  </foaf:Document>
 </blog>

Original comment by sander.v...@oucs.ox.ac.uk on 4 Aug 2010 at 11:03

GoogleCodeExporter commented 9 years ago
This issue was closed by revision r1991.

Original comment by sander.v...@oucs.ox.ac.uk on 4 Aug 2010 at 11:05