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: MW <jo...@us...> - 2008-02-12 10:22:26
|
Update of /cvsroot/mxbb/core/modules/mx_rebuild_search_tables/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv19389/modules/mx_rebuild_search_tables/admin Modified Files: admin_rebuild_mx_search.php Log Message: refix Index: admin_rebuild_mx_search.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_rebuild_search_tables/admin/admin_rebuild_mx_search.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** admin_rebuild_mx_search.php 12 Feb 2008 09:59:08 -0000 1.12 --- admin_rebuild_mx_search.php 12 Feb 2008 10:22:21 -0000 1.13 *************** *** 21,25 **** //$time_limit = $mx_request_vars->get('time_limit', MX_TYPE_INT); //quick fix while correct logic is worked out ! $time_limit = (int)$_GET('time_limit'); define ('IN_PORTAL', 1); --- 21,25 ---- //$time_limit = $mx_request_vars->get('time_limit', MX_TYPE_INT); //quick fix while correct logic is worked out ! $time_limit = (int)$_GET['time_limit']; define ('IN_PORTAL', 1); |
|
From: MW <jo...@us...> - 2008-02-12 09:59:17
|
Update of /cvsroot/mxbb/core/modules/mx_rebuild_search_tables/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv17604/modules/mx_rebuild_search_tables/admin Modified Files: admin_rebuild_mx_search.php Log Message: quick fix while correct logic is worked out Index: admin_rebuild_mx_search.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_rebuild_search_tables/admin/admin_rebuild_mx_search.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** admin_rebuild_mx_search.php 9 Feb 2008 20:53:36 -0000 1.11 --- admin_rebuild_mx_search.php 12 Feb 2008 09:59:08 -0000 1.12 *************** *** 17,23 **** } ! global $mx_request_vars; $start_time = time (); ! $time_limit = $mx_request_vars->get('time_limit', MX_TYPE_INT); define ('IN_PORTAL', 1); --- 17,25 ---- } ! //global $mx_request_vars; $start_time = time (); ! //$time_limit = $mx_request_vars->get('time_limit', MX_TYPE_INT); ! //quick fix while correct logic is worked out ! $time_limit = (int)$_GET('time_limit'); define ('IN_PORTAL', 1); |
|
From: OryNider <ory...@us...> - 2008-02-12 08:30:09
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20649 Modified Files: common.php Log Message: don't enable all errors pls Index: common.php =================================================================== RCS file: /cvsroot/mxbb/core/common.php,v retrieving revision 1.84 retrieving revision 1.85 diff -C2 -d -r1.84 -r1.85 *** common.php 12 Feb 2008 08:23:14 -0000 1.84 --- common.php 12 Feb 2008 08:30:03 -0000 1.85 *************** *** 27,33 **** //define( 'DEBUG_EXTRA', 1 ); // [Admin Option] Show memory usage. Show link to full SQL debug report in footer. Beware, this makes the page slow to load. For debugging only. error_reporting(E_ALL & ~E_NOTICE); ! //ini_set( 'display_errors', '1' ); ! //error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables ! //include($mx_root_path . 'modules/mx_shared/ErrorHandler/prepend.' . $phpEx); // For nice error output // ================================================================================ --- 27,33 ---- //define( 'DEBUG_EXTRA', 1 ); // [Admin Option] Show memory usage. Show link to full SQL debug report in footer. Beware, this makes the page slow to load. For debugging only. error_reporting(E_ALL & ~E_NOTICE); ! @ini_set( 'display_errors', '1' ); ! error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables ! include($mx_root_path . 'modules/mx_shared/ErrorHandler/prepend.' . $phpEx); // For nice error output // ================================================================================ |
|
From: OryNider <ory...@us...> - 2008-02-12 08:24:11
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18342 Modified Files: mx_install.php Log Message: Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.93 retrieving revision 1.94 diff -C2 -d -r1.93 -r1.94 *** mx_install.php 12 Feb 2008 08:18:45 -0000 1.93 --- mx_install.php 12 Feb 2008 08:24:07 -0000 1.94 *************** *** 179,184 **** if (@phpversion() >= '5.0.0' && (!@ini_get('register_long_arrays') || @ini_get('register_long_arrays') == '0' || strtolower(@ini_get('register_long_arrays')) == 'off')) { ! $HTTP_POST_VAR = $_POST; ! $HTTP_GET_VAR = $_GET; $HTTP_SERVER_VARS = $_SERVER; $HTTP_COOKIE_VARS = $_COOKIE; --- 179,184 ---- if (@phpversion() >= '5.0.0' && (!@ini_get('register_long_arrays') || @ini_get('register_long_arrays') == '0' || strtolower(@ini_get('register_long_arrays')) == 'off')) { ! $HTTP_POST_VARS = $_POST; ! $HTTP_GET_VARS = $_GET; $HTTP_SERVER_VARS = $_SERVER; $HTTP_COOKIE_VARS = $_COOKIE; *************** *** 527,532 **** // Do install -------------------------------------------------- // ! $confirm = $mx_request_vars->is_request('confirm'); // && !$mx_request_vars->is_post('debug'); ! //$confirm = (isset($_POST['confirm']) || isset($_GET['confirm'])); if($confirm) { --- 527,532 ---- // Do install -------------------------------------------------- // ! $confirm = $mx_request_vars->is_request('confirm') && !$mx_request_vars->is_post('debug'); ! if($confirm) { |
|
From: Culprit <cul...@us...> - 2008-02-12 08:24:05
|
Update of /cvsroot/mxbb/core/templates/prosilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18101/core/templates/prosilver Modified Files: overall_header.html Log Message: prosilver fix Index: overall_header.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/overall_header.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** overall_header.html 23 Dec 2007 00:12:19 -0000 1.7 --- overall_header.html 12 Feb 2008 08:23:57 -0000 1.8 *************** *** 114,119 **** </li> <!-- END switch_user_logged_out --> ! <li class="linklist"> ! <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> </li> </ul> --- 114,119 ---- </li> <!-- END switch_user_logged_out --> ! <li class="icon-logout"> ! <span class="mainmenu"><a href="{U_LOGIN_LOGOUT}" class="mainmenu">{L_LOGIN_LOGOUT}</a></span> </li> </ul> *************** *** 127,139 **** <!-- BEGIN phpbb_stats --> <ul class="linklist"> ! <li class="leftside"><span class="gensmall"> ! <!-- BEGIN switch_user_logged_in --> ! {LAST_VISIT_DATE}<br /> ! <!-- END switch_user_logged_in --> ! {CURRENT_TIME}<br /></span> ! </li> <li class="rightside"> <!-- 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> --- 127,139 ---- <!-- BEGIN phpbb_stats --> <ul class="linklist"> ! <!-- BEGIN switch_user_logged_in --> ! <li class="rightside">{LAST_VISIT_DATE}</li> ! <!-- END switch_user_logged_in --> ! <li class="leftside">{CURRENT_TIME}</li> ! </ul> ! <ul class="linklist"> <li class="rightside"> <!-- BEGIN switch_user_logged_in --> ! <a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a> • <a href="{U_SEARCH_SELF}" class="gensmall">{L_SEARCH_SELF}</a> • <!-- END switch_user_logged_in --> <a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a> |
|
From: OryNider <ory...@us...> - 2008-02-12 08:23:27
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18058 Modified Files: common.php Log Message: Index: common.php =================================================================== RCS file: /cvsroot/mxbb/core/common.php,v retrieving revision 1.83 retrieving revision 1.84 diff -C2 -d -r1.83 -r1.84 *** common.php 12 Feb 2008 08:19:06 -0000 1.83 --- common.php 12 Feb 2008 08:23:14 -0000 1.84 *************** *** 134,139 **** if (@phpversion() >= '5.0.0' && (!@ini_get('register_long_arrays') || @ini_get('register_long_arrays') == '0' || strtolower(@ini_get('register_long_arrays')) == 'off')) { ! $HTTP_POST_VAR = $_POST; ! $HTTP_GET_VAR = $_GET; $HTTP_SERVER_VARS = $_SERVER; $HTTP_COOKIE_VARS = $_COOKIE; --- 134,139 ---- if (@phpversion() >= '5.0.0' && (!@ini_get('register_long_arrays') || @ini_get('register_long_arrays') == '0' || strtolower(@ini_get('register_long_arrays')) == 'off')) { ! $HTTP_POST_VARS = $_POST; ! $HTTP_GET_VARS = $_GET; $HTTP_SERVER_VARS = $_SERVER; $HTTP_COOKIE_VARS = $_COOKIE; |
|
From: OryNider <ory...@us...> - 2008-02-12 08:19:11
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv16156 Modified Files: common.php Log Message: // PHP5 with register_long_arrays off? This is requested in class mx_request_vars, do not change! Index: common.php =================================================================== RCS file: /cvsroot/mxbb/core/common.php,v retrieving revision 1.82 retrieving revision 1.83 diff -C2 -d -r1.82 -r1.83 *** common.php 11 Feb 2008 11:13:17 -0000 1.82 --- common.php 12 Feb 2008 08:19:06 -0000 1.83 *************** *** 128,131 **** --- 128,164 ---- } + // The following code (unsetting globals) + // Thanks to Matt Kavanagh and Stefan Esser for providing feedback as well as patch files + + // PHP5 with register_long_arrays off? This is requested in class mx_request_vars, do not change! + if (@phpversion() >= '5.0.0' && (!@ini_get('register_long_arrays') || @ini_get('register_long_arrays') == '0' || strtolower(@ini_get('register_long_arrays')) == 'off')) + { + $HTTP_POST_VAR = $_POST; + $HTTP_GET_VAR = $_GET; + $HTTP_SERVER_VARS = $_SERVER; + $HTTP_COOKIE_VARS = $_COOKIE; + $HTTP_ENV_VARS = $_ENV; + $HTTP_POST_FILES = $_FILES; + + // _SESSION is the only superglobal which is conditionally set + if (isset($_SESSION)) + { + $HTTP_SESSION_VARS = $_SESSION; + } + } + + + // Protect against GLOBALS tricks + if (isset($_POST['GLOBALS']) || isset($HTTP_POST_FILES['GLOBALS']) || isset($_GET['GLOBALS']) || isset($HTTP_COOKIE_VARS['GLOBALS'])) + { + die("Hacking attempt"); + } + + // Protect against HTTP_SESSION_VARS tricks + if (isset($HTTP_SESSION_VARS) && !is_array($HTTP_SESSION_VARS)) + { + die("Hacking attempt"); + } + // // Define some basic configuration arrays this also prevents |
|
From: OryNider <ory...@us...> - 2008-02-12 08:18:50
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv15822 Modified Files: mx_install.php Log Message: // PHP5 with register_long_arrays off? This is requested in class mx_request_vars, do not change! Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.92 retrieving revision 1.93 diff -C2 -d -r1.92 -r1.93 *** mx_install.php 12 Feb 2008 07:34:29 -0000 1.92 --- mx_install.php 12 Feb 2008 08:18:45 -0000 1.93 *************** *** 176,184 **** // Thanks to Matt Kavanagh and Stefan Esser for providing feedback as well as patch files ! // PHP5 with register_long_arrays off? if (@phpversion() >= '5.0.0' && (!@ini_get('register_long_arrays') || @ini_get('register_long_arrays') == '0' || strtolower(@ini_get('register_long_arrays')) == 'off')) { ! $_POST = $_POST; ! $_GET = $_GET; $HTTP_SERVER_VARS = $_SERVER; $HTTP_COOKIE_VARS = $_COOKIE; --- 176,184 ---- // Thanks to Matt Kavanagh and Stefan Esser for providing feedback as well as patch files ! // PHP5 with register_long_arrays off? This is requested in class mx_request_vars, do not change! if (@phpversion() >= '5.0.0' && (!@ini_get('register_long_arrays') || @ini_get('register_long_arrays') == '0' || strtolower(@ini_get('register_long_arrays')) == 'off')) { ! $HTTP_POST_VAR = $_POST; ! $HTTP_GET_VAR = $_GET; $HTTP_SERVER_VARS = $_SERVER; $HTTP_COOKIE_VARS = $_COOKIE; *************** *** 527,536 **** // Do install -------------------------------------------------- // ! $confirm = $mx_request_vars->is_request('confirm') && !$mx_request_vars->is_post('debug'); ! ! if( $confirm ) { $install_mode = $mx_request_vars->request('install_mode', MX_TYPE_NO_TAGS); ! $install_mode = ( preg_match('#^[a-z_]+$#', $install_mode) ? strip_tags($install_mode) : '' ); $schemas = array(); --- 527,536 ---- // Do install -------------------------------------------------- // ! $confirm = $mx_request_vars->is_request('confirm'); // && !$mx_request_vars->is_post('debug'); ! //$confirm = (isset($_POST['confirm']) || isset($_GET['confirm'])); ! if($confirm) { $install_mode = $mx_request_vars->request('install_mode', MX_TYPE_NO_TAGS); ! $install_mode = (preg_match('#^[a-z_]+$#', $install_mode) ? strip_tags($install_mode) : ''); $schemas = array(); |
|
From: OryNider <ory...@us...> - 2008-02-12 07:34:51
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3565 Modified Files: mx_install.php Log Message: class mx_request_vars included and initialized Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.91 retrieving revision 1.92 diff -C2 -d -r1.91 -r1.92 *** mx_install.php 11 Feb 2008 11:13:17 -0000 1.91 --- mx_install.php 12 Feb 2008 07:34:29 -0000 1.92 *************** *** 384,389 **** // HERE BEGINS THE PARTY... // ================================================================================ ! $phpEx = substr(strrchr(__FILE__, '.'), 1); ! include($mx_root_path . "install/includes/functions_install.$phpEx"); --- 384,388 ---- // HERE BEGINS THE PARTY... // ================================================================================ ! include($mx_root_path . 'includes/mx_functions_core.' . $phpEx); // CORE class include($mx_root_path . "install/includes/functions_install.$phpEx"); *************** *** 397,403 **** // // Send file -------------------------------------------------- // ! if ($mx_request_vars->post('send_file', MX_TYPE_INT) == 1 ) { header( "Content-Type: text/x-delimtext; name=\"config.$phpEx\"" ); --- 396,407 ---- // + // instatiate the mx_request_vars class + // make sure to do before it's ever used + $mx_request_vars = new mx_request_vars(); + + // // Send file -------------------------------------------------- // ! if ($mx_request_vars->post('send_file', MX_TYPE_INT) == 1) { header( "Content-Type: text/x-delimtext; name=\"config.$phpEx\"" ); *************** *** 532,536 **** $schemas = array(); ! switch( $install_mode ) { case 'install': --- 536,540 ---- $schemas = array(); ! switch($install_mode) { case 'install': |
|
From: Culprit <cul...@us...> - 2008-02-12 06:33:24
|
Update of /cvsroot/mxbb/core/includes/shared/phpbb3/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv31357/core/includes/shared/phpbb3/includes Modified Files: functions.php Log Message: functions fix for phpBB3 backend Index: functions.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/shared/phpbb3/includes/functions.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** functions.php 8 Feb 2008 15:55:23 -0000 1.11 --- functions.php 12 Feb 2008 06:33:18 -0000 1.12 *************** *** 2949,2953 **** $message = str_replace($match, $replace, $message); ! $match = get_preg_expression('bbcode_htm'); $replace = array('\1', '\1', '\2', '\1', '', ''); --- 2949,2953 ---- $message = str_replace($match, $replace, $message); ! $match = phpBB3::get_preg_expression('bbcode_htm'); $replace = array('\1', '\1', '\2', '\1', '', ''); *************** *** 2967,2971 **** $text = preg_replace("#\[\/?[a-z0-9\*\+\-]+(?:=.*?)?(?::[a-z])?(\:?$uid)\]#", ' ', $text); ! $match = get_preg_expression('bbcode_htm'); $replace = array('\1', '\1', '\2', '\1', '', ''); --- 2967,2971 ---- $text = preg_replace("#\[\/?[a-z0-9\*\+\-]+(?:=.*?)?(?::[a-z])?(\:?$uid)\]#", ' ', $text); ! $match = phpBB3::get_preg_expression('bbcode_htm'); $replace = array('\1', '\1', '\2', '\1', '', ''); *************** *** 3066,3070 **** global $phpbb_root_path, $phpEx; ! decode_message($text, $uid); return array( --- 3066,3070 ---- global $phpbb_root_path, $phpEx; ! phpBB3::decode_message($text, $uid); return array( *************** *** 3213,3229 **** // relative urls for this board ! $magic_url_match[] = '#(^|[\n\t (>])(' . preg_quote($server_url, '#') . ')/(' . get_preg_expression('relative_url_inline') . ')#ie'; $magic_url_replace[] = "make_clickable_callback(MAGIC_URL_LOCAL, '\$1', '\$2', '\$3', '$local_class')"; // matches a xxxx://aaaaa.bbb.cccc. ... ! $magic_url_match[] = '#(^|[\n\t (>])(' . get_preg_expression('url_inline') . ')#ie'; $magic_url_replace[] = "make_clickable_callback(MAGIC_URL_FULL, '\$1', '\$2', '', '$class')"; // matches a "www.xxxx.yyyy[/zzzz]" kinda lazy URL thing ! $magic_url_match[] = '#(^|[\n\t (>])(' . get_preg_expression('www_url_inline') . ')#ie'; $magic_url_replace[] = "make_clickable_callback(MAGIC_URL_WWW, '\$1', '\$2', '', '$class')"; // matches an email@domain type address at the start of a line, or after a space or after what might be a BBCode. ! $magic_url_match[] = '/(^|[\n\t (>])(' . get_preg_expression('email') . ')/ie'; $magic_url_replace[] = "make_clickable_callback(MAGIC_URL_EMAIL, '\$1', '\$2', '', '')"; } --- 3213,3229 ---- // relative urls for this board ! $magic_url_match[] = '#(^|[\n\t (>])(' . preg_quote($server_url, '#') . ')/(' . phpBB3::get_preg_expression('relative_url_inline') . ')#ie'; $magic_url_replace[] = "make_clickable_callback(MAGIC_URL_LOCAL, '\$1', '\$2', '\$3', '$local_class')"; // matches a xxxx://aaaaa.bbb.cccc. ... ! $magic_url_match[] = '#(^|[\n\t (>])(' . phpBB3::get_preg_expression('url_inline') . ')#ie'; $magic_url_replace[] = "make_clickable_callback(MAGIC_URL_FULL, '\$1', '\$2', '', '$class')"; // matches a "www.xxxx.yyyy[/zzzz]" kinda lazy URL thing ! $magic_url_match[] = '#(^|[\n\t (>])(' . phpBB3::get_preg_expression('www_url_inline') . ')#ie'; $magic_url_replace[] = "make_clickable_callback(MAGIC_URL_WWW, '\$1', '\$2', '', '$class')"; // matches an email@domain type address at the start of a line, or after a space or after what might be a BBCode. ! $magic_url_match[] = '/(^|[\n\t (>])(' . phpBB3::get_preg_expression('email') . ')/ie'; $magic_url_replace[] = "make_clickable_callback(MAGIC_URL_EMAIL, '\$1', '\$2', '', '')"; } |
|
From: Culprit <cul...@us...> - 2008-02-12 06:29:36
|
Update of /cvsroot/mxbb/core/includes/shared/phpbb3/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv31175/core/includes/shared/phpbb3/includes Modified Files: functions_module.php functions_hook.php Log Message: ACP update related phpbb3 backend Index: functions_hook.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/shared/phpbb3/includes/functions_hook.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** functions_hook.php 9 Feb 2008 12:42:03 -0000 1.9 --- functions_hook.php 12 Feb 2008 06:29:31 -0000 1.10 *************** *** 19,28 **** mx_page::load_file( 'functions_module', 'phpbb3'); mx_page::load_file( 'message_parser', 'phpbb3'); - //mx_page::load_file( 'functions_content', 'phpbb3'); - //mx_page::load_file( 'functions_user', 'phpbb3'); - - //include_once( $mx_root_path . 'includes/shared/phpbb3/includes/functions_module.' . $phpEx ); - // include_once( $mx_root_path . 'includes/sessions/phpbb3/auth.' . $phpEx ); - // include_once( $mx_root_path . 'includes/sessions/phpbb3/session.' . $phpEx ); class mx_phpbb3_admin --- 19,22 ---- *************** *** 183,187 **** '#([^_])append_sid#si' => '\1mx_append_sid', '#\$module_id[ \t][^;]*;#si' => "\$module_id = '" . $this->action_scripts[$panel] . "';", ! '#\$mode[ \t][^;]*;#si' => "\$mode = '" . $mx_request_vars->request( 'mode') . "';", '#request_var#si' => '$mx_request_vars->request', '#login_box\(#si' => '// login_box(', --- 177,181 ---- '#([^_])append_sid#si' => '\1mx_append_sid', '#\$module_id[ \t][^;]*;#si' => "\$module_id = '" . $this->action_scripts[$panel] . "';", ! '#\$mode[ \t][^;]*;#si' => "\$mode = '" . $mx_request_vars->request( 'mode', MX_TYP_NO_TAGS) . "';", '#request_var#si' => '$mx_request_vars->request', '#login_box\(#si' => '// login_box(', *************** *** 233,237 **** print '<pre>'; print htmlentities( $html); ! print_r( $match_link); die( ); } --- 227,231 ---- print '<pre>'; print htmlentities( $html); ! //print_r( $match_link); die( ); } *************** *** 247,253 **** $admin_path = $mx_root_path. 'acp/'; ! $match_link_cnt = preg_match_all( '#(action|href)=[\'"](([^?]*)\??([^\'"]*)?)?[\'"]#si', $html, $match_link); ! $preg_array = array( '##si' => ''); for( $i=0; $i<$match_link_cnt; $i++) { --- 241,254 ---- $admin_path = $mx_root_path. 'acp/'; ! $match_link_cnt = preg_match_all( '#(action|href)=[\'"](([^?\'"]*)\??([^\'"]*)?)[\'"]#si', $html, $match_link); ! if( 0) ! { ! print '<pre>'; ! print htmlentities( trim($html)); ! print_r( $match_link); ! die(); ! } ! $preg_array = array( '##si' => ''); for( $i=0; $i<$match_link_cnt; $i++) { *************** *** 273,277 **** $link_orig = preg_replace( '#([./\[\]\(\)?\\\\])#si', "\\\\\\1", $match_link[2][$i]); $link_orig = str_replace( '#', '\#', $link_orig); ! $preg_array = array_merge( $preg_array, array( '#' . $link_orig .'#si' => $admin_path . $link)); } //return $html; --- 274,281 ---- $link_orig = preg_replace( '#([./\[\]\(\)?\\\\])#si', "\\\\\\1", $match_link[2][$i]); $link_orig = str_replace( '#', '\#', $link_orig); ! if ( !empty($link_orig) ) ! { ! $preg_array = array_merge( $preg_array, array( '#' . $link_orig .'#si' => $admin_path . $link)); ! } } //return $html; *************** *** 279,283 **** { print '<pre>'; ! print htmlentities( trim($html)); foreach( $preg_array as $patt => $repl) { --- 283,287 ---- { print '<pre>'; ! //print htmlentities( trim($html)); foreach( $preg_array as $patt => $repl) { *************** *** 286,289 **** --- 290,294 ---- die(); } + return preg_replace( array_keys( $preg_array), $preg_array, $html); } Index: functions_module.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/shared/phpbb3/includes/functions_module.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** functions_module.php 8 Feb 2008 14:59:32 -0000 1.10 --- functions_module.php 12 Feb 2008 06:29:31 -0000 1.11 *************** *** 2,6 **** /** * ! * @package phpBB3 * @version $Id$ * @copyright (c) 2005 phpBB Group --- 2,7 ---- /** * ! * @package MX-Publisher phpBB3 ! * @subpackage Admin * @version $Id$ * @copyright (c) 2005 phpBB Group *************** *** 17,30 **** } ! // ! // Common global functions ! // Fixes for MX-Publisher: ! // $config -> $board_config ! // $cache -> $mx_cache ! // $user -> $mx_user ! // $auth -> $phpbb_auth ! // Added $mx_root_path ! // append_sid -> mx3_append_sid ! // /** --- 18,33 ---- } ! /** ! * Common global functions for replacing to work MX-Publisher with phpbb3 ! * VARIABLES: ! * $config -> $board_config ! * $cache -> $mx_cache ! * $user -> $mx_user ! * $auth -> $phpbb_auth ! * Added $mx_root_path ! * FUNCTIONS: ! * append_sid -> mx3_append_sid ! * add_log -> mx_add_log ! */ /** *************** *** 48,52 **** 'request_var', 'add_form_key', 'generate_text_for_display', 'check_form_key', 'gen_sort_selects', 'on_page', 'generate_pagination', 'generate_text_for_edit', 'generate_text_for_storage', 'group_create', ! 'unique_id' ); /** --- 51,55 ---- 'request_var', 'add_form_key', 'generate_text_for_display', 'check_form_key', 'gen_sort_selects', 'on_page', 'generate_pagination', 'generate_text_for_edit', 'generate_text_for_storage', 'group_create', ! 'unique_id', 'set_config', 'style_select', 'language_select' ); /** *************** *** 430,434 **** $modulecode = file_get_contents("$module_path/{$this->p_class}_$this->p_name.$phpEx"); ! $preg_array = array( '#^<\?(php)?|\?>$#si' => '', --- 433,437 ---- $modulecode = file_get_contents("$module_path/{$this->p_class}_$this->p_name.$phpEx"); ! $FUNCTION_REPLACE = implode( '|', $this->FUNCTION_REPLACE_PHPBB3_ARRAY); $preg_array = array( '#^<\?(php)?|\?>$#si' => '', *************** *** 440,443 **** --- 443,447 ---- '#\$auth-#si' => '$phpbb_auth-', '#append_sid\(#si' => 'mx3_append_sid(', + '#add_log\(#si' => 'mx_add_log(', '#get_username_string\(#si' => 'mx_get_username_string(', '#global#si' => 'global $mx_acp,', *************** *** 449,453 **** } $mx_acp->template->assign_vars', ! '#(' . implode( '|', $this->FUNCTION_REPLACE_PHPBB3_ARRAY) . ')\(#si' => 'phpBB3::\1(', ); --- 453,458 ---- } $mx_acp->template->assign_vars', ! '#(' . $FUNCTION_REPLACE . ')\(#si' => 'phpBB3::\1(', ! "#'(" . $FUNCTION_REPLACE . ")'#si" => "'phpBB3::\\1'" ); |
|
From: Jon O. <jon...@us...> - 2008-02-11 23:00:55
|
Update of /cvsroot/mxbb/core/modules/mx_navmenu/templates/mxBase2/images In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12217/images Added Files: arrow_right.gif index.htm Log Message: for mxBase 1 o 2 --- NEW FILE: arrow_right.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |
|
From: Jon O. <jon...@us...> - 2008-02-11 23:00:55
|
Update of /cvsroot/mxbb/core/modules/mx_navmenu/templates/mxBase2 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12217 Added Files: mx_menu_overall_navigation.tpl mx_menu_vertical.tpl Log Message: for mxBase 1 o 2 --- NEW FILE: mx_menu_overall_navigation.tpl --- <!-- BEGIN catrow --> <span class="cat-button{catrow.CURRENT}" onmouseout="this.className='cat-button{catrow.CURRENT}';" onmouseover="this.className='cat-button-current';"><a href="{catrow.U_CATEGORY_URL}" target="{catrow.U_CATEGORY_URL_TARGET}" title="{catrow.CATEGORY_DESC}">{catrow.CATEGORY_NAME}</a></span> <!-- END catrow --> --- NEW FILE: mx_menu_vertical.tpl --- <ul> <!-- BEGIN catrow --> <!-- BEGIN menurow_cat --> <li id="cat"><a href="{catrow.menurow_cat.U_CATEGORY_URL}" title="">{catrow.menurow_cat.CATEGORY_NAME}</a></li> <!-- END menurow_cat --> <!-- BEGIN menurow --> <li id="{catrow.menurow.MENU_STYLE}"><a href="{catrow.menurow.U_MENU_URL}" title="">{catrow.menurow.U_MENU_ICON}{catrow.menurow.MENU_NAME}</a></li> <!-- END menurow --> <!-- END catrow --> </ul> |
|
From: Jon O. <jon...@us...> - 2008-02-11 23:00:43
|
Update of /cvsroot/mxbb/core/modules/mx_navmenu/templates/mxBase1 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12192 Added Files: mx_menu_overall_navigation.tpl mx_menu_vertical.tpl Log Message: for mxBase 1 o 2 --- NEW FILE: mx_menu_overall_navigation.tpl --- <!-- BEGIN catrow --> <span class="cat-button{catrow.CURRENT}" onmouseout="this.className='cat-button{catrow.CURRENT}';" onmouseover="this.className='cat-button-current';"><a href="{catrow.U_CATEGORY_URL}" target="{catrow.U_CATEGORY_URL_TARGET}" title="{catrow.CATEGORY_DESC}">{catrow.CATEGORY_NAME}</a></span> <!-- END catrow --> --- NEW FILE: mx_menu_vertical.tpl --- <ul> <!-- BEGIN catrow --> <!-- BEGIN menurow_cat --> <li id="cat"><a href="{catrow.menurow_cat.U_CATEGORY_URL}" title="">{catrow.menurow_cat.CATEGORY_NAME}</a></li> <!-- END menurow_cat --> <!-- BEGIN menurow --> <li id="{catrow.menurow.MENU_STYLE}"><a href="{catrow.menurow.U_MENU_URL}" title="">{catrow.menurow.U_MENU_ICON}{catrow.menurow.MENU_NAME}</a></li> <!-- END menurow --> <!-- END catrow --> </ul> |
|
From: Jon O. <jon...@us...> - 2008-02-11 23:00:43
|
Update of /cvsroot/mxbb/core/modules/mx_navmenu/templates/mxBase1/images In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12192/images Added Files: arrow_right.gif index.htm Log Message: for mxBase 1 o 2 --- NEW FILE: arrow_right.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |
|
From: Jon O. <jon...@us...> - 2008-02-11 22:59:56
|
Update of /cvsroot/mxbb/core/modules/mx_navmenu/templates/mxBase2/images In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11732/images Log Message: Directory /cvsroot/mxbb/core/modules/mx_navmenu/templates/mxBase2/images added to the repository |
|
From: Jon O. <jon...@us...> - 2008-02-11 22:58:38
|
Update of /cvsroot/mxbb/core/modules/mx_navmenu/templates/mxBase1/images In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11274/images Log Message: Directory /cvsroot/mxbb/core/modules/mx_navmenu/templates/mxBase1/images added to the repository |
|
From: Jon O. <jon...@us...> - 2008-02-11 22:58:20
|
Update of /cvsroot/mxbb/core/modules/mx_navmenu/templates/mxBase2 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11251/mxBase2 Log Message: Directory /cvsroot/mxbb/core/modules/mx_navmenu/templates/mxBase2 added to the repository |
|
From: Jon O. <jon...@us...> - 2008-02-11 22:58:20
|
Update of /cvsroot/mxbb/core/modules/mx_navmenu/templates/mxBase1 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11251/mxBase1 Log Message: Directory /cvsroot/mxbb/core/modules/mx_navmenu/templates/mxBase1 added to the repository |
|
From: Jon O. <jon...@us...> - 2008-02-11 22:57:24
|
Update of /cvsroot/mxbb/core/templates/mxBase2/images/theme In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10822 Added Files: bg.gif leftcol.gif spacer.gif top.jpg Log Message: Here we go. Not ready yet. but not to break fresh install ;) --- NEW FILE: spacer.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: bg.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: leftcol.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: top.jpg --- (This appears to be a binary file; contents omitted.) |
|
From: Jon O. <jon...@us...> - 2008-02-11 22:57:10
|
Update of /cvsroot/mxbb/core/templates/mxBase2/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10424/admin Added Files: index.htm page_footer.tpl page_header.tpl Log Message: Here we go. Not ready yet. but not to break fresh install ;) --- NEW FILE: page_header.tpl --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html dir="{S_CONTENT_DIRECTION}"> <head> {META} <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" /> <title>{SITENAME} - {L_MX_ADMIN}</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} {MX_ICON_CSS} <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> </head> <body bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}"> <a name="top"></a> --- NEW FILE: page_footer.tpl --- <!-- Please note that the following copyright notice MUST be displayed on each and every page output by phpBB. You may alter the font, colour etc. but you CANNOT remove it, nor change it so that it be, to all intents and purposes, invisible. You may ADD your own notice to it should you have altered the code but you may not replace it. The hyperlink must also remain intact. These conditions are part of the licence this software is released under. See the LICENCE and README files for more information. The phpBB Group : 2001 & mxBB Team : 2002 //--> <div align="center"><span class="copyright">{POWERED_BY} <a href="http://www.mx-system.com/" target="_mx-system" class="copyright">mxBB-Portal</a> {MX_VERSION} © 2001-2006 & <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> {PHPBB_VERSION} © 2001, 2003 phpBB Group</span></div> <!-- This displays generation info at the bottom of the page --> {EXECUTION_STATS} </body> </html> --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |
|
From: Jon O. <jon...@us...> - 2008-02-11 22:57:10
|
Update of /cvsroot/mxbb/core/templates/mxBase2 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10424 Added Files: gecko.css index.htm mxBase2.cfg mxBase2.css mx_main_layout.tpl mx_main_layout_1_col.tpl overall_footer.tpl overall_header.tpl overall_noheader.tpl Log Message: Here we go. Not ready yet. but not to break fresh install ;) --- NEW FILE: mx_main_layout.tpl --- <div id="outer"> <div id="inner"> <!-- BEGIN layout_column --> <div id="{layout_column.COL_CLASS}"> <!-- BEGIN blocks --> <div class="blockcontainer"> <!-- BEGIN block_header --> <div class="blockheader"> <!-- END block_header --> <!-- BEGIN show_title --> <span class="blocktitle">{layout_column.blocks.show_title.L_TITLE}</span> <!-- END show_title --> <!-- BEGIN edit --> <div class="editCP_switch" style="display: {layout_column.blocks.edit.EDITCP_SHOW};"> <form action="{layout_column.blocks.edit.EDIT_ACTION}" method="post" class="trimform"> {layout_column.blocks.edit.EDIT_IMG} {layout_column.blocks.edit.S_HIDDEN_FORM_FIELDS} </form> </div> <!-- BEGIN hidden_block --> <div class="blockhidden"> <span class="gensmall"><i>{layout_column.blocks.edit.hidden_block.HIDDEN_BLOCK}</i></span> </div> <!-- END hidden_block --> <!-- END edit --> <!-- BEGIN block_header --> </div> <!-- END block_header --> <div class="block" id="block_{layout_column.blocks.BLOCK_ID}"> {layout_column.blocks.BLOCK} </div> <!-- BEGIN block_stats --> <!-- <div align="right"> <span class="copyright">{layout_column.blocks.block_stats.L_BLOCK_UPDATED} {layout_column.blocks.block_stats.EDIT_TIME} {layout_column.blocks.block_stats.EDITOR_NAME}</span> </div> --> <!-- END block_stats --> </div> <!-- END blocks --> </div> <!-- END layout_column --> <div id="clear"></div> </div> </div> --- NEW FILE: gecko.css --- /* Addon defs for gecko browsers, or redefined */ --- NEW FILE: mxBase2.cfg --- <?php /** * * @package mxBB Portal Core * @version $Id: mxBase2.cfg,v 1.1 2008/02/11 22:57:06 jonohlsson Exp $ * @copyright (c) 2002-2006 mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ /** Default standalone mxBB style, by: * * The mxBB Development Team * Version: 1.0 * Requirements: mxBB Core 2.8.x * */ /** Based on original theme by: * * copyright (C) 2001 The phpBB Group * Created by subBlue design * www.subBlue.com * subSilver dev. forum: www.subSky.com/phpBB2/ * */ $mx_template_settings['portal_backend'] = 'internal'; // // Do not alter this line! // define(MX_TEMPLATE_CONFIG, true); $mx_template_config = true; /********************************************************************************\ | Template Setup | - define general template settings \********************************************************************************/ // // Credits, copyrights etc $mx_template_settings['template_copy'] = 'Original subSilver theme for phpBB by <a href="http://www.subSky.com/phpBB2/">subBlue design</a> :: Adapted for mxBB by <a href="http://www.mxbb.net">The mxBB Development Team</a>'; // // When creating a new template, you normally "clone" a template and modify a number of *.tpl files. // For similar templates this means only a few files are different. // For example: you may have a template similar to subSilver, but with a different overall_header.tpl - the other files are identical. // Then this template should only contain one *.tpl file, namely overall_header.tpl, // and with $mx_template_settings['cloned_template'] = 'subSilver'. // If this template is a full set of *.tpl files, leave this blank. $mx_template_settings['cloned_template'] = ''; // // Block border graphics are defined in mx_main_layout.tpl, within the 'graph_border' template environment. // Turning this setting 'false' will disable block border graphics. $mx_template_settings['border_graphics'] = false; /********************************************************************************\ | Define what graphics bundles to use | - these are very handy paths to ALL kind of phpBB/mxBB graphics \********************************************************************************/ $mx_images['mx_graphics']['general'] = file_exists( $mx_root_path . $current_template_path . "/images/logo.gif" ) ? $current_template_path . "/images" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/logo.gif" ) ? $cloned_template_path . "/images" : $default_template_path . "/images" ); $mx_images['mx_graphics']['page_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/page_icons" ) ? $current_template_path . "/images/page_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/page_icons" ) ? $cloned_template_path . "/images/page_icons" : $default_template_path . "/images/page_icons" ); $mx_images['mx_graphics']['block_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/block_icons" ) ? $current_template_path . "/images/block_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/block_icons" ) ? $cloned_template_path . "/images/block_icons" : $default_template_path . "/images/block_icons" ); $mx_images['mx_graphics']['menu_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/menu_icons" ) ? $current_template_path . "/images/menu_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/menu_icons" ) ? $cloned_template_path . "/images/menu_icons" : $default_template_path . "/images/menu_icons" ); $mx_images['mx_graphics']['admin_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/admin_icons" ) ? $current_template_path . "/images/admin_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/admin_icons" ) ? $cloned_template_path . "/images/admin_icons" : $default_template_path . "/images/admin_icons" ); $mx_images['mx_graphics']['theme_graphics'] = file_exists( $mx_root_path . $current_template_path . "/images/theme" ) ? $current_template_path . "/images/theme" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/theme" ) ? $cloned_template_path . "/images/theme" : $default_template_path . "/images/theme" ); // // Standalone mxBB installation? Where are the phpbb images? // //$mx_images['mx_graphics']['phpbb_icons'] = file_exists( $phpbb_root_path . $current_template_path . "/images" ) ? $current_template_path . "/images" : ( file_exists( $phpbb_root_path . $cloned_template_path . "/images" ) ? $cloned_template_path . "/images" : $default_template_path . "/images"); $mx_images['mx_graphics']['phpbb_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/phpbb2" ) ? $current_template_path . "/images/phpbb2" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/phpbb2" ) ? $cloned_template_path . "/images/phpbb2" : $default_template_path . "/images/phpbb2" ); // // Prefix all paths to get full img URLs // $current_template_images = PORTAL_URL . $mx_images['mx_graphics']['general']; // Logo etc $current_template_page_images = PORTAL_URL . $mx_images['mx_graphics']['page_icons']; // Used by adminCP - Pages $current_template_block_images = PORTAL_URL . $mx_images['mx_graphics']['block_icons']; // Used by userCP block buttons $current_template_menu_images = PORTAL_URL . $mx_images['mx_graphics']['menu_icons']; // Used by adminCP - Navigation Menu $current_template_admin_images = PORTAL_URL . $mx_images['mx_graphics']['admin_icons']; // Internal graphics for the mxBB adminCP $current_template_theme_graphics = PORTAL_URL . $mx_images['mx_graphics']['theme_graphics']; // Internal graphics for the mxBB adminCP // // Standalone mxBB installation? Where are the phpbb images? // //$current_template_phpbb_images = PHPBB_URL . $mx_images['mx_graphics']['phpbb_icons']; // phpBB graphics template $current_template_phpbb_images = PORTAL_URL . $mx_images['mx_graphics']['phpbb_icons']; // phpBB graphics template // // Define the icon css style // $mx_images['mx_graphics']['icon_style'] = '<style type="text/css"> .mx_icon { vertical-align: middle; background-color:; background-image: url('.$current_template_menu_images.'/icon_bg.gif); background-repeat: no-repeat; } .mx_icon_hot { vertical-align: middle; background-color:; background-image: url('.$current_template_menu_images.'/icon_bg.gif); background-repeat: no-repeat; } </style>'; /********************************************************************************\ | Page Navigation Images | 1. If you want to control the overall_header.tpl images from this *.cfg file, make defintions below | 2. Or if not, use hardcoded image paths in overall_header.tpl, just like in the phpBB standard subSilver overall_header.tpl. \********************************************************************************/ // // Use mxBB graphics - normally the menu_icons bundle // $mx_images['mx_nav_home'] = "$current_template_menu_images/icon_home.gif"; // {NAV_IMAGES_HOME} $mx_images['mx_nav_forum'] = "$current_template_menu_images/icon_forum.gif"; // {NAV_IMAGES_FORUM} $mx_images['mx_nav_profile'] = "$current_template_menu_images/icon_profile.gif"; // {NAV_IMAGES_PROFILE} $mx_images['mx_nav_faq'] = "$current_template_menu_images/icon_faq.gif"; // {NAV_IMAGES_FAQ} $mx_images['mx_nav_search'] = "$current_template_menu_images/icon_search.gif"; // {NAV_IMAGES_SEARCH} $mx_images['mx_nav_members'] = "$current_template_menu_images/icon_members.gif"; // {NAV_IMAGES_MEMBERS} $mx_images['mx_nav_groups'] = "$current_template_menu_images/icon_groups.gif"; // {NAV_IMAGES_GROUPS} $mx_images['mx_nav_mail'] = "$current_template_menu_images/icon_mail.gif"; // {NAV_IMAGES_PRIVMSG} $mx_images['mx_nav_login'] = "$current_template_menu_images/icon_login.gif"; // {NAV_IMAGES_LOGIN_LOGOUT} $mx_images['mx_nav_register'] = "$current_template_menu_images/icon_register.gif"; // {NAV_IMAGES_REGISTER} // // Use standard phpBB graphics // /* $mx_images['mx_nav_home'] = "$current_template_phpbb_images/icon_minipost.gif"; $mx_images['mx_nav_forum'] = "$current_template_phpbb_images/icon_minipost.gif"; $mx_images['mx_nav_profile'] = "$current_template_phpbb_images/icon_mini_profile.gif"; $mx_images['mx_nav_faq'] = "$current_template_phpbb_images/icon_mini_faq.gif"; $mx_images['mx_nav_search'] = "$current_template_phpbb_images/icon_mini_search.gif"; $mx_images['mx_nav_members'] = "$current_template_phpbb_images/icon_mini_members.gif"; $mx_images['mx_nav_groups'] = "$current_template_phpbb_images/icon_mini_groups.gif"; $mx_images['mx_nav_mail'] = "$current_template_phpbb_images/icon_mini_message.gif"; $mx_images['mx_nav_login'] = "$current_template_phpbb_images/icon_mini_login.gif"; $mx_images['mx_nav_register'] = "$current_template_phpbb_images/icon_mini_register.gif"; */ /********************************************************************************\ | Block Images | - these images are used for the block editCP buttons and controls \********************************************************************************/ $mx_images['mx_contract'] = "$current_template_block_images/contract.gif"; $mx_images['mx_expand'] = "$current_template_block_images/expand.gif"; $mx_images['mx_block_edit_admin'] = "$current_template_block_images/block_edit_admin.gif"; $mx_images['mx_block_edit_split'] = "$current_template_block_images/block_edit_split.gif"; $mx_images['mx_block_edit'] = "$current_template_block_images/block_edit.gif"; $mx_images['mx_block_hidden'] = "$current_template_block_images/block_hidden.gif"; /********************************************************************************\ | adminCP/editCP Images | - these images are used for the adminCP & block editCP \********************************************************************************/ $mx_images['mx_spacer'] = "$current_template_phpbb_images/spacer.gif"; // // phpBB Graphics - for standalone mxBB installation // $images['icon_quote'] = "$current_template_phpbb_images/{LANG}/icon_quote.gif"; $images['icon_edit'] = "$current_template_phpbb_images/{LANG}/icon_edit.gif"; $images['icon_search'] = "$current_template_phpbb_images/{LANG}/icon_search.gif"; $images['icon_profile'] = "$current_template_phpbb_images/{LANG}/icon_profile.gif"; $images['icon_pm'] = "$current_template_phpbb_images/{LANG}/icon_pm.gif"; $images['icon_email'] = "$current_template_phpbb_images/{LANG}/icon_email.gif"; $images['icon_delpost'] = "$current_template_phpbb_images/icon_delete.gif"; //$images['icon_ip'] = "$current_template_phpbb_images/{LANG}/icon_ip.gif"; $images['icon_www'] = "$current_template_phpbb_images/{LANG}/icon_www.gif"; //$images['icon_icq'] = "$current_template_phpbb_images/{LANG}/icon_icq_add.gif"; //$images['icon_aim'] = "$current_template_phpbb_images/{LANG}/icon_aim.gif"; //$images['icon_yim'] = "$current_template_phpbb_images/{LANG}/icon_yim.gif"; //$images['icon_msnm'] = "$current_template_phpbb_images/{LANG}/icon_msnm.gif"; $images['icon_minipost'] = "$current_template_phpbb_images/icon_minipost.gif"; $images['icon_gotopost'] = "$current_template_phpbb_images/icon_minipost.gif"; $images['icon_minipost_new'] = "$current_template_phpbb_images/icon_minipost_new.gif"; $images['icon_latest_reply'] = "$current_template_phpbb_images/icon_latest_reply.gif"; $images['icon_newest_reply'] = "$current_template_phpbb_images/icon_newest_reply.gif"; $images['forum'] = "$current_template_phpbb_images/folder_big.gif"; $images['forum_new'] = "$current_template_phpbb_images/folder_new_big.gif"; $images['forum_locked'] = "$current_template_phpbb_images/folder_locked_big.gif"; $images['folder'] = "$current_template_phpbb_images/folder.gif"; $images['folder_new'] = "$current_template_phpbb_images/folder_new.gif"; $images['folder_hot'] = "$current_template_phpbb_images/folder_hot.gif"; $images['folder_hot_new'] = "$current_template_phpbb_images/folder_new_hot.gif"; $images['folder_locked'] = "$current_template_phpbb_images/folder_lock.gif"; $images['folder_locked_new'] = "$current_template_phpbb_images/folder_lock_new.gif"; $images['folder_sticky'] = "$current_template_phpbb_images/folder_sticky.gif"; $images['folder_sticky_new'] = "$current_template_phpbb_images/folder_sticky_new.gif"; $images['folder_announce'] = "$current_template_phpbb_images/folder_announce.gif"; $images['folder_announce_new'] = "$current_template_phpbb_images/folder_announce_new.gif"; $images['post_new'] = "$current_template_phpbb_images/{LANG}/post.gif"; $images['post_locked'] = "$current_template_phpbb_images/{LANG}/reply-locked.gif"; $images['reply_new'] = "$current_template_phpbb_images/{LANG}/reply.gif"; $images['reply_locked'] = "$current_template_phpbb_images/{LANG}/reply-locked.gif"; //$images['pm_inbox'] = "$current_template_phpbb_images/msg_inbox.gif"; //$images['pm_outbox'] = "$current_template_phpbb_images/msg_outbox.gif"; //$images['pm_savebox'] = "$current_template_phpbb_images/msg_savebox.gif"; //$images['pm_sentbox'] = "$current_template_phpbb_images/msg_sentbox.gif"; $images['pm_readmsg'] = "$current_template_phpbb_images/folder.gif"; $images['pm_unreadmsg'] = "$current_template_phpbb_images/folder_new.gif"; $images['pm_replymsg'] = "$current_template_phpbb_images/{LANG}/reply.gif"; $images['pm_postmsg'] = "$current_template_phpbb_images/{LANG}/msg_newpost.gif"; $images['pm_quotemsg'] = "$current_template_phpbb_images/{LANG}/icon_quote.gif"; $images['pm_editmsg'] = "$current_template_phpbb_images/{LANG}/icon_edit.gif"; $images['pm_new_msg'] = ""; $images['pm_no_new_msg'] = ""; $images['Topic_watch'] = ""; $images['topic_un_watch'] = ""; //$images['topic_mod_lock'] = "$current_template_phpbb_images/topic_lock.gif"; //$images['topic_mod_unlock'] = "$current_template_phpbb_images/topic_unlock.gif"; //$images['topic_mod_split'] = "$current_template_phpbb_images/topic_split.gif"; //$images['topic_mod_move'] = "$current_template_phpbb_images/topic_move.gif"; //$images['topic_mod_delete'] = "$current_template_phpbb_images/topic_delete.gif"; $images['voting_graphic'][0] = "$current_template_phpbb_images/voting_bar.gif"; $images['voting_graphic'][1] = "$current_template_phpbb_images/voting_bar.gif"; $images['voting_graphic'][2] = "$current_template_phpbb_images/voting_bar.gif"; $images['voting_graphic'][3] = "$current_template_phpbb_images/voting_bar.gif"; $images['voting_graphic'][4] = "$current_template_phpbb_images/voting_bar.gif"; // // Populate the $theme colors - for standalone mxBB // $template_config_row['body_background'] = ""; $template_config_row['body_bgcolor'] = "E5E5E5"; $template_config_row['body_text'] = "000000"; $template_config_row['body_link'] = "006699"; $template_config_row['body_vlink'] = "5493B4"; $template_config_row['body_alink'] = ""; $template_config_row['body_hlink'] = "DD6900"; $template_config_row['tr_color1'] = "EFEFEF"; $template_config_row['tr_color2'] = "DEE3E7"; $template_config_row['tr_color3'] = "D1D7DC"; $template_config_row['tr_class1'] = ""; $template_config_row['tr_class2'] = ""; $template_config_row['tr_class3'] = ""; $template_config_row['th_color1'] = "98AAB1"; $template_config_row['th_color2'] = "006699"; $template_config_row['th_color3'] = "FFFFFF"; $template_config_row['th_class1'] = "cellpic1.gif"; $template_config_row['th_class2'] = "cellpic3.gif"; $template_config_row['th_class3'] = "cellpic2.jpg"; $template_config_row['td_color1'] = "FAFAFA"; $template_config_row['td_color2'] = "FFFFFF"; $template_config_row['td_color3'] = ""; $template_config_row['td_class1'] = "row1"; $template_config_row['td_class2'] = "row2"; $template_config_row['td_class3'] = ""; $template_config_row['fontface1'] = "Verdana, Arial, Helvetica, sans-serif"; $template_config_row['fontface2'] = "Trebuchet MS"; $template_config_row['fontface3'] = "Courier, \'Courier New\', sans-serif"; $template_config_row['fontsize1'] = "10"; $template_config_row['fontsize2'] = "11"; $template_config_row['fontsize3'] = "12"; $template_config_row['fontcolor1'] = "444444"; $template_config_row['fontcolor2'] = "006600"; $template_config_row['fontcolor3'] = "FFA34F"; $template_config_row['span_class1'] = ""; $template_config_row['span_class2'] = ""; $template_config_row['span_class3'] = ""; $template_config_row['img_size_poll'] = "0"; $template_config_row['img_size_privmsg'] = "0"; /********************************************************************************\ | CORE Images \********************************************************************************/ // // Theme Graphics // $mx_images['theme_graphics'] = "$current_template_theme_graphics/"; // // Logo // $mx_images['mx_logo'] = "$current_template_images/logo.gif";; // // SiteLog // $mx_images['mx_dot'] = $images['folder']; // // Online Block // $mx_images['mx_who_is_online'] = "$current_template_phpbb_images/whosonline.gif"; ?> --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> --- NEW FILE: overall_header.tpl --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html dir="{S_CONTENT_DIRECTION}"> <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> {MX_ADDITIONAL_JS_FILES} {MX_ADDITIONAL_HEADER_TEXT} </head> <body> <a name="top"></a> <div id="container"> <!-- Either Simple top image ... <img src="{THEME_GRAPHICS}/header.jpg"> End --> <!-- ...or put contents on background top image --> <table border="0" cellspacing="0" cellpadding="0" width=100%> <tr height="100"> <td background="{THEME_GRAPHICS}/top.jpg" width="750"> <table border=0 cellspacing=0 cellpadding=0 width="100%"> <tr height="80"> <td width="25%" align="left" valign="top"> <!--<a href="{U_INDEX}"><img src="{LOGO}" border="0" alt="{L_INDEX}" vspace="1"/></a>--> <a href="{U_INDEX}"><img width="100" height="70" src="{THEME_GRAPHICS}spacer.gif" border=0 alt="{L_INDEX}" title="{L_INDEX}"></a> </td> <td width="50%" align="center" valign="middle"> {PAGE_ICON}<span class="pagetitle">{PAGE_TITLE}</span> </td> <td width="25%" align="right" valign="top"><span class="sitetitle"> </td> </tr> <tr height="20"> <td width="100%" align="left" valign="top" colspan="3"> <img width="20" height="1" src="{THEME_GRAPHICS}spacer.gif" border=0> <span class="sitetitle_desc">{SITE_DESCRIPTION}</span> </td> </tr> </table> </td> </tr> </table> <!-- End --> <div id="header"> <div class="globalNav"> <!-- Either Template Based Navigation Menu... <span class="genmed"><a href="{U_INDEX}" class="genmed"><img src="{NAV_IMAGES_HOME}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a></span><span class="genmed"><a href="{U_INDEX}" class="genmed">{L_HOME}</a></span> | <span class="genmed"><a href="{U_INDEX_FORUM}" class="genmed"><img src="{NAV_IMAGES_FORUM}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a></span><span class="genmed"><a href="{U_INDEX_FORUM}" class="genmed">{L_FORUM}</a></span> <!-- BEGIN switch_user_logged_in --> | <span class="genmed"><a href="{U_PROFILE}" class="genmed"><img src="{NAV_IMAGES_PROFILE}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a></span><span class="genmed"><a href="{U_PROFILE}" class="genmed">{L_PROFILE}</a></span> <!-- END switch_user_logged_in --> | <span class="genmed"><a href="{U_SEARCH}" class="genmed"><img src="{NAV_IMAGES_SEARCH}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a></span><span class="genmed"><a href="{U_SEARCH}" class="genmed">{L_SEARCH}</a></span> | <span class="genmed"><a href="{U_FAQ}" class="genmed"><img src="{NAV_IMAGES_FAQ}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a></span><span class="genmed"><a href="{U_FAQ}" class="genmed">{L_FAQ}</a></span> | <span class="genmed"><a href="{U_MEMBERLIST}" class="genmed"><img src="{NAV_IMAGES_MEMBERS}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a></span><span class="genmed"><a href="{U_MEMBERLIST}" class="genmed">{L_MEMBERLIST}</a></span> | <span class="genmed"><a href="{U_GROUP_CP}" class="genmed"><img src="{NAV_IMAGES_GROUPS}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a></span><span class="genmed"><a href="{U_GROUP_CP}" class="genmed">{L_USERGROUPS}</a></span> <!-- BEGIN switch_user_logged_in --> | <span class="genmed"><a href="{U_PRIVATEMSGS}" class="genmed"><img src="{NAV_IMAGES_PRIVMSG}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a></span><span class="genmed"><a href="{U_PRIVATEMSGS}" class="genmed">{L_PRIVATEMSGS}</a></span> <!-- END switch_user_logged_in --> End --> <!-- ...or use Manual Navigation Menu <span class="genmed"><a href="{U_INDEX}" class="genmed">{L_HOME}</a></span> | <span class="genmed"><a href="{U_INDEX_FORUM}" class="genmed">{L_FORUM}</a></span> End --> <!-- ...or use Generated Navigation Menu --> {OVERALL_NAVIGATION} <!-- Generated Navigation Menu --> </div> </div> <div id="subheader"> <div class="left"> <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="genmed"><a href="{U_LOGIN_LOGOUT}" class="genmed">{L_LOGIN_LOGOUT}</a></span> <!-- 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="genmed"><a href="{U_REGISTER}" class="genmed">{L_REGISTER}</a></span> <!-- END switch_user_logged_out --> </div> <div class="right"> <!-- BEGIN switch_view --> <span class="gensmall">{CURRENT_TIME}</span> <!-- END switch_view --> <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> </div> </div> --- NEW FILE: overall_noheader.tpl --- <!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}"> <meta http-equiv="Content-Style-Type" content="text/css"> {META} {NAV_LINKS} <title>{SITENAME} :: {PAGE_TITLE}</title> <!-- First load standard template *.css definition, located in the the phpbb template folder --> <!-- 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 --> <!-- 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" 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> </head> <body> <a name="top"></a> <div id="container"> --- NEW FILE: overall_footer.tpl --- <div id="footer"> <div class="globalNav" align="center"> <!-- BEGIN editcp_exists --> <span class="genmed">{editcp_exists.ADMIN_OPTIONS}</span> <span class="newsbutton" onclick="mx_toggle_editCP(this, 'editCP_switch', '{editcp_exists.EDITCP_EXPAND_IMG}', '{editcp_exists.EDITCP_CONTRACT_IMG}');"><img src="{editcp_exists.EDITCP_DYNAMIC_IMG}" border="0" alt="" /></span><br /> <!-- END editcp_exists --> {ADMIN_LINK} <!-- We request you retain the full copyright notice below including the link to www.phpbb.com. This not only gives respect to the large amount of time given freely by the developers but also helps build interest, traffic and use of phpBB 2.0. If you cannot (for good reason) retain the full copyright we request you at least leave in place the Powered by phpBB line, with phpBB linked to www.phpbb.com. If you refuse to include even this then support on our forums may be affected. The phpBB Group : 2002 & mxBB Team : 2002 // --> {POWERED_BY} <a href="http://www.mxbb.net/" target="_mx-system" class="copyright">mxBB Portal</a> {MX_VERSION} © 2001-2007 & <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> {PHPBB_VERSION} © 2001, 2003 phpBB Group | <a href="{MXBB_EXTRA_URL}" target="_phpbb" class="copyright">{MXBB_EXTRA}</a> <!-- BEGIN page_last_updated --> <div class="pageStats" align="center">{page_last_updated.L_PAGE_UPDATED} {page_last_updated.TIME} {page_last_updated.NAME} </div> <!-- END page_last_updated --> </div> </div> </div> <!-- This displays generation info at the bottom of the page --> {EXECUTION_STATS} {MX_ADDITIONAL_FOOTER_TEXT} </body> </html> --- NEW FILE: mxBase2.css --- /***********************************************/ /* Main */ /***********************************************/ /* Fix for centering the container in IE */ body{ text-align: center; margin: 0px; padding: 0px; font-family: Verdana, Arial, Helvetica, sans-serif; color: #000; line-height: 85%; /* background: #00355C url(/templates/mxBase2/images/theme/bg.gif); */ background: #00355C; scrollbar-face-color: #DEE3E7; scrollbar-highlight-color: #FFFFFF; scrollbar-shadow-color: #DEE3E7; scrollbar-3dlight-color: #D1D7DC; scrollbar-arrow-color: #006699; scrollbar-track-color: #EFEFEF; scrollbar-darkshadow-color: #98AAB1; } /* Main Containers */ #container{ width: 750px; min-width: 500px; text-align: left; /* Fix for centering the container in IE */ margin: 20px auto 0px auto; background-color: #fff; border: 2px solid black; } /* Outer and Inner Container */ #outer { width: auto; border-left-style: solid; border-left-width: 190px; /* left column width */ border-left-color: #ffffff; /* left column colour */ /*border-right-style: solid;*/ /*border-right-width: 160px;*/ /* right column width */ /*border-right-color: #EEEEDD;*/ /* right column colour */ background-color: #fff; /* center column colour */ } /* One-column */ #outer_1_col { width: auto; /*border-left-style: solid;*/ /*border-left-width: 220px;*/ /* left column width */ /*border-left-color: #ffffff;*/ /* left column colour */ /*border-right-style: solid;*/ /*border-right-width: 160px;*/ /* right column width */ /*border-right-color: #EEEEDD;*/ /* right column colour */ background-color: #fff; /* center column colour */ } #inner { margin: 0px; width: 100%; } /* Columns */ #leftcol{ width: 190px; /* left column width */ float: left; position: relative; padding: 0px; margin: 0px; margin-left: -190px; /* _negative_ left column width */ border-top: 1px solid #B0B0B0; border-bottom: 1px solid #B0B0B0; background: url(/templates/mxBase2/images/theme/leftcol.gif) repeat-y; overflow:hidden; z-index: 10; } #rightcol{ width: 190px; /* right column width */ float: right; position: relative; padding: 0px; margin: 0px; margin-right: -190px; /* _negative_ right column width */ overflow:hidden; z-index: 11; } #middlecol{ float: left; width: 100%; position: relative; /*padding: 0px;*/ z-index: 12; } /* Block Container */ div.blockcontainer{ height: 1%; /* IE6 Fix */ padding: 0px; } #leftcol div.blockcontainer{ margin: 10px; } #middlecol div.blockcontainer{ margin: 10px 10px 10px 20px; } #rightcol div.blockcontainer{ margin: 10px; } /***********************************************/ /* Layout */ /***********************************************/ #header{ background-color: #00355C; border-top: 1px solid gray; border-bottom: 1px solid gray; margin: 0px; padding: 0px; /*background-image: url(more_col_base.jpg);*/ /*background-repeat: repeat-y;*/ /*background-position: right;*/ } #header h1, #header h2, #header h3{ padding: 0px; margin: 0px; } /* Top Navigation */ #header .globalNav{ color: #00355C; white-space: nowrap; padding: 8px 20px; text-align:center; } /* 'nowrap' prevents links from line-wrapping if there are too many to fit in one line this will force a horizontal scrollbar if there isn't enough room for all links remove rule or change value to 'normal' if you want the links to line-wrap */ #header .globalNav img{ /* display: block; */ } /* Top header */ #header .globalNav .cat-button, #header .globalNav .cat-button-current{ padding: 3px 6px; } #header .globalNav .cat-button{ background-color: #00355C; border-top: 1px solid #555555; border-bottom: 1px solid #777777; border-left: 1px solid #555555; border-right: 1px solid #777777; } #header .globalNav .cat-button a{ color:#ffffff; } #header .globalNav .cat-button-current{ background-color: #ffffff; border-top: 1px solid #999999; border-bottom: 1px solid #777777; border-left: 1px solid #999999; border-right: 1px solid #777777; } #header .globalNav .cat-button-current a{ color:#00355C; } #header .globalNav .cat-button a, #header .globalNav .cat-button-current a { font-size:11px; font-style:normal; font-weight:bold; text-decoration:none; text-transform:uppercase; } #header .globalNav .cat-button a:hover, #header .globalNav .cat-button-current a:hover { } /* Lower header */ #header .globalNav .nav-button, #header .globalNav .nav-button-current{ padding: 3px 6px; } #header .globalNav .nav-button{ background-color: #00355C; } #header .globalNav .nav-button a{ color:#ffffff; } #header .globalNav .nav-button-current{ background-color: #00355C; } #header .globalNav .nav-button-current a{ color:#cccccc; } #header .globalNav .nav-button a, #header .globalNav .nav-button-current a { font-size:10px; font-style:normal; font-weight:bold; text-decoration:none; text-transform:uppercase; } #header .globalNav .nav-button a:hover, #header .globalNav .nav-button-current a:hover { } #subheader{ background-color: #ffffff; margin: 0px; padding: 5px 10px; } #subheader a { font-size:10px; font-style:normal; font-weight:bold; text-decoration:none; color:#215A19; } #subheader a:hover { text-decoration:underline; } #subheader .left{ text-align: left; float:left } #subheader .right{ text-align: right; } /* Block title */ div.blockheader{ margin: 0px; padding: 2px 5px; /* background: url(/templates/mxBase2/images/cornerr.gif) top right no-repeat; */ } #leftcol div.blockheader{ /* border-top: 1px solid #B0B0B0; border-right: 1px solid #B0B0B0; border-bottom: 0px solid #B0B0B0; border-left: 1px solid #B0B0B0; */ } #middlecol div.blockheader{ } #rightcol div.blockheader{ } div.editCP_switch{ position: relative; margin-top: -20px; margin-right: 0px; padding: 0px; float: right; } div.blockhidden{ position: relative; margin-top: -20px; margin-left: 0px; padding: 0px; float: left; } /* Form elements */ .trimform { margin-bottom: 0px; margin-top: 0px; } div.block{ margin: 0px; padding: 0px; } #leftcol div.block{ /* border-top: 1px solid #B0B0B0; border-right: 1px solid #B0B0B0; border-bottom: 1px solid #B0B0B0; border-left: 1px solid #B0B0B0; */ } #middlecol div.block{ /* border-top: 1px solid #B0B0B0; border-right: 1px solid #B0B0B0; border-bottom: 1px solid #B0B0B0; border-left: 1px solid #B0B0B0; background-color: #ffffff; */ padding: 5px; } #rightcol div.block{ } #footer{ clear: both; margin: 0px; padding: 2px 5px; color: #333; background-color: #00355C; border-top: 1px solid gray; font-size: 9px; } #footer .globalNav{ text-align: center; color: #cccccc; white-space: nowrap; } /* 'nowrap' prevents links from line-wrapping if there are too many to fit in one line this will force a horizontal scrollbar if there isn't enough room for all links remove rule or change value to 'normal' if you want the links to line-wrap */ #footer .globalNav a { padding: 0px 4px 0px 0px; } #footer a, #footer a:link, #footer a:visited { text-decoration: none; color: #CFD7D1; font-weight: bold;} #footer a:hover{ text-decoration: underline; color: #CFD7D1; font-weight: bold;} #footer a.copyright, #footer a.copyright:link, #footer a.copyright:visited { text-decoration: none; color: #CFD7D1; font-weight: normal;} #footer a.copyright:hover{ text-decoration: underline; color: #CFD7D1; font-weight: normal;} #footer p { margin: 0px 0px 1em 0px; } .pageStats { padding: 0px 10px 5px 0px; } * html x { /* This is the Tan hack */ width: 130px; /* For IE5 */ w\idth: 100px; } /* For IE6 */ #clear { clear: both; } /***********************************************/ /* Theme */ /***********************************************/ /* General text */ font,th,td,p { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; } #leftcol font, #leftcol th, #leftcol td, #leftcol p { color: #000000; } #middlecol font, #middlecol th, #middlecol td, #middlecol p { color: #000000; } #rightcol font, #rightcol th, #rightcol td, #rightcol p { color: #000000; } .gen,.genmed,.gensmall { color : #000000; } a,a.gen,a.genmed,a.gensmall { color: #006699; text-decoration: none; } a:hover,a.gen:hover,a.genmed:hover,a.gensmall:hover { color: #DD6900; text-decoration: underline; } tr.oddrow a, tr.oddrow a.gen,tr.oddrow a.genmed, tr.oddrow a.gensmall { font-size:10px; color: #ffffff; text-decoration: none; } tr.oddrow a:hover, tr.oddrow a.gen:hover,tr.oddrow a.genmed:hover,tr.oddrow a.gensmall:hover { color: #215A19; text-decoration: underline; } /* #leftcol .gen, #leftcol .genmed, #leftcol .gensmall { color : #000000; } #leftcol a.gen, #leftcol a.genmed, #leftcol a.gensmall { color: #006699; text-decoration: none; } #leftcol a.gen:hover, #leftcol a.genmed:hover, #leftcol a.gensmall:hover { color: #DD6900; text-decoration: underline; } #middlecol .gen, #middlecol .genmed, #middlecol .gensmall { color : #000000; } #middlecol a.gen, #middlecol a.genmed, #middlecol a.gensmall { color: #006699; text-decoration: none; } #middlecol a.gen:hover, #middlecol a.genmed:hover, #middlecol a.gensmall:hover { color: #DD6900; text-decoration: underline; } #rightcol .gen, #rightcol .genmed, #rightcol .gensmall { color : #000000; } #rightcol a.gen, #rightcol a.genmed, #rightcol a.gensmall { color: #006699; text-decoration: none; } #rightcol a.gen:hover, #rightcol a.genmed:hover, #rightcol a.gensmall:hover { color: #DD6900; text-decoration: underline; } */ .gen { font-size : 11px; } .genmed { font-size : 10px; } .gensmall { font-size : 9px; } /* This is the outline round the main forum tables */ .forumline { } /* Main table cell colours and backgrounds */ td.row1 { } td.row2 { background-color: #DEE3E7; } td.row3 { background-color: #D1D7DC; } td.oddcell { background-color: #97AC7C; } tr.oddrow { background-color: #97AC7C; } /* #leftcol td.row1 { background-color: #EFEFEF; } #leftcol td.row2 { background-color: #DEE3E7; } #leftcol td.row3 { background-color: #D1D7DC; } #middlecol td.row1 { background-color: #EFEFEF; } #middlecol td.row2 { background-color: #DEE3E7; } #middlecol td.row3 { background-color: #D1D7DC; } #rightcol td.row1 { background-color: #EFEFEF; } #rightcol td.row2 { background-color: #DEE3E7; } #rightcol td.row3 { background-color: #D1D7DC; } */ #middlecol div.block img { margin: 4px 10px 4px 4px; } div.block p { margin: 0.7em 0px 0.7em 0px; } div.block h1, div.block h2 { margin: .2em 0px .4em 0px; } div.block h3, div.block h4 { margin: 1.5em 0px .4em 0px; } h1 { font-family: Geneva, Arial, Helvetica, san-serif; font-size: 14px; font-weight: bold; color: #215A19; letter-spacing: 2px; } h2 { font-family: Geneva, Arial, Helvetica, san-serif; font-size: 13px; font-weight: bold; color: #215A19; letter-spacing: 2px; } h3 { font-family: Geneva, Arial, Helvetica, san-serif; font-size: 12px; font-weight: bold; font-variant: normal; color: #003300; text-transform: uppercase; } h4 { font-size: 10px; font-variant: normal; color: #006600; text-transform: uppercase; line-height: 5px;} /* Block titles */ .blocktitle { font-family: Verdana, Arial, Helvetica, sans-serif;font-weight: bold; font-size: 11px ; letter-spacing: 1px;} a.blocktitle { text-decoration: none;} a.blocktitle:hover{ text-decoration: underline;} /* Discreet text */ .discreet { font-size : 9px; color : #879C6C } #leftcol .blocktitle, #leftcol a.blocktitle { color : #00355C;} #middlecol .blocktitle, #middlecol a.blocktitle { color : #00355C;} #rightcol .blocktitle, #rightcol a.blocktitle { color : #00355C;} /* The register, login, search etc links at the top of the page */ .mainmenu { font-size : 11px; color : #000000 } a.mainmenu { text-decoration: none; color : #006699; } a.mainmenu:hover{ text-decoration: underline; color : #DD6900; } /* Forum category titles */ .cattitle { font-weight: bold; font-size: 12px ; letter-spacing: 1px; color : #006699} a.cattitle { text-decoration: none; color : #006699; } a.cattitle:hover{ text-decoration: underline; } /* Forum title: Text and link to the forums used in: index.php */ .forumlink { font-weight: bold; font-size: 12px; color : #006699; } a.forumlink { text-decoration: none; color : #006699; } a.forumlink:hover{ text-decoration: underline; color : #DD6900; } /* Used for the navigation text, (Page 1,2,3 etc) and the navigation bar when in a forum */ .nav { font-weight: bold; font-size: 11px; color : #000000;} a.nav { text-decoration: none; color : #006699; } a.nav:hover { text-decoration: underline; } /* titles for the topics: could specify viewed link colour too */ .topictitle { font-weight: bold; font-size: 11px; color : #000000; } a.topictitle:link { text-decoration: none; color : #006699; } a.topictitle:visited { text-decoration: none; color : #5493B4; } a.topictitle:hover { text-decoration: underline; color : #DD6900; } /* Name of poster in viewmsg.php and viewtopic.php and other places */ .name { font-size : 11px; color : #000000;} /* Location, number of posts, post date etc */ .postdetails { font-size : 10px; color : #000000; } /* The content of the posts (body of text) */ .postbody { font-size : 12px;} a.postlink:link { text-decoration: none; color : #006699 } a.postlink:visited { text-decoration: none; color : #5493B4; } a.postlink:hover { text-decoration: underline; color : #DD6900} /* Quote & Code blocks */ .code { font-family: Courier, 'Courier New', sans-serif; font-size: 10px; color: #006600; background-color: #FAFAFA; border: #D1D7DC; border-style: solid; border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px } .quote { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color: #444444; line-height: 125%; background-color: #FAFAFA; border: #D1D7DC; border-style: solid; border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px } /* Copyright and bottom info */ .copyright { font-size: 10px; font-family: Verdana, Arial, Helvetica, sans-serif; color: #444444; letter-spacing: -1px;} a.copyright { color: #444444; text-decoration: none;} a.copyright:hover { color: #000000; text-decoration: underline;} /* Form elements */ input,textarea, select { color : #000000; font: normal 10px Verdana, Arial, Helvetica, sans-serif; border-color : #000000; } /* The text input fields background colour */ input.post, textarea.post, select { background-color : #FFFFFF; } input { text-indent : 2px; } /* The buttons used for bbCode styling in message post */ input.button { background-color : #EFEFEF; color : #000000; font-size: 10px; font-family: Verdana, Arial, Helvetica, sans-serif; } /* The main submit button option */ input.mainoption { background-color : #FAFAFA; font-weight : bold; } /* None-bold submit button */ input.liteoption { background-color : #FAFAFA; font-weight : normal; } /* This is the line in the posting page which shows the rollover help line. This is actually a text box, but if set to be the same colour as the background no one will know ;) */ .helpline { background-color: #DEE3E7; border-style: none; } /* Import the fancy styles for IE only (NS4.x doesn't use the @import function) */ /* @import url("formIE.css"); */ /* Fancy form styles for IE */ input, textarea, select { border-top-width : 1px; border-right-width : 1px; border-bottom-width : 1px; border-left-width : 1px; } input { text-indent : 2px; } input.button { border-top-width : 1px; border-right-width : 1px; border-bottom-width : 1px; border-left-width : 1px; } .postbody { line-height: 18px} /* Form elements */ form { margin: 0px; } /* Form elements */ form.mx_editform { margin-bottom: 0px; margin-top: 0px; } /* This is the border around numbers in pagination */ .mx_pagination, .mx_pagination_sele, .mx_pagination_over { padding-left: 2px; padding-right: 2px; border-top: 1px solid #B0B0B0; border-right: 1px solid #B0B0B0; border-bottom: 1px solid #B0B0B0; border-left: 1px solid #B0B0B0; text-decoration: none; } .mx_pagination_sele { background-color: #E0E0E0; } .mx_pagination_over { background-color: #F0F0F0; } .shadow { color: #00AA00; filter: DropShadow(Color=#660000, OffX=5, OffY=5, Positive=1); } img.shadow { color: #00AA00; filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=5, OffY=5, Color='gray', Positive='true'); } /* This is the style used for the top page title. */ .pagetitle { font-weight: bold; font-size: 30px; font-family: "Comic Sans MS", Verdana, Arial, Helvetica, sans-serif; text-decoration: none; line-height : 120%; color : #000066; font-variant: small-caps; text-transform: capitalize; letter-spacing: 5px; vertical-align: 20%; } /* This is the style used for the top site title. */ .sitetitle { font-family: Arial; font-variant: small-caps; font-weight: bolder; font-size: 12pt; color: #000066; } /* This is the style used for the top site description. */ .sitetitle_desc { color: #006699; font-size: 9px; } /* Block Navigation */ #leftcol ul { border: 1px solid #00355C; border-width: 1px 0px 1px 1px; font-size: 11px; /* font-size: 85%; */ list-style: none; margin: 3px 0px 3px 0px; padding: 0px; } #leftcol ul li { border-bottom: 1px solid #fff; padding: 2px; } #leftcol ul a { /* background: #ffffff url(/modules/mx_navmenu/templates/samSkolan3/images/arrow_right.gif) 5px 50% no-repeat; */ background: #ffffff; border: none; color: #215A19; display: block; line-height: 1.4em; /* padding-left: 20px; */ padding: 2px 2px 2px 5px; text-decoration: none; font-size: 11px; } #leftcol ul a:hover { /* background: #efefef url(/modules/mx_navmenu/templates/samSkolan3/images/arrow_right.gif) 5px 50% no-repeat; */ background: #efefef; border: none; color: #215A19; } #leftcol li#cattitle a { /* background: #ffffff url(/modules/mx_navmenu/templates/samSkolan3/images/arrow_right.gif) 5px 50% no-repeat; */ background: #ffffff; color: #215A19; font-weight: bold; font-variant: small-caps; } #leftcol li#cat a { /* background: #ffffff url(/modules/mx_navmenu/templates/samSkolan3/images/arrow_right.gif) 5px 50% no-repeat; */ background: #00355C; color: #ffffff; font-weight: bold; font-variant: small-caps; } --- NEW FILE: mx_main_layout_1_col.tpl --- <div id="outer_1_col"> <div id="inner"> <!-- BEGIN layout_column --> <div id="{layout_column.COL_CLASS}"> <!-- BEGIN blocks --> <div class="blockcontainer"> <!-- BEGIN block_header --> <div class="blockheader"> <!-- END block_header --> <!-- BEGIN show_title --> <span class="blocktitle">{layout_column.blocks.show_title.L_TITLE}</span> <!-- END show_title --> <!-- BEGIN edit --> <div class="editCP_switch" style="display: {layout_column.blocks.edit.EDITCP_SHOW};"> <form action="{layout_column.blocks.edit.EDIT_ACTION}" method="post" class="trimform"> {layout_column.blocks.edit.EDIT_IMG} {layout_column.blocks.edit.S_HIDDEN_FORM_FIELDS} </form> </div> <!-- BEGIN hidden_block --> <div class="blockhidden"> <span class="gensmall"><i>{layout_column.blocks.edit.hidden_block.HIDDEN_BLOCK}</i></span> </div> <!-- END hidden_block --> <!-- END edit --> <!-- BEGIN block_header --> </div> <!-- END block_header --> <div class="block" id="block_{layout_column.blocks.BLOCK_ID}"> {layout_column.blocks.BLOCK} </div> <!-- BEGIN block_stats --> <div align="right"> <span class="copyright">{layout_column.blocks.block_stats.L_BLOCK_UPDATED} {layout_column.blocks.block_stats.EDIT_TIME} {layout_column.blocks.block_stats.EDITOR_NAME}</span> </div> <!-- END block_stats --> </div> <!-- END blocks --> </div> <!-- END layout_column --> <div id="clear"></div> </div> </div> |
|
From: Jon O. <jon...@us...> - 2008-02-11 22:56:55
|
Update of /cvsroot/mxbb/core/templates/mxBase1/images/theme In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10407 Added Files: bg.gif leftcol.gif spacer.gif top.jpg Log Message: Here we go. Not ready yet. but not to break fresh install ;) --- NEW FILE: spacer.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: bg.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: leftcol.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: top.jpg --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/mxbb/core/templates/mxBase1 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10378 Added Files: gecko.css index.htm mxBase1.cfg mxBase1.css mx_main_layout.tpl overall_footer.tpl overall_header.tpl overall_noheader.tpl Log Message: Here we go. Not ready yet. but not to break fresh install ;) --- NEW FILE: mx_main_layout.tpl --- <div id="wrapper"> <!-- BEGIN layout_column --> <div id="{layout_column.COL_CLASS}"> <!-- BEGIN blocks --> <div class="blockcontainer"> <!-- BEGIN block_header --> <div class="blockheader"> <!-- END block_header --> <!-- BEGIN show_title --> <span class="blocktitle">{layout_column.blocks.show_title.L_TITLE}</span> <!-- END show_title --> <!-- BEGIN edit --> <div class="editCP_switch" style="display: {layout_column.blocks.edit.EDITCP_SHOW};"> <form action="{layout_column.blocks.edit.EDIT_ACTION}" method="post" class="trimform"> {layout_column.blocks.edit.EDIT_IMG} {layout_column.blocks.edit.S_HIDDEN_FORM_FIELDS} </form> </div> <!-- BEGIN hidden_block --> <div class="blockhidden"> <span class="gensmall"><i>{layout_column.blocks.edit.hidden_block.HIDDEN_BLOCK}</i></span> </div> <!-- END hidden_block --> <!-- END edit --> <!-- BEGIN block_header --> </div> <!-- END block_header --> <div class="block" id="block_{layout_column.blocks.BLOCK_ID}"> {layout_column.blocks.BLOCK} </div> <!-- BEGIN block_stats --> <!-- <div align="right"> <span class="copyright">{layout_column.blocks.block_stats.L_BLOCK_UPDATED} {layout_column.blocks.block_stats.EDIT_TIME} {layout_column.blocks.block_stats.EDITOR_NAME}</span> </div> --> <!-- END block_stats --> </div> <!-- END blocks --> </div> <!-- END layout_column --> <div id="clear"></div> </div> --- NEW FILE: mxBase1.css --- /***********************************************/ /* Main */ /***********************************************/ /* Fix for centering the container in IE */ body{ text-align: center; margin: 0px; padding: 0px; font-family: Verdana, Arial, Helvetica, sans-serif; color: #000; line-height: 85%; /* background: #00355C url(/templates/mxBase2/images/theme/bg.gif); */ background: #00355C; scrollbar-face-color: #DEE3E7; scrollbar-highlight-color: #FFFFFF; scrollbar-shadow-color: #DEE3E7; scrollbar-3dlight-color: #D1D7DC; scrollbar-arrow-color: #006699; scrollbar-track-color: #EFEFEF; scrollbar-darkshadow-color: #98AAB1; } /* Main Containers */ #container{ width: 750px; min-width: 500px; text-align: left; /* Fix for centering the container in IE */ margin: 20px auto 0px auto; background-color: #fff; border: 2px solid black; } /* Inner Container */ #wrapper{ margin: 0px; padding: 0px; width: 100%; } /* Columns */ #leftcol{ width: 190px; float: left; position: relative; padding: 0px; margin: 0px; background: #fff url(/templates/mxBase1/images/theme/leftcol.gif) top left repeat-y; /* border-right: 1px solid gray; */ /* background-color: #ddd; */ border-top: 1px solid #B0B0B0; border-bottom: 1px solid #B0B0B0; overflow:hidden; z-index: 10; } #rightcol{ width: 190px; float: right; position: relative; padding: 0px; margin: 0px; /* border-left: 1px solid gray; */ /* background-color: #ddd; */ overflow:hidden; z-index: 11; } #middlecol{ margin-left: 190px; /* margin-right: 160px; */ /* 3-col design only */ position: relative; padding: 0px; z-index: 12; } /* Block Container */ div.blockcontainer{ height: 1%; /* IE6 Fix */ padding: 0px; } #leftcol div.blockcontainer{ margin: 10px; } #middlecol div.blockcontainer{ margin: 10px 10px 10px 20px; } #rightcol div.blockcontainer{ margin: 10px; } /***********************************************/ /* Layout */ /***********************************************/ #header{ background-color: #00355C; border-top: 1px solid gray; border-bottom: 1px solid gray; margin: 0px; padding: 0px; /*background-image: url(more_col_base.jpg);*/ /*background-repeat: repeat-y;*/ /*background-position: right;*/ } #header h1, #header h2, #header h3{ padding: 0px; margin: 0px; } /* Top Navigation */ #header .globalNav{ color: #00355C; white-space: nowrap; padding: 8px 20px; text-align:center; } /* 'nowrap' prevents links from line-wrapping if there are too many to fit in one line this will force a horizontal scrollbar if there isn't enough room for all links remove rule or change value to 'normal' if you want the links to line-wrap */ #header .globalNav img{ /* display: block; */ } /* Top header */ #header .globalNav .cat-button, #header .globalNav .cat-button-current{ padding: 3px 6px; } #header .globalNav .cat-button{ background-color: #00355C; border-top: 1px solid #555555; border-bottom: 1px solid #777777; border-left: 1px solid #555555; border-right: 1px solid #777777; } #header .globalNav .cat-button a{ color:#ffffff; } #header .globalNav .cat-button-current{ background-color: #ffffff; border-top: 1px solid #999999; border-bottom: 1px solid #777777; border-left: 1px solid #999999; border-right: 1px solid #777777; } #header .globalNav .cat-button-current a{ color:#00355C; } #header .globalNav .cat-button a, #header .globalNav .cat-button-current a { font-size:11px; font-style:normal; font-weight:bold; text-decoration:none; text-transform:uppercase; } #header .globalNav .cat-button a:hover, #header .globalNav .cat-button-current a:hover { } /* Lower header */ #header .globalNav .nav-button, #header .globalNav .nav-button-current{ padding: 3px 6px; } #header .globalNav .nav-button{ background-color: #00355C; } #header .globalNav .nav-button a{ color:#ffffff; } #header .globalNav .nav-button-current{ background-color: #00355C; } #header .globalNav .nav-button-current a{ color:#cccccc; } #header .globalNav .nav-button a, #header .globalNav .nav-button-current a { font-size:10px; font-style:normal; font-weight:bold; text-decoration:none; text-transform:uppercase; } #header .globalNav .nav-button a:hover, #header .globalNav .nav-button-current a:hover { } #subheader{ background-color: #ffffff; margin: 0px; padding: 5px 10px; } #subheader a { font-size:10px; font-style:normal; font-weight:bold; text-decoration:none; color:#215A19; } #subheader a:hover { text-decoration:underline; } #subheader .left{ text-align: left; float:left } #subheader .right{ text-align: right; } /* Block title */ div.blockheader{ margin: 0px; padding: 2px 5px; /* background: url(/templates/mxBase1/images/cornerr.gif) top right no-repeat; */ } #leftcol div.blockheader{ /* border-top: 1px solid #B0B0B0; border-right: 1px solid #B0B0B0; border-bottom: 0px solid #B0B0B0; border-left: 1px solid #B0B0B0; */ } #middlecol div.blockheader{ } #rightcol div.blockheader{ } div.editCP_switch{ position: relative; margin-top: -20px; margin-right: 0px; padding: 0px; float: right; } div.blockhidden{ position: relative; margin-top: -20px; margin-left: 0px; padding: 0px; float: left; } /* Form elements */ .trimform { margin-bottom: 0px; margin-top: 0px; } div.block{ margin: 0px; padding: 0px; } #leftcol div.block{ /* border-top: 1px solid #B0B0B0; border-right: 1px solid #B0B0B0; border-bottom: 1px solid #B0B0B0; border-left: 1px solid #B0B0B0; */ } #middlecol div.block{ /* border-top: 1px solid #B0B0B0; border-right: 1px solid #B0B0B0; border-bottom: 1px solid #B0B0B0; border-left: 1px solid #B0B0B0; background-color: #ffffff; */ padding: 5px; } #rightcol div.block{ } #footer{ clear: both; margin: 0px; padding: 2px 5px; color: #333; background-color: #00355C; border-top: 1px solid gray; font-size: 9px; } #footer .globalNav{ text-align: center; color: #cccccc; white-space: nowrap; } /* 'nowrap' prevents links from line-wrapping if there are too many to fit in one line this will force a horizontal scrollbar if there isn't enough room for all links remove rule or change value to 'normal' if you want the links to line-wrap */ #footer .globalNav a { padding: 0px 4px 0px 0px; } #footer a, #footer a:link, #footer a:visited { text-decoration: none; color: #CFD7D1; font-weight: bold;} #footer a:hover{ text-decoration: underline; color: #CFD7D1; font-weight: bold;} #footer a.copyright, #footer a.copyright:link, #footer a.copyright:visited { text-decoration: none; color: #CFD7D1; font-weight: normal;} #footer a.copyright:hover{ text-decoration: underline; color: #CFD7D1; font-weight: normal;} #footer p { margin: 0px 0px 1em 0px; } .pageStats { padding: 0px 10px 5px 0px; } * html x { /* This is the Tan hack */ width: 130px; /* For IE5 */ w\idth: 100px; } /* For IE6 */ /***********************************************/ /* Theme */ /***********************************************/ /* General text */ font,th,td,p { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; } #leftcol font, #leftcol th, #leftcol td, #leftcol p { color: #000000; } #middlecol font, #middlecol th, #middlecol td, #middlecol p { color: #000000; } #rightcol font, #rightcol th, #rightcol td, #rightcol p { color: #000000; } .gen,.genmed,.gensmall { color : #000000; } a,a.gen,a.genmed,a.gensmall { color: #006699; text-decoration: none; } a:hover,a.gen:hover,a.genmed:hover,a.gensmall:hover { color: #DD6900; text-decoration: underline; } tr.oddrow a, tr.oddrow a.gen,tr.oddrow a.genmed, tr.oddrow a.gensmall { font-size:10px; color: #ffffff; text-decoration: none; } tr.oddrow a:hover, tr.oddrow a.gen:hover,tr.oddrow a.genmed:hover,tr.oddrow a.gensmall:hover { color: #215A19; text-decoration: underline; } /* #leftcol .gen, #leftcol .genmed, #leftcol .gensmall { color : #000000; } #leftcol a.gen, #leftcol a.genmed, #leftcol a.gensmall { color: #006699; text-decoration: none; } #leftcol a.gen:hover, #leftcol a.genmed:hover, #leftcol a.gensmall:hover { color: #DD6900; text-decoration: underline; } #middlecol .gen, #middlecol .genmed, #middlecol .gensmall { color : #000000; } #middlecol a.gen, #middlecol a.genmed, #middlecol a.gensmall { color: #006699; text-decoration: none; } #middlecol a.gen:hover, #middlecol a.genmed:hover, #middlecol a.gensmall:hover { color: #DD6900; text-decoration: underline; } #rightcol .gen, #rightcol .genmed, #rightcol .gensmall { color : #000000; } #rightcol a.gen, #rightcol a.genmed, #rightcol a.gensmall { color: #006699; text-decoration: none; } #rightcol a.gen:hover, #rightcol a.genmed:hover, #rightcol a.gensmall:hover { color: #DD6900; text-decoration: underline; } */ .gen { font-size : 11px; } .genmed { font-size : 10px; } .gensmall { font-size : 9px; } /* This is the outline round the main forum tables */ .forumline { } /* Main table cell colours and backgrounds */ td.row1 { } td.row2 { background-color: #DEE3E7; } td.row3 { background-color: #D1D7DC; } td.oddcell { background-color: #97AC7C; } tr.oddrow { background-color: #97AC7C; } /* #leftcol td.row1 { background-color: #EFEFEF; } #leftcol td.row2 { background-color: #DEE3E7; } #leftcol td.row3 { background-color: #D1D7DC; } #middlecol td.row1 { background-color: #EFEFEF; } #middlecol td.row2 { background-color: #DEE3E7; } #middlecol td.row3 { background-color: #D1D7DC; } #rightcol td.row1 { background-color: #EFEFEF; } #rightcol td.row2 { background-color: #DEE3E7; } #rightcol td.row3 { background-color: #D1D7DC; } */ #middlecol div.block img { margin: 4px 10px 4px 4px; } div.block p { margin: 0.7em 0px 0.7em 0px; } div.block h1, div.block h2 { margin: .2em 0px .4em 0px; } div.block h3, div.block h4 { margin: 1.5em 0px .4em 0px; } h1 { font-family: Geneva, Arial, Helvetica, san-serif; font-size: 14px; font-weight: bold; color: #215A19; letter-spacing: 2px; } h2 { font-family: Geneva, Arial, Helvetica, san-serif; font-size: 13px; font-weight: bold; color: #215A19; letter-spacing: 2px; } h3 { font-family: Geneva, Arial, Helvetica, san-serif; font-size: 12px; font-weight: bold; font-variant: normal; color: #003300; text-transform: uppercase; } h4 { font-size: 10px; font-variant: normal; color: #006600; text-transform: uppercase; line-height: 5px;} /* Block titles */ .blocktitle { font-family: Verdana, Arial, Helvetica, sans-serif;font-weight: bold; font-size: 11px ; letter-spacing: 1px;} a.blocktitle { text-decoration: none;} a.blocktitle:hover{ text-decoration: underline;} /* Discreet text */ .discreet { font-size : 9px; color : #879C6C } #leftcol .blocktitle, #leftcol a.blocktitle { color : #00355C;} #middlecol .blocktitle, #middlecol a.blocktitle { color : #00355C;} #rightcol .blocktitle, #rightcol a.blocktitle { color : #00355C;} /* The register, login, search etc links at the top of the page */ .mainmenu { font-size : 11px; color : #000000 } a.mainmenu { text-decoration: none; color : #006699; } a.mainmenu:hover{ text-decoration: underline; color : #DD6900; } /* Forum category titles */ .cattitle { font-weight: bold; font-size: 12px ; letter-spacing: 1px; color : #006699} a.cattitle { text-decoration: none; color : #006699; } a.cattitle:hover{ text-decoration: underline; } /* Forum title: Text and link to the forums used in: index.php */ .forumlink { font-weight: bold; font-size: 12px; color : #006699; } a.forumlink { text-decoration: none; color : #006699; } a.forumlink:hover{ text-decoration: underline; color : #DD6900; } /* Used for the navigation text, (Page 1,2,3 etc) and the navigation bar when in a forum */ .nav { font-weight: bold; font-size: 11px; color : #000000;} a.nav { text-decoration: none; color : #006699; } a.nav:hover { text-decoration: underline; } /* titles for the topics: could specify viewed link colour too */ .topictitle { font-weight: bold; font-size: 11px; color : #000000; } a.topictitle:link { text-decoration: none; color : #006699; } a.topictitle:visited { text-decoration: none; color : #5493B4; } a.topictitle:hover { text-decoration: underline; color : #DD6900; } /* Name of poster in viewmsg.php and viewtopic.php and other places */ .name { font-size : 11px; color : #000000;} /* Location, number of posts, post date etc */ .postdetails { font-size : 10px; color : #000000; } /* The content of the posts (body of text) */ .postbody { font-size : 12px;} a.postlink:link { text-decoration: none; color : #006699 } a.postlink:visited { text-decoration: none; color : #5493B4; } a.postlink:hover { text-decoration: underline; color : #DD6900} /* Quote & Code blocks */ .code { font-family: Courier, 'Courier New', sans-serif; font-size: 10px; color: #006600; background-color: #FAFAFA; border: #D1D7DC; border-style: solid; border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px } .quote { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color: #444444; line-height: 125%; background-color: #FAFAFA; border: #D1D7DC; border-style: solid; border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px } /* Copyright and bottom info */ .copyright { font-size: 10px; font-family: Verdana, Arial, Helvetica, sans-serif; color: #444444; letter-spacing: -1px;} a.copyright { color: #444444; text-decoration: none;} a.copyright:hover { color: #000000; text-decoration: underline;} /* Form elements */ input,textarea, select { color : #000000; font: normal 10px Verdana, Arial, Helvetica, sans-serif; border-color : #000000; } /* The text input fields background colour */ input.post, textarea.post, select { background-color : #FFFFFF; } input { text-indent : 2px; } /* The buttons used for bbCode styling in message post */ input.button { background-color : #EFEFEF; color : #000000; font-size: 10px; font-family: Verdana, Arial, Helvetica, sans-serif; } /* The main submit button option */ input.mainoption { background-color : #FAFAFA; font-weight : bold; } /* None-bold submit button */ input.liteoption { background-color : #FAFAFA; font-weight : normal; } /* This is the line in the posting page which shows the rollover help line. This is actually a text box, but if set to be the same colour as the background no one will know ;) */ .helpline { background-color: #DEE3E7; border-style: none; } /* Import the fancy styles for IE only (NS4.x doesn't use the @import function) */ /* @import url("formIE.css"); */ /* Fancy form styles for IE */ input, textarea, select { border-top-width : 1px; border-right-width : 1px; border-bottom-width : 1px; border-left-width : 1px; } input { text-indent : 2px; } input.button { border-top-width : 1px; border-right-width : 1px; border-bottom-width : 1px; border-left-width : 1px; } .postbody { line-height: 18px} /* Form elements */ form { margin: 0px; } /* Form elements */ form.mx_editform { margin-bottom: 0px; margin-top: 0px; } /* This is the border around numbers in pagination */ .mx_pagination, .mx_pagination_sele, .mx_pagination_over { padding-left: 2px; padding-right: 2px; border-top: 1px solid #B0B0B0; border-right: 1px solid #B0B0B0; border-bottom: 1px solid #B0B0B0; border-left: 1px solid #B0B0B0; text-decoration: none; } .mx_pagination_sele { background-color: #E0E0E0; } .mx_pagination_over { background-color: #F0F0F0; } .shadow { color: #00AA00; filter: DropShadow(Color=#660000, OffX=5, OffY=5, Positive=1); } img.shadow { color: #00AA00; filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=5, OffY=5, Color='gray', Positive='true'); } /* This is the style used for the top page title. */ .pagetitle { font-weight: bold; font-size: 30px; font-family: "Comic Sans MS", Verdana, Arial, Helvetica, sans-serif; text-decoration: none; line-height : 120%; color : #000066; font-variant: small-caps; text-transform: capitalize; letter-spacing: 5px; vertical-align: 20%; } /* This is the style used for the top site title. */ .sitetitle { font-family: Arial; font-variant: small-caps; font-weight: bolder; font-size: 12pt; color: #000066; } /* This is the style used for the top site description. */ .sitetitle_desc { color: #006699; font-size: 9px; } /* Block Navigation */ #leftcol ul { border: 1px solid #00355C; border-width: 1px 0px 1px 1px; font-size: 11px; /* font-size: 85%; */ list-style: none; margin: 3px 0px 3px 0px; padding: 0px; } #leftcol ul li { border-bottom: 1px solid #fff; padding: 2px; } #leftcol ul a { /* background: #ffffff url(/modules/mx_navmenu/templates/samSkolan3/images/arrow_right.gif) 5px 50% no-repeat; */ background: #ffffff; border: none; color: #215A19; display: block; line-height: 1.4em; /* padding-left: 20px; */ padding: 2px 2px 2px 5px; text-decoration: none; font-size: 11px; } #leftcol ul a:hover { /* background: #efefef url(/modules/mx_navmenu/templates/samSkolan3/images/arrow_right.gif) 5px 50% no-repeat; */ background: #efefef; border: none; color: #215A19; } #leftcol li#cattitle a { /* background: #ffffff url(/modules/mx_navmenu/templates/samSkolan3/images/arrow_right.gif) 5px 50% no-repeat; */ background: #ffffff; color: #215A19; font-weight: bold; font-variant: small-caps; } #leftcol li#cat a { /* background: #ffffff url(/modules/mx_navmenu/templates/samSkolan3/images/arrow_right.gif) 5px 50% no-repeat; */ background: #00355C; color: #ffffff; font-weight: bold; font-variant: small-caps; } --- NEW FILE: mxBase1.cfg --- <?php /** * * @package mxBB Portal Core * @version $Id: mxBase1.cfg,v 1.1 2008/02/11 22:56:39 jonohlsson Exp $ * @copyright (c) 2002-2006 mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ /** Default standalone mxBB style, by: * * The mxBB Development Team * Version: 1.0 * Requirements: mxBB Core 2.8.x * */ /** Based on original theme by: * * copyright (C) 2001 The phpBB Group * Created by subBlue design * www.subBlue.com * subSilver dev. forum: www.subSky.com/phpBB2/ * */ $mx_template_settings['portal_backend'] = 'internal'; // // Do not alter this line! // define(MX_TEMPLATE_CONFIG, true); $mx_template_config = true; /********************************************************************************\ | Template Setup | - define general template settings \********************************************************************************/ // // Credits, copyrights etc $mx_template_settings['template_copy'] = 'Original subSilver theme for phpBB by <a href="http://www.subSky.com/phpBB2/">subBlue design</a> :: Adapted for mxBB by <a href="http://www.mxbb.net">The mxBB Development Team</a>'; // // When creating a new template, you normally "clone" a template and modify a number of *.tpl files. // For similar templates this means only a few files are different. // For example: you may have a template similar to subSilver, but with a different overall_header.tpl - the other files are identical. // Then this template should only contain one *.tpl file, namely overall_header.tpl, // and with $mx_template_settings['cloned_template'] = 'subSilver'. // If this template is a full set of *.tpl files, leave this blank. $mx_template_settings['cloned_template'] = ''; // // Block border graphics are defined in mx_main_layout.tpl, within the 'graph_border' template environment. // Turning this setting 'false' will disable block border graphics. $mx_template_settings['border_graphics'] = false; /********************************************************************************\ | Define what graphics bundles to use | - these are very handy paths to ALL kind of phpBB/mxBB graphics \********************************************************************************/ $mx_images['mx_graphics']['general'] = file_exists( $mx_root_path . $current_template_path . "/images/logo.gif" ) ? $current_template_path . "/images" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/logo.gif" ) ? $cloned_template_path . "/images" : $default_template_path . "/images" ); $mx_images['mx_graphics']['page_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/page_icons" ) ? $current_template_path . "/images/page_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/page_icons" ) ? $cloned_template_path . "/images/page_icons" : $default_template_path . "/images/page_icons" ); $mx_images['mx_graphics']['block_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/block_icons" ) ? $current_template_path . "/images/block_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/block_icons" ) ? $cloned_template_path . "/images/block_icons" : $default_template_path . "/images/block_icons" ); $mx_images['mx_graphics']['menu_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/menu_icons" ) ? $current_template_path . "/images/menu_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/menu_icons" ) ? $cloned_template_path . "/images/menu_icons" : $default_template_path . "/images/menu_icons" ); $mx_images['mx_graphics']['admin_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/admin_icons" ) ? $current_template_path . "/images/admin_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/admin_icons" ) ? $cloned_template_path . "/images/admin_icons" : $default_template_path . "/images/admin_icons" ); $mx_images['mx_graphics']['theme_graphics'] = file_exists( $mx_root_path . $current_template_path . "/images/theme" ) ? $current_template_path . "/images/theme" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/theme" ) ? $cloned_template_path . "/images/theme" : $default_template_path . "/images/theme" ); // // Standalone mxBB installation? Where are the phpbb images? // //$mx_images['mx_graphics']['phpbb_icons'] = file_exists( $phpbb_root_path . $current_template_path . "/images" ) ? $current_template_path . "/images" : ( file_exists( $phpbb_root_path . $cloned_template_path . "/images" ) ? $cloned_template_path . "/images" : $default_template_path . "/images"); $mx_images['mx_graphics']['phpbb_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/phpbb2" ) ? $current_template_path . "/images/phpbb2" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/phpbb2" ) ? $cloned_template_path . "/images/phpbb2" : $default_template_path . "/images/phpbb2" ); // // Prefix all paths to get full img URLs // $current_template_images = PORTAL_URL . $mx_images['mx_graphics']['general']; // Logo etc $current_template_page_images = PORTAL_URL . $mx_images['mx_graphics']['page_icons']; // Used by adminCP - Pages $current_template_block_images = PORTAL_URL . $mx_images['mx_graphics']['block_icons']; // Used by userCP block buttons $current_template_menu_images = PORTAL_URL . $mx_images['mx_graphics']['menu_icons']; // Used by adminCP - Navigation Menu $current_template_admin_images = PORTAL_URL . $mx_images['mx_graphics']['admin_icons']; // Internal graphics for the mxBB adminCP $current_template_theme_graphics = PORTAL_URL . $mx_images['mx_graphics']['theme_graphics']; // Internal graphics for the mxBB adminCP // // Standalone mxBB installation? Where are the phpbb images? // //$current_template_phpbb_images = PHPBB_URL . $mx_images['mx_graphics']['phpbb_icons']; // phpBB graphics template $current_template_phpbb_images = PORTAL_URL . $mx_images['mx_graphics']['phpbb_icons']; // phpBB graphics template // // Define the icon css style // $mx_images['mx_graphics']['icon_style'] = '<style type="text/css"> .mx_icon { vertical-align: middle; background-color:; background-image: url('.$current_template_menu_images.'/icon_bg.gif); background-repeat: no-repeat; } .mx_icon_hot { vertical-align: middle; background-color:; background-image: url('.$current_template_menu_images.'/icon_bg.gif); background-repeat: no-repeat; } </style>'; /********************************************************************************\ | Page Navigation Images | 1. If you want to control the overall_header.tpl images from this *.cfg file, make defintions below | 2. Or if not, use hardcoded image paths in overall_header.tpl, just like in the phpBB standard subSilver overall_header.tpl. \********************************************************************************/ // // Use mxBB graphics - normally the menu_icons bundle // $mx_images['mx_nav_home'] = "$current_template_menu_images/icon_home.gif"; // {NAV_IMAGES_HOME} $mx_images['mx_nav_forum'] = "$current_template_menu_images/icon_forum.gif"; // {NAV_IMAGES_FORUM} $mx_images['mx_nav_profile'] = "$current_template_menu_images/icon_profile.gif"; // {NAV_IMAGES_PROFILE} $mx_images['mx_nav_faq'] = "$current_template_menu_images/icon_faq.gif"; // {NAV_IMAGES_FAQ} $mx_images['mx_nav_search'] = "$current_template_menu_images/icon_search.gif"; // {NAV_IMAGES_SEARCH} $mx_images['mx_nav_members'] = "$current_template_menu_images/icon_members.gif"; // {NAV_IMAGES_MEMBERS} $mx_images['mx_nav_groups'] = "$current_template_menu_images/icon_groups.gif"; // {NAV_IMAGES_GROUPS} $mx_images['mx_nav_mail'] = "$current_template_menu_images/icon_mail.gif"; // {NAV_IMAGES_PRIVMSG} $mx_images['mx_nav_login'] = "$current_template_menu_images/icon_login.gif"; // {NAV_IMAGES_LOGIN_LOGOUT} $mx_images['mx_nav_register'] = "$current_template_menu_images/icon_register.gif"; // {NAV_IMAGES_REGISTER} // // Use standard phpBB graphics // /* $mx_images['mx_nav_home'] = "$current_template_phpbb_images/icon_minipost.gif"; $mx_images['mx_nav_forum'] = "$current_template_phpbb_images/icon_minipost.gif"; $mx_images['mx_nav_profile'] = "$current_template_phpbb_images/icon_mini_profile.gif"; $mx_images['mx_nav_faq'] = "$current_template_phpbb_images/icon_mini_faq.gif"; $mx_images['mx_nav_search'] = "$current_template_phpbb_images/icon_mini_search.gif"; $mx_images['mx_nav_members'] = "$current_template_phpbb_images/icon_mini_members.gif"; $mx_images['mx_nav_groups'] = "$current_template_phpbb_images/icon_mini_groups.gif"; $mx_images['mx_nav_mail'] = "$current_template_phpbb_images/icon_mini_message.gif"; $mx_images['mx_nav_login'] = "$current_template_phpbb_images/icon_mini_login.gif"; $mx_images['mx_nav_register'] = "$current_template_phpbb_images/icon_mini_register.gif"; */ /********************************************************************************\ | Block Images | - these images are used for the block editCP buttons and controls \********************************************************************************/ $mx_images['mx_contract'] = "$current_template_block_images/contract.gif"; $mx_images['mx_expand'] = "$current_template_block_images/expand.gif"; $mx_images['mx_block_edit_admin'] = "$current_template_block_images/block_edit_admin.gif"; $mx_images['mx_block_edit_split'] = "$current_template_block_images/block_edit_split.gif"; $mx_images['mx_block_edit'] = "$current_template_block_images/block_edit.gif"; $mx_images['mx_block_hidden'] = "$current_template_block_images/block_hidden.gif"; /********************************************************************************\ | adminCP/editCP Images | - these images are used for the adminCP & block editCP \********************************************************************************/ $mx_images['mx_spacer'] = "$current_template_phpbb_images/spacer.gif"; // // phpBB Graphics - for standalone mxBB installation // $images['icon_quote'] = "$current_template_phpbb_images/{LANG}/icon_quote.gif"; $images['icon_edit'] = "$current_template_phpbb_images/{LANG}/icon_edit.gif"; $images['icon_search'] = "$current_template_phpbb_images/{LANG}/icon_search.gif"; $images['icon_profile'] = "$current_template_phpbb_images/{LANG}/icon_profile.gif"; $images['icon_pm'] = "$current_template_phpbb_images/{LANG}/icon_pm.gif"; $images['icon_email'] = "$current_template_phpbb_images/{LANG}/icon_email.gif"; $images['icon_delpost'] = "$current_template_phpbb_images/icon_delete.gif"; //$images['icon_ip'] = "$current_template_phpbb_images/{LANG}/icon_ip.gif"; $images['icon_www'] = "$current_template_phpbb_images/{LANG}/icon_www.gif"; //$images['icon_icq'] = "$current_template_phpbb_images/{LANG}/icon_icq_add.gif"; //$images['icon_aim'] = "$current_template_phpbb_images/{LANG}/icon_aim.gif"; //$images['icon_yim'] = "$current_template_phpbb_images/{LANG}/icon_yim.gif"; //$images['icon_msnm'] = "$current_template_phpbb_images/{LANG}/icon_msnm.gif"; $images['icon_minipost'] = "$current_template_phpbb_images/icon_minipost.gif"; $images['icon_gotopost'] = "$current_template_phpbb_images/icon_minipost.gif"; $images['icon_minipost_new'] = "$current_template_phpbb_images/icon_minipost_new.gif"; $images['icon_latest_reply'] = "$current_template_phpbb_images/icon_latest_reply.gif"; $images['icon_newest_reply'] = "$current_template_phpbb_images/icon_newest_reply.gif"; $images['forum'] = "$current_template_phpbb_images/folder_big.gif"; $images['forum_new'] = "$current_template_phpbb_images/folder_new_big.gif"; $images['forum_locked'] = "$current_template_phpbb_images/folder_locked_big.gif"; $images['folder'] = "$current_template_phpbb_images/folder.gif"; $images['folder_new'] = "$current_template_phpbb_images/folder_new.gif"; $images['folder_hot'] = "$current_template_phpbb_images/folder_hot.gif"; $images['folder_hot_new'] = "$current_template_phpbb_images/folder_new_hot.gif"; $images['folder_locked'] = "$current_template_phpbb_images/folder_lock.gif"; $images['folder_locked_new'] = "$current_template_phpbb_images/folder_lock_new.gif"; $images['folder_sticky'] = "$current_template_phpbb_images/folder_sticky.gif"; $images['folder_sticky_new'] = "$current_template_phpbb_images/folder_sticky_new.gif"; $images['folder_announce'] = "$current_template_phpbb_images/folder_announce.gif"; $images['folder_announce_new'] = "$current_template_phpbb_images/folder_announce_new.gif"; $images['post_new'] = "$current_template_phpbb_images/{LANG}/post.gif"; $images['post_locked'] = "$current_template_phpbb_images/{LANG}/reply-locked.gif"; $images['reply_new'] = "$current_template_phpbb_images/{LANG}/reply.gif"; $images['reply_locked'] = "$current_template_phpbb_images/{LANG}/reply-locked.gif"; //$images['pm_inbox'] = "$current_template_phpbb_images/msg_inbox.gif"; //$images['pm_outbox'] = "$current_template_phpbb_images/msg_outbox.gif"; //$images['pm_savebox'] = "$current_template_phpbb_images/msg_savebox.gif"; //$images['pm_sentbox'] = "$current_template_phpbb_images/msg_sentbox.gif"; $images['pm_readmsg'] = "$current_template_phpbb_images/folder.gif"; $images['pm_unreadmsg'] = "$current_template_phpbb_images/folder_new.gif"; $images['pm_replymsg'] = "$current_template_phpbb_images/{LANG}/reply.gif"; $images['pm_postmsg'] = "$current_template_phpbb_images/{LANG}/msg_newpost.gif"; $images['pm_quotemsg'] = "$current_template_phpbb_images/{LANG}/icon_quote.gif"; $images['pm_editmsg'] = "$current_template_phpbb_images/{LANG}/icon_edit.gif"; $images['pm_new_msg'] = ""; $images['pm_no_new_msg'] = ""; $images['Topic_watch'] = ""; $images['topic_un_watch'] = ""; //$images['topic_mod_lock'] = "$current_template_phpbb_images/topic_lock.gif"; //$images['topic_mod_unlock'] = "$current_template_phpbb_images/topic_unlock.gif"; //$images['topic_mod_split'] = "$current_template_phpbb_images/topic_split.gif"; //$images['topic_mod_move'] = "$current_template_phpbb_images/topic_move.gif"; //$images['topic_mod_delete'] = "$current_template_phpbb_images/topic_delete.gif"; $images['voting_graphic'][0] = "$current_template_phpbb_images/voting_bar.gif"; $images['voting_graphic'][1] = "$current_template_phpbb_images/voting_bar.gif"; $images['voting_graphic'][2] = "$current_template_phpbb_images/voting_bar.gif"; $images['voting_graphic'][3] = "$current_template_phpbb_images/voting_bar.gif"; $images['voting_graphic'][4] = "$current_template_phpbb_images/voting_bar.gif"; // // Populate the $theme colors - for standalone mxBB // $template_config_row['body_background'] = ""; $template_config_row['body_bgcolor'] = "E5E5E5"; $template_config_row['body_text'] = "000000"; $template_config_row['body_link'] = "006699"; $template_config_row['body_vlink'] = "5493B4"; $template_config_row['body_alink'] = ""; $template_config_row['body_hlink'] = "DD6900"; $template_config_row['tr_color1'] = "EFEFEF"; $template_config_row['tr_color2'] = "DEE3E7"; $template_config_row['tr_color3'] = "D1D7DC"; $template_config_row['tr_class1'] = ""; $template_config_row['tr_class2'] = ""; $template_config_row['tr_class3'] = ""; $template_config_row['th_color1'] = "98AAB1"; $template_config_row['th_color2'] = "006699"; $template_config_row['th_color3'] = "FFFFFF"; $template_config_row['th_class1'] = "cellpic1.gif"; $template_config_row['th_class2'] = "cellpic3.gif"; $template_config_row['th_class3'] = "cellpic2.jpg"; $template_config_row['td_color1'] = "FAFAFA"; $template_config_row['td_color2'] = "FFFFFF"; $template_config_row['td_color3'] = ""; $template_config_row['td_class1'] = "row1"; $template_config_row['td_class2'] = "row2"; $template_config_row['td_class3'] = ""; $template_config_row['fontface1'] = "Verdana, Arial, Helvetica, sans-serif"; $template_config_row['fontface2'] = "Trebuchet MS"; $template_config_row['fontface3'] = "Courier, \'Courier New\', sans-serif"; $template_config_row['fontsize1'] = "10"; $template_config_row['fontsize2'] = "11"; $template_config_row['fontsize3'] = "12"; $template_config_row['fontcolor1'] = "444444"; $template_config_row['fontcolor2'] = "006600"; $template_config_row['fontcolor3'] = "FFA34F"; $template_config_row['span_class1'] = ""; $template_config_row['span_class2'] = ""; $template_config_row['span_class3'] = ""; $template_config_row['img_size_poll'] = "0"; $template_config_row['img_size_privmsg'] = "0"; /********************************************************************************\ | CORE Images \********************************************************************************/ // // Theme Graphics // $mx_images['theme_graphics'] = "$current_template_theme_graphics/"; // // Logo // $mx_images['mx_logo'] = "$current_template_images/logo.gif"; // // SiteLog // $mx_images['mx_dot'] = $images['folder']; // // Online Block // $mx_images['mx_who_is_online'] = "$current_template_phpbb_images/whosonline.gif"; ?> --- NEW FILE: overall_header.tpl --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html dir="{S_CONTENT_DIRECTION}"> <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> {MX_ADDITIONAL_JS_FILES} {MX_ADDITIONAL_HEADER_TEXT} </head> <body> <a name="top"></a> <div id="container"> <!-- Either Simple top image ... <img src="{THEME_GRAPHICS}/header.jpg"> End --> <!-- ...or put contents on background top image --> <table border="0" cellspacing="0" cellpadding="0" width=100%> <tr height="100"> <td background="{THEME_GRAPHICS}/top.jpg" width="750"> <table border=0 cellspacing=0 cellpadding=0 width="100%"> <tr height="80"> <td width="25%" align="left" valign="top"> <!--<a href="{U_INDEX}"><img src="{LOGO}" border="0" alt="{L_INDEX}" vspace="1"/></a>--> <a href="{U_INDEX}"><img width="100" height="70" src="{THEME_GRAPHICS}spacer.gif" border=0 alt="{L_INDEX}" title="{L_INDEX}"></a> </td> <td width="50%" align="center" valign="middle"> {PAGE_ICON}<span class="pagetitle">{PAGE_TITLE}</span> </td> <td width="25%" align="right" valign="top"><span class="sitetitle"> </td> </tr> <tr height="20"> <td width="100%" align="left" valign="top" colspan="3"> <img width="20" height="1" src="{THEME_GRAPHICS}spacer.gif" border=0> <span class="sitetitle_desc">{SITE_DESCRIPTION}</span> </td> </tr> </table> </td> </tr> </table> <!-- End --> <div id="header"> <div class="globalNav"> <!-- Either Template Based Navigation Menu... <span class="genmed"><a href="{U_INDEX}" class="genmed"><img src="{NAV_IMAGES_HOME}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a></span><span class="genmed"><a href="{U_INDEX}" class="genmed">{L_HOME}</a></span> | <span class="genmed"><a href="{U_INDEX_FORUM}" class="genmed"><img src="{NAV_IMAGES_FORUM}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a></span><span class="genmed"><a href="{U_INDEX_FORUM}" class="genmed">{L_FORUM}</a></span> <!-- BEGIN switch_user_logged_in --> | <span class="genmed"><a href="{U_PROFILE}" class="genmed"><img src="{NAV_IMAGES_PROFILE}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a></span><span class="genmed"><a href="{U_PROFILE}" class="genmed">{L_PROFILE}</a></span> <!-- END switch_user_logged_in --> | <span class="genmed"><a href="{U_SEARCH}" class="genmed"><img src="{NAV_IMAGES_SEARCH}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a></span><span class="genmed"><a href="{U_SEARCH}" class="genmed">{L_SEARCH}</a></span> | <span class="genmed"><a href="{U_FAQ}" class="genmed"><img src="{NAV_IMAGES_FAQ}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a></span><span class="genmed"><a href="{U_FAQ}" class="genmed">{L_FAQ}</a></span> | <span class="genmed"><a href="{U_MEMBERLIST}" class="genmed"><img src="{NAV_IMAGES_MEMBERS}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a></span><span class="genmed"><a href="{U_MEMBERLIST}" class="genmed">{L_MEMBERLIST}</a></span> | <span class="genmed"><a href="{U_GROUP_CP}" class="genmed"><img src="{NAV_IMAGES_GROUPS}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a></span><span class="genmed"><a href="{U_GROUP_CP}" class="genmed">{L_USERGROUPS}</a></span> <!-- BEGIN switch_user_logged_in --> | <span class="genmed"><a href="{U_PRIVATEMSGS}" class="genmed"><img src="{NAV_IMAGES_PRIVMSG}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a></span><span class="genmed"><a href="{U_PRIVATEMSGS}" class="genmed">{L_PRIVATEMSGS}</a></span> <!-- END switch_user_logged_in --> End --> <!-- ...or use Manual Navigation Menu <span class="genmed"><a href="{U_INDEX}" class="genmed">{L_HOME}</a></span> | <span class="genmed"><a href="{U_INDEX_FORUM}" class="genmed">{L_FORUM}</a></span> End --> <!-- ...or use Generated Navigation Menu --> {OVERALL_NAVIGATION} <!-- Generated Navigation Menu --> </div> </div> <div id="subheader"> <div class="left"> <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="genmed"><a href="{U_LOGIN_LOGOUT}" class="genmed">{L_LOGIN_LOGOUT}</a></span> <!-- 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="genmed"><a href="{U_REGISTER}" class="genmed">{L_REGISTER}</a></span> <!-- END switch_user_logged_out --> </div> <div class="right"> <!-- BEGIN switch_view --> <span class="gensmall">{CURRENT_TIME}</span> <!-- END switch_view --> <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> </div> </div> --- NEW FILE: overall_noheader.tpl --- <!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}"> <meta http-equiv="Content-Style-Type" content="text/css"> {META} {NAV_LINKS} <title>{SITENAME} :: {PAGE_TITLE}</title> <!-- First load standard template *.css definition, located in the the phpbb template folder --> <!-- 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 --> <!-- 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" 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> </head> <body bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}" /> <a name="top"></a> --- NEW FILE: overall_footer.tpl --- <!-- BEGIN page_last_updated --> <div class="pageStats" align="right"><span class="copyright">{page_last_updated.L_PAGE_UPDATED} {page_last_updated.TIME} {page_last_updated.NAME} </span></div> <!-- END page_last_updated --> <div id="footer"> <div class="globalNav" align="center"> <!-- BEGIN editcp_exists --> <span class="genmed">{editcp_exists.ADMIN_OPTIONS}</span> <span class="newsbutton" onclick="mx_toggle_editCP(this, 'editCP_switch', '{editcp_exists.EDITCP_EXPAND_IMG}', '{editcp_exists.EDITCP_CONTRACT_IMG}');"><img src="{editcp_exists.EDITCP_DYNAMIC_IMG}" border="0" alt="" /></span><br /> <!-- END editcp_exists --> {ADMIN_LINK} <!-- We request you retain the full copyright notice below including the link to www.phpbb.com. This not only gives respect to the large amount of time given freely by the developers but also helps build interest, traffic and use of phpBB 2.0. If you cannot (for good reason) retain the full copyright we request you at least leave in place the Powered by phpBB line, with phpBB linked to www.phpbb.com. If you refuse to include even this then support on our forums may be affected. The phpBB Group : 2002 & mxBB Team : 2002 // --> {POWERED_BY} <a href="http://www.mxbb.net/" target="_mx-system" class="copyright">mxBB Portal</a> {MX_VERSION} © 2001-2007 & <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> {PHPBB_VERSION} © 2001, 2003 phpBB Group | <a href="{MXBB_EXTRA_URL}" target="_phpbb" class="copyright">{MXBB_EXTRA}</a> </div> </div> </div> <!-- This displays generation info at the bottom of the page --> {EXECUTION_STATS} {MX_ADDITIONAL_FOOTER_TEXT} </body> </html> --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> --- NEW FILE: gecko.css --- /* Addon defs for gecko browsers, or redefined */ |
|
From: Jon O. <jon...@us...> - 2008-02-11 22:56:44
|
Update of /cvsroot/mxbb/core/templates/mxBase1/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10378/admin Added Files: index.htm page_footer.tpl page_header.tpl Log Message: Here we go. Not ready yet. but not to break fresh install ;) --- NEW FILE: page_header.tpl --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html dir="{S_CONTENT_DIRECTION}"> <head> {META} <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" /> <title>{SITENAME} - {L_MX_ADMIN}</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} {MX_ICON_CSS} <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> </head> <body bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}"> <a name="top"></a> --- NEW FILE: page_footer.tpl --- <!-- Please note that the following copyright notice MUST be displayed on each and every page output by phpBB. You may alter the font, colour etc. but you CANNOT remove it, nor change it so that it be, to all intents and purposes, invisible. You may ADD your own notice to it should you have altered the code but you may not replace it. The hyperlink must also remain intact. These conditions are part of the licence this software is released under. See the LICENCE and README files for more information. The phpBB Group : 2001 & mxBB Team : 2002 //--> <div align="center"><span class="copyright">{POWERED_BY} <a href="http://www.mx-system.com/" target="_mx-system" class="copyright">mxBB-Portal</a> {MX_VERSION} © 2001-2006 & <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> {PHPBB_VERSION} © 2001, 2003 phpBB Group</span></div> <!-- This displays generation info at the bottom of the page --> {EXECUTION_STATS} </body> </html> --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |