|
From: Jon O. <jon...@us...> - 2008-07-01 21:49:27
|
Update of /cvsroot/mxbb/mx_kb/templates/_core/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv32301/templates/_core/admin Modified Files: kb_config_body.tpl Log Message: image buttons minor bugfixes cleanup Index: kb_config_body.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_kb/templates/_core/admin/kb_config_body.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** kb_config_body.tpl 28 Jan 2008 21:51:04 -0000 1.2 --- kb_config_body.tpl 1 Jul 2008 21:49:23 -0000 1.3 *************** *** 4,7 **** --- 4,26 ---- <form action="{S_ACTION}" method="post"> + <table width="100%" cellpadding="4" cellspacing="1" border="0" align="center"> + <tr> + <td> + <div id="admintabs"> + <ul> + <li id="general_title_tab"><a href="javascript:selectPart('general_title')">{L_GENERAL_TITLE}</a></li> + <li id="article_title_tab"><a href="javascript:selectPart('article_title')">{L_ARTICLE_TITLE}</a></li> + <li id="appearance_title_tab"><a href="javascript:selectPart('appearance_title')">{L_APPEARANCE_TITLE}</a></li> + <li id="comments_title_tab"><a href="javascript:selectPart('comments_title')">{L_COMMENTS_TITLE}</a></li> + <li id="ratings_title_tab"><a href="javascript:selectPart('ratings_title')">{L_RATINGS_TITLE}</a></li> + <li id="instructions_title_tab"><a href="javascript:selectPart('instructions_title')">{L_INSTRUCTIONS_TITLE}</a></li> + <li id="notifications_title_tab"><a href="javascript:selectPart('notifications_title')">{L_NOTIFICATIONS_TITLE}</a></li> + </ul> + </div> + </td> + </tr> + </table> + + <fieldset id="general_title"> <table width="100%" cellpadding="3" cellspacing="1" border="0" align="center" class="forumline"> <tr> *************** *** 22,25 **** --- 41,51 ---- </tr> <tr> + <td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}<input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" /> <input type="reset" value="{L_RESET}" class="liteoption" /></td> + </tr> + </table> + </fieldset> + <fieldset id="article_title"> + <table width="100%" cellpadding="3" cellspacing="1" border="0" align="center" class="forumline"> + <tr> <!-- TITLE ------------------------------------------------------------------------------------------- --> <th class="thHead" colspan="2"> {L_ARTICLE_TITLE}</th> *************** *** 86,89 **** --- 112,122 ---- </tr> <tr> + <td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}<input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" /> <input type="reset" value="{L_RESET}" class="liteoption" /></td> + </tr> + </table> + </fieldset> + <fieldset id="appearance_title"> + <table width="100%" cellpadding="3" cellspacing="1" border="0" align="center" class="forumline"> + <tr> <!-- TITLE ------------------------------------------------------------------------------------------- --> <th class="thHead" colspan="2"> {L_APPEARANCE_TITLE}</th> *************** *** 122,125 **** --- 155,165 ---- </tr> <tr> + <td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}<input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" /> <input type="reset" value="{L_RESET}" class="liteoption" /></td> + </tr> + </table> + </fieldset> + <fieldset id="comments_title"> + <table width="100%" cellpadding="3" cellspacing="1" border="0" align="center" class="forumline"> + <tr> <!-- TITLE ------------------------------------------------------------------------------------------- --> <th class="thHead" colspan="2"> {L_COMMENTS_TITLE}<br /><span class="gensmall">{L_COMMENTS_TITLE_EXPLAIN}</span></th> *************** *** 206,209 **** --- 246,256 ---- </tr> <tr> + <td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}<input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" /> <input type="reset" value="{L_RESET}" class="liteoption" /></td> + </tr> + </table> + </fieldset> + <fieldset id="ratings_title"> + <table width="100%" cellpadding="3" cellspacing="1" border="0" align="center" class="forumline"> + <tr> <!-- TITLE ------------------------------------------------------------------------------------------- --> <th class="thHead" colspan="2"> {L_RATINGS_TITLE}<br /><span class="gensmall">{L_RATINGS_TITLE_EXPLAIN}</span></th> *************** *** 222,225 **** --- 269,279 ---- </tr> <tr> + <td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}<input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" /> <input type="reset" value="{L_RESET}" class="liteoption" /></td> + </tr> + </table> + </fieldset> + <fieldset id="instructions_title"> + <table width="100%" cellpadding="3" cellspacing="1" border="0" align="center" class="forumline"> + <tr> <!-- TITLE ------------------------------------------------------------------------------------------- --> <th class="thHead" colspan="2"> {L_INSTRUCTIONS_TITLE}</th> *************** *** 238,241 **** --- 292,302 ---- </tr> <tr> + <td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}<input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" /> <input type="reset" value="{L_RESET}" class="liteoption" /></td> + </tr> + </table> + </fieldset> + <fieldset id="notifications_title"> + <table width="100%" cellpadding="3" cellspacing="1" border="0" align="center" class="forumline"> + <tr> <!-- TITLE ------------------------------------------------------------------------------------------- --> <th class="thHead" colspan="2"> {L_NOTIFICATIONS_TITLE}</th> *************** *** 253,255 **** </tr> </table> ! </form> \ No newline at end of file --- 314,355 ---- </tr> </table> ! </fieldset> ! </form> ! ! <br clear="all" /> ! <script type="text/javascript"> ! <!-- ! function admingetObj(obj) ! { ! return ( document.getElementById ? document.getElementById(obj) : ( document.all ? document.all[obj] : null ) ); ! } ! function adminsetNone(part) ! { ! admingetObj(part + '_tab').className = ''; ! admingetObj(part).style.display = 'none'; ! ! } ! function adminsetBlock(part) ! { ! admingetObj(part + '_tab').className = 'activetab'; ! admingetObj(part).style.display = 'block'; ! ! } ! function selectPart(part) ! { ! adminsetNone('general_title'); ! adminsetNone('article_title'); ! adminsetNone('appearance_title'); ! adminsetNone('comments_title'); ! adminsetNone('ratings_title'); ! adminsetNone('instructions_title'); ! adminsetNone('notifications_title'); ! ! ! adminsetBlock(part); ! } ! ! selectPart('general_title'); ! ! // --> ! </script> \ No newline at end of file |