[Dspace-tech] Exporting dublin_core.xml (registering bitstream)

2013-05-13 Thread Jonathan Freesbay
Hi, I have two related questions: (1) Is there a programmatically way (in Java) to register (not copy) a bitstream on local disk? The only way I see is using itemupdate from the command line. (2) I want to add a bitstream to the database (inbox for large files). I do this by exporting the item u

Re: [Dspace-tech] Exporting dublin_core.xml (registering bitstream)

2013-05-13 Thread helix84
On Mon, May 13, 2013 at 11:25 AM, Jonathan Freesbay wrote: > (1) Is there a programmatically way (in Java) to register (not copy) a > bitstream on local disk? The only way I see is using itemupdate from the > command line. Anything you can call from command line you can call also from Java. You c

[Dspace-tech] weird metadata problem

2013-05-13 Thread George Stanley Kozak
Hi, I have a weird metadata problem that I haven't been able to figure out. I am using DSpace 1.8.2 and my official interface is the JSPUI (we are working on moving to the XMLUI). A week ago, helix84 helped me with a question that I had about the Creative Commons License. I started experimentin

Re: [Dspace-tech] weird metadata problem

2013-05-13 Thread helix84
On Mon, May 13, 2013 at 4:00 PM, George Stanley Kozak wrote: > If I submit an item in the JSPUI and select a creative commons license, the > metadata fields for the Creative Commons license do not show up in the full > item display of the submitted item You are right, the behaviour of JSPUI seems

[Dspace-tech] Problem with Creative Commons Public Domain Mark license

2013-05-13 Thread David Piper
Hello, I am having a problem getting the option for Creative Commons Public Domain Mark to work- using DSpace 3.0,XMLUI Mirage andDiscovery In an item submission, on the 'CC License' page I select the 'Public Domain' optionfrom the 'License Type' drop-down list and the record that gets creat

Re: [Dspace-tech] weird metadata problem

2013-05-13 Thread George Stanley Kozak
Hi, helix: Sorry, I wasn't clear on the text. My apologies for the confusion. I was talking about the part of display-item.jsp where the Creative Commons display takes place: <%-- Create Commons Link --%> <% if (cc_url != null) { %> <% } jsp.display-item.t

Re: [Dspace-tech] Dspace and DOI through DataCite

2013-05-13 Thread Becker, Pascal-Nicolas
Hi Joseph, DataCite does not register DOIs directly. Instead DataCite members act as DOI registries. Some DataCite members provides their own APIs, some want you to use the DataCite API directly. I developed some code to mint and register DOIs with DSpace, and I hope it will become part of DSpa

Re: [Dspace-tech] weird metadata problem

2013-05-13 Thread helix84
Reading that JSPUI code, I see that it decides whether an item is CC based on whether it contains a bitstream named "license_url". String cc_url = CreativeCommons.getLicenseURL(item); return getStringFromBitstream(item, BSN_LICENSE_URL); private static final String BSN_LICENSE_UR

Re: [Dspace-tech] weird metadata problem

2013-05-13 Thread George Stanley Kozak
helix: Yes, in DSpace 1.82/JSPUI, under the Admin (Edit) display of the item, I can see: "license_url" bitstream (org.dspace.license.CreativeCommons) "license_text" bitstream (org.dspace.license.CreativeCommons) "license_rdf" bitstream (org.dspace.license.CreativeCommons) But the metadata elemen

[Dspace-tech] Dspace -Roles..

2013-05-13 Thread nirav dhami
Hello, I need to configure Custome Roles and permission into Dspace-1.8.2.(Both in JSPUI and XMLUI) Does Dspace allow to configure the Custome Roles and permissons ? Thanks, Nirav -- Learn Graph Databases - Download FREE

Re: [Dspace-tech] Dspace -Roles..

2013-05-13 Thread helix84
On Mon, May 13, 2013 at 5:06 PM, nirav dhami wrote: > I need to configure Custome Roles and permission into Dspace-1.8.2.(Both in > JSPUI and XMLUI) What do you mean my custom roles and permissions? > Does Dspace allow to configure the Custome Roles and permissons ? The DSpace authorization sys

[Dspace-tech] DCAT mtg agenda for May 14

2013-05-13 Thread Valorie Hollister
Apologies for the cross posting - Please find the DCAT meeting agenda for tomorrow, Tuesday, May 14, 2013 at 10:00am Eastern/14:00 UTC: https://wiki.duraspace.org/display/cmtygp/DCAT+Meeting+Agenda+February+12%2C+2013+-+draft Anyone from the community is welcome to attended. Dial in instruction

[Dspace-tech] item browse on community page?

2013-05-13 Thread Shawn M. Kiewel
I have recently upgraded my DSpace installation to 3.1. We have discovered an issue that my searching is failing to uncover the solution for. Before the upgrade, using xmlui, on an individual collection page, there appeared a browse list of items in that collection. After the upgrade, that has d

Re: [Dspace-tech] item browse on community page?

2013-05-13 Thread helix84
On Mon, May 13, 2013 at 7:13 PM, Shawn M. Kiewel wrote: > I have recently upgraded my DSpace installation to 3.1. We have discovered an > issue that my searching is failing to uncover the solution for. Before the > upgrade, using xmlui, on an individual collection page, there appeared a > brows

Re: [Dspace-tech] Dspace -Roles..

2013-05-13 Thread helix84
Hi Nirav, please, always write to dspace-tech, never directly to me. The roles that are available in DSpace are site admin, community admin, collection admin and submitter. There can be any number of each. Apart from these roles who can modify DSpace content, you can create any number of groups c

Re: [Dspace-tech] item browse on community page?

2013-05-13 Thread Shawn M. Kiewel
Yes, that was it. My admin user got me all confused. I apologize for the noise. Thank you very much. Shawn On May 13, 2013, at 1:25 PM, helix84 wrote: > On Mon, May 13, 2013 at 7:13 PM, Shawn M. Kiewel wrote: >> I have recently upgraded my DSpace installation to 3.1. We have discovered >> an

Re: [Dspace-tech] item browse on community page?

2013-05-13 Thread helix84
On Mon, May 13, 2013 at 7:44 PM, Shawn M. Kiewel wrote: > Yes, that was it. My admin user got me all confused. I apologize for the > noise. The instructions for enabling Discovery have a step to disable recent submissions which are part of the old search aspect. https://wiki.duraspace.org/disp

Re: [Dspace-tech] Number of items archived each month

2013-05-13 Thread Thornton, Susan M. (LARC-B702)[LITES]
You will have to join the Item table to the metadatavalue table where metadata_field_id = 99 (where 99 = date.accessioned). Do your date specification on date.accessioned since that's the date/timestamp the Item was added to the repository. Good luck, Sue --