[Dspace-tech] Generic DSpace servlet/webapp utilities?

2015-08-03 Thread Brown, Jacob
Hi all, I'm working (slowly) on a simple alternate web frontend for DSpace: https://github.com/kardeiz/disco.* I was thinking that it would be nice if DSpace provided some implementation-agnostic utilities for a generic HttpServlet context. For example, XMLUI and JSPUI provide their own

Re: [Dspace-tech] Generic DSpace servlet/webapp utilities?

2015-08-03 Thread Brown, Jacob
be org.dspace.content.service.ItemService... Peter Dietz Longsight www.longsight.comhttp://www.longsight.com/ pe...@longsight.commailto:pe...@longsight.com p: 740-599-5005 x809tel:740-599-5005%20x809 On Mon, Aug 3, 2015 at 11:21 AM, Brown, Jacob j.h.br...@tcu.edumailto:j.h.br...@tcu.edu wrote: Hi all, I’m

[Dspace-tech] Bug in DSpace 5.2 build.xml

2015-07-29 Thread Brown, Jacob
In the `build_webapps_wars` target of [dspace-src]/dspace/target/dspace-installer.build.xml, there is a section: war destfile=${dspace.dir}/webapps/lni.war fileset dir=${dspace.dir}/webapps/lni/ / /war However, LNI isn't built by default in DSpace 5.2, so the `fileset` task errors, which

[Dspace-tech] ant update while Tomcat running

2015-07-29 Thread Brown, Jacob
In what situations, if ever, is it safe to run `ant update` while Tomcat is running? I've mapped my webapps for Tomcat using Technique A (defining a context that points to [dspace]/webapps/[app]). In a development environment, I've played around with running `ant update` while Tomcat is

Re: [Dspace-tech] Authorization of DSpace items...

2015-01-21 Thread Brown, Jacob
Hi Layale, I don't think there are really any built-in batch processes for working with bitstream permissions. I've mentioned this before, and I don't want to spam the list with it too much, but I'm working on a tool that helps set up a scripting environment for DSpace using the JRuby

Re: [Dspace-tech] Query to get ID of thumbnail of primary bitstream

2015-01-06 Thread Brown, Jacob
a `bundle.name`, which doesn’t make sense unless a) the `bundle` table still has a name field, or b) ItemDAO is deprecated. Jacob From: Mark Ehle [mailto:marke...@gmail.com] Sent: Tuesday, January 06, 2015 12:42 PM To: Brown, Jacob Cc: DSpace-tech@lists.sourceforge.net Subject: Re: [Dspace-tech

Re: [Dspace-tech] Help with Sword Client API (Ruby)

2014-12-16 Thread Brown, Jacob
I've never used the SWORD protocol, but it should be pretty easy to avoid the mimetype exception (for the SWORD V2 interface). I'm assuming that atomserv+xml and atomsvc+xml are used by different services to identify the same SWORD/XML format. From some quick testing, it seems like this is the

Re: [Dspace-tech] Query to get ID of thumbnail of primary bitstream

2014-12-10 Thread Brown, Jacob
Hi Mark, Not sure if what you are using the query for, but if you are using it inside a Java application, DSpace provides a [service](https://github.com/DSpace/DSpace/blob/master/dspace-api/src/main/java/org/dspace/content/service/ItemService.java) to get the primary bitstream’s thumbnail for

[Dspace-tech] Oracle JVM vs. OpenJDK JVM performance?

2014-11-22 Thread Brown, Jacob
Hi all, Has anyone run any benchmarks for OpenJDK JVM vs. Oracle JVM for a recent version of DSpace on Java 7? Everything I've read online suggests that Oracle *for Java 7* is not significantly faster than OpenJDK. I'm inclined to prefer OpenJDK because: a) the JDK can be installed and

Re: [Dspace-tech] DSpace authorization policies

2014-11-12 Thread Brown, Jacob
be that difficult to add another abstraction layer on top of this). Jacob From: mdigg...@gmail.com [mailto:mdigg...@gmail.com] On Behalf Of Mark Diggory Sent: Tuesday, November 11, 2014 3:32 PM To: Peter Dietz Cc: Brown, Jacob; Dspace Tech list Subject: Re: [Dspace-tech] DSpace authorization policies

Re: [Dspace-tech] DSpace authorization policies

2014-11-11 Thread Brown, Jacob
From: Pottinger, Hardy J. [mailto:pottinge...@missouri.edu] Sent: Tuesday, November 11, 2014 2:39 PM To: Peter Dietz; Brown, Jacob Cc: Dspace Tech list Subject: RE: [Dspace-tech] DSpace authorization policies Hi, Jacob, I agree with Peter's enthusiasm, this is indeed really cool, and handy to have

Re: [Dspace-tech] Following up on Jira DS-740 - thumnail derivitive has different permission than original

2014-06-09 Thread Brown, Jacob
I like the functionality of this pull request as well. If it doesn't get incorporated, you can implement public thumbnails without too much pain by creating a new MediaFilter like: package org.dspace.app.mediafilter; // imports ... public class ThumbnailFilter extends JPEGFilter { public

Re: [Dspace-tech] How to format the display of the search result in Discovery/DSpace 4.1?

2014-06-02 Thread Brown, Jacob
Assuming you are starting with the Mirage template (or similar dri2xhtml-alt template), the XHTML for Discovery results is configured in `aspect/artifactbrowser/discovery.xsl` (see especially the `itemSummaryList` template). Jacob From: royopa [mailto:roy...@gmail.com] Sent: Sunday, June 01,

Re: [Dspace-tech] Problem reading solr/home in DSpace 4.1 when running in Jetty

2014-05-09 Thread Brown, Jacob
of start.ini Jetty can then load the solr/home property from the Solr WAR web.xml. Jacob From: Brown, Jacob Sent: Wednesday, March 05, 2014 3:16 PM To: dspace-tech@lists.sourceforge.net Subject: Problem reading solr/home in DSpace 4.1 when running in Jetty Hi all, I just installed DSpace 4.1 and am

Re: [Dspace-tech] DSpace 4.1, JSPUI and IE 9 menu display issue

2014-05-06 Thread Brown, Jacob
/aldt/#eld -Original Message- From: Brown, Jacob [mailto:j.h.br...@tcu.edu] Sent: 05 May 2014 16:46 To: Michael White; dspace-tech@lists.sourceforge.net Subject: RE: DSpace 4.1, JSPUI and IE 9 menu display issue This seems more like a Bootstrap 3 issue (although the theme developers

Re: [Dspace-tech] DSpace 4.1, JSPUI and IE 9 menu display issue

2014-05-05 Thread Brown, Jacob
This seems more like a Bootstrap 3 issue (although the theme developers could have corrected it); see these related SO questions: http://stackoverflow.com/questions/14664948/twitter-bootstrap-button-dropdown-not-working-in-ie9

Re: [Dspace-tech] reordering navigation sidebar (mirage xmlui theme)

2014-04-15 Thread Brown, Jacob
Hi Charlene, In navigation.xsl, in the “dri:options” template, instead of: xsl:apply-templates/ You should just be able to do: xsl:apply-templates select=dri:list[@n='discover']/ xsl:apply-templates select=dri:list[@n='account']/ xsl:apply-templates select=dri:list[@n='administrative']/

Re: [Dspace-tech] Trouble with MoreLikeThis and Spellcheck in DSpace 4.1

2014-04-11 Thread Brown, Jacob
to depend on a caching pipeline? Any ideas? Thanks, Jacob From: Brown, Jacob [mailto:j.h.br...@tcu.edu] Sent: Thursday, April 10, 2014 11:39 AM To: dspace-tech@lists.sourceforge.net Subject: [Dspace-tech] Trouble with MoreLikeThis and Spellcheck in DSpace 4.1 Hi all, I'm having trouble getting

[Dspace-tech] Trouble with MoreLikeThis and Spellcheck in DSpace 4.1

2014-04-10 Thread Brown, Jacob
Hi all, I'm having trouble getting the Discovery More Like This and Spellcheck features working with DSpace 4.1. Discovery is enabled in xmlui.xconf, and Spellcheck and MoreLikeThis are enabled and properly configured in discovery.xml. Sidebar facets and the normal discovery search functions

[Dspace-tech] XMLUI: Using Saxon for XSLT with Apache Cocoon

2014-03-18 Thread Brown, Jacob
Hi all, I'd like to use Saxon (9HE) for XSLT processing in Apache Cocoon (2.2). I've followed the instructions for using Saxon from http://wiki.apache.org/cocoon/Saxon. These instructions describe the process using an .xconf file, which is no longer the preferred method of Cocoon

[Dspace-tech] Problem reading solr/home in DSpace 4.1 when running in Jetty

2014-03-05 Thread Brown, Jacob
Hi all, I just installed DSpace 4.1 and am running it in Jetty (jetty-8.1.14). When the Solr webapp is initializing, I get the following info/errors: 182 [main] INFO org.apache.solr.core.SolrResourceLoader - No /solr/home in JNDI 183 [main] INFO org.apache.solr.core.SolrResourceLoader -

[Dspace-tech] Problem with ojdbc6.jar - DSpace 3.2 with Oracle DB

2013-10-08 Thread Brown, Jacob
Hi all, I'm having a problem setting up DSpace 3.2 with Oracle. I'm a Maven and Oracle novice, so I apologize if this has an easy answer. I've followed the instructions from https://wiki.duraspace.org/display/DSDOC3x/Installation: I've prepared the Oracle database, installed the ojdc6.jar

Re: [Dspace-tech] Problem with ojdbc6.jar - DSpace 3.2 with Oracle DB

2013-10-08 Thread Brown, Jacob
just followed the instructions as written. My apologies for spamming the list. Thanks, Jacob From: Brown, Jacob [mailto:j.h.br...@tcu.edu] Sent: Tuesday, October 08, 2013 12:16 PM To: dspace-tech@lists.sourceforge.net Subject: [Dspace-tech] Problem with ojdbc6.jar - DSpace 3.2 with Oracle DB

Re: [Dspace-tech] Define embargo settings in import process (SAF, AIP, or CSV) - DSpace 3.2

2013-09-11 Thread Brown, Jacob
for batch import embargoing would be an odd omission. Thank you, Jacob Brown From: Richard Rodgers [mailto:rrodg...@mit.edu] Sent: Wednesday, September 11, 2013 9:48 AM To: Brown, Jacob Cc: dspace-tech@lists.sourceforge.net Subject: Re: [Dspace-tech] Define embargo settings in import process (SAF, AIP