<%-- The contents of this file are subject to the license and copyright detailed in the LICENSE and NOTICE files at the root of the source tree and available online at http://www.dspace.org/license/ --%> <%-- - Form requesting a Handle or internal item ID for item editing - - Attributes: - invalid.id - if this attribute is present, display error msg --%> <%@ page contentType="text/html;charset=UTF-8" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> <%@ taglib uri="http://www.dspace.org/dspace-tags.tld" prefix="dspace" %> <%@ page import="javax.servlet.jsp.jstl.fmt.LocaleSupport" %> <%@ page import="javax.servlet.http.HttpServletRequest" %> <%@ page import="javax.servlet.jsp.tagext.TagSupport" %> <%@ page import="javax.servlet.jsp.PageContext" %> <%@ page import="javax.servlet.ServletException" %> <%@ page import="org.dspace.core.ConfigurationManager" %> <%-- invoke "popup" style which elides all the header and footer stuff. --%> <%! // get request parameter but return a default value if not present. String getDefaultedRequestParameter(HttpServletRequest r, String param, String dflt) { String result = r.getParameter(param); return (result == null) ? dflt : result; } %> <% String mdfield = getDefaultedRequestParameter(request,"field", "FieldMissing"); String isNameValue = getDefaultedRequestParameter(request,"isName", "false"); String isRepeatingValue = getDefaultedRequestParameter(request,"isRepeating", "false"); boolean isName = isNameValue.equalsIgnoreCase("true"); boolean isRepeating = isRepeatingValue.equalsIgnoreCase("true"); %>

<%= LocaleSupport.getLocalizedMessage(pageContext, "jsp.tools.lookup.field."+mdfield+".title") %>