|
From: Jon O. <jon...@us...> - 2008-07-01 21:50:17
|
Update of /cvsroot/mxbb/mx_news/templates/_core/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv331/admin Modified Files: mx_news_admin_settings.tpl Log Message: image buttons minor bugfixes cleanup Index: mx_news_admin_settings.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_news/templates/_core/admin/mx_news_admin_settings.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** mx_news_admin_settings.tpl 8 Feb 2008 21:58:46 -0000 1.1 --- mx_news_admin_settings.tpl 1 Jul 2008 21:50:13 -0000 1.2 *************** *** 4,7 **** --- 4,22 ---- <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="comments_title_tab"><a href="javascript:selectPart('comments_title')">{L_COMMENTS_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> *************** *** 21,26 **** <td class="row2" width="50%"><input text="text" name="wysiwyg_path" value="{WYSIWYG_PATH}" size="20" maxlength="50" /></td> </tr> ! ! <tr> <!-- TITLE ------------------------------------------------------------------------------------------- --> --- 36,46 ---- <td class="row2" width="50%"><input text="text" name="wysiwyg_path" value="{WYSIWYG_PATH}" size="20" maxlength="50" /></td> </tr> ! <tr> ! <td align="center" class="cat" colspan="2"><input class="liteoption" type="submit" value="{L_SUBMIT}" name="submit" /> <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 ------------------------------------------------------------------------------------------- --> *************** *** 95,98 **** --- 115,125 ---- <td class="row2"><input type="text" class="post" size="50" name="max_comment_chars" value="{COMMENT_MAX_CHAR}" /></td> </tr> + <tr> + <td align="center" class="cat" colspan="2"><input class="liteoption" type="submit" value="{L_SUBMIT}" name="submit" /> <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 ------------------------------------------------------------------------------------------- --> *************** *** 109,115 **** </tr> <tr> ! <td align="center" class="cat" colspan="2"><input class="liteoption" type="submit" value="{L_SUBMIT}" name="submit" /> <input type="reset" value="{L_RESET}" class="liteoption" /> ! </td> </tr> </table> ! </form> \ No newline at end of file --- 136,176 ---- </tr> <tr> ! <td align="center" class="cat" colspan="2"><input class="liteoption" type="submit" value="{L_SUBMIT}" name="submit" /> <input type="reset" value="{L_RESET}" class="liteoption" /></td> </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('comments_title'); ! adminsetNone('notifications_title'); ! ! ! adminsetBlock(part); ! } ! ! selectPart('general_title'); ! ! // --> ! </script> \ No newline at end of file |