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: FlorinCB <ory...@us...> - 2008-09-08 01:05:22
|
Update of /cvsroot/mxbb/core/install/templates In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12423 Modified Files: mx_install_body.tpl Log Message: Ok all known bugs with installer are fixed. Index: mx_install_body.tpl =================================================================== RCS file: /cvsroot/mxbb/core/install/templates/mx_install_body.tpl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** mx_install_body.tpl 10 Feb 2008 20:58:47 -0000 1.7 --- mx_install_body.tpl 8 Sep 2008 01:05:16 -0000 1.8 *************** *** 41,44 **** --- 41,45 ---- pathinfo[i]['phpbb_path'] = '{datarow.PHPBB_PATH}'; //pathinfo[i]['phpbb_url'] = '{datarow.PHPBB_URL}'; + pathinfo[i]['portal_backend'] = '{datarow.PORTAL_BACKEND}'; pathinfo[i]['portal_url'] = '{datarow.PORTAL_URL}'; pathinfo[i]['dbms'] = '{datarow.DBMS}'; *************** *** 70,73 **** --- 71,78 ---- <!-- END switch_readonly_mode --> <tr> + <td class="row1" align="right" width="50%"><span class="gen">{L_PORTAL_BACKEND}: </span></td> + <td class="row2"><input type="text" name="portal_backend" value="{PORTAL_BACKEND}" {READONLY}/></td> + </tr> + <tr> <td class="row1" colspan="2" align="center"><input size="140" class="info" type="text" name="info" value="{INFO}" /></td></td> </tr> |
|
From: FlorinCB <ory...@us...> - 2008-09-08 00:54:11
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv30825 Modified Files: mx_install.php Log Message: one more bug to fix Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.104 retrieving revision 1.105 diff -C2 -d -r1.104 -r1.105 *** mx_install.php 8 Sep 2008 00:07:28 -0000 1.104 --- mx_install.php 8 Sep 2008 00:54:05 -0000 1.105 *************** *** 1183,1186 **** --- 1183,1196 ---- // + // Check if a config.php file exists and was altered to allow re-install + // + if (file_exists($mx_root_path . "config.$phpEx")) + { + print("Warning: Existing mxp configuration file was found, If you continue the database will be reinstalled!"); + + $mx_info = get_mxbb_info($mx_root_path . "config.$phpEx"); + } + + // // First, provide the option of standalone install // *************** *** 1191,1201 **** 'PORTAL_BACKEND' => 'internal', 'PHPBB_URL' => '', ! 'DBMS' => '', ! 'DB_HOST' => 'localhost', ! 'DB_NAME' => '', ! 'DB_USER' => '', ! 'DB_PASSWD' => '', ! 'DB_PREFIX' => '', ! //'ACM_TYPE' => ( !empty($phpbb_info['acm_type']) ? $phpbb_info['acm_type'] : 'file' ), 'PHPBB_ROOT' => '', )); --- 1201,1210 ---- 'PORTAL_BACKEND' => 'internal', 'PHPBB_URL' => '', ! 'DBMS' => $mx_info['dbms'] ? $mx_info['dbms'] : '', ! 'DB_HOST' => $mx_info['dbhost'] ? $mx_info['dbhost'] : 'localhost', ! 'DB_NAME' => $mx_info['dbname'] ? $mx_info['dbname'] : '', ! 'DB_USER' => $mx_info['dbuser'] ? $mx_info['dbuser'] : '', ! 'DB_PASSWD' => $mx_info['dbpasswd'] ? $mx_info['dbpasswd'] : '', ! 'DB_PREFIX' => $mx_info['table_prefix'] ? $mx_info['table_prefix'] : '', 'PHPBB_ROOT' => '', )); *************** *** 1241,1245 **** else { ! print_r("File: " . $phpbb_root_path . "config.$phpEx" . " not found."); $portal_backend = 'internal'; } --- 1250,1254 ---- else { ! echo("File: " . $phpbb_root_path . "config.$phpEx" . " not found."); $portal_backend = 'internal'; } *************** *** 1260,1264 **** if( !isset($phpbb_info['dbms']) || !array_key_exists($phpbb_info['dbms'], $available_dbms) ) { ! //continue; } --- 1269,1273 ---- if( !isset($phpbb_info['dbms']) || !array_key_exists($phpbb_info['dbms'], $available_dbms) ) { ! continue; } *************** *** 1300,1309 **** 'PORTAL_BACKEND' => $portal_backend, 'DBMS' => $phpbb_info['dbms'], ! 'DB_HOST' => !empty($phpbb_info['dbhost']) ? $phpbb_info['dbhost'] : 'localhost', 'DB_NAME' => $phpbb_info['dbname'], 'DB_USER' => $phpbb_info['dbuser'], 'DB_PASSWD' => $phpbb_info['dbpasswd'], 'DB_PREFIX' => $phpbb_info['table_prefix'], ! 'ACM_TYPE' => ( !empty($phpbb_info['acm_type']) ? $phpbb_info['acm_type'] : 'file' ), 'PHPBB_ROOT' => $phpbb_root_path, )); --- 1309,1318 ---- 'PORTAL_BACKEND' => $portal_backend, 'DBMS' => $phpbb_info['dbms'], ! 'DB_HOST' => $phpbb_info['dbhost'] ? $phpbb_info['dbhost'] : 'localhost', 'DB_NAME' => $phpbb_info['dbname'], 'DB_USER' => $phpbb_info['dbuser'], 'DB_PASSWD' => $phpbb_info['dbpasswd'], 'DB_PREFIX' => $phpbb_info['table_prefix'], ! 'ACM_TYPE' => $phpbb_info['acm_type'] ? $phpbb_info['acm_type'] : 'file', 'PHPBB_ROOT' => $phpbb_root_path, )); |
|
From: FlorinCB <ory...@us...> - 2008-09-08 00:54:09
|
Update of /cvsroot/mxbb/core/install/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv30825/includes Modified Files: functions_install.php Log Message: one more bug to fix Index: functions_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/includes/functions_install.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** functions_install.php 8 Sep 2008 00:07:26 -0000 1.15 --- functions_install.php 8 Sep 2008 00:54:05 -0000 1.16 *************** *** 859,862 **** --- 859,880 ---- } + function get_mxbb_info($config) + { + + if ((@include $config) === false) + { + install_die(GENERAL_ERROR, 'Configuration file ' . $config . ' couldn\'t be opened.'); + } + + return array( + 'dbms' => $dbms, + 'dbhost' => $dbhost, + 'dbname' => $dbname, + 'dbuser' => $dbuser, + 'dbpasswd' => $dbpasswd, + 'mx_table_prefix' => $mx_table_prefix, + ); + } + // |
|
From: FlorinCB <ory...@us...> - 2008-09-08 00:07:35
|
Update of /cvsroot/mxbb/core/install/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3437/includes Modified Files: functions_install.php Log Message: This fix is majore, and will allow installing mxp with any phpBB forum available :)))))))))))))))))) Index: functions_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/includes/functions_install.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** functions_install.php 7 Sep 2008 23:46:50 -0000 1.14 --- functions_install.php 8 Sep 2008 00:07:26 -0000 1.15 *************** *** 863,876 **** // Get the full phpBB URL by reading its config table. // ! function get_phpbb_url($table_prefix) { global $mx_root_path, $phpEx, $db; - $sql = 'SELECT * - FROM ' . $table_prefix . 'config'; - if( !($result = $db->sql_query($sql)) ) - { - return false; - } while ($row = $db->sql_fetchrow($result)) { --- 863,876 ---- // Get the full phpBB URL by reading its config table. // ! function get_phpbb_url($table_prefix, $portal_backend) { global $mx_root_path, $phpEx, $db; + + $were_sql = ($portal_backend === 'phpbb3') ? 'WHERE is_dynamic = 1' : ''; + + $sql = 'SELECT config_name, config_value + FROM ' . $table_prefix . 'config' . $were_sql; + $result = $db->sql_query($sql); while ($row = $db->sql_fetchrow($result)) { |
|
From: FlorinCB <ory...@us...> - 2008-09-08 00:07:35
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3437 Modified Files: mx_install.php Log Message: This fix is majore, and will allow installing mxp with any phpBB forum available :)))))))))))))))))) Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.103 retrieving revision 1.104 diff -C2 -d -r1.103 -r1.104 *** mx_install.php 5 Sep 2008 16:23:49 -0000 1.103 --- mx_install.php 8 Sep 2008 00:07:28 -0000 1.104 *************** *** 583,586 **** --- 583,601 ---- @define('PORTAL_BACKEND', $portal_backend); + switch (PORTAL_BACKEND) + { + case 'internal': + + case 'phpbb2': + + $tplEx = 'tpl'; + break; + + case 'phpbb3': + + $tplEx = 'html'; + break; + } + if ($mx_request_vars->is_post('phpbb')) { *************** *** 906,916 **** $sql[] = "INSERT INTO " . $mx_table_prefix . "column_block VALUES('3', '8', '10')"; ! $sql[] = "INSERT INTO " . $mx_table_prefix . "function VALUES('8', '30', 'phpBB Index', 'phpBB Index Block', 'mx_forum.php', '')"; ! $sql[] = "INSERT INTO " . $mx_table_prefix . "function VALUES('14', '30', 'MXP Polls', 'MXP Polls', 'mx_poll.php', '')"; ! $sql[] = "INSERT INTO " . $mx_table_prefix . "function VALUES('2', '30', 'phpBB Announcements', 'phpBB Announcements Block', 'mx_announce.php', '')"; ! $sql[] = "INSERT INTO " . $mx_table_prefix . "function VALUES('31', '30', 'Last Posts', 'phpBB Last Posts Function', 'mx_last_msg.php', '')"; ! $sql[] = "INSERT INTO " . $mx_table_prefix . "function VALUES('41', '30', 'Statistics', 'Site Statistics Function', 'mx_statistics.php', '')"; ! $sql[] = "INSERT INTO " . $mx_table_prefix . "page VALUES('2', 'Forum', 'This is the phpBB Forum startpage', '0', '', '20', 'icon_forum.gif', '', '', '', '', '1', '0', '0', '0', '-1', '-1', '', '', '', '0', 'a:1:{i:0;s:0:\"\";}', '1')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "page VALUES('4', 'Sitestats', 'Sitestats page', '0', '', '40', 'icon_stats.gif', '', '', '', '', '1', '0', '0', '0', '-1', '-1', '', '', '', '0', 'a:1:{i:0;s:0:\"\";}', '-1')"; --- 921,931 ---- $sql[] = "INSERT INTO " . $mx_table_prefix . "column_block VALUES('3', '8', '10')"; ! $sql[] = "INSERT INTO " . $mx_table_prefix . "function VALUES('8', '30', 'phpBB Index', 'phpBB Index Block', 'mx_forum." . $phpEx . "', '')"; ! $sql[] = "INSERT INTO " . $mx_table_prefix . "function VALUES('14', '30', 'MXP Polls', 'MXP Polls', 'mx_poll." . $phpEx . "', '')"; ! $sql[] = "INSERT INTO " . $mx_table_prefix . "function VALUES('2', '30', 'phpBB Announcements', 'phpBB Announcements Block', 'mx_announce." . $phpEx . "', '')"; ! $sql[] = "INSERT INTO " . $mx_table_prefix . "function VALUES('31', '30', 'Last Posts', 'phpBB Last Posts Function', 'mx_last_msg." . $phpEx . "', '')"; ! $sql[] = "INSERT INTO " . $mx_table_prefix . "function VALUES('41', '30', 'Statistics', 'Site Statistics Function', 'mx_statistics." . $phpEx . "', '')"; ! $sql[] = "INSERT INTO " . $mx_table_prefix . "page VALUES('2', 'Forum', 'This is the phpBB Forum startpage', '0', '', '20', 'icon_forum.gif', '', '', '', '', '1', '0', '0', '0', '-1', '-1', 'overall_header_navigation_phpbb." . $tplEx . "', '', '', '0', 'a:1:{i:0;s:0:\"\";}', '1')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "page VALUES('4', 'Sitestats', 'Sitestats page', '0', '', '40', 'icon_stats.gif', '', '', '', '', '1', '0', '0', '0', '-1', '-1', '', '', '', '0', 'a:1:{i:0;s:0:\"\";}', '-1')"; *************** *** 1109,1112 **** --- 1124,1128 ---- // If not, we'll try to search from our own directory. // + print_r("Warning: Access to our parent directory is restricted."); $phpbb_search_path = $mx_absolute_path; } *************** *** 1190,1199 **** // Now, list all phpBB backend options available // ! for( $i = 0; $i < $files_cnt; $i++ ) { // // Get the phpBB base dir (computed from the document root), for example /phpBB/, /forum/ or /... // ! $phpbb_base_path = '/' . ( empty($files_ary[$i]) ? '' : ( $files_ary[$i] . '/' ) ); // --- 1206,1215 ---- // Now, list all phpBB backend options available // ! for($i = 0; $i < $files_cnt; $i++) { // // Get the phpBB base dir (computed from the document root), for example /phpBB/, /forum/ or /... // ! $phpbb_base_path = '/' . (!$files_ary[$i] ? '' : $files_ary[$i] . '/'); // *************** *** 1244,1250 **** if( !isset($phpbb_info['dbms']) || !array_key_exists($phpbb_info['dbms'], $available_dbms) ) { ! continue; } ! // // Try to Connect to this phpBB Database --- 1260,1266 ---- if( !isset($phpbb_info['dbms']) || !array_key_exists($phpbb_info['dbms'], $available_dbms) ) { ! //continue; } ! // // Try to Connect to this phpBB Database *************** *** 1259,1263 **** // Get the phpBB URL // ! $phpbb_url = get_phpbb_url($phpbb_info['table_prefix']); // --- 1275,1279 ---- // Get the phpBB URL // ! $phpbb_url = get_phpbb_url($phpbb_info['table_prefix'], $portal_backend); // |
|
From: FlorinCB <ory...@us...> - 2008-09-07 23:46:56
|
Update of /cvsroot/mxbb/core/install/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv13306 Modified Files: functions_install.php Log Message: this will allow two databse connections ;) Index: functions_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/includes/functions_install.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** functions_install.php 19 Aug 2008 14:34:59 -0000 1.13 --- functions_install.php 7 Sep 2008 23:46:50 -0000 1.14 *************** *** 909,912 **** --- 909,925 ---- require_once($mx_root_path . 'includes/db/' . $dbms . '.' . $phpEx); // Load dbal and initiate class + + + if(!$db->db_connect_id) + { + // Connect to DB + @define('SQL_LAYER', $dbms); + $sql_db = 'dbal_' . $dbms; + $db = new $sql_db(); + if(!$db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, false)) + { + print_r("Could not connect to all databases"); + } + } return $db->db_connect_id; |
|
From: FlorinCB <ory...@us...> - 2008-09-07 22:38:38
|
Update of /cvsroot/mxbb/core/templates/subsilver2 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27914 Modified Files: overall_header_navigation_phpbb.html Log Message: forum page should be whide Index: overall_header_navigation_phpbb.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/subsilver2/overall_header_navigation_phpbb.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** overall_header_navigation_phpbb.html 7 Sep 2008 21:54:21 -0000 1.6 --- overall_header_navigation_phpbb.html 7 Sep 2008 22:38:34 -0000 1.7 *************** *** 75,79 **** <a name="top"></a> ! <div style="width:960px;clear:both;margin: 0 auto;"> <table width="100%" align="center" cellspacing="0" cellpadding="0" border="0" class="mx_main_table"> <tr> --- 75,79 ---- <a name="top"></a> ! <div style="width:100%;clear:both;margin: 0 auto;"> <table width="100%" align="center" cellspacing="0" cellpadding="0" border="0" class="mx_main_table"> <tr> |
|
From: FlorinCB <ory...@us...> - 2008-09-07 22:30:44
|
Update of /cvsroot/mxbb/core/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14969 Modified Files: overall_header.tpl overall_header_navigation.tpl overall_header_navigation_phpbb.tpl subSilver.css Log Message: wide witdh Index: overall_header.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/overall_header.tpl,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** overall_header.tpl 7 Sep 2008 21:54:19 -0000 1.31 --- overall_header.tpl 7 Sep 2008 22:30:30 -0000 1.32 *************** *** 73,77 **** <a name="top"></a> ! <table width="780" cellspacing="0" cellpadding="1" border="0" align="center" class="mx_main_table"> <tr> <td class="bodyline"> --- 73,77 ---- <a name="top"></a> ! <table width="100%" cellspacing="0" cellpadding="1" border="0" align="center" class="mx_main_table"> <tr> <td class="bodyline"> Index: overall_header_navigation.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/overall_header_navigation.tpl,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** overall_header_navigation.tpl 7 Sep 2008 21:54:15 -0000 1.12 --- overall_header_navigation.tpl 7 Sep 2008 22:30:30 -0000 1.13 *************** *** 73,77 **** <a name="top"></a> ! <table width="780" cellspacing="0" cellpadding="1" border="0" align="center" class="mx_main_table"> <tr> <td class="bodyline"> --- 73,77 ---- <a name="top"></a> ! <table width="100%" cellspacing="0" cellpadding="1" border="0" align="center" class="mx_main_table"> <tr> <td class="bodyline"> Index: overall_header_navigation_phpbb.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/overall_header_navigation_phpbb.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** overall_header_navigation_phpbb.tpl 7 Sep 2008 21:54:20 -0000 1.1 --- overall_header_navigation_phpbb.tpl 7 Sep 2008 22:30:31 -0000 1.2 *************** *** 73,77 **** <a name="top"></a> ! <table width="780" cellspacing="0" cellpadding="1" border="0" align="center" class="mx_main_table"> <tr> <td class="bodyline"> --- 73,77 ---- <a name="top"></a> ! <table width="100%" cellspacing="0" cellpadding="1" border="0" align="center" class="mx_main_table"> <tr> <td class="bodyline"> Index: subSilver.css =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/subSilver.css,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** subSilver.css 4 Feb 2008 16:01:41 -0000 1.7 --- subSilver.css 7 Sep 2008 22:30:32 -0000 1.8 *************** *** 4,15 **** p, td { font-size: 11px; color: #000000; } /* This is the main table round all portal contents, use with .bodyline */ .mx_main_table { } /* This is the outline table round the overall page header */ .mx_header_table { ! background-color: #FFFFFF; ! border: 2px solid #006699; } --- 4,16 ---- p, td { font-size: 11px; color: #000000; } + /* This is the main table round all portal contents, use with .bodyline */ .mx_main_table { + align:center; } /* This is the outline table round the overall page header */ .mx_header_table { ! border: 0.1em #006699 solid; } |
|
From: FlorinCB <ory...@us...> - 2008-09-07 22:15:55
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv23143 Modified Files: favicon.gif Log Message: file id Index: favicon.gif =================================================================== RCS file: /cvsroot/mxbb/core/favicon.gif,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvshqfJm7 and /tmp/cvsG73O4j differ |
|
From: FlorinCB <ory...@us...> - 2008-09-07 22:14:35
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21700 Modified Files: favicon.gif Log Message: file id Index: favicon.gif =================================================================== RCS file: /cvsroot/mxbb/core/favicon.gif,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvsyfLrf6 and /tmp/cvsBLldma differ |
|
From: FlorinCB <ory...@us...> - 2008-09-07 22:07:19
|
Update of /cvsroot/mxbb/core/templates/_core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12436 Modified Files: overall_header.tpl overall_header_navigation.tpl overall_header_navigation_phpbb.tpl Log Message: Check if U_REGISTER is defined, is not in internal backend ;) Index: overall_header_navigation.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/_core/overall_header_navigation.tpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** overall_header_navigation.tpl 7 Sep 2008 21:54:13 -0000 1.5 --- overall_header_navigation.tpl 7 Sep 2008 22:07:10 -0000 1.6 *************** *** 126,130 **** <td align="center" valign="middle" nowrap> <!-- IF USER_LOGGED_OUT --> ! <a href="{U_REGISTER}" class="mainmenu"><img src="{NAV_IMAGES_REGISTER}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a></span> <!-- ENDIF --> </td> --- 126,130 ---- <td align="center" valign="middle" nowrap> <!-- IF USER_LOGGED_OUT --> ! <a href="{U_REGISTER}" class="mainmenu"><img src="{NAV_IMAGES_REGISTER}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu"><!-- IF U_REGISTER -->{L_REGISTER}<!-- ENDIF --></a></span> <!-- ENDIF --> </td> Index: overall_header_navigation_phpbb.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/_core/overall_header_navigation_phpbb.tpl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** overall_header_navigation_phpbb.tpl 7 Sep 2008 21:54:14 -0000 1.7 --- overall_header_navigation_phpbb.tpl 7 Sep 2008 22:07:11 -0000 1.8 *************** *** 166,170 **** <td align="center" valign="middle" nowrap> <!-- IF USER_LOGGED_OUT --> ! <a href="{U_REGISTER}" class="mainmenu"><img src="{NAV_IMAGES_REGISTER}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a></span> <!-- ENDIF --> </td> --- 166,170 ---- <td align="center" valign="middle" nowrap> <!-- IF USER_LOGGED_OUT --> ! <a href="{U_REGISTER}" class="mainmenu"><img src="{NAV_IMAGES_REGISTER}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu"><!-- IF U_REGISTER -->{L_REGISTER}<!-- ENDIF --></a></span> <!-- ENDIF --> </td> Index: overall_header.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/_core/overall_header.tpl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** overall_header.tpl 7 Sep 2008 21:54:12 -0000 1.7 --- overall_header.tpl 7 Sep 2008 22:07:09 -0000 1.8 *************** *** 142,146 **** <td align="center" valign="middle" nowrap> <!-- IF USER_LOGGED_OUT --> ! <a href="{U_REGISTER}" class="mainmenu"><img src="{NAV_IMAGES_REGISTER}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a></span> <!-- ENDIF --> </td> --- 142,146 ---- <td align="center" valign="middle" nowrap> <!-- IF USER_LOGGED_OUT --> ! <a href="{U_REGISTER}" class="mainmenu"><img src="{NAV_IMAGES_REGISTER}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu"><!-- IF U_REGISTER -->{L_REGISTER}<!-- ENDIF --></a></span> <!-- ENDIF --> </td> |
|
From: FlorinCB <ory...@us...> - 2008-09-07 21:55:11
|
Update of /cvsroot/mxbb/core/templates/_core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv25112/_core Modified Files: overall_header.tpl overall_header_navigation.tpl overall_header_navigation_phpbb.tpl Log Message: headers files upgrade Index: overall_header_navigation.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/_core/overall_header_navigation.tpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** overall_header_navigation.tpl 16 Jun 2008 14:41:41 -0000 1.4 --- overall_header_navigation.tpl 7 Sep 2008 21:54:13 -0000 1.5 *************** *** 5,10 **** --- 5,12 ---- <meta http-equiv="Content-Style-Type" content="text/css"> <!-- IF SET_BASE --><base href="{U_PORTAL_ROOT_PATH}" ><!-- ENDIF --> + {META} {NAV_LINKS} + <title>{SITENAME} :: {PAGE_TITLE}</title> <!-- IF PHPBB --> *************** *** 18,21 **** --- 20,24 ---- <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_GECKO_STYLESHEET}" type="text/css" > <!-- ENDIF --> + {MX_ADDITIONAL_CSS_FILES} {MX_ICON_CSS} *************** *** 85,88 **** --- 88,92 ---- </td> </tr> + <!-- BEGIN editcp --> <tr> *************** *** 102,106 **** </td> </tr> ! <!-- END editcp --> </table> --- 106,120 ---- </td> </tr> ! <!-- END editcp --> ! ! <!-- BEGIN switch_view --> ! <tr> ! <td align="left" valign="bottom" colspan="3" ><span class="gensmall">{CURRENT_TIME}</span></td> ! </tr> ! <tr> ! <td align="left" valign="bottom" colspan="3" ><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td> ! </tr> ! <!-- END switch_view --> ! </table> *************** *** 111,117 **** </td> <td align="center" valign="middle" nowrap> ! <!-- BEGIN switch_user_logged_out --> <a href="{U_REGISTER}" class="mainmenu"><img src="{NAV_IMAGES_REGISTER}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a></span> ! <!-- END switch_user_logged_out --> </td> <td valign="top" align="right" width="100%" height="5" > --- 125,131 ---- </td> <td align="center" valign="middle" nowrap> ! <!-- IF USER_LOGGED_OUT --> <a href="{U_REGISTER}" class="mainmenu"><img src="{NAV_IMAGES_REGISTER}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a></span> ! <!-- ENDIF --> </td> <td valign="top" align="right" width="100%" height="5" > *************** *** 137,156 **** </table> ! <!-- BEGIN phpbb_stats --> <table width="100%" cellspacing="0" cellpadding="2" border="0" align="center"> <tr> <td align="left" valign="top" ><span class="gensmall"> ! <!-- BEGIN switch_user_logged_in --> {LAST_VISIT_DATE}<br /> ! <!-- END switch_user_logged_in --> {CURRENT_TIME}<br /></span> </td> <td align="right" valign="top" > ! <!-- BEGIN switch_user_logged_in --> <a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br /><a href="{U_SEARCH_SELF}" class="gensmall">{L_SEARCH_SELF}</a><br /> ! <!-- END switch_user_logged_in --> <a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a> </td> </tr> </table> ! <!-- END phpbb_stats --> --- 151,170 ---- </table> ! <!-- IF PHPBB_STATS --> <table width="100%" cellspacing="0" cellpadding="2" border="0" align="center"> <tr> <td align="left" valign="top" ><span class="gensmall"> ! <!-- IF USER_LOGGED_IN --> {LAST_VISIT_DATE}<br /> ! <!-- ENDIF --> {CURRENT_TIME}<br /></span> </td> <td align="right" valign="top" > ! <!-- IF 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 /> ! <!-- ENDIF --> <a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a> </td> </tr> </table> ! <!-- ENDIF --> Index: overall_header_navigation_phpbb.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/_core/overall_header_navigation_phpbb.tpl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** overall_header_navigation_phpbb.tpl 30 Jul 2008 08:30:55 -0000 1.6 --- overall_header_navigation_phpbb.tpl 7 Sep 2008 21:54:14 -0000 1.7 *************** *** 5,10 **** --- 5,12 ---- <meta http-equiv="Content-Style-Type" content="text/css"> <!-- IF SET_BASE --><base href="{U_PORTAL_ROOT_PATH}" ><!-- ENDIF --> + {META} {NAV_LINKS} + <title>{SITENAME} :: {PAGE_TITLE}</title> <!-- IF PHPBB --> *************** *** 18,21 **** --- 20,24 ---- <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_GECKO_STYLESHEET}" type="text/css" > <!-- ENDIF --> + {MX_ADDITIONAL_CSS_FILES} {MX_ICON_CSS} *************** *** 60,68 **** // --></script> - <script type="text/javascript"> - //this will disable google traslate browsing frame, the page still will be traslated but real ip will be returned in Admin Index - if (top.location != self.location) top.location = self.location.href; - </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> --- 63,66 ---- *************** *** 77,81 **** <table width="780" cellspacing="0" cellpadding="1" border="0" align="center" class="mx_main_table"> <tr> ! <td class="bodyline" valign="top"> <table width="100%" cellspacing="0" cellpadding="2" border="0" class="mx_header_table"> --- 75,79 ---- <table width="780" cellspacing="0" cellpadding="1" border="0" align="center" class="mx_main_table"> <tr> ! <td class="bodyline"> <table width="100%" cellspacing="0" cellpadding="2" border="0" class="mx_header_table"> *************** *** 90,136 **** </td> </tr> ! <!-- BEGIN editcp --> ! <tr> ! <td class="row2" align="center" valign="middle" colspan="3"> ! <div class="editCP_switch" style="display: {editcp.EDITCP_SHOW};"> ! <form action="{editcp.EDIT_ACTION}" method="post" class="mx_editform"> ! <table width="100%" cellpadding="0" cellspacing="0" border="0"> ! <tr> ! <td align="right"> ! {editcp.EDIT_IMG} ! {editcp.S_HIDDEN_FORM_FIELDS} ! </td> ! </tr> ! </table> ! </form> ! </div> ! </td> ! </tr> ! <!-- END editcp --> <tr> <td class="cat" align="center" valign="middle" colspan="3"> <table cellspacing="1" cellpadding="1" border="0"> <tr> <td align="center" valign="middle" nowrap> ! <!-- BEGIN switch_user_logged_in --> ! <a href="{U_PROFILE}" class="mainmenu"><img src="{NAV_IMAGES_PROFILE}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_PROFILE}" class="mainmenu">{L_PROFILE}</a></span> ! <!-- END switch_user_logged_in --> </td> <td align="center" valign="middle" nowrap> ! <a href="{U_FAQ}" class="mainmenu"><img src="{NAV_IMAGES_FAQ}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_FAQ}" class="mainmenu">{L_FAQ}</a></span> </td> <td align="center" valign="middle" nowrap> ! <a href="{U_SEARCH}" class="mainmenu"><img src="{NAV_IMAGES_SEARCH}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_SEARCH}" class="mainmenu">{L_SEARCH}</a></span> </td> <td align="center" valign="middle" nowrap> ! <a href="{U_MEMBERLIST}" class="mainmenu"><img src="{NAV_IMAGES_MEMBERS}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_MEMBERLIST}" class="mainmenu">{L_MEMBERLIST}</a></span> </td> <td align="center" valign="middle" nowrap> ! <a href="{U_GROUP_CP}" class="mainmenu"><img src="{NAV_IMAGES_GROUPS}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_GROUP_CP}" class="mainmenu">{L_USERGROUPS}</a></span> </td> <td align="center" valign="middle" nowrap> ! <!-- BEGIN switch_user_logged_in --> <a href="{U_PRIVATEMSGS}" class="mainmenu"><img src="{NAV_IMAGES_PRIVMSG}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_PRIVATEMSGS}" class="mainmenu">{L_PRIVATEMSGS}</a></span> ! <!-- END switch_user_logged_in --> </td> </tr> --- 88,125 ---- </td> </tr> ! <tr> <td class="cat" align="center" valign="middle" colspan="3"> <table cellspacing="1" cellpadding="1" border="0"> <tr> + <td align="center" valign="middle" nowrap > + <a href="{U_INDEX}" class="mainmenu"><img src="{NAV_IMAGES_HOME}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_INDEX}" class="mainmenu">{L_HOME}</a></span> + </td> <td align="center" valign="middle" nowrap> ! <a href="{U_INDEX_FORUM}" class="mainmenu"><img src="{NAV_IMAGES_FORUM}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_INDEX_FORUM}" class="mainmenu">{L_FORUM}</a></span> </td> <td align="center" valign="middle" nowrap> ! <!-- IF USER_LOGGED_IN --> ! <a href="{U_PROFILE}" class="mainmenu"><img src="{NAV_IMAGES_PROFILE}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_PROFILE}" class="mainmenu">{L_PROFILE}</a></span> ! <!-- ENDIF --> </td> <td align="center" valign="middle" nowrap> ! <a href="{U_FAQ}" class="mainmenu"><img src="{NAV_IMAGES_FAQ}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_FAQ}" class="mainmenu">{L_FAQ}</a></span> </td> + <!-- + <td align="center" valign="middle" nowrap> + <a href="{U_SEARCH}" class="mainmenu"><img src="{NAV_IMAGES_SEARCH}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_SEARCH}" class="mainmenu">{L_SEARCH}</a></span> + </td> + --> <td align="center" valign="middle" nowrap> ! <a href="{U_MEMBERLIST}" class="mainmenu"><img src="{NAV_IMAGES_MEMBERS}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_MEMBERLIST}" class="mainmenu">{L_MEMBERLIST}</a></span> </td> <td align="center" valign="middle" nowrap> ! <a href="{U_GROUP_CP}" class="mainmenu"><img src="{NAV_IMAGES_GROUPS}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_GROUP_CP}" class="mainmenu">{L_USERGROUPS}</a></span> </td> <td align="center" valign="middle" nowrap> ! <!-- IF USER_LOGGED_IN --> <a href="{U_PRIVATEMSGS}" class="mainmenu"><img src="{NAV_IMAGES_PRIVMSG}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_PRIVATEMSGS}" class="mainmenu">{L_PRIVATEMSGS}</a></span> ! <!-- ENDIF --> </td> </tr> *************** *** 139,142 **** --- 128,160 ---- </td> </tr> + + <!-- BEGIN editcp --> + <tr> + <td class="row2" align="center" valign="middle" colspan="3"> + <div class="editCP_switch" style="display: {editcp.EDITCP_SHOW};"> + <form action="{editcp.EDIT_ACTION}" method="post" class="mx_editform"> + <table width="100%" cellpadding="0" cellspacing="0" border="0"> + <tr> + <td align="right"> + {editcp.EDIT_IMG} + {editcp.S_HIDDEN_FORM_FIELDS} + </td> + </tr> + </table> + </form> + </div> + </td> + </tr> + <!-- END editcp --> + + <!-- BEGIN switch_view --> + <tr> + <td align="left" valign="bottom" colspan="3" ><span class="gensmall">{CURRENT_TIME}</span></td> + </tr> + <tr> + <td align="left" valign="bottom" colspan="3" ><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td> + </tr> + <!-- END switch_view --> + </table> *************** *** 147,156 **** </td> <td align="center" valign="middle" nowrap> ! <!-- BEGIN switch_user_logged_out --> <a href="{U_REGISTER}" class="mainmenu"><img src="{NAV_IMAGES_REGISTER}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a></span> ! <!-- END switch_user_logged_out --> </td> <td valign="top" align="right" width="100%" height="5" > - <!-- <form name="search_block" method="post" action="{U_SEARCH}" onsubmit="return checkSearch()"> <a href="{U_SEARCH}" class="gen"><span class="gen">{L_SEARCH}</span></a>: --- 165,173 ---- </td> <td align="center" valign="middle" nowrap> ! <!-- IF USER_LOGGED_OUT --> <a href="{U_REGISTER}" class="mainmenu"><img src="{NAV_IMAGES_REGISTER}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a></span> ! <!-- ENDIF --> </td> <td valign="top" align="right" width="100%" height="5" > <form name="search_block" method="post" action="{U_SEARCH}" onsubmit="return checkSearch()"> <a href="{U_SEARCH}" class="gen"><span class="gen">{L_SEARCH}</span></a>: *************** *** 169,174 **** <input class="mainoption" type="submit" value="Search"> </form> - --> - <a href="http://www.mx-publisher.com/page144" class="gen"><span class="gen"><b>[{L_SEARCH}]</b></span></a> </td> <td valign="top" align="left" width="5" height="5" > </td> --- 186,189 ---- *************** *** 176,195 **** </table> ! <!-- BEGIN phpbb_stats --> <table width="100%" cellspacing="0" cellpadding="2" border="0" align="center"> <tr> <td align="left" valign="top" ><span class="gensmall"> ! <!-- BEGIN switch_user_logged_in --> {LAST_VISIT_DATE}<br /> ! <!-- END switch_user_logged_in --> {CURRENT_TIME}<br /></span> </td> <td align="right" valign="top" > ! <!-- BEGIN switch_user_logged_in --> <a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br /><a href="{U_SEARCH_SELF}" class="gensmall">{L_SEARCH_SELF}</a><br /> ! <!-- END switch_user_logged_in --> <a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a> </td> </tr> </table> ! <!-- END phpbb_stats --> --- 191,210 ---- </table> ! <!-- IF PHPBB_STATS --> <table width="100%" cellspacing="0" cellpadding="2" border="0" align="center"> <tr> <td align="left" valign="top" ><span class="gensmall"> ! <!-- IF USER_LOGGED_IN --> {LAST_VISIT_DATE}<br /> ! <!-- ENDIF --> {CURRENT_TIME}<br /></span> </td> <td align="right" valign="top" > ! <!-- IF 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 /> ! <!-- ENDIF --> <a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a> </td> </tr> </table> ! <!-- ENDIF --> Index: overall_header.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/_core/overall_header.tpl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** overall_header.tpl 23 Jun 2008 21:47:38 -0000 1.6 --- overall_header.tpl 7 Sep 2008 21:54:12 -0000 1.7 *************** *** 5,10 **** --- 5,12 ---- <meta http-equiv="Content-Style-Type" content="text/css"> <!-- IF SET_BASE --><base href="{U_PORTAL_ROOT_PATH}" ><!-- ENDIF --> + {META} {NAV_LINKS} + <title>{SITENAME} :: {PAGE_TITLE}</title> <!-- IF PHPBB --> *************** *** 18,21 **** --- 20,24 ---- <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_GECKO_STYLESHEET}" type="text/css" > <!-- ENDIF --> + {MX_ADDITIONAL_CSS_FILES} {MX_ICON_CSS} *************** *** 80,118 **** <td class="row3" width="25%" align="right" valign="top"><span class="sitetitle">{SITENAME}</span><br /><span class="sitetitle_desc">{SITE_DESCRIPTION}</span></td> </tr> ! <tr> ! <td class="row2" align="center" valign="middle" colspan="3"> ! {OVERALL_NAVIGATION} ! </td> ! </tr> <tr> <td class="cat" align="center" valign="middle" colspan="3"> <table cellspacing="1" cellpadding="1" border="0"> <tr> - <!-- <td align="center" valign="middle" nowrap > ! <a href="{U_INDEX}" class="mainmenu"><img src="{NAV_IMAGES_HOME}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_INDEX}" class="mainmenu">{L_HOME}</a></span> </td> <td align="center" valign="middle" nowrap> ! <a href="{U_INDEX_FORUM}" class="mainmenu"><img src="{NAV_IMAGES_FORUM}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_INDEX_FORUM}" class="mainmenu">{L_FORUM}</a></span> </td> - --> <td align="center" valign="middle" nowrap> ! <!-- IF USER_LOGGED_IN --> ! <a href="{U_PROFILE}" class="mainmenu"><img src="{NAV_IMAGES_PROFILE}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_PROFILE}" class="mainmenu">{L_PROFILE}</a></span> ! <!-- ENDIF --> </td> <td align="center" valign="middle" nowrap> ! <a href="{U_FAQ}" class="mainmenu"><img src="{NAV_IMAGES_FAQ}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_FAQ}" class="mainmenu">{L_FAQ}</a></span> </td> <!-- ! <td align="center" valign="middle" nowrap> ! <a href="{U_SEARCH}" class="mainmenu"><img src="{NAV_IMAGES_SEARCH}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_SEARCH}" class="mainmenu">{L_SEARCH}</a></span> ! </td> --> <td align="center" valign="middle" nowrap> ! <a href="{U_MEMBERLIST}" class="mainmenu"><img src="{NAV_IMAGES_MEMBERS}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_MEMBERLIST}" class="mainmenu">{L_MEMBERLIST}</a></span> </td> <td align="center" valign="middle" nowrap> ! <a href="{U_GROUP_CP}" class="mainmenu"><img src="{NAV_IMAGES_GROUPS}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_GROUP_CP}" class="mainmenu">{L_USERGROUPS}</a></span> </td> <td align="center" valign="middle" nowrap> --- 83,115 ---- <td class="row3" width="25%" align="right" valign="top"><span class="sitetitle">{SITENAME}</span><br /><span class="sitetitle_desc">{SITE_DESCRIPTION}</span></td> </tr> ! <tr> <td class="cat" align="center" valign="middle" colspan="3"> <table cellspacing="1" cellpadding="1" border="0"> <tr> <td align="center" valign="middle" nowrap > ! <a href="{U_INDEX}" class="mainmenu"><img src="{NAV_IMAGES_HOME}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_INDEX}" class="mainmenu">{L_HOME}</a></span> </td> <td align="center" valign="middle" nowrap> ! <a href="{U_INDEX_FORUM}" class="mainmenu"><img src="{NAV_IMAGES_FORUM}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_INDEX_FORUM}" class="mainmenu">{L_FORUM}</a></span> </td> <td align="center" valign="middle" nowrap> ! <!-- IF USER_LOGGED_IN --> ! <a href="{U_PROFILE}" class="mainmenu"><img src="{NAV_IMAGES_PROFILE}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_PROFILE}" class="mainmenu">{L_PROFILE}</a></span> ! <!-- ENDIF --> </td> <td align="center" valign="middle" nowrap> ! <a href="{U_FAQ}" class="mainmenu"><img src="{NAV_IMAGES_FAQ}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_FAQ}" class="mainmenu">{L_FAQ}</a></span> </td> <!-- ! <td align="center" valign="middle" nowrap> ! <a href="{U_SEARCH}" class="mainmenu"><img src="{NAV_IMAGES_SEARCH}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_SEARCH}" class="mainmenu">{L_SEARCH}</a></span> ! </td> --> <td align="center" valign="middle" nowrap> ! <a href="{U_MEMBERLIST}" class="mainmenu"><img src="{NAV_IMAGES_MEMBERS}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_MEMBERLIST}" class="mainmenu">{L_MEMBERLIST}</a></span> </td> <td align="center" valign="middle" nowrap> ! <a href="{U_GROUP_CP}" class="mainmenu"><img src="{NAV_IMAGES_GROUPS}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_GROUP_CP}" class="mainmenu">{L_USERGROUPS}</a></span> </td> <td align="center" valign="middle" nowrap> *************** *** 125,129 **** --- 122,136 ---- </table> </td> + </tr> + + <!-- BEGIN switch_view --> + <tr> + <td align="left" valign="bottom" colspan="3" ><span class="gensmall">{CURRENT_TIME}</span></td> </tr> + <tr> + <td align="left" valign="bottom" colspan="3" ><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td> + </tr> + <!-- END switch_view --> + </table> *************** *** 177,179 **** </tr> </table> ! <!-- ENDIF --> \ No newline at end of file --- 184,186 ---- </tr> </table> ! <!-- ENDIF --> |
|
From: FlorinCB <ory...@us...> - 2008-09-07 21:54:49
|
Update of /cvsroot/mxbb/core/templates/subSilver/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv25112/subSilver/admin Modified Files: page_header.tpl Log Message: headers files upgrade Index: page_header.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/admin/page_header.tpl,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** page_header.tpl 16 Jun 2008 19:07:45 -0000 1.11 --- page_header.tpl 7 Sep 2008 21:54:14 -0000 1.12 *************** *** 5,12 **** <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" /> <title>{SITENAME} - {L_MX_ADMIN}</title> ! <!-- IF PHPBB --> <!-- 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" > ! <!-- ENDIF --> <!-- Then load MX-Publisher 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" > --- 5,12 ---- <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 MX-Publisher 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" > |
|
From: FlorinCB <ory...@us...> - 2008-09-07 21:54:27
|
Update of /cvsroot/mxbb/core/templates/subsilver2 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv25112/subsilver2 Modified Files: overall_header.html overall_header_navigation.html overall_header_navigation_phpbb.html Log Message: headers files upgrade Index: overall_header_navigation.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/subsilver2/overall_header_navigation.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** overall_header_navigation.html 27 Aug 2008 21:56:22 -0000 1.7 --- overall_header_navigation.html 7 Sep 2008 21:54:21 -0000 1.8 *************** *** 11,17 **** <!-- This should not be included direct from phpBB but later from MXP template folder wich means can be ported to internal backend with no change in this file --> ! <!-- BEGIN switch_phpbb_stylesheet--> <link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}styles/subsilver2/theme/stylesheet.css" type="text/css" > ! <!-- END switch_phpbb_stylesheet--> <!-- Load mxBB template *.css definition for mx, located in the the portal template folder --> --- 11,17 ---- <!-- This should not be included direct from phpBB but later from MXP template folder wich means can be ported to internal backend with no change in this file --> ! <!-- IF PHPBB --> <link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}styles/subsilver2/theme/stylesheet.css" type="text/css" > ! <!-- ENDIF --> <!-- Load mxBB template *.css definition for mx, located in the the portal template folder --> Index: overall_header_navigation_phpbb.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/subsilver2/overall_header_navigation_phpbb.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** overall_header_navigation_phpbb.html 27 Aug 2008 21:56:22 -0000 1.5 --- overall_header_navigation_phpbb.html 7 Sep 2008 21:54:21 -0000 1.6 *************** *** 11,17 **** <!-- This should not be included direct from phpBB but later from MXP template folder wich means can be ported to internal backend with no change in this file --> ! <!-- BEGIN switch_phpbb_stylesheet--> <link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}styles/subsilver2/theme/stylesheet.css" type="text/css" > ! <!-- END switch_phpbb_stylesheet--> <!-- Load mxBB template *.css definition for mx, located in the the portal template folder --> --- 11,17 ---- <!-- This should not be included direct from phpBB but later from MXP template folder wich means can be ported to internal backend with no change in this file --> ! <!-- IF PHPBB --> <link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}styles/subsilver2/theme/stylesheet.css" type="text/css" > ! <!-- ENDIF --> <!-- Load mxBB template *.css definition for mx, located in the the portal template folder --> Index: overall_header.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/subsilver2/overall_header.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** overall_header.html 27 Aug 2008 21:56:22 -0000 1.7 --- overall_header.html 7 Sep 2008 21:54:21 -0000 1.8 *************** *** 12,18 **** <!-- This should not be included direct from phpBB but later from MXP template folder wich means can be ported to internal backend with no change in this file --> ! <!-- BEGIN switch_phpbb_stylesheet--> <link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}styles/subsilver2/theme/stylesheet.css" type="text/css" > ! <!-- END switch_phpbb_stylesheet--> <!-- Load mxBB template *.css definition for mx, located in the the portal template folder --> --- 12,18 ---- <!-- This should not be included direct from phpBB but later from MXP template folder wich means can be ported to internal backend with no change in this file --> ! <!-- IF PHPBB --> <link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}styles/subsilver2/theme/stylesheet.css" type="text/css" > ! <!-- ENDIF --> <!-- Load mxBB template *.css definition for mx, located in the the portal template folder --> |
Update of /cvsroot/mxbb/core/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv25112/subSilver Modified Files: overall_header_navigation.tpl Added Files: mx_main_layout.tpl overall_footer.tpl overall_header.tpl overall_header_navigation_phpbb.tpl Log Message: headers files upgrade --- NEW FILE: mx_main_layout.tpl --- <table border="0" cellspacing="10" cellpadding="0" width="100%" class="mx_body_table"> <tr valign="top"> <!-- BEGIN layout_column --> <td class="{layout_column.COL_CLASS}" width="{layout_column.BLOCK_SIZE}"> <!-- BEGIN blocks --> <!-- BEGIN sub_start --> <table border="0" cellpadding="0" cellspacing="0" width="{layout_column.BLOCK_SIZE}"> <tr valign="top"> <!-- END sub_start --> <!-- BEGIN sub_col --> {layout_column.blocks.sub_col.INNER_SPACE} <td class="{layout_column.blocks.sub_col.COL_CLASS}" width="{layout_column.blocks.sub_col.BLOCK_SIZE}"> <!-- END sub_col --> <table width="{layout_column.BLOCK_SIZE}" cellpadding="0" cellspacing="0" border="0" class="mx_graphborder"> <tr> <td> <!-- BEGIN block_header --> <table width="100%" cellpadding="0" cellspacing="0" border="0" class="forumline" style="border-bottom:none; padding:1px 1px 0px 1px;"> <tr> <td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <!-- END block_header --> <!-- BEGIN show_title --> <th class="thCornerL" align="left" width="100%"> {layout_column.blocks.show_title.L_TITLE} </th> <!-- END show_title --> <!-- BEGIN edit --> <th class="thTop" align="right" width="1"> <div class="editCP_switch" style="display: {layout_column.blocks.edit.EDITCP_SHOW};"> <form action="{layout_column.blocks.edit.EDIT_ACTION}" method="post" class="mx_editform"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <!-- BEGIN hidden_block --> <td align="right"> <span class="gensmall"><i>{layout_column.blocks.edit.hidden_block.HIDDEN_BLOCK}</i></span> </td> <!-- END hidden_block --> <td align="right"> {layout_column.blocks.edit.EDIT_IMG} {layout_column.blocks.edit.S_HIDDEN_FORM_FIELDS} </td> </tr> </table> </form> </div> </th> <!-- END edit --> <!-- BEGIN show_title --> <th class="thCornerR" align="right" width="1"> </th> <!-- END show_title --> <!-- BEGIN block_header --> </tr> </table> </td> </tr> </table> <!-- END block_header --> <div id="block_{layout_column.blocks.BLOCK_ID}"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td> {layout_column.blocks.BLOCK} </td> </tr> </table> </div> </td> </tr> </table> <!-- BEGIN block_stats --> <div align="right"><span class="copyright">{layout_column.blocks.block_stats.L_BLOCK_UPDATED}{layout_column.blocks.block_stats.EDITOR_NAME} ({layout_column.blocks.block_stats.EDIT_TIME})</span></div> <br clear="all" /> <!-- END block_stats --> <!-- BEGIN no_stats --> <br clear="all" /> <!-- END no_stats --> <!-- BEGIN sub_col --> </td> <!-- END sub_col --> <!-- BEGIN sub_end --> </tr> </table> <!-- END sub_end --> <!-- END blocks --> </td> <!-- END layout_column --> </tr> </table> --- NEW FILE: overall_footer.tpl --- <div align="center"> <span class="copyright"> <!-- 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}<br /> <!-- We request you retain the full copyright notice below including the link to www.mx-publisher.com (and www.phpbb.com if you are using MXP with phpbb). 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 MXP. If you cannot (for good reason) retain the full copyright we request you at least leave in place the Powered by MXP line, with MXP linked to www.mx-publisher.com. If you refuse to include even this then support on our forums may be affected. The MX-Publisher Team : 2008 & The phpBB Group : 2002 // --> {POWERED_BY} <a href="http://www.mx-publisher.com/" target="_mx-publisher" class="copyright">MX-Publisher (MXP)</a> {MX_VERSION} © 2001-2008 <!-- IF PHPBB_BACKEND --> & <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> {PHPBB_VERSION} © 2001, 2003 phpBB Group <!-- ENDIF --> | <a href="{MXBB_EXTRA_URL}" target="_phpbb" class="copyright">{MXBB_EXTRA}</a> </div> </td> </tr> </table> <!-- This displays generation info at the bottom of the page --> {EXECUTION_STATS} {MX_ADDITIONAL_FOOTER_TEXT} </body> </html> --- NEW FILE: overall_header.tpl --- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}"> <meta http-equiv="Content-Style-Type" content="text/css"> <!-- IF SET_BASE --><base href="{U_PORTAL_ROOT_PATH}" ><!-- ENDIF --> {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 MX-Publisher 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" > <!-- IF GECKO --> <!-- Optionally, redefine some defintions for gecko browsers --> <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_GECKO_STYLESHEET}" type="text/css" > <!-- ENDIF --> {MX_ADDITIONAL_CSS_FILES} {MX_ICON_CSS} <!-- IF 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> <!-- ENDIF --> <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 bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}"> <a name="top"></a> <table width="780" cellspacing="0" cellpadding="1" border="0" align="center" class="mx_main_table"> <tr> <td class="bodyline"> <table width="100%" cellspacing="0" cellpadding="2" border="0" class="mx_header_table"> <tr> <td class="row3" width="25%" align="left" valign="top"><a href="{U_INDEX}"><img src="{LOGO}" border="0" alt="{L_INDEX}" vspace="1"/></a></td> <td class="row3" width="50%" align="center" valign="middle">{PAGE_ICON}<span class="pagetitle">{PAGE_TITLE}</span></td> <td class="row3" width="25%" align="right" valign="top"><span class="sitetitle">{SITENAME}</span><br /><span class="sitetitle_desc">{SITE_DESCRIPTION}</span></td> </tr> <tr> <td class="cat" align="center" valign="middle" colspan="3"> <table cellspacing="1" cellpadding="1" border="0"> <tr> <td align="center" valign="middle" nowrap > <a href="{U_INDEX}" class="mainmenu"><img src="{NAV_IMAGES_HOME}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_INDEX}" class="mainmenu">{L_HOME}</a></span> </td> <td align="center" valign="middle" nowrap> <a href="{U_INDEX_FORUM}" class="mainmenu"><img src="{NAV_IMAGES_FORUM}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_INDEX_FORUM}" class="mainmenu">{L_FORUM}</a></span> </td> <td align="center" valign="middle" nowrap> <!-- IF USER_LOGGED_IN --> <a href="{U_PROFILE}" class="mainmenu"><img src="{NAV_IMAGES_PROFILE}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_PROFILE}" class="mainmenu">{L_PROFILE}</a></span> <!-- ENDIF --> </td> <td align="center" valign="middle" nowrap> <a href="{U_FAQ}" class="mainmenu"><img src="{NAV_IMAGES_FAQ}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_FAQ}" class="mainmenu">{L_FAQ}</a></span> </td> <!-- <td align="center" valign="middle" nowrap> <a href="{U_SEARCH}" class="mainmenu"><img src="{NAV_IMAGES_SEARCH}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_SEARCH}" class="mainmenu">{L_SEARCH}</a></span> </td> --> <td align="center" valign="middle" nowrap> <a href="{U_MEMBERLIST}" class="mainmenu"><img src="{NAV_IMAGES_MEMBERS}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_MEMBERLIST}" class="mainmenu">{L_MEMBERLIST}</a></span> </td> <td align="center" valign="middle" nowrap> <a href="{U_GROUP_CP}" class="mainmenu"><img src="{NAV_IMAGES_GROUPS}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_GROUP_CP}" class="mainmenu">{L_USERGROUPS}</a></span> </td> <td align="center" valign="middle" nowrap> <!-- IF USER_LOGGED_IN --> <a href="{U_PRIVATEMSGS}" class="mainmenu"><img src="{NAV_IMAGES_PRIVMSG}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_PRIVATEMSGS}" class="mainmenu">{L_PRIVATEMSGS}</a></span> <!-- ENDIF --> </td> </tr> </table> </td> </tr> <!-- BEGIN switch_view --> <tr> <td align="left" valign="bottom" colspan="3" ><span class="gensmall">{CURRENT_TIME}</span></td> </tr> <tr> <td align="left" valign="bottom" colspan="3" ><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td> </tr> <!-- END switch_view --> </table> <table width="100%" cellspacing="0" cellpadding="2" border="0" align="center"> <tr> <td align="center" valign="middle" nowrap> <a href="{U_LOGIN_LOGOUT}" class="mainmenu"><img src="{NAV_IMAGES_LOGIN_LOGOUT}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_LOGIN_LOGOUT}" class="mainmenu">{L_LOGIN_LOGOUT}</a></span> </td> <td align="center" valign="middle" nowrap> <!-- IF USER_LOGGED_OUT --> <a href="{U_REGISTER}" class="mainmenu"><img src="{NAV_IMAGES_REGISTER}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a></span> <!-- ENDIF --> </td> <td valign="top" align="right" width="100%" height="5" > <form name="search_block" method="post" action="{U_SEARCH}" onsubmit="return checkSearch()"> <a href="{U_SEARCH}" class="gen"><span class="gen">{L_SEARCH}</span></a>: <input class="post" type="text" name="search_keywords" size="15" value="...?" onfocus="if(this.value=='...?'){this.value='';}" onblur="if(this.value==''){this.value='...?';}"> <select class="post" name="search_engine"> {L_SEARCH_SITE} {L_SEARCH_FORUM} {L_SEARCH_KB} {L_SEARCH_PAFILEDB} {L_SEARCH_GOOGLE} </select> <input type="hidden" name="search_fields" value="all"> <input type="hidden" name="show_results" value="topics"> <input class="mainoption" type="submit" value="Search"> </form> </td> <td valign="top" align="left" width="5" height="5" > </td> </tr> </table> <!-- IF PHPBB_STATS --> <table width="100%" cellspacing="0" cellpadding="2" border="0" align="center"> <tr> <td align="left" valign="top" ><span class="gensmall"> <!-- IF USER_LOGGED_IN --> {LAST_VISIT_DATE}<br /> <!-- ENDIF --> {CURRENT_TIME}<br /></span> </td> <td align="right" valign="top" > <!-- IF 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 /> <!-- ENDIF --> <a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a> </td> </tr> </table> <!-- ENDIF --> --- NEW FILE: overall_header_navigation_phpbb.tpl --- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}"> <meta http-equiv="Content-Style-Type" content="text/css"> <!-- IF SET_BASE --><base href="{U_PORTAL_ROOT_PATH}" ><!-- ENDIF --> {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 MX-Publisher 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" > <!-- IF GECKO --> <!-- Optionally, redefine some defintions for gecko browsers --> <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_GECKO_STYLESHEET}" type="text/css" > <!-- ENDIF --> {MX_ADDITIONAL_CSS_FILES} {MX_ICON_CSS} <!-- IF 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> <!-- ENDIF --> <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 bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}"> <a name="top"></a> <table width="780" cellspacing="0" cellpadding="1" border="0" align="center" class="mx_main_table"> <tr> <td class="bodyline"> <table width="100%" cellspacing="0" cellpadding="2" border="0" class="mx_header_table"> <tr> <td class="row3" width="25%" align="left" valign="top"><a href="{U_INDEX}"><img src="{LOGO}" border="0" alt="{L_INDEX}" vspace="1"/></a></td> <td class="row3" width="50%" align="center" valign="middle">{PAGE_ICON}<span class="pagetitle">{PAGE_TITLE}</span></td> <td class="row3" width="25%" align="right" valign="top"><span class="sitetitle">{SITENAME}</span><br /><span class="sitetitle_desc">{SITE_DESCRIPTION}</span></td> </tr> <tr> <td class="row2" align="center" valign="middle" colspan="3"> {OVERALL_NAVIGATION} </td> </tr> <tr> <td class="cat" align="center" valign="middle" colspan="3"> <table cellspacing="1" cellpadding="1" border="0"> <tr> <td align="center" valign="middle" nowrap > <a href="{U_INDEX}" class="mainmenu"><img src="{NAV_IMAGES_HOME}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_INDEX}" class="mainmenu">{L_HOME}</a></span> </td> <td align="center" valign="middle" nowrap> <a href="{U_INDEX_FORUM}" class="mainmenu"><img src="{NAV_IMAGES_FORUM}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_INDEX_FORUM}" class="mainmenu">{L_FORUM}</a></span> </td> <td align="center" valign="middle" nowrap> <!-- IF USER_LOGGED_IN --> <a href="{U_PROFILE}" class="mainmenu"><img src="{NAV_IMAGES_PROFILE}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_PROFILE}" class="mainmenu">{L_PROFILE}</a></span> <!-- ENDIF --> </td> <td align="center" valign="middle" nowrap> <a href="{U_FAQ}" class="mainmenu"><img src="{NAV_IMAGES_FAQ}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_FAQ}" class="mainmenu">{L_FAQ}</a></span> </td> <!-- <td align="center" valign="middle" nowrap> <a href="{U_SEARCH}" class="mainmenu"><img src="{NAV_IMAGES_SEARCH}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_SEARCH}" class="mainmenu">{L_SEARCH}</a></span> </td> --> <td align="center" valign="middle" nowrap> <a href="{U_MEMBERLIST}" class="mainmenu"><img src="{NAV_IMAGES_MEMBERS}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_MEMBERLIST}" class="mainmenu">{L_MEMBERLIST}</a></span> </td> <td align="center" valign="middle" nowrap> <a href="{U_GROUP_CP}" class="mainmenu"><img src="{NAV_IMAGES_GROUPS}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_GROUP_CP}" class="mainmenu">{L_USERGROUPS}</a></span> </td> <td align="center" valign="middle" nowrap> <!-- IF USER_LOGGED_IN --> <a href="{U_PRIVATEMSGS}" class="mainmenu"><img src="{NAV_IMAGES_PRIVMSG}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_PRIVATEMSGS}" class="mainmenu">{L_PRIVATEMSGS}</a></span> <!-- ENDIF --> </td> </tr> </table> </td> </tr> <!-- BEGIN editcp --> <tr> <td class="row2" align="center" valign="middle" colspan="3"> <div class="editCP_switch" style="display: {editcp.EDITCP_SHOW};"> <form action="{editcp.EDIT_ACTION}" method="post" class="mx_editform"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td align="right"> {editcp.EDIT_IMG} {editcp.S_HIDDEN_FORM_FIELDS} </td> </tr> </table> </form> </div> </td> </tr> <!-- END editcp --> <!-- BEGIN switch_view --> <tr> <td align="left" valign="bottom" colspan="3" ><span class="gensmall">{CURRENT_TIME}</span></td> </tr> <tr> <td align="left" valign="bottom" colspan="3" ><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td> </tr> <!-- END switch_view --> </table> <table width="100%" cellspacing="0" cellpadding="2" border="0" align="center"> <tr> <td align="center" valign="middle" nowrap> <a href="{U_LOGIN_LOGOUT}" class="mainmenu"><img src="{NAV_IMAGES_LOGIN_LOGOUT}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_LOGIN_LOGOUT}" class="mainmenu">{L_LOGIN_LOGOUT}</a></span> </td> <td align="center" valign="middle" nowrap> <!-- IF USER_LOGGED_OUT --> <a href="{U_REGISTER}" class="mainmenu"><img src="{NAV_IMAGES_REGISTER}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a></span> <!-- ENDIF --> </td> <td valign="top" align="right" width="100%" height="5" > <form name="search_block" method="post" action="{U_SEARCH}" onsubmit="return checkSearch()"> <a href="{U_SEARCH}" class="gen"><span class="gen">{L_SEARCH}</span></a>: <input class="post" type="text" name="search_keywords" size="15" value="...?" onfocus="if(this.value=='...?'){this.value='';}" onblur="if(this.value==''){this.value='...?';}"> <select class="post" name="search_engine"> {L_SEARCH_SITE} {L_SEARCH_FORUM} {L_SEARCH_KB} {L_SEARCH_PAFILEDB} {L_SEARCH_GOOGLE} </select> <input type="hidden" name="search_fields" value="all"> <input type="hidden" name="show_results" value="topics"> <input class="mainoption" type="submit" value="Search"> </form> </td> <td valign="top" align="left" width="5" height="5" > </td> </tr> </table> <!-- IF PHPBB_STATS --> <table width="100%" cellspacing="0" cellpadding="2" border="0" align="center"> <tr> <td align="left" valign="top" ><span class="gensmall"> <!-- IF USER_LOGGED_IN --> {LAST_VISIT_DATE}<br /> <!-- ENDIF --> {CURRENT_TIME}<br /></span> </td> <td align="right" valign="top" > <!-- IF 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 /> <!-- ENDIF --> <a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a> </td> </tr> </table> <!-- ENDIF --> Index: overall_header_navigation.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/overall_header_navigation.tpl,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** overall_header_navigation.tpl 10 Mar 2008 13:27:22 -0000 1.11 --- overall_header_navigation.tpl 7 Sep 2008 21:54:15 -0000 1.12 *************** *** 1,15 **** ! <!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"> <!-- IF SET_BASE --><base href="{U_PORTAL_ROOT_PATH}" ><!-- ENDIF --> {META} {NAV_LINKS} <title>{SITENAME} :: {PAGE_TITLE}</title> ! <!-- IF PHPBB --> <!-- 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" > ! <!-- ENDIF --> <!-- Then load MX-Publisher 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" > --- 1,17 ---- ! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}"> <meta http-equiv="Content-Style-Type" content="text/css"> <!-- IF SET_BASE --><base href="{U_PORTAL_ROOT_PATH}" ><!-- ENDIF --> + {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 MX-Publisher 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" > *************** *** 18,21 **** --- 20,24 ---- <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_GECKO_STYLESHEET}" type="text/css" > <!-- ENDIF --> + {MX_ADDITIONAL_CSS_FILES} {MX_ICON_CSS} *************** *** 85,88 **** --- 88,92 ---- </td> </tr> + <!-- BEGIN editcp --> <tr> *************** *** 102,108 **** </td> </tr> ! <!-- END editcp --> ! ! <!-- BEGIN switch_view --> <tr> --- 106,111 ---- </td> </tr> ! <!-- END editcp --> ! <!-- BEGIN switch_view --> <tr> *************** *** 122,128 **** </td> <td align="center" valign="middle" nowrap> ! <!-- BEGIN switch_user_logged_out --> <a href="{U_REGISTER}" class="mainmenu"><img src="{NAV_IMAGES_REGISTER}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a></span> ! <!-- END switch_user_logged_out --> </td> <td valign="top" align="right" width="100%" height="5" > --- 125,131 ---- </td> <td align="center" valign="middle" nowrap> ! <!-- IF USER_LOGGED_OUT --> <a href="{U_REGISTER}" class="mainmenu"><img src="{NAV_IMAGES_REGISTER}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a></span> ! <!-- ENDIF --> </td> <td valign="top" align="right" width="100%" height="5" > *************** *** 148,167 **** </table> ! <!-- BEGIN phpbb_stats --> <table width="100%" cellspacing="0" cellpadding="2" border="0" align="center"> <tr> <td align="left" valign="top" ><span class="gensmall"> ! <!-- BEGIN switch_user_logged_in --> {LAST_VISIT_DATE}<br /> ! <!-- END switch_user_logged_in --> {CURRENT_TIME}<br /></span> </td> <td align="right" valign="top" > ! <!-- BEGIN switch_user_logged_in --> <a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br /><a href="{U_SEARCH_SELF}" class="gensmall">{L_SEARCH_SELF}</a><br /> ! <!-- END switch_user_logged_in --> <a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a> </td> </tr> </table> ! <!-- END phpbb_stats --> --- 151,170 ---- </table> ! <!-- IF PHPBB_STATS --> <table width="100%" cellspacing="0" cellpadding="2" border="0" align="center"> <tr> <td align="left" valign="top" ><span class="gensmall"> ! <!-- IF USER_LOGGED_IN --> {LAST_VISIT_DATE}<br /> ! <!-- ENDIF --> {CURRENT_TIME}<br /></span> </td> <td align="right" valign="top" > ! <!-- IF 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 /> ! <!-- ENDIF --> <a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a> </td> </tr> </table> ! <!-- ENDIF --> |
|
From: FlorinCB <ory...@us...> - 2008-09-07 21:35:46
|
Update of /cvsroot/mxbb/core/includes/sessions/phpbb2 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv32603 Modified Files: session.php Log Message: /** * encode_lang * * This function is used with phpBB2 backend to specify xml:lang in overall headers (only two chars are allowed) * Do not change! * * $default_lang = $mx_user->encode_lang($board_config['default_lang']); * * @param unknown_type $lang * @return unknown */ Index: session.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/sessions/phpbb2/session.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** session.php 6 Sep 2008 20:13:21 -0000 1.13 --- session.php 7 Sep 2008 21:35:41 -0000 1.14 *************** *** 761,764 **** --- 761,767 ---- * encode_lang * + * This function is used with phpBB2 backend to specify xml:lang in overall headers (only two chars are allowed) + * Do not change! + * * $default_lang = $mx_user->encode_lang($board_config['default_lang']); * *************** *** 768,772 **** function encode_lang($lang) { ! return $lang; } --- 771,1354 ---- function encode_lang($lang) { ! switch($lang) ! { ! case 'afar': ! $lang_name = 'aa'; ! break; ! case 'abkhazian': ! $lang_name = 'ab'; ! break; ! case 'avestan': ! $lang_name = 'ae'; ! break; ! case 'afrikaans': ! $lang_name = 'af'; ! break; ! case 'akan': ! $lang_name = 'ak'; ! break; ! case 'amharic': ! $lang_name = 'am'; ! break; ! case 'aragonese': ! $lang_name = 'an'; ! break; ! case 'arabic': ! $lang_name = 'ar'; ! break; ! case 'assamese': ! $lang_name = 'as'; ! break; ! case 'avaric': ! $lang_name = 'av'; ! break; ! case 'aymara': ! $lang_name = 'ay'; ! break; ! case 'azerbaijani': ! $lang_name = 'az'; ! break; ! case 'bashkir': ! $lang_name = 'ba'; ! break; ! case 'belarusian': ! $lang_name = 'be'; ! break; ! case 'bulgarian': ! $lang_name = 'bg'; ! break; ! case 'bihari': ! $lang_name = 'bh'; ! break; ! case 'bislama': ! $lang_name = 'bi'; ! break; ! case 'bambara': ! $lang_name = 'bm'; ! break; ! case 'bengali': ! $lang_name = 'bn'; ! break; ! case 'tibetan': ! $lang_name = 'bo'; ! break; ! case 'breton': ! $lang_name = 'br'; ! break; ! case 'bosnian': ! $lang_name = 'bs'; ! break; ! case 'catalan': ! $lang_name = 'ca'; ! break; ! case 'chechen': ! $lang_name = 'ce'; ! break; ! case 'chamorro': ! $lang_name = 'ch'; ! break; ! case 'corsican': ! $lang_name = 'co'; ! break; ! case 'cree': ! $lang_name = 'cr'; ! break; ! case 'czech': ! $lang_name = 'cs'; ! break; ! case 'slavonic': ! $lang_name = 'cu'; ! break; ! case 'chuvash': ! $lang_name = 'cv'; ! break; ! case 'welsh_cymraeg': ! $lang_name = 'cy'; ! break; ! case 'danish': ! $lang_name = 'da'; ! break; ! case 'german': ! $lang_name = 'de'; ! break; ! case 'divehi': ! $lang_name = 'dv'; ! break; ! case 'dzongkha': ! $lang_name = 'dz'; ! break; ! case 'ewe': ! $lang_name = 'ee'; ! break; ! case 'greek': ! $lang_name = 'el'; ! break; ! case 'hebrew': ! $lang_name = 'he'; ! break; ! case 'english': ! $lang_name = 'en'; ! break; ! case 'english_us': ! $lang_name = 'en_us'; ! break; ! case 'esperanto': ! $lang_name = 'eo'; ! break; ! case 'spanish': ! $lang_name = 'es'; ! break; ! case 'estonian': ! $lang_name = 'et'; ! break; ! case 'basque': ! $lang_name = 'eu'; ! break; ! case 'persian': ! $lang_name = 'fa'; ! break; ! case 'fulah': ! $lang_name = 'ff'; ! break; ! case 'finnish': ! $lang_name = 'fi'; ! break; ! case 'fijian': ! $lang_name = 'fj'; ! break; ! case 'faroese': ! $lang_name = 'fo'; ! break; ! case 'french': ! $lang_name = 'fr'; ! break; ! case 'frisian': ! $lang_name = 'fy'; ! break; ! case 'irish': ! $lang_name = 'ga'; ! break; ! case 'scottish': ! $lang_name = 'gd'; ! break; ! case 'galician': ! $lang_name = 'gl'; ! break; ! case 'guaraní': ! $lang_name = 'gn'; ! break; ! case 'gujarati': ! $lang_name = 'gu'; ! break; ! case 'manx': ! $lang_name = 'gv'; ! break; ! case 'hausa': ! $lang_name = 'ha'; ! break; ! case 'hebrew': ! $lang_name = 'he'; ! break; ! case 'hindi': ! $lang_name = 'hi'; ! break; ! case 'hiri_motu': ! $lang_name = 'ho'; ! break; ! case 'croatian': ! $lang_name = 'hr'; ! break; ! case 'haitian': ! $lang_name = 'ht'; ! break; ! case 'hungarian': ! $lang_name = 'hu'; ! break; ! case 'armenian': ! $lang_name = 'hy'; ! break; ! case 'herero': ! $lang_name = 'hz'; ! break; ! case 'interlingua': ! $lang_name = 'ia'; ! break; ! case 'indonesian': ! $lang_name = 'id'; ! break; ! case 'interlingue': ! $lang_name = 'ie'; ! break; ! case 'igbo': ! $lang_name = 'ig'; ! break; ! case 'sichuan_yi': ! $lang_name = 'ii'; ! break; ! case 'inupiaq': ! $lang_name = 'ik'; ! break; ! case 'ido': ! $lang_name = 'io'; ! break; ! case 'icelandic': ! $lang_name = 'is'; ! break; ! case 'italian': ! $lang_name = 'it'; ! break; ! case 'inuktitut': ! $lang_name = 'iu'; ! break; ! case 'japanese': ! $lang_name = 'ja'; ! break; ! case 'javanese': ! $lang_name = 'jv'; ! break; ! case 'georgian': ! $lang_name = 'ka'; ! break; ! case 'kongo': ! $lang_name = 'kg'; ! break; ! case 'kikuyu': ! $lang_name = 'ki'; ! break; ! case 'kwanyama': ! $lang_name = 'kj'; ! break; ! case 'kazakh': ! $lang_name = 'kk'; ! break; ! case 'kalaallisut': ! $lang_name = 'kl'; ! break; ! case 'khmer': ! $lang_name = 'km'; ! break; ! case 'kannada': ! $lang_name = 'kn'; ! break; ! case 'korean': ! $lang_name = 'ko'; ! break; ! case 'kanuri': ! $lang_name = 'kr'; ! break; ! case 'kashmiri': ! $lang_name = 'ks'; ! break; ! case 'kurdish': ! $lang_name = 'ku'; ! break; ! case 'kv': ! $lang_name = 'komi'; ! break; ! case 'cornish_kernewek': ! $lang_name = 'kw'; ! break; ! case 'kirghiz': ! $lang_name = 'ky'; ! break; ! case 'latin': ! $lang_name = 'la'; ! break; ! case 'luxembourgish': ! $lang_name = 'lb'; ! break; ! case 'ganda': ! $lang_name = 'lg'; ! break; ! case 'limburgish': ! $lang_name = 'li'; ! break; ! case 'lingala': ! $lang_name = 'ln'; ! break; ! case 'lao': ! $lang_name = 'lo'; ! break; ! case 'lithuanian': ! $lang_name = 'lt'; ! break; ! case 'luba-katanga': ! $lang_name = 'lu'; ! break; ! case 'latvian': ! $lang_name = 'lv'; ! break; ! case 'malagasy': ! $lang_name = 'mg'; ! break; ! case 'marshallese': ! $lang_name = 'mh'; ! break; ! case 'maori': ! $lang_name = 'mi'; ! break; ! case 'macedonian': ! $lang_name = 'mk'; ! break; ! case 'malayalam': ! $lang_name = 'ml'; ! break; ! case 'mongolian': ! $lang_name = 'mn'; ! break; ! case 'moldavian': ! $lang_name = 'mo'; ! break; ! case 'marathi': ! $lang_name = 'mr'; ! break; ! case 'malay': ! $lang_name = 'ms'; ! break; ! case 'maltese': ! $lang_name = 'mt'; ! break; ! case 'burmese': ! $lang_name = 'my'; ! break; ! case 'nauruan': ! $lang_name = 'na'; ! break; ! case 'norwegian': ! $lang_name = 'nb'; ! break; ! case 'ndebele': ! $lang_name = 'nd'; ! break; ! case 'nepali': ! $lang_name = 'ne'; ! break; ! case 'ndonga': ! $lang_name = 'ng'; ! break; ! case 'dutch': ! $lang_name = 'nl'; ! break; ! case 'norwegian_nynorsk': ! $lang_name = 'nn'; ! break; ! case 'norwegian': ! $lang_name = 'no'; ! break; ! case 'southern_ndebele': ! $lang_name = 'nr'; ! break; ! case 'navajo': ! $lang_name = 'nv'; ! break; ! case 'chichewa': ! $lang_name = 'ny'; ! break; ! case 'occitan': ! $lang_name = 'oc'; ! break; ! case 'ojibwa': ! $lang_name = 'oj'; ! break; ! case 'oromo': ! $lang_name = 'om'; ! break; ! case 'oriya': ! $lang_name = 'or'; ! break; ! case 'ossetian': ! $lang_name = 'os'; ! break; ! case 'panjabi': ! $lang_name = 'pa'; ! break; ! case 'pali': ! $lang_name = 'pi'; ! break; ! case 'polish': ! $lang_name = 'pl'; ! break; ! case 'pashto': ! $lang_name = 'ps'; ! break; ! case 'portuguese': ! $lang_name = 'pt'; ! break; ! case 'portuguese_brasil': ! $lang_name = 'pt_br'; ! break; ! case 'quechua': ! $lang_name = 'qu'; ! break; ! case 'romansh': ! $lang_name = 'rm'; ! break; ! case 'kirundi': ! $lang_name = 'rn'; ! break; ! case 'romanian': ! $lang_name = 'ro'; ! break; ! case 'russian': ! $lang_name = 'ru'; ! break; ! case 'kinyarwanda': ! $lang_name = 'rw'; ! break; ! case 'sanskrit': ! $lang_name = 'sa'; ! break; ! case 'sardinian': ! $lang_name = 'sc'; ! break; ! case 'sindhi': ! $lang_name = 'sd'; ! break; ! case 'northern_sami': ! $lang_name = 'se'; ! break; ! case 'sango': ! $lang_name = 'sg'; ! break; ! case 'serbo-croatian': ! $lang_name = 'sh'; ! break; ! case 'sinhala': ! $lang_name = 'si'; ! break; ! case 'slovak': ! $lang_name = 'sk'; ! break; ! case 'slovenian': ! $lang_name = 'sl'; ! break; ! case 'samoan': ! $lang_name = 'sm'; ! break; ! case 'shona': ! $lang_name = 'sn'; ! break; ! case 'somali': ! $lang_name = 'so'; ! break; ! case 'albanian': ! $lang_name = 'sq'; ! break; ! case 'serbian': ! $lang_name = 'sr'; ! break; ! case 'swati': ! $lang_name = 'ss'; ! break; ! case 'sotho': ! $lang_name = 'st'; ! break; ! case 'sundanese': ! $lang_name = 'su'; ! break; ! case 'swedish': ! $lang_name = 'sv'; ! break; ! case 'swahili': ! $lang_name = 'sw'; ! break; ! case 'tamil': ! $lang_name = 'ta'; ! break; ! case 'telugu': ! $lang_name = 'te'; ! break; ! case 'tajik': ! $lang_name = 'tg'; ! break; ! case 'thai': ! $lang_name = 'th'; ! break; ! case 'tigrinya': ! $lang_name = 'ti'; ! break; ! case 'turkmen': ! $lang_name = 'tk'; ! break; ! case 'tagalog': ! $lang_name = 'tl'; ! break; ! case 'tswana': ! $lang_name = 'tn'; ! break; ! case 'tonga': ! $lang_name = 'to'; ! break; ! case 'turkish': ! $lang_name = 'tr'; ! break; ! case 'tsonga': ! $lang_name = 'ts'; ! break; ! case 'tatar': ! $lang_name = 'tt'; ! break; ! case 'twi': ! $lang_name = 'tw'; ! break; ! case 'tahitian': ! $lang_name = 'ty'; ! break; ! case 'uighur': ! $lang_name = 'ug'; ! break; ! case 'ukrainian': ! $lang_name = 'uk'; ! break; ! case 'urdu': ! $lang_name = 'ur'; ! break; ! case 'uzbek': ! $lang_name = 'uz'; ! break; ! case 'venda': ! $lang_name = 've'; ! break; ! case 'vietnamese': ! $lang_name = 'vi'; ! break; ! case 'volapuk': ! $lang_name = 'vo'; ! break; ! case 'walloon': ! $lang_name = 'wa'; ! break; ! case 'wolof': ! $lang_name = 'wo'; ! break; ! case 'xhosa': ! $lang_name = 'xh'; ! break; ! case 'yiddish': ! $lang_name = 'yi'; ! break; ! case 'yoruba': ! $lang_name = 'yo'; ! break; ! case 'zhuang': ! $lang_name = 'za'; ! break; ! case 'chinese': ! $lang_name = 'zh'; ! break; ! case 'chinese_simplified': ! $lang_name = 'zh_cmn_hans'; ! break; ! case 'chinese_traditional': ! $lang_name = 'zh_cmn_hant'; ! break; ! case 'zulu': ! $lang_name = 'zu'; ! break; ! default: ! $lang_name = $lang; ! break; ! } ! return $lang_name; } |
|
From: FlorinCB <ory...@us...> - 2008-09-07 20:57:38
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv16361 Modified Files: page_header.php Log Message: This can be removed later Index: page_header.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/page_header.php,v retrieving revision 1.60 retrieving revision 1.61 diff -C2 -d -r1.60 -r1.61 *** page_header.php 6 Sep 2008 02:53:20 -0000 1.60 --- page_header.php 7 Sep 2008 20:57:33 -0000 1.61 *************** *** 323,326 **** --- 323,329 ---- // Do NOT set basedir when in EDIT mode 'SET_BASE' => !$mx_request_vars->is_request('portalpage'), + + //Enable CSS Files to be loaded direct from phpBB? + 'PHPBB' => !(PORTAL_BACKEND === 'internal'), // Additional css for gecko browsers |
Update of /cvsroot/mxbb/mx_smartor/templates/subSilver/images/lang_french In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26873/templates/subSilver/images/lang_french Added Files: button_pm_new.gif button_pm_reply.gif button_topic_locked.gif button_topic_new.gif button_topic_reply.gif download.gif download_all.gif guest_avatar.png icon_album.gif icon_contact_aim.gif icon_contact_email.gif icon_contact_icq.gif icon_contact_jabber.gif icon_contact_msnm.gif icon_contact_pm.gif icon_contact_www.gif icon_contact_yahoo.gif icon_ip.gif icon_post_delete.gif icon_post_edit.gif icon_post_info.gif icon_post_quote.gif icon_post_report.gif icon_user_offline.gif icon_user_online.gif icon_user_profile.gif icon_user_search.gif icon_user_warn.gif index.htm jupload_pic.gif manage_pic.gif normal_view.gif nothumbnail.jpg nothumbnail_2.jpg show_all_comments.gif show_all_pics.gif show_all_ratings.gif showall.gif simple_view.gif upload_pic.gif upload_pic_2.gif Log Message: image set upgrade --- NEW FILE: icon_contact_jabber.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_warn.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_online.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_edit.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: jupload_pic.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_profile.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: simple_view.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_topic_new.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_yahoo.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> --- NEW FILE: manage_pic.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: download.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_pm_new.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: show_all_pics.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_ip.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_topic_reply.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: upload_pic.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_aim.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_offline.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_album.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: show_all_ratings.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_info.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_msnm.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_delete.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_topic_locked.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_pm.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_pm_reply.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_report.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: normal_view.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: guest_avatar.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: show_all_comments.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_icq.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_email.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: upload_pic_2.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nothumbnail.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_quote.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nothumbnail_2.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_www.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: showall.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: download_all.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_search.gif --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/mxbb/mx_smartor/templates/subSilver/images/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26873/templates/subSilver/images/lang_english Added Files: button_pm_new.gif button_pm_reply.gif button_topic_locked.gif button_topic_new.gif button_topic_reply.gif icon_contact_aim.gif icon_contact_email.gif icon_contact_icq.gif icon_contact_jabber.gif icon_contact_msnm.gif icon_contact_pm.gif icon_contact_www.gif icon_contact_yahoo.gif icon_ip.gif icon_post_delete.gif icon_post_edit.gif icon_post_info.gif icon_post_quote.gif icon_post_report.gif icon_user_offline.gif icon_user_online.gif icon_user_profile.gif icon_user_search.gif icon_user_warn.gif nothumbnail.jpg Log Message: image set upgrade --- NEW FILE: icon_contact_jabber.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_warn.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_online.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_edit.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_profile.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_email.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_topic_new.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_yahoo.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_ip.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_pm_new.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_aim.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_topic_reply.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_pm_reply.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_www.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_info.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_msnm.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_delete.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_topic_locked.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_report.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_icq.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nothumbnail.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_quote.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_offline.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_pm.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_search.gif --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/mxbb/mx_smartor/templates/subSilver/images In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26873/templates/subSilver/images Added Files: announce_read.gif announce_read_locked.gif announce_read_locked_mine.gif announce_read_mine.gif announce_unread.gif announce_unread_locked.gif announce_unread_locked_mine.gif announce_unread_mine.gif forum_link.gif forum_read.gif forum_read_locked.gif forum_read_subforum.gif forum_unread.gif forum_unread_locked.gif forum_unread_subforum.gif icon_minipost.gif icon_post_target.gif icon_post_target_unread.gif icon_topic_attach.gif icon_topic_latest.gif icon_topic_newest.gif icon_topic_reported.gif icon_topic_unapproved.gif poll_center.gif poll_left.gif poll_right.gif site_logo.gif sticky_read.gif sticky_read_locked.gif sticky_read_locked_mine.gif sticky_read_mine.gif sticky_unread.gif sticky_unread_locked.gif sticky_unread_locked_mine.gif sticky_unread_mine.gif topic_moved.gif topic_read.gif topic_read_hot.gif topic_read_hot_mine.gif topic_read_locked.gif topic_read_locked_mine.gif topic_read_mine.gif topic_unread.gif topic_unread_hot.gif topic_unread_hot_mine.gif topic_unread_locked.gif topic_unread_locked_mine.gif topic_unread_mine.gif upload_bar.gif Log Message: image set upgrade --- NEW FILE: poll_left.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_topic_reported.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sticky_read_locked.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_unread_locked.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_target.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: poll_center.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_read_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_read.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: forum_unread_locked.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: announce_unread_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: forum_unread.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_read_hot.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sticky_unread_locked.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_read_hot_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_minipost.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_target_unread.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: announce_unread.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: announce_unread_locked_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_read_locked.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_unread_locked_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sticky_read_locked_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sticky_read.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: announce_read.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sticky_unread_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_topic_latest.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_read_locked_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: forum_read.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: site_logo.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: poll_right.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_topic_attach.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_moved.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: upload_bar.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sticky_unread.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: forum_read_locked.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: forum_read_subforum.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_unread.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: forum_unread_subforum.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: announce_read_locked_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_unread_hot_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sticky_read_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_topic_unapproved.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_unread_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_topic_newest.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: announce_unread_locked.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_unread_hot.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: forum_link.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: announce_read_locked.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: announce_read_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sticky_unread_locked_mine.gif --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/mxbb/mx_smartor/templates/prosilver/images/lang_french In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26873/templates/prosilver/images/lang_french Added Files: README button_pm_new.gif button_pm_reply.gif button_topic_locked.gif button_topic_new.gif button_topic_reply.gif download.gif download_all.gif guest_avatar.png icon_album.gif icon_contact_aim.gif icon_contact_email.gif icon_contact_icq.gif icon_contact_jabber.gif icon_contact_msnm.gif icon_contact_pm.gif icon_contact_www.gif icon_contact_yahoo.gif icon_ip.gif icon_post_delete.gif icon_post_edit.gif icon_post_info.gif icon_post_quote.gif icon_post_report.gif icon_user_offline.gif icon_user_online.gif icon_user_profile.gif icon_user_search.gif icon_user_warn.gif imageset.cfg index.htm jupload_pic.gif manage_pic.gif normal_view.gif nothumbnail.jpg nothumbnail_2.jpg show_all_comments.gif show_all_pics.gif show_all_ratings.gif showall.gif simple_view.gif upload_pic.gif upload_pic_2.gif Log Message: image set upgrade --- NEW FILE: icon_contact_jabber.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_warn.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_online.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_edit.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: jupload_pic.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_profile.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: simple_view.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_topic_new.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_yahoo.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> --- NEW FILE: manage_pic.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: download.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_pm_new.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: show_all_pics.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_ip.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_topic_reply.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: upload_pic.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_aim.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_offline.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_album.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: show_all_ratings.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_info.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_msnm.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_delete.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_topic_locked.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_pm.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: README --- This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>. --- NEW FILE: button_pm_reply.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_report.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: imageset.cfg --- # # phpBB Imageset Configuration File [French] # # @package phpBB3 # @copyright (c) 2005 phpBB Group # @license http://opensource.org/licenses/gpl-license.php GNU Public License # # TRANSLATION DETAILS # # Version: 1.0.2 # Date: 31/03/2008 21:07:14 # Author: phpBB.fr # Website: http://www.phpbb.fr/ # # TRANSLATION LICENSE # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, version 2 of the License. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see http://opensource.org/licenses/gpl-license.php. # # DEVELOPERS PLEASE NOTE # # At the left is the name, please do not change this # At the right the value is entered # For on/off options the valid values are on, off, 1, 0, true and false # # Values get trimmed, if you want to add a space in front or at the end of # the value, then enclose the value with single or double quotes. # Single and double quotes do not need to be escaped. # # Images img_icon_contact_aim = icon_contact_aim.gif img_icon_contact_email = icon_contact_email.gif img_icon_contact_icq = icon_contact_icq.gif img_icon_contact_jabber = icon_contact_jabber.gif img_icon_contact_msnm = icon_contact_msnm.gif img_icon_contact_pm = icon_contact_pm.gif img_icon_contact_yahoo = icon_contact_yahoo.gif img_icon_contact_www = icon_contact_www.gif img_icon_post_delete = icon_post_delete.gif img_icon_post_edit = icon_post_edit.gif img_icon_post_info = icon_post_info.gif img_icon_post_quote = icon_post_quote.gif img_icon_post_report = icon_post_report.gif img_icon_user_online = icon_user_online.gif img_icon_user_offline = icon_user_offline.gif img_icon_user_profile = icon_user_profile.gif img_icon_user_search = icon_user_search.gif img_icon_user_warn = icon_user_warn.gif img_button_pm_forward = img_button_pm_new = button_pm_new.gif img_button_pm_reply = button_pm_reply.gif img_button_topic_locked = button_topic_locked.gif img_button_topic_new = button_topic_new.gif img_button_topic_reply = button_topic_reply.gif --- NEW FILE: normal_view.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: guest_avatar.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: show_all_comments.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_icq.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_email.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: upload_pic_2.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nothumbnail.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_quote.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nothumbnail_2.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_www.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: showall.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: download_all.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_search.gif --- (This appears to be a binary file; contents omitted.) |
|
From: FlorinCB <ory...@us...> - 2008-09-07 20:19:14
|
Update of /cvsroot/mxbb/mx_smartor/templates/prosilver/images/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26873/templates/prosilver/images/lang_english Added Files: nothumbnail.jpg Log Message: image set upgrade --- NEW FILE: nothumbnail.jpg --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/mxbb/mx_smartor/templates/_core/images/lang_french In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26873/templates/_core/images/lang_french Added Files: button_pm_new.gif button_pm_reply.gif button_topic_locked.gif button_topic_new.gif button_topic_reply.gif download.gif download_all.gif guest_avatar.png icon_album.gif icon_contact_aim.gif icon_contact_email.gif icon_contact_icq.gif icon_contact_jabber.gif icon_contact_msnm.gif icon_contact_pm.gif icon_contact_www.gif icon_contact_yahoo.gif icon_ip.gif icon_post_delete.gif icon_post_edit.gif icon_post_info.gif icon_post_quote.gif icon_post_report.gif icon_user_offline.gif icon_user_online.gif icon_user_profile.gif icon_user_search.gif icon_user_warn.gif index.htm jupload_pic.gif manage_pic.gif normal_view.gif nothumbnail.jpg nothumbnail_2.jpg show_all_comments.gif show_all_pics.gif show_all_ratings.gif showall.gif simple_view.gif upload_pic.gif upload_pic_2.gif Log Message: image set upgrade --- NEW FILE: icon_contact_jabber.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_warn.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_online.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_edit.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: jupload_pic.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_profile.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: simple_view.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_topic_new.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_yahoo.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> --- NEW FILE: manage_pic.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: download.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_pm_new.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: show_all_pics.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_ip.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_topic_reply.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: upload_pic.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_aim.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_offline.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_album.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: show_all_ratings.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_info.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_msnm.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_delete.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_topic_locked.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_pm.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: button_pm_reply.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_report.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: normal_view.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: guest_avatar.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: show_all_comments.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_icq.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_email.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: upload_pic_2.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nothumbnail.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_quote.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nothumbnail_2.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_www.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: showall.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: download_all.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_search.gif --- (This appears to be a binary file; contents omitted.) |
|
From: FlorinCB <ory...@us...> - 2008-09-07 20:17:59
|
Update of /cvsroot/mxbb/mx_smartor/templates/_core/images/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26873/templates/_core/images/lang_english Added Files: nothumbnail.jpg Log Message: image set upgrade --- NEW FILE: nothumbnail.jpg --- (This appears to be a binary file; contents omitted.) |
|
From: FlorinCB <ory...@us...> - 2008-09-07 20:16:49
|
Update of /cvsroot/mxbb/mx_smartor/templates/_core/images/lang_french In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv25032/lang_french Log Message: Directory /cvsroot/mxbb/mx_smartor/templates/_core/images/lang_french added to the repository |