You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by pa...@apache.org on 2001/12/07 00:38:29 UTC

cvs commit: jakarta-tomcat-4.0/webapps/admin server.jsp

patrickl    01/12/06 15:38:29

  Added:       webapps/admin server.jsp
  Log:
  Add .jsp page for Tomcat Server node
  Submitted by:	Manveen Kaur
  
  Revision  Changes    Path
  1.1                  jakarta-tomcat-4.0/webapps/admin/server.jsp
  
  Index: server.jsp
  ===================================================================
  <!-- Standard Struts Entries -->
  
  <%@ page language="java" %>
  <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
  <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
  <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
  
  <html:html locale="true">
  
  <%@ include file="header.jsp" %>
  
  <!-- Body -->
  <body bgcolor="white">
  
  <!--Form -->
  
  <html:errors/>
  <html:form method="POST" action="/server" focus="portNumberText">
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr class="page-title-row">
        <td align="left" nowrap>
          <div class="page-title-text"><bean:message key="server.heading"/></div>
        </td>
        <td align="right" nowrap> 
          <div class="page-title-text">
            <html:select property="action">
              <html:options collection="actionVals" property="value"
                     labelProperty="label"/>
              </html:select>
          </div>
        </td>
      </tr>
      <tr>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td colspan="2" align="right" nowrap>
          <html:submit styleClass="button">
             <bean:message key="button.save"/> 
          </html:submit>          
          &nbsp;
          <html:reset styleClass="button">
              <bean:message key="button.cancel"/> 
          </html:reset> 
        </td>
      </tr>
      <tr>
        <td>&nbsp;</td>
      </tr>
    </table>
    <table class="back-table" border="0" cellspacing="0" cellpadding="1" width="100%">
      <tr> 
        <td> 
          <table class="front-table" border="0" cellspacing="0" cellpadding="0" width="100%">
            <tr class="header-row"> 
              <td width="27%"> 
                <div class="table-header-text" align="left">Properties</div>
              </td>
              <td width="73%"> 
                <div class="table-header-text" align="left">&nbsp;</div>
              </td>
            </tr>
            <tr> 
              <td>
                <div class="table-label-text"><bean:message key="server.portnumber"/>:</div>
              </td>
              <td>
                <div class="table-normal-text" >
                  <html:text property="portNumberText" size="24" maxlength="24"/>
                </div>
              </td>
            </tr>
            <tr>
              <td class="line-row" colspan="2"><img src="" alt="" width="1" height="1" border="0"></td>
            </tr>
            <tr> 
              <td>
                <div class="table-label-text"><bean:message key="server.debuglevel"/>:</div>
              </td>
              <td>
                <div class="table-normal-text" >
                  <html:select property="debugLvl">
                       <html:options collection="debugLvlVals" property="value"
                     labelProperty="label"/>
                  </html:select>
                </div>
              </td>
            </tr>
            <tr>
              <td class="line-row" colspan="2"><img src="" alt="" width="1" height="1" border="0"></td>
            </tr>
            <tr> 
              <td>
                <div class="table-label-text"><bean:message key="server.shutdown"/>:</div>
              </td>
              <td>
                <div class="table-normal-text" >
                  <html:text property="shutdownText" size="24" maxlength="24"/>
                </div>
              </td>
            </tr>
          </table>
        </td>
      </tr>
    </table>
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td colspan="2" align="right" nowrap>
          <html:submit styleClass="button">
             <bean:message key="button.save"/> 
          </html:submit>          
          &nbsp;
          <html:reset styleClass="button">
              <bean:message key="button.cancel"/> 
          </html:reset> 
        </td>
      </tr>
    </table>
  </html:form>
  
  <!-- Standard Footer -->
  
  <%@ include file="footer.jsp" %>
  
  </body>
  
  </html:html>
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>