<%@ taglib prefix="s" uri="/struts-tags" %> <%@ taglib prefix="xtags" uri="http://jakarta.apache.org/taglibs/xtags-1.0" %> <%@ page import="edu.stanford.sulair.mjf.site.Constants" %> <%@ page import="edu.stanford.sulair.mjf.search.SearchConstants" %> <%@ page import="edu.stanford.sulair.mjf.util.XMLFormatter" %> <%=request.getAttribute( Constants.SESSION_SEARCH_RESULTS_KEY )%>
Title(s): Band(s): Performer(s): Composer(s): Instrument(s): Date Ranges: Genre(s):
<% String decoded_title = (String)XMLFormatter.decode( "\"" + title + "\"" ); %> <%=decoded_title%>
<% String decoded_band = (String)XMLFormatter.decode( "\"" + band + "\"" ); %> <%=decoded_band%>
<% String decoded_performer = (String)XMLFormatter.decode( "\"" + performer + "\"" ); %> <%=decoded_performer%>
<% String decoded_composer = (String)XMLFormatter.decode( "\"" + composer + "\"" ); %> <%=decoded_composer%>
<% String decoded_instrument = (String)XMLFormatter.decode( "\"" + instrument + "\"" ); %> <%=decoded_instrument%>
<% String decoded_date = (String)XMLFormatter.decode( date ); %> <%=decoded_date%>
<% String decoded_genre = (String)XMLFormatter.decode( "\"" + genre + "\"" ); %> <%=decoded_genre%>
Displaying results of found
<% /* Set the user's XML search result parameter that is stored in the session to null. * It's crucial to set this to null here because a user could potentially use the * browser's back button to return to any previous page, including a previous search * results page. If the XML search results parameter contains, say, browse results, * and a user returns to a manuscript description search results page, the page won't * render correctly. */ request.setAttribute( Constants.SESSION_SEARCH_RESULTS_KEY, null ); %>