[Dspace-tech] Connecting Dspace to Exchange server

2008-09-03 Thread Michael Guthrie
Hi all, I have a dspace instance running on a Linux server in an intranet environment. We have our mail on an exchange server. What is the best way to hook up the mail function in dspace to the exchange or mail out functions in the system? Thanks Michael Guthrie IT Officer - Sea Your History

[Dspace-tech] question Manakin?

2008-09-03 Thread Zaya Kh
Hello all, I installed Manakin, But I don't login in Login page This page is error. what should I do? help me? Thanks - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux

[Dspace-tech] Configuring the Browse List

2008-09-03 Thread George Hamilton
Hi I want to change what metadata fields are displayed in the browse and search list. The documentation is rather divided on how to do it. The current documentation (1.5.1 beta), and that delivered with 1.5.0, suggest the browse indices should be configured as: webui.browse.index.n = index

Re: [Dspace-tech] [Dspace-general] Week 3: Good Repository Software

2008-09-03 Thread Mark H. Wood
Lots of folks are better positioned than I to describe excellence in document repository software from the end-user or content-administrator or organizational-administrator POV, so I'll confine my comments to the operational and information-architecture POV. o Leverages the organization's

Re: [Dspace-tech] Connecting Dspace to Exchange server

2008-09-03 Thread Reuben Pasquini
Hi Michael, The exchange server most likely provides a SMTP (simple mail transfer protocol) service on your intranet (dspace uses SMTP to send e-mail, and so do most e-mail clients), so you can probably just set the mail.server setting in dspace.cfg to the normal SMTP setting

[Dspace-tech] Chat in one hour

2008-09-03 Thread Dorothea Salo
By now you know the drill: irc.freenode.net, #dspace, one hour from now, to last one hour. I want to emphasize that there are no right or wrong answers to this week's question -- just different answers, and it's worthwhile to surface as many as we can. Thanks, all! Dorothea -- Dorothea Salo

Re: [Dspace-tech] [Dspace-general] Week 3: Good Repository Software

2008-09-03 Thread Mark H. Wood
*sigh* following up my own post. *sigh* I feel that good software should try not to do too much outside of its core competencies. This is why I keep whining about components. The more unrelated features you try to bind together, the fewer users will find your solution a good fit to their

[Dspace-tech] Removing the 1st step from submission.

2008-09-03 Thread Blanco, Jose
I would like to remove the 1st step from the submission. I have already taken care of the title and publisher questions that appear in the 1st step, and I would like now to have it assume that there are multiple files for the submission. I think that the easiest way to do this is to call the

Re: [Dspace-tech] Removing the 1st step from submission.

2008-09-03 Thread Tim Donohue
Jose, We created a custom invisible step in our DSpace 1.5 Submission process, in order to set some defaults and remove that 1st Initial Questions step. I've attached our InitializationStep.java to this email, for your usage/modification (and for anyone else interested). Once you have the

Re: [Dspace-tech] Removing the 1st step from submission.

2008-09-03 Thread Blanco, Jose
Tim: I put the file in dspace-api/src/main/java/org/dspace/submit/step/ I configured the file like this: step processing-classorg.dspace.submit.step.InitializationStep/processing- class workflow-editablefalse/workflow-editable /step But I'm getting this error:

Re: [Dspace-tech] Removing the 1st step from submission.

2008-09-03 Thread Tim Donohue
Jose, It looks like you didn't rebuild everything properly. The error is saying that it cannot find that new Java class. Generally, you should be doing the following: (1) Place that file in dspace-api/src/main/java/org/dspace/submit/step/. Alternatively, if you didn't have the

Re: [Dspace-tech] Removing the 1st step from submission.

2008-09-03 Thread Blanco, Jose
Tim: I had package edu.uiuc.dspace.submit.step; In the file instead of org.dspace.submit.step; Thank you! Jose -Original Message- From: Tim Donohue [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 03, 2008 12:29 PM To: Blanco, Jose Cc: dspace-tech@lists.sourceforge.net

Re: [Dspace-tech] Removing the 1st step from submission.

2008-09-03 Thread Blanco, Jose
Tim: I'm getting a different error now: 2008-09-03 13:27:50,426 ERROR org.dspace.app.webui.servlet.SubmissionController @ Error loading step class'org.dspace.submit.step.InitializationStep': java.lang.NullPointerException at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:269)

Re: [Dspace-tech] Removing the 1st step from submission.

2008-09-03 Thread Susan Parham
Thanks for sharing this Tim, as it is something we hope to do soon! Susan -- Susan Wells Parham Head, Digital Library Development Georgia Institute of Technology Library Information Center 404-894-4522 [EMAIL PROTECTED]

Re: [Dspace-tech] Removing the 1st step from submission.

2008-09-03 Thread Tim Donohue
Jose, It looks like there *may* be a bug in the 1.5.0 JSPUI regarding these non-interactive steps...though I haven't been able to look at it close enough to be 100% sure. The InitializationStep I sent you works fine with the XMLUI (which is what I'm working with). I'll look into the

Re: [Dspace-tech] Removing the 1st step from submission.

2008-09-03 Thread Blanco, Jose
Thank you! -Original Message- From: Tim Donohue [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 03, 2008 2:16 PM To: Blanco, Jose Cc: dspace-tech@lists.sourceforge.net Subject: Re: [Dspace-tech] Removing the 1st step from submission. Jose, It looks like there *may* be a bug in