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] 1.5 - sort results bug

2008-07-31 Thread Susan Parham
Hi, I didn't get a response to my message last week, so am hoping someone will spot it if I re-post. Has anyone else experienced this problem? Susan -- Forwarded message -- From: Susan Parham [EMAIL PROTECTED] Date: Wed, Jul 16, 2008 at 9:57 AM Subject: Sort results in 1.5 To:

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

2008-07-31 Thread Tim Donohue
Susan, I was just able to duplicate this problem for the 1.5 JSPUI. It's also in the current pre-1.5.1 code (SVN 1.5.x branch) as well. I'm not sure what the problem is, but it's definitely a bug. I'll log it in SourceForge shortly, and hopefully someone can fix it before 1.5.1 is

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

2008-07-31 Thread Mark Diggory
Thanks Tim, Sorry I didn't catch it was the JSPUI :-) On Jul 31, 2008, at 2:18 PM, Tim Donohue wrote: Susan, I was just able to duplicate this problem for the 1.5 JSPUI. It's also in the current pre-1.5.1 code (SVN 1.5.x branch) as well. I'm not sure what the problem is, but it's

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

2008-07-31 Thread Graham Triggs
Hi, In dspace-jspui-webapp/src/main/webapp/search/results.jsp, replace the line: input type=hidden name=query value=%= query % / with input type=hidden name=query value=%= URLEncoder.encode(query,UTF-8) % / If you are using the overlay war [against the war