From: Joseph C. <tex...@us...> - 2005-05-19 22:51:41
|
Update of /cvsroot/popfile/engine/skins/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9187/skins/default Modified Files: common-after-configuration.thtml common-before-configuration.thtml common-javascript.thtml common-middle.thtml common-top.thtml configuration-bar.thtml history-bar.thtml history-javascript.thtml history-navigator-widget.thtml history-page.thtml history-search-filter-widget.thtml password-page.thtml style.css Log Message: Lots of default skin changes. Config bar hiding now works (for history page only). Upper Remove buttons do not work but I wanted to commit this before I broke anything else. Some styles are still spread between the inline and the style sheet. Index: common-top.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/common-top.thtml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** common-top.thtml 25 Feb 2005 04:14:04 -0000 1.5 --- common-top.thtml 19 May 2005 22:51:28 -0000 1.6 *************** *** 2,8 **** <html lang="<TMPL_VAR NAME="Localize_LanguageCode">"> <head> ! <title><TMPL_VAR NAME="Localize_Header_Title"></title> ! <link rel="icon" href="favicon.ico"> ! <link rel="stylesheet" type="text/css" href="<TMPL_VAR NAME="Skin_Root">style.css" title="POPFile-Style"> ! <script language="javascript">function OnLoadHandler(){}</script> </head> --- 2,8 ---- <html lang="<TMPL_VAR NAME="Localize_LanguageCode">"> <head> ! <title><TMPL_VAR NAME="Localize_Header_Title"></title> ! <link rel="icon" href="favicon.ico"> ! <link rel="stylesheet" type="text/css" href="<TMPL_VAR NAME="Skin_Root">style.css" title="POPFile-Style"> ! <TMPL_INCLUDE NAME="common-javascript.thtml"> </head> Index: history-search-filter-widget.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/history-search-filter-widget.thtml,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** history-search-filter-widget.thtml 15 Feb 2005 04:23:54 -0000 1.9 --- history-search-filter-widget.thtml 19 May 2005 22:51:28 -0000 1.10 *************** *** 1,41 **** ! <form action="/history" method="post"> ! <label class="historyLabel" for="historySearch"> ! <TMPL_VAR NAME="Localize_History_SearchMessage">: ! </label> ! ! <TMPL_IF NAME="History_If_Search"> ! ! <input type="text" id="historySearch" name="search" value="<TMPL_VAR ESCAPE=HTML NAME="History_Field_Search">" /> ! ! </TMPL_IF> ! ! <input type="submit" class="submit" name="setsearch" value="<TMPL_VAR NAME="Localize_Find">" /> ! ! <label class="historyLabel" for="historyFilter"> ! <TMPL_VAR NAME="Localize_History_FilterBy">: ! </label> ! <input type="hidden" name="sort" value="<TMPL_VAR NAME="History_Field_Sort">" /> ! <select name="filter" id="historyFilter"> ! <option value=""></option> ! ! <TMPL_LOOP NAME="History_Loop_SF_Buckets"> ! ! <option value="<TMPL_VAR NAME="History_Bucket">" <TMPL_VAR NAME="History_Selected"> style="color: <TMPL_VAR NAME="History_Bucket_Color">"> ! <TMPL_VAR NAME="History_Bucket"> ! </option> ! ! </TMPL_LOOP> ! ! <option value="__filter__magnet" <TMPL_VAR NAME="History_Filter_Magnet">> ! <<TMPL_VAR NAME="Localize_History_ShowMagnet">> ! </option> ! <option value="unclassified" <TMPL_VAR NAME="History_Filter_Unclassified">> ! <unclassified> ! </option> ! </select> ! <input type="submit" class="submit" name="setfilter" value="<TMPL_VAR NAME="Localize_Filter">" /> ! <input type="hidden" name="negate" value="" /> ! <input type="checkbox" name="negate" class="checkbox" <TMPL_VAR NAME="History_Field_Not"> /> ! <TMPL_VAR NAME="Localize_History_Negate_Search"> ! <input type="submit" class="submit" name="reset_filter_search" value="<TMPL_VAR NAME="Localize_History_ResetSearch">" /> ! </form> --- 1,48 ---- ! <form action="/history" method="post"> ! <div style="display:inline; float: left; padding-right:1em;"> ! <label class="historyLabel" for="historySearch"> ! <TMPL_VAR NAME="Localize_History_SearchMessage"> ! </label> ! <br> ! <TMPL_IF NAME="History_If_Search"> ! <input type="text" id="historySearch" name="search" value="<TMPL_VAR ESCAPE=HTML NAME="History_Field_Search">" /> ! </TMPL_IF> ! ! </div> ! ! <div style="display:inline;"> ! <label class="historyLabel" for="historyFilter"> ! <TMPL_VAR NAME="Localize_History_FilterBy"> ! </label> ! <br> ! <input type="hidden" name="sort" value="<TMPL_VAR NAME="History_Field_Sort">" /> ! <select name="filter" id="historyFilter"> ! <option value=""></option> ! ! <TMPL_LOOP NAME="History_Loop_SF_Buckets"> ! ! <option value="<TMPL_VAR NAME="History_Bucket">" <TMPL_VAR NAME="History_Selected"> style="color: <TMPL_VAR NAME="History_Bucket_Color">"> ! <TMPL_VAR NAME="History_Bucket"> ! </option> ! ! </TMPL_LOOP> ! ! <option value="__filter__magnet" <TMPL_VAR NAME="History_Filter_Magnet">> ! <<TMPL_VAR NAME="Localize_History_ShowMagnet">> ! </option> ! <option value="unclassified" <TMPL_VAR NAME="History_Filter_Unclassified">> ! <unclassified> ! </option> ! </select> ! <input type="submit" class="submit" name="setfilter" value="<TMPL_VAR NAME="Localize_Find">" /> ! <input type="submit" class="submit" name="reset_filter_search" value="<TMPL_VAR NAME="Localize_History_ResetSearch">" /> ! </div> ! ! <div> ! <input type="hidden" name="negate" value="" /> ! <input type="checkbox" name="negate" id="negate" class="checkbox" <TMPL_VAR NAME="History_Field_Not"> /> ! <label for="negate"> ! <TMPL_VAR NAME="Localize_History_Negate_Search"> ! </label> ! </div> ! </form> Index: history-page.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/history-page.thtml,v retrieving revision 1.57 retrieving revision 1.58 diff -C2 -d -r1.57 -r1.58 *** history-page.thtml 4 Mar 2005 23:40:38 -0000 1.57 --- history-page.thtml 19 May 2005 22:51:28 -0000 1.58 *************** *** 26,29 **** --- 26,36 ---- </TMPL_IF> + <form action="/history" method="post"> + <input type="hidden" name="search" value="<TMPL_VAR NAME="History_Field_Search">" /> + <input type="hidden" name="sort" value="<TMPL_VAR NAME="History_Field_Sort">" /> + <input type="hidden" name="negate" value="<TMPL_VAR NAME="History_Field_Not">" /> + <input type="hidden" name="start_message" value="<TMPL_VAR NAME="History_Start_Message">" /> + <input type="hidden" name="filter" value="<TMPL_VAR NAME="History_Field_Filter">" /> + </form> <TMPL_IF NAME="History_If_Some_Messages"> *************** *** 31,37 **** <tr> <td align="left"> ! <h2 class="history"><TMPL_VAR NAME="Localize_History_Title"> (<TMPL_VAR NAME="History_Count">)</h2> ! </td> ! <td class="historyNavigatorTop" align="right"> <TMPL_IF "History_If_MultiPage"> --- 38,44 ---- <tr> <td align="left"> ! <h2 class="history" style="margin:0;"><TMPL_VAR NAME="Localize_History_Title"> (<TMPL_VAR NAME="History_Count">)</h2> ! ! <td class="historyNavigatorTop" align="right" valign="top" rowspan="2"> <TMPL_IF "History_If_MultiPage"> *************** *** 40,49 **** <!-- end of history-navigator-widget.thtml content --> </TMPL_IF> ! (<a class="history" href="/history"><TMPL_VAR NAME="Localize_Refresh"></a>) </td> </tr> ! <tr> <td colspan="2"> <!-- the following html was history-search-filter-widget.thtml --> --- 47,64 ---- <!-- end of history-navigator-widget.thtml content --> </TMPL_IF> ! <p /> (<a class="history" href="/history"><TMPL_VAR NAME="Localize_Refresh"></a>) </td> </tr> ! ! <tr> ! <td colspan="<TMPL_VAR NAME="History_Colspan">"> ! <input type="submit" class="submit removeButton" name="clearpage" onClick="return confirmClick(this)" value="<TMPL_VAR NAME="Localize_History_RemovePage">" /> ! <input type="submit" class="submit removeButton" name="clearall" onClick="return confirmClick(this)" value="<TMPL_VAR NAME="Localize_History_RemoveAll"> (<TMPL_VAR NAME="History_Count">)" /> ! <p /> ! </td> ! </tr> ! <tr> <td colspan="2"> <!-- the following html was history-search-filter-widget.thtml --> *************** *** 53,64 **** </tr> </table> ! ! <form class="HistoryMainForm" action="/history" method="post"> ! <input type="hidden" name="search" value="<TMPL_VAR ESCAPE=HTML NAME="History_Field_Search">" /> ! <input type="hidden" name="sort" value="<TMPL_VAR NAME="History_Field_Sort">" /> ! <input type="hidden" name="negate" value="<TMPL_VAR NAME="History_Field_Not">" /> ! <input type="hidden" name="start_message" value="<TMPL_VAR NAME="History_Start_Message">" /> ! <input type="hidden" name="filter" value="<TMPL_VAR NAME="History_Field_Filter">" /> ! <table class="historyTable" width="100%" summary="<TMPL_VAR NAME="Localize_History_MainTableSummary">"> --- 68,72 ---- </tr> </table> ! <form action="/history" method="post"> <table class="historyTable" width="100%" summary="<TMPL_VAR NAME="Localize_History_MainTableSummary">"> *************** *** 175,178 **** --- 183,187 ---- <a class="messageLink" title="<TMPL_VAR NAME="History_Cell_Title" ESCAPE=HTML>" href="/view?view=<TMPL_VAR NAME="History_Mail_File"><TMPL_VAR NAME="History_Fields">"> <span title="<TMPL_VAR NAME="History_Cell_Title" ESCAPE=HTML>"><TMPL_VAR NAME="History_Cell_Value" ESCAPE=HTML></span></a> + </td> <TMPL_ELSE> *************** *** 244,247 **** --- 253,257 ---- </tr> </table> + </form> <TMPL_IF "History_If_MultiPage"> *************** *** 251,256 **** <td class="historyNavigatorBottom"> <TMPL_INCLUDE NAME="history-navigator-widget.thtml"> - <input type="text" name="jumptopage" value="" size="3"> - <input type="submit" class="submit" name="gopage" value="<TMPL_VAR NAME="Localize_Go">" /> </td> </tr> --- 261,264 ---- *************** *** 259,263 **** </TMPL_IF> - </form> <TMPL_ELSE> <!-- if some messages --> --- 267,270 ---- *************** *** 270,281 **** </td> <td class="historyNavigatorTop" align="right"> ! ! <TMPL_IF "History_If_MultiPage"> ! <!-- the following html was generated by history-navigator-widget.thtml --> ! <TMPL_INCLUDE NAME="history-navigator-widget.thtml"> ! <!-- end of history-navigator-widget.thtml content --> ! </TMPL_IF> ! ! (<a class="history" href="/history"><TMPL_VAR NAME="Localize_Refresh"></a>) </td> --- 277,281 ---- </td> <td class="historyNavigatorTop" align="right"> ! (<a class="history" href="/history"><TMPL_VAR NAME="Localize_Refresh"></a>) </td> *************** *** 294,321 **** <TMPL_VAR NAME="Localize_History_NoMessages">. </span> - <p> </td> </tr> </table> ! ! </TMPL_IF> <!-- if some messages --> <TMPL_INCLUDE NAME="history-javascript.thtml"> ! <TMPL_INCLUDE NAME="common-before-configuration.thtml"> <TMPL_IF NAME="If_Show_Config_Bars"> ! <TMPL_INCLUDE NAME="history-bar.thtml"> ! <TMPL_INCLUDE NAME="configuration-bar.thtml"> <TMPL_ELSE> ! <tr><td> ! <form action="<TMPL_VAR NAME="Configuration_Action">" method="post"> ! <div class="toggleConfigBar"> ! <input type="submit" class="submit" name="show_configbar" value="<TMPL_VAR NAME="Localize_Configuration_Show_Bar">" /> ! <input type="hidden" name="start_message" value="<TMPL_VAR NAME="History_Start_Message">" /> ! </div> ! </form> ! </td></tr> </TMPL_IF> <TMPL_INCLUDE NAME="common-after-configuration.thtml"> <TMPL_INCLUDE NAME="common-bottom.thtml"> --- 294,338 ---- <TMPL_VAR NAME="Localize_History_NoMessages">. </span> </td> </tr> </table> ! <br /> </TMPL_IF> <!-- if some messages --> <TMPL_INCLUDE NAME="history-javascript.thtml"> ! <!--<TMPL_INCLUDE NAME="common-before-configuration.thtml">--> ! <TMPL_IF NAME="If_Show_Config_Bars"> ! ! <span style="border:2px #CCCC99 solid; padding:0.3em; padding-bottom:0; margin-left:0.3em; background:#CCCC99;"> ! <a name="configBar" href="<TMPL_VAR NAME="Configuration_Action">?hide_configbar=1"><b>Config Bar</b></a> ! </span> ! ! <table class="configBar" cellspacing="0" width="100%"> ! <tr> ! <td> ! <form action="<TMPL_VAR NAME="Configuration_Action">" method="post"> ! <TMPL_INCLUDE NAME="history-bar.thtml"> ! </form> ! </td> ! </tr> ! <tr> ! <td> ! <form action="<TMPL_VAR NAME="Configuration_Action">" method="post"> ! <TMPL_INCLUDE NAME="configuration-bar.thtml"> ! </form> ! </td> ! </tr> ! </table> ! <TMPL_ELSE> ! ! <span style="border:2px #CCCC99 solid; padding:0.3em; margin:0.3em; background:#CCCC99;"> ! <a href="<TMPL_VAR NAME="Configuration_Action">?show_configbar=1#configBar"><b>Config Bar</b></a> ! </span> ! <br /> </TMPL_IF> + <TMPL_INCLUDE NAME="common-after-configuration.thtml"> <TMPL_INCLUDE NAME="common-bottom.thtml"> Index: common-javascript.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/common-javascript.thtml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** common-javascript.thtml 4 Mar 2005 23:40:38 -0000 1.1 --- common-javascript.thtml 19 May 2005 22:51:28 -0000 1.2 *************** *** 1,4 **** ! <script language="JavaScript"> ! <!-- warnings = 1; // this will be replaced with an Advanced variable that the Template will insert here --- 1,4 ---- ! <script type="text/javascript" language="javascript"> ! warnings = 1; // this will be replaced with an Advanced variable that the Template will insert here *************** *** 8,11 **** else return 0; } ! --> </script> \ No newline at end of file --- 8,15 ---- else return 0; } ! ! function OnLoadHandler(){ ! return 0; ! } ! </script> \ No newline at end of file Index: common-middle.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/common-middle.thtml,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** common-middle.thtml 15 May 2005 16:25:39 -0000 1.14 --- common-middle.thtml 19 May 2005 22:51:28 -0000 1.15 *************** *** 1,4 **** - <TMPL_INCLUDE NAME="common-javascript.thtml"> - <body dir="<TMPL_VAR NAME="Localize_LanguageDirection">" onLoad="OnLoadHandler()"> <table class="shellTop" align="center" width="100%" summary=""> --- 1,2 ---- Index: common-before-configuration.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/common-before-configuration.thtml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** common-before-configuration.thtml 7 Feb 2005 03:44:59 -0000 1.3 --- common-before-configuration.thtml 19 May 2005 22:51:28 -0000 1.4 *************** *** 1 **** ! <table class="configBar" cellspacing="0" width="100%"> --- 1 ---- ! Index: configuration-bar.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/configuration-bar.thtml,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** configuration-bar.thtml 15 Feb 2005 04:23:54 -0000 1.10 --- configuration-bar.thtml 19 May 2005 22:51:28 -0000 1.11 *************** *** 1,74 **** ! <tr> ! <td> ! <form action="<TMPL_VAR NAME="Configuration_Action">" method="post"> ! <div class="configBarOption"> ! <label class="configurationLabel" for="configSkin"> ! <TMPL_VAR NAME="Localize_Configuration_SkinsChoose">: ! </label> ! ! <input type="hidden" name="start_message" value="<TMPL_VAR NAME="History_Start_Message">" /> ! <select name="skin" id="configSkin"> ! <optgroup label="<TMPL_VAR NAME="Localize_Configuration_GeneralSkins">"> ! ! <TMPL_LOOP NAME="Configuration_Loop_General_Skins"> ! ! <option value="<TMPL_VAR NAME="Configuration_General_Skin">" <TMPL_VAR NAME="Configuration_General_Selected">> ! <TMPL_VAR NAME="Configuration_General_Skin"> ! </option> ! ! </TMPL_LOOP> ! ! </optgroup> ! ! <optgroup label="<TMPL_VAR NAME="Localize_Configuration_SmallSkins">"> ! ! <TMPL_LOOP NAME="Configuration_Loop_Small_Skins"> ! ! <option value="<TMPL_VAR NAME="Configuration_Small_Skin">" <TMPL_VAR NAME="Configuration_Small_Selected">> ! <TMPL_VAR NAME="Configuration_Small_Skin"> ! </option> ! ! </TMPL_LOOP> ! ! </optgroup> ! <optgroup label="<TMPL_VAR NAME="Localize_Configuration_TinySkins">"> ! ! <TMPL_LOOP NAME="Configuration_Loop_Tiny_Skins"> ! ! <option value="<TMPL_VAR NAME="Configuration_Tiny_Skin">" <TMPL_VAR NAME="Configuration_Tiny_Selected">> ! <TMPL_VAR NAME="Configuration_Tiny_Skin"> ! </option> ! ! </TMPL_LOOP> ! ! </optgroup> ! </select> ! <input type="submit" class="submit" name="change_skin" value="<TMPL_VAR NAME="Localize_Apply">" /> ! </div> ! ! <div class="configBarOption"> ! ! <label class="configurationLabel" for="configLanguage"> ! <TMPL_VAR NAME="Localize_Configuration_LanguageChoose">: ! </label> ! ! <select name="language" id="configLanguage"> ! ! <TMPL_LOOP NAME="Configuration_Loop_Languages"> ! ! <option value="<TMPL_VAR NAME="Configuration_Language">" <TMPL_VAR NAME="Configuration_Selected_Language">> ! <TMPL_VAR NAME="Configuration_Language"> ! </option> ! ! </TMPL_LOOP> ! ! </select> ! <input type="submit" class="submit" name="change_language" value="<TMPL_VAR NAME="Localize_Apply">" /> ! </div> ! ! <div class="configBarOption toggleConfigBar"> ! <input type="submit" class="submit" name="hide_configbar" value="<TMPL_VAR NAME="Localize_Configuration_Hide_Bar">" /> ! </div> ! </form> ! </td> ! </tr> --- 1,64 ---- ! <div class="configBarOption"> ! <label class="configurationLabel" for="configSkin"> ! <TMPL_VAR NAME="Localize_Configuration_SkinsChoose">: ! </label> ! ! <input type="hidden" name="start_message" value="<TMPL_VAR NAME="History_Start_Message">" /> ! <select name="skin" id="configSkin"> ! <optgroup label="<TMPL_VAR NAME="Localize_Configuration_GeneralSkins">"> ! ! <TMPL_LOOP NAME="Configuration_Loop_General_Skins"> ! ! <option value="<TMPL_VAR NAME="Configuration_General_Skin">" <TMPL_VAR NAME="Configuration_General_Selected">> ! <TMPL_VAR NAME="Configuration_General_Skin"> ! </option> ! ! </TMPL_LOOP> ! ! </optgroup> ! ! <optgroup label="<TMPL_VAR NAME="Localize_Configuration_SmallSkins">"> ! ! <TMPL_LOOP NAME="Configuration_Loop_Small_Skins"> ! ! <option value="<TMPL_VAR NAME="Configuration_Small_Skin">" <TMPL_VAR NAME="Configuration_Small_Selected">> ! <TMPL_VAR NAME="Configuration_Small_Skin"> ! </option> ! ! </TMPL_LOOP> ! ! </optgroup> ! <optgroup label="<TMPL_VAR NAME="Localize_Configuration_TinySkins">"> ! ! <TMPL_LOOP NAME="Configuration_Loop_Tiny_Skins"> ! ! <option value="<TMPL_VAR NAME="Configuration_Tiny_Skin">" <TMPL_VAR NAME="Configuration_Tiny_Selected">> ! <TMPL_VAR NAME="Configuration_Tiny_Skin"> ! </option> ! ! </TMPL_LOOP> ! ! </optgroup> ! </select> ! <input type="submit" class="submit" name="change_skin" value="<TMPL_VAR NAME="Localize_Apply">" /> ! </div> ! ! <div class="configBarOption"> ! ! <label class="configurationLabel" for="configLanguage"> ! <TMPL_VAR NAME="Localize_Configuration_LanguageChoose">: ! </label> ! ! <select name="language" id="configLanguage"> ! ! <TMPL_LOOP NAME="Configuration_Loop_Languages"> ! ! <option value="<TMPL_VAR NAME="Configuration_Language">" <TMPL_VAR NAME="Configuration_Selected_Language">> ! <TMPL_VAR NAME="Configuration_Language"> ! </option> ! ! </TMPL_LOOP> ! ! </select> ! <input type="submit" class="submit" name="change_language" value="<TMPL_VAR NAME="Localize_Apply">" /> ! </div> Index: style.css =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/style.css,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** style.css 16 Feb 2005 23:15:56 -0000 1.15 --- style.css 19 May 2005 22:51:28 -0000 1.16 *************** *** 247,251 **** background-color: #DFDFAF; border: 1px solid #CCCC99; - margin-top: 0.5em; } --- 247,250 ---- *************** *** 265,268 **** --- 264,268 ---- float: left; min-height: 3em; + background-color: #EDEDCA; } *************** *** 270,273 **** --- 270,274 ---- float: right; border: 0; + margin-top: 2.5em; } Index: history-navigator-widget.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/history-navigator-widget.thtml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** history-navigator-widget.thtml 29 Jul 2004 13:01:19 -0000 1.3 --- history-navigator-widget.thtml 19 May 2005 22:51:28 -0000 1.4 *************** *** 1,22 **** ! <TMPL_VAR NAME="Localize_History_Jump">: ! <TMPL_IF NAME="History_Navigator_If_Previous"> ! [<a href="/history?start_message=<TMPL_VAR NAME="History_Navigator_Previous"><TMPL_VAR NAME="History_Navigator_Fields">">< <TMPL_VAR NAME="Localize_Previous"></a>] ! </TMPL_IF> ! ! <TMPL_LOOP NAME="History_Navigator_Loop"> ! <TMPL_IF NAME="History_Navigator_If_Spacer"> ! <TMPL_IF NAME="History_Navigator_If_Dots"> ! ... ! </TMPL_IF> ! <TMPL_ELSE> ! <TMPL_IF NAME="History_Navigator_If_This_Page"> ! <b><TMPL_VAR NAME="History_Navigator_Page"></b> ! <TMPL_ELSE> ! [<a href="/history?start_message=<TMPL_VAR NAME="History_Navigator_I"><TMPL_VAR NAME="History_Navigator_Fields">"><TMPL_VAR NAME="History_Navigator_Page"></a>] ! </TMPL_IF> ! </TMPL_IF> ! </TMPL_LOOP> ! ! <TMPL_IF NAME="History_Navigator_If_Next"> ! [<a href="/history?start_message=<TMPL_VAR NAME="History_Navigator_Next"><TMPL_VAR NAME="History_Navigator_Fields">"><TMPL_VAR NAME="Localize_Next"> ></a>] ! </TMPL_IF> --- 1,26 ---- ! <TMPL_VAR NAME="Localize_History_Jump">: ! <TMPL_IF NAME="History_Navigator_If_Previous"> ! [<a href="/history?start_message=<TMPL_VAR NAME="History_Navigator_Previous"><TMPL_VAR NAME="History_Navigator_Fields">">< <TMPL_VAR NAME="Localize_Previous"></a>] ! </TMPL_IF> ! ! <TMPL_LOOP NAME="History_Navigator_Loop"> ! <TMPL_IF NAME="History_Navigator_If_Spacer"> ! <TMPL_IF NAME="History_Navigator_If_Dots"> ! ... ! </TMPL_IF> ! <TMPL_ELSE> ! <TMPL_IF NAME="History_Navigator_If_This_Page"> ! <b><TMPL_VAR NAME="History_Navigator_Page"></b> ! <TMPL_ELSE> ! [<a href="/history?start_message=<TMPL_VAR NAME="History_Navigator_I"><TMPL_VAR NAME="History_Navigator_Fields">"><TMPL_VAR NAME="History_Navigator_Page"></a>] ! </TMPL_IF> ! </TMPL_IF> ! </TMPL_LOOP> ! ! <TMPL_IF NAME="History_Navigator_If_Next"> ! [<a href="/history?start_message=<TMPL_VAR NAME="History_Navigator_Next"><TMPL_VAR NAME="History_Navigator_Fields">"><TMPL_VAR NAME="Localize_Next"> ></a>] ! </TMPL_IF> ! <form action="/history" method="post" style="display:inline;"> ! <input type="text" name="jumptopage" value="" size="3" /> ! <input type="submit" class="submit" name="gopage" value="<TMPL_VAR NAME="Localize_Go">" /> ! </form> Index: password-page.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/password-page.thtml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** password-page.thtml 25 Feb 2005 04:14:04 -0000 1.5 --- password-page.thtml 19 May 2005 22:51:28 -0000 1.6 *************** *** 21,25 **** </form> ! <script language="Javascript"> <!-- function OnLoadHandler() { // redefine default OnLoadHandler --- 21,25 ---- </form> ! <script type="text/javascript" language="javascript"> <!-- function OnLoadHandler() { // redefine default OnLoadHandler Index: history-bar.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/history-bar.thtml,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** history-bar.thtml 15 Feb 2005 04:23:54 -0000 1.13 --- history-bar.thtml 19 May 2005 22:51:28 -0000 1.14 *************** *** 1,59 **** ! <tr> ! <td> ! <form action="<TMPL_VAR NAME="Configuration_Action">" method="post"> ! ! <div class="configBarOption"> ! <label class="configurationLabel"> ! <TMPL_VAR NAME="Localize_History_Column_Characters">: ! </label> ! <input type="submit" class="submit" name="increase" value="<TMPL_VAR NAME="Localize_History_Increase">" /> ! <input type="submit" class="submit" name="decrease" value="<TMPL_VAR NAME="Localize_History_Decrease">" /> ! <input type="submit" class="submit" name="automatic" value="<TMPL_VAR NAME="Localize_History_Automatic">" /> ! </div> ! ! <div class="configBarOption"> ! <label class="configurationLabel"> ! <TMPL_VAR NAME="Localize_Configuration_Fields">: ! </label> ! ! <TMPL_LOOP NAME="Configuration_Loop_History_Columns"> ! ! <TMPL_IF NAME="Configuration_Field_Visible"> ! ! <span class="checkLabel"><input type="checkbox" id="<TMPL_VAR NAME="Configuration_Field_Name">" class="checkbox" name="<TMPL_VAR NAME="Configuration_Field_Name">"> <TMPL_VAR NAME="Configuration_Localized_Field_Name"> </span> ! ! <TMPL_ELSE> ! ! <input type="hidden" id="<TMPL_VAR NAME="Configuration_Field_Name">" name="<TMPL_VAR NAME="Configuration_Field_Name">"> ! ! </TMPL_IF> ! ! </TMPL_LOOP> ! <input type="submit" class="submit" name="update_fields" value="<TMPL_VAR NAME="Localize_Apply">" /> ! <input type="hidden" name="start_message" value="<TMPL_VAR NAME="History_Start_Message">" /> ! </div> ! ! <div class="configBarOption"> ! <label class="configurationLabel" for="configPageSize"> ! <TMPL_VAR NAME="Localize_Configuration_History">: ! </label> ! <input name="page_size" id="configPageSize" type="text" size="4" maxlength="4" value="<TMPL_VAR NAME="Configuration_Page_Size">" /> ! <input type="submit" class="submit" name="update_page_size" value="<TMPL_VAR NAME="Localize_Apply">" /> ! ! </div> ! <div class="configBarOption"> ! ! <label class="configurationLabel" for="configHistoryDays"> ! <TMPL_VAR NAME="Localize_Configuration_Days">: ! </label> ! ! <input name="history_days" id="configHistoryDays" type="text" size="3" maxlength="3" value="<TMPL_VAR NAME="Configuration_History_Days">" /> ! ! <span class="checkLabel"><input type="checkbox" class="checkbox" name="purge_history" value="<TMPL_VAR NAME="Localize_History_Purge">" /> ! <TMPL_VAR NAME="Localize_History_Purge"></span> ! <input type="submit" class="submit" name="update_history_days" value="<TMPL_VAR NAME="Localize_Apply">" /> ! ! </div> ! </form> ! </td> ! </tr> --- 1,51 ---- ! <div class="configBarOption"> ! <label class="configurationLabel"> ! <TMPL_VAR NAME="Localize_History_Column_Characters">: ! </label> ! <input type="submit" class="submit" name="increase" value="<TMPL_VAR NAME="Localize_History_Increase">" /> ! <input type="submit" class="submit" name="decrease" value="<TMPL_VAR NAME="Localize_History_Decrease">" /> ! <input type="submit" class="submit" name="automatic" value="<TMPL_VAR NAME="Localize_History_Automatic">" /> ! </div> ! ! <div class="configBarOption"> ! <label class="configurationLabel"> ! <TMPL_VAR NAME="Localize_Configuration_Fields">: ! </label> ! ! <TMPL_LOOP NAME="Configuration_Loop_History_Columns"> ! ! <TMPL_IF NAME="Configuration_Field_Visible"> ! ! <span class="checkLabel"><input type="checkbox" id="<TMPL_VAR NAME="Configuration_Field_Name">" class="checkbox" name="<TMPL_VAR NAME="Configuration_Field_Name">"> <TMPL_VAR NAME="Configuration_Localized_Field_Name"> </span> ! ! <TMPL_ELSE> ! ! <input type="hidden" id="<TMPL_VAR NAME="Configuration_Field_Name">" name="<TMPL_VAR NAME="Configuration_Field_Name">"> ! ! </TMPL_IF> ! ! </TMPL_LOOP> ! <input type="submit" class="submit" name="update_fields" value="<TMPL_VAR NAME="Localize_Apply">" /> ! <input type="hidden" name="start_message" value="<TMPL_VAR NAME="History_Start_Message">" /> ! </div> ! ! <div class="configBarOption"> ! <label class="configurationLabel" for="configPageSize"> ! <TMPL_VAR NAME="Localize_Configuration_History">: ! </label> ! <input name="page_size" id="configPageSize" type="text" size="4" maxlength="4" value="<TMPL_VAR NAME="Configuration_Page_Size">" /> ! <input type="submit" class="submit" name="update_page_size" onClick="return confirmClick(this)" value="<TMPL_VAR NAME="Localize_Apply">" /> ! </div> ! <div class="configBarOption"> ! ! <label class="configurationLabel" for="configHistoryDays"> ! <TMPL_VAR NAME="Localize_Configuration_Days">: ! </label> ! ! <input name="history_days" id="configHistoryDays" type="text" size="3" maxlength="3" value="<TMPL_VAR NAME="Configuration_History_Days">" /> ! ! <span class="checkLabel"><input type="checkbox" class="checkbox" name="purge_history" value="<TMPL_VAR NAME="Localize_History_Purge">" /> ! <TMPL_VAR NAME="Localize_History_Purge"></span> ! <input type="submit" class="submit" name="update_history_days" value="<TMPL_VAR NAME="Localize_Apply">" /> ! ! </div> Index: history-javascript.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/history-javascript.thtml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** history-javascript.thtml 4 Mar 2005 23:40:38 -0000 1.3 --- history-javascript.thtml 19 May 2005 22:51:28 -0000 1.4 *************** *** 1,21 **** ! <script language="JavaScript"> ! <!-- ! function OnLoadHandler() { // redefine default OnLoadHandler ! if (document.getElementById("removeChecks")) ! document.getElementById("removeChecks").innerHTML = "<input type='checkbox' class='checkbox' onclick='javascript:toggleChecks(this);' title='Select All' />" ! ! document.getElementById("historySearch").focus(); ! } ! ! function toggleChecks(x) { ! d = document.forms; ! for (var i=0; i < d.length; i++) ! { ! for (var j=0; j < d[i].elements.length; j++) ! if (d[i].elements[j].name.substr(0,7) == "remove_") ! d[i].elements[j].checked = x.checked; ! } ! return 0; ! } ! --> </script> \ No newline at end of file --- 1,22 ---- ! <script type="text/javascript" language="javascript"> ! <!-- ! function OnLoadHandler() { // redefine default OnLoadHandler ! if (document.getElementById("removeChecks")) ! document.getElementById("removeChecks").innerHTML = "<input type='checkbox' class='checkbox' onclick='javascript:toggleChecks(this);' title='Select All' />"; ! } ! ! function toggleChecks(x) { ! d = document.forms; ! for (var i=0; i < d.length; i++) { ! for (var j=0; j < d[i].elements.length; j++) ! if (d[i].elements[j].name.substr(0,7) == "remove_") ! d[i].elements[j].checked = x.checked; ! } ! return 0; ! } ! ! function confirmClick(x) { ! return confirm ("Are you sure you want to do this?"); ! } ! --> </script> \ No newline at end of file Index: common-after-configuration.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/common-after-configuration.thtml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** common-after-configuration.thtml 7 Feb 2005 03:44:59 -0000 1.2 --- common-after-configuration.thtml 19 May 2005 22:51:28 -0000 1.3 *************** *** 1,5 **** - </td> - </tr> - </table> </td> <td class="shellRight"></td> --- 1,2 ---- |