Hi Marc, As I said off-list, great stuff, but the one area I have a query about is how you store the citation data eg dc.bibliographicCitation.title. Its not really how the DC spec sees that term being used. As 1.5 allow for multiple metadata schema I have been trying to find another schema that would allow me to store the metadata that DC doesn't cater for, specifically I am thinking of some of the constituent parts of a citation (journal title, volume, issue). It would certainly be nice to find a good fit rather than bending DC. I have been looking at http://wiki.bibliontology.com/index.php/Main_Page which Mark Diggory is involved with but I am not sure yet if it will meet my needs. Anyone out there got any other suggestions ?
Cheers, Robin. -- The University of Edinburgh is a charitable body, registered in Scotland, with registration number SC005336. -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marc Goovaerts Sent: 05 September 2008 08:31 To: [email protected] Subject: Re: [Dspace-tech] Removing the 1st step from submission Dear Jose, We are working on an alternative submission module, as we announced already previously. We have some delay but hope to finish the work at the end of this month. Our idea is to eliminate the first page and create a second page with templates under tabs (for us: article - conference paper - research report - .... - all, other people can fill it out there way) where you present only the necessary fields for that type. We will also refine the possibility of defining certain fields like identifier.citation. But this will be realized in a later phase. Most of the work is based on our developments in dspace 1.4.2. You can have a look at it at http://193.190.8.15/odin. You can test the alternative submission as user dspace and password dspace. You can find information about our developments at http://www.uhasselt.be/bibliotheek/dspace/dspace.htm. Regards Marc Goovaerts Staff member Information Technology Hasselt University Library Bibliotheek Universiteit Hasselt E. [EMAIL PROTECTED] -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: woensdag 3 september 2008 19:01 To: [email protected] Subject: DSpace-tech Digest, Vol 29, Issue 4 Send DSpace-tech mailing list submissions to [email protected] To subscribe or unsubscribe via the World Wide Web, visit https://lists.sourceforge.net/lists/listinfo/dspace-tech or, via email, send a message with subject or body 'help' to [EMAIL PROTECTED] You can reach the person managing the list at [EMAIL PROTECTED] When replying, please edit your Subject line so it is more specific than "Re: Contents of DSpace-tech digest..." Today's Topics: 1. Removing the 1st step from submission. (Blanco, Jose) 2. Re: Removing the 1st step from submission. (Tim Donohue) 3. Re: Removing the 1st step from submission. (Blanco, Jose) 4. Re: Removing the 1st step from submission. (Tim Donohue) 5. Re: Removing the 1st step from submission. (Blanco, Jose) ---------------------------------------------------------------------- Message: 1 Date: Wed, 3 Sep 2008 10:18:26 -0400 From: "Blanco, Jose" <[EMAIL PROTECTED]> Subject: [Dspace-tech] Removing the 1st step from submission. To: <[email protected]> Message-ID: <[EMAIL PROTECTED] > Content-Type: text/plain; charset="us-ascii" 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 WorkspaceItem.setMultiplefiles method with true, but I'm not sure from where, since it's normally called when the initial questions page is processed. Any ideas? Thanks! Jose ------------------------------ Message: 2 Date: Wed, 03 Sep 2008 09:49:35 -0500 From: Tim Donohue <[EMAIL PROTECTED]> Subject: Re: [Dspace-tech] Removing the 1st step from submission. To: "Blanco, Jose" <[EMAIL PROTECTED]> Cc: [email protected] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="iso-8859-1" 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 source code in place, you should be able to enable it in your item-submission.xml with the following: <step> <processing-class>edu.uiuc.dspace.submit.step.InitializationStep</processing -class> <workflow-editable>false</workflow-editable> </step> (Obviously, don't forget to remove or comment out the configuration for the "InitialQuestionsStep" in your item-submission.xml) Yes, I need to writeup a simple little "How-To" on the DSpace Wiki for this one. But, until then, I thought I'd just send this out via the list :) - Tim Blanco, Jose wrote: > 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 WorkspaceItem.setMultiplefiles method with true, > but I'm not sure from where, since it's normally called when the > initial questions page is processed. Any ideas? > > Thanks! > Jose > > ---------------------------------------------------------------------- > --- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > DSpace-tech mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/dspace-tech > -- Tim Donohue Research Programmer, Illinois Digital Environment for Access to Learning and Scholarship (IDEALS) University of Illinois at Urbana-Champaign [EMAIL PROTECTED] | (217) 333-4648 -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: InitializationStep.java ------------------------------ Message: 3 Date: Wed, 3 Sep 2008 12:19:03 -0400 From: "Blanco, Jose" <[EMAIL PROTECTED]> Subject: Re: [Dspace-tech] Removing the 1st step from submission. To: "Tim Donohue" <[EMAIL PROTECTED]> Cc: [email protected] Message-ID: <[EMAIL PROTECTED] > Content-Type: text/plain; charset="us-ascii" Tim: I put the file in dspace-api/src/main/java/org/dspace/submit/step/ I configured the file like this: <step> <processing-class>org.dspace.submit.step.InitializationStep</processing- class> <workflow-editable>false</workflow-editable> </step> But I'm getting this error: 2008-09-03 12:14:57,076 ERROR org.dspace.app.webui.servlet.SubmissionController @ Error loading step class'org.dspace.submit.step.InitializationStep': java.lang.ClassNotFoundException: org.dspace.submit.step.InitializationStep at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader .java:1363) at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader .java:1209) at org.dspace.app.webui.submit.JSPStepManager.loadStep(JSPStepManager.java: 124) at org.dspace.app.webui.servlet.SubmissionController.doStep(SubmissionContr oller.jav -----Original Message----- From: Tim Donohue [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 03, 2008 10:50 AM To: Blanco, Jose Cc: [email protected] Subject: Re: [Dspace-tech] Removing the 1st step from submission. 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 source code in place, you should be able to enable it in your item-submission.xml with the following: <step> <processing-class>edu.uiuc.dspace.submit.step.InitializationStep</proces sing-class> <workflow-editable>false</workflow-editable> </step> (Obviously, don't forget to remove or comment out the configuration for the "InitialQuestionsStep" in your item-submission.xml) Yes, I need to writeup a simple little "How-To" on the DSpace Wiki for this one. But, until then, I thought I'd just send this out via the list :) - Tim Blanco, Jose wrote: > 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 WorkspaceItem.setMultiplefiles method with true, > but I'm not sure from where, since it's normally called when the > initial questions page is processed. Any ideas? > > Thanks! > Jose > > ---------------------------------------------------------------------- > --- This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge Build the coolest Linux based applications with Moblin SDK & > win great prizes Grand prize is a trip for two to an Open Source event > anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > DSpace-tech mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/dspace-tech > -- Tim Donohue Research Programmer, Illinois Digital Environment for Access to Learning and Scholarship (IDEALS) University of Illinois at Urbana-Champaign [EMAIL PROTECTED] | (217) 333-4648 ------------------------------ Message: 4 Date: Wed, 03 Sep 2008 11:28:49 -0500 From: Tim Donohue <[EMAIL PROTECTED]> Subject: Re: [Dspace-tech] Removing the 1st step from submission. To: "Blanco, Jose" <[EMAIL PROTECTED]> Cc: [email protected] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed 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 'dspace-api' source checked out, you could place it in "[dspace-src]/dspace/modules/xmlui/src/main/java/org/dspace/submit/step/" (the latter path just adds the java code to the "overlay" for your XMLUI ONLY!) (2) Re-package via Maven: mvn package (3) Re-Install updated JAR/WAR to your installation location: cd /dspace/target/dspace-1.5.0-build.dir/ ant update (4) Copy over the updated item-submission.xml to your installation directory (i.e. [dspace]/config/item-submission.xml) (5) Restart Tomcat (Don't forget to copy new WAR over to Tomcat /webapps, before you restart.) I hope that helps... - Tim Blanco, Jose wrote: > Tim: > > I put the file in > dspace-api/src/main/java/org/dspace/submit/step/ > > I configured the file like this: > > <step> > > <processing-class>org.dspace.submit.step.InitializationStep</processing- > class> > <workflow-editable>false</workflow-editable> > </step> > > But I'm getting this error: > > 2008-09-03 12:14:57,076 ERROR > org.dspace.app.webui.servlet.SubmissionController @ Error loading step > class'org.dspace.submit.step.InitializationStep': > java.lang.ClassNotFoundException: > org.dspace.submit.step.InitializationStep > at > org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader > .java:1363) > at > org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader > .java:1209) > at > org.dspace.app.webui.submit.JSPStepManager.loadStep(JSPStepManager.java: > 124) > at > org.dspace.app.webui.servlet.SubmissionController.doStep(SubmissionContr > oller.jav > > -----Original Message----- > From: Tim Donohue [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 03, 2008 10:50 AM > To: Blanco, Jose > Cc: [email protected] > Subject: Re: [Dspace-tech] Removing the 1st step from submission. > > 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 source code in place, you should be able to enable it > in your item-submission.xml with the following: > > <step> > <processing-class>edu.uiuc.dspace.submit.step.InitializationStep</proces > sing-class> > <workflow-editable>false</workflow-editable> > </step> > > (Obviously, don't forget to remove or comment out the configuration for > the "InitialQuestionsStep" in your item-submission.xml) > > Yes, I need to writeup a simple little "How-To" on the DSpace Wiki for > this one. But, until then, I thought I'd just send this out via the > list :) > > - Tim > > > Blanco, Jose wrote: >> 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 WorkspaceItem.setMultiplefiles method with true, >> but I'm not sure from where, since it's normally called when the >> initial questions page is processed. Any ideas? >> >> Thanks! >> Jose >> >> ---------------------------------------------------------------------- >> --- This SF.Net email is sponsored by the Moblin Your Move Developer's > >> challenge Build the coolest Linux based applications with Moblin SDK & > >> win great prizes Grand prize is a trip for two to an Open Source event > >> anywhere in the world >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> _______________________________________________ >> DSpace-tech mailing list >> [email protected] >> https://lists.sourceforge.net/lists/listinfo/dspace-tech >> > > -- > Tim Donohue > Research Programmer, Illinois Digital Environment for Access to Learning > and Scholarship (IDEALS) University of Illinois at Urbana-Champaign > [EMAIL PROTECTED] | (217) 333-4648 > -- Tim Donohue Research Programmer, Illinois Digital Environment for Access to Learning and Scholarship (IDEALS) University of Illinois at Urbana-Champaign [EMAIL PROTECTED] | (217) 333-4648 ------------------------------ Message: 5 Date: Wed, 3 Sep 2008 13:01:07 -0400 From: "Blanco, Jose" <[EMAIL PROTECTED]> Subject: Re: [Dspace-tech] Removing the 1st step from submission. To: "Tim Donohue" <[EMAIL PROTECTED]> Cc: [email protected] Message-ID: <[EMAIL PROTECTED] > Content-Type: text/plain; charset="us-ascii" 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: [email protected] Subject: Re: [Dspace-tech] Removing the 1st step from submission. 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 'dspace-api' source checked out, you could place it in "[dspace-src]/dspace/modules/xmlui/src/main/java/org/dspace/submit/step/ " (the latter path just adds the java code to the "overlay" for your XMLUI ONLY!) (2) Re-package via Maven: mvn package (3) Re-Install updated JAR/WAR to your installation location: cd /dspace/target/dspace-1.5.0-build.dir/ ant update (4) Copy over the updated item-submission.xml to your installation directory (i.e. [dspace]/config/item-submission.xml) (5) Restart Tomcat (Don't forget to copy new WAR over to Tomcat /webapps, before you restart.) I hope that helps... - Tim Blanco, Jose wrote: > Tim: > > I put the file in > dspace-api/src/main/java/org/dspace/submit/step/ > > I configured the file like this: > > <step> > > <processing-class>org.dspace.submit.step.InitializationStep</processin > g- > class> > <workflow-editable>false</workflow-editable> > </step> > > But I'm getting this error: > > 2008-09-03 12:14:57,076 ERROR > org.dspace.app.webui.servlet.SubmissionController @ Error loading step > class'org.dspace.submit.step.InitializationStep': > java.lang.ClassNotFoundException: > org.dspace.submit.step.InitializationStep > at > org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoad > er > .java:1363) > at > org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoad > er > .java:1209) > at > org.dspace.app.webui.submit.JSPStepManager.loadStep(JSPStepManager.java: > 124) > at > org.dspace.app.webui.servlet.SubmissionController.doStep(SubmissionCon > tr > oller.jav > > -----Original Message----- > From: Tim Donohue [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 03, 2008 10:50 AM > To: Blanco, Jose > Cc: [email protected] > Subject: Re: [Dspace-tech] Removing the 1st step from submission. > > 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 source code in place, you should be able to enable > it in your item-submission.xml with the following: > > <step> > <processing-class>edu.uiuc.dspace.submit.step.InitializationStep</proc > es > sing-class> > <workflow-editable>false</workflow-editable> > </step> > > (Obviously, don't forget to remove or comment out the configuration > for the "InitialQuestionsStep" in your item-submission.xml) > > Yes, I need to writeup a simple little "How-To" on the DSpace Wiki for > this one. But, until then, I thought I'd just send this out via the > list :) > > - Tim > > > Blanco, Jose wrote: >> 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 WorkspaceItem.setMultiplefiles method with true, >> but I'm not sure from where, since it's normally called when the >> initial questions page is processed. Any ideas? >> >> Thanks! >> Jose >> >> --------------------------------------------------------------------- >> - >> --- This SF.Net email is sponsored by the Moblin Your Move >> Developer's > >> challenge Build the coolest Linux based applications with Moblin SDK >> & > >> win great prizes Grand prize is a trip for two to an Open Source >> event > >> anywhere in the world >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> _______________________________________________ >> DSpace-tech mailing list >> [email protected] >> https://lists.sourceforge.net/lists/listinfo/dspace-tech >> > > -- > Tim Donohue > Research Programmer, Illinois Digital Environment for Access to > Learning and Scholarship (IDEALS) University of Illinois at > Urbana-Champaign [EMAIL PROTECTED] | (217) 333-4648 > -- Tim Donohue Research Programmer, Illinois Digital Environment for Access to Learning and Scholarship (IDEALS) University of Illinois at Urbana-Champaign [EMAIL PROTECTED] | (217) 333-4648 ------------------------------ ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ ------------------------------ _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech End of DSpace-tech Digest, Vol 29, Issue 4 ****************************************** ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech

