Re: [Dspace-tech] item breaks

2013-06-17 Thread emilio lorenzo
Probably you miss the last recommendation of that wiki page: *Note*: Because this method uses p/ tags to generate paragraph breaks, the first paragraph of the abstract will be differently formatted to the rest if a p/ is not inserted before the first call to 'break'. Regards Emilio Lorenzo

Re: [Dspace-tech] How to delete item/collection/community

2013-06-17 Thread helix84
On Sun, Jun 16, 2013 at 12:10 PM, Md. Ataur Rahman ataurb...@gmail.com wrote: I'm using dspace 3.1 xmlui with Mirage theme. I want to completely delete an item as well as a collection. How can I do this as there is no option in the admin section for doing this type of work. Please help Log in

Re: [Dspace-tech] Email notification to existing specified users only

2013-06-17 Thread LifeH2O
I want to select dc.contributor.author in input forms (submission form) from existing EPersons only. How do I do that? -- View this message in context: http://dspace.2283337.n4.nabble.com/Email-notification-to-existing-specified-users-only-tp4664880p4664978.html Sent from the DSpace - Tech

Re: [Dspace-tech] Email notification to existing specified users only

2013-06-17 Thread helix84
Hi LifeH2O, perhaps you could try asking these question again at dspace-devel, maybe you'll get an answer there. On Mon, Jun 17, 2013 at 12:08 PM, LifeH2O life...@gmail.com wrote: I want to select dc.contributor.author in input forms (submission form) from existing EPersons only. How do I do

[Dspace-tech] Hide browse columns for which there is no metada

2013-06-17 Thread LifeH2O
All the collections in our system include /dc.student.class/. To make it visible we added it in dspace.cfg /webui.itemlist.columns = thumbnail, dc.date.issued(date), dc.title, dc.contributor.*, dc.student.class/ Now we have another collection 'Meeting minutes' which includes /time/ but no

Re: [Dspace-tech] Email notification to existing specified users only

2013-06-17 Thread LifeH2O
Ok. Then is it possible to select authors from all existing dc.contributor.author ? User can always enter incorrect name for dc.contributor.author, dc.contributor.advisor etc. We want name to be suggested from existing metadata elements. I have seen choice authority system but unable to make it

Re: [Dspace-tech] Hide browse columns for which there is no metada

2013-06-17 Thread helix84
On Mon, Jun 17, 2013 at 1:54 PM, LifeH2O life...@gmail.com wrote: All the collections in our system include /dc.student.class/. To make it visible we added it in dspace.cfg /webui.itemlist.columns = thumbnail, dc.date.issued(date), dc.title, dc.contributor.*, dc.student.class/ Now we have

Re: [Dspace-tech] Hide browse columns for which there is no metada

2013-06-17 Thread helix84
I realized that you mentioned webui.itemlist.columns, which works only in JSPUI. I don't know much about JSPUI, but you'll have to modify source to achieve what you need: https://github.com/DSpace/DSpace/blob/dspace-3.1/dspace-jspui/src/main/java/org/dspace/app/webui/jsptag/ItemListTag.java#L149

Re: [Dspace-tech] Email notification to existing specified users only

2013-06-17 Thread helix84
On Mon, Jun 17, 2013 at 2:00 PM, LifeH2O life...@gmail.com wrote: Ok. Then is it possible to select authors from all existing dc.contributor.author ? User can always enter incorrect name for dc.contributor.author, dc.contributor.advisor etc. We want name to be suggested from existing metadata

Re: [Dspace-tech] Hide browse columns for which there is no metada

2013-06-17 Thread Konstantinos Stamatis
Dear LifeH2O, As far as I know, this is not possible out of the box in DSpace. Moreover, what you are saying is not correct in many ways, ie. what will happen if an unscoped search (like simple search in home page) results items from both collections? Which column will be shown in such a case.

Re: [Dspace-tech] Email notification to existing specified users only

2013-06-17 Thread Konstantinos Stamatis
Dear LifeH2O As helix mentioned, this is not possible in DSpace. To give you a hint on how you can implement it, you need to create a new type of input control for the submission form, which will make ajax requests upon completion to a new servlet that will be responsible to answer such requests

Re: [Dspace-tech] Error on start Tomcat

2013-06-17 Thread Mark H. Wood
On Fri, Jun 14, 2013 at 06:38:42PM -0300, Marcelo Henrique Gomes wrote: Hello, I run the command /dspace/bin/dspace stats-util -m -i -f and happen this error INFO [main] (DSpaceKernelInit.java:52) - Created new kernel:

Re: [Dspace-tech] Email notification to existing specified users only

2013-06-17 Thread helix84
On Mon, Jun 17, 2013 at 2:24 PM, Konstantinos Stamatis kstama...@ekt.gr wrote: To give you a hint on how you can implement it, you need to create a new type of input control for the submission form, which will make ajax requests upon completion to a new servlet that will be responsible to

Re: [Dspace-tech] Error on start Tomcat

2013-06-17 Thread Marcelo Henrique Gomes
Thanks Mark, Probably I changed dspace.cfg on the fly. I ran ant update and fixed the problem. I have many doubts about statistics. Old statistics VS solr statistics. I'm reading documentation and anything I ask for help again. Regards, Marcelo On Mon, Jun 17, 2013 at 9:44 AM, Mark H. Wood

[Dspace-tech] Secondary Sorting Parameters

2013-06-17 Thread Chris McCarty
Hello, I am using Dspace 1.8.2, and would like to be able to specify a secondary sort parameter for any given sort option. Say, for example, when sorting by issue date, there are several items with identical issue dates. Is there a simple way to take those items with identical dates, and then

Re: [Dspace-tech] Question about moving a collection from one community to another

2013-06-17 Thread Terry Brady
Claudia, Thank you for your advice on this question. Would it be sufficient to run index-update rather than index-init after updating the community2collection table? I would like to permit my users to run this command without halting the application server. It is my understanding that

Re: [Dspace-tech] Question about moving a collection from one community to another

2013-06-17 Thread helix84
On Mon, Jun 17, 2013 at 3:38 PM, Terry Brady tw...@georgetown.edu wrote: Would it be sufficient to run index-update rather than index-init after updating the community2collection table? Hi Terry, I don't think you need to update the Lucene index at all, because you didn't actually change any

Re: [Dspace-tech] Question about moving a collection from one community to another

2013-06-17 Thread helix84
On Mon, Jun 17, 2013 at 4:01 PM, helix84 heli...@centrum.sk wrote: On Mon, Jun 17, 2013 at 3:38 PM, Terry Brady tw...@georgetown.edu wrote: Would it be sufficient to run index-update rather than index-init after updating the community2collection table? Hi Terry, I don't think you need to

Re: [Dspace-tech] Question about moving a collection from one community to another

2013-06-17 Thread Terry Brady
Thank you for the additional suggestions. Based on some quick testing, it appears that I do need to run both index-init and update-discovery-index -f to capture the changes. Terry On Mon, Jun 17, 2013 at 10:16 AM, helix84 heli...@centrum.sk wrote: On Mon, Jun 17, 2013 at 4:01 PM, helix84

[Dspace-tech] Questions on upgrading from 1.5 to 3.1 and maintaining a live and test instance

2013-06-17 Thread Spencer Lamm
Hello Everyone, We are getting ready to do a long overdue upgrade from 1.5.2 to 3.1. In light of that, I have two questions... 1) This wiki post by Mark Diggory details how to upgrade on the same box without overwriting - essentially install the new code, diff the config file differences, copy

Re: [Dspace-tech] build failed .. creation was not successful for an unknown reason

2013-06-17 Thread Kostas Stamatis
Dear Jimera, File c:\dspace-3.1-src-release\dspace\config\dspace.cfg seems to have a problem. This is the source file and the point that says: dspace.dir = ${C:/DSpace.} should be what is by default: dspace.dir = ${dspace.install.dir} When maven runs, it should replace the whole

Re: [Dspace-tech] build failed .. creation was not successful for an unknown reason

2013-06-17 Thread Jimena Quiroga
Dear Kostas, I made all you told me, but I`ve still the save error. This is the first time I am trying to install open software. Is is posible to make everything again? or i need to uninstall ? I do not know what to do. Thanks for all your help. Jimena On Mon, Jun 17, 2013 at 3:07 PM, Kostas