You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
(95) |
Apr
(270) |
May
(111) |
Jun
|
Jul
|
Aug
(64) |
Sep
(130) |
Oct
(319) |
Nov
(17) |
Dec
(191) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(53) |
Feb
|
Mar
|
Apr
|
May
(6) |
Jun
(387) |
Jul
(102) |
Aug
(247) |
Sep
(120) |
Oct
(1) |
Nov
(8) |
Dec
(21) |
| 2007 |
Jan
(38) |
Feb
(36) |
Mar
|
Apr
(32) |
May
(135) |
Jun
(523) |
Jul
(192) |
Aug
(103) |
Sep
(533) |
Oct
(77) |
Nov
(23) |
Dec
(203) |
| 2008 |
Jan
(312) |
Feb
(1193) |
Mar
(404) |
Apr
(67) |
May
(62) |
Jun
(497) |
Jul
(297) |
Aug
(110) |
Sep
(335) |
Oct
(256) |
Nov
(50) |
Dec
(118) |
| 2009 |
Jan
(67) |
Feb
(10) |
Mar
(1) |
Apr
(1) |
May
|
Jun
(10) |
Jul
(61) |
Aug
|
Sep
(16) |
Oct
(45) |
Nov
(12) |
Dec
(14) |
| 2010 |
Jan
(30) |
Feb
|
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
(7) |
Aug
(7) |
Sep
(5) |
Oct
(5) |
Nov
|
Dec
|
| 2011 |
Jan
(7) |
Feb
(3) |
Mar
(89) |
Apr
(11) |
May
(5) |
Jun
|
Jul
(8) |
Aug
(1) |
Sep
(2) |
Oct
|
Nov
(2) |
Dec
(89) |
| 2012 |
Jan
(7) |
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
(3) |
Oct
(42) |
Nov
(1) |
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
(19) |
Apr
(90) |
May
(38) |
Jun
(235) |
Jul
(38) |
Aug
(10) |
Sep
|
Oct
(29) |
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
(6) |
May
(52) |
Jun
|
Jul
(7) |
Aug
|
Sep
(17) |
Oct
|
Nov
|
Dec
|
|
From: OryNider <ory...@us...> - 2008-01-28 03:08:28
|
Update of /cvsroot/mxbb/mx_linkdb/linkdb In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21209/linkdb Modified Files: Tag: core28x linkdb_common.php Log Message: phpBB2 switches Index: linkdb_common.php =================================================================== RCS file: /cvsroot/mxbb/mx_linkdb/linkdb/linkdb_common.php,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** linkdb_common.php 13 Aug 2006 19:43:51 -0000 1.5 --- linkdb_common.php 28 Jan 2008 03:08:25 -0000 1.5.2.1 *************** *** 75,79 **** // - Class mx_text_formatting // ! include_once( $mx_root_path . 'includes/mx_functions_tools.' . $phpEx ); include_once( $module_root_path . 'linkdb/includes/functions.' . $phpEx ); --- 75,194 ---- // - Class mx_text_formatting // ! if ( !MXBB_MODULE ) ! { ! include_once( $mx_mod_path . 'includes/functions_tools.' . $phpEx ); ! } ! else ! { ! include_once( $mx_root_path . 'includes/mx_functions_tools.' . $phpEx ); ! } ! ! // ********************************************************************** ! // If phpBB mod read language definition ! // ********************************************************************** ! ! if ( !MXBB_MODULE ) ! { ! if ( !file_exists( $module_root_path . 'linkdb/language/lang_' . $board_config['default_lang'] . '/lang_main.' . $phpEx ) ) ! { ! include( $module_root_path . 'linkdb/language/lang_english/lang_main.' . $phpEx ); ! } ! else ! { ! include( $module_root_path . 'linkdb/language/lang_' . $board_config['default_lang'] . '/lang_main.' . $phpEx ); ! } ! } ! ! // ********************************************************************** ! // If phpBB mod read theme definition and language in theme definition ! // ********************************************************************** ! if ( !MXBB_MODULE ) ! { ! $sql = 'SELECT * ! FROM ' . THEMES_TABLE . ' ! WHERE themes_id = ' . (int) $userdata['user_style']; ! if ( !($result = $db->sql_query($sql)) ) ! { ! message_die(CRITICAL_ERROR, 'Could not query database for theme info'); ! } ! ! if ( $row = $db->sql_fetchrow($result) ) ! { ! $db->sql_freeresult($result); ! $template_name = $row['template_name'] ; ! } ! else ! { ! // We are trying to setup a style which does not exist in the database ! // Try to fallback to the board default (if the user had a custom style) ! // and then any users using this style to the default if it succeeds ! if ( $userdata['user_style'] != $board_config['default_style']) ! { ! $sql = 'SELECT * ! FROM ' . THEMES_TABLE . ' ! WHERE themes_id = ' . (int) $board_config['default_style']; ! if ( !($result = $db->sql_query($sql)) ) ! { ! message_die(CRITICAL_ERROR, 'Could not query database for theme info'); ! } ! ! if ( $row = $db->sql_fetchrow($result) ) ! { ! $db->sql_freeresult($result); ! $template_name = $row['template_name'] ; ! } ! else ! { ! message_die(CRITICAL_ERROR, "Could not get theme data for themes_id [$style]"); ! } ! } ! else ! { ! message_die(CRITICAL_ERROR, "Could not get theme data for themes_id [$style]"); ! } ! } ! ! $template_path = 'templates/' ; ! //$template_name = $row['template_name'] ; ! ! //$template = new Template($phpbb_root_path . $template_path . $template_name); ! ! if ( $template ) ! { ! $current_template_path = $template_path . $template_name; ! } ! else ! { ! $current_template_path = $template_path . 'subSilver'; ! } ! ! // ------------------------------------------------------------------------- ! // Prefix with PORTAL_URL ! // ------------------------------------------------------------------------- ! $current_template_images = $phpbb_root_path . $current_template_path . "/images"; ! ! @include($phpbb_root_path . $template_path . $template_name . '/' . 'linkdb.cfg'); ! ! $img_lang = ( file_exists($phpbb_root_path . $current_template_path . '/images/lang_' . $board_config['default_lang']) ) ? $board_config['default_lang'] : 'english'; ! ! while( list($key, $value) = @each($mx_images) ) ! { ! if (is_array($value)) ! { ! foreach( $value as $key2 => $val2 ) ! { ! $images[$key][$key2] = $val2; ! $mx_images[$key][$key2] = $val2; ! } ! } ! else ! { ! $images[$key] = str_replace('{LANG}', 'lang_' . $img_lang, $value); ! $mx_images[$key] = str_replace('{LANG}', 'lang_' . $img_lang, $value); ! //$mx_images[$key] = str_replace('admin/templates/','templates/',$mx_images[$key]); ! } ! ! } ! } include_once( $module_root_path . 'linkdb/includes/functions.' . $phpEx ); |
|
From: OryNider <ory...@us...> - 2008-01-28 03:08:28
|
Update of /cvsroot/mxbb/mx_linkdb/linkdb/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21209/linkdb/includes Modified Files: Tag: core28x functions_comment.php Log Message: phpBB2 switches Index: functions_comment.php =================================================================== RCS file: /cvsroot/mxbb/mx_linkdb/linkdb/includes/functions_comment.php,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** functions_comment.php 12 Jul 2007 22:50:56 -0000 1.5 --- functions_comment.php 28 Jan 2008 03:08:25 -0000 1.5.2.1 *************** *** 134,138 **** function display_internal_comments() { ! global $template, $linkdb, $lang, $board_config, $phpEx, $linkdb_config, $db, $userdata, $images; global $mx_root_path, $module_root_path, $phpbb_root_path, $is_block, $phpEx, $mx_request_vars; --- 134,138 ---- function display_internal_comments() { ! global $template, $linkdb, $lang, $board_config, $phpEx, $linkdb_config, $db, $userdata, $images, $mx_images; global $mx_root_path, $module_root_path, $phpbb_root_path, $is_block, $phpEx, $mx_request_vars; *************** *** 333,337 **** function display_phpbb_comments( ) { ! global $template, $linkdb, $lang, $board_config, $phpEx, $linkdb_config, $db, $userdata, $images; global $mx_root_path, $module_root_path, $phpbb_root_path, $is_block, $phpEx, $mx_request_vars; --- 333,337 ---- function display_phpbb_comments( ) { ! global $template, $linkdb, $lang, $board_config, $phpEx, $linkdb_config, $db, $userdata, $images, $mx_images; global $mx_root_path, $module_root_path, $phpbb_root_path, $is_block, $phpEx, $mx_request_vars; *************** *** 871,875 **** if ( $mode == 'newtopic' || ($mode == 'editpost' && $is_first_post) ) { ! //$mode = 'newtopic'; if ( $mode == 'newtopic' ) --- 871,875 ---- if ( $mode == 'newtopic' || ($mode == 'editpost' && $is_first_post) ) { ! $mode = 'newtopic'; if ( $mode == 'newtopic' ) |
|
From: OryNider <ory...@us...> - 2008-01-28 03:07:37
|
Update of /cvsroot/mxbb/core/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20783 Modified Files: Tag: core28x subSilver.cfg Log Message: LOGO constant defined from mx_logo images index and added the posibility for cutom template to use in AdminCP mx_admin_logo index if it's defined in the .cfg file. Index: subSilver.cfg =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/subSilver.cfg,v retrieving revision 1.7.2.1 retrieving revision 1.7.2.2 diff -C2 -d -r1.7.2.1 -r1.7.2.2 *** subSilver.cfg 26 Aug 2007 19:40:33 -0000 1.7.2.1 --- subSilver.cfg 28 Jan 2008 03:07:31 -0000 1.7.2.2 *************** *** 230,233 **** --- 230,238 ---- \********************************************************************************/ // + // Logo + // + $mx_images['mx_logo'] = "$current_template_images/logo.gif"; + + // // SiteLog // |
|
From: OryNider <ory...@us...> - 2008-01-28 03:07:34
|
Update of /cvsroot/mxbb/core/templates/subSilver/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20783/admin Modified Files: Tag: core28x index_navigate.tpl Log Message: LOGO constant defined from mx_logo images index and added the posibility for cutom template to use in AdminCP mx_admin_logo index if it's defined in the .cfg file. Index: index_navigate.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/admin/Attic/index_navigate.tpl,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -d -r1.6 -r1.6.2.1 *** index_navigate.tpl 7 May 2007 19:26:10 -0000 1.6 --- index_navigate.tpl 28 Jan 2008 03:07:30 -0000 1.6.2.1 *************** *** 225,229 **** <table width="100%" cellpadding="4" cellspacing="0" border="0" align="center"> <tr> ! <td align="center" ><a href="{U_INDEX}" target="_parent"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/logo.gif" border="0" /></a></td> </tr> <tr> --- 225,229 ---- <table width="100%" cellpadding="4" cellspacing="0" border="0" align="center"> <tr> ! <td align="center" ><a href="{U_INDEX}" target="_parent"><img src="{LOGO}" border="0" /></a></td> </tr> <tr> |
|
From: OryNider <ory...@us...> - 2008-01-28 03:07:21
|
Update of /cvsroot/mxbb/core/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20762 Modified Files: Tag: core28x page_header_admin.php Log Message: LOGO constant defined from mx_logo images index and added the posibility for cutom template to use in AdminCP mx_admin_logo index if it's defined in the .cfg file. Index: page_header_admin.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/page_header_admin.php,v retrieving revision 1.19 retrieving revision 1.19.2.1 diff -C2 -d -r1.19 -r1.19.2.1 *** page_header_admin.php 5 May 2007 20:12:56 -0000 1.19 --- page_header_admin.php 28 Jan 2008 03:07:17 -0000 1.19.2.1 *************** *** 138,142 **** 'T_GECKO_STYLESHEET' => 'gecko.css', ! 'MX_ICON_CSS' => $images['mx_graphics']['icon_style'] //- mxBB )); --- 138,143 ---- 'T_GECKO_STYLESHEET' => 'gecko.css', ! 'MX_ICON_CSS' => $images['mx_graphics']['icon_style'], ! 'LOGO' => !empty($images['mx_logo_acp']) ? $images['mx_logo_acp']: $images['mx_logo'] //- mxBB )); |
|
From: OryNider <ory...@us...> - 2008-01-27 03:26:26
|
Update of /cvsroot/mxbb/core/templates/prosilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11873 Modified Files: overall_footer.html overall_header_navigation.html overall_header_navigation_phpbb.html Log Message: prosilver fix Index: overall_header_navigation.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/overall_header_navigation.html,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** overall_header_navigation.html 27 Dec 2007 03:22:13 -0000 1.11 --- overall_header_navigation.html 27 Jan 2008 03:26:20 -0000 1.12 *************** *** 125,132 **** <span class="corners-top"><span></span></span> <ul class="linklist navlinks" style="font-weight:normal;margin-top:0px;padding-top:0px;"> ! <li class="icon" style="background-image:url('{NAV_IMAGES_HOME}');"> ! <a href="{U_INDEX}" title="{L_INDEX}"><strong>{L_INDEX}</strong></a> ! </li> ! <li class="icon" style="background-image:url('{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/menu_icons/icon_help.gif')">Pages navigation, eg. forum navigation, like pafiledb navigation</li> <li class="rightside"><a href="#" onclick="fontsizeup(); return false;" class="fontsize" title="{L_FONTSIZE_CHANGE}">{L_FONSIZE_CHANGE}</a></li> </ul> --- 125,130 ---- <span class="corners-top"><span></span></span> <ul class="linklist navlinks" style="font-weight:normal;margin-top:0px;padding-top:0px;"> ! <li class="icon-home"><a href="{U_INDEX}" title="{L_INDEX}"><strong>{L_INDEX}</strong></a></li> ! <li class="icon-help">Pages navigation, eg. forum navigation, like pafiledb navigation</li> <li class="rightside"><a href="#" onclick="fontsizeup(); return false;" class="fontsize" title="{L_FONTSIZE_CHANGE}">{L_FONSIZE_CHANGE}</a></li> </ul> *************** *** 137,143 **** <!-- END switch_user_logged_in --> <!-- BEGIN switch_user_logged_out --> ! <li class="icon" style="background-image:url('{NAV_IMAGES_REGISTER}');"><a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a></li> <!-- END switch_user_logged_out --> ! <li class="icon" style="background-image:url('{NAV_IMAGES_LOGIN_LOGOUT}');"><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a></li> </ul> <!-- BEGIN switch_user_logged_in --> --- 135,141 ---- <!-- END switch_user_logged_in --> <!-- BEGIN switch_user_logged_out --> ! <li class="icon-register"><a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a></li> <!-- END switch_user_logged_out --> ! <li class="icon-logout"><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a></li> </ul> <!-- BEGIN switch_user_logged_in --> Index: overall_header_navigation_phpbb.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/overall_header_navigation_phpbb.html,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** overall_header_navigation_phpbb.html 27 Dec 2007 03:22:13 -0000 1.9 --- overall_header_navigation_phpbb.html 27 Jan 2008 03:26:20 -0000 1.10 *************** *** 125,148 **** <span class="corners-top"><span></span></span> <ul class="linklist navlinks" style="font-weight:normal;margin-top:0px;padding-top:0px;"> ! <li class="icon" style="background-image:url('{NAV_IMAGES_HOME}');"> ! <a href="{U_INDEX}" title="{L_INDEX}"><strong>{L_INDEX}</strong></a> ! </li> ! <li class="icon" style="background-image:url('{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/menu_icons/icon_help.gif')">Pages navigation, eg. forum navigation, like pafiledb navigation</li> <li class="rightside"><a href="#" onclick="fontsizeup(); return false;" class="fontsize" title="{L_FONTSIZE_CHANGE}">{L_FONSIZE_CHANGE}</a></li> </ul> <ul class="linklist rightside"> ! <li class="icon" style="background-image:url('{NAV_IMAGES_FAQ}');"><a href="{U_FAQ}">{L_FAQ}</a></li> <!-- BEGIN switch_user_logged_in --> ! <li class="icon" style="background-image:url('{NAV_IMAGES_MEMBERS}');"><a href="{U_MEMBERLIST}">{L_MEMBERLIST}</a></li> <!-- END switch_user_logged_in --> <!-- BEGIN switch_user_logged_out --> ! <li class="icon" style="background-image:url('{NAV_IMAGES_REGISTER}');"><a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a></li> <!-- END switch_user_logged_out --> ! <li class="icon" style="background-image:url('{NAV_IMAGES_LOGIN_LOGOUT}');"><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a></li> </ul> <!-- BEGIN switch_user_logged_in --> <ul class="linklist leftside"> ! <li class="icon" style="background-image:url('{NAV_IMAGES_PROFILE}');"><a href="{U_PROFILE}">{L_PROFILE}</a></li> ! <li class="icon" style="background-image:url('{NAV_IMAGES_PRIVMSG}');"><a href="{U_PRIVATEMSGS}">{L_PRIVATEMSGS}</a></li> </ul> <!-- END switch_user_logged_in --> --- 125,145 ---- <span class="corners-top"><span></span></span> <ul class="linklist navlinks" style="font-weight:normal;margin-top:0px;padding-top:0px;"> ! <li class="icon-home"><a href="{U_INDEX}" title="{L_INDEX}"><strong>{L_INDEX}</strong></a></li> ! <li class="icon-help">Pages navigation, eg. forum navigation, like pafiledb navigation</li> <li class="rightside"><a href="#" onclick="fontsizeup(); return false;" class="fontsize" title="{L_FONTSIZE_CHANGE}">{L_FONSIZE_CHANGE}</a></li> </ul> <ul class="linklist rightside"> ! <li class="icon-faq"><a href="{U_FAQ}">{L_FAQ}</a></li> <!-- BEGIN switch_user_logged_in --> ! <li class="icon-members"><a href="{U_MEMBERLIST}">{L_MEMBERLIST}</a></li> <!-- END switch_user_logged_in --> <!-- BEGIN switch_user_logged_out --> ! <li class="icon-register"><a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a></li> <!-- END switch_user_logged_out --> ! <li class="icon-logout"><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a></li> </ul> <!-- BEGIN switch_user_logged_in --> <ul class="linklist leftside"> ! <li class="icon-ucp"><a href="{U_PROFILE}">{L_PROFILE}</a> (<a href="{U_PRIVATEMSGS}">{L_PRIVATEMSGS}</a>)</li> </ul> <!-- END switch_user_logged_in --> Index: overall_footer.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/overall_footer.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** overall_footer.html 14 Dec 2007 03:16:05 -0000 1.3 --- overall_footer.html 27 Jan 2008 03:26:20 -0000 1.4 *************** *** 19,23 **** <span class="corners-bottom"><span></span></span></div> </div> ! <!-- We request you retain the full copyright notice below including the link to www.phpbb.com. --- 19,23 ---- <span class="corners-bottom"><span></span></span></div> </div> ! <!-- We request you retain the full copyright notice below including the link to www.phpbb.com. |
Update of /cvsroot/mxbb/core/templates/prosilver/images/menu_icons In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27885 Modified Files: icon_blog.gif icon_calendar.gif icon_cart.gif icon_cd.gif icon_cellphone.gif icon_chat.gif icon_clock.gif icon_computer.gif icon_cut.gif icon_day.gif icon_delete.gif icon_dl.gif icon_doc.gif icon_docs.gif icon_dot.gif icon_education.gif icon_exit.gif icon_faq.gif icon_flag.gif icon_food.gif icon_forbidden.gif icon_forum.gif icon_gallery.gif icon_game.gif icon_groups.gif icon_happy.gif icon_help.gif icon_home.gif icon_house.gif icon_info.gif icon_ipod.gif icon_key.gif icon_left.gif icon_link.gif icon_list.gif icon_lock.gif icon_login.gif icon_mail.gif icon_map.gif icon_members.gif icon_message.gif icon_minus.gif icon_movie.gif icon_mp3.gif icon_music.gif icon_notify.gif icon_pay.gif icon_phone.gif icon_plus.gif icon_post.gif icon_print.gif icon_profile.gif icon_register.gif icon_reply.gif icon_right.gif icon_sad.gif icon_save.gif icon_search.gif icon_select.gif icon_smilie.gif icon_star.gif icon_stats.gif icon_theme.gif icon_trash.gif icon_tv.gif icon_unlock.gif icon_upload.gif icon_url.gif icon_user.gif icon_zoom_in.gif icon_zoom_out.gif Removed Files: icon_bg.gif icon_bg_hot.gif icon_blank.gif icon_blank_hot.gif icon_blog_hot.gif icon_calendar_hot.gif icon_cart_hot.gif icon_cd_hot.gif icon_cellphone_hot.gif icon_chat_hot.gif icon_clock_hot.gif icon_computer_hot.gif icon_cut_hot.gif icon_day_hot.gif icon_delete_hot.gif icon_dl_hot.gif icon_doc_hot.gif icon_docs_hot.gif icon_dot_hot.gif icon_education_hot.gif icon_exit_hot.gif icon_faq_hot.gif icon_flag_hot.gif icon_food_hot.gif icon_forbidden_hot.gif icon_forum_hot.gif icon_gallery_hot.gif icon_game_hot.gif icon_groups_hot.gif icon_happy_hot.gif icon_help_hot.gif icon_home_hot.gif icon_house_hot.gif icon_info_hot.gif icon_ipod_hot.gif icon_key_hot.gif icon_left_hot.gif icon_link_hot.gif icon_list_hot.gif icon_lock_hot.gif icon_login_hot.gif icon_mail_hot.gif icon_map_hot.gif icon_members_hot.gif icon_message_hot.gif icon_minus_hot.gif icon_movie_hot.gif icon_mp3_hot.gif icon_music_hot.gif icon_notify_hot.gif icon_pay_hot.gif icon_phone_hot.gif icon_plus_hot.gif icon_post_hot.gif icon_print_hot.gif icon_profile_hot.gif icon_register_hot.gif icon_reply_hot.gif icon_right_hot.gif icon_sad_hot.gif icon_save_hot.gif icon_search_hot.gif icon_select_hot.gif icon_smilie_hot.gif icon_star_hot.gif icon_stats_hot.gif icon_theme_hot.gif icon_trash_hot.gif icon_tv_hot.gif icon_unlock_hot.gif icon_upload_hot.gif icon_url_hot.gif icon_user_hot.gif icon_zoom_in_hot.gif icon_zoom_out_hot.gif Log Message: new set of icons made by Culpit for prosilver --- icon_zoom_out_hot.gif DELETED --- Index: icon_music.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_music.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsbXE00h and /tmp/cvsufLI55 differ --- icon_mail_hot.gif DELETED --- Index: icon_tv.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_tv.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsaK50kx and /tmp/cvsCWYzPl differ Index: icon_faq.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_faq.gif,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsqNoRoP and /tmp/cvs3v9FyE differ --- icon_save_hot.gif DELETED --- Index: icon_select.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_select.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvscQSta3 and /tmp/cvstYV3GS differ --- icon_message_hot.gif DELETED --- --- icon_ipod_hot.gif DELETED --- --- icon_dl_hot.gif DELETED --- --- icon_clock_hot.gif DELETED --- --- icon_trash_hot.gif DELETED --- Index: icon_info.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_info.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsz6rw86 and /tmp/cvsIXHCNW differ --- icon_pay_hot.gif DELETED --- Index: icon_help.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_help.gif,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsDsmain and /tmp/cvsLq9SMd differ --- icon_education_hot.gif DELETED --- --- icon_phone_hot.gif DELETED --- Index: icon_profile.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_profile.gif,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvskTXGKE and /tmp/cvss5crOv differ Index: icon_star.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_star.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsQVycSb and /tmp/cvsWUQwk4 differ --- icon_bg_hot.gif DELETED --- Index: icon_link.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_link.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs7rf98i and /tmp/cvsCGv1Pb differ Index: icon_home.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_home.gif,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvs9tFacu and /tmp/cvsO2f1on differ Index: icon_happy.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_happy.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsU7KoeB and /tmp/cvsRRnzAu differ --- icon_select_hot.gif DELETED --- Index: icon_lock.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_lock.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvseBCnaM and /tmp/cvsBxlqNF differ --- icon_happy_hot.gif DELETED --- Index: icon_trash.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_trash.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs95ZreN and /tmp/cvs1NzEYG differ Index: icon_unlock.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_unlock.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvseE49cb and /tmp/cvslrlxJ5 differ --- icon_delete_hot.gif DELETED --- --- icon_docs_hot.gif DELETED --- Index: icon_list.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_list.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsQ0pKLx and /tmp/cvsmD24ft differ --- icon_day_hot.gif DELETED --- --- icon_bg.gif DELETED --- --- icon_unlock_hot.gif DELETED --- Index: icon_zoom_in.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_zoom_in.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsBzdsgJ and /tmp/cvs9yh17E differ --- icon_movie_hot.gif DELETED --- Index: icon_reply.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_reply.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsfrgWGV and /tmp/cvs3mxxXR differ --- icon_cd_hot.gif DELETED --- Index: icon_chat.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_chat.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsixLmy2 and /tmp/cvsKSpg3Y differ Index: icon_education.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_education.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsihuNe9 and /tmp/cvsBpdw15 differ Index: icon_forum.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_forum.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsRPPkKo and /tmp/cvskwexlm differ Index: icon_stats.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_stats.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsEjfcdC and /tmp/cvsL8WbbA differ Index: icon_house.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_house.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsQJpE14 and /tmp/cvs44eRX3 differ Index: icon_url.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_url.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsJW1ASe and /tmp/cvsiY9o6d differ --- icon_cellphone_hot.gif DELETED --- Index: icon_search.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_search.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsrSCsfr and /tmp/cvsdpDjgr differ Index: icon_theme.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_theme.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsOBJZ9O and /tmp/cvsqG18WP differ Index: icon_blog.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_blog.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsGBvHW5 and /tmp/cvsJwsSh7 differ --- icon_zoom_in_hot.gif DELETED --- --- icon_minus_hot.gif DELETED --- --- icon_chat_hot.gif DELETED --- Index: icon_login.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_login.gif,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsyIVJbz and /tmp/cvszIodIB differ Index: icon_save.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_save.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs6kwZ7N and /tmp/cvsLgwP8Q differ Index: icon_forbidden.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_forbidden.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvshf4qx6 and /tmp/cvsl6rcea differ Index: icon_cd.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_cd.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvskznOUi and /tmp/cvs4z1C0m differ Index: icon_members.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_members.gif,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsod60Vu and /tmp/cvsixmgEz differ --- icon_search_hot.gif DELETED --- --- icon_home_hot.gif DELETED --- Index: icon_mp3.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_mp3.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsEsvqiB and /tmp/cvs3GhxiG differ --- icon_theme_hot.gif DELETED --- --- icon_cart_hot.gif DELETED --- --- icon_blank_hot.gif DELETED --- Index: icon_doc.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_doc.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsrEh7rI and /tmp/cvsektwGN differ --- icon_sad_hot.gif DELETED --- --- icon_login_hot.gif DELETED --- --- icon_house_hot.gif DELETED --- Index: icon_groups.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_groups.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsMpxhgX and /tmp/cvsCnmJT2 differ --- icon_doc_hot.gif DELETED --- Index: icon_ipod.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_ipod.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsrdGqF9 and /tmp/cvsW9PSHf differ Index: icon_movie.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_movie.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsgUPZgh and /tmp/cvs8R5Dyn differ Index: icon_cut.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_cut.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs8jjGJq and /tmp/cvs8QyFIx differ --- icon_members_hot.gif DELETED --- --- icon_user_hot.gif DELETED --- Index: icon_cellphone.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_cellphone.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsXulm7z and /tmp/cvsFaXckH differ --- icon_game_hot.gif DELETED --- --- icon_food_hot.gif DELETED --- Index: icon_register.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_register.gif,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsiAPDPI and /tmp/cvsACbnkQ differ --- icon_tv_hot.gif DELETED --- --- icon_upload_hot.gif DELETED --- --- icon_computer_hot.gif DELETED --- Index: icon_message.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_message.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs7kDBgV and /tmp/cvsiXmma3 differ Index: icon_sad.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_sad.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsIwh6o2 and /tmp/cvsBL18wa differ --- icon_plus_hot.gif DELETED --- Index: icon_smilie.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_smilie.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsv0wc2c and /tmp/cvsA3pEAl differ --- icon_stats_hot.gif DELETED --- --- icon_groups_hot.gif DELETED --- Index: icon_user.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_user.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsSi9wEk and /tmp/cvsiNTast differ Index: icon_minus.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_minus.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsigml7t and /tmp/cvsHvHQsD differ --- icon_cut_hot.gif DELETED --- Index: icon_pay.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_pay.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvslYvBtA and /tmp/cvsG27i6J differ --- icon_exit_hot.gif DELETED --- Index: icon_map.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_map.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsFfNnfG and /tmp/cvsRm5dZP differ Index: icon_plus.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_plus.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsf6AxRN and /tmp/cvswQVyQX differ --- icon_gallery_hot.gif DELETED --- --- icon_map_hot.gif DELETED --- Index: icon_delete.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_delete.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsSK7kVO and /tmp/cvsS69y1Y differ Index: icon_docs.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_docs.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs5hh5JT and /tmp/cvsbN29Z3 differ Index: icon_exit.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_exit.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs2i70ZZ and /tmp/cvsOY3sna differ --- icon_help_hot.gif DELETED --- --- icon_notify_hot.gif DELETED --- Index: icon_print.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_print.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsRrWoW6 and /tmp/cvsNzmVxh differ Index: icon_day.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_day.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsXfuKGa and /tmp/cvsARt3ul differ Index: icon_calendar.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_calendar.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsfZoxyg and /tmp/cvsbSSNtr differ Index: icon_flag.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_flag.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsrgnTQi and /tmp/cvsKdd7Ut differ --- icon_list_hot.gif DELETED --- --- icon_forbidden_hot.gif DELETED --- --- icon_print_hot.gif DELETED --- --- icon_blog_hot.gif DELETED --- --- icon_lock_hot.gif DELETED --- --- icon_register_hot.gif DELETED --- --- icon_faq_hot.gif DELETED --- --- icon_profile_hot.gif DELETED --- Index: icon_food.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_food.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvst9aqCo and /tmp/cvsLnGNNz differ --- icon_url_hot.gif DELETED --- --- icon_star_hot.gif DELETED --- Index: icon_dl.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_dl.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs02UvIv and /tmp/cvsvHfnSH differ Index: icon_zoom_out.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_zoom_out.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsI7heDP and /tmp/cvsJREo51 differ Index: icon_mail.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_mail.gif,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvs9NXGgU and /tmp/cvsc8DOR6 differ Index: icon_right.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_right.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsLw6ky5 and /tmp/cvsJ2qtri differ --- icon_info_hot.gif DELETED --- Index: icon_computer.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_computer.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsuOs7F6 and /tmp/cvsgOWjGj differ --- icon_right_hot.gif DELETED --- --- icon_flag_hot.gif DELETED --- --- icon_calendar_hot.gif DELETED --- --- icon_dot_hot.gif DELETED --- Index: icon_cart.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_cart.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs0Rg6tb and /tmp/cvsWLd9Do differ --- icon_blank.gif DELETED --- --- icon_link_hot.gif DELETED --- --- icon_reply_hot.gif DELETED --- Index: icon_key.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_key.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsCxl2sh and /tmp/cvsmgEqKu differ Index: icon_phone.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_phone.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsjOxCpo and /tmp/cvs7Bu6UB differ Index: icon_post.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_post.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsM5uOwu and /tmp/cvsNRutjI differ --- icon_post_hot.gif DELETED --- Index: icon_notify.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_notify.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsMjLdbC and /tmp/cvsZmDmrQ differ --- icon_music_hot.gif DELETED --- --- icon_smilie_hot.gif DELETED --- Index: icon_gallery.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_gallery.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsFykZgD and /tmp/cvsw81eER differ --- icon_mp3_hot.gif DELETED --- Index: icon_upload.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_upload.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs81cq2I and /tmp/cvsRQcQwX differ Index: icon_game.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_game.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsZdUWGN and /tmp/cvsqptjk2 differ Index: icon_left.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_left.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsBEmbLS and /tmp/cvsFxi8y7 differ --- icon_key_hot.gif DELETED --- --- icon_forum_hot.gif DELETED --- --- icon_left_hot.gif DELETED --- Index: icon_clock.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_clock.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsDLSsPW and /tmp/cvsxPC7Pb differ Index: icon_dot.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/images/menu_icons/icon_dot.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsMTw1z2 and /tmp/cvsqnaQHh differ |
|
From: Jon O. <jon...@us...> - 2008-01-25 11:37:59
|
Update of /cvsroot/mxbb/core/modules/mx_users/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv29238/modules/mx_users/admin Modified Files: admin_users.php Log Message: Updating users fix Index: admin_users.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_users/admin/admin_users.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** admin_users.php 17 Dec 2007 06:56:38 -0000 1.4 --- admin_users.php 25 Jan 2008 11:37:45 -0000 1.5 *************** *** 83,87 **** $user_id = intval($HTTP_POST_VARS['id']); ! if ($mode == 'edit' && !($this_userdata = mx_get_userdata($user_id))) { mx_message_die(GENERAL_MESSAGE, $lang['No_user_id_specified'] ); --- 83,89 ---- $user_id = intval($HTTP_POST_VARS['id']); ! $this_userdata = mx_get_userdata($user_id); ! ! if ($mode == 'edit' && !$this_userdata) { mx_message_die(GENERAL_MESSAGE, $lang['No_user_id_specified'] ); |
|
From: OryNider <ory...@us...> - 2008-01-24 18:51:25
|
Update of /cvsroot/mxbb/mx_music/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11879 Added Files: music_lists.php Log Message: upgrade --- NEW FILE: music_lists.php --- <?php /** * * @package mxBB Portal Module - mx_music * @version $Id: music_lists.php,v 1.1 2008/01/24 18:51:21 orynider Exp $ * @copyright (c) 2003 [ory...@rd..., OryNider] mxBB Development Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ // // ERROR HANDLING // //error_reporting( E_ALL ); if( !defined('IN_PORTAL') || !is_object($mx_block)) { die("Hacking attempt"); } else { define( 'MXBB_MODULE', true ); $is_block = TRUE; } // // Read block Configuration // $title = $mx_block->block_info['block_title']; $block_size = ( isset($block_size) && !empty($block_size) ? $block_size : '100%' ); $bullet_full = '<span class="genmed" style="color:#FFA34F"><b>›</b> </span>'; //global $images, $mx_images; $music_root_path = $module_root_path . 'music_box/'; // // Get general music information // include_once($music_root_path . 'music_common.'.$phpEx); // // Nav switch for mx // // --------------------- // Check $album_user_id // --------------------- if (isset ($_POST['user_id'])) { $music_user_id = intval($_POST['user_id']); } elseif (isset ($_GET['user_id'])) { $music_user_id = intval($_GET['user_id']); } else { $music_user_id = $userdata['user_id']; } /* +---------------------------------------------------------- | Build Categories Index +---------------------------------------------------------- */ $sql = "SELECT c.*, COUNT(s.song_id) AS count FROM ". MUSIC_CAT_TABLE ." AS c LEFT JOIN ". MUSIC_TABLE ." AS s ON c.cat_id = s.song_cat_id WHERE cat_id <> 0 GROUP BY cat_id ORDER BY cat_order ASC"; if( !($result = $db->sql_query($sql)) ) { mx_message_die(GENERAL_ERROR, 'Could not query categories list', '', __LINE__, __FILE__, $sql); } $catrows = array(); while( $row = $db->sql_fetchrow($result) ) { $music_user_access = music_user_access($row['cat_id'], $row, 1, 0, 0, 0, 0, 0); // VIEW if ($music_user_access['view'] == 1) { $catrows[] = $row; } } $allowed_cat = ''; // For Recent Public Songs below // // $catrows now stores all categories which this user can view. Dump them out! // for ($i = 0; $i < count($catrows); $i++) { // -------------------------------- // Build allowed category-list (for recent songs after here) // -------------------------------- $allowed_cat .= ($allowed_cat == '') ? $catrows[$i]['cat_id'] : ',' . $catrows[$i]['cat_id']; // -------------------------------- // Build moderators list // -------------------------------- $l_moderators = ''; $moderators_list = ''; $grouprows= array(); if( $catrows[$i]['cat_moderator_groups'] != '') { // We have usergroup_ID, now we need usergroup name $sql = "SELECT group_id, group_name FROM " . GROUPS_TABLE . " WHERE group_single_user <> 1 AND group_type <> ". GROUP_HIDDEN ." AND group_id IN (". $catrows[$i]['cat_moderator_groups'] .") ORDER BY group_name ASC"; if ( !$result = $db->sql_query($sql) ) { mx_message_die(GENERAL_ERROR, 'Could not obtain usergroups data', '', __LINE__, __FILE__, $sql); } while( $row = $db->sql_fetchrow($result) ) { $grouprows[] = $row; } } if( count($grouprows) > 0 ) { $l_moderators = $lang['Moderators']; for ($j = 0; $j < count($grouprows); $j++) { $group_link = '<a href="'. append_sid($phpbb_root_path. "groupcp.$phpEx?". POST_GROUPS_URL .'='. $grouprows[$j]['group_id']) .'">'. $grouprows[$j]['group_name'] .'</a>'; $moderators_list .= ($moderators_list == '') ? $group_link : ', ' . $group_link; } } // ------------------------------------------ // Get Last song of this Category // ------------------------------------------ if ($catrows[$i]['count'] == 0) { // // Oh, this category is empty // $last_song_info = $lang['No_Songs']; $u_last_song = ''; $last_song_title = ''; } else { // ---------------------------- // Check Song Approval // ---------------------------- if(($catrows[$i]['cat_approval'] == MUSIC_ADMIN) or ($catrows[$i]['cat_approval'] == MUSIC_MOD)) { $song_approval_sql = 'AND s.song_approval = 1'; // song Approval ON } else { $song_approval_sql = ''; // song Approval OFF } // ---------------------------- // OK, we may do a query now... // ---------------------------- $sql = "SELECT s.song_id, s.song_title, s.song_singer, s.song_user_id, s.song_username, s.song_time, s.song_cat_id, u.user_id, u.username FROM ". MUSIC_TABLE ." AS s LEFT JOIN ". USERS_TABLE ." AS u ON s.song_user_id = u.user_id WHERE s.song_cat_id = '". $catrows[$i]['cat_id'] ."' $song_approval_sql ORDER BY s.song_time DESC LIMIT 1"; if ( !$result = $db->sql_query($sql) ) { mx_message_die(GENERAL_ERROR, 'Could not get last song information', '', __LINE__, __FILE__, $sql); } $lastrow = $db->sql_fetchrow($result); // ---------------------------- // Write the Date // ---------------------------- $last_song_info = create_date($board_config['default_dateformat'], $lastrow['song_time'], $board_config['board_timezone']); $last_song_info .= '<br />'; // ---------------------------- // Write username of last poster // ---------------------------- if( ($lastrow['user_id'] == MUSIC_GUEST) or ($lastrow['username'] == '') ) { $last_song_info .= ($lastrow['song_username'] == '') ? $lang['Guest'] : $lastrow['song_username']; } else { $last_song_info .= $lang['Poster'] .': <a href="'. append_sid($phpbb_root_path . "profile.$phpEx?mode=viewprofile&". POST_USERS_URL .'='. $lastrow['user_id']) .'">'. $lastrow['username'] .'</a>'; } // ---------------------------- // Write the last song's title. // Truncate it if it's too long // ---------------------------- if( !isset($music_config['last_song_title_length']) ) { $music_config['last_song_title_length'] = 25; } $lastrow['song_title'] = $lastrow['song_title']; if (strlen($lastrow['song_title']) > $music_config['last_song_title_length']) { $lastrow['song_title'] = substr($lastrow['song_title'], 0, $music_config['last_song_title_length']) . '...'; } $last_song_info .= '<br />'. $lang['Song_Title'] .': <a href="'; $last_song_info .= append_sid(this_mo_mxurl("music_mode=music_page&song_id=". $lastrow['song_id'])) .'">' ; $last_song_info .= $lastrow['song_title'] .'</a>'; } // END of Last Song // ------------------------------------------ // Parse to template the info of the current Category // ------------------------------------------ $template->assign_block_vars('catrow_lists', array( 'U_VIEW_CAT' => append_sid(this_mo_mxurl("music_mode=music_cat&cat_id=". $catrows[$i]['cat_id'])), 'CAT_TITLE' => $catrows[$i]['cat_title'], 'CAT_DESC' => $catrows[$i]['cat_desc'], 'CAT_VIEWS' => $catrows[$i]['cat_views'], 'L_MODERATORS' => $l_moderators, 'MODERATORS' => $moderators_list, 'SONGS' => $catrows[$i]['count'], 'LAST_SONG_INFO' => $last_song_info) ); } // END of Categories Index /* +---------------------------------------------------------- | Top Song +---------------------------------------------------------- */ if( isset($HTTP_GET_VARS['sort_method']) ) { switch ($HTTP_GET_VARS['sort_method']) { case 'song_time': $sort_method = 'song_time'; break; case 'song_view_count': $sort_method = 'song_view_count'; break; case 'rating': $sort_method = 'rating'; break; case 'comments': $sort_method = 'comments'; break; case 'new_comment': $sort_method = 'new_comment'; break; default: $sort_method = $music_config['sort_method']; } } else if( isset($HTTP_POST_VARS['sort_method']) ) { switch ($HTTP_POST_VARS['sort_method']) { case 'song_time': $sort_method = 'song_time'; break; case 'song_view_count': $sort_method = 'song_view_count'; break; case 'rating': $sort_method = 'rating'; break; case 'comments': $sort_method = 'comments'; break; case 'new_comment': $sort_method = 'new_comment'; break; default: $sort_method = $music_config['sort_method']; } } else { $sort_method = $music_config['sort_method']; } // Song limit if( isset($HTTP_GET_VARS['song_limit']) ) { switch ($HTTP_GET_VARS['song_limit']) { case '5': $song_limit = '5'; break; case '10': $song_limit = '10'; break; case '15': $song_limit = '15'; break; case '20': $song_limit = '20'; break; default: $song_limit = $music_config['top']; } } else if( isset($HTTP_POST_VARS['song_limit']) ) { switch ($HTTP_POST_VARS['song_limit']) { case '5': $song_limit = '5'; break; case '10': $song_limit = '10'; break; case '15': $song_limit = '15'; break; case '20': $song_limit = '20'; break; default: $song_limit = $music_config['top']; } } else { $song_limit = $music_config['top']; } // // We may do query now // if ($allowed_cat != '') { $sql = "SELECT s.song_id, s.song_title, s.song_desc, s.song_singer, s.song_user_id, s.song_user_ip, s.song_username, s.song_time, s.song_cat_id, s.song_view_count, u.user_id, u.username, r.rate_song_id, AVG(r.rate_point) AS rating, COUNT(DISTINCT c.comment_id) AS comments, MAX(c.comment_id) as new_comment FROM ". MUSIC_TABLE ." AS s LEFT JOIN ". USERS_TABLE ." AS u ON s.song_user_id = u.user_id LEFT JOIN ". MUSIC_CAT_TABLE ." AS ct ON s.song_cat_id = ct.cat_id LEFT JOIN ". MUSIC_RATE_TABLE ." AS r ON s.song_id = r.rate_song_id LEFT JOIN ". MUSIC_COMMENT_TABLE ." AS c ON s.song_id = c.comment_song_id WHERE s.song_cat_id IN ($allowed_cat) AND ( s.song_approval = 1 OR ct.cat_approval = 0 ) GROUP BY s.song_id ORDER BY $sort_method DESC LIMIT $song_limit"; if( !($result = $db->sql_query($sql)) ) { mx_message_die(GENERAL_ERROR, 'Could not query top songs information', '', __LINE__, __FILE__, $sql); } $topsongrow = array(); while( $row = $db->sql_fetchrow($result) ) { $topsongrow[] = $row; } $template->assign_block_vars('music_recent', array()); if (count($topsongrow) > 0) { for ($i = 0; $i < count($topsongrow); $i += $music_config['rows_per_page']) { for ($j = $i; $j < ($i + $music_config['rows_per_page']); $j++) { if( $j >= count($topsongrow) ) { break; } if(!$topsongrow[$j]['rating']) { $topsongrow[$j]['rating'] = $lang['Not_rated']; } else { $topsongrow[$j]['rating'] = round($topsongrow[$j]['rating'], 2); } if( ($topsongrow[$j]['user_id'] == MUSIC_GUEST) or ($topsongrow[$j]['username'] == '') ) { $top_poster = ($topsongrow[$j]['song_username'] == '') ? $lang['Guest'] : $topsongrow[$j]['song_username']; } else { $top_poster = '<a href="'. append_sid($phpbb_root_path . "profile.$phpEx?mode=viewprofile&". POST_USERS_URL .'='. $topsongrow[$j]['user_id']) .'">'. $topsongrow[$j]['username'] .'</a>'; } $template->assign_block_vars('music_recent_lists', array( 'BULLET' => $bullet_full, 'TITLE' => '<a href="'. append_sid(this_mo_mxurl("music_mode=music_page&song_id=". $topsongrow[$j]['song_id'])) . '">' . $topsongrow[$j]['song_title'] . '</a>', 'SINGER' => $topsongrow[$j]['song_singer'], 'POSTER' => $top_poster, 'L_SONG_LIMIT' => $lang['Song_Limit'], 'L_NO_SONGS' => $lang['No_Songs'], 'L_SONG_TITLE' => $lang['Song_Title'], 'L_SINGER' => $lang['Singer'], 'L_POSTER' => $lang['Poster'], 'L_POSTED' => $lang['Posted'], 'L_RATING' => $lang['Rating'], 'L_COMMENTS' => $lang['Comments'], 'TIME' => create_date($board_config['default_dateformat'], $topsongrow[$j]['song_time'], $board_config['board_timezone']), 'VIEW' => $topsongrow[$j]['song_view_count'], 'RATING' => ($music_config['rate'] == 1) ? ( '<a href="'. append_sid(this_mo_mxurl("music_mode=music_rate&song_id=". $topsongrow[$j]['song_id'])) . '">' . $topsongrow[$j]['rating'] . '</a>' ) : '', 'COMMENTS' => ($music_config['comment'] == 1) ? ( '<a href="'. append_sid(this_mo_mxurl("music_mode=music_comment&song_id=". $topsongrow[$j]['song_id'])) . '">' . $topsongrow[$j]['comments'] . '</a>' ) : '', 'IP' => ($userdata['user_level'] == ADMIN) ? $lang['IP_Address'] . ': <a href="http://www.nic.com/cgi-bin/whois.cgi?query=' . decode_ip($topsongrow[$j]['song_user_ip']) . '" target="_blank">' . decode_ip($topsongrow[$j]['song_user_ip']) .'</a><br />' : '', 'U_SONG' => append_sid(this_mo_mxurl("music_mode=music_page&song_id=". $topsongrow[$j]['song_id'])), 'DESC' => $topsongrow[$j]['song_desc'], 'S_ROW_COUNT' => $j) ); } } } else { // // No songs Found // $template->assign_block_vars('music_lists_no_songs', array()); } } else { // // No Cats Found // $template->assign_block_vars('music_lists_no_songs', array()); } // ------------------------------------ // additional sorting options // ------------------------------------ $sort_rating_option = ''; $sort_comments_option = ''; if( $music_config['rate'] == 1 ) { $sort_rating_option = '<option value="rating" '; $sort_rating_option .= ($sort_method == 'rating') ? 'selected="selected"' : ''; $sort_rating_option .= '>' . $lang['Rating'] .'</option>'; } if( $music_config['comment'] == 1 ) { $sort_comments_option = '<option value="comments" '; $sort_comments_option .= ($sort_method == 'comments') ? 'selected="selected"' : ''; $sort_comments_option .= '>' . $lang['Comments'] .'</option>'; $sort_new_comment_option = '<option value="new_comment" '; $sort_new_comment_option .= ($sort_method == 'new_comment') ? 'selected="selected"' : ''; $sort_new_comment_option .= '>' . $lang['New_Comment'] .'</option>'; } /* +---------------------------------------------------------- | Start output the page +---------------------------------------------------------- */ //$page_title = $lang['Music']; if ( !is_object($mx_block)) { include($mx_root_path . 'includes/page_header.'.$phpEx); } $template->set_filenames(array( 'music_lists_body' => 'music_lists.tpl') ); $template->assign_vars(array( 'BLOCK_SIZE' => ( !empty($block_size) ? $block_size : '100%' ), 'L_TOP_SONGS' => $lang['Top_Songs'], 'L_RECENT_SONGS' => $lang['Recent_Songs'], 'L_NO_SONGS' => $lang['No_Songs']) ); // // Generate the page // $template->pparse('music_lists_body'); if ( !is_object($mx_block)) { include($mx_root_path . 'includes/page_tail.'.$phpEx); } // +------------------------------------------------------+ // | Powered by Music Online 2.0 (c) 2003 Cf Manager | // +------------------------------------------------------+ ?> |
|
From: OryNider <ory...@us...> - 2008-01-24 18:51:12
|
Update of /cvsroot/mxbb/mx_glance/templates/subsilver2 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11819/subsilver2 Added Files: glance_body.html glance_body_big.html Log Message: upgrade --- NEW FILE: glance_body.html --- <table width="{BLOCK_SIZE}" cellpadding="4" cellspacing="1" border="0" class="forumline" style="border-top:none;"> <!-- BEGIN no_glance_news_and_recent --> <tr> <td class="row1" align="left" colspan="2">{no_glance_news_and_recent.L_NO_ITEMS}</td> </tr> <!-- END no_glance_news_and_recent --> <!-- BEGIN switch_glance_news --> <tr> <td class="catLeft" height="28"><span class="cattitle">{NEWS_HEADING}</span></td> </tr> <tr> <td class="row1" valign="top"><span class="genmed"> <table width="100%" cellspacing="0" cellpadding="0" border="0"> <!-- END switch_glance_news --> <!-- BEGIN latest_news --> <tr> <td class="row2" align="center"> <span class="cattitle"> {latest_news.NEWEST_POST_IMG} </span> </td> <td class="row1" align="left" valign="top" width="100%"> <span class="genmed" style="font-weight: bold;"><a title="{L_LAST_REPLY}: {latest_news.LAST_POST_TIME}" href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span> <br /> <dd style="float:right"> <span class="gensmall" nowrap="nowrap">{latest_news.TOPIC_TIME}</span> </dd> </td> </tr> <!-- END latest_news --> <!-- BEGIN switch_glance_news --> <tr valign="middle"> <td align="right" valign="top" nowrap="nowrap" colspan="2" height="28" class="cat"><span class="gensmall">{switch_glance_news.PREV_URL} {switch_glance_news.NEXT_URL} </span></td> </tr> </table> </span></td> </tr> <!-- END switch_glance_news --> <!-- BEGIN switch_glance_recent --> <tr> <td class="catLeft" height="28"><span class="cattitle">{RECENT_HEADING}</span></td> </tr> <tr> <td class="row1" valign="top" height="100%"><span class="genmed"> <table width="100%" cellspacing="0" cellpadding="0" border="0"> <!-- END switch_glance_recent --> <!-- BEGIN latest_topics --> <tr> <td class="row2" align="center"> <span class="cattitle"> {latest_topics.NEWEST_POST_IMG} </span> </td> <td class="row1" align="left"> <span class="genmed"> <span class="genmed" style="font-weight: bold;"><a href="{latest_topics.U_VIEW_TOPIC}" title="{L_POSTED}: {latest_topics.TOPIC_TIME}" class="genmed">{latest_topics.TOPIC_TITLE}</a></span> </span><br /> <span class="gensmall"> <a href="{latest_topics.U_VIEW_FORUM}" title="{latest_topics.FORUM_TITLE}" class="gensmall">{latest_topics.FORUM_TITLE}</a> </span> <div align="right"> <span class="gensmall" nowrap="nowrap"> {latest_topics.LAST_POST_TIME} </span><br /> <span class="gensmall" nowrap="nowrap"> {latest_topics.TOPIC_AUTHOR_FULL} {latest_topics.LAST_POSTER_FULL} </span> </div> <div valign="top" align="right"> <span class="gensmall" nowrap="nowrap"> ({latest_topics.TOPIC_REPLIES}) {L_COMMENTS} </span> </div> </td> </tr> <!-- END latest_topics --> <!-- BEGIN switch_glance_recent --> <tr valign="middle"> <td align="right" valign="top" nowrap="nowrap" colspan="2" height="28" class="cat"><span class="gensmall">{switch_glance_recent.PREV_URL} {switch_glance_recent.NEXT_URL} </span></td> </tr> </table> </span></td> </tr> <!-- END switch_glance_recent --> </table> --- NEW FILE: glance_body_big.html --- <table width="{BLOCK_SIZE}" cellpadding="4" cellspacing="1" border="0" class="forumline" style="border-top:none;"> <!-- BEGIN switch_glance_news --> <tr> <th class="thCornerL" height="28" align="center" width="30"> <!-- <span class="newsbutton" onClick="rollup_contract(this, 'phpbbGlance_news');">--> <!-- BEGIN switch_news_on --> - <!-- END switch_news_on --> <!-- BEGIN switch_news_off --> + <!-- END switch_news_off --> </span> </th> <th class="thTop" height="28" align="left"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr><th align="left"> {NEWS_HEADING} </th> <th align="right"> <span style="font-family: Flash; color: #FFFFFF;">{switch_glance_news.PREV_URL} {switch_glance_news.NEXT_URL} </span> </th> </tr> </table> </th> <th class="thTop" width="100" align="center" nowrap="nowrap"> {L_FORUM} </th> <th class="thTop" width="100" align="center" nowrap="nowrap"> {L_AUTHOR} </th> <th class="thTop" width="50" align="center" nowrap="nowrap"> {L_REPLIES} </th> <th class="thCornerR" align="center" nowrap="nowrap"> {L_LASTPOST} </th> </tr> <!-- BEGIN switch_news_on --> <tbody id="phpbbGlance_news" style="display: ;"> <!-- END switch_news_on --> <!-- BEGIN switch_news_off --> <tbody id="phpbbGlance_news" style="display: none;"> <!-- END switch_news_off --> <!-- END switch_glance_news --> <!-- BEGIN latest_news --> <tr> <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_news.TOPIC_TIME}" title="{latest_news.TOPIC_TIME}" href="{latest_news.U_VIEW_TOPIC}">{latest_news.NEWEST_POST_IMG}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_FORUM}" class="genmed">{latest_news.FORUM_TITLE}</a></span></td> <td valign="middle" class="row3" nowrap="nowrap" align="center"><span class="genmed">{latest_news.TOPIC_AUTHOR_FULL}</span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span class="genmed">{latest_news.TOPIC_REPLIES}</span></td> <td valign="middle" class="row3" nowrap="nowrap" align="center"><span class="genmed">{latest_news.LAST_POST_TIME}<br />{latest_news.LAST_POSTER_FULL}</span></td> </tr> <!-- END latest_news --> </tbody> <tr> <td class="spaceRow" colspan="6" height="1"><img src="{U_PHPBB_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/spacer.gif" alt="" width="1" height="1" /></td> </tr> <!-- BEGIN switch_glance_recent --> <tr> <th class="thCornerL" height="28" align="center" width="30"> <!-- <span class="newsbutton" onClick="rollup_contract(this, 'phpbbGlance_recent');">--> <!-- BEGIN switch_recent_on --> - <!-- END switch_recent_on --> <!-- BEGIN switch_recent_off --> + <!-- END switch_recent_off --> </span> </th> <th class="thTop" height="28" align="left"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr><th align="left"> {RECENT_HEADING} </th> <th align="right"> <span style="font-family: Flash; color: #FFFFFF;">{switch_glance_recent.PREV_URL} {switch_glance_recent.NEXT_URL} </span> </th> </tr> </table> </th> <th class="thTop" width="100" align="center" nowrap="nowrap"> {L_FORUM} </th> <th class="thTop" width="100" align="center" nowrap="nowrap"> {L_AUTHOR} </th> <th class="thTop" width="50" align="center" nowrap="nowrap"> {L_REPLIES} </th> <th class="thCornerR" align="center" nowrap="nowrap"> {L_LASTPOST} </th> </tr> <!-- BEGIN switch_recent_on --> <tbody id="phpbbGlance_recent" style="display: ;"> <!-- END switch_recent_on --> <!-- BEGIN switch_recent_off --> <tbody id="phpbbGlance_recent" style="display: none;"> <!-- END switch_recent_off --> <!-- END switch_glance_recent --> <!-- BEGIN latest_topics --> <tr> <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_topics.TOPIC_TIME}" title="{latest_topics.TOPIC_TIME}" href="{latest_topics.U_VIEW_TOPIC}">{latest_topics.NEWEST_POST_IMG}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_TOPIC}" class="genmed">{latest_topics.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_FORUM}" class="genmed">{latest_topics.FORUM_TITLE}</a></span></td> <td valign="middle" class="row3" nowrap="nowrap" align="center"><span class="genmed">{latest_topics.TOPIC_AUTHOR_FULL}</span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span class="genmed">{latest_topics.TOPIC_REPLIES}</span></td> <td valign="middle" class="row3" nowrap="nowrap" align="center"><span class="genmed">{latest_topics.LAST_POST_TIME}<br />{latest_topics.LAST_POSTER_FULL}</span></td> </tr> <!-- END latest_topics --> </tbody> </table> |
|
From: OryNider <ory...@us...> - 2008-01-24 18:51:12
|
Update of /cvsroot/mxbb/mx_glance/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11819/subSilver Modified Files: glance_body.tpl glance_body_big.tpl Log Message: upgrade Index: glance_body.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_glance/templates/subSilver/glance_body.tpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** glance_body.tpl 11 Aug 2007 04:43:44 -0000 1.4 --- glance_body.tpl 24 Jan 2008 18:51:08 -0000 1.5 *************** *** 17,21 **** <td class="row2" align="center"> <span class="cattitle"> ! {latest_news.TOPIC_FOLDER_IMG_SRC} </span> </td> --- 17,21 ---- <td class="row2" align="center"> <span class="cattitle"> ! {latest_news.NEWEST_POST_IMG} </span> </td> *************** *** 23,28 **** <span class="genmed" style="font-weight: bold;"><a title="{L_LAST_REPLY}: {latest_news.LAST_POST_TIME}" href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span> <br /> ! <span class="gensmall" nowrap="nowrap">{latest_news.TOPIC_TIME} ! </span> </td> </tr> --- 23,29 ---- <span class="genmed" style="font-weight: bold;"><a title="{L_LAST_REPLY}: {latest_news.LAST_POST_TIME}" href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span> <br /> ! <dd style="float:right"> ! <span class="gensmall" nowrap="nowrap">{latest_news.TOPIC_TIME}</span> ! </dd> </td> </tr> *************** *** 48,52 **** <td class="row2" align="center"> <span class="cattitle"> ! {latest_topics.TOPIC_FOLDER_IMG_SRC} </span> </td> --- 49,53 ---- <td class="row2" align="center"> <span class="cattitle"> ! {latest_topics.NEWEST_POST_IMG} </span> </td> Index: glance_body_big.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_glance/templates/subSilver/glance_body_big.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** glance_body_big.tpl 5 Aug 2007 19:42:57 -0000 1.2 --- glance_body_big.tpl 24 Jan 2008 18:51:08 -0000 1.3 *************** *** 39,43 **** <!-- BEGIN latest_news --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_news.TOPIC_TIME}" title="{latest_news.TOPIC_TIME}" href="{latest_news.U_VIEW_TOPIC}">{latest_news.TOPIC_FOLDER_IMG_SRC}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_FORUM}" class="genmed">{latest_news.FORUM_TITLE}</a></span></td> --- 39,43 ---- <!-- BEGIN latest_news --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_news.TOPIC_TIME}" title="{latest_news.TOPIC_TIME}" href="{latest_news.U_VIEW_TOPIC}">{latest_news.NEWEST_POST_IMG}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_FORUM}" class="genmed">{latest_news.FORUM_TITLE}</a></span></td> *************** *** 93,97 **** <!-- BEGIN latest_topics --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_topics.TOPIC_TIME}" title="{latest_topics.TOPIC_TIME}" href="{latest_topics.U_VIEW_TOPIC}">{latest_topics.TOPIC_FOLDER_IMG_SRC}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_TOPIC}" class="genmed">{latest_topics.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_FORUM}" class="genmed">{latest_topics.FORUM_TITLE}</a></span></td> --- 93,97 ---- <!-- BEGIN latest_topics --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_topics.TOPIC_TIME}" title="{latest_topics.TOPIC_TIME}" href="{latest_topics.U_VIEW_TOPIC}">{latest_topics.NEWEST_POST_IMG}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_TOPIC}" class="genmed">{latest_topics.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_FORUM}" class="genmed">{latest_topics.FORUM_TITLE}</a></span></td> |
|
From: OryNider <ory...@us...> - 2008-01-24 18:51:12
|
Update of /cvsroot/mxbb/mx_glance/templates/prosilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11819/prosilver Added Files: glance_body.html glance_body_big.html Log Message: upgrade --- NEW FILE: glance_body.html --- <div class="clear"></div> <div class="forabg block" style="vertical-align:top; width:{BLOCK_SIZE};"> <div class="inner"> <!-- BEGIN no_glance_news_and_recent --> <dl> <dt class="row1" style="text-align:left;">{no_glance_news_and_recent.L_NO_ITEMS}</dt> </dl> <!-- END no_glance_news_and_recent --> <!-- BEGIN switch_glance_news --> <div class="blockbody bg2" style="display:block;"> <dl> <dt class="catLeft" style="height:28;"><span class="cattitle">{NEWS_HEADING}</span></dt> </dl> <dl> <dt class="row1" style="vertical-align:top;"><span class="genmed"> <div> <!-- END switch_glance_news --> <!-- BEGIN latest_news --> <li class="row<!-- IF latest_news.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- IF latest_news.S_POST_ANNOUNCE --> announce<!-- ENDIF --><!-- IF latest_news.S_POST_STICKY --> sticky<!-- ENDIF --><!-- IF latest_news.S_TOPIC_REPORTED --> reported<!-- ENDIF -->"> <dl class="icon"> <a href="{latest_news.U_VIEW_TOPIC}"><!-- IF latest_news.TOPIC_FOLDER_IMG_SRC -->{latest_news.NEWEST_POST_IMG}<!-- ENDIF --></a> <a href="{latest_news.U_VIEW_TOPIC}" class="topictitle">{latest_news.TOPIC_TITLE}</a> </dl> <dl style="text-align:right"> <span class="gensmall" nowrap="nowrap">{latest_news.TOPIC_TIME}</span> </dl> </li> <!-- END latest_news --> <!-- BEGIN switch_glance_news --> <dl style="vertical-align:middle;"> <dt style="text-align:right" class="cat"><span class="gensmall">{switch_glance_news.PREV_URL} {switch_glance_news.NEXT_URL} </span></dt> </dl> </div> </span></dt> </dl> </div> <!-- END switch_glance_news --> <!-- BEGIN switch_glance_recent --> <div class="blockbody bg2" style="display:block;"> <dl> <dt class="catLeft" style="height:28;"><span class="cattitle">{RECENT_HEADING}</span></dt> </dl> <dl> <dt><span class="genmed"> <div> <!-- END switch_glance_recent --> <!-- BEGIN latest_topics --> <li class="row<!-- IF latest_topics.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- IF latest_topics.S_POST_ANNOUNCE --> announce<!-- ENDIF --><!-- IF latest_topics.S_POST_STICKY --> sticky<!-- ENDIF --><!-- IF latest_topics.S_TOPIC_REPORTED --> reported<!-- ENDIF -->"> <dl class="icon"> <div style="float:left"> <a href="{latest_topics.U_VIEW_TOPIC}"><!-- IF latest_topics.TOPIC_FOLDER_IMG_SRC -->{latest_topics.NEWEST_POST_IMG}<!-- ENDIF --></a> <a href="{latest_topics.U_VIEW_TOPIC}" class="topictitle">{latest_topics.TOPIC_TITLE}</a> <br /> <span class="gensmall"><a href="{latest_topics.U_VIEW_FORUM}"title="{latest_topics.FORUM_TITLE}" class="gensmall">{latest_topics.FORUM_TITLE}</a></span> </div> </dl> <dl style="text-align:right"> <span class="lastpost" nowrap="nowrap">{latest_topics.LAST_POST_TIME} <br />{latest_topics.TOPIC_AUTHOR_FULL} {latest_topics.LAST_POSTER_FULL}</span> <span class="posts" nowrap="nowrap">({latest_topics.TOPIC_REPLIES}) {L_COMMENTS}</span> </dl> </li> <!-- END latest_topics --> <!-- BEGIN switch_glance_recent --> <dl valign="middle"> <dt style="text-align:right" class="cat"><span class="gensmall">{switch_glance_recent.PREV_URL} {switch_glance_recent.NEXT_URL} </span></dt> </dl> </div> </span></dt> </dl> </div> <!-- END switch_glance_recent --> </div> </div> <span class="corners-bottom"><span></span></span> <br clear="all" /> --- NEW FILE: glance_body_big.html --- <div class="clear"></div> <div class="forabg block" style="vertical-align:top; width:{BLOCK_SIZE};"> <div class="inner"> <!-- BEGIN no_glance_news_and_recent --> <dl> <dt class="row1" style="text-align:left;">{no_glance_news_and_recent.L_NO_ITEMS}</dt> </dl> <!-- END no_glance_news_and_recent --> <!-- BEGIN switch_glance_news --> <div class="blockbody bg2" style="display:block;"> <ul class="topiclist topics"> <li class="header"> <dl class="icon"> <dt>{NEWS_HEADING} {L_TOPICS}</dt> <dd class="posts">{L_REPLIES}</dd> <dd class="views">{L_VIEWS}</dd> <dd class="lastpost"> <table width="100%" valign="middle" cellpadding="0" cellspacing="0" border="0"> <tr> <td valign="middle" class="lastpost"><span nowrap="nowrap"> <span style="color:#FFFFFF;">{L_LAST_POST}</span> </span></td> <!-- IF latest_news.SWITCH_RECENT_NEWS eq 1 --> <td valign="middle" align="right"> <span style="font-family: Flash; color: #FFFFFF;"> {latest_news.PREV_URL} {latest_news.NEXT_URL} </span></td> <!-- ENDIF --> </tr> </table> </dd> </dl> </li> </ul> <ul class="topiclist topics"> <!-- END switch_glance_news --> <!-- BEGIN latest_news --> <li class="row<!-- IF latest_news.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- IF latest_news.S_POST_ANNOUNCE --> announce<!-- ENDIF --><!-- IF latest_news.S_POST_STICKY --> sticky<!-- ENDIF --><!-- IF latest_news.S_TOPIC_REPORTED --> reported<!-- ENDIF -->"> <dl class="icon" style="background-image: url({latest_news.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;"> <dt style="background-repeat: no-repeat;" title=""> <a href="{latest_news.U_VIEW_TOPIC}"><!-- IF not latest_news.TOPIC_FOLDER_IMG_SRC -->{latest_news.NEWEST_POST_IMG}<!-- ENDIF --></a> <a href="{latest_news.U_VIEW_TOPIC}" class="topictitle">{latest_news.TOPIC_TITLE}</a></br /> {L_POST_BY_AUTHOR} {latest_news.TOPIC_AUTHOR_FULL} {L_POSTED_ON_DATE} {latest_news.TOPIC_TIME} </br /> <!-- IF latest_news.PAGINATION --><strong class="pagination"><span>{latest_news.PAGINATION}</span></strong><!-- ENDIF --> <!-- IF not latest_news.S_TOPIC_GLOBAL -->{L_IN} <a href="{latest_news.U_VIEW_FORUM}">{latest_news.FORUM_TITLE}</a><!-- ELSE --> ({L_GLOBAL})<!-- ENDIF --> </dt> <dd class="posts">{latest_news.TOPIC_REPLIES} <dfn>{L_REPLIES}</dfn></dd> <dd class="views">{latest_news.TOPIC_VIEWS} <dfn>{L_VIEWS}</dfn></dd> <dd class="lastpost"><span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} {latest_news.LAST_POSTER_FULL} <a href="{latest_news.U_LAST_POST}">{LAST_POST_IMG}</a> <br />{L_POSTED_ON_DATE} {latest_news.LAST_POST_TIME}</span> </dd> </dl> </li> <!-- END latest_news --> <!-- BEGIN switch_glance_news --> <dl style="vertical-align:middle;"> <dt style="text-align:right" class="cat"><span class="gensmall">{switch_glance_news.PREV_URL} {switch_glance_news.NEXT_URL} </span></dt> </dl> </div> </ul> <!-- END switch_glance_news --> <!-- BEGIN switch_glance_recent --> <div class="blockbody bg2" style="display:block;"> <ul class="topiclist topics"> <li class="header"> <dl class="icon"> <dt>{RECENT_HEADING} {L_TOPICS}</dt> <dd class="posts">{L_REPLIES}</dd> <dd class="views">{L_VIEWS}</dd> <dd class="lastpost"> <table width="100%" valign="middle" cellpadding="0" cellspacing="0" border="0"> <tr> <td valign="middle" class="lastpost"><span nowrap="nowrap"> <span style="color:#FFFFFF;">{L_LAST_POST}</span> </span></td> <!-- IF latest_topics.SWITCH_RECENT_POSTS eq 1 --> <td valign="middle" align="right"> <span style="font-family: Flash; color: #FFFFFF;"> {latest_topics.PREV_URL} {latest_topics.NEXT_URL} </span></td> <!-- ENDIF --> </tr> </table> </dd> </dl> </li> </ul> <ul class="topiclist topics"> <!-- END switch_glance_recent --> <!-- BEGIN latest_topics --> <li class="row<!-- IF latest_topics.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- IF latest_topics.S_POST_ANNOUNCE --> announce<!-- ENDIF --><!-- IF latest_topics.S_POST_STICKY --> sticky<!-- ENDIF --><!-- IF latest_topics.S_TOPIC_REPORTED --> reported<!-- ENDIF -->"> <dl class="icon" style="background-image: url({latest_topics.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;"> <dt style="background-repeat: no-repeat; title=""> <a href="{latest_topics.U_VIEW_TOPIC}"><!-- IF not latest_topics.TOPIC_FOLDER_IMG_SRC -->{latest_topics.NEWEST_POST_IMG}<!-- ENDIF --></a> <a href="{latest_topics.U_VIEW_TOPIC}" class="topictitle">{latest_topics.TOPIC_TITLE}</a><br /> {L_POST_BY_AUTHOR} {latest_topics.TOPIC_AUTHOR_FULL} {L_POSTED_ON_DATE} {latest_topics.TOPIC_TIME} </br /> <!-- IF latest_topics.PAGINATION --><strong class="pagination"><span>{latest_topics.PAGINATION}</span></strong><!-- ENDIF --> <!-- IF not latest_topics.S_TOPIC_GLOBAL -->{L_IN} <a href="{latest_topics.U_VIEW_FORUM}">{latest_topics.FORUM_TITLE}</a><!-- ELSE --> ({L_GLOBAL})<!-- ENDIF --> </dt> <dd class="posts">{latest_topics.TOPIC_REPLIES} <dfn>{L_REPLIES}</dfn></dd> <dd class="views">{latest_topics.TOPIC_VIEWS} <dfn>{L_VIEWS}</dfn></dd> <dd class="lastpost"><span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} {latest_topics.LAST_POSTER_FULL} <a href="{latest_topics.U_LAST_POST}">{LAST_POST_IMG}</a> <br />{L_POSTED_ON_DATE} {latest_topics.LAST_POST_TIME}</span> </dd> </dl> </li> <!-- END latest_topics --> <!-- BEGIN switch_glance_recent --> <dl valign="middle"> <dt style="text-align:right" class="cat"><span class="gensmall">{switch_glance_recent.PREV_URL} {switch_glance_recent.NEXT_URL} </span></dt> </dl> </div> </ul> <!-- END switch_glance_recent --> </div> </div> <span class="corners-bottom"><span></span></span> <br clear="all" /> |
|
From: OryNider <ory...@us...> - 2008-01-24 18:51:11
|
Update of /cvsroot/mxbb/mx_glance/templates/_core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11819/_core Modified Files: glance_body.tpl glance_body_big.tpl Log Message: upgrade Index: glance_body.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_glance/templates/_core/glance_body.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** glance_body.tpl 2 Oct 2007 22:36:51 -0000 1.1 --- glance_body.tpl 24 Jan 2008 18:51:07 -0000 1.2 *************** *** 17,21 **** <td class="row2" align="center"> <span class="cattitle"> ! {latest_news.TOPIC_FOLDER_IMG_SRC} </span> </td> --- 17,21 ---- <td class="row2" align="center"> <span class="cattitle"> ! {latest_news.NEWEST_POST_IMG} </span> </td> *************** *** 23,28 **** <span class="genmed" style="font-weight: bold;"><a title="{L_LAST_REPLY}: {latest_news.LAST_POST_TIME}" href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span> <br /> ! <span class="gensmall" nowrap="nowrap">{latest_news.TOPIC_TIME} ! </span> </td> </tr> --- 23,29 ---- <span class="genmed" style="font-weight: bold;"><a title="{L_LAST_REPLY}: {latest_news.LAST_POST_TIME}" href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span> <br /> ! <dd style="float:right"> ! <span class="gensmall" nowrap="nowrap">{latest_news.TOPIC_TIME}</span> ! </dd> </td> </tr> *************** *** 48,52 **** <td class="row2" align="center"> <span class="cattitle"> ! {latest_topics.TOPIC_FOLDER_IMG_SRC} </span> </td> --- 49,53 ---- <td class="row2" align="center"> <span class="cattitle"> ! {latest_topics.NEWEST_POST_IMG} </span> </td> Index: glance_body_big.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_glance/templates/_core/glance_body_big.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** glance_body_big.tpl 2 Oct 2007 22:36:52 -0000 1.1 --- glance_body_big.tpl 24 Jan 2008 18:51:08 -0000 1.2 *************** *** 39,43 **** <!-- BEGIN latest_news --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_news.TOPIC_TIME}" title="{latest_news.TOPIC_TIME}" href="{latest_news.U_VIEW_TOPIC}">{latest_news.TOPIC_FOLDER_IMG_SRC}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_FORUM}" class="genmed">{latest_news.FORUM_TITLE}</a></span></td> --- 39,43 ---- <!-- BEGIN latest_news --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_news.TOPIC_TIME}" title="{latest_news.TOPIC_TIME}" href="{latest_news.U_VIEW_TOPIC}">{latest_news.NEWEST_POST_IMG}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_FORUM}" class="genmed">{latest_news.FORUM_TITLE}</a></span></td> *************** *** 93,97 **** <!-- BEGIN latest_topics --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_topics.TOPIC_TIME}" title="{latest_topics.TOPIC_TIME}" href="{latest_topics.U_VIEW_TOPIC}">{latest_topics.TOPIC_FOLDER_IMG_SRC}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_TOPIC}" class="genmed">{latest_topics.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_FORUM}" class="genmed">{latest_topics.FORUM_TITLE}</a></span></td> --- 93,97 ---- <!-- BEGIN latest_topics --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_topics.TOPIC_TIME}" title="{latest_topics.TOPIC_TIME}" href="{latest_topics.U_VIEW_TOPIC}">{latest_topics.NEWEST_POST_IMG}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_TOPIC}" class="genmed">{latest_topics.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_FORUM}" class="genmed">{latest_topics.FORUM_TITLE}</a></span></td> |
|
From: OryNider <ory...@us...> - 2008-01-24 18:51:11
|
Update of /cvsroot/mxbb/mx_glance/templates/Avalanche In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11819/Avalanche Modified Files: glance_body.tpl glance_body_big.tpl Log Message: upgrade Index: glance_body.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_glance/templates/Avalanche/glance_body.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** glance_body.tpl 5 Aug 2007 19:42:57 -0000 1.2 --- glance_body.tpl 24 Jan 2008 18:51:07 -0000 1.3 *************** *** 13,34 **** <table width="100%" cellspacing="0" cellpadding="0" border="0"> <!-- END switch_glance_news --> ! <!-- BEGIN latest_news --> ! <tr> ! <td class="row2" align="center"> ! <span class="cattitle"> ! {latest_news.TOPIC_FOLDER_IMG_SRC} ! </span> ! </td> ! <td class="row1" align="left" valign="top" width="100%"> ! <span class="genmed" style="font-weight: bold;"><a title="{L_LAST_REPLY}: {latest_news.LAST_POST_TIME}" href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span> ! <br /> ! <span class="gensmall" nowrap="nowrap">{latest_news.TOPIC_TIME} ! </span> ! </td> ! </tr> ! <!-- END latest_news --> <!-- BEGIN switch_glance_news --> ! </table> ! </span></td> </tr> <!-- END switch_glance_news --> --- 13,38 ---- <table width="100%" cellspacing="0" cellpadding="0" border="0"> <!-- END switch_glance_news --> ! <!-- BEGIN latest_news --> ! <tr> ! <td class="row2" align="center"> ! <span class="cattitle"> ! {latest_news.NEWEST_POST_IMG} ! </span> ! </td> ! <td class="row1" align="left" valign="top" width="100%"> ! <span class="genmed" style="font-weight: bold;"><a title="{L_LAST_REPLY}: {latest_news.LAST_POST_TIME}" href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span> ! <br /> ! <dd style="float:right"> ! <span class="gensmall" nowrap="nowrap">{latest_news.TOPIC_TIME}</span> ! </dd> ! </td> ! </tr> ! <!-- END latest_news --> <!-- BEGIN switch_glance_news --> ! <tr valign="middle"> ! <td align="right" valign="top" nowrap="nowrap" colspan="2" height="28" class="cat"><span class="gensmall">{switch_glance_news.PREV_URL} {switch_glance_news.NEXT_URL} </span></td> ! </tr> ! </table> ! </span></td> </tr> <!-- END switch_glance_news --> *************** *** 45,49 **** <td class="row2" align="center"> <span class="cattitle"> ! {latest_topics.TOPIC_FOLDER_IMG_SRC} </span> </td> --- 49,53 ---- <td class="row2" align="center"> <span class="cattitle"> ! {latest_topics.NEWEST_POST_IMG} </span> </td> *************** *** 58,72 **** <span class="gensmall" nowrap="nowrap"> {latest_topics.LAST_POST_TIME} ! </span> <span class="gensmall" nowrap="nowrap"> {latest_topics.TOPIC_AUTHOR_FULL} {latest_topics.LAST_POSTER_FULL} </span> </div> </td> </tr> <!-- END latest_topics --> <!-- BEGIN switch_glance_recent --> ! </table> ! </span></td> </tr> <!-- END switch_glance_recent --> --- 62,84 ---- <span class="gensmall" nowrap="nowrap"> {latest_topics.LAST_POST_TIME} ! </span><br /> <span class="gensmall" nowrap="nowrap"> {latest_topics.TOPIC_AUTHOR_FULL} {latest_topics.LAST_POSTER_FULL} </span> </div> + <div valign="top" align="right"> + <span class="gensmall" nowrap="nowrap"> + ({latest_topics.TOPIC_REPLIES}) {L_COMMENTS} + </span> + </div> </td> </tr> <!-- END latest_topics --> <!-- BEGIN switch_glance_recent --> ! <tr valign="middle"> ! <td align="right" valign="top" nowrap="nowrap" colspan="2" height="28" class="cat"><span class="gensmall">{switch_glance_recent.PREV_URL} {switch_glance_recent.NEXT_URL} </span></td> ! </tr> ! </table> ! </span></td> </tr> <!-- END switch_glance_recent --> *************** *** 82,84 **** <td class="right_bottom"><span class="gensmall"> </span></td> </tr> ! </table> \ No newline at end of file --- 94,97 ---- <td class="right_bottom"><span class="gensmall"> </span></td> </tr> ! </table> ! <br /> \ No newline at end of file Index: glance_body_big.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_glance/templates/Avalanche/glance_body_big.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** glance_body_big.tpl 5 Aug 2007 19:42:57 -0000 1.2 --- glance_body_big.tpl 24 Jan 2008 18:51:07 -0000 1.3 *************** *** 18,22 **** </th> <th align="right"> ! {switch_glance_news.PREV_URL} {switch_glance_news.NEXT_URL} </th> </tr> --- 18,22 ---- </th> <th align="right"> ! <span style="font-family: Flash; color: #FFFFFF;">{switch_glance_news.PREV_URL} {switch_glance_news.NEXT_URL} </span> </th> </tr> *************** *** 39,43 **** <!-- BEGIN latest_news --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_news.TOPIC_TIME}" title="{latest_news.TOPIC_TIME}" href="{latest_news.U_VIEW_TOPIC}">{latest_news.TOPIC_FOLDER_IMG_SRC}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_FORUM}" class="genmed">{latest_news.FORUM_TITLE}</a></span></td> --- 39,43 ---- <!-- BEGIN latest_news --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_news.TOPIC_TIME}" title="{latest_news.TOPIC_TIME}" href="{latest_news.U_VIEW_TOPIC}">{latest_news.NEWEST_POST_IMG}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_FORUM}" class="genmed">{latest_news.FORUM_TITLE}</a></span></td> *************** *** 71,75 **** </th> <th align="right"> ! {switch_glance_recent.PREV_URL} {switch_glance_recent.NEXT_URL} </th> </tr> --- 71,75 ---- </th> <th align="right"> ! <span style="font-family: Flash; color: #FFFFFF;">{switch_glance_recent.PREV_URL} {switch_glance_recent.NEXT_URL} </span> </th> </tr> *************** *** 93,97 **** <!-- BEGIN latest_topics --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_topics.TOPIC_TIME}" title="{latest_topics.TOPIC_TIME}" href="{latest_topics.U_VIEW_TOPIC}">{latest_topics.TOPIC_FOLDER_IMG_SRC}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_TOPIC}" class="genmed">{latest_topics.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_FORUM}" class="genmed">{latest_topics.FORUM_TITLE}</a></span></td> --- 93,97 ---- <!-- BEGIN latest_topics --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_topics.TOPIC_TIME}" title="{latest_topics.TOPIC_TIME}" href="{latest_topics.U_VIEW_TOPIC}">{latest_topics.NEWEST_POST_IMG}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_TOPIC}" class="genmed">{latest_topics.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_FORUM}" class="genmed">{latest_topics.FORUM_TITLE}</a></span></td> |
|
From: OryNider <ory...@us...> - 2008-01-24 18:50:45
|
Update of /cvsroot/mxbb/mx_glance/language/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11424/lang_english Modified Files: lang_admin.php Log Message: upgrade Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/mx_glance/language/lang_english/lang_admin.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** lang_admin.php 5 Aug 2007 19:42:40 -0000 1.3 --- lang_admin.php 24 Jan 2008 18:50:40 -0000 1.4 *************** *** 22,26 **** $lang['Glance_news_forum'] = "News forums"; $lang['Glance_use_large'] = "Style"; ! // --- 22,27 ---- $lang['Glance_news_forum'] = "News forums"; $lang['Glance_use_large'] = "Style"; ! $lang['Glance_show_user_color'] = "Show user with color"; ! $lang['Glance_show_user_bold'] = "Show user with bold"; // |
|
From: OryNider <ory...@us...> - 2008-01-24 18:50:44
|
Update of /cvsroot/mxbb/mx_glance/language/lang_romanian In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11424/lang_romanian Modified Files: lang_admin.php Log Message: upgrade Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/mx_glance/language/lang_romanian/lang_admin.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** lang_admin.php 5 Aug 2007 19:42:40 -0000 1.3 --- lang_admin.php 24 Jan 2008 18:50:40 -0000 1.4 *************** *** 22,25 **** --- 22,27 ---- $lang['Glance_news_forum'] = "Forum Noutãþi"; $lang['Glance_use_large'] = "Style"; + $lang['Glance_show_user_color'] = "Show user with color"; + $lang['Glance_show_user_bold'] = "Show user with bold"; // |
|
From: OryNider <ory...@us...> - 2008-01-24 18:50:22
|
Update of /cvsroot/mxbb/mx_glance In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11346 Modified Files: db_install.php db_upgrade.php mx_glance.php mx_install_readme.htm Log Message: upgrade Index: mx_install_readme.htm =================================================================== RCS file: /cvsroot/mxbb/mx_glance/mx_install_readme.htm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** mx_install_readme.htm 12 Jun 2007 11:19:14 -0000 1.2 --- mx_install_readme.htm 24 Jan 2008 18:50:13 -0000 1.3 *************** *** 1,8 **** ! <html> <head> <title>Mx Portal installation - readme</title> ! <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <!-- link rel="stylesheet" href="templates/subSilver/subSilver.css" type="text/css" --> <style type="text/css"> <!-- /* --- 1,16 ---- ! <!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"> ! <!-- $Id$ --> <head> + <meta name="generator" content= + "HTML Tidy for Windows (vers 19 September 2007), see www.w3.org" /> <title>Mx Portal installation - readme</title> ! <meta http-equiv="Content-Type" content= ! "text/html; charset=us-ascii" /> <!-- link rel="stylesheet" href="templates/subSilver/subSilver.css" type="text/css" --> + <style type="text/css"> + /*<![CDATA[*/ <!-- /* *************** *** 18,29 **** /* General page style. The scroll bar colours only visible in IE5.5+ */ body { ! background-color: #E5E5E5; ! scrollbar-face-color: #DEE3E7; ! scrollbar-highlight-color: #FFFFFF; ! scrollbar-shadow-color: #DEE3E7; ! scrollbar-3dlight-color: #D1D7DC; ! scrollbar-arrow-color: #006699; ! scrollbar-track-color: #EFEFEF; ! scrollbar-darkshadow-color: #98AAB1; } --- 26,37 ---- /* General page style. The scroll bar colours only visible in IE5.5+ */ body { ! background-color: #E5E5E5; ! scrollbar-face-color: #DEE3E7; ! scrollbar-highlight-color: #FFFFFF; ! scrollbar-shadow-color: #DEE3E7; ! scrollbar-3dlight-color: #D1D7DC; ! scrollbar-arrow-color: #006699; ! scrollbar-track-color: #EFEFEF; ! scrollbar-darkshadow-color: #98AAB1; } *************** *** 31,47 **** font, th, td, p { font-family: Verdana, Arial, Helvetica, sans-serif } a:link, a:active, a:visited { color : #006699; } ! a:hover { text-decoration: underline; color : #DD6900; } ! hr { height: 0px; border: solid #D1D7DC 0px; border-top-width: 1px;} /* This is the border line & background colour round the entire page */ ! .bodyline { background-color: #FFFFFF; border: 1px #98AAB1 solid; } /* This is the outline round the main forum tables */ ! .forumline { background-color: #FFFFFF; border: 2px #006699 solid; } /* Main table cell colours and backgrounds */ ! td.row1 { background-color: #EFEFEF; } ! td.row2 { background-color: #DEE3E7; } ! td.row3 { background-color: #D1D7DC; } /* --- 39,55 ---- font, th, td, p { font-family: Verdana, Arial, Helvetica, sans-serif } a:link, a:active, a:visited { color : #006699; } ! a:hover { text-decoration: underline; color : #DD6900; } ! hr { height: 0px; border: solid #D1D7DC 0px; border-top-width: 1px;} /* This is the border line & background colour round the entire page */ ! .bodyline { background-color: #FFFFFF; border: 1px #98AAB1 solid; } /* This is the outline round the main forum tables */ ! .forumline { background-color: #FFFFFF; border: 2px #006699 solid; } /* Main table cell colours and backgrounds */ ! td.row1 { background-color: #EFEFEF; } ! td.row2 { background-color: #DEE3E7; } ! td.row3 { background-color: #D1D7DC; } /* *************** *** 51,69 **** */ td.rowpic { ! background-color: #FFFFFF; ! background-image: url('../../install/templates/subSilver/images/cellpic2.jpg'); ! background-repeat: repeat-y } /* Header cells - the blue and silver gradient backgrounds */ ! th { ! color: #FFA34F; font-size: 11px; font-weight : bold; ! background-color: #006699; height: 25px; ! background-image: url('../../install/templates/subSilver/images/cellpic3.gif'); } td.cat, td.catHead, td.catSides, td.catLeft, td.catRight, td.catBottom { ! background-image: url('../../install/templates/subSilver/images/cellpic1.gif'); ! background-color:#D1D7DC; border: medium solid #FFFFFF; height: 28px } --- 59,77 ---- */ td.rowpic { ! background-color: #FFFFFF; ! background-image: url('../../install/templates/subSilver/images/cellpic2.jpg'); ! background-repeat: repeat-y } /* Header cells - the blue and silver gradient backgrounds */ ! th { ! color: #FFA34F; font-size: 11px; font-weight : bold; ! background-color: #006699; height: 25px; ! background-image: url('../../install/templates/subSilver/images/cellpic3.gif'); } td.cat, td.catHead, td.catSides, td.catLeft, td.catRight, td.catBottom { ! background-image: url('../../install/templates/subSilver/images/cellpic1.gif'); ! background-color:#D1D7DC; border: medium solid #FFFFFF; height: 28px } *************** *** 74,100 **** */ td.cat, td.catHead, td.catBottom { ! height: 29px; ! border-width: 0px 0px 0px 0px; } th.thHead, th.thSides, th.thTop, th.thLeft, th.thRight, th.thBottom, th.thCornerL, th.thCornerR { ! font-weight: bold; border: #FFFFFF; border-style: solid; height: 28px; } td.row3Right, td.spaceRow { ! background-color: #D1D7DC; border: #FFFFFF; border-style: solid; } th.thHead, td.catHead { font-size: 12px; border-width: 1px 1px 0px 1px; } ! th.thSides, td.catSides, td.spaceRow { border-width: 0px 1px 0px 1px; } ! th.thRight, td.catRight, td.row3Right { border-width: 0px 1px 0px 0px; } ! th.thLeft, td.catLeft { border-width: 0px 0px 0px 1px; } th.thBottom, td.catBottom { border-width: 0px 1px 1px 1px; } ! th.thTop { border-width: 1px 0px 0px 0px; } th.thCornerL { border-width: 1px 0px 0px 1px; } th.thCornerR { border-width: 1px 1px 0px 0px; } /* The largest text used in the index page title and toptic title etc. */ ! .maintitle { ! font-weight: bold; font-size: 22px; font-family: "Trebuchet MS",Verdana, Arial, Helvetica, sans-serif; ! text-decoration: none; line-height : 120%; color : #000000; } --- 82,108 ---- */ td.cat, td.catHead, td.catBottom { ! height: 29px; ! border-width: 0px 0px 0px 0px; } th.thHead, th.thSides, th.thTop, th.thLeft, th.thRight, th.thBottom, th.thCornerL, th.thCornerR { ! font-weight: bold; border: #FFFFFF; border-style: solid; height: 28px; } td.row3Right, td.spaceRow { ! background-color: #D1D7DC; border: #FFFFFF; border-style: solid; } th.thHead, td.catHead { font-size: 12px; border-width: 1px 1px 0px 1px; } ! th.thSides, td.catSides, td.spaceRow { border-width: 0px 1px 0px 1px; } ! th.thRight, td.catRight, td.row3Right { border-width: 0px 1px 0px 0px; } ! th.thLeft, td.catLeft { border-width: 0px 0px 0px 1px; } th.thBottom, td.catBottom { border-width: 0px 1px 1px 1px; } ! th.thTop { border-width: 1px 0px 0px 0px; } th.thCornerL { border-width: 1px 0px 0px 1px; } th.thCornerR { border-width: 1px 1px 0px 0px; } /* The largest text used in the index page title and toptic title etc. */ ! .maintitle { ! font-weight: bold; font-size: 22px; font-family: "Trebuchet MS",Verdana, Arial, Helvetica, sans-serif; ! text-decoration: none; line-height : 120%; color : #000000; } *************** *** 105,145 **** .gen, .genmed, .gensmall { color : #000000; } a.gen, a.genmed, a.gensmall { color: #006699; text-decoration: none; } ! a.gen:hover, a.genmed:hover, a.gensmall:hover { color: #DD6900; text-decoration: underline; } /* The register, login, search etc links at the top of the page */ ! .mainmenu { font-size : 11px; color : #000000 } ! a.mainmenu { text-decoration: none; color : #006699; } a.mainmenu:hover{ text-decoration: underline; color : #DD6900; } /* Forum category titles */ ! .cattitle { font-weight: bold; font-size: 12px ; letter-spacing: 1px; color : #006699} ! a.cattitle { text-decoration: none; color : #006699; } a.cattitle:hover{ text-decoration: underline; } /* Forum title: Text and link to the forums used in: index.php */ ! .forumlink { font-weight: bold; font-size: 12px; color : #006699; } ! a.forumlink { text-decoration: none; color : #006699; } a.forumlink:hover{ text-decoration: underline; color : #DD6900; } /* Used for the navigation text, (Page 1,2,3 etc) and the navigation bar when in a forum */ ! .nav { font-weight: bold; font-size: 11px; color : #000000;} ! a.nav { text-decoration: none; color : #006699; } ! a.nav:hover { text-decoration: underline; } /* titles for the topics: could specify viewed link colour too */ ! .topictitle, h1, h2 { font-weight: bold; font-size: 11px; color : #000000; } a.topictitle:link { text-decoration: none; color : #006699; } a.topictitle:visited { text-decoration: none; color : #5493B4; } ! a.topictitle:hover { text-decoration: underline; color : #DD6900; } /* Name of poster in viewmsg.php and viewtopic.php and other places */ ! .name { font-size : 11px; color : #000000;} /* Location, number of posts, post date etc */ ! .postdetails { font-size : 10px; color : #000000; } /* The content of the posts (body of text) */ .postbody { font-size : 12px; line-height: 18px} ! a.postlink:link { text-decoration: none; color : #006699 } a.postlink:visited { text-decoration: none; color : #5493B4; } a.postlink:hover { text-decoration: underline; color : #DD6900} --- 113,153 ---- .gen, .genmed, .gensmall { color : #000000; } a.gen, a.genmed, a.gensmall { color: #006699; text-decoration: none; } ! a.gen:hover, a.genmed:hover, a.gensmall:hover { color: #DD6900; text-decoration: underline; } /* The register, login, search etc links at the top of the page */ ! .mainmenu { font-size : 11px; color : #000000 } ! a.mainmenu { text-decoration: none; color : #006699; } a.mainmenu:hover{ text-decoration: underline; color : #DD6900; } /* Forum category titles */ ! .cattitle { font-weight: bold; font-size: 12px ; letter-spacing: 1px; color : #006699} ! a.cattitle { text-decoration: none; color : #006699; } a.cattitle:hover{ text-decoration: underline; } /* Forum title: Text and link to the forums used in: index.php */ ! .forumlink { font-weight: bold; font-size: 12px; color : #006699; } ! a.forumlink { text-decoration: none; color : #006699; } a.forumlink:hover{ text-decoration: underline; color : #DD6900; } /* Used for the navigation text, (Page 1,2,3 etc) and the navigation bar when in a forum */ ! .nav { font-weight: bold; font-size: 11px; color : #000000;} ! a.nav { text-decoration: none; color : #006699; } ! a.nav:hover { text-decoration: underline; } /* titles for the topics: could specify viewed link colour too */ ! .topictitle, h1, h2 { font-weight: bold; font-size: 11px; color : #000000; } a.topictitle:link { text-decoration: none; color : #006699; } a.topictitle:visited { text-decoration: none; color : #5493B4; } ! a.topictitle:hover { text-decoration: underline; color : #DD6900; } /* Name of poster in viewmsg.php and viewtopic.php and other places */ ! .name { font-size : 11px; color : #000000;} /* Location, number of posts, post date etc */ ! .postdetails { font-size : 10px; color : #000000; } /* The content of the posts (body of text) */ .postbody { font-size : 12px; line-height: 18px} ! a.postlink:link { text-decoration: none; color : #006699 } a.postlink:visited { text-decoration: none; color : #5493B4; } a.postlink:hover { text-decoration: underline; color : #DD6900} *************** *** 147,176 **** /* Quote & Code blocks */ .code { ! font-family: Courier, 'Courier New', sans-serif; font-size: 11px; color: #006600; ! background-color: #FAFAFA; border: #D1D7DC; border-style: solid; ! border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px } .quote { ! font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #444444; line-height: 125%; ! background-color: #FAFAFA; border: #D1D7DC; border-style: solid; ! border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px } /* Copyright and bottom info */ ! .copyright { font-size: 10px; font-family: Verdana, Arial, Helvetica, sans-serif; color: #444444; letter-spacing: -1px;} ! a.copyright { color: #444444; text-decoration: none;} a.copyright:hover { color: #000000; text-decoration: underline;} /* Form elements */ input, textarea, select { ! color : #000000; ! font: normal 11px Verdana, Arial, Helvetica, sans-serif; ! border-color : #000000; } /* The text input fields background colour */ input.post, textarea.post, select { ! background-color : #FFFFFF; } --- 155,184 ---- /* Quote & Code blocks */ .code { ! font-family: Courier, 'Courier New', sans-serif; font-size: 11px; color: #006600; ! background-color: #FAFAFA; border: #D1D7DC; border-style: solid; ! border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px } .quote { ! font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #444444; line-height: 125%; ! background-color: #FAFAFA; border: #D1D7DC; border-style: solid; ! border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px } /* Copyright and bottom info */ ! .copyright { font-size: 10px; font-family: Verdana, Arial, Helvetica, sans-serif; color: #444444; letter-spacing: -1px;} ! a.copyright { color: #444444; text-decoration: none;} a.copyright:hover { color: #000000; text-decoration: underline;} /* Form elements */ input, textarea, select { ! color : #000000; ! font: normal 11px Verdana, Arial, Helvetica, sans-serif; ! border-color : #000000; } /* The text input fields background colour */ input.post, textarea.post, select { ! background-color : #FFFFFF; } *************** *** 179,197 **** /* The buttons used for bbCode styling in message post */ input.button { ! background-color : #EFEFEF; ! color : #000000; ! font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif; } /* The main submit button option */ input.mainoption { ! background-color : #FAFAFA; ! font-weight : bold; } /* None-bold submit button */ input.liteoption { ! background-color : #FAFAFA; ! font-weight : normal; } --- 187,205 ---- /* The buttons used for bbCode styling in message post */ input.button { ! background-color : #EFEFEF; ! color : #000000; ! font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif; } /* The main submit button option */ input.mainoption { ! background-color : #FAFAFA; ! font-weight : bold; } /* None-bold submit button */ input.liteoption { ! background-color : #FAFAFA; ! font-weight : normal; } *************** *** 205,284 **** @import url("templates/subSilver/formIE.css"); --> </style> <script language="Javascript" type="text/javascript"> <!-- ! if ( 0 ) ! { ! window.open('privmsg.php?mode=newpm', '_phpbbprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');; ! } //--> </script> </head> - <body bgcolor="#FFFFFF" text="#000000"> <table> ! <tr> ! <td colspan="2"><p><b><font face="Tahoma">MX Module - ! mx_glance<br> ! v. </font></b><font face="Tahoma"><b>2.3.4</b></font></p> ! <p><font face="Tahoma"> ! <span style="line-height: normal; font-weight:bold">Module</span> ! <br /> ! - tested with Mx Portal v. 2.8.0</font></p> ! <p><font face="Tahoma"><strong>Authors</strong><br /> ! blulegend, Jack Kan, OryNider, netclectic<br /> ! <br /> ! <span style="font-weight: bold">Description</span> <br /> ! The MX Module is an addon product for the mxBB-portal. This module / ! block is showing latest news and recent topics on any page.Customizable ! to show only news, only recent topics, or both. Will check the ! authorization of users and only show allowed topics.</font></p> ! <p><font face="Tahoma"><strong>Features</strong> <br /> ! Easy to use and install/uninstall module.</font></p> ! <p> <font face="Tahoma"> <br /> ! I. <a href="#install">Installation instructions</a> <br /> ! <br /> ! II. <a href="#themes">Additional styles</a> <br /> ! <br /> ! III. <a href="#languages">Additional languages</a><br /> ! <br /> ! <a target="_blank" class="postlink" href="http://pubory.uv.ro/potal/"> ! </a> <br /> ! <br /><a name="install"> ! <br /> ! <span style="font-weight: bold">I. Installation Instructions</span> <br /> ! To install this module, follow these instructions.</a></font></p> ! <font face="Tahoma">To summarize:<br> ! If installing from scratch, use import module in the AdminCP.<br> ! If upgrading, upgrade from AdminCP<br> ! If uninstalling, use the delete feature in the AdminCP</font></p> ! <p style="margin-top: 0; margin-bottom: 0"> ! <font face="Tahoma"> ! <br /> ! <span class="gensmall"><a href="#top" onclick="window.scrollTo(0,0); return false"> ! <font size="2">Back to Top</font></a></span><font size="2"> </font> <br /> ! <br /><b>II. Additional Styles</b> <br> ! This module is compatible with any theme/style. <br> ! <a name="themes"> </font></p> ! <p style="margin-top: 0; margin-bottom: 0"><font face="Tahoma"> ! <span class="gensmall"><a href="#top" onclick="window.scrollTo(0,0); return false"> ! <font size="2">Back to Top</font></a></span><font size="2"> </font> ! <br /><a name="languages"> ! <br /> ! <span style="font-weight: bold">III. Additional Languages</span> <br /> ! First check to see if your language is already translated. </a> <br /> ! <br /> ! If exists, download and install in the modules/mx_glance/language ! folder. If not, duplicate (copy and paste) any included language file, ! rename to match your language, translate using any texteditor, save and ! upload. <br /> ! <br /> ! <span class="gensmall"><a href="#top" onclick="window.scrollTo(0,0); return false"> ! <font size="2">Back to Top</font></a></span><font size="2"> </font> </font></p> ! ! <p> <font face="Tahoma">/Mx Development Team</font></p> ! </td> ! </tr> </table> </body> ! </html> \ No newline at end of file --- 213,307 ---- @import url("templates/subSilver/formIE.css"); --> + /*]]>*/ </style> + <script language="Javascript" type="text/javascript"> + //<![CDATA[ <!-- ! if ( 0 ) ! { ! window.open('privmsg.php?mode=newpm', '_phpbbprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');; ! } //--> + //]]> </script> </head> <body bgcolor="#FFFFFF" text="#000000"> <table> ! <tr> ! <td colspan="2"> ! <p><b><font face="Tahoma">MX Module - mx_glance<br /> ! v.</font></b> <font face="Tahoma"><b>2.3.6</b></font></p> ! <p><font face="Tahoma" style="font-size: 9pt"><span style= ! "line-height: normal; font-weight:bold">Module</span><br /> ! - tested with mxBB Portal v. 2.8.1</font></p> ! <p><font face="Tahoma"><strong><span style= ! "font-size: 9pt">Authors</span></strong><span style= ! "font-size: 9pt"><br /> ! blulegend, Jack Kan, OryNider, netclectic</span><br /> ! <br /> ! <span style="font-weight: bold"><span style= ! "font-size: 9pt">Description</span></span><span style= ! "font-size: 9pt"><br /> ! The MX Module is an addon product for the mxBB-portal. This module ! / block is showing latest news and recent topics on any ! page.Customizable to show only news, only recent topics, or both. ! Will check the authorization of users and only show allowed ! topics.</span></font></p> ! <p><font face="Tahoma" style= ! "font-size: 9pt"><strong>Features</strong><br /> ! Easy to use and install/uninstall module.</font></p> ! <p><font face="Tahoma"><br /> ! I. <a href="#install">Installation instructions</a><br /> ! <br /> ! II. <a href="#themes">Additional styles</a><br /> ! <br /> ! III. <a href="#languages">Additional languages</a><br /> ! <br /> ! <a target="_blank" class="postlink" href= ! "http://pubory.uv.ro/potal/"></a><br /> ! <br /> ! <a name="install" id="install"><br /> ! <span style="font-size: 9pt; font-weight: bold">I. Installation ! Instructions</span><span style="font-size: 9pt"><br /> ! To install this module, follow these ! instructions.</span></a></font></p> ! <font face="Tahoma" style="font-size: 9pt">To summarize:<br /> ! If installing from scratch, use import module in the AdminCP.<br /> ! If upgrading, upgrade from AdminCP<br /> ! If uninstalling, use the delete feature in the AdminCP</font> ! <p style="margin-top: 0; margin-bottom: 0"><font face= ! "Tahoma"><br /> ! <span class="gensmall"><a href="#top" onclick= ! "window.scrollTo(0,0); return false"><font size="2">Back to ! Top</font></a></span><br /> ! <br /> ! <b><span style="font-size: 9pt">II. Additional ! Styles</span></b><span style="font-size: 9pt"><br /> ! This module is compatible with any theme/style.</span><br /> ! <a name="themes" id="themes"> </a></font></p> ! <p style="margin-top: 0; margin-bottom: 0"><font face= ! "Tahoma"><font face="Tahoma"><span class="gensmall"><a href="#top" ! onclick="window.scrollTo(0,0); return false"><font size="2">Back to ! Top</font></a></span><br /> ! <a name="languages" id="languages"><br /> ! <span style="font-size: 9pt; font-weight: bold">III. Additional ! Languages</span><span style="font-size: 9pt"><br /> ! First check to see if your language is already ! translated.</span></a><span style="font-size: 9pt"><br /> ! <br /> ! If exists, download and install in the modules/mx_glance/language ! folder. If not, duplicate (copy and paste) any included language ! file, rename to match your language, translate using any ! texteditor, save and upload.</span><br /> ! <br /> ! <span class="gensmall"><a href="#top" onclick= ! "window.scrollTo(0,0); return false"><font size="2">Back to ! Top</font></a></span></font></font></p> ! <p><font face="Tahoma" style="font-size: 9pt">/mxBB Development ! Team</font></p> ! </td> ! </tr> </table> </body> ! </html> Index: mx_glance.php =================================================================== RCS file: /cvsroot/mxbb/mx_glance/mx_glance.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** mx_glance.php 25 Aug 2007 17:25:04 -0000 1.9 --- mx_glance.php 24 Jan 2008 18:50:12 -0000 1.10 *************** *** 65,87 **** $mx_user->extend(MX_LANG_MAIN, MX_IMAGES_NONE); //$mx_user->add_lang('modules/mx_glance'); ! //Images ! $recent_news_bullet_old = $images['folder_announce']; //$mx_user->img('announce_read', 'POST_ANNOUNCEMENT'); ! $recent_posts_bullet_old = $images['folder']; //$mx_user->img('topic_read', 'NEW_POSTS'); ! $recent_news_bullet_new = $images['folder_announce_new']; //$mx_user->img('announce_unread', 'POST_ANNOUNCEMENT'); ! $recent_posts_bullet_new = $images['folder_new']; //$mx_user->img('topic_unread', 'NEW_POSTS'); ! //Images SRC ! $recent_news_bullet_old_src = '<img src="' . $recent_news_bullet_old . '" border="0" width="19" height="18" alt="" title="" />'; //$mx_user->img('announce_read', 'POST_ANNOUNCEMENT', false, '', 'src'); ! $recent_posts_bullet_old_src = '<img src="' . $recent_posts_bullet_old . '" border="0" width="19" height="18" alt="" title="" />'; //$mx_user->img('topic_read', 'NEW_POSTS', false, '', 'src'); ! $recent_news_bullet_new_src = '<img src="' . $recent_news_bullet_new . '" border="0" width="19" height="18" alt="" title="" />'; //$mx_user->img('announce_unread', 'POST_ANNOUNCEMENT', false, '', 'src'); ! $recent_posts_bullet_new_src = '<img src="' . $recent_posts_bullet_new . '" border="0" width="19" height="18" alt="" title="" />'; //$mx_user->img('topic_unread', 'NEW_POSTS', false, '', 'src'); if ( !defined('PHPBB_URL') ) --- 65,112 ---- $mx_user->extend(MX_LANG_MAIN, MX_IMAGES_NONE); //$mx_user->add_lang('modules/mx_glance'); ! if (!(PORTAL_BACKEND == 'phpbb3')) ! { ! //Images ! $recent_news_bullet_old_src = $images['folder_announce']; //$mx_user->img('announce_read', 'POST_ANNOUNCEMENT'); ! $recent_posts_bullet_old_src = $images['folder']; //$mx_user->img('topic_read', 'NEW_POSTS'); ! $recent_news_bullet_new_src = $images['folder_announce_new']; //$mx_user->img('announce_unread', 'POST_ANNOUNCEMENT'); ! $recent_posts_bullet_new_src = $images['folder_new']; //$mx_user->img('topic_unread', 'NEW_POSTS'); ! //Images SRC ! $recent_news_bullet_old = '<img src="' . $recent_news_bullet_old_src . '" border="0" width="19" height="18" alt="" title="" />'; //$mx_user->img('announce_read', 'POST_ANNOUNCEMENT', false, '', 'src'); ! $recent_posts_bullet_old = '<img src="' . $recent_posts_bullet_old_src . '" border="0" width="19" height="18" alt="" title="" />'; //$mx_user->img('topic_read', 'NEW_POSTS', false, '', 'src'); ! $recent_news_bullet_new = '<img src="' . $recent_news_bullet_new_src . '" border="0" width="19" height="18" alt="" title="" />'; //$mx_user->img('announce_unread', 'POST_ANNOUNCEMENT', false, '', 'src'); ! $recent_posts_bullet_new = '<img src="' . $recent_posts_bullet_new_src . '" border="0" width="19" height="18" alt="" title="" />'; //$mx_user->img('topic_unread', 'NEW_POSTS', false, '', 'src'); ! } ! else ! { ! //Images ! ! $recent_news_bullet_old = $mx_user->img('announce_read', 'POST_ANNOUNCEMENT'); ! ! $recent_posts_bullet_old = $mx_user->img('topic_read', 'NEW_POSTS'); ! ! $recent_news_bullet_new = $mx_user->img('announce_unread', 'POST_ANNOUNCEMENT'); ! ! $recent_posts_bullet_new = $mx_user->img('topic_unread', 'NEW_POSTS'); ! ! //Images SRC ! ! $recent_news_bullet_old_src = $mx_user->img('announce_read', 'POST_ANNOUNCEMENT', false, '', 'src'); ! ! $recent_posts_bullet_old_src = $mx_user->img('topic_read', 'NEW_POSTS', false, '', 'src'); ! ! $recent_news_bullet_new_src = $mx_user->img('announce_unread', 'POST_ANNOUNCEMENT', false, '', 'src'); ! ! $recent_posts_bullet_new_src = $mx_user->img('topic_unread', 'NEW_POSTS', false, '', 'src'); ! } if ( !defined('PHPBB_URL') ) *************** *** 146,150 **** // CHECK FOR BAD WORDS // Define censored word matches ! if (!defined('IN_PHPBB3')) { if ( !function_exists( 'obtain_word_list' ) ) --- 171,175 ---- // CHECK FOR BAD WORDS // Define censored word matches ! if (!(PORTAL_BACKEND == 'phpbb3')) { if ( !function_exists( 'obtain_word_list' ) ) *************** *** 281,285 **** $result = $db->sql_query($sql); ! if ( !defined( 'IN_PHPBB3' ) ) { if ( !function_exists( 'auth' ) ) --- 306,310 ---- $result = $db->sql_query($sql); ! if ( !(PORTAL_BACKEND == 'phpbb3') ) { if ( !function_exists( 'auth' ) ) *************** *** 322,326 **** $auth_user = array(); ! $auth_user = $mx_auth->acl_getf($recent_auth_level, true); //print_r($auth_user); --- 347,351 ---- $auth_user = array(); ! $auth_user = $phpbb_auth->acl_getf($recent_auth_level, true); //print_r($auth_user); *************** *** 484,492 **** else { ! $message_date = mx_create_date($board_config['default_dateformat'], $latest_news[$i]['topic_time'], $board_config['board_timezone']); } ! if ( function_exists('mx_get_username_string') && defined('IN_PHPBB3') ) { $last_poster = mx_get_username_string('username', $latest_news[$i]['topic_last_poster_id'], $latest_news[$i]['topic_last_poster_name'], $latest_news[$i]['topic_last_poster_colour']); --- 509,517 ---- else { ! $message_date = phpBB2::create_date($board_config['default_dateformat'], $latest_news[$i]['topic_time'], $board_config['board_timezone']); } ! if ( function_exists('mx_get_username_string') && (PORTAL_BACKEND == 'phpbb3') ) { $last_poster = mx_get_username_string('username', $latest_news[$i]['topic_last_poster_id'], $latest_news[$i]['topic_last_poster_name'], $latest_news[$i]['topic_last_poster_colour']); *************** *** 497,501 **** $topic_poster_color = mx_get_username_string('colour', $latest_news[$i]['topic_poster'], $latest_news[$i]['topic_first_poster_name'], $latest_news[$i]['topic_first_poster_colour']); $topic_poster_full = mx_get_username_string('full', $latest_news[$i]['topic_poster'], $latest_news[$i]['topic_first_poster_name'], $latest_news[$i]['topic_first_poster_colour']); ! $last_poster_full .= '<a href="' . mx_append_sid(PHPBB_URL . "viewtopic.$phpEx?" . POST_POST_URL . '=' . $latest_news[$i]['topic_last_post_id']) . '#' . $latest_news[$i]['topic_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" /></a>'; } else --- 522,526 ---- $topic_poster_color = mx_get_username_string('colour', $latest_news[$i]['topic_poster'], $latest_news[$i]['topic_first_poster_name'], $latest_news[$i]['topic_first_poster_colour']); $topic_poster_full = mx_get_username_string('full', $latest_news[$i]['topic_poster'], $latest_news[$i]['topic_first_poster_name'], $latest_news[$i]['topic_first_poster_colour']); ! $last_poster_full .= '<a href="' . mx_append_sid(PHPBB_URL . "viewtopic.$phpEx?" . POST_POST_URL . '=' . $latest_news[$i]['topic_last_post_id']) . '#' . $latest_news[$i]['topic_last_post_id'] . '"><img src="' . $mx_user->img('icon_topic_latest', 'VIEW_LATEST_POST', false, '', 'src') . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" /></a>'; } else *************** *** 509,513 **** if( !($result = $db->sql_query($sql)) ) { ! message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql); } --- 534,538 ---- if( !($result = $db->sql_query($sql)) ) { ! mx_message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql); } *************** *** 554,558 **** if( !($result = $db->sql_query($sql)) ) { ! message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql); } --- 579,583 ---- if( !($result = $db->sql_query($sql)) ) { ! mx_message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql); } *************** *** 593,600 **** $topic_poster = ($latest_news[$i]['topic_poster'] == ANONYMOUS ) ? '<span ' . $topic_poster_style . '>' . $lang['Guest'] . '</span>' : '<a href="' . append_sid(PHPBB_URL . "profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $latest_news[$i]['topic_poster']) . '"><span ' . $topic_poster_style . '>' . $latest_news[$i]['author_username'] . '</span></a> '; $topic_poster_full = $topic_poster; - - $topic_replies = $latest_news[$i]['topic_replies']; } //$last_post_time = $mx_user->format_date($latest_news[$i]['post_time']); --- 618,624 ---- $topic_poster = ($latest_news[$i]['topic_poster'] == ANONYMOUS ) ? '<span ' . $topic_poster_style . '>' . $lang['Guest'] . '</span>' : '<a href="' . append_sid(PHPBB_URL . "profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $latest_news[$i]['topic_poster']) . '"><span ' . $topic_poster_style . '>' . $latest_news[$i]['author_username'] . '</span></a> '; $topic_poster_full = $topic_poster; } + $topic_replies = $latest_news[$i]['topic_replies']; //$last_post_time = $mx_user->format_date($latest_news[$i]['post_time']); *************** *** 605,609 **** else { ! $last_post_time = mx_create_date($board_config['default_dateformat'], $latest_news[$i]['post_time'], $board_config['board_timezone']); } --- 629,634 ---- else { ! //$last_post_time = phpBB2::create_date($board_config['default_dateformat'], $latest_news[$i]['post_time'], $board_config['board_timezone']); ! $last_post_time = $mx_user->format_date($latest_news[$i]['topic_last_post_time']); } *************** *** 649,653 **** 'LAST_POSTER_COLOUR' => $last_poster_color, 'LAST_POSTER_FULL' => $last_poster_full, ! 'TOPIC_AUTOR_ID' => $topic_autor_id, 'TOPIC_AUTHOR' => $topic_autor, 'TOPIC_AUTHOR_COLOUR' => $topic_poster_color, --- 674,678 ---- 'LAST_POSTER_COLOUR' => $last_poster_color, 'LAST_POSTER_FULL' => $last_poster_full, ! 'TOPIC_AUTOR_ID' => $topic_autor_id, 'TOPIC_AUTHOR' => $topic_autor, 'TOPIC_AUTHOR_COLOUR' => $topic_poster_color, *************** *** 665,669 **** ); } - } else --- 690,693 ---- *************** *** 692,702 **** $template->assign_block_vars('latest_news', array( ! 'TOPIC_FOLDER_IMG_SRC' => $recent_forums_bullet_old, ! 'LAST_POSTER' => 'None', ! 'TOPIC_POSTER' => 'None', ! 'TOPIC_AUTHOR' => 'None', ! 'TOPIC_REPLIES' => '0', ! 'TOPIC_TITLE' => 'None' ! )); } } --- 716,726 ---- $template->assign_block_vars('latest_news', array( ! 'TOPIC_FOLDER_IMG_SRC' => $recent_forums_bullet_old, ! 'LAST_POSTER' => 'None', ! 'TOPIC_POSTER' => 'None', ! 'TOPIC_AUTHOR' => 'None', ! 'TOPIC_REPLIES' => '0', ! 'TOPIC_TITLE' => 'None' ! )); } } *************** *** 741,745 **** else { ! $topic_date_time = mx_create_date($board_config['default_dateformat'], $latest_topics[$i]['topic_time'], $board_config['board_timezone']); } --- 765,769 ---- else { ! $topic_date_time = phpBB2::create_date($board_config['default_dateformat'], $latest_topics[$i]['topic_time'], $board_config['board_timezone']); } *************** *** 749,754 **** $newest_code = ( $unread_topics && $recent_show_new_bullets ) ? '&view=newest' : ''; - - //$last_post_time = $mx_user->format_date($latest_topics[$i]['post_time']); if ( function_exists( 'create_date' ) ) --- 773,776 ---- *************** *** 758,766 **** else { ! $last_post_time = mx_create_date($board_config['default_dateformat'], $latest_topics[$i]['post_time'], $board_config['board_timezone']); } ! if ( function_exists('mx_get_username_string') && defined('IN_PHPBB3') ) { $topic_poster = mx_get_username_string('username', $latest_topics[$i]['topic_poster'], $latest_topics[$i]['topic_first_poster_name'], $latest_topics[$i]['topic_first_poster_colour']); --- 780,789 ---- else { ! //$last_post_time = phpBB2::create_date($board_config['default_dateformat'], $latest_topics[$i]['post_time'], $board_config['board_timezone']); ! $last_post_time = $mx_user->format_date($latest_topics[$i]['post_time']); } ! if ( function_exists('mx_get_username_string') && (PORTAL_BACKEND == 'phpbb3') ) { $topic_poster = mx_get_username_string('username', $latest_topics[$i]['topic_poster'], $latest_topics[$i]['topic_first_poster_name'], $latest_topics[$i]['topic_first_poster_colour']); *************** *** 771,775 **** $last_poster_color = mx_get_username_string('colour', $latest_topics[$i]['topic_last_poster_id'], $latest_topics[$i]['topic_last_poster_name'], $latest_topics[$i]['topic_last_poster_colour']); $last_poster_full = mx_get_username_string('full', $latest_topics[$i]['topic_last_poster_id'], $latest_topics[$i]['topic_last_poster_name'], $latest_topics[$i]['topic_last_poster_colour']); ! $last_poster_full .= '<a href="' . mx_append_sid(PHPBB_URL . "viewtopic.$phpEx?" . POST_POST_URL . '=' . $latest_topics[$i]['topic_last_post_id']) . '#' . $latest_topics[$i]['topic_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" /></a>'; } else --- 794,798 ---- $last_poster_color = mx_get_username_string('colour', $latest_topics[$i]['topic_last_poster_id'], $latest_topics[$i]['topic_last_poster_name'], $latest_topics[$i]['topic_last_poster_colour']); $last_poster_full = mx_get_username_string('full', $latest_topics[$i]['topic_last_poster_id'], $latest_topics[$i]['topic_last_poster_name'], $latest_topics[$i]['topic_last_poster_colour']); ! $last_poster_full .= '<a href="' . mx_append_sid(PHPBB_URL . "viewtopic.$phpEx?" . POST_POST_URL . '=' . $latest_topics[$i]['topic_last_post_id']) . '#' . $latest_topics[$i]['topic_last_post_id'] . '"><img src="' . $mx_user->img('icon_topic_latest', 'VIEW_LATEST_POST', false, '', 'src') . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" /></a>'; } else *************** *** 783,787 **** if( !($result = $db->sql_query($sql)) ) { ! message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql); } --- 806,810 ---- if( !($result = $db->sql_query($sql)) ) { ! mx_message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql); } *************** *** 828,832 **** if( !($result = $db->sql_query($sql)) ) { ! message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql); } --- 851,855 ---- if( !($result = $db->sql_query($sql)) ) { ! mx_message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql); } *************** *** 861,874 **** $topic_poster_style = ''; } - $topic_autor_id = append_sid(PHPBB_URL . 'profile.php?mode=viewprofile&u=' . $latest_topics[$i]['user_id']); $topic_autor = $latest_topics[$i]['username']; ! $topic_poster = ($latest_topics[$i]['topic_poster'] == ANONYMOUS ) ? '<span ' . $topic_poster_style . '>' . $lang['Guest'] . '</span>' : '<a href="' . append_sid(PHPBB_URL . "profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $latest_topics[$i]['topic_poster']) . '"><span ' . $topic_poster_style . '>' . $latest_topics[$i]['author_username'] . '</span></a> '; $topic_poster_full = $topic_poster; - - $topic_replies = $latest_topics[$i]['topic_replies']; } $recent_forums_total_info = count($i); --- 884,895 ---- $topic_poster_style = ''; } $topic_autor_id = append_sid(PHPBB_URL . 'profile.php?mode=viewprofile&u=' . $latest_topics[$i]['user_id']); $topic_autor = $latest_topics[$i]['username']; ! $topic_poster = ($latest_topics[$i]['topic_poster'] == ANONYMOUS ) ? '<span ' . $topic_poster_style . '>' . $lang['Guest'] . '</span>' : '<a href="' . append_sid(PHPBB_URL . "profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $latest_topics[$i]['topic_poster']) . '"><span ' . $topic_poster_style . '>' . $latest_topics[$i]['author_username'] . '</span></a> '; $topic_poster_full = $topic_poster; } + $topic_replies = $latest_topics[$i]['topic_replies']; $recent_forums_total_info = count($i); *************** *** 904,908 **** 'U_LAST_POST' => mx_append_sid( PHPBB_URL . 'viewtopic.' . $phpEx . '?' . 'f=' . $latest_topics[$i]['forum_id'] . '&t=' . $latest_topics[$i]['topic_id'] . '&p=' . $latest_topics[$i]['topic_last_post_id'] . '#p' . $latest_topics[$i]['topic_last_post_id']), 'TOPIC_POSTS' => $latest_topics[$i]['topic_replies'], ! 'TOPIC_TIME' => $topic_date_time, 'TOPIC_TITLE' => $latest_topics[$i]['topic_title'], 'TOPIC_VIEWS' => $latest_topics[$i]['topic_views'], --- 925,929 ---- 'U_LAST_POST' => mx_append_sid( PHPBB_URL . 'viewtopic.' . $phpEx . '?' . 'f=' . $latest_topics[$i]['forum_id'] . '&t=' . $latest_topics[$i]['topic_id'] . '&p=' . $latest_topics[$i]['topic_last_post_id'] . '#p' . $latest_topics[$i]['topic_last_post_id']), 'TOPIC_POSTS' => $latest_topics[$i]['topic_replies'], ! 'TOPIC_TIME' => $topic_date_time, 'TOPIC_TITLE' => $latest_topics[$i]['topic_title'], 'TOPIC_VIEWS' => $latest_topics[$i]['topic_views'], *************** *** 912,916 **** 'LAST_POSTER_COLOUR' => $last_poster_color, 'LAST_POSTER_FULL' => $last_poster_full, ! 'TOPIC_AUTOR_ID' => $topic_autor_id, 'TOPIC_AUTHOR' => $topic_autor, 'TOPIC_AUTHOR_COLOUR' => $topic_poster_color, --- 933,937 ---- 'LAST_POSTER_COLOUR' => $last_poster_color, 'LAST_POSTER_FULL' => $last_poster_full, ! 'TOPIC_AUTOR_ID' => $topic_autor_id, 'TOPIC_AUTHOR' => $topic_autor, 'TOPIC_AUTHOR_COLOUR' => $topic_poster_color, |
|
From: OryNider <ory...@us...> - 2008-01-24 18:48:52
|
Update of /cvsroot/mxbb/mx_glance/templates/subsilver2 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10511/subsilver2 Log Message: Directory /cvsroot/mxbb/mx_glance/templates/subsilver2 added to the repository |
|
From: OryNider <ory...@us...> - 2008-01-24 18:47:14
|
Update of /cvsroot/mxbb/mx_glance/templates/prosilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10080 Added Files: Tag: core28x glance_body.tpl glance_body_big.tpl Log Message: prosilver added --- NEW FILE: glance_body.tpl --- <div class="clear"></div> <div class="forabg block" style="vertical-align:top; width:{BLOCK_SIZE};"> <div class="inner"> <!-- BEGIN no_glance_news_and_recent --> <dl> <dt class="row1" style="text-align:left;">{no_glance_news_and_recent.L_NO_ITEMS}</dt> </dl> <!-- END no_glance_news_and_recent --> <!-- BEGIN switch_glance_news --> <div class="blockbody bg2" style="display:block;"> <dl> <dt class="catLeft" style="height:28;"><span class="cattitle">{NEWS_HEADING}</span></dt> </dl> <dl> <dt class="row1" style="vertical-align:top;"><span class="genmed"> <div> <!-- END switch_glance_news --> <!-- BEGIN latest_news --> <li class="row<!-- IF latest_news.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- IF latest_news.S_POST_ANNOUNCE --> announce<!-- ENDIF --><!-- IF latest_news.S_POST_STICKY --> sticky<!-- ENDIF --><!-- IF latest_news.S_TOPIC_REPORTED --> reported<!-- ENDIF -->"> <dl class="icon"> <a href="{latest_news.U_VIEW_TOPIC}"><!-- IF latest_news.TOPIC_FOLDER_IMG_SRC -->{latest_news.NEWEST_POST_IMG}<!-- ENDIF --></a> <a href="{latest_news.U_VIEW_TOPIC}" class="topictitle">{latest_news.TOPIC_TITLE}</a> </dl> <dl style="text-align:right"> <span class="gensmall" nowrap="nowrap">{latest_news.TOPIC_TIME}</span> </dl> </li> <!-- END latest_news --> <!-- BEGIN switch_glance_news --> <dl style="vertical-align:middle;"> <dt style="text-align:right" class="cat"><span class="gensmall">{switch_glance_news.PREV_URL} {switch_glance_news.NEXT_URL} </span></dt> </dl> </div> </span></dt> </dl> </div> <!-- END switch_glance_news --> <!-- BEGIN switch_glance_recent --> <div class="blockbody bg2" style="display:block;"> <dl> <dt class="catLeft" style="height:28;"><span class="cattitle">{RECENT_HEADING}</span></dt> </dl> <dl> <dt><span class="genmed"> <div> <!-- END switch_glance_recent --> <!-- BEGIN latest_topics --> <li class="row<!-- IF latest_topics.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- IF latest_topics.S_POST_ANNOUNCE --> announce<!-- ENDIF --><!-- IF latest_topics.S_POST_STICKY --> sticky<!-- ENDIF --><!-- IF latest_topics.S_TOPIC_REPORTED --> reported<!-- ENDIF -->"> <dl class="icon"> <div style="float:left"> <a href="{latest_topics.U_VIEW_TOPIC}"><!-- IF latest_topics.TOPIC_FOLDER_IMG_SRC -->{latest_topics.NEWEST_POST_IMG}<!-- ENDIF --></a> <a href="{latest_topics.U_VIEW_TOPIC}" class="topictitle">{latest_topics.TOPIC_TITLE}</a> <br /> <span class="gensmall"><a href="{latest_topics.U_VIEW_FORUM}"title="{latest_topics.FORUM_TITLE}" class="gensmall">{latest_topics.FORUM_TITLE}</a></span> </div> </dl> <dl style="text-align:right"> <span class="lastpost" nowrap="nowrap">{latest_topics.LAST_POST_TIME} <br />{latest_topics.TOPIC_AUTHOR_FULL} {latest_topics.LAST_POSTER_FULL}</span> <span class="posts" nowrap="nowrap">({latest_topics.TOPIC_REPLIES}) {L_COMMENTS}</span> </dl> </li> <!-- END latest_topics --> <!-- BEGIN switch_glance_recent --> <dl valign="middle"> <dt style="text-align:right" class="cat"><span class="gensmall">{switch_glance_recent.PREV_URL} {switch_glance_recent.NEXT_URL} </span></dt> </dl> </div> </span></dt> </dl> </div> <!-- END switch_glance_recent --> </div> </div> <span class="corners-bottom"><span></span></span> <br clear="all" /> --- NEW FILE: glance_body_big.tpl --- <div class="clear"></div> <div class="forabg block" style="vertical-align:top; width:{BLOCK_SIZE};"> <div class="inner"> <!-- BEGIN no_glance_news_and_recent --> <dl> <dt class="row1" style="text-align:left;">{no_glance_news_and_recent.L_NO_ITEMS}</dt> </dl> <!-- END no_glance_news_and_recent --> <!-- BEGIN switch_glance_news --> <div class="blockbody bg2" style="display:block;"> <ul class="topiclist topics"> <li class="header"> <dl class="icon"> <dt>{NEWS_HEADING} {L_TOPICS}</dt> <dd class="posts">{L_REPLIES}</dd> <dd class="views">{L_VIEWS}</dd> <dd class="lastpost"> <table width="100%" valign="middle" cellpadding="0" cellspacing="0" border="0"> <tr> <td valign="middle" class="lastpost"><span nowrap="nowrap"> <span style="color:#FFFFFF;">{L_LAST_POST}</span> </span></td> <!-- IF latest_news.SWITCH_RECENT_NEWS eq 1 --> <td valign="middle" align="right"> <span style="font-family: Flash; color: #FFFFFF;"> {latest_news.PREV_URL} {latest_news.NEXT_URL} </span></td> <!-- ENDIF --> </tr> </table> </dd> </dl> </li> </ul> <ul class="topiclist topics"> <!-- END switch_glance_news --> <!-- BEGIN latest_news --> <li class="row<!-- IF latest_news.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- IF latest_news.S_POST_ANNOUNCE --> announce<!-- ENDIF --><!-- IF latest_news.S_POST_STICKY --> sticky<!-- ENDIF --><!-- IF latest_news.S_TOPIC_REPORTED --> reported<!-- ENDIF -->"> <dl class="icon" style="background-image: url({latest_news.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;"> <dt style="background-repeat: no-repeat;" title=""> <a href="{latest_news.U_VIEW_TOPIC}"><!-- IF not latest_news.TOPIC_FOLDER_IMG_SRC -->{latest_news.NEWEST_POST_IMG}<!-- ENDIF --></a> <a href="{latest_news.U_VIEW_TOPIC}" class="topictitle">{latest_news.TOPIC_TITLE}</a></br /> {L_POST_BY_AUTHOR} {latest_news.TOPIC_AUTHOR_FULL} {L_POSTED_ON_DATE} {latest_news.TOPIC_TIME} </br /> <!-- IF latest_news.PAGINATION --><strong class="pagination"><span>{latest_news.PAGINATION}</span></strong><!-- ENDIF --> <!-- IF not latest_news.S_TOPIC_GLOBAL -->{L_IN} <a href="{latest_news.U_VIEW_FORUM}">{latest_news.FORUM_TITLE}</a><!-- ELSE --> ({L_GLOBAL})<!-- ENDIF --> </dt> <dd class="posts">{latest_news.TOPIC_REPLIES} <dfn>{L_REPLIES}</dfn></dd> <dd class="views">{latest_news.TOPIC_VIEWS} <dfn>{L_VIEWS}</dfn></dd> <dd class="lastpost"><span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} {latest_news.LAST_POSTER_FULL} <a href="{latest_news.U_LAST_POST}">{LAST_POST_IMG}</a> <br />{L_POSTED_ON_DATE} {latest_news.LAST_POST_TIME}</span> </dd> </dl> </li> <!-- END latest_news --> <!-- BEGIN switch_glance_news --> <dl style="vertical-align:middle;"> <dt style="text-align:right" class="cat"><span class="gensmall">{switch_glance_news.PREV_URL} {switch_glance_news.NEXT_URL} </span></dt> </dl> </div> </ul> <!-- END switch_glance_news --> <!-- BEGIN switch_glance_recent --> <div class="blockbody bg2" style="display:block;"> <ul class="topiclist topics"> <li class="header"> <dl class="icon"> <dt>{RECENT_HEADING} {L_TOPICS}</dt> <dd class="posts">{L_REPLIES}</dd> <dd class="views">{L_VIEWS}</dd> <dd class="lastpost"> <table width="100%" valign="middle" cellpadding="0" cellspacing="0" border="0"> <tr> <td valign="middle" class="lastpost"><span nowrap="nowrap"> <span style="color:#FFFFFF;">{L_LAST_POST}</span> </span></td> <!-- IF latest_topics.SWITCH_RECENT_POSTS eq 1 --> <td valign="middle" align="right"> <span style="font-family: Flash; color: #FFFFFF;"> {latest_topics.PREV_URL} {latest_topics.NEXT_URL} </span></td> <!-- ENDIF --> </tr> </table> </dd> </dl> </li> </ul> <ul class="topiclist topics"> <!-- END switch_glance_recent --> <!-- BEGIN latest_topics --> <li class="row<!-- IF latest_topics.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- IF latest_topics.S_POST_ANNOUNCE --> announce<!-- ENDIF --><!-- IF latest_topics.S_POST_STICKY --> sticky<!-- ENDIF --><!-- IF latest_topics.S_TOPIC_REPORTED --> reported<!-- ENDIF -->"> <dl class="icon" style="background-image: url({latest_topics.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;"> <dt style="background-repeat: no-repeat; title=""> <a href="{latest_topics.U_VIEW_TOPIC}"><!-- IF not latest_topics.TOPIC_FOLDER_IMG_SRC -->{latest_topics.NEWEST_POST_IMG}<!-- ENDIF --></a> <a href="{latest_topics.U_VIEW_TOPIC}" class="topictitle">{latest_topics.TOPIC_TITLE}</a><br /> {L_POST_BY_AUTHOR} {latest_topics.TOPIC_AUTHOR_FULL} {L_POSTED_ON_DATE} {latest_topics.TOPIC_TIME} </br /> <!-- IF latest_topics.PAGINATION --><strong class="pagination"><span>{latest_topics.PAGINATION}</span></strong><!-- ENDIF --> <!-- IF not latest_topics.S_TOPIC_GLOBAL -->{L_IN} <a href="{latest_topics.U_VIEW_FORUM}">{latest_topics.FORUM_TITLE}</a><!-- ELSE --> ({L_GLOBAL})<!-- ENDIF --> </dt> <dd class="posts">{latest_topics.TOPIC_REPLIES} <dfn>{L_REPLIES}</dfn></dd> <dd class="views">{latest_topics.TOPIC_VIEWS} <dfn>{L_VIEWS}</dfn></dd> <dd class="lastpost"><span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} {latest_topics.LAST_POSTER_FULL} <a href="{latest_topics.U_LAST_POST}">{LAST_POST_IMG}</a> <br />{L_POSTED_ON_DATE} {latest_topics.LAST_POST_TIME}</span> </dd> </dl> </li> <!-- END latest_topics --> <!-- BEGIN switch_glance_recent --> <dl valign="middle"> <dt style="text-align:right" class="cat"><span class="gensmall">{switch_glance_recent.PREV_URL} {switch_glance_recent.NEXT_URL} </span></dt> </dl> </div> </ul> <!-- END switch_glance_recent --> </div> </div> <span class="corners-bottom"><span></span></span> <br clear="all" /> |
|
From: OryNider <ory...@us...> - 2008-01-24 18:46:16
|
Update of /cvsroot/mxbb/mx_glance/templates/prosilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9683/prosilver Log Message: Directory /cvsroot/mxbb/mx_glance/templates/prosilver added to the repository --> Using per-directory sticky tag `core28x' |
|
From: OryNider <ory...@us...> - 2008-01-24 18:45:24
|
Update of /cvsroot/mxbb/mx_glance/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9248/subSilver Modified Files: Tag: core28x glance_body.tpl glance_body_big.tpl Log Message: upgrade Index: glance_body.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_glance/templates/subSilver/glance_body.tpl,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** glance_body.tpl 11 Aug 2007 04:43:44 -0000 1.4 --- glance_body.tpl 24 Jan 2008 18:45:19 -0000 1.4.2.1 *************** *** 17,21 **** <td class="row2" align="center"> <span class="cattitle"> ! {latest_news.TOPIC_FOLDER_IMG_SRC} </span> </td> --- 17,21 ---- <td class="row2" align="center"> <span class="cattitle"> ! {latest_news.NEWEST_POST_IMG} </span> </td> *************** *** 23,28 **** <span class="genmed" style="font-weight: bold;"><a title="{L_LAST_REPLY}: {latest_news.LAST_POST_TIME}" href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span> <br /> ! <span class="gensmall" nowrap="nowrap">{latest_news.TOPIC_TIME} ! </span> </td> </tr> --- 23,29 ---- <span class="genmed" style="font-weight: bold;"><a title="{L_LAST_REPLY}: {latest_news.LAST_POST_TIME}" href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span> <br /> ! <dd style="float:right"> ! <span class="gensmall" nowrap="nowrap">{latest_news.TOPIC_TIME}</span> ! </dd> </td> </tr> *************** *** 48,52 **** <td class="row2" align="center"> <span class="cattitle"> ! {latest_topics.TOPIC_FOLDER_IMG_SRC} </span> </td> --- 49,53 ---- <td class="row2" align="center"> <span class="cattitle"> ! {latest_topics.NEWEST_POST_IMG} </span> </td> Index: glance_body_big.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_glance/templates/subSilver/glance_body_big.tpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** glance_body_big.tpl 5 Aug 2007 19:42:57 -0000 1.2 --- glance_body_big.tpl 24 Jan 2008 18:45:19 -0000 1.2.2.1 *************** *** 39,43 **** <!-- BEGIN latest_news --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_news.TOPIC_TIME}" title="{latest_news.TOPIC_TIME}" href="{latest_news.U_VIEW_TOPIC}">{latest_news.TOPIC_FOLDER_IMG_SRC}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_FORUM}" class="genmed">{latest_news.FORUM_TITLE}</a></span></td> --- 39,43 ---- <!-- BEGIN latest_news --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_news.TOPIC_TIME}" title="{latest_news.TOPIC_TIME}" href="{latest_news.U_VIEW_TOPIC}">{latest_news.NEWEST_POST_IMG}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_FORUM}" class="genmed">{latest_news.FORUM_TITLE}</a></span></td> *************** *** 93,97 **** <!-- BEGIN latest_topics --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_topics.TOPIC_TIME}" title="{latest_topics.TOPIC_TIME}" href="{latest_topics.U_VIEW_TOPIC}">{latest_topics.TOPIC_FOLDER_IMG_SRC}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_TOPIC}" class="genmed">{latest_topics.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_FORUM}" class="genmed">{latest_topics.FORUM_TITLE}</a></span></td> --- 93,97 ---- <!-- BEGIN latest_topics --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_topics.TOPIC_TIME}" title="{latest_topics.TOPIC_TIME}" href="{latest_topics.U_VIEW_TOPIC}">{latest_topics.NEWEST_POST_IMG}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_TOPIC}" class="genmed">{latest_topics.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_FORUM}" class="genmed">{latest_topics.FORUM_TITLE}</a></span></td> |
|
From: OryNider <ory...@us...> - 2008-01-24 18:45:23
|
Update of /cvsroot/mxbb/mx_glance/templates/Avalanche In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9248/Avalanche Modified Files: Tag: core28x glance_body.tpl glance_body_big.tpl Log Message: upgrade Index: glance_body.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_glance/templates/Avalanche/glance_body.tpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** glance_body.tpl 5 Aug 2007 19:42:57 -0000 1.2 --- glance_body.tpl 24 Jan 2008 18:45:19 -0000 1.2.2.1 *************** *** 13,34 **** <table width="100%" cellspacing="0" cellpadding="0" border="0"> <!-- END switch_glance_news --> ! <!-- BEGIN latest_news --> ! <tr> ! <td class="row2" align="center"> ! <span class="cattitle"> ! {latest_news.TOPIC_FOLDER_IMG_SRC} ! </span> ! </td> ! <td class="row1" align="left" valign="top" width="100%"> ! <span class="genmed" style="font-weight: bold;"><a title="{L_LAST_REPLY}: {latest_news.LAST_POST_TIME}" href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span> ! <br /> ! <span class="gensmall" nowrap="nowrap">{latest_news.TOPIC_TIME} ! </span> ! </td> ! </tr> ! <!-- END latest_news --> <!-- BEGIN switch_glance_news --> ! </table> ! </span></td> </tr> <!-- END switch_glance_news --> --- 13,38 ---- <table width="100%" cellspacing="0" cellpadding="0" border="0"> <!-- END switch_glance_news --> ! <!-- BEGIN latest_news --> ! <tr> ! <td class="row2" align="center"> ! <span class="cattitle"> ! {latest_news.NEWEST_POST_IMG} ! </span> ! </td> ! <td class="row1" align="left" valign="top" width="100%"> ! <span class="genmed" style="font-weight: bold;"><a title="{L_LAST_REPLY}: {latest_news.LAST_POST_TIME}" href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span> ! <br /> ! <dd style="float:right"> ! <span class="gensmall" nowrap="nowrap">{latest_news.TOPIC_TIME}</span> ! </dd> ! </td> ! </tr> ! <!-- END latest_news --> <!-- BEGIN switch_glance_news --> ! <tr valign="middle"> ! <td align="right" valign="top" nowrap="nowrap" colspan="2" height="28" class="cat"><span class="gensmall">{switch_glance_news.PREV_URL} {switch_glance_news.NEXT_URL} </span></td> ! </tr> ! </table> ! </span></td> </tr> <!-- END switch_glance_news --> *************** *** 45,49 **** <td class="row2" align="center"> <span class="cattitle"> ! {latest_topics.TOPIC_FOLDER_IMG_SRC} </span> </td> --- 49,53 ---- <td class="row2" align="center"> <span class="cattitle"> ! {latest_topics.NEWEST_POST_IMG} </span> </td> *************** *** 58,72 **** <span class="gensmall" nowrap="nowrap"> {latest_topics.LAST_POST_TIME} ! </span> <span class="gensmall" nowrap="nowrap"> {latest_topics.TOPIC_AUTHOR_FULL} {latest_topics.LAST_POSTER_FULL} </span> </div> </td> </tr> <!-- END latest_topics --> <!-- BEGIN switch_glance_recent --> ! </table> ! </span></td> </tr> <!-- END switch_glance_recent --> --- 62,84 ---- <span class="gensmall" nowrap="nowrap"> {latest_topics.LAST_POST_TIME} ! </span><br /> <span class="gensmall" nowrap="nowrap"> {latest_topics.TOPIC_AUTHOR_FULL} {latest_topics.LAST_POSTER_FULL} </span> </div> + <div valign="top" align="right"> + <span class="gensmall" nowrap="nowrap"> + ({latest_topics.TOPIC_REPLIES}) {L_COMMENTS} + </span> + </div> </td> </tr> <!-- END latest_topics --> <!-- BEGIN switch_glance_recent --> ! <tr valign="middle"> ! <td align="right" valign="top" nowrap="nowrap" colspan="2" height="28" class="cat"><span class="gensmall">{switch_glance_recent.PREV_URL} {switch_glance_recent.NEXT_URL} </span></td> ! </tr> ! </table> ! </span></td> </tr> <!-- END switch_glance_recent --> *************** *** 82,84 **** <td class="right_bottom"><span class="gensmall"> </span></td> </tr> ! </table> \ No newline at end of file --- 94,97 ---- <td class="right_bottom"><span class="gensmall"> </span></td> </tr> ! </table> ! <br /> \ No newline at end of file Index: glance_body_big.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_glance/templates/Avalanche/glance_body_big.tpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** glance_body_big.tpl 5 Aug 2007 19:42:57 -0000 1.2 --- glance_body_big.tpl 24 Jan 2008 18:45:19 -0000 1.2.2.1 *************** *** 18,22 **** </th> <th align="right"> ! {switch_glance_news.PREV_URL} {switch_glance_news.NEXT_URL} </th> </tr> --- 18,22 ---- </th> <th align="right"> ! <span style="font-family: Flash; color: #FFFFFF;">{switch_glance_news.PREV_URL} {switch_glance_news.NEXT_URL} </span> </th> </tr> *************** *** 39,43 **** <!-- BEGIN latest_news --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_news.TOPIC_TIME}" title="{latest_news.TOPIC_TIME}" href="{latest_news.U_VIEW_TOPIC}">{latest_news.TOPIC_FOLDER_IMG_SRC}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_FORUM}" class="genmed">{latest_news.FORUM_TITLE}</a></span></td> --- 39,43 ---- <!-- BEGIN latest_news --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_news.TOPIC_TIME}" title="{latest_news.TOPIC_TIME}" href="{latest_news.U_VIEW_TOPIC}">{latest_news.NEWEST_POST_IMG}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_TOPIC}" class="genmed">{latest_news.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_news.U_VIEW_FORUM}" class="genmed">{latest_news.FORUM_TITLE}</a></span></td> *************** *** 71,75 **** </th> <th align="right"> ! {switch_glance_recent.PREV_URL} {switch_glance_recent.NEXT_URL} </th> </tr> --- 71,75 ---- </th> <th align="right"> ! <span style="font-family: Flash; color: #FFFFFF;">{switch_glance_recent.PREV_URL} {switch_glance_recent.NEXT_URL} </span> </th> </tr> *************** *** 93,97 **** <!-- BEGIN latest_topics --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_topics.TOPIC_TIME}" title="{latest_topics.TOPIC_TIME}" href="{latest_topics.U_VIEW_TOPIC}">{latest_topics.TOPIC_FOLDER_IMG_SRC}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_TOPIC}" class="genmed">{latest_topics.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_FORUM}" class="genmed">{latest_topics.FORUM_TITLE}</a></span></td> --- 93,97 ---- <!-- BEGIN latest_topics --> <tr> ! <td nowrap="nowrap" valign="middle" class="row1" align="center" width="30"><span class="genmed"><a title="{latest_topics.TOPIC_TIME}" title="{latest_topics.TOPIC_TIME}" href="{latest_topics.U_VIEW_TOPIC}">{latest_topics.NEWEST_POST_IMG}</a></span></td> <td valign="middle" width="100%" class="row1"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_TOPIC}" class="genmed">{latest_topics.TOPIC_TITLE}</a></span></td> <td valign="middle" class="row2" nowrap="nowrap" align="center"><span style="font-weight: bold;" class="genmed"><a href="{latest_topics.U_VIEW_FORUM}" class="genmed">{latest_topics.FORUM_TITLE}</a></span></td> |
|
From: OryNider <ory...@us...> - 2008-01-24 18:44:46
|
Update of /cvsroot/mxbb/mx_glance In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv8794 Modified Files: Tag: core28x db_install.php db_upgrade.php mx_glance.php Log Message: upgrade Index: mx_glance.php =================================================================== RCS file: /cvsroot/mxbb/mx_glance/mx_glance.php,v retrieving revision 1.9.2.1 retrieving revision 1.9.2.2 diff -C2 -d -r1.9.2.1 -r1.9.2.2 *** mx_glance.php 1 Nov 2007 13:53:42 -0000 1.9.2.1 --- mx_glance.php 24 Jan 2008 18:44:36 -0000 1.9.2.2 *************** *** 65,87 **** $mx_user->extend(MX_LANG_MAIN, MX_IMAGES_NONE); //$mx_user->add_lang('modules/mx_glance'); ! //Images ! $recent_news_bullet_old = $images['folder_announce']; //$mx_user->img('announce_read', 'POST_ANNOUNCEMENT'); ! $recent_posts_bullet_old = $images['folder']; //$mx_user->img('topic_read', 'NEW_POSTS'); ! $recent_news_bullet_new = $images['folder_announce_new']; //$mx_user->img('announce_unread', 'POST_ANNOUNCEMENT'); ! $recent_posts_bullet_new = $images['folder_new']; //$mx_user->img('topic_unread', 'NEW_POSTS'); ! //Images SRC ! $recent_news_bullet_old_src = '<img src="' . $recent_news_bullet_old . '" border="0" width="19" height="18" alt="" title="" />'; //$mx_user->img('announce_read', 'POST_ANNOUNCEMENT', false, '', 'src'); ! $recent_posts_bullet_old_src = '<img src="' . $recent_posts_bullet_old . '" border="0" width="19" height="18" alt="" title="" />'; //$mx_user->img('topic_read', 'NEW_POSTS', false, '', 'src'); ! $recent_news_bullet_new_src = '<img src="' . $recent_news_bullet_new . '" border="0" width="19" height="18" alt="" title="" />'; //$mx_user->img('announce_unread', 'POST_ANNOUNCEMENT', false, '', 'src'); ! $recent_posts_bullet_new_src = '<img src="' . $recent_posts_bullet_new . '" border="0" width="19" height="18" alt="" title="" />'; //$mx_user->img('topic_unread', 'NEW_POSTS', false, '', 'src'); if ( !defined('PHPBB_URL') ) --- 65,112 ---- $mx_user->extend(MX_LANG_MAIN, MX_IMAGES_NONE); //$mx_user->add_lang('modules/mx_glance'); ! if (!(PORTAL_BACKEND == 'phpbb3')) ! { ! //Images ! $recent_news_bullet_old_src = $images['folder_announce']; //$mx_user->img('announce_read', 'POST_ANNOUNCEMENT'); ! $recent_posts_bullet_old_src = $images['folder']; //$mx_user->img('topic_read', 'NEW_POSTS'); ! $recent_news_bullet_new_src = $images['folder_announce_new']; //$mx_user->img('announce_unread', 'POST_ANNOUNCEMENT'); ! $recent_posts_bullet_new_src = $images['folder_new']; //$mx_user->img('topic_unread', 'NEW_POSTS'); ! //Images SRC ! $recent_news_bullet_old = '<img src="' . $recent_news_bullet_old_src . '" border="0" width="19" height="18" alt="" title="" />'; //$mx_user->img('announce_read', 'POST_ANNOUNCEMENT', false, '', 'src'); ! $recent_posts_bullet_old = '<img src="' . $recent_posts_bullet_old_src . '" border="0" width="19" height="18" alt="" title="" />'; //$mx_user->img('topic_read', 'NEW_POSTS', false, '', 'src'); ! $recent_news_bullet_new = '<img src="' . $recent_news_bullet_new_src . '" border="0" width="19" height="18" alt="" title="" />'; //$mx_user->img('announce_unread', 'POST_ANNOUNCEMENT', false, '', 'src'); ! $recent_posts_bullet_new = '<img src="' . $recent_posts_bullet_new_src . '" border="0" width="19" height="18" alt="" title="" />'; //$mx_user->img('topic_unread', 'NEW_POSTS', false, '', 'src'); ! } ! else ! { ! //Images ! ! $recent_news_bullet_old = $mx_user->img('announce_read', 'POST_ANNOUNCEMENT'); ! ! $recent_posts_bullet_old = $mx_user->img('topic_read', 'NEW_POSTS'); ! ! $recent_news_bullet_new = $mx_user->img('announce_unread', 'POST_ANNOUNCEMENT'); ! ! $recent_posts_bullet_new = $mx_user->img('topic_unread', 'NEW_POSTS'); ! ! //Images SRC ! ! $recent_news_bullet_old_src = $mx_user->img('announce_read', 'POST_ANNOUNCEMENT', false, '', 'src'); ! ! $recent_posts_bullet_old_src = $mx_user->img('topic_read', 'NEW_POSTS', false, '', 'src'); ! ! $recent_news_bullet_new_src = $mx_user->img('announce_unread', 'POST_ANNOUNCEMENT', false, '', 'src'); ! ! $recent_posts_bullet_new_src = $mx_user->img('topic_unread', 'NEW_POSTS', false, '', 'src'); ! } if ( !defined('PHPBB_URL') ) *************** *** 146,150 **** // CHECK FOR BAD WORDS // Define censored word matches ! if (!defined('IN_PHPBB3')) { if ( !function_exists( 'obtain_word_list' ) ) --- 171,175 ---- // CHECK FOR BAD WORDS // Define censored word matches ! if (!(PORTAL_BACKEND == 'phpbb3')) { if ( !function_exists( 'obtain_word_list' ) ) *************** *** 281,285 **** $result = $db->sql_query($sql); ! if ( !defined( 'IN_PHPBB3' ) ) { if ( !function_exists( 'auth' ) ) --- 306,310 ---- $result = $db->sql_query($sql); ! if ( !(PORTAL_BACKEND == 'phpbb3') ) { if ( !function_exists( 'auth' ) ) *************** *** 322,326 **** $auth_user = array(); ! $auth_user = $mx_auth->acl_getf($recent_auth_level, true); //print_r($auth_user); --- 347,351 ---- $auth_user = array(); ! $auth_user = $phpbb_auth->acl_getf($recent_auth_level, true); //print_r($auth_user); *************** *** 484,492 **** else { ! $message_date = mx_create_date($board_config['default_dateformat'], $latest_news[$i]['topic_time'], $board_config['board_timezone']); } ! if ( function_exists('mx_get_username_string') && defined('IN_PHPBB3') ) { $last_poster = mx_get_username_string('username', $latest_news[$i]['topic_last_poster_id'], $latest_news[$i]['topic_last_poster_name'], $latest_news[$i]['topic_last_poster_colour']); --- 509,517 ---- else { ! $message_date = phpBB2::create_date($board_config['default_dateformat'], $latest_news[$i]['topic_time'], $board_config['board_timezone']); } ! if ( function_exists('mx_get_username_string') && (PORTAL_BACKEND == 'phpbb3') ) { $last_poster = mx_get_username_string('username', $latest_news[$i]['topic_last_poster_id'], $latest_news[$i]['topic_last_poster_name'], $latest_news[$i]['topic_last_poster_colour']); *************** *** 497,501 **** $topic_poster_color = mx_get_username_string('colour', $latest_news[$i]['topic_poster'], $latest_news[$i]['topic_first_poster_name'], $latest_news[$i]['topic_first_poster_colour']); $topic_poster_full = mx_get_username_string('full', $latest_news[$i]['topic_poster'], $latest_news[$i]['topic_first_poster_name'], $latest_news[$i]['topic_first_poster_colour']); ! $last_poster_full .= '<a href="' . mx_append_sid(PHPBB_URL . "viewtopic.$phpEx?" . POST_POST_URL . '=' . $latest_news[$i]['topic_last_post_id']) . '#' . $latest_news[$i]['topic_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" /></a>'; } else --- 522,526 ---- $topic_poster_color = mx_get_username_string('colour', $latest_news[$i]['topic_poster'], $latest_news[$i]['topic_first_poster_name'], $latest_news[$i]['topic_first_poster_colour']); $topic_poster_full = mx_get_username_string('full', $latest_news[$i]['topic_poster'], $latest_news[$i]['topic_first_poster_name'], $latest_news[$i]['topic_first_poster_colour']); ! $last_poster_full .= '<a href="' . mx_append_sid(PHPBB_URL . "viewtopic.$phpEx?" . POST_POST_URL . '=' . $latest_news[$i]['topic_last_post_id']) . '#' . $latest_news[$i]['topic_last_post_id'] . '"><img src="' . $mx_user->img('icon_topic_latest', 'VIEW_LATEST_POST', false, '', 'src') . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" /></a>'; } else *************** *** 509,513 **** if( !($result = $db->sql_query($sql)) ) { ! message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql); } --- 534,538 ---- if( !($result = $db->sql_query($sql)) ) { ! mx_message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql); } *************** *** 554,558 **** if( !($result = $db->sql_query($sql)) ) { ! message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql); } --- 579,583 ---- if( !($result = $db->sql_query($sql)) ) { ! mx_message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql); } *************** *** 593,600 **** $topic_poster = ($latest_news[$i]['topic_poster'] == ANONYMOUS ) ? '<span ' . $topic_poster_style . '>' . $lang['Guest'] . '</span>' : '<a href="' . append_sid(PHPBB_URL . "profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $latest_news[$i]['topic_poster']) . '"><span ' . $topic_poster_style . '>' . $latest_news[$i]['author_username'] . '</span></a> '; $topic_poster_full = $topic_poster; - - $topic_replies = $latest_news[$i]['topic_replies']; } //$last_post_time = $mx_user->format_date($latest_news[$i]['post_time']); --- 618,624 ---- $topic_poster = ($latest_news[$i]['topic_poster'] == ANONYMOUS ) ? '<span ' . $topic_poster_style . '>' . $lang['Guest'] . '</span>' : '<a href="' . append_sid(PHPBB_URL . "profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $latest_news[$i]['topic_poster']) . '"><span ' . $topic_poster_style . '>' . $latest_news[$i]['author_username'] . '</span></a> '; $topic_poster_full = $topic_poster; } + $topic_replies = $latest_news[$i]['topic_replies']; //$last_post_time = $mx_user->format_date($latest_news[$i]['post_time']); *************** *** 605,609 **** else { ! $last_post_time = mx_create_date($board_config['default_dateformat'], $latest_news[$i]['post_time'], $board_config['board_timezone']); } --- 629,634 ---- else { ! //$last_post_time = phpBB2::create_date($board_config['default_dateformat'], $latest_news[$i]['post_time'], $board_config['board_timezone']); ! $last_post_time = $mx_user->format_date($latest_news[$i]['topic_last_post_time']); } *************** *** 649,653 **** 'LAST_POSTER_COLOUR' => $last_poster_color, 'LAST_POSTER_FULL' => $last_poster_full, ! 'TOPIC_AUTOR_ID' => $topic_autor_id, 'TOPIC_AUTHOR' => $topic_autor, 'TOPIC_AUTHOR_COLOUR' => $topic_poster_color, --- 674,678 ---- 'LAST_POSTER_COLOUR' => $last_poster_color, 'LAST_POSTER_FULL' => $last_poster_full, ! 'TOPIC_AUTOR_ID' => $topic_autor_id, 'TOPIC_AUTHOR' => $topic_autor, 'TOPIC_AUTHOR_COLOUR' => $topic_poster_color, *************** *** 665,669 **** ); } - } else --- 690,693 ---- *************** *** 692,702 **** $template->assign_block_vars('latest_news', array( ! 'TOPIC_FOLDER_IMG_SRC' => $recent_forums_bullet_old, ! 'LAST_POSTER' => 'None', ! 'TOPIC_POSTER' => 'None', ! 'TOPIC_AUTHOR' => 'None', ! 'TOPIC_REPLIES' => '0', ! 'TOPIC_TITLE' => 'None' ! )); } } --- 716,726 ---- $template->assign_block_vars('latest_news', array( ! 'TOPIC_FOLDER_IMG_SRC' => $recent_forums_bullet_old, ! 'LAST_POSTER' => 'None', ! 'TOPIC_POSTER' => 'None', ! 'TOPIC_AUTHOR' => 'None', ! 'TOPIC_REPLIES' => '0', ! 'TOPIC_TITLE' => 'None' ! )); } } *************** *** 741,745 **** else { ! $topic_date_time = mx_create_date($board_config['default_dateformat'], $latest_topics[$i]['topic_time'], $board_config['board_timezone']); } --- 765,769 ---- else { ! $topic_date_time = phpBB2::create_date($board_config['default_dateformat'], $latest_topics[$i]['topic_time'], $board_config['board_timezone']); } *************** *** 749,754 **** $newest_code = ( $unread_topics && $recent_show_new_bullets ) ? '&view=newest' : ''; - - //$last_post_time = $mx_user->format_date($latest_topics[$i]['post_time']); if ( function_exists( 'create_date' ) ) --- 773,776 ---- *************** *** 758,766 **** else { ! $last_post_time = mx_create_date($board_config['default_dateformat'], $latest_topics[$i]['post_time'], $board_config['board_timezone']); } ! if ( function_exists('mx_get_username_string') && defined('IN_PHPBB3') ) { $topic_poster = mx_get_username_string('username', $latest_topics[$i]['topic_poster'], $latest_topics[$i]['topic_first_poster_name'], $latest_topics[$i]['topic_first_poster_colour']); --- 780,789 ---- else { ! //$last_post_time = phpBB2::create_date($board_config['default_dateformat'], $latest_topics[$i]['post_time'], $board_config['board_timezone']); ! $last_post_time = $mx_user->format_date($latest_topics[$i]['post_time']); } ! if ( function_exists('mx_get_username_string') && (PORTAL_BACKEND == 'phpbb3') ) { $topic_poster = mx_get_username_string('username', $latest_topics[$i]['topic_poster'], $latest_topics[$i]['topic_first_poster_name'], $latest_topics[$i]['topic_first_poster_colour']); *************** *** 771,775 **** $last_poster_color = mx_get_username_string('colour', $latest_topics[$i]['topic_last_poster_id'], $latest_topics[$i]['topic_last_poster_name'], $latest_topics[$i]['topic_last_poster_colour']); $last_poster_full = mx_get_username_string('full', $latest_topics[$i]['topic_last_poster_id'], $latest_topics[$i]['topic_last_poster_name'], $latest_topics[$i]['topic_last_poster_colour']); ! $last_poster_full .= '<a href="' . mx_append_sid(PHPBB_URL . "viewtopic.$phpEx?" . POST_POST_URL . '=' . $latest_topics[$i]['topic_last_post_id']) . '#' . $latest_topics[$i]['topic_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" /></a>'; } else --- 794,798 ---- $last_poster_color = mx_get_username_string('colour', $latest_topics[$i]['topic_last_poster_id'], $latest_topics[$i]['topic_last_poster_name'], $latest_topics[$i]['topic_last_poster_colour']); $last_poster_full = mx_get_username_string('full', $latest_topics[$i]['topic_last_poster_id'], $latest_topics[$i]['topic_last_poster_name'], $latest_topics[$i]['topic_last_poster_colour']); ! $last_poster_full .= '<a href="' . mx_append_sid(PHPBB_URL . "viewtopic.$phpEx?" . POST_POST_URL . '=' . $latest_topics[$i]['topic_last_post_id']) . '#' . $latest_topics[$i]['topic_last_post_id'] . '"><img src="' . $mx_user->img('icon_topic_latest', 'VIEW_LATEST_POST', false, '', 'src') . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" /></a>'; } else *************** *** 783,787 **** if( !($result = $db->sql_query($sql)) ) { ! message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql); } --- 806,810 ---- if( !($result = $db->sql_query($sql)) ) { ! mx_message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql); } *************** *** 828,832 **** if( !($result = $db->sql_query($sql)) ) { ! message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql); } --- 851,855 ---- if( !($result = $db->sql_query($sql)) ) { ! mx_message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql); } *************** *** 861,874 **** $topic_poster_style = ''; } - $topic_autor_id = append_sid(PHPBB_URL . 'profile.php?mode=viewprofile&u=' . $latest_topics[$i]['user_id']); $topic_autor = $latest_topics[$i]['username']; ! $topic_poster = ($latest_topics[$i]['topic_poster'] == ANONYMOUS ) ? '<span ' . $topic_poster_style . '>' . $lang['Guest'] . '</span>' : '<a href="' . append_sid(PHPBB_URL . "profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $latest_topics[$i]['topic_poster']) . '"><span ' . $topic_poster_style . '>' . $latest_topics[$i]['author_username'] . '</span></a> '; $topic_poster_full = $topic_poster; - - $topic_replies = $latest_topics[$i]['topic_replies']; } $recent_forums_total_info = count($i); --- 884,895 ---- $topic_poster_style = ''; } $topic_autor_id = append_sid(PHPBB_URL . 'profile.php?mode=viewprofile&u=' . $latest_topics[$i]['user_id']); $topic_autor = $latest_topics[$i]['username']; ! $topic_poster = ($latest_topics[$i]['topic_poster'] == ANONYMOUS ) ? '<span ' . $topic_poster_style . '>' . $lang['Guest'] . '</span>' : '<a href="' . append_sid(PHPBB_URL . "profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $latest_topics[$i]['topic_poster']) . '"><span ' . $topic_poster_style . '>' . $latest_topics[$i]['author_username'] . '</span></a> '; $topic_poster_full = $topic_poster; } + $topic_replies = $latest_topics[$i]['topic_replies']; $recent_forums_total_info = count($i); *************** *** 904,908 **** 'U_LAST_POST' => mx_append_sid( PHPBB_URL . 'viewtopic.' . $phpEx . '?' . 'f=' . $latest_topics[$i]['forum_id'] . '&t=' . $latest_topics[$i]['topic_id'] . '&p=' . $latest_topics[$i]['topic_last_post_id'] . '#p' . $latest_topics[$i]['topic_last_post_id']), 'TOPIC_POSTS' => $latest_topics[$i]['topic_replies'], ! 'TOPIC_TIME' => $topic_date_time, 'TOPIC_TITLE' => $latest_topics[$i]['topic_title'], 'TOPIC_VIEWS' => $latest_topics[$i]['topic_views'], --- 925,929 ---- 'U_LAST_POST' => mx_append_sid( PHPBB_URL . 'viewtopic.' . $phpEx . '?' . 'f=' . $latest_topics[$i]['forum_id'] . '&t=' . $latest_topics[$i]['topic_id'] . '&p=' . $latest_topics[$i]['topic_last_post_id'] . '#p' . $latest_topics[$i]['topic_last_post_id']), 'TOPIC_POSTS' => $latest_topics[$i]['topic_replies'], ! 'TOPIC_TIME' => $topic_date_time, 'TOPIC_TITLE' => $latest_topics[$i]['topic_title'], 'TOPIC_VIEWS' => $latest_topics[$i]['topic_views'], *************** *** 912,916 **** 'LAST_POSTER_COLOUR' => $last_poster_color, 'LAST_POSTER_FULL' => $last_poster_full, ! 'TOPIC_AUTOR_ID' => $topic_autor_id, 'TOPIC_AUTHOR' => $topic_autor, 'TOPIC_AUTHOR_COLOUR' => $topic_poster_color, --- 933,937 ---- 'LAST_POSTER_COLOUR' => $last_poster_color, 'LAST_POSTER_FULL' => $last_poster_full, ! 'TOPIC_AUTOR_ID' => $topic_autor_id, 'TOPIC_AUTHOR' => $topic_autor, 'TOPIC_AUTHOR_COLOUR' => $topic_poster_color, |
|
From: OryNider <ory...@us...> - 2008-01-24 18:13:32
|
Update of /cvsroot/mxbb/mx_phpbb/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27785 Modified Files: forum_hack.php Log Message: view ip link fixed. Index: forum_hack.php =================================================================== RCS file: /cvsroot/mxbb/mx_phpbb/includes/forum_hack.php,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** forum_hack.php 13 Jan 2008 21:38:57 -0000 1.26 --- forum_hack.php 24 Jan 2008 18:13:27 -0000 1.27 *************** *** 1499,1502 **** --- 1499,1507 ---- break; + case 'modcp': + $code = str_replace('"modcp.$phpEx', '$phpbb_root_path."modcp.$phpEx', $code); + + break; + case 'includes/usercp_register': // |
|
From: OryNider <ory...@us...> - 2008-01-24 18:12:19
|
Update of /cvsroot/mxbb/mx_phpbb/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27355 Modified Files: Tag: core28x forum_hack.php Log Message: view ip link fixed. Index: forum_hack.php =================================================================== RCS file: /cvsroot/mxbb/mx_phpbb/includes/forum_hack.php,v retrieving revision 1.24.2.2 retrieving revision 1.24.2.3 diff -C2 -d -r1.24.2.2 -r1.24.2.3 *** forum_hack.php 13 Jan 2008 21:35:15 -0000 1.24.2.2 --- forum_hack.php 24 Jan 2008 18:12:13 -0000 1.24.2.3 *************** *** 1499,1502 **** --- 1499,1507 ---- break; + case 'modcp': + $code = str_replace('"modcp.$phpEx', '$phpbb_root_path."modcp.$phpEx', $code); + + break; + case 'includes/usercp_register': // |