Re: [Dspace-tech] browse list with contains option not starts_with

2015-03-05 Thread Pablo Buenaposada
because I still want to show the full list of items, the only that I can't understand is why you have to search something knowing how it starts, that's not the general case, normally you know that contains some word but you don't know the first ones. -- View this message in context: http://dspa

Re: [Dspace-tech] maven error

2015-03-05 Thread Tim Donohue
A minor update, another user reported this same sort of issue. There's a ticket at https://jira.duraspace.org/browse/DS-2481 As noted in my comment to that ticket, I suspect the JAVA_HOME is not set (or improperly set). I'm able to build DSpace 5.0 and 5.1 fine on multiple OSes (Windows 8, Ubun

Re: [Dspace-tech] External Searching of DSpace contents

2015-03-05 Thread LiYu Lilly
It might not be very relevant-- but has anyone started or considering integrating VIVO and DSpace? Thanks,Lilly > From: heli...@centrum.sk > Date: Thu, 5 Mar 2015 21:20:45 +0100 > To: pe...@longsight.com > CC: dspace-tech@lists.sourceforge.net > Subject: Re: [Dspace-tech] External Searching of D

Re: [Dspace-tech] browse list with contains option not starts_with

2015-03-05 Thread Tim Donohue
Hi Pablo, Why not just use the Search box in DSpace? That'll let you search on any string anywhere in the item. In the most recent versions of DSpace, the Browse and Search functionality both use the same backend (Apache Solr). So you are searching the same Apache Solr data whether you are acc

Re: [Dspace-tech] maven error

2015-03-05 Thread Tim Donohue
Hi Lewatle, We likely need more information here on your environment. What OS are you using? What version of Java? The ${toolsjar} setting is supposed to be auto-determined by our Maven POM based on your JAVA_HOME..and it's different based on your operating system. Here's the relevant part o

Re: [Dspace-tech] External Searching of DSpace contents

2015-03-05 Thread helix84
I used to use this SRU module[1] in DSpace 1.6-1.8. It should still work, but it uses Lucene as the search backend. It was an annoyance to upgrade though, so I changed my client to talk to DSpace Solr directly, the client is a component on another server, so I didn't have to secure Solr, only add i

[Dspace-tech] OAI field for harvested data

2015-03-05 Thread Admire Mutsikiwa
Hi For some reasons, I have implemented an OAI harvesting using the Net::OAI::Harvester. I am interested in establishing which field stores the status of a record, that is whether a record is deleted or otherwise. Kind Regards, Admire Mutsikiwa (Mr) ICT Manager Libraries University of

Re: [Dspace-tech] External Searching of DSpace contents

2015-03-05 Thread Bruno Zanette
Peter, It was good you have touched on this subject!! I'm also thinking about it for some time since it's a requirement for the project i'm working on. I thought about creating a RubyGem to integrate with SOLR directly, and use it side-by-side with rest-api gem, but i'm pretty sure this idea has

Re: [Dspace-tech] External Searching of DSpace contents

2015-03-05 Thread Terry Brady
We have a bento-box style search built into our Drupal website. http://www.library.georgetown.edu/search/gusuper/yearbook We have de-emphasized this interface since we adopted a discovery layer since the discovery layer also searches our DSpace instance. If you are curious, here is the code: htt

[Dspace-tech] External Searching of DSpace contents

2015-03-05 Thread Peter Dietz
I was wondering if anyone has built any integrations where an external web site (such as your institution website or CMS) can search and show results from your DSpace? One approach that ought to be pretty straight forward that I'm thinking of is the OpenSearch web service. https://trydspace.longsi

Re: [Dspace-tech] OAI-PMH data provider 2.0 not persistent?

2015-03-05 Thread João Melo
Hi Ondřej, you are absolutely right. Logically speaking withdrawn = !in_archive (which makes me wonder how useful this two flags are). Which is something I wrongly assumed which makes it an unexpected feature/bug. Thanks for pointing it out. Regards, Joao On 5 March 2015 at 16:26, Ondřej Košark

Re: [Dspace-tech] OAI-PMH data provider 2.0 not persistent?

2015-03-05 Thread Ondřej Košarko
But can an item be both withdrawn & in_archive? I believe it isn't so https://github.com/DSpace/DSpace/blob/master/dspace-api/src/main/java/org/dspace/content/Item.java#L1149 2015-03-05 16:58 GMT+01:00 João Melo : > Hi Ondřej > > item table contains two fields withdrawn and in_archive. > > in_arc

Re: [Dspace-tech] OAI-PMH data provider 2.0 not persistent?

2015-03-05 Thread João Melo
Hi Ondřej item table contains two fields withdrawn and in_archive. in_archive - Find out if the item is part of the main archive withdrawn - Find out if the item was withdrawn On 5 March 2015 at 15:50, Ondřej Košarko wrote: > Hey, > but the indexAll() does not select the withdrawn items > http

Re: [Dspace-tech] OAI-PMH data provider 2.0 not persistent?

2015-03-05 Thread Ondřej Košarko
Hey, but the indexAll() does not select the withdrawn items https://github.com/DSpace/DSpace/blob/master/dspace-oai/src/main/java/org/dspace/xoai/app/XOAI.java#L191 2015-03-05 16:31 GMT+01:00 João Melo : > Hi Kristian, > > I cannot see how your description matches the implementation. > From the i

Re: [Dspace-tech] OAI-PMH data provider 2.0 not persistent?

2015-03-05 Thread helix84
On Thu, Mar 5, 2015 at 4:13 PM, Kristian Roberto Salcedo wrote: > Thank you for answering so swiftly. > But are you saying that this part of the documentation > https://wiki.duraspace.org/pages/viewpage.action?pageId=45548245#OAI-PMHDataProvider2.0(Internals)-Deletions > is incorrect and that Dspa

Re: [Dspace-tech] OAI-PMH data provider 2.0 not persistent?

2015-03-05 Thread João Melo
Hi Kristian, I cannot see how your description matches the implementation. >From the implementation withdrawn items are indexed. https://github.com/DSpace/DSpace/blob/master/dspace-oai/src/main/java/org/dspace/xoai/app/XOAI.java#L248 The only way withdrawn items can disappear from the list is du

[Dspace-tech] OAI-PMH data provider 2.0 not persistent?

2015-03-05 Thread Kristian Roberto Salcedo
Hi all, In Dspace 4.2 we are currently seeing that our OAI feeds are not being persistent as per these definitions when it comes to deleted (withdrawn) items: http://www.openarchives.org/OAI/openarchivesprotocol.html#deletion https://wiki.duraspace.org/pages/viewpage.action?pageId=34640887#OAI-P

Re: [Dspace-tech] Submission process and input-forms.xml - enable language fields

2015-03-05 Thread Vladimir Tomić
Hi Helix, And thank you! In case our users insist on this and we develop this alternative submission form, we will definitely make it public. It would be basically the same as it is now, with language field next to its "owner", pre-filled with the dspace.cfg default value, so without any ex

Re: [Dspace-tech] OAI-PMH data provider 2.0 not persistent?

2015-03-05 Thread Kristian Roberto Salcedo
Hi Ivan, Thank you for answering so swiftly. But are you saying that this part of the documentation https://wiki.duraspace.org/pages/viewpage.action?pageId=45548245#OAI-PMHDataProvider2.0(Internals)-Deletions is incorrect and that Dspace only supports deletions "transiently"? If so, wouldn’t it m

Re: [Dspace-tech] Dspace migration from 1.7 to 4 in new setup

2015-03-05 Thread helix84
Please, don't cross-post. Your question belongs to dspace-tech only. The bi_* tables are the old browse index. Since DSpace 4, it's not used by default anymore unless you explicitly configure to use the Postgres DAO rather then the Solr DAO [1]. In your dspace.log I don't see any problem which wo

Re: [Dspace-tech] Submission process and input-forms.xml - enable language fields

2015-03-05 Thread helix84
Hi Vladimir, as far as I know, submission forms don't give you a choice of language for individual fields and just pre-fill the value of default.language (as you noted). Currently you can either edit the in_archive item or you can use other form of ingestion if you require this functionality. If I

Re: [Dspace-tech] OAI-PMH data provider 2.0 not persistent?

2015-03-05 Thread helix84
Hi Kristian, I think you're right that the declared persistent doesn't match how DSpace behaves. I filed a Jira issue and created a pull request to change the declared status to transient. https://jira.duraspace.org/browse/DS-2491 Regards, ~~helix84 Compulsory reading: DSpace Mailing List Etiq

[Dspace-tech] Submission process and input-forms.xml - enable language fields

2015-03-05 Thread Vladimir Tomić
Hi all, In Dublin Core metadata, each value (metadatavalue.text_value) has an accompanying language qualifier (metadatavalue.text_lang which can be null). When editing metadata for an item, one can also edit this language qualifier. When submitting a new item into DSpace there are no accomp

[Dspace-tech] CrossRef API implementation of the DOIConnector interface

2015-03-05 Thread Chris Gray
Before I reinvent the wheel, I was wondering if there are any DSpace sites out there that have implemented the DOIConnector interface ([dspace-source]/dspace-api/src/main/java/org/dspace/identifier/doi/DOIConnector.java) to work with the CrossRef API. Thanks, Chris ---

Re: [Dspace-tech] Registering DOIs with crossref from DSpace

2015-03-05 Thread Chris Gray
Thanks, helix, I'm blushing because I failed to notice the last short section of the document page for DOI integration. Chris On 15-03-04 04:34 PM, helix84 wrote: > Hi Chris, > > you are correct, DSpace currrently supports only the DataCite and EZID > APIs. It doesn't support the CrossRef API y

Re: [Dspace-tech] (no subject)

2015-03-05 Thread Mark H. Wood
On Thu, Mar 05, 2015 at 12:36:23AM +0200, Skevas Spiridon wrote: > I've installed the dspace and when i go to browse "Authors" or "By Issue > Date" or "Titles" as Administrator i get an error. This happens also when i > try to browse "Private Items" or "Withdraw items" again as > administrator.What

Re: [Dspace-tech] browse list with contains option not starts_with

2015-03-05 Thread Pablo Buenaposada
up! -- View this message in context: http://dspace.2283337.n4.nabble.com/browse-list-with-contains-option-not-starts-with-tp4676815p4676889.html Sent from the DSpace - Tech mailing list archive at Nabble.com. -- Dive i

Re: [Dspace-tech] install error for upstream/master

2015-03-05 Thread Mark H. Wood
On Wed, Mar 04, 2015 at 07:34:44PM +, Monika C. Mevenkamp wrote: > Ah - Yikes - Thanks > > It compiles now after I changed the dependencies to rely on > javax.servlet-api > Unfortunately this had to be done in all sorts of pom.xml files > > BUT > > after the compile I still find WEB-INF/

Re: [Dspace-tech] Input Forms Value Pairs

2015-03-05 Thread helix84
On Thu, Mar 5, 2015 at 11:33 AM, Hilton Gibson wrote: > Can I make it public? Sure. I took the data from Wikipedia, so consider it CC-BY-SA 3.0 Unported. Regards, ~~helix84 Compulsory reading: DSpace Mailing List Etiquette https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette -

Re: [Dspace-tech] Input Forms Value Pairs

2015-03-05 Thread Hilton Gibson
Thanks! The power of open source. Can I make it public? Each to his own, I am sys admin not a programmer. See: http://wiki.lib.sun.ac.za/index.php/SUNScholar/Capacity_Building And: http://wiki.lib.sun.ac.za/index.php/SUNScholar/Capacity_Building/Digital_Repository_Systems_Management#Why_I_am_not_a

Re: [Dspace-tech] Input Forms Value Pairs

2015-03-05 Thread helix84
File attached. This took literally three minutes to look up and create in vim. I used alpha-2 as the stored value. Regards, ~~helix84 Compulsory reading: DSpace Mailing List Etiquette https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette Afghanistan AF Åland Islands AX

Re: [Dspace-tech] XOAI wrong request info

2015-03-05 Thread helix84
OK, I'm a bit lost but let's consider . Its value doesn't originate in configuration, it's taken from current request. So if you can access your repository in three ways (example below), it will display three values of accordingly. With caching enabled, the value used in the first request is cache