Hi George,

I should have pointed out -- DSpace does actually support a reference manager out of the box, using COinS (http://ocoins.info/) embedded metadata. Zotero can read these out of the box, see https://www.zotero.org/support/dev/exposing_metadata -- if you have the Zotero browser plug-in installed (Firefox, Chrome, Safari), you can import item metadata from the item page and then manage these via Zotero. So depending on your user base, you may not need any customisation at all.

cheers,
Andrea

On 09/02/16 16:54, George Kozak wrote:
Thanks, Andrea:
I will need to run these ideas past the people requesting this feature to see if what you and Bram mentioned would be sufficient for their needs.  I'm not sure at this point, but I appreciate the information.
George Kozak
Cornell University

On Monday, February 8, 2016, Andrea Schweer <schw...@waikato.ac.nz> wrote:
Hi George,

On 03/02/16 03:22, George Kozak wrote:
David, Bram & Susan:
Thank you for responding.  What my users want is to select something from the item page.  We had something like this back in DSpace 1.8.2 with code that we borrowed from (I don't recall from what University), that uploaded citations to RefWorks, buy that broke when we upgraded.

We have something that's probably more along the lines of what @mire is doing -- we generate a RIS file for import to EndNote etc. The client repository we developed this for is non-public at this point, but the code (though no documentation) is available on GitHub under the same license as DSpace:

https://github.com/UoW-IRRs/API-Extras/tree/master/src/main/java/nz/ac/waikato/its/dspace/exportcitation for the code that does the majority of the work
https://github.com/UoW-IRRs/XMLUI-Extras/tree/master/src/main/java/nz/ac/waikato/its/dspace/exportcitation for exposing it via XMLUI -- we had to hack the main XMLUI sitemap to let us export non-HTML; that modification isn't in our public GitHub repos but is pretty straightforward:

                    <map:match pattern="citation/handle/*/*">
                        <map:read type="ItemListCitationExporter">
                            <map:parameter name="handle" value="{1}/{2}"/>
                            <map:parameter name="format" value="{request-param:format}"/>
                        </map:read>
                    </map:match>

added just below

                        <map:match pattern="JSON/controlled-vocabulary">
                            <map:read type="JSONControlledVocabularyReader"/>
                        </map:match>

in https://github.com/DSpace/DSpace/blob/master/dspace-xmlui/src/main/webapp/sitemap.xmap, with this added in the map:readers section towards the top of the same file:
<map:reader name="ItemListCitationExporter" src=""/>

There is code in there to export search results as well, similar to what Bram mentioned.

I believe I have a little bit more documentation (but unfinished) somewhere that I can try to dig up if that'd be helpful.

cheers,
Andrea

--
Dr Andrea Schweer
Lead Software Developer, ITS Information Systems
The University of Waikato, Hamilton, New Zealand
+64-7-837 9120



--
***************************
George Kozak
Digital Library Specialist
Cornell University Library - IT
218 Olin Library
Cornell University
Ithaca, NY 14853
607-255-8924


-- 
Dr Andrea Schweer
Lead Software Developer, ITS Information Systems
The University of Waikato, Hamilton, New Zealand
+64-7-837 9120


--
You received this message because you are subscribed to the Google Groups "DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.

Reply via email to