<%-- 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/ --%> <%-- - Feedback form JSP - - Attributes: - feedback.problem - if present, report that all fields weren't filled out - authenticated.email - email of authenticated user, if any --%> <%@ page contentType="text/html;charset=UTF-8" %> <%@ page import="org.apache.commons.lang.StringEscapeUtils" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> <%@ taglib uri="http://www.dspace.org/dspace-tags.tld" prefix="dspace" %> <% boolean problem = (request.getParameter("feedback.problem") != null); String email = request.getParameter("email"); if (email == null || email.equals("")) { email = (String) request.getAttribute("authenticated.email"); } if (email == null) { email = ""; } String feedback = request.getParameter("feedback"); if (feedback == null) { feedback = ""; } String fromPage = request.getParameter("fromPage"); if (fromPage == null) { fromPage = ""; } %> <%--

Feedback Form

--%>

<%--

Thanks for taking the time to share your feedback about the DSpace system. Your comments are appreciated!

--%>

<% if (problem) { %> <%--

Please fill out all of the information below.

--%>

<% } %>
" />