tim@166: <%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" language="java"%>
tim@15: <%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
tim@15: <%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
tim@166: <%@ taglib uri="http://jakarta.apache.org/struts/tags-bean-el" prefix="bean-el" %>
tim@15: <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
tim@15: <%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles"%>
tim@166: <% Object exceptionMessage = request.getAttribute(CommunicationKeys.REQUEST_EXCEPTION_MESSAGE_ID);
tim@166: exceptionMessage = (exceptionMessage != null ? exceptionMessage.toString().replaceAll(" ", ".").replaceAll(":",".").toLowerCase() : null);
tim@166: exceptionMessage = (exceptionMessage != null && exceptionMessage.toString().endsWith(".") ? exceptionMessage.toString().substring(0,exceptionMessage.toString().length()-1) : exceptionMessage);
tim@166:
tim@166: %>
tim@34: <%@page import="de.intevation.gnv.action.CommunicationKeys"%>