Hello Peter,

that would be done in

https://github.com/DSpace/DSpace/blob/dspace-5_x/dspace/config/crosswalks/oai/metadataFormats/oai_dc.xsl
Assuming you got only Values in the Form Lastname, Firstname that would be 
something like this

<xsl:for-each
select="doc:metadata/doc:element[@name='dc']/doc:element[@name='contributor']/doc:element[@name='author']/doc:element/doc:field[@name='value']">
<xsl:if test="contains(., ',') = 'true' ">
<dc:creator>
<pc:person>
<pc:name type="nameUsedByThePerson">
<pc:foreName><xsl:value-of select="substring-after(., ',')" /></pc:foreName>
<pc:surName><xsl:value-of select="substring-before(., ',')" /></pc:surName>
</pc:name>
</pc:person>
</dc:creator>
</xsl:if>
</xsl:for-each>

Hope this helps

Claudia Jürgen



Am 03.08.2016 um 19:23 schrieb [email protected]:
Hello Claudia,
sorry for the confusion in my translation and you understood it correctly !
Right now, It displays Last Name then First Name.
I want to have the First name display first instead.

"FirstName LastName"

How do I change that ?
many thanks
-Peter.T

On Wednesday, August 3, 2016 at 10:17:02 AM UTC-5, Claudia Jürgen wrote:
Hello PT,

I do not quite understand the problem (maybe I'm lost in translation)

<dc:creator>Lorch, Brian</dc:creator>

seems to be correct "LastName, FirstName" as it is in:
http://winnspace.uwinnipeg.ca/handle/10680/330?show=full

http://winnspace.uwinnipeg.ca:8080/oai/request?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:winnspace.uwinnipeg.ca:10680/330

Or do you want to have it "FirstName LastName"?

In general if you want to change the oai_dc metadataformat for OAI-PMH
you got to adjust:

https://github.com/DSpace/DSpace/blob/dspace-5_x/dspace/config/crosswalks/oai/metadataFormats/oai_dc.xsl

If you want metadata changes in your repository to be reflected in the
OAI solr index you got to reindex oai by running
[dspace]/bin/dspace oai import -co

The simple [dspace]/bin/dspace oai import as indicated in
https://wiki.duraspace.org/display/DSDOC5x/OAI#OAI-OAI-PMHServerMaintenance
will only process new items.

Hope this helps

Claudia



Am 03.08.2016 um 16:54 schrieb [email protected] <javascript:>:

hi all,
I am running into a problem of having dc:creator in List of Record -
Metadata(OAI-PMH) showing -  first name FIRST instead of last name.
For example:

<dc:title>
Growth Beyond the Perimeter: Population Change in Manitoba's Capital
Region
</dc:title>
<dc:creator>Lorch, Brian</dc:creator>
<dc:subject>Urban Population Health</dc:subject>
<dc:subject>Population Growth</dc:subject>
<dc:subject>Population Change</dc:subject>
<dc:subject>Housing</dc:subject>
<dc:subject>Urban Demographics</dc:subject>
<dc:subject>Urbanization</dc:subject>
<dc:subject>Urban Growth</dc:subject>
<dc:subject>Municipalities</dc:subject>


how do I change this?

many thanks
-PT

--
Claudia Juergen
Eldorado

Technische Universität Dortmund
Universitätsbibliothek
Vogelpothsweg 76
44227 Dortmund

Tel.: +49 231-755 40 43
Fax: +49 231-755 40 32
[email protected] <javascript:>
www.ub.tu-dortmund.de

Wichtiger Hinweis: Die Information in dieser E-Mail ist vertraulich. Sie
ist ausschließlich für den Adressaten bestimmt. Sollten Sie nicht der für
diese E-Mail bestimmte Adressat sein, unterrichten Sie bitte den Absender
und vernichten Sie diese Mail. Vielen Dank.
Unbeschadet der Korrespondenz per E-Mail, sind unsere Erklärungen
ausschließlich final rechtsverbindlich, wenn sie in herkömmlicher
Schriftform (mit eigenhändiger Unterschrift) oder durch Übermittlung eines
solchen Schriftstücks per Telefax erfolgen.

Important note: The information included in this e-mail is confidential.
It is solely intended for the recipient. If you are not the intended
recipient of this e-mail please contact the sender and delete this message.
Thank you. Without prejudice of e-mail correspondence, our statements are
only legally binding when they are made in the conventional written form
(with personal signature) or when such documents are sent by fax.


--
Claudia Juergen
Eldorado

Technische Universität Dortmund
Universitätsbibliothek
Vogelpothsweg 76
44227 Dortmund

Tel.: +49 231-755 40 43
Fax: +49 231-755 40 32
[email protected]
www.ub.tu-dortmund.de

Wichtiger Hinweis: Die Information in dieser E-Mail ist vertraulich. Sie ist 
ausschließlich für den Adressaten bestimmt. Sollten Sie nicht der für diese 
E-Mail bestimmte Adressat sein, unterrichten Sie bitte den Absender und 
vernichten Sie diese Mail. Vielen Dank.
Unbeschadet der Korrespondenz per E-Mail, sind unsere Erklärungen 
ausschließlich final rechtsverbindlich, wenn sie in herkömmlicher Schriftform 
(mit eigenhändiger Unterschrift) oder durch Übermittlung eines solchen 
Schriftstücks per Telefax erfolgen.

Important note: The information included in this e-mail is confidential. It is 
solely intended for the recipient. If you are not the intended recipient of 
this e-mail please contact the sender and delete this message. Thank you. 
Without prejudice of e-mail correspondence, our statements are only legally 
binding when they are made in the conventional written form (with personal 
signature) or when such documents are sent by fax.

--
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 [email protected].
To post to this group, send email to [email protected].
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