[Dspace-tech] Hide 4 collections in collection-list.xsl

2013-03-12 Thread M. Àngels Pulido
Hello everybody, I work with Dspace 1.7.2 and Mirage theme. I need to hide 4 collections that have the following names and handles: X - Formulari - Llibres

Re: [Dspace-tech] (no subject)

2013-03-12 Thread Meron Mesfin
hello again! first of i would like to ask apology  for being silly and interrupt;  i am curious about one thing which is what is the next step after installing dspace? what i mean is that what should be done after configuring the dspace on ma pc, how am i gone use it like every body else

Re: [Dspace-tech] Hide 4 collections in collection-list.xsl

2013-03-12 Thread helix84
Hello, you can't do it by overriding that template, that's out the scope of what it matches. You can do it this way: http://dspace.2283337.n4.nabble.com/Hide-Sub-Community-from-Anonymous-td4662481.html And change the following condition xsl:if test=$authenticated or (@url !=

[Dspace-tech] DSpace Futures mtg notes next steps

2013-03-12 Thread Valorie Hollister
Thanks to those in the community who participated in the recent calls on the potential DSpace Futures initiatives on the REST API and DSpace and Hydra. Here is the link to the notes from the calls: https://wiki.duraspace.org/display/DSPACE/DSpace+Futures We invite everyone in the community

[Dspace-tech] Database questions

2013-03-12 Thread Wellaway, Ian
Hi, We're doing a database review and I wondered if one of the Dspace team could answer the following Qs: 1.What databases are supported by your product? Oracle/Postgres 2.For new installations what database do you generally recommend (does this differ for local and hosted or

Re: [Dspace-tech] Database questions

2013-03-12 Thread helix84
On Tue, Mar 12, 2013 at 2:26 PM, Wellaway, Ian i.j.wella...@exeter.ac.ukwrote: ** **1.**What databases are supported by your product? Oracle/Postgres ** ** **2.**For new installations what database do you generally recommend (does this differ for local and hosted or

Re: [Dspace-tech] Handle server down

2013-03-12 Thread Hilton Gibson
These pages have been updated: http://wiki.lib.sun.ac.za/index.php/SUNScholar/Firewall and http://wiki.lib.sun.ac.za/index.php/SUNScholar/Handle_Server#Step_8_-_Firewall_Ports . On 12 March 2013 16:19, Lewatle Phaladi lewatle.phal...@wits.ac.za wrote: Hi All, ** ** Please note that we

[Dspace-tech] Assetstore clean-up? Advice/reassurance/gotchas?

2013-03-12 Thread Michael White
Hi, Running DSpace v1.6.2 (JSPUI). Our DSpace server ran out of disk space unexpectedly (as we thought we had allowed for substantial growth) and I have now determined it is because of a huge amount of orphaned content in our Assetstore. Looking at our bitstream table, there are 38,488 rows

Re: [Dspace-tech] Assetstore clean-up? Advice/reassurance/gotchas?

2013-03-12 Thread Hilton Gibson
We ran it on: http://etd.sun.ac.za using DSpace 1.5.2 with no problems. On 12 March 2013 15:58, Michael White michael.wh...@stir.ac.uk wrote: Hi, Running DSpace v1.6.2 (JSPUI). Our DSpace server ran out of disk space unexpectedly (as we thought we had allowed for substantial growth) and I

Re: [Dspace-tech] Assetstore clean-up? Advice/reassurance/gotchas?

2013-03-12 Thread helix84
Hi Mike, yes, the cleanup script deletes bitstreams which are marked as deleted='t'. I wouldn't have any worries about running it, it works just fine. Tip: run it with the -v parameter to see which files it's currently deleting. Regards, ~~helix84 Compulsory reading: DSpace Mailing List

Re: [Dspace-tech] Handle server down

2013-03-12 Thread Lewatle Phaladi
Hi All, Please note that we solved the handle problem, as you indicated the problem was mostly due to firewall blocking the ports, another problem was certain process that was using similar ports with handle server, but it has been resolved when we killed the process and remained with one

Re: [Dspace-tech] Assetstore clean-up? Advice/reassurance/gotchas?

2013-03-12 Thread Michael White
Many thanks helix84 (such an enigmatic nomenclature ;-) ) and Hilton for your reassuring replies, and for the -v tip . . . I now feel confident enough to give this a bash :-) Much appreciated. Mike Michael White eLearning Liaison and Development (eLD) Information Services S8, Library

[Dspace-tech] 1.7.2 web.xml getting randomly overwritten

2013-03-12 Thread Matthew McKinley
Hi all, We've been having a problem with webapps/xmlui/WEB-INF/web.xml being overwritten randomly with the default welcome to Tomcat! page. It only seems to happen about once a month but we can't predict it and it makes our entire DSpace instance inaccessible until we can replace web.xml. Does

[Dspace-tech] handles

2013-03-12 Thread Drover, Matt
How do I get the handle for communities and collections, providing I have the community_id or collection_id ? I'm not seeing a table or field that links the two in the database. Thanks. Matthew Drover Programmer Consultant Immersive Technology Distance Education, Learning and Teaching

Re: [Dspace-tech] handles

2013-03-12 Thread Lighton Phiri
You need to join handle table with the collection and/or community tables. Just include a WHERE clause in either one of the queries below.. COLLECTION SELECT h.handle, c.name FROM ( (SELECT resource_id, handle FROM handle WHERE resource_type_id=3) as h JOIN (SELECT collection_id, name FROM

Re: [Dspace-tech] handles

2013-03-12 Thread Lighton Phiri
A slight change in the 'community' query --resource_type_id for communities is 4 [1] SELECT h.handle, c.name FROM ( (SELECT resource_id, handle FROM handle WHERE resource_type_id=4) as h JOIN (SELECT community_id, name FROM community) as c ON h.resource_id = c.community_id ); [1]

Re: [Dspace-tech] handles

2013-03-12 Thread Pottinger, Hardy J.
Hi, Matt, while the schema diagram found in the documentation implies that there's a field in each table for handle[1], the handle table actually holds all the data you seek. The column RESOURCE_TYPE_ID indicates what sort of thing the handle points to (2=item, 3=collection, 4=community [2]) and

Re: [Dspace-tech] Hide 4 collections in collection-list.xsl

2013-03-12 Thread Barnes, Hugh
Again, I have no test environment to confirm this, but you should be able to more simply suppress specific li elements by creating a more specific template which does nothing (i.e. is empty). Instead of helix84’s template, add this template where it is appropriate (for customisations to go):