<%@ page import="javax.servlet.jsp.JspException" %> <%! String m_title; %> <%! String[] m_options; %> <%! String[] m_actions; %> <%! String m_banner; %> <%! String m_home; %> <% m_title = (String) request.getAttribute("urn:merlin:page.title"); m_options = (String[]) request.getAttribute("urn:merlin:page.options"); m_actions = (String[]) request.getAttribute("urn:merlin:page.actions"); m_banner = (String) request.getAttribute("urn:merlin:page.banner"); if( m_title == null ) m_title = "Untitled Page"; if( m_options == null ) m_options = new String[0]; if( m_actions == null ) m_actions = new String[0]; if( m_banner == null ) m_banner = ""; m_home = (String) request.getAttribute("urn:merlin:page.home"); if( m_home == null ) m_home = request.getContextPath() + "/index.jsp"; %> <%= m_title %>
<%= m_title %>

home

  <% for( int i=0; i <%= option %> <% if( i < ( m_options.length -1 ) ) { %> <%= " | " %> <% } else { %> <%= "   " %> <% } } %>

  <% for( int i=0; i <%= action %> <% if( i < ( m_actions.length -1 ) ) { %> <%= " | " %> <% } else { %> <%= "   " %> <% } } %>