From 31d4cdee40b50b7d5fa2b845dc350a0a9388ff30 Mon Sep 17 00:00:00 2001 From: rjy7 Date: Tue, 18 May 2010 14:24:05 +0000 Subject: [PATCH] Reorganized FreeMarker controllers into a single package --- productMods/themes/vivo-basic/jsp/footer.jsp | 2 +- productMods/themes/vivo-basic/jsp/identity.jsp | 2 +- productMods/themes/vivo-basic/jsp/menu.jsp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/productMods/themes/vivo-basic/jsp/footer.jsp b/productMods/themes/vivo-basic/jsp/footer.jsp index ce11092a..ecdd2e2b 100644 --- a/productMods/themes/vivo-basic/jsp/footer.jsp +++ b/productMods/themes/vivo-basic/jsp/footer.jsp @@ -2,7 +2,7 @@ <%-- DO NOT MODIFY THIS FILE. IT IS NOT USED IN THEME CUSTOMIZATION. --%> -<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.FreeMarkerHttpServlet" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.freemarker.FreeMarkerHttpServlet" %> <% // If the request was for a jsp rather than a servlet, we didn't get these yet. // This is here as a safety net. We should have gotten the values in identity.jsp, diff --git a/productMods/themes/vivo-basic/jsp/identity.jsp b/productMods/themes/vivo-basic/jsp/identity.jsp index 2990bc2c..aaeb6d85 100644 --- a/productMods/themes/vivo-basic/jsp/identity.jsp +++ b/productMods/themes/vivo-basic/jsp/identity.jsp @@ -2,7 +2,7 @@ <%-- DO NOT MODIFY THIS FILE. IT IS NOT USED IN THEME CUSTOMIZATION. --%> -<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.FreeMarkerHttpServlet" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.freemarker.FreeMarkerHttpServlet" %> <% // If the request was for a jsp rather than a servlet, we didn't get these yet. String identity = (String) request.getAttribute("ftl_identity"); diff --git a/productMods/themes/vivo-basic/jsp/menu.jsp b/productMods/themes/vivo-basic/jsp/menu.jsp index df7dd87e..6a934dbe 100644 --- a/productMods/themes/vivo-basic/jsp/menu.jsp +++ b/productMods/themes/vivo-basic/jsp/menu.jsp @@ -3,7 +3,7 @@ <%-- DO NOT MODIFY THIS FILE. IT IS NOT USED IN THEME CUSTOMIZATION. --%> <%@ page import="edu.cornell.mannlib.vitro.webapp.web.BreadCrumbsUtil" %> -<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.FreeMarkerHttpServlet" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.freemarker.FreeMarkerHttpServlet" %> <% // If the request was for a jsp rather than a servlet, we didn't get these yet. // This is here as a safety net. We should have gotten the values in identity.jsp,