Re: [Dspace-tech] Display order of authors doesn't match submission order

2010-01-20 Thread Gary Browne
Hi Mark,

 

I tried copying the suggested file (DescribeStep.java) to 
[dspace-src]/dspace-api/src/main/java/org/dspace/submit/step/DescribeStep.java, 
however now on submission the following error is triggered:

 

 

HTTP Status 500 -

 

type Exception report

 

message

 

description The server encountered an internal error () that prevented it from 
fulfilling this request.

 

exception

 

java.lang.NoSuchMethodError: 
org.dspace.submit.step.DescribeStep.getInputsReader(Ljava/lang/String;)Lorg/dspace/app/util/DCInputsReader;

  
org.dspace.app.webui.submit.step.JSPDescribeStep.showEditMetadata(JSPDescribeStep.java:241)

  
org.dspace.app.webui.submit.step.JSPDescribeStep.doPreProcessing(JSPDescribeStep.java:144)

  
org.dspace.app.webui.submit.JSPStepManager.doStepStart(JSPStepManager.java:315)

  
org.dspace.app.webui.submit.JSPStepManager.processStep(JSPStepManager.java:278)

 

 

This would appear to be because, AFAICS, the patch file compared to my current 
production file removes two code blocks:

 

The first is:

 

// Only check for required fields if user clicked the "next", the "previous" or 
the "progress bar" button

if (buttonPressed.equals(NEXT_BUTTON)

|| buttonPressed.startsWith(PROGRESS_BAR_PREFIX)

|| buttonPressed.equals(PREVIOUS_BUTTON)

|| buttonPressed.equals(CANCEL_BUTTON))

{

 

The second (and troublesome one in this instance) is:

 

/**

 * @param filename

 *file to get the input reader for

 * @return the current DCInputsReader 

 */

public static DCInputsReader getInputsReader(String filename) throws 
ServletException

{

inputsReader = new DCInputsReader(filename);

return inputsReader;

}

 

Thus the above exception is thrown. I presume this DCInputsReader method is 
being called from somewhere – do I need to make changes to  or replace any 
other classes?

 

Thanks

Gary

 

 

GARY BROWNE | Development Programmer 
Library IT Services | University Library

THE UNIVERSITY OF SYDNEY
T +61 2 9351 5946  | F +61 2 9036 

 

From: mdigg...@gmail.com [mailto:mdigg...@gmail.com] On Behalf Of Mark Diggory
Sent: Thursday, 14 January 2010 3:39 PM
To: Gary Browne
Cc: dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Display order of authors doesn't match submission 
order

 

Gary,

On Wed, Jan 13, 2010 at 3:32 PM, Gary Browne  wrote:

Hi all,

I'm running dspace 1.5.2. After submitting an item, the author listing is not 
preserved in the same order as the submission order. Is there some 
configuration in dspace.cfg which applies to this? I note that there is the 
jira issue DS-153 but I'm not clear whether this applies to 1.5.2. If so, are 
there instructions somewhere about applying patches to DSpace? I found this:

http://wiki.dspace.org/index.php/ApplyingPatches

but it doesn't actually describe the technical process.


Quick, dirty solution.

Take the following patched version of the file 

http://dspace.svn.sourceforge.net/viewvc/dspace/branches/dspace-1_5_x/dspace-api/src/main/java/org/dspace/submit/step/DescribeStep.java?revision=3394&pathrev=3394

and place it in one of three possible locations:

If using the full source distribution, you can replace the contents of the 
class directly...

[dspace-src]/dspace-api/src/main/java/org/dspace/submit/step/DescribeStep.java


or if using either distribution you cna choose one of the two following 
locations:

if using jspui

[dspace-src]/dspace/modules/jspui/src/main/java/org/dspace/submit/step/DescribeStep.java

or if using xmlui

[dspace-src]/dspace/modules/xmlui/src/main/java/org/dspace/submit/step/DescribeStep.java


The later two place the class only within the webapplication you are building.  
While the first option will put the class into all webapplications and the lib 
directory used for the commandline functionality.

...
 


Furthermore, I am running another (unpatched) 1.5.2 instance of dspace 
which doesn't suffer from this problem - how can that be?


Without reviewing the code, I recall the order of the authors is actually 
driven off the order of database records within the metadatavalue table in 
database. (someone correct me if I'm in error).  Thus differences in behavior 
may actually be an artifact of the database behavior. Or perhaps your running 
the 1.5.x branch from svn which has this patch applied?

Unfortunately, this is an area where flat old DC records and conversely DSpace 
do not have particularly strong support.  I suspect that capturing the priority 
of authors could possibly best be held in textual form within an additional 
field such as dc.identifier.bibliographicCitation field as an unambiguous 
original citation for the resource.

I was reading...
http://www.mail-archive.com/dspace-tech@lists.sourceforge.net/msg05213.html

Which might make things "look" ok in the UI, but I wonder if its of any benefit 
in other parts of D

Re: [Dspace-tech] OAI Activation

2010-01-20 Thread Caryn Neiswender
Actually, I just successfully activated the OAI-PMH on my DSpace 
instance (yay!).

Thanks,
Caryn


 Original Message 
Subject: [Dspace-tech] OAI Activation
From: Caryn Neiswender 
To: dspace-tech@lists.sourceforge.net
Date: 1/20/2010 2:49 PM
> Hello, All~
>
> Can anyone point me to documentation about activating OAI in DSpace 
> 1.5.2?  I know I can setup the QDC.properties, which will guide how the 
> metadata is distributed, but I need to know how to actually activate the 
> OAI. 
>
> Any help is greatly appreciated!
>
> ~Caryn
>
>   

-- 
~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
Caryn Neiswender
Digital Projects Specialist
UC Irvine Libraries
(949) 824-9086

Curiosity sends us out
To a world both larger and smaller
Than what we know and believe in
With a passion for finding an answer
Or at least understanding our questions.
-Excerpt from Julia Alvarez's "Why I Am in Love with Librarians." 


--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] OAI Activation

2010-01-20 Thread Stuart Lewis
Hi Caryn,

> Can anyone point me to documentation about activating OAI in DSpace 
> 1.5.2?  I know I can setup the QDC.properties, which will guide how the 
> metadata is distributed, but I need to know how to actually activate the 
> OAI. 

You need to deploy the 'oai' webapp to tomcat like you do the 'jspui' or 
'xmlui' webapp.

So copy [dspace]/webapps/oai to [tomcat]/webapps/oai/.

To access the interface you then use the URL:

 - http://your-host.example.com/oai/request (this is your base URL)
 - http://your-host.example.com/oai/request?verb=Identify (an example request)

Hope that helps,


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/


--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] OAI Activation

2010-01-20 Thread Caryn Neiswender
Hello, All~

Can anyone point me to documentation about activating OAI in DSpace 
1.5.2?  I know I can setup the QDC.properties, which will guide how the 
metadata is distributed, but I need to know how to actually activate the 
OAI. 

Any help is greatly appreciated!

~Caryn

-- 
~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
Caryn Neiswender
Digital Projects Specialist
UC Irvine Libraries
(949) 824-9086

Curiosity sends us out
To a world both larger and smaller
Than what we know and believe in
With a passion for finding an answer
Or at least understanding our questions.
-Excerpt from Julia Alvarez's "Why I Am in Love with Librarians." 


--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Browsing by Author in Kubrick - alpha links don't work on author page

2010-01-20 Thread Spencer Lamm
Hi-
We're on 1.5.2 and currently revamping the Kubrick theme. When
browsing by author the alpha links don't work on the page for a single
author, like 'Browsing by Author "Chao, Corey"'.

Checked other DSpace instances and see the same problem at MIT -
http://dspace.mit.edu/browse?rpp=20&value=Aalberts%2C+Daniel+Paul%2C+1966-&etal=-1&type=author&starts_with=M&order=ASC&sort_by=-1.

Thanks,
Spencer

--
Spencer Lamm
Digital Initiatives Librarian
Swarthmore College Library
sla...@swarthmore.edu
610-328-8541

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] XMLUI -- Register new user -- fails

2010-01-20 Thread Debashree Pati
Hi,

 

I am having this problem:

 

Using the xmlui interface for registering a user I am trying to register a
new user by providing a valid e-mail address. But, it gives the error
message "unable to send e-mail to this address".  No errors are present in
any of the logs. I have been able to create users using the command line
tool without any error. 

 

This is happening for the first time in one of our instances. I searched the
dspace-tech and came across the following thread with the exact same problem
being reported:

http://www.mail-archive.com/dspace-tech@lists.sourceforge.net/msg09026.html

 

Contacted the person who had posted it but did not get any response. 

 

Will appreciate any help.

 

Thanks,

Deb

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Collection Administrators

2010-01-20 Thread Thornton, Susan M. (LARC-B702)[RAYTHEON TECHNICAL SERVICES COMPANY]
Hi Richard,
 This is straight from the (DSpace 1.5.x) documentation, although I'm not 
sure it answers your question:

  i.
  Collection Administrators can:
1.  edit Collection description
2.  edit Submitters to a Collection
3.  map other Items into a Collection
4.  edit Item metadata in a Collection
5.  withdraw Items from a Collection

ii. 
 Collection Administrators can't:
1.  edit Authorization Policies at the Collection, Item, or Bitstream Levels
2.  edit the Workflow (change Workflow steps)
3.  edit Groups
4.  delete a Collection


Cheers,
Sue


From: Jizba, Richard [mailto:richardji...@creighton.edu]
Sent: Tuesday, January 19, 2010 1:33 PM
To: dspace-tech@lists.sourceforge.net
Subject: [Dspace-tech] Collection Administrators


Hello,

We are running 1.5.2 using Manakin. I have set up a collection and created a 
group. I have assigned two people to the group and also assigned the group the 
collection administration role. The two users in the collection administrator 
group can do what I would expect, except for the following: They cannot delete 
or upload bitstreams on an existing item in the collection.

Is this by design or should they be able to do this? If they should be able to 
do it, how do I fix it so that it works for all existing items and any items 
that will be added later to that collection?

Richard Jizba
--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Dspace to Spanish *

2010-01-20 Thread P. S. Mukhopadhyay
Dear Pablo

Check/Change language preference of your browser (here Internet Explorer)
from Spanish to English (Tools -> Internet Option -> General tab -> Language
-> Move English on top.

partha

-
---
Dr. Parthasarathi Mukhopadhyay
Lecturer, Department of Library and Information Science, University of
Burdwan,
Burdwan - 713 104 (WB), India
---

On 1/20/10, Pablo Olivares  wrote:
>
>  Junk Score: 1 out of 10 (below your Auto Allow 
> threshold)
> | Approve sender  | Block
> sender  | Block
> domain 
>
> Hi,
>
> I have been installed Dspace 1.5 on Linux, but when i put my url
> http://localhost:8080/xmlui on Explorer i see  all in spanish (thats i
> want!!) but if i see the url on Mozilla all is in English!!! ,  what do i
> need to do for my envairoment of Dspace will be on Spanish??
>
> Thanks for your comments..!
>
> Note: My WebServer is Tomcat.
>
>
> Pablo.
>
>
>
>
>
> --
> Throughout its 18-year history, RSA Conference consistently attracts the
> world's best and brightest in the field, creating opportunities for
> Conference
> attendees to learn about information security's most important issues
> through
> interactions with peers, luminaries and emerging and established companies.
> http://p.sf.net/sfu/rsaconf-dev2dev
> ___
> DSpace-tech mailing list
> DSpace-tech@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>
>


-
--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] DCterms Schema on Dspace

2010-01-20 Thread TAYLOR Robin
Hi Kevin,

Yes you can reference other schema in the input-forms.xml, for example...

  
other
title

false
Title of Book
onebox
Enter the title of the book
The title of the book is required.


Cheers, Robin.


Robin Taylor
Main Library
University of Edinburgh
Tel. 0131 6513808  

> -Original Message-
> From: Evans, Kevin [mailto:kevin.ev...@exeter.ac.uk] 
> Sent: 19 January 2010 17:04
> To: dspace-tech@lists.sourceforge.net
> Cc: Abu-Zayed, Ahmed
> Subject: [Dspace-tech] DCterms Schema on Dspace
> 
> Hi,
>  
> We have added a DCTerms schema to one of our Dspace Installations. 
>  
> Although I'm convinced its working. Do/can  I add custom 
> elements to the input-forms.xml
>  
> I note that it doesn't recognise  as a field 
> (which is correct for dcterms schema).
>  
> Any advice gratefully received.
>  
> Cheers
>  
> Kevin
>  
>  
> Kevin Evans MA
> Web Services Developer,
> Integration and Webservices,
> Room 901,
> 9th Floor, Laver Building,
> University of Exeter
> North Park Road,
> Exeter,
> EX4 4RN
> 01392 725573
> 07775027574
> http://my.exeter.ac.uk  
>  
> Times Higher University of the Year 2007-2008
>  
> This email and any attachment may contain information that is 
> confidential, privileged, or subject to copyright, and which 
> may be exempt from disclosure under applicable legislation. 
> It is intended for the addressee only. If you received this 
> message in error, please let me know and delete the email and 
> any attachments immediately. The University will not accept 
> responsibility for the accuracy/completeness of this e-mail 
> and its attachments. The University cannot guarantee that 
> this message and any attachments are virus free. Any views or 
> opinions expressed in this message are my own and do not 
> necessarily represent those of the Universitydon't waste 
> your life reading this trash and get out and live.
>  
> 
-- 
The University of Edinburgh is a charitable body, registered in
Scotland, with registration number SC005336.


--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech