From: Brad <bra...@us...> - 2005-10-21 03:24:49
|
Update of /cvsroot/archive-access/archive-access/projects/wayback/src/webapp/jsp/PipelineUI In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14129/src/webapp/jsp/PipelineUI Added Files: PipelineStatus.jsp Log Message: Heavy modification of configuration to be Context-level, instead of Servlet-level, which dramatically reduces configuration redundancy. Cleaned up IndexPipeline, moved a few classes around, added a really simple JSP to view the Index and Merge queue sizes, and a filter, which both allows the index thread to start with the context, and allows access to the jsp. --- NEW FILE: PipelineStatus.jsp --- <jsp:include page="../../template/UI-header.jsp" /> <%@ page import="org.archive.wayback.arcindexer.PipelineStatus" %> <% PipelineStatus status = (PipelineStatus) request.getAttribute("pipelinestatus"); %> <H2>Pipeline Status</H2> <HR> Queued For Index:<B><%= status.getNumQueuedForIndex() %></B><BR> Queued For Merge:<B><%= status.getNumQueuedForMerge() %></B><BR> <jsp:include page="../../template/UI-footer.jsp" /> |