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: Jon O. <jon...@us...> - 2005-12-16 18:58:52
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9316/includes Modified Files: mx_functions_auth.php Log Message: a couple of commits - sprung from last day's intense bugtracking at mxbb-portal.com. be prepaired for more tonight. Index: mx_functions_auth.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_auth.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** mx_functions_auth.php 11 Dec 2005 16:13:39 -0000 1.6 --- mx_functions_auth.php 16 Dec 2005 18:58:44 -0000 1.7 *************** *** 421,427 **** if( $mode == 'kb' ) { ! include_once($mx_root_path . 'modules/mx_kb/kb/includes/functions_auth.' . $phpEx); ! $mx_kb_auth = new mx_kb_auth(); ! $is_auth_ary = $mx_kb_auth->auth(AUTH_VIEW, AUTH_LIST_ALL, $userdata); } else --- 421,435 ---- if( $mode == 'kb' ) { ! if (file_exists($mx_root_path . 'modules/mx_kb/kb/includes/functions_auth.' . $phpEx)) ! { ! include_once($mx_root_path . 'modules/mx_kb/kb/includes/functions_auth.' . $phpEx); ! $mx_kb_auth = new mx_kb_auth(); ! $is_auth_ary = $mx_kb_auth->auth(AUTH_VIEW, AUTH_LIST_ALL, $userdata); ! } ! else ! { ! include_once($mx_root_path . 'modules/mx_kb/includes/functions_kb_auth.' . $phpEx); ! $is_auth_ary = auth(AUTH_VIEW, AUTH_LIST_ALL, $userdata); ! } } else |
|
From: Andrew <men...@us...> - 2005-12-16 03:30:45
|
Update of /cvsroot/mxbb/mx_pafiledb/language/lang_english In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28698/language/lang_english Modified Files: lang_admin.php Log Message: Picky picky picky... Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/language/lang_english/lang_admin.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** lang_admin.php 8 Dec 2005 15:15:11 -0000 1.5 --- lang_admin.php 16 Dec 2005 03:30:32 -0000 1.6 *************** *** 308,312 **** // Toplists ! $lang['display_most_posts'] = "Most visited/viewed/DL<br />"; $lang['display_random_posts'] = "Random<br />"; $lang['display_top_ranked'] = "Top-rated<br />"; --- 308,312 ---- // Toplists ! $lang['display_most_posts'] = "Most visited/viewed/downloaded<br />"; $lang['display_random_posts'] = "Random<br />"; $lang['display_top_ranked'] = "Top-rated<br />"; |
|
From: Andrew <men...@us...> - 2005-12-16 03:28:26
|
Update of /cvsroot/mxbb/mx_kb/language/lang_english In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28297/language/lang_english Modified Files: lang_main.php Log Message: Cosmetic fixes; one logical. Used $lang for the message when standalone mode is not supported. We also need to stay up with standards for lang entries... ie quotes. Index: lang_main.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/language/lang_english/lang_main.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** lang_main.php 8 Dec 2005 15:04:26 -0000 1.6 --- lang_main.php 16 Dec 2005 03:28:10 -0000 1.7 *************** *** 22,26 **** $lang['Article'] = 'Article'; $lang['Category'] = 'Category'; ! $lang['Sub_categories'] = 'Sub Categories'; $lang['Article_description'] = 'Description'; $lang['Article_type'] = 'Type'; --- 22,26 ---- $lang['Article'] = 'Article'; $lang['Category'] = 'Category'; ! $lang['Sub_categories'] = 'Subcategories'; $lang['Article_description'] = 'Description'; $lang['Article_type'] = 'Type'; *************** *** 40,43 **** --- 40,45 ---- $lang['Edit'] = 'Edit'; + $lang['Standalone_Not_Supported'] = 'This module does not support standalone usage. In the AdminCP, add the KB block to a portal page.'; + $lang['Article_submitted_Approve'] = 'Article Submitted Successfully.<br />An Administrator will review your article and decide whether to let users view it or not.'; $lang['Article_submitted'] = 'Article Submitted Successfully.'; *************** *** 81,85 **** $lang['Empty_article_desc'] = 'You must fill out the article description'; ! $lang['Read_full_article'] = '>>Read Full Article'; $lang['Comments'] = 'Comments'; --- 83,87 ---- $lang['Empty_article_desc'] = 'You must fill out the article description'; ! $lang['Read_full_article'] = '>> Read Full Article'; $lang['Comments'] = 'Comments'; *************** *** 95,104 **** $lang['Edited_Article_info'] = 'Article updated by '; $lang['No_Articles'] = 'There are no articles in this cateogry!'; ! $lang['Not_authorized'] = 'Sorry, you are not authorized!'; $lang['TOC'] = 'Contents'; // Rate $lang['Votes_label'] = 'Rating '; ! $lang['Votes'] = 'vote(s)'; $lang['No_votes'] = 'No votes'; $lang['Rate'] = 'Rate Article'; --- 97,106 ---- $lang['Edited_Article_info'] = 'Article updated by '; $lang['No_Articles'] = 'There are no articles in this cateogry!'; ! $lang['Not_authorized'] = 'Sorry, but you are not authorized!'; $lang['TOC'] = 'Contents'; // Rate $lang['Votes_label'] = 'Rating '; ! $lang['Votes'] = 'Vote(s)'; $lang['No_votes'] = 'No votes'; $lang['Rate'] = 'Rate Article'; *************** *** 160,164 **** $lang['L_Subtitle_Format_explain'] = "Use the '[subtitle]...[/subtitle]' environment to insert a subtitle"; ! $lang['L_Subsubtitle_Format'] = "Subsubtitle"; $lang['L_Subsubtitle_Format'] = "Use the '[subsubtitle]...[/subsubtitle]' environment to insert a small header"; --- 162,166 ---- $lang['L_Subtitle_Format_explain'] = "Use the '[subtitle]...[/subtitle]' environment to insert a subtitle"; ! $lang['L_Subsubtitle_Format'] = "Sub-subtitle"; $lang['L_Subsubtitle_Format'] = "Use the '[subsubtitle]...[/subsubtitle]' environment to insert a small header"; *************** *** 189,200 **** $lang['Choose_cat'] = 'Choose Category:'; $lang['Include_comments'] = 'Include Comments'; ! $lang['Submiter'] = 'Submited by'; // Comments $lang['Comments'] = 'Comments'; $lang['Comments_title'] = 'Comments Title'; ! $lang['Comment_subject'] = 'Comment subject'; $lang['Comment'] = 'Comment'; ! $lang['Comment_explain'] = 'Use the text box above to give your opinion on this file!'; $lang['Comment_add'] = 'Add Comment'; $lang['Comment_delete'] = 'Delete'; --- 191,202 ---- $lang['Choose_cat'] = 'Choose Category:'; $lang['Include_comments'] = 'Include Comments'; ! $lang['Submiter'] = 'Submitted by'; // Comments $lang['Comments'] = 'Comments'; $lang['Comments_title'] = 'Comments Title'; ! $lang['Comment_subject'] = 'Comment Subject'; $lang['Comment'] = 'Comment'; ! $lang['Comment_explain'] = 'Use the textbox above to give your opinion on this file!'; $lang['Comment_add'] = 'Add Comment'; $lang['Comment_delete'] = 'Delete'; *************** *** 203,210 **** $lang['Comment_desc'] = 'Title'; $lang['No_comments'] = 'No Comments have been posted yet.'; ! $lang['Links_are_ON'] = 'Links is <u>ON</u>'; ! $lang['Links_are_OFF'] = 'Links is <u>OFF</u>'; ! $lang['Images_are_ON'] = 'Images is <u>ON</u>'; ! $lang['Images_are_OFF'] = 'Images is <u>OFF</u>'; $lang['Check_message_length'] = 'Check Message Length'; $lang['Msg_length_1'] = 'Your message is '; --- 205,212 ---- $lang['Comment_desc'] = 'Title'; $lang['No_comments'] = 'No Comments have been posted yet.'; ! $lang['Links_are_ON'] = 'Links are <u>ENABLED</u>'; ! $lang['Links_are_OFF'] = 'Links are <u>DISABLED</u>'; ! $lang['Images_are_ON'] = 'Images are <u>ENABLED</u>'; ! $lang['Images_are_OFF'] = 'Images are <u>DISABLED</u>'; $lang['Check_message_length'] = 'Check Message Length'; $lang['Msg_length_1'] = 'Your message is '; *************** *** 213,217 **** $lang['Msg_length_4'] = ' characters available.';; $lang['Msg_length_5'] = 'There are '; ! $lang['Msg_length_6'] = ' characters left to use.'; ?> \ No newline at end of file --- 215,219 ---- $lang['Msg_length_4'] = ' characters available.';; $lang['Msg_length_5'] = 'There are '; ! $lang['Msg_length_6'] = ' characters remaining.'; ?> \ No newline at end of file |
|
From: Andrew <men...@us...> - 2005-12-16 03:28:26
|
Update of /cvsroot/mxbb/mx_kb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28297 Modified Files: kb.php Log Message: Cosmetic fixes; one logical. Used $lang for the message when standalone mode is not supported. We also need to stay up with standards for lang entries... ie quotes. Index: kb.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb.php,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** kb.php 8 Dec 2005 15:04:26 -0000 1.26 --- kb.php 16 Dec 2005 03:28:10 -0000 1.27 *************** *** 19,23 **** */ ! if ( file_exists( './viewtopic.php' ) ) // -------------------------------------------- phpBB MOD MODE { define( 'MXBB_MODULE', false ); --- 19,23 ---- */ ! if ( file_exists( './viewtopic.' . $phpEx ) ) // -------------------------------------------- phpBB MOD MODE { define( 'MXBB_MODULE', false ); *************** *** 54,58 **** // End session management ! define( 'MXBB_27x', file_exists( $mx_root_path . 'mx_login.php' ) ); if ( !isset( $HTTP_GET_VARS['print'] ) ) --- 54,58 ---- // End session management ! define( 'MXBB_27x', file_exists( $mx_root_path . 'mx_login.' . $phpEx ) ); if ( !isset( $HTTP_GET_VARS['print'] ) ) *************** *** 92,100 **** if ( MXBB_27x ) { ! mx_message_die(GENERAL_MESSAGE, 'This module does not support standalone usage. In the adminCP, add the kb block to a portal page.'); } else { ! die('no article, no redirect'); } } --- 92,100 ---- if ( MXBB_27x ) { ! mx_message_die( GENERAL_MESSAGE, $lang['Standalone_Not_Supported'] ); } else { ! die('No article or redirect'); } } *************** *** 103,107 **** else { ! define( 'MXBB_27x', file_exists( $mx_root_path . 'mx_login.php' ) ); // --- 103,107 ---- else { ! define( 'MXBB_27x', file_exists( $mx_root_path . 'mx_login.' . $phpEx ) ); // |
|
From: Andrew <men...@us...> - 2005-12-16 03:16:09
|
Update of /cvsroot/mxbb/mx_phpbb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26544 Modified Files: db_install.php Log Message: Roar... not much. Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_phpbb/db_install.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** db_install.php 14 Oct 2005 20:10:46 -0000 1.4 --- db_install.php 16 Dec 2005 03:15:43 -0000 1.5 *************** *** 20,23 **** --- 20,24 ---- define( 'IN_PORTAL', true ); + if ( !defined( 'IN_ADMIN' ) ) { *************** *** 25,31 **** --- 26,34 ---- include( $mx_root_path . 'extension.inc' ); include( $mx_root_path . 'common.' . $phpEx ); + // Start session management $userdata = session_pagestart( $user_ip, PAGE_INDEX ); mx_init_userprefs( $userdata ); + // End session management if ( !$userdata['session_logged_in'] ) *************** *** 38,44 **** die( "Hacking attempt(2)" ); } ! // End session management } $mx_module_version = 'mxBB - phpBB Integration Module 1.0.3'; $mx_module_copy = 'Based on <a href="http://www.phpbb.com/" target="_phpbb">phpBB</a>'; --- 41,48 ---- die( "Hacking attempt(2)" ); } ! } + // When we get the module field up, we'll need to remove this hardcoded version number (?) $mx_module_version = 'mxBB - phpBB Integration Module 1.0.3'; $mx_module_copy = 'Based on <a href="http://www.phpbb.com/" target="_phpbb">phpBB</a>'; *************** *** 89,98 **** { // If already installed ! $message = "<b>Module is already installed...consider upgrading ;)</b><br/><br/>"; } echo "<br /><br />"; echo "<table width=\"90%\" align=\"center\" cellpadding=\"4\" cellspacing=\"1\" border=\"0\" class=\"forumline\">"; ! echo "<tr><th class=\"thHead\" align=\"center\">Module Installation/Upgrading/Uninstalling Information - module specific db tables</th></tr>"; echo "<tr><td class=\"row1\" align=\"left\"><span class=\"gen\">" . $message . "</span></td></tr>"; echo "</table><br />"; --- 93,102 ---- { // If already installed ! $message = "<b>Module is already installed... consider upgrading ;)</b><br/><br/>"; } echo "<br /><br />"; echo "<table width=\"90%\" align=\"center\" cellpadding=\"4\" cellspacing=\"1\" border=\"0\" class=\"forumline\">"; ! echo "<tr><th class=\"thHead\" align=\"center\">Module Installation/Upgrading/Uninstallation Information - Module specific DB tables</th></tr>"; echo "<tr><td class=\"row1\" align=\"left\"><span class=\"gen\">" . $message . "</span></td></tr>"; echo "</table><br />"; |
|
From: Andrew N. \(MHobbit\) <men...@us...> - 2005-12-16 03:13:06
|
Update of /cvsroot/mxbb/mx_phpbb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26118 Modified Files: mx_phpbb.php Log Message: A couple of small things Index: mx_phpbb.php =================================================================== RCS file: /cvsroot/mxbb/mx_phpbb/mx_phpbb.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** mx_phpbb.php 22 Oct 2005 11:51:36 -0000 1.4 --- mx_phpbb.php 16 Dec 2005 03:12:57 -0000 1.5 *************** *** 21,31 **** if( !defined('IN_PORTAL') ) { ! die("Hacking attempt !!!"); } // // Restore POST vars after redirect // ! $_POST = $HTTP_POST_VARS = $_SESSION['mxbb_post_vars']; include_once($mx_root_path . "modules/mx_phpbb/includes/forum_hack.$phpEx"); --- 21,34 ---- if( !defined('IN_PORTAL') ) { ! die("Hacking attempt"); } + include_once( $phpbb_root_path . 'common' . $phpEx ); + // // Restore POST vars after redirect + // Will look into this later // ! $HTTP_POST_VARS = $HTTP_SESSION_VARS['mxbb_post_vars']; include_once($mx_root_path . "modules/mx_phpbb/includes/forum_hack.$phpEx"); *************** *** 38,42 **** // ! // Final tpl code fixup - these are really phpBB "bugs", hardcoded images etc // switch ( $mx_forum->phpbb_script ) --- 41,45 ---- // ! // Final template code fixup - these are really phpBB "bugs", hardcoded images etc. // switch ( $mx_forum->phpbb_script ) *************** *** 49,55 **** --- 52,60 ---- break; + case 'viewforum': break; + case 'viewtopic': $phpbb_output = str_replace('templates/subSilver/images/vote_lcap.gif', $phpbb_root_path . 'templates/subSilver/images/vote_lcap.gif', $phpbb_output); *************** *** 57,60 **** --- 62,66 ---- break; + case 'posting': |
|
From: Andrew N. \(MHobbit\) <men...@us...> - 2005-12-16 03:07:46
|
Update of /cvsroot/mxbb/mx_phpbb/language/lang_english In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25422/language/lang_english Modified Files: lang_admin.php Log Message: Fixes Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/mx_phpbb/language/lang_english/lang_admin.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lang_admin.php 1 Oct 2005 14:15:50 -0000 1.2 --- lang_admin.php 16 Dec 2005 03:07:37 -0000 1.3 *************** *** 20,52 **** $lang['mx_forum_admin'] = 'mxBB Forum Integration'; ! $lang['mx_forum_admin_explain'] = 'Here you do phpBB and mxBB pages mappings.<br/>If you run the module with fixed mappings, you only have to use ONE mx_phpbb block, and place this on every mxBB page with phpBB mappings. If you intend to split phpbb and run different forums on different mxBB pages, you need one mx_phpbb block for each subinstance.'; // ! // phpbb // $lang['Cat_all'] = "All"; $lang['phpbb_config_updated'] = 'phpBB Plugin Configuration Updated Successfully.'; ! $lang['Click_return_phpbb_config'] = 'Click %sHere%s to return to hpBB Plugin Configuration'; // Pages ! $lang['phpbb_index'] = 'index'; ! $lang['phpbb_viewforum'] = 'viewforum'; ! $lang['phpbb_viewtopic'] = 'viewtopic'; ! $lang['phpbb_faq'] = 'faq'; ! $lang['phpbb_groupcp'] = 'groupcp'; ! $lang['phpbb_login'] = 'login'; ! $lang['phpbb_memberlist'] = 'memberlist'; ! $lang['phpbb_modcp'] = 'modcp'; ! $lang['phpbb_posting'] = 'posting'; ! $lang['phpbb_privmsg'] = 'privmsg'; ! $lang['phpbb_profile'] = 'profile'; ! $lang['phpbb_search'] = 'search'; ! $lang['phpbb_viewonline'] = 'viewonline'; $lang['phpbb_other'] = 'Other phpBB pages'; ! $lang['phpbb_explain'] = 'Fixed mapping, or default mapping (if using blocksettings)'; $lang['submit'] = 'Submit'; --- 20,52 ---- $lang['mx_forum_admin'] = 'mxBB Forum Integration'; ! $lang['mx_forum_admin_explain'] = 'Here, you can do phpBB and mxBB page mappings.<br />If you run the module with fixed mappings, you only have to use ONE mx_phpbb block, and place this on every mxBB page with phpBB mappings. If you intend to split phpBB and run different forums on different mxBB pages, you need one mx_phpbb block for each subinstance.'; // ! // phpBB // $lang['Cat_all'] = "All"; $lang['phpbb_config_updated'] = 'phpBB Plugin Configuration Updated Successfully.'; ! $lang['Click_return_phpbb_config'] = 'Click %sHere%s to return to phpBB Plugin Configuration'; // Pages ! $lang['phpbb_index'] = 'Index'; ! $lang['phpbb_viewforum'] = 'Viewforum'; ! $lang['phpbb_viewtopic'] = 'Viewtopic'; ! $lang['phpbb_faq'] = 'FAQ'; ! $lang['phpbb_groupcp'] = 'GroupCP'; ! $lang['phpbb_login'] = 'Login'; ! $lang['phpbb_memberlist'] = 'Memberlist'; ! $lang['phpbb_modcp'] = 'ModCP'; ! $lang['phpbb_posting'] = 'Posting'; ! $lang['phpbb_privmsg'] = 'Privmsg'; ! $lang['phpbb_profile'] = 'Profile'; ! $lang['phpbb_search'] = 'Search'; ! $lang['phpbb_viewonline'] = 'View Online'; $lang['phpbb_other'] = 'Other phpBB pages'; ! $lang['phpbb_explain'] = 'Fixed mapping, or default mapping (if using block settings)'; $lang['submit'] = 'Submit'; *************** *** 62,66 **** $lang['phpbb_integration_enabled'] = 'Activate the phpBB module?'; ! $lang['phpbb_integration_enabled_explain'] = 'When the phpBB module is activated, all phpBB urls will be directed to mxBB pages. If deactivated, phpBB will operate "as usual", independently of mxBB'; $lang['phpbb_integration_enabled_yes'] = 'Activate'; --- 62,66 ---- $lang['phpbb_integration_enabled'] = 'Activate the phpBB module?'; ! $lang['phpbb_integration_enabled_explain'] = 'When the phpBB module is activated, all phpBB URLs will be directed to mxBB pages. If deactivated, phpBB will operate "as usual", independently of mxBB'; $lang['phpbb_integration_enabled_yes'] = 'Activate'; *************** *** 68,72 **** $lang['phpbb_override'] = 'Associate phpBB and mxBB pages'; ! $lang['phpbb_override_explain'] = 'phpBB urls are redirected to mxBB pages following these settings.<br /> If using "Block Settings", be sure to edit the phpbb block themselves.'; $lang['phpbb_override_yes'] = 'Use Block Settings'; --- 68,72 ---- $lang['phpbb_override'] = 'Associate phpBB and mxBB pages'; ! $lang['phpbb_override_explain'] = 'phpBB urls are redirected to mxBB pages following these settings.<br /> If using "Block Settings", be sure to edit the phpBB blocks themselves.'; $lang['phpbb_override_yes'] = 'Use Block Settings'; |
|
From: Andrew N. \(MHobbit\) <men...@us...> - 2005-12-15 21:59:54
|
Update of /cvsroot/mxbb/core/language/lang_english In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26819/language/lang_english Modified Files: lang_admin.php Log Message: Tabbing issues to be fixed later... Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_english/lang_admin.php,v retrieving revision 1.56 retrieving revision 1.57 diff -C2 -d -r1.56 -r1.57 *** lang_admin.php 15 Dec 2005 16:04:33 -0000 1.56 --- lang_admin.php 15 Dec 2005 21:59:46 -0000 1.57 *************** *** 50,54 **** $lang['4_1_Integrity'] = "Integrity Checker"; $lang['4_1_Meta'] = "META tags"; ! $lang['4_1_PHPinfo'] = "PHPInfo()"; // --- 50,54 ---- $lang['4_1_Integrity'] = "Integrity Checker"; $lang['4_1_Meta'] = "META tags"; ! $lang['4_1_PHPinfo'] = "phpInfo()"; // |
|
From: Horace <jus...@us...> - 2005-12-15 16:04:49
|
Update of /cvsroot/mxbb/mx_profilecp/language/lang_english In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10470/mx_profilecp/language/lang_english Modified Files: lang_extend_lang_extend.php lang_extend_pcp_management.php lang_extend_profile_control_panel.php Log Message: Language & Grammer Updates. Index: lang_extend_lang_extend.php =================================================================== RCS file: /cvsroot/mxbb/mx_profilecp/language/lang_english/lang_extend_lang_extend.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lang_extend_lang_extend.php 1 Oct 2005 14:16:27 -0000 1.2 --- lang_extend_lang_extend.php 15 Dec 2005 16:04:33 -0000 1.3 *************** *** 36,40 **** $lang['Lang_extend_explain'] = 'Here you can add or modify languages key entries'; $lang['Lang_extend_pack'] = 'Language Pack'; ! $lang['Lang_extend_pack_explain'] = 'This is the name of the pack, usualy the name of the MOD refering to'; $lang['Lang_extend_entry'] = 'Language key entry'; --- 36,40 ---- $lang['Lang_extend_explain'] = 'Here you can add or modify languages key entries'; $lang['Lang_extend_pack'] = 'Language Pack'; ! $lang['Lang_extend_pack_explain'] = 'This is the name of the pack, usually the name of the MOD refering to'; $lang['Lang_extend_entry'] = 'Language key entry'; *************** *** 57,61 **** $lang['Lang_extend_update_done'] = 'The entry has been successfully updated.<br /><br />Click %sHere%s to return to the entry.<br /><br />Click %sHere%s to return to entries list'; ! $lang['Lang_extend_delete_done'] = 'The entry has been successfully deleted.<br />Note that only customized key entries are deleted, not the basic key entries if exist.<br /><br />Click %sHere%s to return to entries list'; $lang['Lang_extend_search'] = 'Search in language key entries'; --- 57,61 ---- $lang['Lang_extend_update_done'] = 'The entry has been successfully updated.<br /><br />Click %sHere%s to return to the entry.<br /><br />Click %sHere%s to return to entries list'; ! $lang['Lang_extend_delete_done'] = 'The entry has been successfully deleted.<br />Note that only customized key entries are deleted, not the basic key entries if they exist.<br /><br />Click %sHere%s to return to entries list'; $lang['Lang_extend_search'] = 'Search in language key entries'; Index: lang_extend_pcp_management.php =================================================================== RCS file: /cvsroot/mxbb/mx_profilecp/language/lang_english/lang_extend_pcp_management.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lang_extend_pcp_management.php 1 Oct 2005 14:16:27 -0000 1.2 --- lang_extend_pcp_management.php 15 Dec 2005 16:04:33 -0000 1.3 *************** *** 34,39 **** $lang['PCP_01_valueslist'] = 'Values lists'; $lang['PCP_02_classesfields'] = 'Classes'; ! $lang['PCP_03_userfields'] = 'Fields definition'; ! $lang['PCP_04_usermaps'] = 'Maps definition'; // objects --- 34,39 ---- $lang['PCP_01_valueslist'] = 'Values lists'; $lang['PCP_02_classesfields'] = 'Classes'; ! $lang['PCP_03_userfields'] = 'Field definitions'; ! $lang['PCP_04_usermaps'] = 'Map definitions'; // objects *************** *** 41,45 **** $lang['PCP_tableslinked_explain'] = 'Tables used by the Profile Control Panel for values list and buddy/member lists.'; ! $lang['PCP_valueslist'] = 'Values lists'; $lang['PCP_valueslist_explain'] = 'List of values used by the Profile Control Panel.'; --- 41,45 ---- $lang['PCP_tableslinked_explain'] = 'Tables used by the Profile Control Panel for values list and buddy/member lists.'; ! $lang['PCP_valueslist'] = 'Value lists'; $lang['PCP_valueslist_explain'] = 'List of values used by the Profile Control Panel.'; *************** *** 47,55 **** $lang['PCP_classesfields_explain'] = 'Here you can edit or delete the classes fields.'; ! $lang['PCP_userfields'] = 'Fields definition'; $lang['PCP_userfields_explain'] = 'Here you can manage the fields used by the Profile Control Panel.'; ! $lang['PCP_usermaps'] = 'Maps definition'; ! $lang['PCP_usermaps_explain'] = 'Here you can manage the fields maps used in various places.'; // fields --- 47,55 ---- $lang['PCP_classesfields_explain'] = 'Here you can edit or delete the classes fields.'; ! $lang['PCP_userfields'] = 'Field definitions'; $lang['PCP_userfields_explain'] = 'Here you can manage the fields used by the Profile Control Panel.'; ! $lang['PCP_usermaps'] = 'Map definitions'; ! $lang['PCP_usermaps_explain'] = 'Here you can manage the field maps used in various places.'; // fields *************** *** 69,73 **** // fields edit ! $lang['PCP_userfields_edit'] = 'Fields edition'; $lang['PCP_userfields_edit_explain'] = 'Here you can edit or delete a field.'; --- 69,73 ---- // fields edit ! $lang['PCP_userfields_edit'] = 'Field editing'; $lang['PCP_userfields_edit_explain'] = 'Here you can edit or delete a field.'; Index: lang_extend_profile_control_panel.php =================================================================== RCS file: /cvsroot/mxbb/mx_profilecp/language/lang_english/lang_extend_profile_control_panel.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** lang_extend_profile_control_panel.php 1 Oct 2005 14:16:27 -0000 1.3 --- lang_extend_profile_control_panel.php 15 Dec 2005 16:04:33 -0000 1.4 *************** *** 120,127 **** // update profile : public informations : web info (mod_profile_control_public_web.php) $lang['profilcp_profil_base_shortcut'] = 'Public information'; ! $lang['Web_info'] = 'Web informations'; // update profile : public informations : real info (mod_profile_control_public_real.php) ! $lang['Real_info'] = 'Personal informations'; $lang['Realname'] = 'Real name'; $lang['Date_error'] = 'day %d, month %d, year %d is not a valid date'; --- 120,127 ---- // update profile : public informations : web info (mod_profile_control_public_web.php) $lang['profilcp_profil_base_shortcut'] = 'Public information'; ! $lang['Web_info'] = 'Web information'; // update profile : public informations : real info (mod_profile_control_public_real.php) ! $lang['Real_info'] = 'Personal information'; $lang['Realname'] = 'Real name'; $lang['Date_error'] = 'day %d, month %d, year %d is not a valid date'; *************** *** 143,147 **** // update profile : preferences - i18n panel (mod_profile_control_panel_international.php) $lang['Profile_control_panel_i18n'] = 'Internationalization'; ! $lang['summer_time'] = 'Are you in a daylight saving zone ?'; // update profile : preferences - notification panel (mod_profile_control_panel_notification.php) --- 143,147 ---- // update profile : preferences - i18n panel (mod_profile_control_panel_international.php) $lang['Profile_control_panel_i18n'] = 'Internationalization'; ! $lang['summer_time'] = 'Are you in a daylight saving zone?'; // update profile : preferences - notification panel (mod_profile_control_panel_notification.php) *************** *** 155,161 **** $lang['View_user'] = 'Show me online'; $lang['Public_view_pm'] = 'Accept private message'; ! $lang['Public_view_website'] = 'Display my web informations'; ! $lang['Public_view_messengers'] = 'Display my messengers references'; ! $lang['Public_view_real_info'] = 'Display my personnal informations'; // update profile : preferences - reading panel (mod_profile_control_panel_reading.php) --- 155,161 ---- $lang['View_user'] = 'Show me online'; $lang['Public_view_pm'] = 'Accept private message'; ! $lang['Public_view_website'] = 'Display my web information'; ! $lang['Public_view_messengers'] = 'Display my messenger references'; ! $lang['Public_view_real_info'] = 'Display my personnal information'; // update profile : preferences - reading panel (mod_profile_control_panel_reading.php) *************** *** 170,174 **** // update profile : preferences - system panel (mod_profile_control_panel_system.php) $lang['Profile_control_panel_system'] = 'System'; ! $lang['summer_time_set'] = 'Is it summer time ? (add +1 hour to local time)'; $lang['Forum_rules'] = 'Forum rules topic id'; --- 170,174 ---- // update profile : preferences - system panel (mod_profile_control_panel_system.php) $lang['Profile_control_panel_system'] = 'System'; ! $lang['summer_time_set'] = 'Is it summer time? (add +1 hour to local time)'; $lang['Forum_rules'] = 'Forum rules topic id'; *************** *** 181,189 **** $lang['User_allow_email'] = 'Can send emails'; $lang['User_allow_pm'] = 'Can send Private Messages'; ! $lang['User_allow_website'] = 'Can show his web info'; ! $lang['User_allow_messanger'] = 'Can share his messengers adresses'; ! $lang['User_allow_real'] = 'Can show his personal informations'; $lang['User_allowavatar'] = 'Can display avatar'; ! $lang['User_allow_sig'] = 'Can display his signature'; $lang['Rank_title'] = 'Rank Title'; $lang['User_delete'] = 'Delete this user'; --- 181,189 ---- $lang['User_allow_email'] = 'Can send emails'; $lang['User_allow_pm'] = 'Can send Private Messages'; ! $lang['User_allow_website'] = 'Can show their web info'; ! $lang['User_allow_messanger'] = 'Can share his messenger adresses'; ! $lang['User_allow_real'] = 'Can show his personal information'; $lang['User_allowavatar'] = 'Can display avatar'; ! $lang['User_allow_sig'] = 'Can display their signature'; $lang['Rank_title'] = 'Rank Title'; $lang['User_delete'] = 'Delete this user'; *************** *** 199,203 **** $lang['profilcp_public_pagetitle'] = 'Public display'; $lang['profilcp_public_base_shortcut'] = 'Base info'; ! $lang['profilcp_public_base_pagetitle'] = 'Profile base informations'; $lang['profilcp_public_groups_shortcut'] = 'Groups'; $lang['profilcp_public_groups_pagetitle'] = 'Groups this user belong to'; --- 199,203 ---- $lang['profilcp_public_pagetitle'] = 'Public display'; $lang['profilcp_public_base_shortcut'] = 'Base info'; ! $lang['profilcp_public_base_pagetitle'] = 'Profile base information'; $lang['profilcp_public_groups_shortcut'] = 'Groups'; $lang['profilcp_public_groups_pagetitle'] = 'Groups this user belong to'; |
|
From: Horace <jus...@us...> - 2005-12-15 16:04:44
|
Update of /cvsroot/mxbb/core/language/lang_english In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10470/core/language/lang_english Modified Files: lang_admin.php Log Message: Language & Grammer Updates. Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_english/lang_admin.php,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** lang_admin.php 9 Dec 2005 23:22:03 -0000 1.55 --- lang_admin.php 15 Dec 2005 16:04:33 -0000 1.56 *************** *** 20,24 **** // ! // Editor Settings: Please, set Tabsize to 4 ;-) // --- 20,24 ---- // ! // Editor Settings: Please set Tabsize to 4 ;-) // *************** *** 95,101 **** $lang['was_added'] = "was added"; $lang['was_moved'] = "was moved"; ! $lang['was_synced'] = "was synced"; ! $lang['error_no_field'] = "There's a missing field. Please fill out all the needed fields..."; // --- 95,101 ---- $lang['was_added'] = "was added"; $lang['was_moved'] = "was moved"; ! $lang['was_synced'] = "was synchronized"; ! $lang['error_no_field'] = "There is a missing field. Please fill out all the needed fields..."; // *************** *** 125,129 **** $lang['Mx_use_cache_explain'] = "Block data is cached to individual cache/block_*.xml files. Block cache files are created when Blocks are edited."; $lang['Mx_mod_rewrite'] = "Use mod_rewrite"; ! $lang['Mx_mod_rewrite_explain'] = "If you're running on an Apache server, with mod_rewrite activated, you may rewrite urls like 'page=x' with more intuitive alternatives. Read further documentation in the mx_mod_rewrite module."; --- 125,129 ---- $lang['Mx_use_cache_explain'] = "Block data is cached to individual cache/block_*.xml files. Block cache files are created when Blocks are edited."; $lang['Mx_mod_rewrite'] = "Use mod_rewrite"; ! $lang['Mx_mod_rewrite_explain'] = "If you're running on an Apache server, and have mod_rewrite activated, you may rewrite urls like 'page=x' with more intuitive alternatives. Read further documentation in the mx_mod_rewrite module."; *************** *** 173,182 **** // $lang['Function_admin'] = "Block Function Administration"; ! $lang['Function_admin_explain'] = "Each Module has one or more Block Functions. Use this form to edit, add, or delete a Block Function"; $lang['Function'] = "Block Function"; $lang['Function_name'] = "Block Function Name"; $lang['Function_desc'] = "Description"; $lang['Function_file'] = "File "; ! $lang['Function_admin_file'] = "File (Edit block script) <br /> Xtra parameters for this edit block panel. Leave blank to use default edit panel."; $lang['Create_function'] = "Add new Block Function"; $lang['Delete_function'] = "Delete Block Function"; --- 173,182 ---- // $lang['Function_admin'] = "Block Function Administration"; ! $lang['Function_admin_explain'] = "Modules have one or more Block Functions. Use this form to edit, add, or delete a Block Function"; $lang['Function'] = "Block Function"; $lang['Function_name'] = "Block Function Name"; $lang['Function_desc'] = "Description"; $lang['Function_file'] = "File "; ! $lang['Function_admin_file'] = "File (Edit block script) <br /> Extra parameters for this edit block panel. Leave blank to use default edit panel."; $lang['Create_function'] = "Add new Block Function"; $lang['Delete_function'] = "Delete Block Function"; *************** *** 192,196 **** $lang['Parameter_function'] = "<b>Function/Options</b>"; $lang['Parameter_function_explain'] = "<b>Function</b> (when using the 'Function' type)<br />- You may pass the parameter data to an external function <br /> to generate the parameter form field.<br />- For example: <br />get_list_formatted(\"block_list\",\"{parameter_value}\",\"{parameter_id}[]\")"; ! $lang['Parameter_function_explain'] .= "<br /><br /><b>Option(s)</b> (when using 'Selection' parameter types)<br />- For all selection parameters (radiobuttons, checkboxes and menys) all options are listed here, one option per line."; $lang['Parameters'] = "Parameters"; --- 192,196 ---- $lang['Parameter_function'] = "<b>Function/Options</b>"; $lang['Parameter_function_explain'] = "<b>Function</b> (when using the 'Function' type)<br />- You may pass the parameter data to an external function <br /> to generate the parameter form field.<br />- For example: <br />get_list_formatted(\"block_list\",\"{parameter_value}\",\"{parameter_id}[]\")"; ! $lang['Parameter_function_explain'] .= "<br /><br /><b>Option(s)</b> (when using 'Selection' parameter types)<br />- For all selection parameters (radiobuttons, checkboxes and menus) all options are listed here, one option per line."; $lang['Parameters'] = "Parameters"; *************** *** 247,251 **** $lang['Add_Block'] = "Add new Block"; $lang['Auth_Block'] = "Permissions"; ! $lang['Auth_Block_explain'] = "ALL: All users<br />REG: Registered Users<br />PRIVATE: Group members (see advanced permissions)<br />MOD: block moderators (see advanced permissions)<br />ADMIN: Admin<br />ANONYMOS: Guest users ONLY"; $lang['Block_quick_stats'] = "Quick Stats"; $lang['Block_quick_edit'] = "Quick Edit"; --- 247,251 ---- $lang['Add_Block'] = "Add new Block"; $lang['Auth_Block'] = "Permissions"; ! $lang['Auth_Block_explain'] = "ALL: All users<br />REG: Registered Users<br />PRIVATE: Group members (see advanced permissions)<br />MOD: block moderators (see advanced permissions)<br />ADMIN: Admin<br />ANONYMOUS: Guest users ONLY"; $lang['Block_quick_stats'] = "Quick Stats"; $lang['Block_quick_edit'] = "Quick Edit"; *************** *** 347,355 **** // $lang['Welcome_install'] = "Welcome to the mxBB-Portal Installation Wizard"; ! $lang['Install_Instruction'] = "Please, fill out the details requested below. This installation program will create your personalized config.php (in the Portal root directory) and the Portal database with default settings. Once this is done, you'll see a report of all the steps taken (please note mxBB-Portal does not modify your phpBB database in any way). Then, you should login to your board with your administrator username and password and go to the Administration Control Panel to configure your portal upon your own needs. Please note mxBB-Portal will not work by itself, phpBB must already be installed and configured. Thank you for choosing mxBB-Portal."; ! $lang['Upgrade_Instruction'] = "mxBB-Portal is already installed. Please make backups of your database now !<br /><br />The next step will modify the structure of your database (please note mxBB-Portal does not modify your phpBB database in any way). If for whatever reason this upgrade procedure fails, there would be no other way to return to your current state. Please, make backups of your database BEFORE proceeding !<br /><br />Once done, click the button below to start the upgrade procedure."; $lang['Install_moreinfo'] = "%sRelease Notes%s | %sWelcome Pack%s | %sOnline FAQ%s | %sSupport Forums%s | %sTerms Of Use%s"; $lang['Install_settings'] = "Installation Settings"; ! $lang['Choose_lang_explain'] = "Please, use the form below to select the language you wish to use thoughtout the installation panels."; $lang['Choose_lang'] = "Choose Language"; $lang['Language'] = "Language"; --- 347,355 ---- // $lang['Welcome_install'] = "Welcome to the mxBB-Portal Installation Wizard"; ! $lang['Install_Instruction'] = "Please fill out the details requested below. This installation program will create your personalized config.php (in the Portal root directory) and the Portal database with default settings. Once this is done, you'll see a report of all the steps taken (please note mxBB-Portal does not modify your phpBB database in any way). You should then login to your board with your administrator username and password and go to the Administration Control Panel to configure your portal with your own preferences. Please note mxBB-Portal will not work by itself, phpBB must already be installed and configured. Thank you for choosing mxBB-Portal."; ! $lang['Upgrade_Instruction'] = "mxBB-Portal is already installed. Please make backups of your database now !<br /><br />The next step will modify the structure of your database (please note mxBB-Portal does not modify your phpBB database in any way). If for whatever reason this upgrade procedure fails, there would be no other way to return to your current state. Please make backups of your database BEFORE proceeding !<br /><br />Once done, click the button below to start the upgrade procedure."; $lang['Install_moreinfo'] = "%sRelease Notes%s | %sWelcome Pack%s | %sOnline FAQ%s | %sSupport Forums%s | %sTerms Of Use%s"; $lang['Install_settings'] = "Installation Settings"; ! $lang['Choose_lang_explain'] = "Please use the form below to select the language you wish to use throughout the installation process."; $lang['Choose_lang'] = "Choose Language"; $lang['Language'] = "Language"; *************** *** 369,383 **** $lang['MX_Table_Prefix'] = "mxBB-Portal Prefix in DB"; $lang['Start_Install'] = "Start mxBB Installation"; ! $lang['Start_Upgrade'] = "Yes, I already did a backup and wish to upgrade my mxBB-Portal now."; $lang['Portal_intalled'] = "mxBB-Portal has been installed !"; $lang['Portal_upgraded'] = "mxBB-Portal has been upgraded !"; $lang['Unwriteable_config'] = "Your mxBB config file (config.php) is un-writeable at present.<br /><br />A copy of the config file will be downloaded to you when you click the button below. You should upload this file to your mxBB root directory: %s <br /><br />Once this is done, please %sREFRESH%s this window to proceed with the next installation step.<br /><br />Thank you for choosing mxBB-Portal.<br />"; $lang['Send_file'] = "Just send the file to me and I'll FTP it manually"; ! $lang['phpBB_nfnd_retry'] = "Sorry, we could not find your phpBB installation. Please, press the %sBACK%s button of your browser and retry."; ! $lang['Installation_error'] = "An error has occurred during installation"; $lang['Debug_Information'] = "DEBUG INFORMATION"; ! $lang['Install_phpbb_not_found'] = "Sorry, we cound not find any phpBB board installed on this server.<br />Please, install phpBB BEFORE installing mxBB-Portal.<br />\n<br />\n"; ! $lang['Install_phpbb_db_failed'] = "Sorry, we could not connect to the phpBB database.<br />Please, check your phpBB is correctly installed, up and running BEFORE installing mxBB-Portal.<br />\n<br />\n"; ! $lang['Install_phpbb_unsupported'] = "Unfortunately, the phpBB board installed on this server is not supported by mxBB-Portal.<br />Please, check the release notes for installation requirements.<br />\n<br />\n"; $lang['Install_noscript_warning'] = "Sorry, this installation requires a JavaScript enabled browser. It might not work on your browser."; $lang['Upgrade_are_you_sure'] = "This upgrade procedure will make modifications to your database. Are you sure you wish to proceed?"; --- 369,383 ---- $lang['MX_Table_Prefix'] = "mxBB-Portal Prefix in DB"; $lang['Start_Install'] = "Start mxBB Installation"; ! $lang['Start_Upgrade'] = "Yes, I have already done a backup and wish to upgrade my mxBB-Portal now."; $lang['Portal_intalled'] = "mxBB-Portal has been installed !"; $lang['Portal_upgraded'] = "mxBB-Portal has been upgraded !"; $lang['Unwriteable_config'] = "Your mxBB config file (config.php) is un-writeable at present.<br /><br />A copy of the config file will be downloaded to you when you click the button below. You should upload this file to your mxBB root directory: %s <br /><br />Once this is done, please %sREFRESH%s this window to proceed with the next installation step.<br /><br />Thank you for choosing mxBB-Portal.<br />"; $lang['Send_file'] = "Just send the file to me and I'll FTP it manually"; ! $lang['phpBB_nfnd_retry'] = "Sorry, we could not find your phpBB installation. Please press the %sBACK%s button of your browser and retry."; ! $lang['Installation_error'] = "An error has occurred during the installation"; $lang['Debug_Information'] = "DEBUG INFORMATION"; ! $lang['Install_phpbb_not_found'] = "Sorry, we could not find any phpBB board installed on this server.<br />Please install phpBB BEFORE installing mxBB-Portal.<br />\n<br />\n"; ! $lang['Install_phpbb_db_failed'] = "Sorry, we could not connect to the phpBB database.<br />Please check that your phpBB is correctly installed and up and running BEFORE installing mxBB-Portal.<br />\n<br />\n"; ! $lang['Install_phpbb_unsupported'] = "Unfortunately, the phpBB board installed on this server is not supported by mxBB-Portal.<br />Please check the release notes for installation requirements.<br />\n<br />\n"; $lang['Install_noscript_warning'] = "Sorry, this installation requires a JavaScript enabled browser. It might not work on your browser."; $lang['Upgrade_are_you_sure'] = "This upgrade procedure will make modifications to your database. Are you sure you wish to proceed?"; *************** *** 390,399 **** $lang['Subscribe_mxBB_News_now'] = "We recommend that you subscribe to the %smxBB-News Mailing List%s to receive information about important news and release announcements.<br /> <br />%sSubscribe to mxBB-News, now!%s"; $lang['Portal_install_done'][0] = "At this point your basic installation is complete."; ! $lang['Portal_install_done'][1] = "Please, delete the /install and /contrib folders BEFORE proceeding!!!"; $lang['Portal_install_done'][2] = "Remember to make backups as often as possible ;-)"; $lang['Portal_install_done'][3] = "Press the button below and use your Administrator username and password to login to the system."; $lang['Portal_install_done'][4] = "Enter the Admin Control Panel - Management, and upgrade ALL modules - one by one!"; $lang['Portal_install_done'][5] = "Please be sure to check the Portal Configurations and make any required changes."; ! $lang['Go_to_admincp'] = "Now visit the Admin Control Panel and upgrade modules"; $lang['Thanks_for_choosing'] = "Thank you for choosing mxBB-Portal."; $lang['Critical_Error'] = "CRITICAL ERROR"; --- 390,399 ---- $lang['Subscribe_mxBB_News_now'] = "We recommend that you subscribe to the %smxBB-News Mailing List%s to receive information about important news and release announcements.<br /> <br />%sSubscribe to mxBB-News, now!%s"; $lang['Portal_install_done'][0] = "At this point your basic installation is complete."; ! $lang['Portal_install_done'][1] = "Please delete the /install and /contrib folders BEFORE proceeding!!!"; $lang['Portal_install_done'][2] = "Remember to make backups as often as possible ;-)"; $lang['Portal_install_done'][3] = "Press the button below and use your Administrator username and password to login to the system."; $lang['Portal_install_done'][4] = "Enter the Admin Control Panel - Management, and upgrade ALL modules - one by one!"; $lang['Portal_install_done'][5] = "Please be sure to check the Portal Configurations and make any required changes."; ! $lang['Go_to_admincp'] = "Now visit the Admin Control Panel and upgrade your modules"; $lang['Thanks_for_choosing'] = "Thank you for choosing mxBB-Portal."; $lang['Critical_Error'] = "CRITICAL ERROR"; *************** *** 405,411 **** // $lang['Cache_dir_write_protect'] = "Your cache directory is write-protected. Unable to generate the cache file"; ! $lang['Cache_generate'] = "Your cache files have been generated. ;-)"; $lang['Cache_submit'] = "Generate the cache file?"; ! $lang['Cache_explain'] = "With this option you can generate all XML files (cache files) at once for all portal blocks. These files allow the reduction of the number of database queries needed, and improves overall portal performance. <br />Note: the mxBB cache must be enabled (in the Portal General Admin CP) for these files to be used by the system.<br>Further note: the cache files are created on the fly when editing blocks as well."; $lang['Generate_mx_cache'] = "Generate Block Cache"; --- 405,411 ---- // $lang['Cache_dir_write_protect'] = "Your cache directory is write-protected. Unable to generate the cache file"; ! $lang['Cache_generate'] = "Your cache files have been generated."; $lang['Cache_submit'] = "Generate the cache file?"; ! $lang['Cache_explain'] = "With this option you can generate all XML files (cache files) at once for all portal blocks. These files allow the reduction of the number of database queries needed and improves overall portal performance. <br />Note: the mxBB cache must be enabled (in the Portal General Admin CP) for these files to be used by the system.<br>Further note: the cache files are created on the fly when editing blocks as well."; $lang['Generate_mx_cache'] = "Generate Block Cache"; *************** *** 507,511 **** // Announcement // ! $lang['announce_nbr_display'] = "Number of Messages to display (max)"; $lang['announce_nbr_days'] = "Number of Days to Display Messages"; $lang['announce_img'] = "Announcement Image"; --- 507,511 ---- // Announcement // ! $lang['announce_nbr_display'] = "Maxumum Number of Messages to Display"; $lang['announce_nbr_days'] = "Number of Days to Display Messages"; $lang['announce_img'] = "Announcement Image"; *************** *** 518,522 **** $lang['announce_display_global'] = "Display Global Announcements in this Block"; $lang['announce_forum'] = "Source Forums"; ! $lang['announce_forum_explain'] = "- You may make multiple selections<br />* If none is selected, all authorized forums will be visible"; // --- 518,522 ---- $lang['announce_display_global'] = "Display Global Announcements in this Block"; $lang['announce_forum'] = "Source Forums"; ! $lang['announce_forum_explain'] = "- You may make multiple selections<br />* If nothing is selected, all authorized forums will be visible"; // *************** *** 525,529 **** $lang['Poll_Display'] = "Which Poll do you want to display?"; $lang['poll_forum'] = "Source Forums"; ! $lang['poll_forum_explain'] = "- You may make multiple selections<br />* If none is selected, all authorized forums will be visible"; $lang['Not_Specified'] = "Not Specified"; --- 525,529 ---- $lang['Poll_Display'] = "Which Poll do you want to display?"; $lang['poll_forum'] = "Source Forums"; ! $lang['poll_forum_explain'] = "- You may make multiple selections<br />* If nothing is selected, all authorized forums will be visible"; $lang['Not_Specified'] = "Not Specified"; *************** *** 538,542 **** // $lang['menu_display_mode'] = "Layout Mode"; ! $lang['menu_display_mode_explain '] = "Horizonal or vertical layout mode"; $lang['menu_page_sync'] = "Highlight current?"; $lang['menu_page_sync_explain'] = "Highlight current Nav Menu entry..."; --- 538,542 ---- // $lang['menu_display_mode'] = "Layout Mode"; ! $lang['menu_display_mode_explain '] = "Horizonal or Vertical layout mode"; $lang['menu_page_sync'] = "Highlight current?"; $lang['menu_page_sync_explain'] = "Highlight current Nav Menu entry..."; |
|
From: Jon O. <jon...@us...> - 2005-12-14 14:49:35
|
Update of /cvsroot/mxbb/core/modules/mx_textblocks/templates/subSilver/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24645/modules/mx_textblocks/templates/subSilver/admin Modified Files: mx_module_parameters.tpl Log Message: - fixing the html textblock - fixing blockCP textblock preview Index: mx_module_parameters.tpl =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_textblocks/templates/subSilver/admin/mx_module_parameters.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** mx_module_parameters.tpl 20 Aug 2005 18:19:13 -0000 1.1 --- mx_module_parameters.tpl 14 Dec 2005 14:49:20 -0000 1.2 *************** *** 263,267 **** </td> </tr> ! <!-- END tinyMCE --> <tr> --- 263,267 ---- </td> </tr> ! <!-- END preview --> <tr> *************** *** 404,408 **** <td colspan="9" align="left"> <span class="gen"> ! <textarea name="{SELECT_NAME}" rows="40" cols="35" wrap="virtual" style="width:550px" tabindex="3" class="post" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);">{textblock.TEXT}</textarea> </span> </td> --- 404,408 ---- <td colspan="9" align="left"> <span class="gen"> ! <textarea name="{SELECT_NAME}" rows="40" cols="35" wrap="virtual" style="width:550px" tabindex="3" class="post" {TEXTAREA_BBCODES_XTRA}>{textblock.TEXT}</textarea> </span> </td> *************** *** 416,421 **** </td> </tr> - - - \ No newline at end of file --- 416,418 ---- |
|
From: Jon O. <jon...@us...> - 2005-12-14 14:49:34
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24645/includes Modified Files: mx_functions.php Log Message: - fixing the html textblock - fixing blockCP textblock preview Index: mx_functions.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions.php,v retrieving revision 1.57 retrieving revision 1.58 diff -C2 -d -r1.57 -r1.58 *** mx_functions.php 14 Dec 2005 13:49:08 -0000 1.57 --- mx_functions.php 14 Dec 2005 14:49:20 -0000 1.58 *************** *** 1114,1118 **** return false; } ! echo('helo'); $sql = "SELECT mdl.module_id, fnc.function_id, blk.block_id FROM " . MODULE_TABLE . " mdl, --- 1114,1118 ---- return false; } ! $sql = "SELECT mdl.module_id, fnc.function_id, blk.block_id FROM " . MODULE_TABLE . " mdl, |
|
From: Jon O. <jon...@us...> - 2005-12-14 14:49:34
|
Update of /cvsroot/mxbb/core/modules/mx_coreblocks In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24645/modules/mx_coreblocks Modified Files: mx_blockcp.php Log Message: - fixing the html textblock - fixing blockCP textblock preview Index: mx_blockcp.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_coreblocks/mx_blockcp.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** mx_blockcp.php 9 Dec 2005 23:22:04 -0000 1.8 --- mx_blockcp.php 14 Dec 2005 14:49:20 -0000 1.9 *************** *** 78,86 **** // - // Define blockcp mode: 'mx_blockcp' or 'admin_mx_block_cp' - // - $mx_blockcp->blockcp_mode = 'mx_blockcp'; - - // // Mode setting // --- 78,81 ---- *************** *** 128,131 **** --- 123,131 ---- // + // Define blockcp mode: 'mx_blockcp' or 'admin_mx_block_cp' + // + $mx_blockcp->blockcp_mode = 'mx_blockcp'; + + // // Auth // *************** *** 138,142 **** // SUBMIT? // ! if( !empty($mode) && !empty($action) ) { // --- 138,142 ---- // SUBMIT? // ! if( !empty($mode) && !empty($action) && !$preview) { // *************** *** 231,238 **** // - // Main ------------------------------------- - // - - // // Start output // --- 231,234 ---- |
|
From: Jon O. <jon...@us...> - 2005-12-14 14:49:28
|
Update of /cvsroot/mxbb/core/modules/mx_textblocks/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24645/modules/mx_textblocks/admin Modified Files: mx_module_defs.php Log Message: - fixing the html textblock - fixing blockCP textblock preview Index: mx_module_defs.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_textblocks/admin/mx_module_defs.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** mx_module_defs.php 23 Oct 2005 18:48:21 -0000 1.9 --- mx_module_defs.php 14 Dec 2005 14:49:20 -0000 1.10 *************** *** 230,234 **** // To sync script and textarea select field ! 'SELECT_NAME' => $parameter_data['parameter_name'], )); --- 230,236 ---- // To sync script and textarea select field ! 'SELECT_NAME' => $parameter_data['parameter_name'], ! ! 'TEXTAREA_BBCODES_XTRA' => $bbcode_on ? 'onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);"' : '', )); *************** *** 338,342 **** // To sync script and textarea select field ! 'SELECT_NAME' => $parameter_data['parameter_name'], )); --- 340,346 ---- // To sync script and textarea select field ! 'SELECT_NAME' => $parameter_data['parameter_name'], ! ! 'TEXTAREA_BBCODES_XTRA' => $bbcode_on ? 'onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);"' : '', )); *************** *** 358,368 **** $parameter_value = $parameter_data['parameter_value']; // // HTML, BBCode & Smilies toggle selection // ! $html_status = ( true ) ? $lang['HTML_is_ON'] : $lang['HTML_is_OFF']; ! $bbcode_status = ( false ) ? $lang['BBCode_is_ON'] : $lang['BBCode_is_OFF']; ! $smilies_status = ( false ) ? $lang['Smilies_are_ON'] : $lang['Smilies_are_OFF']; $template->set_filenames(array( 'parameter' => 'admin/mx_module_parameters.tpl') --- 362,384 ---- $parameter_value = $parameter_data['parameter_value']; + // Extract customized textblock settings + $bbcode_on = false; + $html_on = true; + $smilies_on = false; + $board_config['allow_html_tags'] = ''; + // // HTML, BBCode & Smilies toggle selection // ! $html_status = ( $html_on ) ? $lang['HTML_is_ON'] : $lang['HTML_is_OFF']; ! $bbcode_status = ( $bbcode_on ) ? $lang['BBCode_is_ON'] : $lang['BBCode_is_OFF']; ! $smilies_status = ( $smilies_on ) ? $lang['Smilies_are_ON'] : $lang['Smilies_are_OFF']; + if ( isset($HTTP_POST_VARS['preview']) ) + { + $this->preview($parameter_value, $html_on, $bbcode_on, $smilies_on, true); + $template->assign_block_vars('preview', array()); + } + $template->set_filenames(array( 'parameter' => 'admin/mx_module_parameters.tpl') *************** *** 419,423 **** // Preview Textblock // =================================================== ! function preview($text, $html_on, $bbcode_on, $smilies_on) { global $board_config, $template, $lang; --- 435,439 ---- // Preview Textblock // =================================================== ! function preview($text, $html_on, $bbcode_on, $smilies_on, $is_html_textblock = false) { global $board_config, $template, $lang; *************** *** 428,434 **** $replacement_word = array(); obtain_word_list($orig_word, $replacement_word); ! ! $bbcode_uid = ( $bbcode_on ) ? make_bbcode_uid() : ''; ! $preview_text = stripslashes(prepare_message(addslashes(unprepare_message($preview_text)), $html_on, $bbcode_on, $smilies_on, $bbcode_uid)); if( $bbcode_on ) --- 444,453 ---- $replacement_word = array(); obtain_word_list($orig_word, $replacement_word); ! ! if (!$is_html_textblock) ! { ! $bbcode_uid = ( $bbcode_on ) ? make_bbcode_uid() : ''; ! $preview_text = stripslashes(prepare_message(addslashes(unprepare_message($preview_text)), $html_on, $bbcode_on, $smilies_on, $bbcode_uid)); ! } if( $bbcode_on ) |
|
From: Jon O. <jon...@us...> - 2005-12-14 14:49:28
|
Update of /cvsroot/mxbb/core/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24645/admin Modified Files: admin_mx_block_cp.php Log Message: - fixing the html textblock - fixing blockCP textblock preview Index: admin_mx_block_cp.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/admin_mx_block_cp.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** admin_mx_block_cp.php 22 Oct 2005 23:07:00 -0000 1.7 --- admin_mx_block_cp.php 14 Dec 2005 14:49:20 -0000 1.8 *************** *** 59,62 **** --- 59,63 ---- $action = $mx_request_vars->request('action', MX_TYPE_NO_TAGS, ''); $blog_mode = $mx_request_vars->request('blog_mode', MX_TYPE_NO_TAGS, ''); + $sid = $mx_request_vars->request('sid', MX_TYPE_NO_TAGS, ''); // *************** *** 68,71 **** --- 69,91 ---- $blog_u = $mx_request_vars->request('u', MX_TYPE_INT, $userdata['user_id']); + // + // Parameters + // + $submit = ( isset($HTTP_POST_VARS['submit']) ) ? true : false; + $submit_pars = ( isset($HTTP_POST_VARS['submit_pars']) ) ? true : false; + $cancel = ( isset($HTTP_POST_VARS['cancel']) ) ? true : false; + $preview = ( isset($HTTP_POST_VARS['preview']) ) ? true : false; + $refresh = $preview || $submit_search; + + // + // Cancel + // + if( $cancel ) + { + $header_location = ( @preg_match('/Microsoft|WebSTAR|Xitami/', getenv('SERVER_SOFTWARE')) ) ? 'Refresh: 0; URL=' : 'Location: '; + header($header_location . append_sid(PORTAL_URL . "index.$phpEx?page=" . $portalpage, true)); + exit; + } + if ( empty($block_id) ) { *************** *** 84,99 **** // - // Parameters - // - $submit = ( isset($HTTP_POST_VARS['submit']) ) ? true : false; - $submit_pars = ( isset($HTTP_POST_VARS['submit_pars']) ) ? true : false; - $cancel = ( isset($HTTP_POST_VARS['cancel']) ) ? true : false; - $preview = ( isset($HTTP_POST_VARS['preview']) ) ? true : false; - $refresh = $preview || $submit_search; - - // // SUBMIT? // ! if( !empty($mode) && !empty($action) ) { // --- 104,110 ---- // // SUBMIT? // ! if( !empty($mode) && !empty($action) && !$preview) { // *************** *** 192,207 **** // - // Cancel - // - if( $cancel ) - { - $header_location = ( @preg_match('/Microsoft|WebSTAR|Xitami/', getenv('SERVER_SOFTWARE')) ) ? 'Refresh: 0; URL=' : 'Location: '; - header($header_location . append_sid(PORTAL_URL . "index.$phpEx?page=" . $portalpage, true)); - exit; - } - - $error = false; - - // // Start output // --- 203,206 ---- |
|
From: Jon O. <jon...@us...> - 2005-12-14 13:50:18
|
Update of /cvsroot/mxbb/mx_kb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8584/modules/mx_kb Removed Files: kb_search.php Log Message: fix --- kb_search.php DELETED --- |
|
From: Jon O. <jon...@us...> - 2005-12-14 13:49:27
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8214/install Modified Files: mx_install.php Log Message: minor fixes - adding regenereate cache also for fresh install Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.56 retrieving revision 1.57 diff -C2 -d -r1.56 -r1.57 *** mx_install.php 9 Dec 2005 00:22:20 -0000 1.56 --- mx_install.php 14 Dec 2005 13:49:08 -0000 1.57 *************** *** 561,567 **** // ! // Update cache? Only if it's an upgrade and we really processed one or more schemas. // ! if( $install_mode == 'upgrade' && count($schemas) > 0 ) { if( version_compare($mx_portal_version, '2.8.0', '<') ) --- 561,568 ---- // ! // Update cache? Only if we really processed one or more schemas. // ! //if( $install_mode == 'upgrade' && count($schemas) > 0 ) ! if( count($schemas) > 0 ) { if( version_compare($mx_portal_version, '2.8.0', '<') ) |
|
From: Jon O. <jon...@us...> - 2005-12-14 13:49:27
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8214/includes Modified Files: mx_functions.php mx_functions_core.php Log Message: minor fixes - adding regenereate cache also for fresh install Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** mx_functions_core.php 13 Dec 2005 20:57:02 -0000 1.20 --- mx_functions_core.php 14 Dec 2005 13:49:08 -0000 1.21 *************** *** 762,772 **** // Now also clear the config/custom cache // ! $mx_config_cache->tidy(); ! $mx_config_cache->unload(); } - - - } // class mx_cache --- 762,772 ---- // Now also clear the config/custom cache // ! if (is_object($mx_config_cache)) ! { ! $mx_config_cache->tidy(); ! $mx_config_cache->unload(); ! } } } // class mx_cache *************** *** 2183,2187 **** function update_session_cache( $id = '' ) { ! global $mx_cache; if (!is_object($mx_cache)) --- 2183,2187 ---- function update_session_cache( $id = '' ) { ! global $mx_cache, $mx_config_cache; if (!is_object($mx_cache)) *************** *** 2210,2213 **** --- 2210,2227 ---- $mx_cache->update( MX_CACHE_BLOCK_TYPE, $id ); } + + // + // Now also clear the config/custom cache + // + if (!is_object($mx_config_cache)) + { + // + // instatiate the mx_config_cache class + // + $mx_config_cache = new mx_config_cache(); + } + + $mx_config_cache->tidy(); + $mx_config_cache->unload(); } ?> \ No newline at end of file Index: mx_functions.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions.php,v retrieving revision 1.56 retrieving revision 1.57 diff -C2 -d -r1.56 -r1.57 *** mx_functions.php 14 Dec 2005 12:38:00 -0000 1.56 --- mx_functions.php 14 Dec 2005 13:49:08 -0000 1.57 *************** *** 583,589 **** $page_id_array = unserialize( $mx_config_cache->get( $cache_key ) ); } ! ! ! if (empty($page_id_array['page_id'])) { if( $use_function_file ) --- 583,587 ---- $page_id_array = unserialize( $mx_config_cache->get( $cache_key ) ); } ! else { if( $use_function_file ) |
|
From: Jon O. <jon...@us...> - 2005-12-14 13:25:01
|
Update of /cvsroot/mxbb/core/install/schemas In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2294/install/schemas Modified Files: mysql_schema_install.sql Log Message: updated install schema - adding a search page Index: mysql_schema_install.sql =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/mysql_schema_install.sql,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** mysql_schema_install.sql 9 Dec 2005 23:22:03 -0000 1.11 --- mysql_schema_install.sql 14 Dec 2005 13:24:44 -0000 1.12 *************** *** 58,61 **** --- 58,62 ---- INSERT INTO mx_table_block VALUES("30", "Modules Info", "Introduction", "24", "0", "5", "0", "0", "0", "0", "0", "1", "1", "1", "1125859742", "2"); INSERT INTO mx_table_block VALUES("3", "Site Log", "This is a Demo Block", "10", "0", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1125841954", "2"); + INSERT INTO mx_table_block VALUES("15", "Site Search", "Site Search", "15", "0", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1125841954", "2"); INSERT INTO mx_table_block VALUES("9", "mxBB TextBlock", "This is a Demo Block", "22", "0", "5", "0", "0", "0", "0", "0", "1", "1", "1", "1125865570", "2"); *************** *** 163,167 **** INSERT INTO mx_table_column VALUES("1", "Left", "25", NULL, "200", "1"); INSERT INTO mx_table_column VALUES("3", "Left", "40", NULL, "200", "2"); ! # --- 164,169 ---- INSERT INTO mx_table_column VALUES("1", "Left", "25", NULL, "200", "1"); INSERT INTO mx_table_column VALUES("3", "Left", "40", NULL, "200", "2"); ! INSERT INTO mx_table_column VALUES("10", "Main", "50", NULL, "100%", "5"); ! INSERT INTO mx_table_column VALUES("9", "Left", "40", NULL, "200", "5"); # *************** *** 200,204 **** INSERT INTO mx_table_column_block VALUES("3", "13", "30"); INSERT INTO mx_table_column_block VALUES("3", "8", "10"); ! # --- 202,207 ---- INSERT INTO mx_table_column_block VALUES("3", "13", "30"); INSERT INTO mx_table_column_block VALUES("3", "8", "10"); ! INSERT INTO mx_table_column_block VALUES("10", "15", "10"); ! INSERT INTO mx_table_column_block VALUES("9", "8", "10"); # *************** *** 271,274 **** --- 274,278 ---- INSERT INTO mx_table_function VALUES("21", "20", "TextBlock (Blog)", "UserBlog Textblock", "mx_textblock_blog.php", ""); INSERT INTO mx_table_function VALUES("10", "10", "Site Log", "Site Log monitor Function", "mx_site_log.php", ""); + INSERT INTO mx_table_function VALUES("15", "10", "Site Search", "Site Search Block", "mx_search.php", ""); *************** *** 402,409 **** # Dumping data for table 'mx_table_page' # ! INSERT INTO mx_table_page VALUES("4", "Sitestats", "Sitestats page", "nav_statistics.gif", "0", "0", "0", "overall_header.tpl", "", ""); ! INSERT INTO mx_table_page VALUES("1", "Home", "This is the startpage", "nav_home.gif", "0", "0", "0", "overall_header.tpl", "", ""); ! INSERT INTO mx_table_page VALUES("2", "Forum", "This is the phpBB Forum startpage", "nav_forum.gif", "0", "0", "0", "overall_header.tpl", "", ""); ! INSERT INTO mx_table_page VALUES("3", "Demo Page", "Block Demos", "nav_develope.gif", "0", "0", "0", "overall_header.tpl", "", ""); --- 406,414 ---- # Dumping data for table 'mx_table_page' # ! INSERT INTO mx_table_page VALUES("5", "Site Search", "Site Search page", "nav_search.gif", "0", "0", "0", "overall_header.tpl", "", "", "-1"); ! INSERT INTO mx_table_page VALUES("4", "Sitestats", "Sitestats page", "nav_statistics.gif", "0", "0", "0", "overall_header.tpl", "", "", "-1"); ! INSERT INTO mx_table_page VALUES("1", "Home", "This is the startpage", "nav_home.gif", "0", "0", "0", "overall_header.tpl", "", "", "-1"); ! INSERT INTO mx_table_page VALUES("2", "Forum", "This is the phpBB Forum startpage", "nav_forum.gif", "0", "0", "0", "overall_header.tpl", "", "", "1"); ! INSERT INTO mx_table_page VALUES("3", "Demo Page", "Block Demos", "nav_develope.gif", "0", "0", "0", "overall_header.tpl", "", "", "-1"); *************** *** 512,516 **** `portal_url` varchar(255) default NULL, `portal_version` varchar(255) default NULL, ! `top_phpbb_links` smallint(5) unsigned NOT NULL default '1', `mx_use_cache` smallint(5) unsigned NOT NULL default '1', `portal_recached` varchar(255) NOT NULL default '', --- 517,521 ---- `portal_url` varchar(255) default NULL, `portal_version` varchar(255) default NULL, ! `top_phpbb_links` smallint(5) unsigned NOT NULL default '0', `mx_use_cache` smallint(5) unsigned NOT NULL default '1', `portal_recached` varchar(255) NOT NULL default '', |
|
From: Jon O. <jon...@us...> - 2005-12-14 13:24:19
|
Update of /cvsroot/mxbb/core/modules/mx_coreblocks/templates/subSilver In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2164/modules/mx_coreblocks/templates/subSilver Modified Files: mx_search_body.tpl mx_search_results.tpl Log Message: updated tpl Index: mx_search_results.tpl =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_coreblocks/templates/subSilver/mx_search_results.tpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** mx_search_results.tpl 13 Dec 2005 20:04:27 -0000 1.4 --- mx_search_results.tpl 14 Dec 2005 13:24:05 -0000 1.5 *************** *** 1,3 **** ! <table width="100%" cellspacing="2" cellpadding="2" border="0" align="center"> <tr> <td align="left" valign="bottom"><span class="maintitle">{L_SEARCH_MATCHES}</span><br /></td> --- 1,3 ---- ! <table width="100%" cellspacing="1" cellpadding="2" border="0" align="center"> <tr> <td align="left" valign="bottom"><span class="maintitle">{L_SEARCH_MATCHES}</span><br /></td> *************** *** 5,9 **** </table> ! <table width="100%" cellspacing="2" cellpadding="2" border="0" align="center"> <tr> <td align="left"><span class="nav"><a href="{U_NEW_SEARCH}" class="nav">{L_NEW_SEARCH}</a></span></td> --- 5,9 ---- </table> ! <table width="100%" cellspacing="1" cellpadding="2" border="0" align="center"> <tr> <td align="left"><span class="nav"><a href="{U_NEW_SEARCH}" class="nav">{L_NEW_SEARCH}</a></span></td> *************** *** 11,15 **** </table> ! <table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline" align="center"> <tr> <th align="left" class="thCornerL" nowrap="nowrap" width="20%"> {L_PAGE} </th> --- 11,15 ---- </table> ! <table width="100%" cellpadding="2" cellspacing="0" border="0" class="forumline" align="center"> <tr> <th align="left" class="thCornerL" nowrap="nowrap" width="20%"> {L_PAGE} </th> *************** *** 34,38 **** </table> ! <table width="100%" cellspacing="2" border="0" align="center" cellpadding="2"> <tr> <td align="left" valign="top"><span class="nav">{PAGE_NUMBER}</span></td> --- 34,38 ---- </table> ! <table width="100%" cellspacing="1" border="0" align="center" cellpadding="2"> <tr> <td align="left" valign="top"><span class="nav">{PAGE_NUMBER}</span></td> Index: mx_search_body.tpl =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_coreblocks/templates/subSilver/mx_search_body.tpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** mx_search_body.tpl 19 Apr 2005 18:29:14 -0000 1.3 --- mx_search_body.tpl 14 Dec 2005 13:24:04 -0000 1.4 *************** *** 1,4 **** <form action="{S_SEARCH_ACTION}" method="post"> ! <table width="100%" cellspacing="2" cellpadding="2" border="0" align="center"> <tr> <td align="left"><span class="nav"><a href="{U_KB}" class="nav">{L_KB}</a></span></td> --- 1,4 ---- <form action="{S_SEARCH_ACTION}" method="post"> ! <table width="100%" cellspacing="0" cellpadding="2" border="0" align="center"> <tr> <td align="left"><span class="nav"><a href="{U_KB}" class="nav">{L_KB}</a></span></td> *************** *** 6,10 **** </table> ! <table class="forumline" width="100%" cellpadding="4" cellspacing="1" border="0"> <tr> <th class="thHead" colspan="4" height="25">{L_SEARCH_QUERY}</th> --- 6,10 ---- </table> ! <table class="forumline" width="100%" cellpadding="2" cellspacing="0" border="0"> <tr> <th class="thHead" colspan="4" height="25">{L_SEARCH_QUERY}</th> *************** *** 19,23 **** </table> ! <table width="100%" cellspacing="2" cellpadding="2" border="0" align="center"> <tr> <td align="right" valign="middle"><span class="gensmall">{S_TIMEZONE}</span></td> --- 19,23 ---- </table> ! <table width="100%" cellspacing="0" cellpadding="2" border="0" align="center"> <tr> <td align="right" valign="middle"><span class="gensmall">{S_TIMEZONE}</span></td> |
|
From: Jon O. <jon...@us...> - 2005-12-14 12:38:11
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23102/includes Modified Files: mx_functions.php mx_functions_blockcp.php Log Message: fix for missing function_id for adding new block (first time only) Index: mx_functions_blockcp.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_blockcp.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** mx_functions_blockcp.php 22 Oct 2005 10:51:02 -0000 1.7 --- mx_functions_blockcp.php 14 Dec 2005 12:38:02 -0000 1.8 *************** *** 83,88 **** $block_id = $id; ! $module_id = $mx_request_vars->request('module_id', MX_TYPE_INT, '');; ! $function_id = $mx_request_vars->request('function_id', MX_TYPE_INT, '');; // --- 83,88 ---- $block_id = $id; ! $module_id = $mx_request_vars->is_request('module_id') ? $mx_request_vars->request('module_id', MX_TYPE_INT, '') : mx_parent_data($block_id, 'module_id'); ! $function_id = $mx_request_vars->is_request('function_id') ? $mx_request_vars->request('function_id', MX_TYPE_INT, '') : mx_parent_data($block_id, 'function_id'); // Index: mx_functions.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions.php,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** mx_functions.php 13 Dec 2005 20:04:26 -0000 1.55 --- mx_functions.php 14 Dec 2005 12:38:00 -0000 1.56 *************** *** 1106,1109 **** --- 1106,1149 ---- /********************************************************************************\ + | mx_parent_data(), will return function_id and module_id for given block_id. Else false + \********************************************************************************/ + function mx_parent_data($block_id = '', $key = '') + { + global $db; + + if (empty($block_id)) + { + return false; + } + echo('helo'); + $sql = "SELECT mdl.module_id, fnc.function_id, blk.block_id + FROM " . MODULE_TABLE . " mdl, + " . FUNCTION_TABLE . " fnc, + " . BLOCK_TABLE . " blk + WHERE mdl.module_id = fnc.module_id + AND fnc.function_id = blk.function_id + AND blk.block_id = '" . $block_id . "' + LIMIT 1"; + + if( !($result = $db->sql_query($sql)) ) + { + mx_message_die(GENERAL_ERROR, "Couldn't obtain parents data", '', __LINE__, __FILE__, $sql); + } + + $parent_array = $db->sql_fetchrow($result); + + if (!empty($parent_array['module_id'])) + { + if (!empty($key)) + { + return $parent_array[$key]; + } + return $parent_array; + } + + return false; + } + + /********************************************************************************\ | \********************************************************************************/ |
|
From: Jon O. <jon...@us...> - 2005-12-13 20:57:12
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21266/includes Modified Files: mx_functions_core.php page_header.php Log Message: further fixes for search - updated quick search dropdown in overall_header.tpl - automatically finding page_id to search target (site, kb, pafiledb) config/custom cache - included in regenerate cache and adminCP Index: page_header.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/page_header.php,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** page_header.php 9 Dec 2005 23:22:03 -0000 1.28 --- page_header.php 13 Dec 2005 20:57:02 -0000 1.29 *************** *** 193,199 **** $page_icon_img = ( !empty($mx_page->page_icon) && $mx_page->page_icon != 'none' ) ? '<img align="absmiddle" src="' . PORTAL_URL . TEMPLATE_ROOT_PATH . 'images/page_icons/' . $mx_page->page_icon . '" alt="" /> ' : ''; ! $option_search_site = '<option value="site">' . $lang['Mx_search_site'] . '</option>'; $option_search_forum = '<option value="forum">' . $lang['Mx_search_forum'] . '</option>'; ! $option_search_kb = file_exists($mx_root_path . 'modules/mx_kb/kb.php') ? '<option value="kb">' . $lang['Mx_search_kb'] . '</option>' : ''; $option_search_google = '<option value="google">' . $lang['Mx_search_google'] . '</option>'; --- 193,204 ---- $page_icon_img = ( !empty($mx_page->page_icon) && $mx_page->page_icon != 'none' ) ? '<img align="absmiddle" src="' . PORTAL_URL . TEMPLATE_ROOT_PATH . 'images/page_icons/' . $mx_page->page_icon . '" alt="" /> ' : ''; ! $search_page_id_pafiledb = get_page_id('dload.php', true); ! $search_page_id_kb = get_page_id('kb.php', true); ! $search_page_id_site = get_page_id('mx_search.php', true); ! ! $option_search_site = !empty($search_page_id_site) ? '<option value="site">' . $lang['Mx_search_site'] . '</option>' : ''; $option_search_forum = '<option value="forum">' . $lang['Mx_search_forum'] . '</option>'; ! $option_search_kb = !empty($search_page_id_kb) ? '<option value="kb">' . $lang['Mx_search_kb'] . '</option>' : ''; ! $option_search_pafiledb = !empty($search_page_id_pafiledb) ? '<option value="pafiledb">' . $lang['Mx_search_pafiledb'] . '</option>' : ''; $option_search_google = '<option value="google">' . $lang['Mx_search_google'] . '</option>'; *************** *** 263,268 **** 'U_INDEX_FORUM' => append_sid(PORTAL_URL . 'index.' . $phpEx . '?page=2'), 'U_INDEX' => append_sid(PORTAL_URL . 'index.' . $phpEx), ! 'U_SEARCH_SITE' => append_sid(PORTAL_URL . "modules/mx_coreblocks/mx_search.$phpEx?mode=results&search_terms=all"), ! 'U_SEARCH_KB' => append_sid(PORTAL_URL . "modules/mx_kb/kb_search.$phpEx?mode=results&search_terms=all"), 'PAGE_ICON' => $page_icon_img, --- 268,274 ---- 'U_INDEX_FORUM' => append_sid(PORTAL_URL . 'index.' . $phpEx . '?page=2'), 'U_INDEX' => append_sid(PORTAL_URL . 'index.' . $phpEx), ! 'U_SEARCH_SITE' => append_sid(PORTAL_URL . 'index.' . $phpEx . '?page=' . $search_page_id_site . '&mode=results&search_terms=all'), ! 'U_SEARCH_KB' => append_sid(PORTAL_URL . 'index.' . $phpEx . '?page=' . $search_page_id_kb . '&mode=search&search_terms=all'), ! 'U_SEARCH_PAFILEDB' => append_sid(PORTAL_URL . 'index.' . $phpEx . '?page=' . $search_page_id_pafiledb . '&action=search&search_terms=all'), 'PAGE_ICON' => $page_icon_img, *************** *** 270,273 **** --- 276,280 ---- 'L_SEARCH_FORUM' => $option_search_forum, 'L_SEARCH_KB' => $option_search_kb, + 'L_SEARCH_PAFILEDB' => $option_search_pafiledb, 'L_SEARCH_GOOGLE' => $option_search_google, //- MX System Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** mx_functions_core.php 11 Dec 2005 16:13:39 -0000 1.19 --- mx_functions_core.php 13 Dec 2005 20:57:02 -0000 1.20 *************** *** 734,737 **** --- 734,739 ---- function update( $type = MX_CACHE_ALL, $id = '' ) { + global $mx_config_cache; + if ( $type == MX_CACHE_ALL && empty($id) ) { *************** *** 756,759 **** --- 758,767 ---- } $this->_update_cache( ); + + // + // Now also clear the config/custom cache + // + $mx_config_cache->tidy(); + $mx_config_cache->unload(); } |
|
From: Jon O. <jon...@us...> - 2005-12-13 20:57:12
|
Update of /cvsroot/mxbb/core/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21266/admin Modified Files: admin_mx_gen_cache.php Log Message: further fixes for search - updated quick search dropdown in overall_header.tpl - automatically finding page_id to search target (site, kb, pafiledb) config/custom cache - included in regenerate cache and adminCP Index: admin_mx_gen_cache.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/admin_mx_gen_cache.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** admin_mx_gen_cache.php 1 Oct 2005 14:10:44 -0000 1.19 --- admin_mx_gen_cache.php 13 Dec 2005 20:57:01 -0000 1.20 *************** *** 60,65 **** else { ! // Update mxBB cache $mx_cache->update( ); $message = $lang['Cache_generate']; --- 60,73 ---- else { ! // ! // Update mxBB page/block cache ! // $mx_cache->update( ); + + // + // Update config/custom cache + // + $mx_config_cache->tidy(); + $mx_config_cache->unload(); $message = $lang['Cache_generate']; |
|
From: Jon O. <jon...@us...> - 2005-12-13 20:57:11
|
Update of /cvsroot/mxbb/core/language/lang_english In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21266/language/lang_english Modified Files: lang_main.php Log Message: further fixes for search - updated quick search dropdown in overall_header.tpl - automatically finding page_id to search target (site, kb, pafiledb) config/custom cache - included in regenerate cache and adminCP Index: lang_main.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_english/lang_main.php,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** lang_main.php 13 Dec 2005 20:04:27 -0000 1.24 --- lang_main.php 13 Dec 2005 20:57:02 -0000 1.25 *************** *** 98,102 **** $lang['Mx_search_site'] = "Site"; $lang['Mx_search_forum'] = "Forum"; ! $lang['Mx_search_kb'] = "KB articles"; $lang['Mx_search_google'] = "Google"; $lang['Mx_new_search'] = 'New Search'; --- 98,103 ---- $lang['Mx_search_site'] = "Site"; $lang['Mx_search_forum'] = "Forum"; ! $lang['Mx_search_kb'] = "Articles"; ! $lang['Mx_search_pafiledb'] = "Downloads"; $lang['Mx_search_google'] = "Google"; $lang['Mx_new_search'] = 'New Search'; |
|
From: Jon O. <jon...@us...> - 2005-12-13 20:57:11
|
Update of /cvsroot/mxbb/core/templates/subSilver In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21266/templates/subSilver Modified Files: overall_header.tpl Log Message: further fixes for search - updated quick search dropdown in overall_header.tpl - automatically finding page_id to search target (site, kb, pafiledb) config/custom cache - included in regenerate cache and adminCP Index: overall_header.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/overall_header.tpl,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** overall_header.tpl 9 Dec 2005 23:22:04 -0000 1.21 --- overall_header.tpl 13 Dec 2005 20:57:02 -0000 1.22 *************** *** 84,87 **** --- 84,92 ---- 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 { *************** *** 176,179 **** --- 181,185 ---- {L_SEARCH_FORUM} {L_SEARCH_KB} + {L_SEARCH_PAFILEDB} {L_SEARCH_GOOGLE} </select> |