From: Manni H. <man...@us...> - 2007-12-03 12:58:38
|
Update of /cvsroot/popfile/engine/skins/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17861/skins/default Modified Files: administration-page.thtml Log Message: More work on the Administration Tab which seems to be functional now (at least for POP3 and IMAP). Index: administration-page.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/administration-page.thtml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** administration-page.thtml 2 Dec 2007 12:07:24 -0000 1.12 --- administration-page.thtml 3 Dec 2007 12:58:41 -0000 1.13 *************** *** 25,34 **** </label> <br /> ! <input type="radio" name="servermode" id="StealthMode" value="StealthMode" onClick="serverMode(false)" <TMPL_IF NAME="Security_If_Local">checked</TMPL_IF> /> <label class="administrationLabel" for="StealthMode"> Stealth Mode (disable remote connections) </label> <br /> ! <input type="radio" name="servermode" id="ServerMode" value="ServerMode" onClick="serverMode(true)" <TMPL_IF NAME="Security_If_Local"><TMPL_ELSE>checked</TMPL_IF> /> <label class="administrationLabel" for="ServerMode"> Server Mode (allow remote connections) --- 25,34 ---- </label> <br /> ! <input type="radio" name="servermode" id="StealthMode" value="StealthMode" onClick="serverMode(false)" <TMPL_IF NAME="Security_If_Local">checked="checked"</TMPL_IF> /> <label class="administrationLabel" for="StealthMode"> Stealth Mode (disable remote connections) </label> <br /> ! <input type="radio" name="servermode" id="ServerMode" value="ServerMode" onClick="serverMode(true)" <TMPL_UNLESS NAME="Security_If_Local">checked="checked"</TMPL_UNLESS> /> <label class="administrationLabel" for="ServerMode"> Server Mode (allow remote connections) *************** *** 36,40 **** <br /> <div style="margin-left:1em;" class="adminAcceptRemote"> ! <input type="checkbox" name="serveropt_http" id="securityAcceptHTTP" name="toggle" <TMPL_IF NAME="Security_If_Local">disabled</TMPL_IF> <TMPL_IF NAME="Security_If_Local_Http"><TMPL_ELSE>checked</TMPL_IF>/> <label class="administrationLabel" for="securityAcceptHTTP"> <TMPL_VAR NAME="Localize_Security_UI"> --- 36,40 ---- <br /> <div style="margin-left:1em;" class="adminAcceptRemote"> ! <input type="checkbox" name="serveropt_html" id="securityAcceptHTTP" name="toggle" <TMPL_IF NAME="Security_If_Local">disabled</TMPL_IF> <TMPL_IF NAME="Security_If_Local_html"><TMPL_ELSE>checked="checked"</TMPL_IF>/> <label class="administrationLabel" for="securityAcceptHTTP"> <TMPL_VAR NAME="Localize_Security_UI"> *************** *** 45,52 **** </div> - - <!-- This file is currently being included by Perl in Configuration_Dynamic below when loaded, Perl needs changing so it doesn't load there (if possible) --> - <TMPL_INCLUDE NAME="windows-configuration.thtml"> - <br /><br /> <input type="submit" class="submit" name="apply_stealth" value="<TMPL_VAR NAME="Localize_Apply">" /> --- 45,48 ---- *************** *** 105,120 **** <br /> <label class="administrationLabel" for="configLoggingLevel"> ! Logger level: </label> <select name="level" id="configLoggingLevel"> <option value="0" <TMPL_VAR NAME="logger_level_selected_0">> ! Low </option> <option value="1" <TMPL_VAR NAME="logger_level_selected_1">> ! Default </option> <option value="2" <TMPL_VAR NAME="logger_level_selected_2">> ! High </option> </select> --- 101,116 ---- <br /> <label class="administrationLabel" for="configLoggingLevel"> ! <TMPL_VAR NAME="Localize_Configuration_Logger_Level"> </label> <select name="level" id="configLoggingLevel"> <option value="0" <TMPL_VAR NAME="logger_level_selected_0">> ! <TMPL_VAR NAME="Localize_Configuration_Logger_Level0"> </option> <option value="1" <TMPL_VAR NAME="logger_level_selected_1">> ! <TMPL_VAR NAME="Localize_Configuration_Logger_Level1"> </option> <option value="2" <TMPL_VAR NAME="logger_level_selected_2">> ! <TMPL_VAR NAME="Localize_Configuration_Logger_Level2"> </option> </select> |