On Tue, Sep 24, 2013 at 7:57 PM, Stefanie Behnke <[email protected]> wrote: > I am using Dspace 3.1 and the mirage theme. I think I will try to implement > this option for the xmlui. But there are further problems, looking at > https://wiki.duraspace.org/display/DSPACE/Use+the+OAI-PMH+interface > > I have rebuild Dspace, but > http://localhost:8080/jspui/dspace-oai/request?verb=Identify is still not > working.
Assuming you added a context for oai according to these instructions (Step 9), the context (webapp) root would be /oai, i.e. an example URL would be http://localhost:8080/oai/request?verb=Identify Here's the stylesheet you would have to add to OAI to output to bibtex: [1]. It works by transforming the internal xoai format to bibtex. I just realized that it's probably easier to not use OAI here and just modify the stylesheet to transform DC nodes from METS to bibtex. The METS document is available directly in XMLUI and that's actually what XMLUI uses to render item metadata fields. So, your METS document would be /metadata/handle/123456789/132/mets.xml and you'd pass this as input (using <xsl:template match="dim:dim">) to the modified bibtex.xsl stylesheet. You'd modify the stylesheet by changing e.g. doc:metadata/doc:element[@name='dc']/doc:element[@name='title']/doc:element/doc:field[@name='value']/text() to dim:field[@element='title'] You'd have to do most of this if you used the OAI approach, too. This direct approach has the added benefit of you not depending on running OAI. [1] https://wiki.duraspace.org/display/DSDOC3x/Installation#Installation-Installation [2] https://raw.github.com/lyncode/DSpace/51a3187796a3df275dc05cf4647e2461bacbba5f/dspace/config/crosswalks/export/bibtex.xsl Regards, ~~helix84 Compulsory reading: DSpace Mailing List Etiquette https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette ------------------------------------------------------------------------------ October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from the latest Intel processors and coprocessors. See abstracts and register > http://pubads.g.doubleclick.net/gampad/clk?id=60133471&iu=/4140/ostg.clktrk _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

