Import an Zotero RDF citation with single field author

I'm trying to learn how to import citations using Zotero RDF by exporting existing citations from my libraries.

But I'm having trouble with single field authors.

For example, I have a citation in Zotero with author 'Productivity Commission' in a single field.

However, when I export it and import it again, the imported version uses two fields and has the surname as 'Productivity Commission' and the first name as blank.

Here's the relevant RDF code:

<foaf:Person>
<foaf:surname>Productivity Commission</foaf:surname>
</foaf:Person>


Can I change this code so the author name imports as a single field? If so, how?

Cheers

Josh
  • edited May 1, 2013
    this is a bug, thanks for reporting. This should be exported as
    <foaf:Organization>
    <foaf:name>Productivity Commission</foaf:name>
    </foaf:Organization>

    as the Bibliontology RDF does. (I guess this may be the info you're looking for?)
    I'll have to look into why Zotero RDF doesn't export that correctly.
  • OK no worries. Yes that's what I was after. Thanks.
  • I actually got to try that out this morning and it doesn't work for me.

    If I import with your suggested code I just get an empty author field.
  • we've finally fixed this, at least provisionally.

    <foaf:Person>
    <foaf:surname>Productivity Commission</foaf:surname>
    </foaf:Person>

    will now import as single field. Apologies for taking so long.
  • No worries. Thanks for making the change.
Sign In or Register to comment.