<%@ page import="java.util.Enumeration"%> <%@ page import="com.intland.codebeamer.Config"%> <% final String project = request.getParameter("project"); String projectTitle = project; if (projectTitle.endsWith("_")) { projectTitle = projectTitle.substring(0, projectTitle.length() - 1); } String editCmd = request.getParameter("edit"); if (editCmd == null) { editCmd = ""; } if (Config.isPlugin()) { response.setContentType("application/x-java-jnlp-file"); String codebase = HttpUtils.getRequestURL(request).toString(); int off = codebase.lastIndexOf('/'); codebase = codebase.substring(0, off + 1); %> Source Explorer Intland GmbH Source Explorer Plugin Source Explorer Plugin -codebase <%=codebase%> <% for (Enumeration e = request.getParameterNames(); e.hasMoreElements();) { String key = (String)e.nextElement(); String value = request.getParameter(key); System.err.println("\t-" + key + ""); System.err.println("\t" + value + ""); out.println("\t-" + key + ""); out.println("\t" + value + ""); } %> <% return; } %> <%=projectTitle%> - Intland Source Explorer