[Dspace-tech] how to prevent thesis advisers from displaying as authors?

2012-09-06 Thread Shixing Wen
Lately, we have added thesis advisers (dc.contributor.advisor) to our
DSpace instance (1.6.0 JSPUI). However, they show up as authors in the
display. That's incorrect and misleading. Here are the examples:

http://d-commons.d.umn.edu:8180/jspui/handle/10792/25/browse?type=titlesubmit_browse=Title

Is it possible to display thesis advisers in a different field? If not, is
there a way to suppress thesis advisers from display?

Thanks,

-- 
---
Shixing Wen
Head of Technical Services
University of Minnesota Duluth Library
416 Library Drive
Duluth, MN 55812

218-726-8498
s...@d.umn.edu

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] how to prevent thesis advisers from displaying as authors?

2012-09-06 Thread Darren Arsenault
Hi,

The default setup associates all qualifiers of contributor with an author 
like so:


search.index.1 = author:dc.contributor.*

and

webui.browse.index.author = dc.contributor.*


so in order to prevent the thesis advisors from showing up you would have to 
change these search and browse indices, removing the wildcard character (*), 
to omit dc.contributer.advisor. You would then have to make individual 
indices for each of the other fields that you do want to appear when author is 
searched or displayed.

You can find the information on making these changes in the How To Guide from 
DSpace.org:

http://www.dspace.org/images/Training_Materials/dspacehowtoguide.pdf

Hope that helps, good-day and be well.

Darren Arsenault
Programmer
Algonquin College
1385 Woodroffe Avenue
Ottawa, ON, K2G 1V8




From: Shixing Wen [s...@d.umn.edu]
Sent: September-06-12 12:33 PM
To: dspace-tech@lists.sourceforge.net
Subject: [Dspace-tech] how to prevent thesis advisers from displaying as 
authors?


Lately, we have added thesis advisers (dc.contributor.advisor) to our DSpace 
instance (1.6.0 JSPUI). However, they show up as authors in the display. 
That's incorrect and misleading. Here are the examples:

http://d-commons.d.umn.edu:8180/jspui/handle/10792/25/browse?type=titlesubmit_browse=Title

Is it possible to display thesis advisers in a different field? If not, is 
there a way to suppress thesis advisers from display?

Thanks,

--
---
Shixing Wen
Head of Technical Services
University of Minnesota Duluth Library
416 Library Drive
Duluth, MN 55812

218-726-8498
s...@d.umn.edumailto:s...@d.umn.edu



--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] how to prevent thesis advisers from displaying as authors?

2012-09-06 Thread Hilton Gibson
From the DSpace config file.

## Set the options for how authors are displayed in the browse listing

# Define which field is the author/editor etc listing.  This should be
listed in the
# field webui.itemlist.columns, otherwise it will have no effect.
# This cannot be a field already marked out as a title or a date, as this
# will also have no effect.  This is used in conjunction with the
# webui.browse.author-limit field below, to truncate author lists.  For
# configuring links to author publication lists use webui.browse.link below.
# (This setting is not used by the XMLUI as it is controlled by your theme)
#
#webui.browse.author-field = dc.contributor.author
webui.browse.author-field = dc.contributor.*

# define how many authors to display before truncating and completing with
et al
# (or language pack specific alternative)
#
# Use -1 for unlimited (which is what will be used if this option
# is omitted)
#
# webui.browse.author-limit = 3

# which fields should link to other browse listings.  This should associated
# the name of one of the above browse indices with a metadata field listed
# in webui.itemlist.columns above.  The form is:
#
# webui.browse.link.n = index name:display column metadata
#
# Note that cross linking will only work for fields other than title.
#
# The effect this has is to create links to browse views for the item
clicked on.
# If it is a single type, it will link to a view of all the items which
share
# that metadata element in common (i.e. all the papers by a single author).
 If
# it is a full type, it will link to a view of the standard full browse
page,
# starting with the value of the link clicked on.
# (This setting is not used by the XMLUI, as links are controlled by your
theme)
#
# The default below defines the authors to link to other publications by
that author
#
#webui.browse.link.1 = author:dc.contributor.author
webui.browse.link.1 = author:dc.contributor.*


Cheers

hg

On 6 September 2012 20:15, Darren Arsenault arse...@algonquincollege.comwrote:

 Hi,

 The default setup associates all qualifiers of contributor with an
 author like so:


 search.index.1 = author:dc.contributor.*

 and

 webui.browse.index.author = dc.contributor.*


 so in order to prevent the thesis advisors from showing up you would have
 to change these search and browse indices, removing the wildcard character
 (*), to omit dc.contributer.advisor. You would then have to make
 individual indices for each of the other fields that you do want to appear
 when author is searched or displayed.

 You can find the information on making these changes in the How To Guide
 from DSpace.org:

 http://www.dspace.org/images/Training_Materials/dspacehowtoguide.pdf

 Hope that helps, good-day and be well.

 Darren Arsenault
 Programmer
 Algonquin College
 1385 Woodroffe Avenue
 Ottawa, ON, K2G 1V8


 

 From: Shixing Wen [s...@d.umn.edu]
 Sent: September-06-12 12:33 PM
 To: dspace-tech@lists.sourceforge.net
 Subject: [Dspace-tech] how to prevent thesis advisers from displaying as
 authors?


 Lately, we have added thesis advisers (dc.contributor.advisor) to our
 DSpace instance (1.6.0 JSPUI). However, they show up as authors in the
 display. That's incorrect and misleading. Here are the examples:


 http://d-commons.d.umn.edu:8180/jspui/handle/10792/25/browse?type=titlesubmit_browse=Title

 Is it possible to display thesis advisers in a different field? If not, is
 there a way to suppress thesis advisers from display?

 Thanks,

 --
 ---
 Shixing Wen
 Head of Technical Services
 University of Minnesota Duluth Library
 416 Library Drive
 Duluth, MN 55812

 218-726-8498
 s...@d.umn.edumailto:s...@d.umn.edu
 



 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech




-- 
*Hilton Gibson*
Systems Administrator
JS Gericke Library
Room 1025D
Stellenbosch University
Private Bag X5036
Stellenbosch
7599
South Africa

Tel: +27 21 808 4100 | Cell: +27 84 646 4758
http://library.sun.ac.za
http://scholar.sun.ac.za
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114