Hi Joan, > Hi. I'm using SWORD to make some ingestions into my DSpace. All > seems to > work fine but now I'm trying to generate the mets file with author, > contributors and so on... > I saw some examples and I know how to write the author/creator > (dc.contributor.author) but I didn't see examples about how to > introduce > the contributors (dc.contributor)
Take a look at [dspace]/config/crosswalks/sword-swap-ingest.xsl This file controls how the metadata in the METS is converted into DSpace metadata values. For example the creator is set using: <!-- creator element: dc.contributor.author --> <xsl:if test="./@epdcx:propertyURI='http://purl.org/dc/elements/1.1/ creator'"> <dim:field mdschema="dc" element="contributor" qualifier="author"> <xsl:value-of select="epdcx:valueString"/> </dim:field> </xsl:if> Adjust the crosswalk XSL as required. Thanks, Stuart Lewis IT Innovations Analyst and Developer Te Tumu Herenga The University of Auckland Library Auckland Mail Centre, Private Bag 92019, Auckland 1142, New Zealand Ph: 64 9 373-7599 x81928 http://www.library.auckland.ac.nz/ ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech

