<%-- toolview.jsp --%> <% String title = "Tool Listing"; String deck = "A list of content creation tools"; String desc = "Without tools, people are nothing more than animals. And " + "pretty weak ones at that. Here's a list of servlet-based " + "content creation tools you can use so you won't be a " + "servlet weakling."; %> <%@ include file="/header.jsp" %> <%@ page session="false" %> <%@ page errorPage="/errorTaker.jsp" %> <% Tool[] tools = toolbean.getTools(request.getParameter("state")); for (int i = 0; i < tools.length; i++) { Tool tool = tools[i]; %>

<%= tool.name %> <% if (tool.isNewWithin(45)) { %> (New!) <% } else if (tool.isUpdatedWithin(45)) { %> (Updated!) <% } %>

<%= tool.homeURL %>
<%= tool.comments %> <% } %> <%@ include file="/footer.jsp" %>