Resending...

On Thu, 6 Dec 2001, Manveen Kaur wrote:

> Please add this file to the HEAD branch.
> (I'd forgotten to attach it in my last mail.)
> 
> New Server screen added to admin tool.
 
<!-- 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:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to