Re: [Dspace-tech] tomcat reporting memory leak?

2010-09-29 Thread Anderson, Charles W
- Tim Donohue tdono...@duraspace.org wrote: | Quick followup, in case it isn't clear (as I was asked about this | off-list). The preference would be to share your DSpace | setup/configuration information directly on this listserv Let me kick things off, then (questions truncated a bit

[Dspace-tech] Collection strength caching

2010-09-28 Thread Anderson, Charles W
We're currently using the jspui, but are on the verge of cutting over to the xmlui. We're using caching for the item counts (webui.strengths.cache = true); but this doesn't seem to apply to the xmlui; collection strengths there appear to be calculated on the fly, even when the above is set to

Re: [Dspace-tech] Dspace.org

2009-04-27 Thread Anderson, Charles W
I'm getting the same thing, and one of my colleagues reports getting the suspended page error since Friday. Anybody have any idea what's going on? Bill Anderson Software Developer Digital Library Development Georgia Tech Library - Randall Dean Floyd rdfl...@indiana.edu wrote: | Just

Re: [Dspace-tech] Install Dspace 1.5.1

2009-02-11 Thread Anderson, Charles W
Your build is attempting to download the site plugin POM from a remote repository. If you enter the given url in a browser, you'll see that the POM is there, so my guess is that this is some sort of firewall problem. The directory you're missing (dspace-[version]-build.dir) is built by

Re: [Dspace-tech] Adding your own customizations into DSpace 1.5.1

2009-01-27 Thread Anderson, Charles W
Hi, Sue. You need to run maven to rebuild the installation before running ant -- just do mvn package in your {dspace-source}/dspace directory, then do your ant build as usual. Your jsp customizations will end up in {dspace}/webapps/jspui/. At least, that's what we've been doing; and it seem to

[Dspace-tech] Special Characters in metadata

2009-01-22 Thread Anderson, Charles W
We do regular batch uploads of electronic theses and dissertations, pulling both metadata another database. The metadata (especially the abstracts) often contains entity references when we get it. After we upgraded to 1.5, our content people started noticing that these references were not

Re: [Dspace-tech] Missing metadata in itemlist.columns

2008-12-17 Thread Anderson, Charles W
:14 AM GMT -05:00 US/Canada Eastern Subject: Re: [Dspace-tech] Missing metadata in itemlist.columns Hi Charles, with then I did a full index do you mean running [dspace]/bin/index-init? Claudia Jürgen Anderson, Charles W schrieb: Greetings, All We are trying to add a column to our browse

[Dspace-tech] Missing metadata in itemlist.columns

2008-12-16 Thread Anderson, Charles W
Greetings, All We are trying to add a column to our browse display list, after upgrading to DSpace 1.5. We've done this successfully on another instance, adding dc.type to the browse display; on the present instance, we'd like to do the same with a piece of custom metadata called

Re: [Dspace-tech] DSpace 1.5.1 -- Mysterious new feature?

2008-10-17 Thread Anderson, Charles W
Yeah, that's the same problem. We were originally getting a system error every time we clicked on a collection; we got past this by locating the constant (it's in org.dspace.app.webui.servlet.MyDSpaceServlet, which IS imported in the collection-home and community-home jsps, but doesn't resolve

[Dspace-tech] DSpace 1.5.1 -- Mysterious new feature?

2008-10-14 Thread Anderson, Charles W
We recently upgraded our test server to DSpace 1.5.1, and encountered a problem with an unresolvable tag in community-home.jsp and collection-home.jsp: input type=hidden name=step value=%= MyDSpaceServlet.REQUEST_EXPORT_ARCHIVE % / As a temporary fix, I found the constant being called and

[Dspace-tech] Deadlocks during index-init after configurable browse.

2008-10-07 Thread Anderson, Charles W
We recently implemented configurable browse in our test instance of DSpace, and everything went swimmingly. When we tried to move the changes to production, however, we got deadlocks (see error messages below) while running the required index-init. These errors occur during the browse portion

[Dspace-tech] Configurable browse error

2008-08-18 Thread Anderson, Charles W
We've been playing around with the configurable browse, and decided to configure a new browse index based on the metadata element dc.type. I added the following line to our dspace.config: webui.browse.index.5 = type:metadata:dc.type:text This did, indeed, create a navigation link for Type;

Re: [Dspace-tech] Configurable browse error

2008-08-18 Thread Anderson, Charles W
Anderson, Charles W wrote: We've been playing around with the configurable browse, and decided to configure a new browse index based on the metadata element dc.type. I added the following line to our dspace.config: webui.browse.index.5 = type:metadata:dc.type:text This did, indeed, create

Re: [Dspace-tech] Submission Error

2008-08-13 Thread Anderson, Charles W
Hi, Hamish -- We had the same problem; I posted on it a couple of days ago.  There are several places in three of the submission jsps  where L ocaleSupport statements are used to write links, and the quotation marks in the links are not escaped properly; we fixed the problem by escaping the

[Dspace-tech] Unescaped quotes

2008-08-12 Thread Anderson, Charles W
We had a problem yesterday wherein we were unable to submit using the jspui -- when our folks tried to go to the second describe screen in the submission chain, they got a server error. We were able to track the problem to a series of LocaleSupport statements (see below) in submit jsps, being

Re: [Dspace-tech] Clicking PREVIOUS in submissions doesn't save?

2008-08-12 Thread Anderson, Charles W
. Any insight on which area to work upon? Flemion OIS, Harvard university Library. At 01:11 PM 7/25/2008 -0400, Anderson, Charles W wrote: My users report that, since the 1.5 upgrade, the submission process works smoothly as long as the user plows straight ahead -- but, if she fills in info

Re: [Dspace-tech] 1.5 - sort results bug

2008-08-11 Thread Anderson, Charles W
That didn't work either; although it broke differently. The URLEncoder.encode method encodes the query in hex form, as %22query%22 -- which shows up in the hidden field as query. However, I then tried: %= (query==null ? : StringEscapeUtils.escapeHtml(query)) % That works. Thanks, Bill

[Dspace-tech] Clicking PREVIOUS in submissions doesn't save?

2008-07-25 Thread Anderson, Charles W
My users report that, since the 1.5 upgrade, the submission process works smoothly as long as the user plows straight ahead -- but, if she fills in info on, say, step 3 and then goes BACK to check the previous step, the information she's entered on step 3 is gone when she comes back. This