Changeset 1541 for extensions/net.sf.basedb.mev/trunk/resources/options.jsp
- Timestamp:
- Feb 22, 2012, 9:32:28 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.mev/trunk/resources/options.jsp
r1416 r1541 41 41 %> 42 42 <%@ taglib prefix="base" uri="/WEB-INF/base.tld" %> 43 <%@ taglib prefix="t" uri="/WEB-INF/tab.tld" %>44 43 45 44 <% … … 69 68 <base:body> 70 69 70 <h1>MeV Launcher options for <%=HTML.encodeTags(user.getName())%></h1> 71 71 <form action="submit.jsp?ID=<%=ID%>" method="post" name="mevoptions" onsubmit="return false;"> 72 72 <input type=hidden name="cmd" value="SaveOptions"> 73 73 74 <h3 class="docked">MeV Launcher options for <%=HTML.encodeTags(user.getName())%></h3> 75 <t:tabcontrol id="mevoptions" 76 contentstyle="<%="height: "+(int)(scale*240)+"px;"%>" 77 position="bottom"> 78 79 <t:tab id="option" title="MeV options" validate="validateOptions()"> 80 81 <table class="form" cellspacing=0> 82 <tr> 83 <td colspan="2"> 84 <i>Specify the amount of memory the Java Virtual Machine 85 for MeV is allowed to use. The default value is 512MB. We don't 86 recommend a lower value, but you may increase the value if your 87 computer has memory to spare.</i> 88 </td> 89 </tr> 90 <tr> 91 <td class="prompt">JVM max memory</td> 74 <div class="content filled"> 75 <div> 76 <table class="fullform bottomborder"> 77 <tr style="height: 3em;"> 78 <th>JVM max memory</td> 92 79 <td><input class="text" type="text" name="maxMemory" 93 value="<%=maxMemory%>" s ize="8" maxlength="6"80 value="<%=maxMemory%>" style="width: 12em;" maxlength="6" 94 81 onkeypress="return Numbers.integerOnly(event)"> MB</td> 95 82 </tr> 96 83 </table> 84 </div> 85 86 <div class="messagecontainer note"> 87 Specify the amount of memory the Java Virtual Machine for MeV is allowed to use. 88 The default value is 512MB. We don't recommend a lower value, but you may increase the value 89 if your computer has memory to spare. 90 </div> 97 91 98 </t:tab> 99 </t:tabcontrol> 100 <p> 101 <table align="center"> 102 <tr> 103 <td width="50%"><base:button onclick="saveSettings();" title="Save" /></td> 104 <td width="50%"><base:button onclick="window.close();" title="Cancel" /></td> 105 </tr> 106 </table> 92 </div> 93 94 <base:buttongroup subclass="dialogbuttons"> 95 <base:button onclick="saveSettings();" title="Save" /> 96 <base:button onclick="window.close();" title="Cancel" /> 97 </base:buttongroup> 98 107 99 </base:body> 108 100 </base:page>
Note: See TracChangeset
for help on using the changeset viewer.