Recognition of artwork page
Hello,
I would like to know how to make a page presenting a photo recognized as an Artwork item (i.e. Document type : illustration). As an example, this is what is done on Flickr, but I can figure out what is presented on these pages, that make them recognized as such.
I would appreciate help on that point !
Thanks !
I would like to know how to make a page presenting a photo recognized as an Artwork item (i.e. Document type : illustration). As an example, this is what is done on Flickr, but I can figure out what is presented on these pages, that make them recognized as such.
I would appreciate help on that point !
Thanks !
<meta name='DC.Type' content="Artwork"/>
only affects the "website type" field for Zotero.
So I guess I should be using another DC field, or more generally another RDF vocabulary. Am I right ? Any idea of which rdf to use ?
Thanks again !
If you are using a content management system on the server, it should be possible to have it generate the BibTeX / RDF on request and insert the unAPI code in the item pages. If these are manually generated pages, you'll need to do that more or less manually.
So i tried to implement an unAPI server. Here are how it show formats availables :
<?xml version="1.0"?>
<formats>
<format name="rdf" type="application/xml" docs="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
</formats>
And the result for a given image :
<?xml version="1.0"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:res="http://purl.org/vocab/resourcelist/schema#"
xmlns:z="http://www.zotero.org/namespaces/export#"
xmlns:ctag="http://commontag.org/ns#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:bilbio="http://purl.org/net/biblio#"
xmlns:bibo="http://purl.org/ontology/bibo/"
xmlns:foaf="http://xmlns.com/foaf/0.1/">
<bibo:Image rdf:about="http://phlit.org/items/show/2755">
<dcterms:title>« Corsets, boulevard de Strasbourg, 1912 »</dcterms:title>
<dcterms:date>1912</dcterms:date>
<dcterms:creator>ATGET, Eugène</dcterms:creator>
<bibo:uri>http://phlit.org/items/show/2755</bibo:uri>
<dcterms:creator rdf:nodeID="n1"/>
</bibo:Image>
</rdf:RDF>
But Zotero still doesn't see anything here.
Any idea of what could be wrong ?
Thanks !
In the header:
<link rel="unapi-server" type="application/xml" title="unAPI" href="http://www.gimranov.com/wp/wp-content/plugins/unapi/server.php"/>
In the text, for each item on the page:
<abbr class="unapi-id" title="http://www.gimranov.com/wp/?p=1061"><!-- --></abbr>
you can see the unapi server address in header :
<link rel="unapi-server" type="application/xml" title="unAPI" href="http://phlit.org/items/browse/output/dcmes-xml/">
and id is given as
<abbr class="unapi-id" title="2755"></abbr>
Thanks for your help :)
"rdf_zotero", "rdf_bibliontology", "mods", "marc", "unimarc", "ris", "refer", "bibtex", "rdf_dc"
Set the unAPI format list response to send "rdf_bibliontology" and it should work.
From that translator:
var RECOGNIZABLE_FORMATS = ["rdf_zotero", "rdf_bibliontology", "mods", "marc", "unimarc", "ris", "refer", "bibtex", "rdf_dc"];
Anyway, thank you very much : now it works !