<%@ page errorPage="/admincenter/error.jsp" %><%-- setup_editlist_header.jsp Be careful editting this file! Careful construction of this include ensures the basic revize setup is completed, and that the include is non-intrusive, ESPECIALLY with consideration for new lines, etc. ***** PLEASE NOTE ***** Viewing source of processed html files is easier WITHOUT extra blank lines. ***** WHAT THIS MEANS ***** Please don't start the jsp code on a new line to look better in this file. This produces too many blank lines in the output html page. Note how this jsp comment ends and the next chunk of jsp code begins. Please put blank lines INSIDE the jsp code so they are not output to the client. What this include does: ---------------------- -Imports standard Java packages -Instanciates Tag Support class -calls rz.setup for EDIT LIST setup -Includes snippet_compatibilty which defines old naming convention variables --%><%@ page import="java.text.*, java.util.*, revize.data.*, revize.servlet.*, idetix.security.UserContext, idetix.util.*, revize.RevizeConstants, revize.request.*, revize.store.*, revize.resource.*, revize.*, revize.taglib.content.*,revize.taglib.content.data.*" %> <% //From - /plugins/editlist_header.jsp String revize_menus_leftnav = ""; String revize_menu_filter = ""; String revize_menu_linkplacement = ""; String revize_menu_minlevel = ""; boolean revize_menu_empty = false; String revize_menu_leftnav_embedded = ""; //----- Set up the ContentSupport class if not already created in the request scope // must be made available to the taglib via the pageContext attribute. RZTagSupport rz = (RZTagSupport) pageContext.getAttribute( ContentSupport.ATTRIBUTE_PAGE_TAG_SUPPORT ); if ( rz == null ) { rz = new RZTagSupport(pageContext); pageContext.setAttribute( ContentSupport.ATTRIBUTE_PAGE_TAG_SUPPORT, rz ); } //----- revize declared as ResourceReader on edit page (not servlet class) ResourceReader revize = null; // now initialized in rz.setup() rz.setup (revize, "list", request, response); // fixed page type (list) revize = rz.revize; DataStore RZstore = rz.getDataStore(); %><%@ taglib uri="/content" prefix="rz" %>