You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
(95) |
Apr
(270) |
May
(111) |
Jun
|
Jul
|
Aug
(64) |
Sep
(130) |
Oct
(319) |
Nov
(17) |
Dec
(191) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(53) |
Feb
|
Mar
|
Apr
|
May
(6) |
Jun
(387) |
Jul
(102) |
Aug
(247) |
Sep
(120) |
Oct
(1) |
Nov
(8) |
Dec
(21) |
| 2007 |
Jan
(38) |
Feb
(36) |
Mar
|
Apr
(32) |
May
(135) |
Jun
(523) |
Jul
(192) |
Aug
(103) |
Sep
(533) |
Oct
(77) |
Nov
(23) |
Dec
(203) |
| 2008 |
Jan
(312) |
Feb
(1193) |
Mar
(404) |
Apr
(67) |
May
(62) |
Jun
(497) |
Jul
(297) |
Aug
(110) |
Sep
(335) |
Oct
(256) |
Nov
(50) |
Dec
(118) |
| 2009 |
Jan
(67) |
Feb
(10) |
Mar
(1) |
Apr
(1) |
May
|
Jun
(10) |
Jul
(61) |
Aug
|
Sep
(16) |
Oct
(45) |
Nov
(12) |
Dec
(14) |
| 2010 |
Jan
(30) |
Feb
|
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
(7) |
Aug
(7) |
Sep
(5) |
Oct
(5) |
Nov
|
Dec
|
| 2011 |
Jan
(7) |
Feb
(3) |
Mar
(89) |
Apr
(11) |
May
(5) |
Jun
|
Jul
(8) |
Aug
(1) |
Sep
(2) |
Oct
|
Nov
(2) |
Dec
(89) |
| 2012 |
Jan
(7) |
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
(3) |
Oct
(42) |
Nov
(1) |
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
(19) |
Apr
(90) |
May
(38) |
Jun
(235) |
Jul
(38) |
Aug
(10) |
Sep
|
Oct
(29) |
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
(6) |
May
(52) |
Jun
|
Jul
(7) |
Aug
|
Sep
(17) |
Oct
|
Nov
|
Dec
|
|
From: OryNider <ory...@us...> - 2008-01-09 02:15:06
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv30350 Modified Files: mx_functions_core.php Log Message: Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** mx_functions_core.php 6 Jan 2008 22:28:57 -0000 1.55 --- mx_functions_core.php 9 Jan 2008 02:15:03 -0000 1.56 *************** *** 116,120 **** if (!function_exists('mx_message_die')) { ! die("This hosting or server is using a cache optimizer not compatible with phpBB and mxBB :("); } --- 116,120 ---- if (!function_exists('mx_message_die')) { ! //die("This hosting or server is using a cache optimizer not compatible with phpBB and mxBB :("); } |
|
From: OryNider <ory...@us...> - 2008-01-09 01:49:30
|
Update of /cvsroot/mxbb/core/modules/mx_coreblocks In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv19755 Modified Files: mx_online.php Log Message: phpBB3 backend mx_online colors Index: mx_online.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_coreblocks/mx_online.php,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** mx_online.php 17 Dec 2007 06:56:24 -0000 1.22 --- mx_online.php 9 Jan 2008 01:49:27 -0000 1.23 *************** *** 48,52 **** break; case 'phpbb3': ! $sql = "SELECT u.username, u.user_id, u.user_allow_viewonline, u.user_type, s.session_autologin, s.session_ip FROM ".USERS_TABLE." u, ".SESSIONS_TABLE." s WHERE u.user_id = s.session_user_id --- 48,52 ---- break; case 'phpbb3': ! $sql = "SELECT u.username, u.user_id, u.user_allow_viewonline, u.user_type, u.user_colour, s.session_autologin, s.session_ip FROM ".USERS_TABLE." u, ".SESSIONS_TABLE." s WHERE u.user_id = s.session_user_id *************** *** 76,90 **** { $style_color = ''; ! if ( $row['user_level'] == ADMIN ) { ! $row['username'] = '<b>' . $row['username'] . '</b>'; ! $style_color = 'style="color:#' . $theme['fontcolor3'] . '"'; } ! else if ( $row['user_level'] == MOD ) { ! $row['username'] = '<b>' . $row['username'] . '</b>'; ! $style_color = 'style="color:#' . $theme['fontcolor2'] . '"'; } - if ( $row['user_allow_viewonline'] || PORTAL_BACKEND == 'internal') { --- 76,96 ---- { $style_color = ''; ! if (PORTAL_BACKEND == 'phpbb3') { ! $style_color = ($row['user_colour']) ? ' style="color:#' . $row['user_colour'] . '" class="username-coloured"' : ''; } ! else { ! if ( $row['user_level'] == ADMIN ) ! { ! $row['username'] = '<b>' . $row['username'] . '</b>'; ! $style_color = 'style="color:#' . $theme['fontcolor3'] . '"'; ! } ! else if ( $row['user_level'] == MOD ) ! { ! $row['username'] = '<b>' . $row['username'] . '</b>'; ! $style_color = 'style="color:#' . $theme['fontcolor2'] . '"'; ! } } if ( $row['user_allow_viewonline'] || PORTAL_BACKEND == 'internal') { *************** *** 92,101 **** $logged_visible_online++; } ! else { $user_online_link = '<a href="' . mx_append_sid(PHPBB_URL."profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '"' . $style_color .'><i>' . $row['username'] . '</i></a>'; $logged_hidden_online++; } ! if ( $row['user_allow_viewonline'] || $mx_user->data['user_level'] == ADMIN ) { --- 98,111 ---- $logged_visible_online++; } ! else if (PORTAL_BACKEND == 'internal') { $user_online_link = '<a href="' . mx_append_sid(PHPBB_URL."profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '"' . $style_color .'><i>' . $row['username'] . '</i></a>'; $logged_hidden_online++; } ! else if (PORTAL_BACKEND == 'phpbb3') ! { ! $user_online_link = ($row['user_type'] != USER_IGNORE) ? mx_get_username_string('full', $row['user_id'], $row['username'], $row['user_colour']) : '<span' . $style_color . '>' . $row['username'] . '</span>'; ! $logged_hidden_online++; ! } if ( $row['user_allow_viewonline'] || $mx_user->data['user_level'] == ADMIN ) { |
|
From: OryNider <ory...@us...> - 2008-01-08 18:04:46
|
Update of /cvsroot/mxbb/core/templates/prosilver/images/admin_icons In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11632 Added Files: icon_delete.gif icon_down.gif icon_edit_page.gif icon_export.gif icon_list.gif icon_parameter_edit.gif icon_permissions.gif icon_preview.gif icon_sync.gif icon_up.gif icon_upgrade.gif Log Message: --- NEW FILE: icon_down.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_upgrade.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_list.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_parameter_edit.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_permissions.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_sync.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_delete.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_preview.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_export.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_up.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_edit_page.gif --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/mxbb/core/templates/prosilver/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11607 Added Files: admin_mx_meta.html mx_pagecp_admin_body.html styles_addnew_body.html words_edit_body.html words_list_body.html Log Message: --- NEW FILE: words_list_body.html --- <h1>{L_WORDS_TITLE}</h1> <p>{L_WORDS_TEXT}</p> <form method="post" action="{S_WORDS_ACTION}"> <p style="float:right">{S_HIDDEN_FIELDS} <input type="submit" name="add" value="{L_ADD_WORD}" class="button2" /> </p> <table cellspacing="1" cellpadding="4"> <thead> <tr> <th class="thCornerL">{L_WORD}</th> <th class="thTop">{L_REPLACEMENT}</th> <th class="thCornerR">{L_ACTION}</th> </tr> </thead> <tbody> <!-- BEGIN words --> <tr class="{words.ROW_CLASS}"> <td align="center">{words.WORD}</td> <td align="center">{words.REPLACEMENT}</td> <td> <a href="{words.U_WORD_EDIT}" title="{L_EDIT}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif"></a> <a href="{words.U_WORD_DELETE}" title="{L_DELETE}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif"></a> </td> </tr> <!-- END words --> </tbody> </table> </form> --- NEW FILE: mx_pagecp_admin_body.html --- <script type="text/javascript"> function menuCat(id, mode, visible) { this.cat_id = id; this.menu_mode = mode; this.status = visible != '' ? visible : 'none'; } var menuCats = new Array(); menuCats['adminPage_Template'] = new menuCat('Template', 'adminPage_', '{VISIBLE}'); <!-- BEGIN templates --> menuCats['adminTemplateEdit_{templates.TEMPLATE_ID}'] = new menuCat('{templates.TEMPLATE_ID}', 'adminTemplateEdit_', '{templates.VISIBLE}'); menuCats['adminTemplateDelete_{templates.TEMPLATE_ID}'] = new menuCat('{templates.TEMPLATE_ID}', 'adminTemplateDelete_', '{templates.VISIBLE_DELETE}'); <!-- BEGIN columnrow --> menuCats['adminTemplateColumnEdit_{templates.TEMPLATE_ID}_{templates.columnrow.COLUMN_ID}'] = new menuCat('{templates.TEMPLATE_ID}_{templates.columnrow.COLUMN_ID}', 'adminTemplateColumnEdit_', '{templates.columnrow.VISIBLE}'); menuCats['adminTemplateColumnDelete_{templates.TEMPLATE_ID}_{templates.columnrow.COLUMN_ID}'] = new menuCat('{templates.TEMPLATE_ID}_{templates.columnrow.COLUMN_ID}', 'adminTemplateColumnDelete_', '{templates.columnrow.VISIBLE_DELETE}'); <!-- END columnrow --> <!-- END templates --> <!-- BEGIN pages --> menuCats['adminPage_{pages.PAGE_ID}'] = new menuCat('{pages.PAGE_ID}', 'adminPage_', '{pages.VISIBLE}'); menuCats['adminPageDelete_{pages.PAGE_ID}'] = new menuCat('{pages.PAGE_ID}', 'adminPageDelete_', '{pages.VISIBLE_DELETE}'); menuCats['adminPageEdit_{pages.PAGE_ID}'] = new menuCat('{pages.PAGE_ID}', 'adminPageEdit_', '{pages.VISIBLE_EDIT}'); menuCats['adminPageSettings_{pages.PAGE_ID}'] = new menuCat('{pages.PAGE_ID}', 'adminPageSettings_', '{pages.VISIBLE_SETTINGS}'); menuCats['adminPagePrivate_{pages.PAGE_ID}'] = new menuCat('{pages.PAGE_ID}', 'adminPagePrivate_', '{pages.VISIBLE_PRIVATE}'); <!-- BEGIN columnrow --> menuCats['adminColumnEdit_{pages.PAGE_ID}_{pages.columnrow.COLUMN_ID}'] = new menuCat('{pages.PAGE_ID}_{pages.columnrow.COLUMN_ID}', 'adminColumnEdit_', '{pages.columnrow.VISIBLE}'); menuCats['adminColumnDelete_{pages.PAGE_ID}_{pages.columnrow.COLUMN_ID}'] = new menuCat('{pages.PAGE_ID}_{pages.columnrow.COLUMN_ID}', 'adminColumnDelete_', '{pages.columnrow.VISIBLE_DELETE}'); <!-- END columnrow --> <!-- END pages --> function getObj(obj) { return ( document.getElementById ? document.getElementById(obj) : ( document.all ? document.all[obj] : null ) ); } function displayObj(obj, status) { var x = getObj(obj); if( x && x.style ) x.style.display = status; } var queueInterval = 0; // milliseconds between queued steps. var execInterval = 0; var queuedSteps; var currentStep; function queueStep(o, s) { this.obj = o; this.status = s; } function execQueue() { if( currentStep < queuedSteps.length ) { var obj = queuedSteps[currentStep].obj; var status = queuedSteps[currentStep].status; displayObj(obj, status); if( menuCats[obj] ) menuCats[obj].status = status; currentStep++; setTimeout("execQueue();", execInterval); } else { execInterval = queueInterval; } } function onMenuCatClick(cat_id, type, init) { var currentCat, currentStatus; var imageSCR = type+'image_'+cat_id; var strSubmitContent = ''; parentPageMode = 'adminPage_'; parentEditMode = 'adminPageEdit_'; parentPrivateMode = 'adminPagePrivate_'; parentDeleteMode = 'adminPageDelete_'; parentSettingsMode = 'adminPageSettings_'; parentTemplateMode = 'adminTemplateEdit_'; parentPageCat = parentPageMode + cat_id; parentEditCat = parentEditMode + cat_id; parentPrivateCat = parentPrivateMode + cat_id; parentDeleteCat = parentDeleteMode + cat_id; parentSettingsCat = parentSettingsMode + cat_id; parentTemplateCat = parentTemplateMode + cat_id; currentCat = type + cat_id; currentStatus = menuCats[currentCat].status; queuedSteps = new Array(); cookieArray = new Array(); currentStep = 0; for( var forCat in menuCats ) { if( (init == 'true' && (menuCats[forCat].status == 'block') && menuCats[forCat].menu_mode == parentPageMode) || (init != 'true' && ( (currentCat == parentPageCat && menuCats[forCat].status == 'block' ) || (currentCat == parentEditCat && menuCats[forCat].menu_mode != parentPageMode && menuCats[forCat].status == 'block') || (currentCat == parentPrivateCat && menuCats[forCat].menu_mode != parentPageMode && menuCats[forCat].status == 'block') || (currentCat == parentSettingsCat && menuCats[forCat].menu_mode != parentPageMode && menuCats[forCat].status == 'block') || (currentCat == parentDeleteCat && menuCats[forCat].menu_mode != parentPageMode && menuCats[forCat].status == 'block') || (currentCat == parentTemplateCat && menuCats[forCat].menu_mode != parentPageMode && menuCats[forCat].status == 'block') || (currentCat != parentPageCat && forCat == currentCat && currentStatus == 'block') ))) { queuedSteps[currentStep++] = new queueStep(forCat, 'none'); menuCats[forCat].status = 'none'; forCatimage = menuCats[forCat].menu_mode+'image_'+menuCats[forCat].cat_id; if( document.images && document.images[forCatimage] ) { document.images[forCatimage].src = '{IMG_URL_EXPAND}'; } } } if( currentStatus == 'none' ) { if (menuCats[parentPageCat] && menuCats[forCat].menu_mode == parentPageMode) { alert(parentPageCat); if (menuCats[parentPageCat].status == 'none') { queuedSteps[currentStep++] = new queueStep(parentPageCat, 'block'); menuCats[parentPageCat].status = 'block'; forCatimage = menuCats[parentPageCat].menu_mode+'image_'+menuCats[parentPageCat].cat_id; if( document.images && document.images[forCatimage] ) { document.images[forCatimage].src = '{IMG_URL_CONTRACT}'; } } } queuedSteps[currentStep++] = new queueStep(currentCat, 'block'); menuCats[currentCat].status = 'block'; if (currentCat == parentPageCat) { var expdate = new Date(); // 72 Hours from now expdate.setTime(expdate.getTime() + (72 * 60 * 60 * 1000)); //setCookie('{COOKIE_NAME}_'+type+'page_id', cat_id, expdate, // ('{COOKIE_PATH}' == '') ? null : '{COOKIE_PATH}', // ('{COOKIE_DOMAIN}' == '') ? null : '{COOKIE_DOMAIN}', // ('{COOKIE_SECURE}' == '0') ? false : true); } if( document.images && document.images[imageSCR] ) { document.images[imageSCR].src = '{IMG_URL_CONTRACT}'; } } else { //delCookie('{COOKIE_NAME}_'+type+'page_id', // ('{COOKIE_PATH}' == '') ? null : '{COOKIE_PATH}', // ('{COOKIE_DOMAIN}' == '') ? null : '{COOKIE_DOMAIN}'); } for( var forCat in menuCats ) { if ( menuCats[forCat].status == 'block' ) { strSubmitContent += forCat + ','; } } // Remove trailing separator strSubmitContent = strSubmitContent.substr(0, strSubmitContent.length - 1); setCookie('{COOKIE_NAME}_admincp_pagestates', strSubmitContent, expdate, ('{COOKIE_PATH}' == '') ? null : '{COOKIE_PATH}', ('{COOKIE_DOMAIN}' == '') ? null : '{COOKIE_DOMAIN}', ('{COOKIE_SECURE}' == '0') ? false : true); currentStep = 0; setTimeout("execQueue();", execInterval); } function doOnLoadMenuACP() { var cat_id; if ( menuCats['adminPage_Template'].status == 'block' ) { menuCats['adminPage_Template'].status = 'none'; onMenuCatClick('Template', 'adminPage_', 'true'); } else if( getObj('adminPage_' + '{NAV_PAGE_ID}') ) { if ( '{NAV_PAGE_ID}' > 0 ) { cat_id = '{NAV_PAGE_ID}'; } else { cat_id = getCookie('{COOKIE_NAME}_adminPage_page_id'); } if( menuCats['adminPage_'+cat_id] ) { menuCats['adminPage_'+cat_id].status = 'none'; onMenuCatClick(cat_id, 'adminPage_', 'true'); } } if( oldOnLoadMenuACP ) { oldOnLoadMenuACP(); } } function checkForm() { formErrors = ''; var is_selected = false; if (document.forms['DYNAMIC_LIST'].function_id.selectedIndex < 0) { formErrors += "Select a function\r\n"; } if (document.forms['DYNAMIC_LIST'].block_id.selectedIndex < 0) { formErrors += "Select a block\r\n"; } if (document.forms['DYNAMIC_LIST'].id.checked) { is_selected = true; } else { for (i=0, n=document.forms['DYNAMIC_LIST'].id.length; i<n; i++) { if (document.forms['DYNAMIC_LIST'].id[i].checked || document.forms['DYNAMIC_LIST'].id.checked) { is_selected = true; continue; } } } if (!is_selected) { formErrors += "Select a page column\r\n"; } if (formErrors) { alert(formErrors); return false; } else { bbstyle(-1); //formObj.preview.disabled = true; //formObj.submit.disabled = true; return true; } } var oldOnLoadMenuACP = window.onload; // --> </script> <!-- BEGIN pages --> <!-- BEGIN has_columns --> <!-- dynamic_select --> <script type="text/javascript" src="../modules/mx_shared/lib/DynamicOptionList_comp.js"></script> <script type="text/javascript" id="DYNAMIC_LIST"> var makeModule = new DynamicOptionList("module_id","function_id","block_id"); {DYNAMIC_FUNCTION_SETUP} {DYNAMIC_BLOCK_SETUP} {DYNAMIC_DEFAULT_SETUP} </script> <!-- dynamic_select --> <!-- END has_columns --> <!-- END pages --> <script type="text/javascript"> function doOnLoadFunctions() { doOnLoadMenuACP(); <!-- BEGIN pages --> <!-- BEGIN is_page --> initDynamicOptionLists(); <!-- END is_page --> <!-- END pages --> } window.onload = doOnLoadFunctions; </script> <h1>{L_TITLE}</h1> <p>{L_EXPLAIN}</p> <div style="float:right;"> <form method="post" name="jumpbox" action="{S_ACTION}"> <fieldset> <legend>{L_QUICK_NAV}</legend> <p> <select name="page_id" class="forminput">{PAGE_SELECT_BOX}</select> <input type="submit" value="{S_SUBMIT}" class="button2" /> </p> </fieldset> </form> </div> <div style="clear:both"> {RESULT_MESSAGE} </div> <div id="tabs"> <ul> <!-- BEGIN pages --> <!-- BEGIN is_new --> <li id="adminPage_{pages.PAGE_ID}_tab"><img name="adminPage_image_{pages.PAGE_ID}" src="{IMG_URL_EXPAND}" border="0" align="absmiddle" style="display:none;"> <a href="javascript:onMenuCatClick('{pages.PAGE_ID}','adminPage_');setActiveTab();"><span>{L_TITLE_NEW_PAGE}</span></a> </li> <!-- END is_new --> <!-- BEGIN is_current --> <li id="adminPage_{pages.PAGE_ID}_tab"><img name="adminPage_image_{pages.PAGE_ID}" src="{IMG_URL_EXPAND}" border="0" align="absmiddle" style="display:none;"> <a href="javascript:onMenuCatClick('{pages.PAGE_ID}','adminPage_');setActiveTab();"><span>{L_PAGE_TITLE} - {pages.PAGE_TITLE}</span></a> </li> <!-- END is_current --> <!-- END pages --> <li id="adminPage_Template_tab"><img name="adminPage_image_Template" src="{IMG_URL}" border="0" align="absmiddle" style="display:none;"> <a href="javascript:onMenuCatClick('Template','adminPage_');setActiveTab();"><span>{L_TITLE_TEMPLATE}</span></a> </li> </ul> </div> <script type="text/javascript"> <!-- function setActiveTab() { <!-- BEGIN pages --> <!-- BEGIN is_new --> getObj( 'adminPage_{pages.PAGE_ID}_tab').className = menuCats['adminPage_{pages.PAGE_ID}'].status == 'block' ? 'activetab': ''; <!-- END is_new --> <!-- BEGIN is_current --> getObj( 'adminPage_{pages.PAGE_ID}_tab').className = menuCats['adminPage_{pages.PAGE_ID}'].status == 'block' ? 'activetab': ''; <!-- END is_current --> <!-- END pages --> getObj( 'adminPage_Template_tab').className = menuCats['adminPage_Template'].status == 'block' ? 'activetab': ''; } setActiveTab(); --> </script> <div class="panel bg3"> <span class="corners-top"><span></span></span> <div style="clear:both"></div> <div class="inner" style="padding:0.4em"> <!-- BEGIN no_pages --> <div class="inner">{nopages.NONE}</div> <!-- END no_pages --> <!-- BEGIN pages --> <div id="adminPage_{pages.PAGE_ID}" class="inner" style="display:{pages.VISIBLE};clear:both;"> <div style="float:right;height:40px;horizontal-align:center"> <!-- BEGIN is_page --> <a href="{pages.U_PREVIEW}" target="_blank" title="{L_PREVIEW}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_preview.gif" align="absmiddle" /></a> <a href="javascript:onMenuCatClick('{pages.PAGE_ID}','adminPageEdit_');" title="{L_EDIT}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif" align="absmiddle" /></a> <a href="javascript:onMenuCatClick('{pages.PAGE_ID}','adminPageSettings_');" title="{L_SETTING}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit_page.gif" align="absmiddle" /></a> <a href="javascript:onMenuCatClick('{pages.PAGE_ID}','adminPagePrivate_');" title="{L_PERMISSIONS}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_permissions.gif" align="absmiddle" /></a> <a href="javascript:onMenuCatClick('{pages.PAGE_ID}','adminPageDelete_');" title="{L_DELETE}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" align="absmiddle" /></a> <!-- END is_page --> </div> <div style="float:left;height:40px;horizontal-align:center"> {pages.PAGE_ICON} <strong>{pages.PAGE_TITLE}</strong> <span class="explain">{pages.PAGE_DESC}</span> </div> <!-- BEGIN reload --> <div style="clear:both;"> <a href="{pages.reload.U_PAGE_EDIT}">Reload nedded</a> </div> <!-- END reload --> <div style="clear:both;"></div> <!-- PAGE Delete --> <div id="adminPageDelete_{pages.PAGE_ID}" style="clear:both;padding-top:0.1em;display:{pages.VISIBLE_DELETE};"> <fieldset> <legend style="cursor:pointer;" onclick="onMenuCatClick('{pages.PAGE_ID}','adminPageDelete_');"> <img src="{IMG_URL_CONTRACT}" border="0" align="absmiddle" /> <img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" align="absmiddle" /> {L_DELETE} </legend> <p> {pages.MESSAGE_DELETE} </p> </fieldset> </div> <!-- PAGE Delete --> <!-- PAGE Private --> <div id="adminPagePrivate_{pages.PAGE_ID}" style="clear:both;padding-top:0.1em;display:{pages.VISIBLE_PRIVATE};"> <form action="{S_ACTION}" method="post"> <fieldset> <legend style="cursor:pointer;" onclick="onMenuCatClick('{pages.PAGE_ID}','adminPagePrivate_');"> <img src="{IMG_URL_CONTRACT}" border="0" align="absmiddle" /> {L_PERMISSIONS} </legend> <p> <table border="0"> <thead> <tr> <th width="50%" align="center" height="20" nowrap="nowrap"><b>{L_GROUPS}</b></th> <th width="25%" align="center" nowrap="nowrap"><b>{L_VIEW}</b></th> <th width="24%" align="center" nowrap="nowrap"><b>{L_IS_MODERATOR}</b></th> </tr> </thead> <tbody> <tr> <td align="center" colspan="3"> <div style="overflow:auto; overflow-y:scroll; height:200px;"> <table width="100%" cellpadding="0" cellspacing="0" border="0" align="center"> <tbody> <!-- BEGIN grouprow --> <tr> <td width="50%" class="{pages.grouprow.ROW_COLOR}" align="center">{pages.grouprow.GROUP_NAME}</td> <td width="25%" class="{pages.grouprow.ROW_COLOR}" align="center"> {pages.grouprow.VIEW_INPUT} </td> <td width="25%" class="{pages.grouprow.ROW_COLOR}" align="center"> <input name="moderator[]" type="checkbox" class="radio" {pages.grouprow.MODERATOR_CHECKED} value="{pages.grouprow.GROUP_ID}" /> </td> </tr> <!-- END grouprow --> </tbody> </table> </div> </td> </tr> </tbody> </table> <p align="center"> {pages.S_HIDDEN_PRIVATE_FIELDS} <input type="submit" name="submit" value="{pages.S_SUBMIT}" class="button2" /> </p> </fieldset> </form> </div> <!-- PAGE Private --> <!-- PAGE Edit --> <!-- BEGIN is_page --> <div id="adminPageEdit_{pages.PAGE_ID}" style="display:{pages.VISIBLE_EDIT};clear:both;padding-top:0.1em"> <!-- END is_page --> <form action="{S_ACTION}" method="post"> <fieldset> <legend style="cursor:pointer" onclick="onMenuCatClick('{pages.PAGE_ID}','adminPageEdit_');"> <img src="{IMG_URL_CONTRACT}" border="0" align="absmiddle" /> <img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif" align="absmiddle" /> {L_EDIT} </legend> <dl> <dt><label for="page_name">{L_PAGE_TITLE}</label></dt> <dd><input type="text" size="45" name="page_name" id="page_name" value="{pages.E_PAGE_TITLE}" /></dd> </dl> <dl> <dt><label for="page_desc">{L_PAGE_DESC}</label></dt> <dd><input type="text" size="45" name="page_desc" id="page_desc" value="{pages.E_PAGE_DESC}" /></dd> </dl> <dl> <dt><label for="page_parent">{L_PAGE_PARENT}</label></dt> <dd> <select name="page_parent" id="page_parent"> {pages.E_PAGE_PARENT} </select> </dd> </dl> <dl> <dt><label for="page_header">{L_PAGE_HEADER}</label></dt> <dd><input type="text" size="45" name="page_header" id="page_header" value="{pages.E_PAGE_HEADER}" class="post" /></dd> </dl> <dl> <dt><label for="page_footer">{L_PAGE_FOOTER}</label></dt> <dd><input type="text" size="45" name="page_footer" id="page_footer" value="{pages.E_PAGE_FOOTER}" class="post" /></dd> </dl> <dl> <dt><label for="style_select">{L_DEFAULT_STYLE}</label></dt> <dd>{pages.STYLE_SELECT}</dd> </dl> <dl> <dt><label for="AmxOrsA_{pages.PAGE_ID}">{L_OVERRIDE_STYLE}</label><br /> <span class="explain">{L_OVERRIDE_STYLE_EXPLAIN}</span></dt> <dd> <input type="radio" name="mx_override_user_style" id="AmxOrsA_{pages.PAGE_ID}" value="-1" class="radio" {pages.OVERRIDE_STYLE_DEFAULT} /> <label for="AmxOrsA_{pages.PAGE_ID}">{L_DEFAULT}</label> <input type="radio" name="mx_override_user_style" id="BmxOrsB_{pages.PAGE_ID}" value="1" class="radio" {pages.OVERRIDE_STYLE_YES} /> <label for="BmxOrsB_{pages.PAGE_ID}">{L_YES}</label> <input type="radio" name="mx_override_user_style" id="CmxOrsC_{pages.PAGE_ID}" value="0" class="radio" {pages.OVERRIDE_STYLE_NO} /> <label for="CmxOrsC_{pages.PAGE_ID}">{L_NO}</label> </dd> </dl> <dl> <dt><label for="page_main_layout">{L_PAGE_MAIN_LAYOUT}</label></dt> <dd><input type="text" size="45" name="page_main_layout" id="page_main_layout" value="{pages.E_PAGE_MAIN_LAYOUT}" class="post" /></dd> </dl> <dl> <dt><label for="navigation_block">{L_NAVIGATION_BLOCK}</label><br /><span class="explain">{L_NAVIGATION_BLOCK_EXPLAIN}</span></dt> <dd>{pages.E_NAVIGATION_BLOCK}</dd> </dl> <dl> <dt><label for="phpbb_stats_{pages.PAGE_ID}_0">{L_PHPBB_STATS}</label><br /><span class="explain">{L_PHPBB_STATS_EXPLAIN}</span></dt> <dd> <input type="radio" id="phpbb_stats_{pages.PAGE_ID}_0" name="phpbb_stats" value="-1" class="radio" {pages.S_PHPBB_STATS_DEFAULT} /> <label for="phpbb_stats_{pages.PAGE_ID}_0">{L_DEFAULT}</label> <input type="radio" id="phpbb_stats_{pages.PAGE_ID}_1" name="phpbb_stats" value="1" class="radio" {pages.S_PHPBB_STATS_YES} /> <label for="phpbb_stats_{pages.PAGE_ID}_1">{L_YES}</label> <input type="radio" id="phpbb_stats_{pages.PAGE_ID}_2" name="phpbb_stats" value="0" class="radio" {pages.S_PHPBB_STATS_NO} /> <label for="phpbb_stats_{pages.PAGE_ID}_2">{L_NO}</label> </dd> </dl> <dl> <dt><label for="ip_filter">{L_IP_FILTER}</label><br /><span class="explain">{L_IP_FILTER_EXPLAIN}</span></dt> <dd><textarea rows="5" cols="50" wrap="virtual" name="ip_filter" id="ip_filter" class="post" />{pages.IP_FILTER}</textarea></dd> </dl> <!-- BEGIN template --> <dl> <dt><label>{pages.L_CHOOSE_PAGE_TEMPLATE}</label></dt> <dd>{pages.S_TEMPLATE_LIST}</dd> </dl> <!-- END template --> <dl> <dt><label>{L_AUTH_TITLE}</label></dt> <dd> <table border="0"> <thead> <tr> <!-- BEGIN page_auth_titles --> <th>{pages.page_auth_titles.CELL_TITLE}</th> <!-- END page_auth_titles --> </tr> </thead> <tbody> <tr> <!-- BEGIN page_auth_data --> <td align="center">{pages.page_auth_data.S_AUTH_LEVELS_SELECT}</td> <!-- END page_auth_data --> </tr> </tbody> </table> </dd> </dl> <dl> <dt><label>{L_PAGE_ICON}</label></dt> <dd style="background-image: url('{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}theme/images/bg_header.gif');">{pages.S_PAGE_ICON}</dd> </dl> <dl> <dt><label for="page_alt_icon">{L_PAGE_ALT_ICON}</label></dt> <dd><input type="text" size="65" name="page_alt_icon" id="page_alt_icon" value="{pages.S_PAGE_ALT_ICON}" class="post" /></dd> </dl> <p align="center"> {pages.S_HIDDEN_FIELDS} <input type="submit" name="submit" value="{pages.S_SUBMIT}" class="button1" /> </p> </fieldset> </form> <!-- BEGIN is_page --> </div> <!-- END is_page --> <!-- PAGE Edit --> <!-- PAGE Setting --> <div id="adminPageSettings_{pages.PAGE_ID}" style="display:{pages.VISIBLE_SETTINGS};clear:both;margin:1.0em;padding:0.2em;"> <!-- BEGIN has_columns --> <!-- dynamic_select --> <div class="inner" style="margin:8px;"> <form name="DYNAMIC_LIST" method="post" action="{S_ACTION}" onsubmit="return checkForm(this)"> <div style="float:left;"> <strong>{L_MODULE}</strong><br/> <select name="module_id" MULTIPLE size=5> {DYNAMIC_MODULE_SELECT} </select> </div> <div style="float:left;margin-left:15px;"> <strong>{L_FUNCTION}</strong><br /> <select name="function_id" MULTIPLE size=5> <script LANGUAGE="JavaScript">makeModule.printOptions("function_id")</script> </select> </div> <div style="float:left;margin-left:15px;"> <strong>{L_BLOCK}</strong><br /> <select name="block_id" MULTIPLE size=5> <script LANGUAGE="JavaScript">makeModule.printOptions("block_id")</script> </select> </div> <div style="float:left;margin-left:15px;"> <strong>{L_COLUMN}</strong><br/> {RADIO_COLUMN_LIST} <br/> <input type="button" value="{L_RESET}" onClick="this.form.reset(); resetDynamicOptionLists(this.form);" class="button2"> <input type="submit" value="{L_CREATE_BLOCK} » {L_COLUMN}" class="button2" /> {S_HIDDEN_DYN_FIELDS} </div> </form> </div> <div style="clear:both;"> </div> <!-- dynamic_select --> <!-- END has_columns --> <!-- BEGIN columnrow --> <div style="clear:both;border-top:solid 1px #CCCCCC;padding:3px;"> <!-- BEGIN is_columnrow --> <div style="float:right;padding-bottom:0.2em;"> <a href="javascript:onMenuCatClick('{pages.PAGE_ID}_{pages.columnrow.COLUMN_ID}','adminColumnEdit_');" title="{L_EDIT}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif" align="absmiddle"></a> <a href="{pages.columnrow.U_COLUMN_MOVE_UP}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_up.gif" title="{pages.columnrow.L_MOVE_UP}" alt="{pages.columnrow.L_MOVE_UP}" align="absmiddle"/></a> <a href="{pages.columnrow.U_COLUMN_MOVE_DOWN}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_down.gif" title="{pages.columnrow.L_MOVE_DOWN}" alt="{pages.columnrow.L_MOVE_DOWN}" align="absmiddle"/></a> <a href="javascript:onMenuCatClick('{pages.PAGE_ID}_{pages.columnrow.COLUMN_ID}','adminColumnDelete_');" title="{pages.columnrow.L_DELETE}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" align="absmiddle"></a> </div> <!-- END is_columnrow --> <div style="float:left;padding:bottom:0.2em;"> <span style="cursor:pointer;" onclick="onMenuCatClick('{pages.PAGE_ID}_{pages.columnrow.COLUMN_ID}','adminColumnEdit_');"> <img src="{IMG_ICON_PAGE_COLUMN}" border="0" align="absmiddle"> </span> <a href="javascript:onMenuCatClick('{pages.PAGE_ID}_{pages.columnrow.COLUMN_ID}','adminColumnEdit_');"><b>{pages.columnrow.L_COLUMN}</b>: {pages.columnrow.COLUMN_TITLE}</a> </div> </div> <!-- PAGE COLUMN Delete --> <div id="adminColumnDelete_{pages.PAGE_ID}_{pages.columnrow.COLUMN_ID}" style="clear:both;padding-top:0.1em;display:{pages.columnrow.VISIBLE_DELETE};"> <fieldset> <legend>{pages.columnrow.L_DELETE}</legend> <p> {pages.columnrow.MESSAGE_DELETE} </p> </fieldset> </div> <!-- PAGE COLUMN Delete --> <!-- PAGE COLUMN Edit --> <div id="adminColumnEdit_{pages.PAGE_ID}_{pages.columnrow.COLUMN_ID}" style="clear:both;padding-top:0.1em;display:{pages.columnrow.VISIBLE};"> <form action="{S_ACTION}" method="post"> <fieldset> <legend style="cursor:pointer;" onclick="onMenuCatClick('{pages.PAGE_ID}_{pages.columnrow.COLUMN_ID}','adminColumnEdit_');"> <img src="{IMG_URL_CONTRACT}" border="0" align="absmiddle"> {pages.columnrow.L_TITLE} </legend> <dl> <dt><label for="column_title_{pages.PAGE_ID}_{pages.columnrow.COLUMN_ID}">{pages.columnrow.L_COLUMN}</label></dt> <dd><input type="text" size="25" name="column_title" id="column_title_{pages.PAGE_ID}_{pages.columnrow.COLUMN_ID}" value="{pages.columnrow.E_COLUMN_TITLE}" /></dd> </dl> <dl> <dt><label for="column_size_{pages.PAGE_ID}_{pages.columnrow.COLUMN_ID}">{pages.columnrow.L_COLUMN_SIZE}</label></dt> <dd><input type="text" maxlength="5" size="5" name="column_size" id="column_size_{pages.PAGE_ID}_{pages.columnrow.COLUMN_ID}" value="{pages.columnrow.E_COLUMN_SIZE}" /></dd> </dl> <p align="center"> {pages.columnrow.S_HIDDEN_FIELDS} <input type="submit" name="submit" value="{pages.columnrow.S_SUBMIT}" class="button1" /> </p> </fieldset> </form> </div> <!-- PAGE COLUMN Edit --> <!-- BEGIN blockrow --> <div style="clear:both;margin-left:16px;border-top:solid 1px #CCCCCC;"> <div style="float:right;margin-right:20px;"> <a href="{pages.columnrow.blockrow.U_BLOCK_SETTING}" title="{pages.columnrow.blockrow.L_SETTING}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif" align="absmiddle"></a> <a href="{pages.columnrow.blockrow.U_BLOCK_MOVE_UP}" title="{L_MOVE_UP}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_up.gif" align="absmiddle"></a> <a href="{pages.columnrow.blockrow.U_BLOCK_MOVE_DOWN}" title="{L_MOVE_DOWN}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_down.gif" align="absmiddle"></a> <a href="{pages.columnrow.blockrow.U_BLOCK_RESYNC}" title="{L_RESYNC}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_sync.gif" align="absmiddle"></a> <a href="{pages.columnrow.blockrow.U_BLOCK_DELETE}" title="{pages.columnrow.blockrow.L_REMOVE}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" align="absmiddle"></a> </div> <div style="float:left;padding-right:5px;"> <img src="{IMG_ICON_BLOCK}" border="0" align="absmiddle"> </div> <div style="float:left"> {pages.columnrow.blockrow.BLOCK_TITLE} <span class="explain">{pages.columnrow.blockrow.BLOCK_LAST_EDITED} {pages.columnrow.blockrow.BLOCK_DESC}</span> </div> </div> <!-- END blockrow --> <!-- BEGIN add_block --> <div style="clear:both;margin-left:16px;border-top:solid 1px #CCCCCC;"> <div style="float:left;margin:4px;"> <form method="post" action="{S_ACTION}"> {pages.columnrow.add_block.LIST_BLOCK} {pages.columnrow.add_block.S_HIDDEN_FIELDS} <input type="submit" class="button2" name="submit" value="{pages.columnrow.add_block.S_SUBMIT}" /> </form> </div> </div> <!-- END add_block --> <!-- END columnrow --> </div> <!-- PAGE Setting --> </div> <!-- END pages --> </div> <div id="adminPage_Template" style="display:{VISIBLE};clear:both;margin:1.0em;"> <!-- BEGIN notemplates --> <div>{nopages.NONE}</div> <!-- END notemplates --> <!-- BEGIN templates --> <div style="clear:both;border-top:solid 1px #CCCCCC;padding-top:3px;padding-bottom:3px;"> <div style="clear:both;"> <!-- BEGIN delete --> <div style="float:right;"> <a href="javascript:onMenuCatClick('{templates.TEMPLATE_ID}','adminTemplateDelete_');" title="{L_DELETE}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif"></a> </div> <!-- END delete --> <div style="float:left;"> <span style="cursor:pointer;" onclick="onMenuCatClick('{templates.TEMPLATE_ID}','adminTemplateEdit_');"> <img name="adminTemplateEdit_image_{templates.TEMPLATE_ID}" src="{templates.IMG_URL}" border="0" align="absmiddle"> {templates.TEMPLATE_ICON} </span> <b> <!-- BEGIN new_template --> <a href="javascript:onMenuCatClick('{templates.TEMPLATE_ID}','adminTemplateEdit_');">{templates.TEMPLATE_TITLE}</a> <!-- END new_template --> <!-- BEGIN current_template --> <a href="javascript:onMenuCatClick('{templates.TEMPLATE_ID}','adminTemplateEdit_');">{templates.TEMPLATE_TITLE}</a> <!-- END current_template --> </b> </div> </div> <!-- TEMPLATE Delete --> <div id="adminTemplateDelete_{templates.TEMPLATE_ID}" style="clear:both;padding-top:0.1em;display:{templates.VISIBLE_DELETE};"> <form> <fieldset> <legend>{L_DELETE}</legend> <p> {templates.MESSAGE_DELETE} </p> </fieldset> </form> </div> <!-- TEMPLATE Delete --> <div id="adminTemplateEdit_{templates.TEMPLATE_ID}" style="clear:both;padding-top:0.1em;display:{templates.VISIBLE};"> <!-- TEMPLATE Edit --> <form action="{S_ACTION}" method="post"> <fieldset> <legend>{L_EDIT}</legend> <dl> <dt><label for="template_name_{templates.TEMPLATE_ID}">{templates.L_TEMPLATE_NAME}</label></dt> <dd><input type="text" size="45" name="template_name" id="template_name_{templates.TEMPLATE_ID}" value="{templates.E_TEMPLATE_TITLE}" /></dd> </dl> <p align="center"> {templates.S_HIDDEN_FIELDS} <input type="submit" name="submit" value="{templates.S_SUBMIT}" class="button1" /> </p> </fieldset> </form> <!-- TEMPLATE Edit --> <!-- TEMPLATE Main Panel --> <div id="adminTemplateEdit_{templates.TEMPLATE_ID}" style="dis play:{templates.VISIBLE};clear:both;padding-top:0.1em;margin:5px;margin-top:0px;"> <!-- BEGIN columnrow --> <div style="clear:both;padding-top:5px;border-top:solid 1px #CCCCCC;margin-top:5px;"> <span style="float:right"> <a href="{templates.columnrow.U_COLUMN_MOVE_UP}" title="{templates.columnrow.L_MOVE_UP}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_up.gif" align="absmiddle"></a> <a href="{templates.columnrow.U_COLUMN_MOVE_DOWN}" title="{templates.columnrow.L_MOVE_DOWN}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_down.gif" align="absmiddle"></a> <a href="javascript:onMenuCatClick('{templates.TEMPLATE_ID}_{templates.columnrow.COLUMN_ID}','adminTemplateColumnDelete_');" title="{templates.columnrow.L_DELETE}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" align="absmiddle"></a> </span> <span style="float:left"> <span style="cursor:pointer;" onclick="onMenuCatClick('{templates.TEMPLATE_ID}_{templates.columnrow.COLUMN_ID}','adminTemplateColumnEdit_');"> <img name="adminTemplateColumnEdit_image_{templates.TEMPLATE_ID}_{templates.columnrow.COLUMN_ID}" src="{templates.columnrow.IMG_URL}" border="0" align="absmiddle"> <img src="{IMG_ICON_PAGE_COLUMN}" border="0" align="absmiddle"> </span> <a href="javascript:onMenuCatClick('{templates.TEMPLATE_ID}_{templates.columnrow.COLUMN_ID}','adminTemplateColumnEdit_');"> {templates.columnrow.L_COLUMN}: <span class="explain">{templates.columnrow.COLUMN_TITLE}</span></a> </span> </span> </div> <!-- TEMPLATE COLUMNROW Delete --> <div id="adminTemplateColumnDelete_{templates.TEMPLATE_ID}_{templates.columnrow.COLUMN_ID}" style="display:{templates.columnrow.VISIBLE_DELETE};clear:both;padding-top:0.1em;"> <form> <fieldset> <legend>{L_DELETE}</legend> <p>{templates.columnrow.MESSAGE_DELETE}</p> </fieldset> </form> </div> <!-- TEMPLATE COLUMNROW Delete --> <!-- TEMPLATE COLUMNROW Edit --> <div id="adminTemplateColumnEdit_{templates.TEMPLATE_ID}_{templates.columnrow.COLUMN_ID}" style="display:{templates.columnrow.VISIBLE};clear:both;padding-top:0.1em;"> <form action="{S_ACTION}" method="post"> <fieldset> <legend>{L_EDIT}</legend> <dl> <dt><label for="column_title_{templates.TEMPLATE_ID}_{templates.columnrow.COLUMN_ID}">{templates.columnrow.L_COLUMN_NAME}</label></dt> <dd><input type="text" size="25" name="column_title" id="column_title_{templates.TEMPLATE_ID}_{templates.columnrow.COLUMN_ID}" value="{templates.columnrow.E_COLUMN_TITLE}" /></dd> </dl> <dl> <dt><label for="column_size_{templates.TEMPLATE_ID}_{templates.columnrow.COLUMN_ID}">{templates.columnrow.L_COLUMN_SIZE}</label></dt> <dd><input type="text" maxlength="5" size="5" name="column_size" id="column_size_{templates.TEMPLATE_ID}_{templates.columnrow.COLUMN_ID}" value="{templates.columnrow.E_COLUMN_SIZE}" /></dd> </dl> <p align="center"> {templates.columnrow.S_HIDDEN_FIELDS} <input type="submit" name="submit" value="{templates.columnrow.S_SUBMIT}" class="button2" /> </p> </fieldset> </form> </div> <!-- TEMPLATE COLUMNROW Edit --> <!-- END columnrow --> </div> <!-- TEMPLATE Main Panel --> </div> </div> <div style="clear:both;padding-top:3px;"></div> <!-- END templates --> </div> <span class="corners-bottom"><span></span></span> </div> --- NEW FILE: admin_mx_meta.html --- <h1>{L_CONFIGURATION_TITLE}</h1> <p>{L_CONFIGURATION_EXPLAIN}</p> <form action="{S_CONFIG_ACTION}" method="post"> <fieldset> <legend>META TAGS</legend> <dl> <dt><label for="title">{L_TITLE}</label></dt> <dd><input type="text" name="title" id="title" value="{TITLE}" size="32" /></dd> </dl> <dl> <dt><label for="author">{L_AUTHOR}</label></dt> <dd><input type="text" name="author" id="author" value="{AUTHOR}" size="32" /></dd> </dl> <dl> <dt><label for="copyright">{L_COPYRIGHT}</label></dt> <dd><input type="text" name="copyright" id="copyright" value="{COPYRIGHT}" size="32" /></dd> </dl> <dl> <dt><label for="keywords">{L_KEYWORDS}</label><br /><span class="explain">{L_KEYWORDS_EXPLAIN}</span></dt> <dd><input type="text" name="keywords" id="keywords" value="{KEYWORDS}" size="65" /></dd> </dl> <dl> <dt><label for="description">{L_DESCRIPTION}</label></dt> <dd><input type="text" name="description" id="description" value="{DESCRIPTION}" size="65" /></dd> </dl> <dl> <dt><label for="">{L_LANGUAGE}</label></dt> <dd>{LANGUAGE}</dd> </dl> <dl> <dt><label for="">{L_RATING}</label></dt> <dd>{RATING}</dd> </dl> <dl> <dt><label for="">{L_ROBOTS}</label></dt> <dd>{ROBOTS_INDEX} {ROBOTS_FOLLOW}</dd> </dl> <dl> <dt><label for="pragma">{L_PRAGMA}</label></dt> <dd><input type="checkbox" name="pragma" id="pragma" value="1" class="radio" {PRAGMA}/> </dd> </dl> <dl> <dt><label for="icon">{L_BOOKMARK}</label><br /><span class="explain">{L_BOOKMARK_EXPLAIN}</span></dt> <dd><input type="text" name="icon" id="icon" value="{ICON}" size="34" /></dd> </dl> <dl> <dt><label for="header">{L_HTITLE}</label></dt> <dd><textarea name="header" id="header" rows="6" cols="40">{HEADER}</textarea> </dd> </dl> <p align="center"> {S_HIDDEN_FIELDS} <input type="submit" name="submit" value="{L_SUBMIT}" class="button1" /> <input type="reset" value="{L_RESET}" class="button2" /> </p> </fieldset> </form> <br clear="all" /> --- NEW FILE: words_edit_body.html --- <h1>{L_WORDS_TITLE}</h1> <p>{L_WORDS_TEXT}</p> <form method="post" action="{S_WORDS_ACTION}"> <fieldset> <legend>{L_WORD_CENSOR}</legend> <dl> <dt><label for="word">{L_WORD}</label></dt> <dd><input type="text" name="word" id="word" value="{WORD}" /></dd> </dl> <dl> <dt><label for="replacement">{L_REPLACEMENT}</label></dt> <dd><input class="post" type="text" name="replacement" id="replacement" value="{REPLACEMENT}" /></dd> </dl> <p align="center"> {S_HIDDEN_FIELDS} <input type="submit" name="save" value="{L_SUBMIT}" class="button1" /> <input type="reset" value="{L_RESET}" class="button2" /> </p> </fieldset> </form> --- NEW FILE: styles_addnew_body.html --- <h1>{L_STYLES_TITLE}</h1> <p>{L_STYLES_ADD_TEXT}</p> <table border="0"> <thead> <tr> <th>{L_STYLE}</th> <!--<th class="thTop">{L_TEMPLATE}</th>--> <th>{L_ACTION}</th> </tr> </thead> <tbody> <!-- BEGIN styles --> <tr class="{styles.ROW_CLASS}"> <td>{styles.STYLE_NAME}</td> <!--<td class="{styles.ROW_CLASS}">{styles.TEMPLATE_NAME}</td>--> <td ><a href="{styles.U_STYLES_INSTALL}">{L_INSTALL}</a></td> </tr> <!-- END styles --> <!-- BEGIN no_styles --> <tr> <td colspan="2">No styles to add</td> </tr> <!-- END no_styles --> </tbody> </table> |
|
From: OryNider <ory...@us...> - 2008-01-08 18:01:38
|
Update of /cvsroot/mxbb/core/templates/prosilver/images/admin_icons In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10643 Modified Files: contract.gif expand.gif icon_block.gif icon_edit.gif icon_function.gif icon_module.gif icon_page.gif icon_page_column.gif icon_parameter.gif nav_menu.gif script.gif Log Message: prosilver admin update Index: icon_page_column.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/admin_icons/icon_page_column.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsvDyUHy and /tmp/cvs378Ilo differ Index: icon_function.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/admin_icons/icon_function.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvshBgDAz and /tmp/cvsi1yHkp differ Index: icon_block.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/admin_icons/icon_block.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs4gjVI3 and /tmp/cvsLz9tnU differ Index: icon_edit.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/admin_icons/icon_edit.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsUmal86 and /tmp/cvstSvyYX differ Index: expand.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/admin_icons/expand.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsY6ym2e and /tmp/cvswHLIm6 differ Index: nav_menu.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/admin_icons/nav_menu.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsR16pyj and /tmp/cvsqmST2a differ Index: icon_module.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/admin_icons/icon_module.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsCCH1Fr and /tmp/cvsUanxpj differ Index: script.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/admin_icons/script.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs9ncXPw and /tmp/cvsCFTROo differ Index: contract.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/admin_icons/contract.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsejdyAF and /tmp/cvsCIVcMx differ Index: icon_parameter.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/admin_icons/icon_parameter.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs9Uw3FK and /tmp/cvs2Gbf2C differ Index: icon_page.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/admin_icons/icon_page.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvss1Sk4N and /tmp/cvsvuEaCG differ |
|
From: OryNider <ory...@us...> - 2008-01-08 18:01:28
|
Update of /cvsroot/mxbb/core/templates/prosilver/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10618 Modified Files: admin_mx_portal.html index_navigate.html mx_blockcp_admin_body.html mx_core_parameters.html mx_module_admin_body.html mx_modulecp_admin_body.html page_footer.html Log Message: prosilver admin update Index: page_footer.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/admin/page_footer.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** page_footer.html 20 Dec 2007 13:11:35 -0000 1.3 --- page_footer.html 8 Jan 2008 18:01:21 -0000 1.4 *************** *** 1,3 **** ! </div> </div> <span class="corners-bottom"><span></span></span> --- 1,3 ---- ! </div> </div> <span class="corners-bottom"><span></span></span> *************** *** 5,9 **** </div> </div> ! <div class="copyright">{POWERED_BY} <a href="http://www.mxbb.net/" target="_mx-system" class="copyright">mxBB Portal</a> {MX_VERSION} © 2001-2008 & <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> {PHPBB_VERSION} © 2000, 2002, 2005, 2007 phpBB Group | <a href="{MXBB_EXTRA_URL}" target="_phpbb" class="copyright">{MXBB_EXTRA}</a> <!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF --> <!-- IF DEBUG_OUTPUT --><br />{DEBUG_OUTPUT}<!-- ENDIF --> --- 5,9 ---- </div> </div> ! <div id="page-footer">{POWERED_BY} <a href="http://www.mxbb.net/" target="_mx-system" class="copyright">mxBB Portal</a> {MX_VERSION} © 2001-2008 & <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> {PHPBB_VERSION} © 2000, 2002, 2005, 2007 phpBB Group | <a href="{MXBB_EXTRA_URL}" target="_phpbb" class="copyright">{MXBB_EXTRA}</a> <!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF --> <!-- IF DEBUG_OUTPUT --><br />{DEBUG_OUTPUT}<!-- ENDIF --> *************** *** 13,17 **** </div> </div> - </div> </body> </html> \ No newline at end of file --- 13,16 ---- Index: mx_module_admin_body.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/admin/mx_module_admin_body.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** mx_module_admin_body.html 23 Dec 2007 00:12:17 -0000 1.2 --- mx_module_admin_body.html 8 Jan 2008 18:01:21 -0000 1.3 *************** *** 194,210 **** <p>{L_EXPLAIN}</p> ! <div style="display:block"> ! <div style="float:right"> ! <form method="post" name="jumpbox" action="{S_ACTION}"> ! <fieldset> ! <legend>{L_QUICK_NAV}</legend> ! <p> ! {MODULE_SELECT_BOX} ! <input type="submit" value="{S_SUBMIT}" class="lbutton2" /> ! </p> ! </fieldset> ! </form> ! </div> ! <div style="float:left"> <form action="{S_ACTION}" method="post"> <fieldset> --- 194,199 ---- <p>{L_EXPLAIN}</p> ! <div style="display:block;"> ! <div style="float:left;display:block;"> <form action="{S_ACTION}" method="post"> <fieldset> *************** *** 218,232 **** </form> </div> </div> ! <h2 style="clear:both">{L_TITLE}</h2> ! <div>{RESULT_MESSAGE}</div> ! <p></p> <div class="panel"> <span class="corners-top"><span></span></span> <div class="acp"> <div class="inner bg3" style="margin:1.0em;"> <!-- BEGIN module --> ! <div style="display:block;border-top:solid 1px #CCCCCC;clear:both;"> ! <div style="display:block;clear:both;"> <div style="float:left;width:40%;margin-top:0.3em;"> <div style="float:left"> --- 207,231 ---- </form> </div> + <div style="float:right;"> + <form method="post" name="jumpbox" action="{S_ACTION}"> + <fieldset style="white-space:nowrap;"> + <legend>{L_QUICK_NAV}</legend> + <p> + {MODULE_SELECT_BOX} + <input type="submit" value="{S_SUBMIT}" class="button2" /> + </p> + </fieldset> + </form> + </div> </div> ! <p style="clear:both"></p> <div class="panel"> <span class="corners-top"><span></span></span> <div class="acp"> <div class="inner bg3" style="margin:1.0em;"> + <div>{RESULT_MESSAGE}</div> <!-- BEGIN module --> ! <div style="display:block;border-top:solid 1px #CCCCCC;clear:both;margin-top:0.1em;"> ! <div style="display:block;clear:both;margin-top:2px;"> <div style="float:left;width:40%;margin-top:0.3em;"> <div style="float:left"> *************** *** 235,241 **** </div> <div style="float:left;margin-left:6px;"> ! <span style="cursor:pointer" onclick="onMenuCatClick('{module.MODULE_ID}','adminModule_');"> ! {module.MODULE_TITLE} ! </span><br/> <span class="explain">{module.MODULE_DESCRIPTION}</span> <i>{module.MODULE_VERSION}</i> --- 234,238 ---- </div> <div style="float:left;margin-left:6px;"> ! <a href="javascript:onMenuCatClick('{module.MODULE_ID}','adminModule_');">{module.MODULE_TITLE}</a><br/> <span class="explain">{module.MODULE_DESCRIPTION}</span> <i>{module.MODULE_VERSION}</i> *************** *** 243,276 **** </div> <div style="float:right;width:50%;margin-top:0.3em;text-align:right;"> - <span style="width:15%;"> <!-- BEGIN settings --> ! <img src="{IMG_URL_EXPAND}" border="0" align="middle"> <a href="{module.U_MODULE}">{L_SETTING}</a> ! <!-- END settings --> </span> ! <span style="width:15%;"> <!-- BEGIN settings --> ! <span style="cursor:pointer;" onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleUpgrade_');"> ! <img name="adminModuleUpgrade_image_{module.MODULE_ID}" src="{module.IMG_URL_UPGRADE}" border="0" align="middle"> {L_UPGRADE_PACK} </span> <!-- END settings --> - </span> - <span style="width:15%;"> <!-- BEGIN settings --> ! <span style="cursor:pointer;" onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleExport_');"> ! <img name="adminModuleExport_image_{module.MODULE_ID}" src="{module.IMG_URL_EXPORT}" border="0" align="middle"> {L_EXPORT_PACK} </span> <!-- END settings --> - </span> - <span style="width:15%;"> <!-- BEGIN settings --> ! <span style="cursor:pointer" onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleDelete_');"> ! <img name="adminModuleDelete_image_{module.MODULE_ID}" src="{module.IMG_URL_DELETE}" border="0" align="middle"> {L_UNINSTALL} </span> <!-- END settings --> - </span> </div> </div> <!-- MODUL Delete --> ! <div id="adminModuleDelete_{module.MODULE_ID}" style="display:{module.VISIBLE_DELETE};clear:both;padding-top:0.1em;"> <fieldset> <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleDelete_');"> --- 240,281 ---- </div> <div style="float:right;width:50%;margin-top:0.3em;text-align:right;"> <!-- BEGIN settings --> ! <span style="display:none"> ! <img src="{IMG_URL_EXPAND}" border="0" align="middle"> ! <a href="{module.U_MODULE}">{L_SETTING}</a> </span> ! <a href="{module.U_MODULE}" title="{L_SETTINGS}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif" align="absmiddle"></a> ! <!-- END settings --> <!-- BEGIN settings --> ! <span style="display:none"> ! <span style="cursor:pointer;" onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleUpgrade_');"> ! <img name="adminModuleUpgrade_image_{module.MODULE_ID}" src="{module.IMG_URL_UPGRADE}" border="0" align="middle"> ! </span> ! <a href="javascript:onMenuCatClick('{module.MODULE_ID}','adminModuleUpgrade_');">{L_UPGRADE_PACK}</a> </span> + <a href="javascript:onMenuCatClick('{module.MODULE_ID}','adminModuleUpgrade_');" title="{L_UPGRADE_PACK}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_upgrade.gif" align="absmiddle"></a> <!-- END settings --> <!-- BEGIN settings --> ! <span style="display:none"> ! <span style="cursor:pointer;" onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleExport_');"> ! <img name="adminModuleExport_image_{module.MODULE_ID}" src="{module.IMG_URL_EXPORT}" border="0" align="middle"> ! </span> ! <a href="javascript:onMenuCatClick('{module.MODULE_ID}','adminModuleExport_');">{L_EXPORT_PACK}</a> </span> + <a href="javascript:onMenuCatClick('{module.MODULE_ID}','adminModuleExport_');" title="{L_EXPORT_PACK}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_export.gif" align="absmiddle"></a> <!-- END settings --> <!-- BEGIN settings --> ! <span style="display:none"> ! <span style="cursor:pointer" onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleDelete_');"> ! <img name="adminModuleDelete_image_{module.MODULE_ID}" src="{module.IMG_URL_DELETE}" border="0" align="middle"> ! </span> ! <a href="javascript:onMenuCatClick('{module.MODULE_ID}','adminModuleDelete_');">{L_UNINSTALL}</a> </span> + <a href="javascript:onMenuCatClick('{module.MODULE_ID}','adminModuleDelete_');" title="{L_UNINSTALL}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" align="absmiddle"></a> <!-- END settings --> </div> </div> <!-- MODUL Delete --> ! <div id="adminModuleDelete_{module.MODULE_ID}" style="clear:both;padding-top:1.0em;display:{module.VISIBLE_DELETE};"> <fieldset> <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleDelete_');"> *************** *** 283,287 **** </div> <!-- MODUL Export --> ! <div id="adminModuleExport_{module.MODULE_ID}" style="display:{module.VISIBLE_EXPORT};clear:both;padding-top:0.1em;"> <fieldset> <legend style="cursor:pointer" onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleExport_');"> --- 288,292 ---- </div> <!-- MODUL Export --> ! <div id="adminModuleExport_{module.MODULE_ID}" style="clear:both;padding-top:1.0em;display:{module.VISIBLE_EXPORT};"> <fieldset> <legend style="cursor:pointer" onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleExport_');"> *************** *** 294,298 **** </div> <!-- MODUL Update --> ! <div id="adminModuleUpgrade_{module.MODULE_ID}" style="display:{module.VISIBLE_UPGRADE};clear:both;padding-top:0.1em;"> <fieldset> <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleUpgrade_');"> --- 299,303 ---- </div> <!-- MODUL Update --> ! <div id="adminModuleUpgrade_{module.MODULE_ID}" style="clear:both;padding:1.0em;display:{module.VISIBLE_UPGRADE};"> <fieldset> <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleUpgrade_');"> *************** *** 305,335 **** </div> <!-- MODUL Settings --> ! <div id="adminModule_{module.MODULE_ID}" style="display:{module.VISIBLE};clear:both;padding-top:0.1em;"> <form action="{S_ACTION}" onsubmit="return checkForm(this)" name="post" method="post"> <fieldset> <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.MODULE_ID}','adminModule_');"> <img src="{IMG_URL_CONTRACT}" border="0" align="middle"> {module.L_TITLE} ! </legend> ! <dl> ! <dt>{L_MODULE_NAME}</dt> ! <dd><input type="text" size="50" name="module_name" value="{module.E_MODULE_NAME}" /></dd> ! </dl> <dl> ! <dt>{L_MODULE_DESC}</dt> ! <dd><input type="text" size="50" name="module_desc" value="{module.E_MODULE_DESC}" /></dd> ! </dl> <dl> ! <dt>{L_MODULE_PATH}</dt> ! <dd><input type="text" size="50" name="module_path" value="{module.E_MODULE_PATH}" /></dd> ! </dl> <dl> ! <dt>{L_MODULE_INCLUDE_ADMIN}</dt> ! <dd><input type="checkbox" size="45" name="module_include_admin" value="1" {module.E_MODULE_INCLUDE_CHECK_OPT}/></dd> ! </dl> <dl> ! <dt></dt> ! <dd>{module.S_HIDDEN_FIELDS} ! <input type="submit" name="submit" value="{module.S_SUBMIT}" class="button1" /></dd> ! </dl> </fieldset> </form> --- 310,338 ---- </div> <!-- MODUL Settings --> ! <div id="adminModule_{module.MODULE_ID}" style="clear:both;padding:1.0em;padding-top:0.2em;display:{module.VISIBLE};"> <form action="{S_ACTION}" onsubmit="return checkForm(this)" name="post" method="post"> <fieldset> <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.MODULE_ID}','adminModule_');"> <img src="{IMG_URL_CONTRACT}" border="0" align="middle"> {module.L_TITLE} ! </legend> <dl> ! <dt><label for="module_name_{module.MODULE_ID}">{L_MODULE_NAME}</label></dt> ! <dd><input type="text" size="50" name="module_name" id="module_name_{module.MODULE_ID}" value="{module.E_MODULE_NAME}" /></dd> ! </dl> <dl> ! <dt><label for="module_desc_{module.MODULE_ID}">{L_MODULE_DESC}</label></dt> ! <dd><input type="text" size="50" name="module_desc" id="module_desc_{module.MODULE_ID}" value="{module.E_MODULE_DESC}" /></dd> ! </dl> <dl> ! <dt><label for="module_path_{module.MODULE_ID}">{L_MODULE_PATH}</label></dt> ! <dd><input type="text" size="50" name="module_path" id="module_path_{module.MODULE_ID}" value="{module.E_MODULE_PATH}" /></dd> ! </dl> <dl> ! <dt><label for="module_include_admin_{module.MODULE_ID}">{L_MODULE_INCLUDE_ADMIN}</label></dt> ! <dd><input type="checkbox" name="module_include_admin" id="module_include_admin_{module.MODULE_ID}" value="1" {module.E_MODULE_INCLUDE_CHECK_OPT} /></dd> ! </dl> ! <p align="center">{module.S_HIDDEN_FIELDS} ! <input type="submit" name="submit" value="{module.S_SUBMIT}" class="button1" /> ! </p> </fieldset> </form> Index: index_navigate.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/admin/index_navigate.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** index_navigate.html 22 Dec 2007 03:32:44 -0000 1.2 --- index_navigate.html 8 Jan 2008 18:01:21 -0000 1.3 *************** *** 210,214 **** menuCats['menuphpBB_'+cat_id].status = 'none'; } ! } if( oldOnLoadMenuACP ) --- 210,214 ---- menuCats['menuphpBB_'+cat_id].status = 'none'; } ! } if( oldOnLoadMenuACP ) *************** *** 220,226 **** --- 220,271 ---- window.onload = doOnLoadMenuACP; + function setActiveItem( obj){ + fntW = 'normal'; + bckg = ''; + getObj('admin_0_0').style.fontWeight = fntW; + getObj('admin_0_1').style.fontWeight = fntW; + getObj('admin_0_2').style.fontWeight = fntW; + getObj('admin_0_3').style.fontWeight = fntW; + getObj('admin_0_4').style.fontWeight = fntW; + getObj('admin_0_0').style.background = bckg; + getObj('admin_0_1').style.background = bckg; + getObj('admin_0_2').style.background = bckg; + getObj('admin_0_3').style.background = bckg; + getObj('admin_0_4').style.background = bckg; + <!-- BEGIN module_portal --> + <!-- BEGIN catrow --> + <!-- BEGIN modulerow --> + getObj('menuPortal_{module_portal.catrow.MENU_CAT_ID}_{module_portal.catrow.modulerow.ROW_COUNT}').style.fontWeight = fntW; + getObj('menuPortal_{module_portal.catrow.MENU_CAT_ID}_{module_portal.catrow.modulerow.ROW_COUNT}').style.background = bckg; + <!-- END modulerow --> + <!-- END catrow --> + <!-- END module_portal --> + <!-- BEGIN module_mx --> + <!-- BEGIN catrow --> + <!-- BEGIN modulerow --> + getObj('menumx_{module_mx.catrow.MENU_CAT_ID}_{module_mx.catrow.modulerow.ROW_COUNT}').style.fontWeight = fntW; + getObj('menumx_{module_mx.catrow.MENU_CAT_ID}_{module_mx.catrow.modulerow.ROW_COUNT}').style.background = bckg; + <!-- END modulerow --> + <!-- END catrow --> + <!-- END module_mx --> + <!-- BEGIN module_phpbb --> + <!-- BEGIN catrow --> + <!-- BEGIN modulerow --> + getObj('menubb_{module_phpbb.catrow.MENU_CAT_ID}_{module_phpbb.catrow.modulerow.ROW_COUNT}').style.fontWeight = fntW; + getObj('menubb_{module_phpbb.catrow.MENU_CAT_ID}_{module_phpbb.catrow.modulerow.ROW_COUNT}').style.background = bckg; + <!-- END modulerow --> + <!-- END catrow --> + <!-- END module_phpbb --> + obj.style.fontWeight = 'bold'; + obj.style.background = "url('{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}theme/images/arrow_right.gif') no-repeat 0px 7px;"; + return true; + } + // --> </script> <style type="text/css"> + #menu ul li, #menu ul li a { + display: block; + } #menu ul li.menuheader { font-weight: bold; *************** *** 233,246 **** display: block; } </style> ! <a href="{U_INDEX}" target="_parent"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}admin/images/mxbb_logo.gif" alt="" /></a> ! <div id="menu"> <ul> <li class="header"><div>{L_ADMIN}<div></li> ! <li><a href="{U_ADMIN_INDEX}" target="main"><span>{L_ADMIN_INDEX}</span></a></li> ! <li><a href="{U_PORTAL_INDEX}" target="_parent"><span>{L_PORTAL_INDEX}</span></a></li> ! <li><a href="{U_FORUM_INDEX}" target="_parent"><span>{L_FORUM_INDEX}</span></a></li> ! <li><a href="{U_PORTAL_INDEX}" target="main"><span>{L_PREVIEW_PORTAL}</span></a></li> ! <li><a href="{U_FORUM_INDEX}" target="main"><span>{L_PREVIEW_FORUM}</span></a></li> </ul> --- 278,296 ---- display: block; } + .activeItem { + font-weight: bold; + color: #000000; + padding-left: 4px; + } </style> ! <img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}admin/images/mxbb_logo.gif" alt="" /> ! <div id="menu" style=""> <ul> <li class="header"><div>{L_ADMIN}<div></li> ! <li><a href="{U_ADMIN_INDEX}" target="main"><span id="admin_0_0" onclick="setActiveItem(this)">{L_ADMIN_INDEX}</span></a></li> ! <li><a href="{U_PORTAL_INDEX}" target="_parent"><span id="admin_0_1" onclick="setActiveItem(this)">{L_PORTAL_INDEX}</span></a></li> ! <li><a href="{U_FORUM_INDEX}" target="_parent"><span id="admin_0_2" onclick="setActiveItem(this)">{L_FORUM_INDEX}</span></a></li> ! <li><a href="{U_PORTAL_INDEX}" target="main"><span id="admin_0_3" onclick="setActiveItem(this)">{L_PREVIEW_PORTAL}</span></a></li> ! <li><a href="{U_FORUM_INDEX}" target="main"><span id="admin_0_4" onclick="setActiveItem(this)">{L_PREVIEW_FORUM}</span></a></li> </ul> *************** *** 251,259 **** <!-- BEGIN catrow --> <ul> ! <li class="header"><div onclick="onMenuCatClick('{module_portal.catrow.MENU_CAT_ID}','menuPortal_');">{module_portal.catrow.ADMIN_CATEGORY}</div></li> </ul> <ul id="menuPortal_{module_portal.catrow.MENU_CAT_ID}" style="display:none;"> <!-- BEGIN modulerow --> ! <li><a href="{module_portal.catrow.modulerow.U_ADMIN_MODULE}" target="main" class="genmed"><span>{module_portal.catrow.modulerow.ADMIN_MODULE}</span></a></li> <!-- END modulerow --> </ul> --- 301,309 ---- <!-- BEGIN catrow --> <ul> ! <li class="header"><div style="cursor:pointer" onclick="onMenuCatClick('{module_portal.catrow.MENU_CAT_ID}','menuPortal_');">{module_portal.catrow.ADMIN_CATEGORY}</div></li> </ul> <ul id="menuPortal_{module_portal.catrow.MENU_CAT_ID}" style="display:none;"> <!-- BEGIN modulerow --> ! <li><a href="{module_portal.catrow.modulerow.U_ADMIN_MODULE}" target="main"><span id="menuPortal_{module_portal.catrow.MENU_CAT_ID}_{module_portal.catrow.modulerow.ROW_COUNT}" onclick="setActiveItem(this)">{module_portal.catrow.modulerow.ADMIN_MODULE}</span></a></li> <!-- END modulerow --> </ul> *************** *** 267,275 **** <!-- BEGIN catrow --> <ul> ! <li class="header"><div onclick="onMenuCatClick('{module_mx.catrow.MENU_CAT_ID}', 'menuMX_');">{module_mx.catrow.ADMIN_CATEGORY}</div></li> </ul> <ul id="menuMX_{module_mx.catrow.MENU_CAT_ID}" style="display:none;"> <!-- BEGIN modulerow --> ! <li><a href="{module_mx.catrow.modulerow.U_ADMIN_MODULE}" target="main"><span>{module_mx.catrow.modulerow.ADMIN_MODULE}</span></a></li> <!-- END modulerow --> </ul> --- 317,326 ---- <!-- BEGIN catrow --> <ul> ! <li class="header"><div style="cursor:pointer" onclick="onMenuCatClick('{module_mx.catrow.MENU_CAT_ID}', 'menuMX_');">{module_mx.catrow.ADMIN_CATEGORY}</div></li> </ul> <ul id="menuMX_{module_mx.catrow.MENU_CAT_ID}" style="display:none;"> <!-- BEGIN modulerow --> ! <li> ! <a href="{module_mx.catrow.modulerow.U_ADMIN_MODULE}" target="main"><span id="menumx_{module_mx.catrow.MENU_CAT_ID}_{module_mx.catrow.modulerow.ROW_COUNT}" onclick="setActiveItem(this)">{module_mx.catrow.modulerow.ADMIN_MODULE}</span></a></li> <!-- END modulerow --> </ul> *************** *** 283,291 **** <!-- BEGIN catrow --> <ul> ! <li class="header"><div onclick="onMenuCatClick('{module_phpbb.catrow.MENU_CAT_ID}', 'menuphpBB_');">{module_phpbb.catrow.ADMIN_CATEGORY}</div></li> </ul> <ul id="menuphpBB_{module_phpbb.catrow.MENU_CAT_ID}" style="display:none;"> <!-- BEGIN modulerow --> ! <li><a href="{module_phpbb.catrow.modulerow.U_ADMIN_MODULE}" target="main"><span>{module_phpbb.catrow.modulerow.ADMIN_MODULE}</span></a></li> <!-- END modulerow --> </ul> --- 334,342 ---- <!-- BEGIN catrow --> <ul> ! <li class="header"><div style="cursor:pointer" onclick="onMenuCatClick('{module_phpbb.catrow.MENU_CAT_ID}', 'menuphpBB_');">{module_phpbb.catrow.ADMIN_CATEGORY}</div></li> </ul> <ul id="menuphpBB_{module_phpbb.catrow.MENU_CAT_ID}" style="display:none;"> <!-- BEGIN modulerow --> ! <li><a href="{module_phpbb.catrow.modulerow.U_ADMIN_MODULE}" target="main"><span id="menubb_{module_phpbb.catrow.MENU_CAT_ID}_{module_phpbb.catrow.modulerow.ROW_COUNT}" onclick="setActiveItem(this)">{module_phpbb.catrow.modulerow.ADMIN_MODULE}</span></a></li> <!-- END modulerow --> </ul> *************** *** 294,295 **** --- 345,349 ---- </ul> </div> + <script type="text/javascript"> + setActiveItem(getObj('admin_0_0')); + </script> \ No newline at end of file Index: mx_modulecp_admin_body.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/admin/mx_modulecp_admin_body.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** mx_modulecp_admin_body.html 20 Dec 2007 13:11:36 -0000 1.1 --- mx_modulecp_admin_body.html 8 Jan 2008 18:01:21 -0000 1.2 *************** *** 244,288 **** <h1>{L_TITLE}</h1> - <p>{L_EXPLAIN}</p> - <div class="inner"> <form action="{S_ACTION}" method="post" name="jumpbox"> ! <div style="float:right;margin-left:10px;"> ! <fieldset> ! <legend>{L_QUICK_NAV}</legend> ! <p> ! {MODULE_SELECT_BOX} ! <input type="submit" value="{S_SUBMIT}" class="button2" /> ! </p> ! </fieldset> ! </div> ! <div style="float:left;display:block;"> ! <fieldset> ! <legend>{L_INCLUDE_BLOCK}</legend> ! <p> ! {L_INCLUDE_BLOCK_QUICKEDIT} ! <input type="radio" name="include_block_quickedit" value="1" {S_INCLUDE_BLOCK_QUICKEDIT_YES} /> {L_YES} ! <input type="radio" name="include_block_quickedit" value="0" {S_INCLUDE_BLOCK_QUICKEDIT_NO} /> {L_NO} ! {L_INCLUDE_BLOCK_PRIVATE} ! <input type="radio" name="include_block_private" value="1" {S_INCLUDE_BLOCK_PRIVATE_YES} /> {L_YES} ! <input type="radio" name="include_block_private" value="0" {S_INCLUDE_BLOCK_PRIVATE_NO} /> {L_NO} ! <span style="margin-left:10px"> <input type="submit" value="{S_SUBMIT}" class="button2" /> ! </span> ! </p> ! </fieldset> ! </div> </form> </div> ! <br clear="all" /> ! <div id="admincp"> ! <h2>{L_TITLE}</h2> ! <!-- BEGIN nomodule --> <div class="rules">{nomodule.NONE}</div> <!-- END nomodule --> ! <p></p> <div class="panel"> <span class="corners-top"><span></span></span> --- 244,295 ---- <h1>{L_TITLE}</h1> <p>{L_EXPLAIN}</p> <div class="inner"> <form action="{S_ACTION}" method="post" name="jumpbox"> ! <div style="float:left;width:40%;"> ! <fieldset> ! <legend>{L_INCLUDE_BLOCK}</legend> ! <div style="float:right;margin-left:10px;width:20%;text-align:right;"><br /> <input type="submit" value="{S_SUBMIT}" class="button2" /> ! </div> ! <div style="clear:left;width:79%;float:left;white-space:nowrap;"> ! <dl> ! <dt style="width:60%;"><label for="include_block_quickedit_1">{L_INCLUDE_BLOCK_QUICKEDIT}</label></dt> ! <dd style="border:none;padding-right:0px;"> ! <input type="radio" name="include_block_quickedit" id="include_block_quickedit_1" value="1" class="radio" {S_INCLUDE_BLOCK_QUICKEDIT_YES} /> <label for="include_block_quickedit_1">{L_YES}</label> ! <input type="radio" name="include_block_quickedit" id="include_block_quickedit_0" value="0" class="radio" {S_INCLUDE_BLOCK_QUICKEDIT_NO} /> <label for="include_block_quickedit_0">{L_NO}</label> ! </dd> ! </dl> ! <dl> ! <dt style="width:60%"><label for="include_block_private_1">{L_INCLUDE_BLOCK_PRIVATE}</label></dt> ! <dd style="border:none;padding-right:0px;"> ! <input type="radio" name="include_block_private" id="include_block_private_1" value="1" class="radio" {S_INCLUDE_BLOCK_PRIVATE_YES} /> <label for="include_block_private_1">{L_YES}</label> ! <input type="radio" name="include_block_private" id="include_block_private_0" value="0" class="radio" {S_INCLUDE_BLOCK_PRIVATE_NO} /> <label for="include_block_private_0">{L_NO}</label> ! </dd> ! </dl> ! </div> ! </fieldset> ! </div> ! <div style="float:right;margin-left:10px;"> ! <fieldset> ! <legend>{L_QUICK_NAV}</legend> ! <p> ! {MODULE_SELECT_BOX} ! <input type="submit" value="{S_SUBMIT}" class="button2" /> ! </p> ! </fieldset> ! </div> </form> </div> ! <!-- BEGIN module --> ! <h2 style="clear:both;margin-top:6px;"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_module.gif" align="absmiddle" hspace="5">{module.MODULE_TITLE}</h2> ! <p style="clear:both;float:right;">[ <a href="{module.U_MODULE_EDIT}">{L_EDIT}</a> ]</p> ! <p>{module.MODULE_DESC}</p> ! <!-- END module --> <!-- BEGIN nomodule --> <div class="rules">{nomodule.NONE}</div> <!-- END nomodule --> ! <p style="clear:both"></p> <div class="panel"> <span class="corners-top"><span></span></span> *************** *** 292,323 **** {RESULT_MESSAGE} </div> - <!-- BEGIN module --> <div style="display:block;"> ! <div style="display:block;height:2.0em;border-bottom:solid 1px #CCCCCC;"> ! <div style="display:block;float:right;width:40%;text-align:right;"> ! <span style="margin-left:6px"> ! [ <a href="{module.U_MODULE_EDIT}">{L_EDIT}</a> ] ! </span> ! </div> ! <div style="display:block;"> ! <!-- BEGIN is_current --> ! <span style="cursor:pointer;" onclick="onMenuCatClick('{module.MODULE_ID}','adminModule_');"> ! <img name="adminModule_image_{module.MODULE_ID}" id="adminModule_image_{module.MODULE_ID}" src="{IMG_URL_EXPAND}" border="0" align="absmiddle"> ! <img src="{IMG_ICON_MODULE}" border="0" align="absmiddle"> ! {module.MODULE_TITLE} ! <span class="gensmall">{module.MODULE_DESC}</span> ! </span> ! <!-- END is_current --> ! <!-- BEGIN reload --> ! <img name="adminModule_image_{module.MODULE_ID}" id="adminModule_image_{module.MODULE_ID}" src="{IMG_URL_EXPAND}" border="0" align="absmiddle"> ! <img src="{IMG_ICON_MODULE}" border="0" align="middle"> ! <a href="{module.reload.U_MODULE_EDIT}">{module.MODULE_TITLE}</a> ! <span class="gensmall">{module.MODULE_DESC}</span> ! <!-- END reload --> ! </div> </div> ! ! <div style="margin-left:16px"><!-- Block Functions --> <!-- BEGIN nofunction --> <div class="rules"> --- 299,311 ---- {RESULT_MESSAGE} </div> <!-- BEGIN module --> <div style="display:block;"> ! <!-- BEGIN reload --> ! <div style="display:block;height:2.0em;"> ! <img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_sync.gif" align="absmiddle"> ! <a href="{module.reload.U_MODULE_EDIT}">{L_RELOAD} Reload needed</a> </div> ! <!-- END reload --> ! <div style="clear:both;"><!-- Block Functions --> <!-- BEGIN nofunction --> <div class="rules"> *************** *** 326,366 **** <!-- END nofunction --> <!-- BEGIN function --> ! <div class="inner" style="border-bottom:solid 1px #CCCCCC;"> <div style="display:block;margin-top:5px;padding-bottom:6px;"> ! <div style="display:block;float:right;width:40%;text-align:right;"> ! <span style="width:15%"> ! <!-- BEGIN is_function --> ! <span style="cursor:pointer" onclick="onMenuCatClick('{module.function.FUNCTION_ID}','adminFunction_');"> ! <img name="adminFunction_image_{module.function.FUNCTION_ID}" id="adminFunction_image_{module.function.FUNCTION_ID}" src="{module.function.IMG_URL_FUNC}" border="0" align="middle"> ! {L_EDIT} ! <!-- END is_function --> ! </span> ! <span style="width:15%"> <!-- BEGIN is_function --> ! <span style="cursor:pointer" onclick="onMenuCatClick('{module.function.FUNCTION_ID}','adminParameter_');"> ! <img name="adminParameter_image_{module.function.FUNCTION_ID}" id="adminParameter_image_{module.function.FUNCTION_ID}" src="{module.function.IMG_URL_PAR}" border="0" align="middle"> ! {module.function.L_EDIT_PAR} <!-- END is_function --> </span> ! <span style="width:15%"> ! <!-- BEGIN is_function --> ! <span style="cursor:pointer" onclick="onMenuCatClick('{module.function.FUNCTION_ID}','adminFunctionDelete_');"> ! <img name="adminFunctionDelete_image_{module.function.FUNCTION_ID}" id="adminFunctionDelete_image_{module.function.FUNCTION_ID}" src="{module.function.IMG_URL_DELETE}" border="0" align="middle"> ! {module.function.L_DELETE} ! </span> ! <!-- END is_function --> </div> </div> - <div style="display:block;"> - <span style="cursor:pointer;" onclick="onMenuCatClick('{module.function.FUNCTION_ID}','{module.function.COOKIE_TAG}');"> - <img name="{module.function.COOKIE_TAG}image_{module.function.FUNCTION_ID}" id="{module.function.COOKIE_TAG}image_{module.function.FUNCTION_ID}" src="{module.function.IMG_URL_FUNC}" border="0" align="middle"> - <img src="{IMG_ICON_FUNCTION}" border="0" align="middle"> - {module.function.FUNCTION_TITLE} - <span class="gensmall">{module.function.FUNCTION_DESC}</span> - </span> - </div> <!-- FUNCTION Delete --> ! <div id="adminFunctionDelete_{module.function.FUNCTION_ID}" style="display:{module.function.VISIBLE_DELETE};" class="genmed"> ! <br clear="all" /> <fieldset> <legend style="cursor:pointer;cursor:hand;" onclick="onMenuCatClick('{module.function.FUNCTION_ID}','adminFunctionDelete_');"> --- 314,337 ---- <!-- END nofunction --> <!-- BEGIN function --> ! <div class="inner" style="display:block;clear:both;"> <div style="display:block;margin-top:5px;padding-bottom:6px;"> ! <div style="float:right;width:40%;text-align:right;"> <!-- BEGIN is_function --> ! <a href="javascript:onMenuCatClick('{module.function.FUNCTION_ID}','adminFunction_');" title="{L_EDIT}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif" align="absmiddle"></a> ! <a href="javascript:onMenuCatClick('{module.function.FUNCTION_ID}','adminParameter_');" title="{module.function.L_EDIT_PAR}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_parameter_edit.gif" align="absmiddle"></a> ! <a href="javascript:onMenuCatClick('{module.function.FUNCTION_ID}','adminFunctionDelete_');" title="{module.function.L_DELETE}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" align="absmiddle"></a> <!-- END is_function --> + </div> + <div style="float:left;"> + <span style="cursor:pointer;" onclick="onMenuCatClick('{module.function.FUNCTION_ID}','{module.function.COOKIE_TAG}');"> + <img name="{module.function.COOKIE_TAG}image_{module.function.FUNCTION_ID}" id="{module.function.COOKIE_TAG}image_{module.function.FUNCTION_ID}" src="{module.function.IMG_URL_FUNC}" border="0" align="middle"> + <img src="{IMG_ICON_FUNCTION}" border="0" align="middle"> </span> ! <a href="javascript:onMenuCatClick('{module.function.FUNCTION_ID}','{module.function.COOKIE_TAG}');">{module.function.FUNCTION_TITLE}</a> ! <span class="explain">{module.function.FUNCTION_DESC}</span> </div> </div> <!-- FUNCTION Delete --> ! <div id="adminFunctionDelete_{module.function.FUNCTION_ID}" style="clear:both;padding-top:0.1em;display:{module.function.VISIBLE_DELETE};"> <fieldset> <legend style="cursor:pointer;cursor:hand;" onclick="onMenuCatClick('{module.function.FUNCTION_ID}','adminFunctionDelete_');"> *************** *** 374,379 **** </div> <!-- FUNCTION Settings --> ! <div id="adminFunction_{module.function.FUNCTION_ID}" style="display:{module.function.VISIBLE_FUNC};" class="genmed"> ! <br clear="all" /> <form id="form_adminFunction_{module.function.FUNCTION_ID}" action="{S_ACTION}" method="post"> <fieldset> --- 345,349 ---- </div> <!-- FUNCTION Settings --> ! <div id="adminFunction_{module.function.FUNCTION_ID}" style="clear:both;padding-top:0.1em;display:{module.function.VISIBLE_FUNC};"> <form id="form_adminFunction_{module.function.FUNCTION_ID}" action="{S_ACTION}" method="post"> <fieldset> *************** *** 383,566 **** </legend> <dl> ! <dt>{module.function.L_FUNCTION_TITLE}</dt> ! <dd><input type="text" size="45" name="function_name" value="{module.function.E_FUNCTION_TITLE}" /></dd> ! </dl> ! <dl> ! <dt>{module.function.L_FUNCTION_DESC}</dt> ! <dd><input type="text" size="45" name="function_desc" value="{module.function.E_FUNCTION_DESC}" /></dd> </dl> <dl> ! <dt>{module.function.L_FUNCTION_FILE}</dt> ! <dd><input type="text" size="45" name="function_file" value="{module.function.E_FUNCTION_FILE}" /></dd> </dl> <dl> ! <dt>{module.function.L_FUNCTION_ADMIN_FILE}</dt> ! <dd><input type="text" size="45" name="function_admin" value="{module.function.E_FUNCTION_ADMIN_FILE}" /></dd> </dl> <dl> ! <dt></dt> ! <dd> ! {module.function.S_HIDDEN_FIELDS} ! <input type="submit" name="submit" value="{module.function.S_SUBMIT}" class="button1" /> ! </dd> </dl> </fieldset> </form> </div> <!-- FUNCTION PARAMETERS BEGIN --> ! <div id="adminParameter_{module.function.FUNCTION_ID}" style="display:{module.function.VISIBLE_PAR};" style="margin-left:16px"> ! <fieldset> ! <legend>{module.function.L_TITLE_PAR}</legend> ! <div style="display:block;"> ! <div> ! <div style="float:left;width:30%"> ! {module.function.parameter.L_PARAMETER_TITLE} ! </div> ! <div style="float:left:width:15%;"> ! {module.function.parameter.L_PARAMETER_TYPE} ! </div> ! <div> </div> ! </div> <!-- BEGIN noparameter --> ! <div style="display:block;border-bottom:solid 1px #CCCCCC;">{module.function.noparameter.NONE}</div> <!-- END noparameter --> <!-- BEGIN parameter --> ! <div style="display:block;border-bottom:solid 1px #CCCCCC;"> ! <div style="display:block;padding-top:4px;height:1.5em;"> ! <div style="float:right;"> ! ! <span style="cursor:pointer;" onclick="onMenuCatClick('{module.function.parameter.PARAMETER_ID}','adminParEdit_');"> ! <!-- BEGIN is_parameter --> ! <img name="adminParEdit_image_{module.function.parameter.PARAMETER_ID}" id="adminParEdit_image_{module.function.parameter.PARAMETER_ID}" src="{module.function.parameter.IMG_URL}" border="0" align="middle"> ! <!-- END is_parameter --> ! {module.function.parameter.L_EDIT} ! </span> ! <span align="center" valign="middle" style="cursor:pointer;" onclick="onMenuCatClick('{module.function.parameter.PARAMETER_ID}','adminParDelete_');" > ! <!-- BEGIN is_parameter --> ! <img name="adminParDelete_image_{module.function.parameter.PARAMETER_ID}" id="adminParDelete_image_{module.function.parameter.PARAMETER_ID}" src="{module.function.parameter.IMG_URL_DELETE}" border="0" align="middle"> ! <img src="{MX_ROOT_PATH}/templates/prosilver/images/admin_icons/icon_delete.gif" alt="{L_DELETE}" title="{L_DELETE}" align="middle" /> ! {L_DELETE} ! <!-- END is_parameter --> ! </span> ! <span align="center" valign="middle"><span class="gen"> <!-- BEGIN is_parameter --> ! <a href="{module.function.parameter.U_MOVE_UP}"><img src="{MX_ROOT_PATH}/templates/prosilver/images/admin_icons/icon_up.gif" alt="{L_MOVE_UP}" title="{L_MOVE_UP}" align="middle" /></a> ! <a href="{module.function.parameter.U_MOVE_DOWN}"><img src="{MX_ROOT_PATH}/templates/prosilver/images/admin_icons/icon_down.gif" alt="{L_MOVE_DOWN}" title="{L_MOVE_DOWN}" align="middle" /></a> <!-- END is_parameter --> - </span> </div> <div style="display:block;float:left;width:30%;"> ! <img src="{IMG_ICON_PARAMETER}" border="0" align="absmiddle"> {module.function.parameter.PARAMETER_TITLE} ! </div> ! <div style="display:block;float:left:width:15%;">{module.function.parameter.PARAMETER_TYPE} ! </div> ! </div> ! <!-- FUNCTION PARAMETER Delete --> ! <div id="adminParDelete_{module.function.parameter.PARAMETER_ID}" style="display:{module.function.parameter.VISIBLE_DELETE};" class="genmed"> ! <br clear="all" /> ! <fieldset> ! <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.function.parameter.PARAMETER_ID}','adminParDelete_');"> ! <img src="{IMG_URL_CONTRACT}" border="0" align="middle"> ! {L_DELETE} ! </legend> ! <p> ! {module.function.parameter.MESSAGE_DELETE} ! </p> ! </fieldset> </div> ! <!-- FUNCTION PARAMETER Edit --> ! <div id="adminParEdit_{module.function.parameter.PARAMETER_ID}" style="display:{module.function.parameter.VISIBLE};" class="genmed"> ! <form action="{S_ACTION}" method="post"> ! <br clear="all" /> ! <fieldset> ! <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.function.parameter.PARAMETER_ID}','adminParEdit_');"> ! <img src="{IMG_URL_CONTRACT}" border="0" align="middle"> ! {module.function.parameter.L_EDIT} ! </legend> ! <dl> ! <dt>{module.function.parameter.L_PARAMETER_TITLE}</dt> ! <dd><input type="text" size="45" name="parameter_name" value="{module.function.parameter.E_PARAMETER_TITLE}" class="post" /></dd> ! </dl> ! <dl> ! <dt>{module.function.parameter.L_PARAMETER_TYPE}</dt> ! <dd>{module.function.parameter.E_PARAMETER_TYPE}</dd> ! </dl> ! <dl> ! <dt>{module.function.parameter.L_PARAMETER_AUTH}</dt> ! <dd><input type="radio" name="parameter_auth" value="1" {module.function.parameter.E_PARAMETER_AUTH_YES} /> {L_YES} ! <input type="radio" name="parameter_auth" value="0" {module.function.parameter.E_PARAMETER_AUTH_NO} /> {L_NO}</dd> ! </dl> ! <dl> ! <dt>{module.function.parameter.L_PARAMETER_DEFAULT}</dt> ! <dd><input type="text" size="45" name="parameter_default" value="{module.function.parameter.E_PARAMETER_DEFAULT}" class="post" /></dd> ! </dl> ! <dl> ! <dt>{module.function.parameter.L_PARAMETER_FUNCTION}<br /><br /><span class="gensmall">{module.function.parameter.L_PARAMETER_FUNCTION_EXPLAIN}</span></dt> ! <dd><textarea rows="20" cols="100" wrap="virtual" name="parameter_function" class="post" />{module.function.parameter.E_PARAMETER_FUNCTION}</textarea></dd> ! </dl> ! <dl> ! <dt></dt> ! <dd>{module.function.parameter.S_HIDDEN_FIELDS} ! <input type="submit" name="submit" value="{module.function.parameter.S_SUBMIT}" class="button1" /></dd> ! </dl> ! </fieldset> ! </form> </div> - </div> ! <!-- END parameter --> </div> ! </fieldset> ! </div> <!-- FUNCTION PARAMETERS END --> <!-- FUNCTION BLOCK BEGIN --> ! <div id="adminBlock_{module.function.FUNCTION_ID}" style="display:{module.function.VISIBLE_BLOCK};" style="margin-top:6px;margin-left:16px;padding-bottom:5px;"> <!-- BEGIN noblock --> <div style="display:block;border-bottom:solid 1px #CCCCCC;margin-bottom:3px;">{module.function.noblock.NONE}</div> <!-- END noblock --> <!-- BEGIN block --> ! <div style="display:block;border-bottom:solid 1px #CCCCCC;margin-bottom:3px;padding-top:3px;"> ! <div style="display:block;height:2.3em;overflow:none;"> ! <div style="float:right"> ! <span style="cursor:pointer;width:15%" onclick="onMenuCatClick('{module.function.block.BLOCK_ID}','adminEdit_');"> <!-- BEGIN is_block --> ! <!-- BEGIN include_block_edit --> ! <img name="adminEdit_image_{module.function.block.BLOCK_ID}" id="adminEdit_image_{module.function.block.BLOCK_ID}" src="{module.function.block.IMG_URL_EDIT}" border="0" align="middle"> ! {module.function.block.L_EDIT} <!-- END include_block_edit --> <!-- END is_block --> - </span> - <span style="cursor:pointer;width:15%" onclick="onMenuCatClick('{module.function.block.BLOCK_ID}','adminPrivate_');"> - <!-- BEGIN is_block --> - <!-- BEGIN include_block_private --> - <img name="adminPrivate_image_{module.function.block.BLOCK_ID}" id="adminPrivate_image_{module.function.block.BLOCK_ID}" src="{module.function.block.IMG_URL_PRIVATE}" border="0" align="absmiddle"> - {module.function.block.L_PERMISSIONS_ADV} - <!-- END include_block_private --> - <!-- END is_block --> - </span> - <span style="width:10%"> - <!-- BEGIN is_block --> - [ <a href="{module.function.block.U_BLOCK_SETTINGS}">{module.function.block.L_SETTINGS}</a> ] - <!-- END is_block --> - </span> - <span style="width:10%" style="cursor:pointer;" onclick="onMenuCatClick('{module.function.block.BLOCK_ID}','adminBlockDelete_');" > - <!-- BEGIN is_block --> - <img name="adminBlockDelete_image_{module.function.block.BLOCK_ID}" id="adminBlockDelete_image_{module.function.block.BLOCK_ID}" src="{module.function.block.IMG_URL_DELETE}" border="0" align="absmiddle"> - {module.function.block.L_DELETE} - <!-- END is_block --> - </span> </div> ! <div style="float:left;cursor:pointer;" onclick="onMenuCatClick('{module.function.block.BLOCK_ID}','adminEdit_');"> ! <img src="{IMG_ICON_BLOCK}" border="0" align="absmiddle"> ! {module.function.block.BLOCK_TITLE} ! <span class="gensmall"><i>{module.function.block.BLOCK_LAST_EDITED}</i></span> ! <span class="gensmall">{module.function.block.BLOCK_DESC}</span> </div> </div> <!-- FUNCTION BLOCK Delete --> ! <div id="adminBlockDelete_{module.function.block.BLOCK_ID}" style="padding-top:6px;display:{module.function.block.VISIBLE_DELETE};"> ! <br clear="all" /> <fieldset> <legend style="cursor:pointer;cursor:hand;" onclick="onMenuCatClick('{module.function.block.BLOCK_ID}','adminBlockDelete_');"> --- 353,502 ---- </legend> <dl> ! <dt><label for="function_name_{module.function.FUNCTION_ID}">{module.function.L_FUNCTION_TITLE}</label></dt> ! <dd><input type="text" size="45" name="function_name" id="function_name_{module.function.FUNCTION_ID}" value="{module.function.E_FUNCTION_TITLE}" /></dd> </dl> <dl> ! <dt><label for="function_desc_{module.function.FUNCTION_ID}">{module.function.L_FUNCTION_DESC}</label></dt> ! <dd><input type="text" size="45" name="function_desc" id="function_desc_{module.function.FUNCTION_ID}" value="{module.function.E_FUNCTION_DESC}" /></dd> </dl> <dl> ! <dt><label for="funciton_file_{module.function.FUNCTION_ID}">{module.function.L_FUNCTION_FILE}</label></dt> ! <dd><input type="text" size="45" name="function_file" id="function_file_{module.function.FUNCTION_ID}" value="{module.function.E_FUNCTION_FILE}" /></dd> </dl> <dl> ! <dt><label for="funciton_admin_{module.function.FUNCTION_ID}">{module.function.L_FUNCTION_ADMIN_FILE}</label> ! <span class="explain">{module.function.L_FUNCTION_ADMIN_FILE_EXPLAIN}</span> ! </dt> ! <dd><input type="text" size="45" name="function_admin" id="function_admin_{module.function.FUNCTION_ID}" value="{module.function.E_FUNCTION_ADMIN_FILE}" /></dd> </dl> + <p align="center"> + {module.function.S_HIDDEN_FIELDS} + <input type="submit" name="submit" value="{module.function.S_SUBMIT}" class="button1" /> + </p> </fieldset> </form> </div> <!-- FUNCTION PARAMETERS BEGIN --> ! <div id="adminParameter_{module.function.FUNCTION_ID}" style="clear:both;margin-left:16px;padding-top:0.1em;padding-bottom:6px;display:{module.function.VISIBLE_PAR};"> ! <h3 style="margin-top:3px;">{module.function.L_TITLE_PAR}</h3> ! <div style="display:block;clear:both;"> ! <div style="float:left;width:30%"> ! {module.function.parameter.L_PARAMETER_TITLE} ! </div> ! <div style="float:left:width:15%;"> ! {module.function.parameter.L_PARAMETER_TYPE} ! </div> ! <div> </div> ! </div> <!-- BEGIN noparameter --> ! <div style="clear:both;display:block;border-bottom:solid 1px #CCCCCC;">{module.function.noparameter.NONE}</div> <!-- END noparameter --> <!-- BEGIN parameter --> ! <div style="clear:both;display:block;padding-top:4px;padding-bottom:4px; ! <!-- BEGIN is_parameter --> ! border-bottom:solid 1px #CCCCCC; ! <!-- END is_parameter --> ! "> ! <div style="clear:both;display:block;"> ! <div style="float:right;margin-right:16px;"> <!-- BEGIN is_parameter --> ! <a href="javascript:onMenuCatClick('{module.function.parameter.PARAMETER_ID}','adminParEdit_');" title="{module.function.parameter.L_EDIT}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif" align="absmiddle"></a> ! <a href="{module.function.parameter.U_MOVE_UP}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_up.gif" alt="{L_MOVE_UP}" title="{L_MOVE_UP}" align="absmiddle" /></a> ! <a href="{module.function.parameter.U_MOVE_DOWN}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_down.gif" alt="{L_MOVE_DOWN}" title="{L_MOVE_DOWN}" align="absmiddle" /></a> ! <a href="javascript:onMenuCatClick('{module.function.parameter.PARAMETER_ID}','adminParDelete_');"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" alt="{L_DELETE}" title="{L_DELETE}" align="absmiddle" /></a> <!-- END is_parameter --> </div> <div style="display:block;float:left;width:30%;"> ! <img src="{IMG_ICON_PARAMETER}" border="0" align="absmiddle"> ! {module.function.parameter.PARAMETER_TITLE} </div> ! <div style="display:block;float:left:width:15%;"> ! {module.function.parameter.PARAMETER_TYPE} </div> </div> ! <!-- FUNCTION PARAMETER Delete --> ! <div id="adminParDelete_{module.function.parameter.PARAMETER_ID}" style="clear:both;display:{module.function.parameter.VISIBLE_DELETE};"> ! <fieldset> ! <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.function.parameter.PARAMETER_ID}','adminParDelete_');"> ! <img src="{IMG_URL_CONTRACT}" border="0" align="middle"> ! {L_DELETE} ! </legend> ! <p> ! {module.function.parameter.MESSAGE_DELETE} ! </p> ! </fieldset> </div> ! <!-- FUNCTION PARAMETER Edit --> ! <div id="adminParEdit_{module.function.parameter.PARAMETER_ID}" style="clear:both;display:{module.function.parameter.VISIBLE};"> ! <form action="{S_ACTION}" method="post"> ! <fieldset> ! <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.function.parameter.PARAMETER_ID}','adminParEdit_');"> ! <img src="{IMG_URL_CONTRACT}" border="0" align="middle"> ! {module.function.parameter.L_EDIT} ! </legend> ! <dl> ! <dt><label for="parameter_name_{module.function.parameter.PARAMETER_ID}">{module.function.parameter.L_PARAMETER_TITLE}</label></dt> ! <dd><input type="text" size="45" name="parameter_name" id="parameter_name_{module.function.parameter.PARAMETER_ID}" value="{module.function.parameter.E_PARAMETER_TITLE}" /></dd> ! </dl> ! <dl> ! <dt><label>{module.function.parameter.L_PARAMETER_TYPE}</label></dt> ! <dd>{module.function.parameter.E_PARAMETER_TYPE}</dd> ! </dl> ! <dl> ! <dt><label for="parameter_auth_{module.function.parameter.PARAMETER_ID}_0">{module.function.parameter.L_PARAMETER_AUTH}</label></dt> ! <dd><input type="radio" name="parameter_auth" id="parameter_auth_{module.function.parameter.PARAMETER_ID}_1" value="1" class="radio" {module.function.parameter.E_PARAMETER_AUTH_YES} /> <label for="parameter_auth_{module.function.parameter.PARAMETER_ID}_1">{L_YES}</label> ! <input type="radio" name="parameter_auth" id="parameter_auth_{module.function.parameter.PARAMETER_ID}_0" value="0" class="radio" {module.function.parameter.E_PARAMETER_AUTH_NO} /> <label for="parameter_auth_{module.function.parameter.PARAMETER_ID}_0">{L_NO}</label></dd> ! </dl> ! <dl> ! <dt><label for="parameter_default_{module.function.parameter.PARAMETER_ID}">{module.function.parameter.L_PARAMETER_DEFAULT}</label></dt> ! <dd><input type="text" size="45" name="parameter_default" id="parameter_default_{module.function.parameter.PARAMETER_ID}" value="{module.function.parameter.E_PARAMETER_DEFAULT}"/></dd> ! </dl> ! <dl> ! <dt><label for="parameter_function_{module.function.parameter.PARAMETER_ID}">{module.function.parameter.L_PARAMETER_FUNCTION}</label><br /><span class="explain">{module.function.parameter.L_PARAMETER_FUNCTION_EXPLAIN}</span></dt> ! <dd><textarea rows="20" cols="100" wrap="virtual" name="parameter_function" id="parameter_function_{module.function.parameter.PARAMETER_ID}">{module.function.parameter.E_PARAMETER_FUNCTION}</textarea></dd> ! </dl> ! <p align="center"> ! {module.function.parameter.S_HIDDEN_FIELDS} ! <input type="submit" name="submit" value="{module.function.parameter.S_SUBMIT}" class="button1" /> ! </p> ! </fieldset> ! </form> ! </div> ! </div> ! <span style="clear:both"></span> ! <!-- END parameter --> </div> <!-- FUNCTION PARAMETERS END --> <!-- FUNCTION BLOCK BEGIN --> ! <div id="adminBlock_{module.function.FUNCTION_ID}" style="clear:both;margin-left:16px;display:{module.function.VISIBLE_BLOCK};"> <!-- BEGIN noblock --> <div style="display:block;border-bottom:solid 1px #CCCCCC;margin-bottom:3px;">{module.function.noblock.NONE}</div> <!-- END noblock --> <!-- BEGIN block --> ! <div style="display:block;clear:both;padding-top:2px;"> ! <div style="display:block;clear:both;"> ! <div style="float:right;margin-right:16px;"> <!-- BEGIN is_block --> ! [ <a href="{module.function.block.U_BLOCK_SETTINGS}">{module.function.block.L_SETTINGS}</a> ] <!-- BEGIN include_block_edit --> ! <a href="javascript:onMenuCatClick('{module.function.block.BLOCK_ID}','adminEdit_');" title="{module.function.block.L_EDIT}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif" align="absmiddle" /></a> <!-- END include_block_edit --> + <!-- BEGIN include_block_private --> + <a href="javascript:onMenuCatClick('{module.function.block.BLOCK_ID}','adminPrivate_');" title="{module.function.block.L_PERMISSIONS_ADV}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_permissions.gif" align="absmiddle"></a> + <!-- END include_block_private --> + <a href="javascript:onMenuCatClick('{module.function.block.BLOCK_ID}','adminBlockDelete_');" title="{module.function.block.L_DELETE}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" align="absmiddle"></a> <!-- END is_block --> </div> ! <div style="float:left;"> ! <span style="cursor:pointer;" onclick="onMenuCatClick('{module.function.block.BLOCK_ID}','adminEdit_');"> ! <img src="{IMG_ICON_BLOCK}" border="0" align="absmiddle"> ! </span> ! <a href="javascript:onMenuCatClick('{module.function.block.BLOCK_ID}','adminEdit_');">{module.function.block.BLOCK_TITLE}</a> ! <span class="explain"><i>{module.function.block.BLOCK_LAST_EDITED}</i></span> ! <span class="explain">{module.function.block.BLOCK_DESC}</span> </div> </div> <!-- FUNCTION BLOCK Delete --> ! <div id="adminBlockDelete_{module.function.block.BLOCK_ID}" style="clear:both;display:{module.function.block.VISIBLE_DELETE};"> <fieldset> <legend style="cursor:pointer;cursor:hand;" onclick="onMenuCatClick('{module.function.block.BLOCK_ID}','adminBlockDelete_');"> *************** *** 573,579 **** </fieldset> </div> ! <!-- FUNCTION BLOCK QUICK Edit --> ! <div id="adminEdit_{module.function.block.BLOCK_ID}" style="padding-top:6px;display:{module.function.block.VISIBLE_EDIT};"> ! <br clear="all" /> <form action="{S_ACTION}" method="post"> <fieldset> --- 509,514 ---- </fieldset> </div> ! <!-- FUNCTION BLOCK QUICK Edit --> ! <div id="adminEdit_{module.function.block.BLOCK_ID}" style="clear:both;display:{module.function.block.VISIBLE_EDIT};"> <form action="{S_ACTION}" method="post"> <fieldset> *************** *** 583,617 **** </legend> <dl> ! <dt>{module.function.block.L_BLOCK_TITLE}</dt> ! <dd><input type="text" size="65" name="block_title" value="{module.function.block.E_BLOCK_TITLE}" class="post" /></dd> </dl> <dl> ! <dt>{module.function.block.L_BLOCK_DESC}</dt> ! <dd><input type="text" size="65" name="block_desc" value="{module.function.block.E_BLOCK_DESC}" class="post" /></dd> </dl> <dl> ! <dt>{module.function.block.L_SHOW_TITLE}<br /><span class="gensmall">{module.function.block.L_SHOW_TITLE_EXPLAIN}</span></dt> ! <dd><input type="radio" name="show_title" value="1" {module.function.block.S_SHOW_TITLE_YES} /> {L_YES} ! <input type="radio" name="show_title" value="0" {module.function.block.S_SHOW_TITLE_NO} /> {L_NO}</dd> </dl> <dl> ! <dt>{module.function.block.L_SHOW_STATS}<br /><span class="gensmall">{module.function.block.L_SHOW_STATS_EXPLAIN}</span></dt> ! <dd><input type="radio" name="show_stats" value="1" {module.function.block.S_SHOW_STATS_YES} /> {L_YES} ! <input type="radio" name="show_stats" value="0" {module.function.block.S_SHOW_STATS_NO} /> {L_NO}</dd> </dl> <dl> ! <dt>{module.function.block.L_SHOW_BLOCK}<br /><span class="gensmall">{module.function.block.L_SHOW_BLOCK_EXPLAIN}</span></dt> ! <dd><input type="radio" name="show_block" value="1" {module.function.block.S_SHOW_BLOCK_YES} /> {L_YES} ! <input type="radio" name="show_block" value="0" {module.function.block.S_SHOW_BLOCK_NO} /> {L_NO}</dd> </dl> <dl> ! <dt>{module.function.block.L_AUTH_TITLE}<br /><span class="gensmall">{module.function.block.L_AUTH_TITLE_EXPLAIN}</span></dt> <dd> ! <table cellspacing="1" cellpadding="4" border="0"> <tr> <!-- BEGIN block_auth_titles --> ! <td class="row3" align="center"><h3>{module.function.block.block_auth_titles.CELL_TITLE}</h3></td> <!-- END block_auth_titles --> </tr> <tr> <!-- BEGIN block_auth_data --> --- 518,557 ---- </legend> <dl> ! <dt><label for="block_title_{module.function.block.BLOCK_ID}">{module.function.block.L_BLOCK_TITLE}</label></dt> ! <dd><input type="text" size="65" name="block_title" id="block_title_{module.function.block.BLOCK_ID}" value="{module.function.block.E_BLOCK_TITLE}" /></dd> </dl> <dl> ! <dt><label for="block_desc_{module.function.block.BLOCK_ID}">{module.function.block.L_BLOCK_DESC}</label></dt> ! <dd><input type="text" size="65" name="block_desc" value="{module.function.block.E_BLOCK_DESC}" /></dd> </dl> <dl> ! <dt><label for="show_title_{module.function.block.BLOCK_ID}_1">{module.function.block.L_SHOW_TITLE}</label><br /> ! <span class="explain">{module.function.block.L_SHOW_TITLE_EXPLAIN}</span></dt> ! <dd><input type="radio" name="show_title" id="show_title_{module.function.block.BLOCK_ID}_1" value="1" class="radio" {module.function.block.S_SHOW_TITLE_YES} /> <label for="show_title_{module.function.block.BLOCK_ID}_1">{L_YES}</label> ! <input type="radio" name="show_title" id="show_title_{module.function.block.BLOCK_ID}_0" value="0" class="radio" {module.function.block.S_SHOW_TITLE_NO} /> <label for="show_title_{module.function.block.BLOCK_ID}_0">{L_NO}</label></dd> </dl> <dl> ! <dt><label for="show_stats_{module.function.block.BLOCK_ID}_1">{module.function.block.L_SHOW_STATS}</label><br /> ! <span class="explain">{module.function.block.L_SHOW_STATS_EXPLAIN}</span></dt> ! <dd><input type="radio" name="show_stats" id="show_stats_{module.function.block.BLOCK_ID}_1" value="1" class="radio" {module.function.block.S_SHOW_STATS_YES} /> <label for="show_stats_{module.function.block.BLOCK_ID}_1">{L_YES}</label> ! <input type="radio" name="show_stats" id="show_stats_{module.function.block.BLOCK_ID}_0" value="0" class="radio" {module.function.block.S_SHOW_STATS_NO} /> <label for="show_stats_{module.function.block.BLOCK_ID}_0">{L_NO}</label></dd> </dl> <dl> ! <dt><label for="show_block_{module.function.block.BLOCK_ID}_1">{module.function.block.L_SHOW_BLOCK}</label><br /><span class="explain">{module.function.block.L_SHOW_BLOCK_EXPLAIN}</span></dt> ! <dd><input type="radio" name="show_block" id="show_block_{module.function.block.BLOCK_ID}_1" value="1" class="radio" {module.function.block.S_SHOW_BLOCK_YES} /> <label for="show_block_{module.function.block.BLOCK_ID}_1">{L_YES}</label> ! <input type="radio" name="show_block" id="show_block_{module.function.block.BLOCK_ID}_0" value="0" class="radio" {module.function.block.S_SHOW_BLOCK_NO} /> <label for="show_block_{module.function.block.BLOCK_ID}_0">{L_NO}</label></dd> ... [truncated message content] |
|
From: OryNider <ory...@us...> - 2008-01-08 18:01:11
|
Update of /cvsroot/mxbb/core/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10593 Modified Files: page_footer_admin.php Log Message: prosilver admin update Index: page_footer_admin.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/page_footer_admin.php,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** page_footer_admin.php 20 Dec 2007 13:10:05 -0000 1.17 --- page_footer_admin.php 8 Jan 2008 18:01:05 -0000 1.18 *************** *** 43,47 **** } ! $execution_stats = '<div align="center"><span class="copyright">' . sprintf($lang['Execution_Stats'], $db->num_queries, round($stime, 4)) . '</span></div>'; $template->assign_vars(array( --- 43,47 ---- } ! $execution_stats = sprintf($lang['Execution_Stats'], $db->num_queries, round($stime, 4)); $template->assign_vars(array( |
|
From: OryNider <ory...@us...> - 2008-01-06 22:29:06
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv4601/includes Modified Files: mx_functions_core.php mx_functions_phpbb.php Log Message: cache optimizer, I can't code againg :(( Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** mx_functions_core.php 13 Sep 2007 19:32:57 -0000 1.54 --- mx_functions_core.php 6 Jan 2008 22:28:57 -0000 1.55 *************** *** 114,117 **** --- 114,122 ---- WHERE portal_id = '1'"; + if (!function_exists('mx_message_die')) + { + die("This hosting or server is using a cache optimizer not compatible with phpBB and mxBB :("); + } + if ( !( $result = $db->sql_query( $sql ) ) ) { Index: mx_functions_phpbb.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_phpbb.php,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** mx_functions_phpbb.php 14 Dec 2007 02:13:26 -0000 1.34 --- mx_functions_phpbb.php 6 Jan 2008 22:28:57 -0000 1.35 *************** *** 376,380 **** //$theme = $mx_user->_setup_style($board_config['default_style']); } ! // // If the header hasn't been output then do it --- 376,380 ---- //$theme = $mx_user->_setup_style($board_config['default_style']); } ! $default_lang = $mx_user->lang['default_lang']; // // If the header hasn't been output then do it |
|
From: OryNider <ory...@us...> - 2008-01-06 22:27:15
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3933 Modified Files: Tag: core28x mx_functions_phpbb.php Log Message: Cache optimizer message. Index: mx_functions_phpbb.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_phpbb.php,v retrieving revision 1.32 retrieving revision 1.32.2.1 diff -C2 -d -r1.32 -r1.32.2.1 *** mx_functions_phpbb.php 19 Jun 2007 20:42:00 -0000 1.32 --- mx_functions_phpbb.php 6 Jan 2008 22:27:08 -0000 1.32.2.1 *************** *** 155,158 **** --- 155,162 ---- if( empty($userdata) && ( $msg_code == GENERAL_MESSAGE || $msg_code == GENERAL_ERROR )) { + if( !is_object($mx_user)) + { + die("This hosting or server is using a cache optimizer not currently supported by mxBB."); + } $mx_user->init($user_ip, - ( 1000 + $page_id )); } |
|
From: OryNider <ory...@us...> - 2008-01-03 19:04:11
|
Update of /cvsroot/mxbb/mx_smartor In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3918 Modified Files: album.php Log Message: Index: album.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** album.php 5 Oct 2007 11:09:41 -0000 1.18 --- album.php 3 Jan 2008 19:04:07 -0000 1.19 *************** *** 315,321 **** { // ------------------------------------------------ ! // build list of allowd category id's // ------------------------------------------------ ! $allowed_cat .= ($allowed_cat == '') ? $catrows[$i]['cat_id'] : ','.$catrows[$i]['cat_id']; } // --- 315,328 ---- { // ------------------------------------------------ ! // Fix by Phea // ------------------------------------------------ ! $tmpAccess = album_user_access($catrows[$i]['cat_id'], 0, ALBUM_AUTH_VIEW, 0, 0, 0, 0, 0); // VIEW ! if ($tmpAccess['view'] == 1) ! { ! // ------------------------------------------------ ! // build list of allowd category id's ! // ------------------------------------------------ ! $allowed_cat .= ($allowed_cat == '') ? $catrows[$i]['cat_id'] : ','.$catrows[$i]['cat_id']; ! } } // |
|
From: OryNider <ory...@us...> - 2008-01-03 19:03:43
|
Update of /cvsroot/mxbb/mx_smartor In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3383 Modified Files: Tag: core28x album.php Log Message: Index: album.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album.php,v retrieving revision 1.17.2.2 retrieving revision 1.17.2.3 diff -C2 -d -r1.17.2.2 -r1.17.2.3 *** album.php 5 Oct 2007 11:12:51 -0000 1.17.2.2 --- album.php 3 Jan 2008 19:03:22 -0000 1.17.2.3 *************** *** 315,321 **** { // ------------------------------------------------ ! // build list of allowd category id's // ------------------------------------------------ ! $allowed_cat .= ($allowed_cat == '') ? $catrows[$i]['cat_id'] : ','.$catrows[$i]['cat_id']; } // --- 315,328 ---- { // ------------------------------------------------ ! // Fix by Phea // ------------------------------------------------ ! $tmpAccess = album_user_access($catrows[$i]['cat_id'], 0, ALBUM_AUTH_VIEW, 0, 0, 0, 0, 0); // VIEW ! if ($tmpAccess['view'] == 1) ! { ! // ------------------------------------------------ ! // build list of allowd category id's ! // ------------------------------------------------ ! $allowed_cat .= ($allowed_cat == '') ? $catrows[$i]['cat_id'] : ','.$catrows[$i]['cat_id']; ! } } // |
|
From: OryNider <ory...@us...> - 2007-12-28 04:08:10
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv28734 Modified Files: Tag: core28x favicon.gif Log Message: favicon loop only 5 times ;) Index: favicon.gif =================================================================== RCS file: /cvsroot/mxbb/core/favicon.gif,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 Binary files /tmp/cvsqL1YSu and /tmp/cvsnU3FMA differ |
|
From: OryNider <ory...@us...> - 2007-12-28 04:07:41
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv28369 Modified Files: favicon.gif Log Message: favicon loop only 5 times ;) Index: favicon.gif =================================================================== RCS file: /cvsroot/mxbb/core/favicon.gif,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsH9zdaw and /tmp/cvswA77fe differ |
|
From: OryNider <ory...@us...> - 2007-12-28 02:51:32
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv29240 Added Files: favicon.gif Log Message: animated favicon added, by removing the gif file the code will act like beafore. --- NEW FILE: favicon.gif --- (This appears to be a binary file; contents omitted.) |
|
From: OryNider <ory...@us...> - 2007-12-28 02:51:32
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv29240/includes Modified Files: page_header.php Log Message: animated favicon added, by removing the gif file the code will act like beafore. Index: page_header.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/page_header.php,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** page_header.php 17 Dec 2007 07:02:08 -0000 1.48 --- page_header.php 28 Dec 2007 02:51:28 -0000 1.49 *************** *** 652,655 **** --- 652,657 ---- header ('Pragma: no-cache'); + $icongif = 'favicon.gif'; + include($mx_root_path . 'mx_meta.inc'); $meta_str = '<meta name="title" content="' . $title .'" />' . "\n"; *************** *** 658,662 **** $meta_str .= '<meta name="keywords" content="' . $keywords .'" />' . "\n"; $meta_str .= '<meta name="description" lang="' . $langcode .'" content="'. $description .'" />' . "\n"; ! $meta_str .= '<link rel="icon" href="' . $icon .'" />' . "\n"; $meta_str .= '<meta name="category" content="' . $rating .'" />' . "\n"; --- 660,669 ---- $meta_str .= '<meta name="keywords" content="' . $keywords .'" />' . "\n"; $meta_str .= '<meta name="description" lang="' . $langcode .'" content="'. $description .'" />' . "\n"; ! $meta_str .= '<link rel="shortcut icon" href="' . $icon .'" />' . "\n"; ! ! if (file_exists($mx_root_path . $icongif)) ! { ! $meta_str .= '<link rel="icon" href="' . $icongif .'" type="image/gif" />' . "\n"; ! } $meta_str .= '<meta name="category" content="' . $rating .'" />' . "\n"; |
|
From: OryNider <ory...@us...> - 2007-12-28 02:50:48
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv28824/includes Modified Files: Tag: core28x page_header.php Log Message: animated favicon added, by removing the gif file the code will act like beafore. Index: page_header.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/page_header.php,v retrieving revision 1.45.2.2 retrieving revision 1.45.2.3 diff -C2 -d -r1.45.2.2 -r1.45.2.3 *** page_header.php 27 Dec 2007 19:41:52 -0000 1.45.2.2 --- page_header.php 28 Dec 2007 02:50:41 -0000 1.45.2.3 *************** *** 522,525 **** --- 522,527 ---- header ('Pragma: no-cache'); + $icongif = 'favicon.gif'; + include($mx_root_path . 'mx_meta.inc'); $meta_str = '<meta name="title" content="' . $title .'" />' . "\n"; *************** *** 528,532 **** $meta_str .= '<meta name="keywords" content="' . $keywords .'" />' . "\n"; $meta_str .= '<meta name="description" lang="' . $langcode .'" content="'. $description .'" />' . "\n"; ! $meta_str .= '<link rel="icon" href="' . $icon .'" />' . "\n"; $meta_str .= '<meta name="category" content="' . $rating .'" />' . "\n"; --- 530,539 ---- $meta_str .= '<meta name="keywords" content="' . $keywords .'" />' . "\n"; $meta_str .= '<meta name="description" lang="' . $langcode .'" content="'. $description .'" />' . "\n"; ! $meta_str .= '<link rel="shortcut icon" href="' . $icon .'" />' . "\n"; ! ! if (file_exists($mx_root_path . $icongif)) ! { ! $meta_str .= '<link rel="icon" href="' . $icongif .'" type="image/gif" />' . "\n"; ! } $meta_str .= '<meta name="category" content="' . $rating .'" />' . "\n"; |
|
From: OryNider <ory...@us...> - 2007-12-28 02:50:44
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv28824 Added Files: Tag: core28x favicon.gif Log Message: animated favicon added, by removing the gif file the code will act like beafore. --- NEW FILE: favicon.gif --- (This appears to be a binary file; contents omitted.) |
|
From: OryNider <ory...@us...> - 2007-12-28 00:32:12
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv5106 Modified Files: Tag: core28x favicon.ico Log Message: This will fix if you put a desktop shortcut to the website. Index: favicon.ico =================================================================== RCS file: /cvsroot/mxbb/core/favicon.ico,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 Binary files /tmp/cvsq5foIf and /tmp/cvsYHGJxo differ |
|
From: OryNider <ory...@us...> - 2007-12-27 19:42:10
|
Update of /cvsroot/mxbb/core/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14536 Modified Files: Tag: core28x overall_header.tpl overall_header_navigation.tpl overall_noheader.tpl Added Files: Tag: core28x overall_header_phpbb.tpl Log Message: Changed the header for compatibility with new browsers like ff3 beta and ie7. Index: overall_header.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/Attic/overall_header.tpl,v retrieving revision 1.29 retrieving revision 1.29.2.1 diff -C2 -d -r1.29 -r1.29.2.1 *** overall_header.tpl 19 Jun 2007 18:31:58 -0000 1.29 --- overall_header.tpl 27 Dec 2007 19:42:05 -0000 1.29.2.1 *************** *** 1,4 **** ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> ! <html dir="{S_CONTENT_DIRECTION}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}"> --- 1,4 ---- ! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}"> --- NEW FILE: overall_header_phpbb.tpl --- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}"> <meta http-equiv="Content-Style-Type" content="text/css"> <!-- BEGIN switch_set_base --> <base href="{U_PORTAL_ROOT_PATH}" > <!-- END switch_set_base --> {META} {NAV_LINKS} <title>{SITENAME} :: {PAGE_TITLE}</title> <!-- First load standard template *.css definition, located in the the phpbb template folder --> <link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_PHPBB_STYLESHEET}" type="text/css" > <!-- Then load mxBB template *.css definition for mx, located in the the portal template folder --> <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_MXBB_STYLESHEET}" type="text/css" > <!-- Optionally, redefine some defintions for gecko browsers --> <!-- BEGIN switch_gecko --><link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_GECKO_STYLESHEET}" type="text/css" ><!-- END switch_gecko --> {MX_ADDITIONAL_CSS_FILES} {MX_ICON_CSS} <!-- BEGIN switch_enable_pm_popup --> <script language="javascript" type="text/javascript"><!-- if( {PRIVATE_MESSAGE_NEW_FLAG} ) { window.open('{U_PRIVATEMSGS_POPUP}', '_phpbbprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400'); } // --></script> <!-- END switch_enable_pm_popup --> <script language="javascript" type="text/javascript"><!-- function checkSearch() { if (document.search_block.search_engine.value == 'google') { window.open('http://www.google.com/search?q=' + document.search_block.search_keywords.value, '_google', ''); return false; } else if (document.search_block.search_engine.value == 'site') { window.open('{U_SEARCH_SITE}&search_keywords=' + document.search_block.search_keywords.value, '_self', ''); return false; } else if (document.search_block.search_engine.value == 'kb') { window.open('{U_SEARCH_KB}&search_keywords=' + document.search_block.search_keywords.value, '_self', ''); return false; } else if (document.search_block.search_engine.value == 'pafiledb') { window.open('{U_SEARCH_PAFILEDB}&search_keywords=' + document.search_block.search_keywords.value, '_self', ''); return false; } else { return true; } } // --></script> <script language="javascript" type="text/javascript" src="{U_PORTAL_ROOT_PATH}modules/mx_shared/lib/Common.js"></script> <script language="javascript" type="text/javascript" src="{U_PORTAL_ROOT_PATH}modules/mx_shared/lib/Toggle.js"></script> <script language="javascript" type="text/javascript" src="{U_PORTAL_ROOT_PATH}modules/mx_smartor/album_mod/fap_loader.js"></script> {MX_ADDITIONAL_JS_FILES} {MX_ADDITIONAL_HEADER_TEXT} </head> <body bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}"> <a name="top"></a> <table width="780" cellspacing="0" cellpadding="1" border="0" align="center" class="mx_main_table"> <tr> <td class="bodyline"> <table width="100%" cellspacing="0" cellpadding="2" border="0" class="mx_header_table"> <tr> <td class="row3" width="25%" align="left" valign="top"><a href="{U_INDEX}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/logo.gif" border="0" alt="{L_INDEX}" vspace="1"/></a></td> <td class="row3" width="50%" align="center" valign="middle">{PAGE_ICON}<span class="pagetitle">{PAGE_TITLE}</span></td> <td class="row3" width="25%" align="right" valign="top"><span class="sitetitle">{SITENAME}</span><br /><span class="sitetitle_desc">{SITE_DESCRIPTION}</span></td> </tr> <tr> <td class="row2" align="center" valign="middle" colspan="3"> {OVERALL_NAVIGATION} </td> </tr> <tr> <td class="cat" align="center" valign="middle" colspan="3"> <table cellspacing="1" cellpadding="1" border="0"> <tr> <td align="center" valign="middle" nowrap > <a href="{U_INDEX}" class="mainmenu"><img src="{NAV_IMAGES_HOME}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_INDEX}" class="mainmenu">{L_HOME}</a></span> </td> <td align="center" valign="middle" nowrap> <a href="{U_INDEX_FORUM}" class="mainmenu"><img src="{NAV_IMAGES_FORUM}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_INDEX_FORUM}" class="mainmenu">{L_FORUM}</a></span> </td> <td align="center" valign="middle" nowrap> <!-- BEGIN switch_user_logged_in --> <a href="{U_PROFILE}" class="mainmenu"><img src="{NAV_IMAGES_PROFILE}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_PROFILE}" class="mainmenu">{L_PROFILE}</a></span> <!-- END switch_user_logged_in --> </td> <td align="center" valign="middle" nowrap> <a href="{U_FAQ}" class="mainmenu"><img src="{NAV_IMAGES_FAQ}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_FAQ}" class="mainmenu">{L_FAQ}</a></span> </td> <!-- <td align="center" valign="middle" nowrap> <a href="{U_SEARCH}" class="mainmenu"><img src="{NAV_IMAGES_SEARCH}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_SEARCH}" class="mainmenu">{L_SEARCH}</a></span> </td> --> <td align="center" valign="middle" nowrap> <a href="{U_MEMBERLIST}" class="mainmenu"><img src="{NAV_IMAGES_MEMBERS}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_MEMBERLIST}" class="mainmenu">{L_MEMBERLIST}</a></span> </td> <td align="center" valign="middle" nowrap> <a href="{U_GROUP_CP}" class="mainmenu"><img src="{NAV_IMAGES_GROUPS}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_GROUP_CP}" class="mainmenu">{L_USERGROUPS}</a></span> </td> <td align="center" valign="middle" nowrap> <!-- BEGIN switch_user_logged_in --> <a href="{U_PRIVATEMSGS}" class="mainmenu"><img src="{NAV_IMAGES_PRIVMSG}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_PRIVATEMSGS}" class="mainmenu">{L_PRIVATEMSGS}</a></span> <!-- END switch_user_logged_in --> </td> </tr> </table> </td> </tr> <!-- BEGIN switch_view --> <tr> <td align="left" valign="bottom" colspan="3" ><span class="gensmall">{CURRENT_TIME}</span></td> </tr> <tr> <td align="left" valign="bottom" colspan="3" ><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td> </tr> <!-- END switch_view --> </table> <table width="100%" cellspacing="0" cellpadding="2" border="0" align="center"> <tr> <td align="center" valign="middle" nowrap> <a href="{U_LOGIN_LOGOUT}" class="mainmenu"><img src="{NAV_IMAGES_LOGIN_LOGOUT}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_LOGIN_LOGOUT}" class="mainmenu">{L_LOGIN_LOGOUT}</a></span> </td> <td align="center" valign="middle" nowrap> <!-- BEGIN switch_user_logged_out --> <a href="{U_REGISTER}" class="mainmenu"><img src="{NAV_IMAGES_REGISTER}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a></span> <!-- END switch_user_logged_out --> </td> <td valign="top" align="right" width="100%" height="5" > <form name="search_block" method="post" action="{U_SEARCH}" onsubmit="return checkSearch()"> <a href="{U_SEARCH}" class="gen"><span class="gen">{L_SEARCH}</span></a>: <input class="post" type="text" name="search_keywords" size="15" value="...?" onfocus="if(this.value=='...?'){this.value='';}" onblur="if(this.value==''){this.value='...?';}"> <select class="post" name="search_engine"> {L_SEARCH_SITE} {L_SEARCH_FORUM} {L_SEARCH_KB} {L_SEARCH_PAFILEDB} {L_SEARCH_GOOGLE} </select> <input type="hidden" name="search_fields" value="all"> <input type="hidden" name="show_results" value="topics"> <input class="mainoption" type="submit" value="Search"> </form> </td> <td valign="top" align="left" width="5" height="5" > </td> </tr> </table> <!-- BEGIN phpbb_stats --> <table width="100%" cellspacing="0" cellpadding="2" border="0" align="center"> <tr> <td align="left" valign="top" ><span class="gensmall"> <!-- BEGIN switch_user_logged_in --> {LAST_VISIT_DATE}<br /> <!-- END switch_user_logged_in --> {CURRENT_TIME}<br /></span> </td> <td align="right" valign="top" > <!-- BEGIN switch_user_logged_in --> <a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br /><a href="{U_SEARCH_SELF}" class="gensmall">{L_SEARCH_SELF}</a><br /> <!-- END switch_user_logged_in --> <a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a> </td> </tr> </table> <!-- END phpbb_stats --> Index: overall_noheader.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/Attic/overall_noheader.tpl,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -C2 -d -r1.7 -r1.7.2.1 *** overall_noheader.tpl 19 Jun 2007 18:31:58 -0000 1.7 --- overall_noheader.tpl 27 Dec 2007 19:42:05 -0000 1.7.2.1 *************** *** 1,4 **** ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> ! <html dir="{S_CONTENT_DIRECTION}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}"> --- 1,4 ---- ! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}"> Index: overall_header_navigation.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/overall_header_navigation.tpl,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -C2 -d -r1.7 -r1.7.2.1 *** overall_header_navigation.tpl 22 Jul 2007 21:01:47 -0000 1.7 --- overall_header_navigation.tpl 27 Dec 2007 19:42:05 -0000 1.7.2.1 *************** *** 1,4 **** ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> ! <html dir="{S_CONTENT_DIRECTION}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}"> --- 1,4 ---- ! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}"> |
|
From: OryNider <ory...@us...> - 2007-12-27 19:41:56
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14273 Modified Files: Tag: core28x page_header.php Log Message: Changed the header for compatibility with new browsers like ff3 beta and ie7. Index: page_header.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/page_header.php,v retrieving revision 1.45.2.1 retrieving revision 1.45.2.2 diff -C2 -d -r1.45.2.1 -r1.45.2.2 *** page_header.php 12 Aug 2007 22:29:17 -0000 1.45.2.1 --- page_header.php 27 Dec 2007 19:41:52 -0000 1.45.2.2 *************** *** 318,321 **** --- 318,322 ---- 'S_CONTENT_DIR_LEFT' => $lang['LEFT'], 'S_CONTENT_DIR_RIGHT' => $lang['RIGHT'], + 'S_USER_LANG' => $userdata['session_logged_in'] ? $userdata['user_lang'] : $board_config['default_lang'], 'S_TIMEZONE' => sprintf($lang['All_times'], $l_timezone), 'S_LOGIN_ACTION' => append_sid(PORTAL_URL . 'login.'.$phpEx), |
|
From: OryNider <ory...@us...> - 2007-12-27 19:11:58
|
Update of /cvsroot/mxbb/core/templates/subsilver2 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv475 Modified Files: overall_header.html overall_header_navigation.html overall_header_navigation_phpbb.html Log Message: header fixes for ie7 and ff2. Index: overall_header_navigation.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/subsilver2/overall_header_navigation.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** overall_header_navigation.html 27 Dec 2007 03:22:13 -0000 1.2 --- overall_header_navigation.html 27 Dec 2007 19:11:54 -0000 1.3 *************** *** 1,4 **** ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> ! <html dir="{S_CONTENT_DIRECTION}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}"> --- 1,4 ---- ! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}"> Index: overall_header_navigation_phpbb.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/subsilver2/overall_header_navigation_phpbb.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** overall_header_navigation_phpbb.html 27 Dec 2007 03:22:13 -0000 1.1 --- overall_header_navigation_phpbb.html 27 Dec 2007 19:11:54 -0000 1.2 *************** *** 1,4 **** ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> ! <html dir="{S_CONTENT_DIRECTION}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}"> --- 1,4 ---- ! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}"> Index: overall_header.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/subsilver2/overall_header.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** overall_header.html 27 Dec 2007 03:22:13 -0000 1.2 --- overall_header.html 27 Dec 2007 19:11:54 -0000 1.3 *************** *** 1,4 **** ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> ! <html dir="{S_CONTENT_DIRECTION}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}"> --- 1,4 ---- ! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}"> |
|
From: OryNider <ory...@us...> - 2007-12-27 19:06:03
|
Update of /cvsroot/mxbb/core/templates/subsilver2 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv29597 Modified Files: subsilver2.css Log Message: the fixes need to be applyed in some other place... Index: subsilver2.css =================================================================== RCS file: /cvsroot/mxbb/core/templates/subsilver2/subsilver2.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** subsilver2.css 27 Dec 2007 03:45:18 -0000 1.3 --- subsilver2.css 27 Dec 2007 19:05:55 -0000 1.4 *************** *** 15,25 **** @import url("theme/stylesheet.css"); - p, td { font-size: 11px; color: #000000; } - /* This is the border line & background colour round the entire page */ ! .bodyline { background-color: #FFFFFF; border: 1px #98AAB1 solid; } /* This is the outline round the main forum tables */ ! .forumline { background-color: #FFFFFF; border: 2px #006699 solid; } /* This is the main table round all portal contents, use with .bodyline */ --- 15,29 ---- @import url("theme/stylesheet.css"); /* This is the border line & background colour round the entire page */ ! .bodyline { ! background-color: #FFFFFF; ! border: 0.1em #98AAB1 solid; ! } /* This is the outline round the main forum tables */ ! .forumline { ! background-color: #FFFFFF; ! border: 0.1em #006699 solid; ! } /* This is the main table round all portal contents, use with .bodyline */ *************** *** 30,34 **** .mx_header_table { background-color: #FFFFFF; ! border: 2px solid #006699; } --- 34,38 ---- .mx_header_table { background-color: #FFFFFF; ! border: 0.1em #006699 solid; } |
|
From: OryNider <ory...@us...> - 2007-12-27 03:45:25
|
Update of /cvsroot/mxbb/core/templates/subsilver2 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv31769 Modified Files: subsilver2.css Log Message: Index: subsilver2.css =================================================================== RCS file: /cvsroot/mxbb/core/templates/subsilver2/subsilver2.css,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** subsilver2.css 27 Dec 2007 03:22:13 -0000 1.2 --- subsilver2.css 27 Dec 2007 03:45:18 -0000 1.3 *************** *** 17,20 **** --- 17,26 ---- p, td { font-size: 11px; color: #000000; } + /* This is the border line & background colour round the entire page */ + .bodyline { background-color: #FFFFFF; border: 1px #98AAB1 solid; } + + /* This is the outline round the main forum tables */ + .forumline { background-color: #FFFFFF; border: 2px #006699 solid; } + /* This is the main table round all portal contents, use with .bodyline */ .mx_main_table { |
|
From: OryNider <ory...@us...> - 2007-12-27 03:22:32
|
Update of /cvsroot/mxbb/core/templates/subsilver2/theme In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv22217 Added Files: stylesheet.css theme.cfg Log Message: styles changes --- NEW FILE: stylesheet.css --- /* phpBB 3.0 Style Sheet -------------------------------------------------------------- Style name: subsilver2 Based on style: subSilver (the default phpBB 2 style) Original author: subBlue ( http://www.subBlue.com/ ) Modified by: psoTFX and the phpBB team ( http://www.phpbb.com ) This is an alternative style for phpBB3 for those wishing to stay with the familiar subSilver style of phpBB version 2.x Copyright 2006 phpBB Group ( http://www.phpbb.com/ ) -------------------------------------------------------------- */ /* Layout ------------ */ * { /* Reset browsers default margin, padding and font sizes */ margin: 0; padding: 0; } html { font-size: 100%; } body { /* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */ font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif; color: #323D4F; background-color: #FFFFFF; font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */ margin: 0; } #wrapheader { min-height: 120px; height: auto !important; height: 120px; /* background-image: url('./images/background.gif'); background-repeat: repeat-x;*/ /* padding: 0 25px 15px 25px;*/ padding: 0; } #wrapcentre { margin: 15px 25px 0 25px; } #wrapfooter { text-align: center; clear: both; } #wrapnav { width: 100%; margin: 0; background-color: #ECECEC; border-width: 1px; border-style: solid; border-color: #A9B8C2; } #logodesc { margin-bottom: 5px; padding: 5px 25px; background: #D9DFE4; border-bottom: 1px solid #4787A7; } #menubar { margin: 0 25px; } #datebar { margin: 10px 25px 0 25px; } #findbar { width: 100%; margin: 0; padding: 0; border: 0; } .forumrules { background-color: #F9CC79; border-width: 1px; border-style: solid; border-color: #BB9860; padding: 4px; font-weight: normal; font-size: 1.1em; font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif; } .forumrules h3 { color: red; } #pageheader { } #pagecontent { } #pagefooter { } #poll { } #postrow { } #postdata { } /* Text --------------------- */ h1 { color: black; font-family: "Lucida Grande", "Trebuchet MS", Verdana, sans-serif; font-weight: bold; font-size: 1.8em; text-decoration: none; } h2 { font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 1.5em; text-decoration: none; line-height: 120%; } h3 { font-size: 1.3em; font-weight: bold; font-family: Arial, Helvetica, sans-serif; line-height: 120%; } h4 { margin: 0; font-size: 1.1em; font-weight: bold; } p { font-size: 1.1em; } p.moderators { margin: 0; float: left; color: black; font-weight: bold; } .rtl p.moderators { float: right; } p.linkmcp { margin: 0; float: right; white-space: nowrap; } .rtl p.linkmcp { float: left; } p.breadcrumbs { margin: 0; float: left; color: black; font-weight: bold; white-space: normal; font-size: 1em; } .rtl p.breadcrumbs { float: right; } p.datetime { margin: 0; float: right; white-space: nowrap; font-size: 1em; } .rtl p.datetime { float: left; } p.searchbar { padding: 2px 0; white-space: nowrap; } p.searchbarreg { margin: 0; float: right; white-space: nowrap; } .rtl p.searchbarreg { float: left; } p.forumdesc { padding-bottom: 4px; } p.topicauthor { margin: 1px 0; } p.topicdetails { margin: 1px 0; } .postreported, .postreported a:visited, .postreported a:hover, .postreported a:link, .postreported a:active { margin: 1px 0; color: red; font-weight:bold; } .postapprove, .postapprove a:visited, .postapprove a:hover, .postapprove a:link, .postapprove a:active { color: green; font-weight:bold; } .postapprove img, .postreported img { vertical-align: bottom; } .postauthor { color: #000000; } .postdetails { color: #000000; } .postbody { font-size: 1.3em; line-height: 1.4em; font-family: "Lucida Grande", "Trebuchet MS", Helvetica, Arial, sans-serif; } .postbody li, ol, ul { margin: 0 0 0 1.5em; } .rtl .postbody li, .rtl ol, .rtl ul { margin: 0 1.5em 0 0; } .posthilit { background-color: yellow; } .nav { margin: 0; color: black; font-weight: bold; } .pagination { padding: 4px; color: black; font-size: 1em; font-weight: bold; } .cattitle { } .gen { margin: 1px 1px; font-size: 1.2em; } .genmed { margin: 1px 1px; font-size: 1.1em; } .gensmall { margin: 1px 1px; font-size: 1em; } .copyright { color: #444; font-weight: normal; font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif; } .titles { font-family: "Lucida Grande", Helvetica, Arial, sans-serif; font-weight: bold; font-size: 1.3em; text-decoration: none; } .error { color: red; } /* Tables ------------ */ th { color: #FFA34F; font-size: 1.1em; font-weight: bold; background-color: #006699; background-image: url('./images/cellpic3.gif'); white-space: nowrap; padding: 7px 5px; } td { padding: 2px; } td.profile { padding: 4px; } .tablebg { background-color: #A9B8C2; } .catdiv { height: 28px; margin: 0; padding: 0; border: 0; background: white url('./images/cellpic2.jpg') repeat-y scroll top left; } .rtl .catdiv { background: white url('./images/cellpic2_rtl.jpg') repeat-y scroll top right; } .cat { height: 28px; margin: 0; padding: 0; border: 0; background-color: #C7D0D7; background-image: url('./images/cellpic1.gif'); text-indent: 4px; } .row1 { background-color: #ECECEC; padding: 4px; } .row2 { background-color: #DCE1E5; padding: 4px; } .row3 { background-color: #C0C8D0; padding: 4px; } .spacer { background-color: #D1D7DC; } hr { height: 1px; border-width: 0; background-color: #D1D7DC; color: #D1D7DC; } .legend { text-align:center; margin: 0 auto; } /* Links ------------ */ a:link { color: #006597; text-decoration: none; } a:active, a:visited { color: #005784; text-decoration: none; } a:hover { color: #D46400; text-decoration: underline; } a.forumlink { color: #069; font-weight: bold; font-family: "Lucida Grande", Helvetica, Arial, sans-serif; font-size: 1.2em; } a.topictitle { margin: 1px 0; font-family: "Lucida Grande", Helvetica, Arial, sans-serif; font-weight: bold; font-size: 1.2em; } a.topictitle:visited { color: #5493B4; text-decoration: none; } th a, th a:visited { color: #FFA34F !important; text-decoration: none; } th a:hover { text-decoration: underline; } /* Form Elements ------------ */ form { margin: 0; padding: 0; border: 0; } input { color: #333333; font-family: "Lucida Grande", Verdana, Helvetica, sans-serif; font-size: 1.1em; font-weight: normal; padding: 1px; border: 1px solid #A9B8C2; background-color: #FAFAFA; } textarea { background-color: #FAFAFA; color: #333333; font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif; font-size: 1.3em; line-height: 1.4em; font-weight: normal; border: 1px solid #A9B8C2; padding: 2px; } select { color: #333333; background-color: #FAFAFA; font-family: "Lucida Grande", Verdana, Helvetica, sans-serif; font-size: 1.1em; font-weight: normal; border: 1px solid #A9B8C2; padding: 1px; } option { padding: 0 1em 0 0; } option.disabled-option { color: graytext; } .rtl option { padding: 0 0 0 1em; } input.radio { border: none; background-color: transparent; } .post { background-color: white; border-style: solid; border-width: 1px; } .btnbbcode { color: #000000; font-weight: normal; font-size: 1.1em; font-family: "Lucida Grande", Verdana, Helvetica, sans-serif; background-color: #EFEFEF; border: 1px solid #666666; } .btnmain { font-weight: bold; background-color: #ECECEC; border: 1px solid #A9B8C2; cursor: pointer; padding: 1px 5px; font-size: 1.1em; } .btnlite { font-weight: normal; background-color: #ECECEC; border: 1px solid #A9B8C2; cursor: pointer; padding: 1px 5px; font-size: 1.1em; } .btnfile { font-weight: normal; background-color: #ECECEC; border: 1px solid #A9B8C2; padding: 1px 5px; font-size: 1.1em; } .helpline { background-color: #DEE3E7; border-style: none; } /* BBCode ------------ */ .quotetitle, .attachtitle { margin: 10px 5px 0 5px; padding: 4px; border-width: 1px 1px 0 1px; border-style: solid; border-color: #A9B8C2; color: #333333; background-color: #A9B8C2; font-size: 0.85em; font-weight: bold; } .quotetitle .quotetitle { font-size: 1em; } .quotecontent, .attachcontent { margin: 0 5px 10px 5px; padding: 5px; border-color: #A9B8C2; border-width: 0 1px 1px 1px; border-style: solid; font-weight: normal; font-size: 1em; line-height: 1.4em; font-family: "Lucida Grande", "Trebuchet MS", Helvetica, Arial, sans-serif; background-color: #FAFAFA; color: #4B5C77; } .attachcontent { font-size: 0.85em; } .codetitle { margin: 10px 5px 0 5px; padding: 2px 4px; border-width: 1px 1px 0 1px; border-style: solid; border-color: #A9B8C2; color: #333333; background-color: #A9B8C2; font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif; font-size: 0.8em; } .codecontent { direction: ltr; margin: 0 5px 10px 5px; padding: 5px; border-color: #A9B8C2; border-width: 0 1px 1px 1px; border-style: solid; font-weight: normal; color: #006600; font-size: 0.85em; font-family: Monaco, 'Courier New', monospace; background-color: #FAFAFA; } .syntaxbg { color: #FFFFFF; } .syntaxcomment { color: #FF8000; } .syntaxdefault { color: #0000BB; } .syntaxhtml { color: #000000; } .syntaxkeyword { color: #007700; } .syntaxstring { color: #DD0000; } /* Private messages ------------------ */ .pm_marked_colour { background-color: #000000; } .pm_replied_colour { background-color: #A9B8C2; } .pm_friend_colour { background-color: #007700; } .pm_foe_colour { background-color: #DD0000; } /* Misc ------------ */ img { border: none; } .sep { color: black; background-color: #FFA34F; } table.colortable td { padding: 0; } pre { font-size: 1.1em; font-family: Monaco, 'Courier New', monospace; } .nowrap { white-space: nowrap; } .username-coloured { font-weight: bold; } --- NEW FILE: theme.cfg --- # # phpBB Theme Configuration File # # @package phpBB3 # @copyright (c) 2005 phpBB Group # @license http://opensource.org/licenses/gpl-license.php GNU Public License # # # At the left is the name, please do not change this # At the right the value is entered # For on/off options the valid values are on, off, 1, 0, true and false # # Values get trimmed, if you want to add a space in front or at the end of # the value, then enclose the value with single or double quotes. # Single and double quotes do not need to be escaped. # # Available and used values: # parse_css_file # # General Information about this theme name = subsilver2 copyright = © phpBB Group, 2003 version = 3.0.0 # Some configuration options # # You have to turn this option on if you want to use the # path template variables ({T_IMAGESET_PATH} for example) within # your css file. # This is mostly the case if you want to use language specific # images within your css file. # parse_css_file = off |
Update of /cvsroot/mxbb/core/templates/subsilver2/theme/images In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv22217/images Added Files: background.gif cellpic.gif cellpic1.gif cellpic2.jpg cellpic2_rtl.jpg cellpic3.gif created_by.jpg icon_mini_faq.gif icon_mini_groups.gif icon_mini_login.gif icon_mini_members.gif icon_mini_message.gif icon_mini_profile.gif icon_mini_register.gif icon_mini_search.gif index.htm logo.gif no_avatar.gif spacer.gif whosonline.gif Log Message: styles changes --- NEW FILE: spacer.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_search.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic2_rtl.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: background.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: logo.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_message.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic1.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_groups.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic2.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic3.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_faq.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_login.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: created_by.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: no_avatar.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_register.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_profile.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: whosonline.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_members.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: index.htm --- <html> <head> <title>subSilver created by subBlue Design</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> <table width="100%" height="100%" cellspacing="0" cellpadding="0" border="0"> <tr> <td align="center" valign="middle"><a href="http://www.subblue.com/" target="_new"><img src="created_by.jpg" width="400" height="300" alt="Created by subBlue Design" /></a></td> </tr> </table> </body> </html> |