|
From: Jon O. <jon...@us...> - 2007-09-09 16:51:19
|
Update of /cvsroot/mxbb/core/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10026/subSilver Modified Files: overall_header_navigation.tpl subSilver.cfg Removed Files: login_body.tpl message_body.tpl mx_main_layout.tpl overall_footer.tpl overall_header.tpl overall_noheader.tpl Log Message: Ok, massive update for 2.9.x. --- mx_main_layout.tpl DELETED --- Index: overall_header_navigation.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/overall_header_navigation.tpl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** overall_header_navigation.tpl 22 Jul 2007 21:01:47 -0000 1.7 --- overall_header_navigation.tpl 9 Sep 2007 16:50:44 -0000 1.8 *************** *** 75,79 **** <table width="100%" cellspacing="0" cellpadding="2" border="0" class="mx_header_table"> <tr> ! <td class="row3" width="25%" align="left" valign="top"><a href="{U_INDEX}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/logo.gif" border="0" alt="{L_INDEX}" vspace="1"/></a></td> <td class="row3" width="50%" align="center" valign="middle">{PAGE_ICON}<span class="pagetitle">{PAGE_TITLE}</span></td> <td class="row3" width="25%" align="right" valign="top"><span class="sitetitle">{SITENAME}</span><br /><span class="sitetitle_desc">{SITE_DESCRIPTION}</span></td> --- 75,79 ---- <table width="100%" cellspacing="0" cellpadding="2" border="0" class="mx_header_table"> <tr> ! <td class="row3" width="25%" align="left" valign="top"><a href="{U_INDEX}"><img src="{LOGO}" border="0" alt="{L_INDEX}" vspace="1"/></a></td> <td class="row3" width="50%" align="center" valign="middle">{PAGE_ICON}<span class="pagetitle">{PAGE_TITLE}</span></td> <td class="row3" width="25%" align="right" valign="top"><span class="sitetitle">{SITENAME}</span><br /><span class="sitetitle_desc">{SITE_DESCRIPTION}</span></td> Index: subSilver.cfg =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/subSilver.cfg,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** subSilver.cfg 28 Apr 2007 19:44:00 -0000 1.7 --- subSilver.cfg 9 Sep 2007 16:50:44 -0000 1.8 *************** *** 26,29 **** --- 26,31 ---- */ + $mx_template_settings['portal_backend'] = 'phpbb2'; + // // Do not alter this line! *************** *** 47,51 **** // and with $mx_template_settings['cloned_template'] = 'subSilver'. // If this template is a full set of *.tpl files, leave this blank. ! $mx_template_settings['cloned_template'] = 'subSilver'; // --- 49,53 ---- // and with $mx_template_settings['cloned_template'] = 'subSilver'. // If this template is a full set of *.tpl files, leave this blank. ! $mx_template_settings['cloned_template'] = ''; // *************** *** 58,67 **** | - these are very handy paths to ALL kind of phpBB/mxBB graphics \********************************************************************************/ ! $mx_images['mx_graphics']['general'] = $current_template_path . "/images"; ! $mx_images['mx_graphics']['page_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/page_icons" ) ? $current_template_path . "/images/page_icons" : $cloned_template_path . "/images/page_icons"; ! $mx_images['mx_graphics']['block_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/block_icons" ) ? $current_template_path . "/images/block_icons" : $cloned_template_path . "/images/block_icons"; ! $mx_images['mx_graphics']['menu_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/menu_icons" ) ? $current_template_path . "/images/menu_icons" : $cloned_template_path . "/images/menu_icons"; ! $mx_images['mx_graphics']['admin_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/admin_icons" ) ? $current_template_path . "/images/admin_icons" : $cloned_template_path . "/images/admin_icons"; ! $mx_images['mx_graphics']['phpbb_icons'] = file_exists( $phpbb_root_path . $current_template_path . "/images" ) ? $current_template_path . "/images" : $cloned_template_path . "/images"; // --- 60,69 ---- | - these are very handy paths to ALL kind of phpBB/mxBB graphics \********************************************************************************/ ! $mx_images['mx_graphics']['general'] = file_exists( $mx_root_path . $current_template_path . "/images/logo.gif" ) ? $current_template_path . "/images" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/logo.gif" ) ? $cloned_template_path . "/images" : $default_template_path . "/images" ); ! $mx_images['mx_graphics']['page_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/page_icons" ) ? $current_template_path . "/images/page_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/page_icons" ) ? $cloned_template_path . "/images/page_icons" : $default_template_path . "/images/page_icons" ); ! $mx_images['mx_graphics']['block_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/block_icons" ) ? $current_template_path . "/images/block_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/block_icons" ) ? $cloned_template_path . "/images/block_icons" : $default_template_path . "/images/block_icons" ); ! $mx_images['mx_graphics']['menu_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/menu_icons" ) ? $current_template_path . "/images/menu_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/menu_icons" ) ? $cloned_template_path . "/images/menu_icons" : $default_template_path . "/images/menu_icons" ); ! $mx_images['mx_graphics']['admin_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/admin_icons" ) ? $current_template_path . "/images/admin_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/admin_icons" ) ? $cloned_template_path . "/images/admin_icons" : $default_template_path . "/images/admin_icons" ); ! $mx_images['mx_graphics']['phpbb_icons'] = file_exists( $phpbb_root_path . $current_template_path . "/images" ) ? $current_template_path . "/images" : ( file_exists( $phpbb_root_path . $cloned_template_path . "/images" ) ? $cloned_template_path . "/images" : $default_template_path . "/images"); // *************** *** 155,211 **** // common phpBB images, this will have immedaite effect for all mxBB pages. // - /* ! $current_template_images = $current_template_path . "/images"; ! ! $images['icon_quote'] = "$current_template_images/{LANG}/icon_quote.gif"; ! $images['icon_edit'] = "$current_template_images/{LANG}/icon_edit.gif"; ! $images['icon_search'] = "$current_template_images/{LANG}/icon_search.gif"; ! $images['icon_profile'] = "$current_template_images/{LANG}/icon_profile.gif"; ! $images['icon_pm'] = "$current_template_images/{LANG}/icon_pm.gif"; ! $images['icon_email'] = "$current_template_images/{LANG}/icon_email.gif"; ! $images['icon_delpost'] = "$current_template_images/icon_delete.gif"; ! $images['icon_ip'] = "$current_template_images/{LANG}/icon_ip.gif"; ! $images['icon_www'] = "$current_template_images/{LANG}/icon_www.gif"; ! $images['icon_icq'] = "$current_template_images/{LANG}/icon_icq_add.gif"; ! $images['icon_aim'] = "$current_template_images/{LANG}/icon_aim.gif"; ! $images['icon_yim'] = "$current_template_images/{LANG}/icon_yim.gif"; ! $images['icon_msnm'] = "$current_template_images/{LANG}/icon_msnm.gif"; ! $images['icon_minipost'] = "$current_template_images/icon_minipost.gif"; ! $images['icon_gotopost'] = "$current_template_images/icon_minipost.gif"; ! $images['icon_minipost_new'] = "$current_template_images/icon_minipost_new.gif"; ! $images['icon_latest_reply'] = "$current_template_images/icon_latest_reply.gif"; ! $images['icon_newest_reply'] = "$current_template_images/icon_newest_reply.gif"; ! $images['forum'] = "$current_template_images/folder_big.gif"; ! $images['forum_new'] = "$current_template_images/folder_new_big.gif"; ! $images['forum_locked'] = "$current_template_images/folder_locked_big.gif"; ! $images['folder'] = "$current_template_images/folder.gif"; ! $images['folder_new'] = "$current_template_images/folder_new.gif"; ! $images['folder_hot'] = "$current_template_images/folder_hot.gif"; ! $images['folder_hot_new'] = "$current_template_images/folder_new_hot.gif"; ! $images['folder_locked'] = "$current_template_images/folder_lock.gif"; ! $images['folder_locked_new'] = "$current_template_images/folder_lock_new.gif"; ! $images['folder_sticky'] = "$current_template_images/folder_sticky.gif"; ! $images['folder_sticky_new'] = "$current_template_images/folder_sticky_new.gif"; ! $images['folder_announce'] = "$current_template_images/folder_announce.gif"; ! $images['folder_announce_new'] = "$current_template_images/folder_announce_new.gif"; ! $images['post_new'] = "$current_template_images/{LANG}/post.gif"; ! $images['post_locked'] = "$current_template_images/{LANG}/reply-locked.gif"; ! $images['reply_new'] = "$current_template_images/{LANG}/reply.gif"; ! $images['reply_locked'] = "$current_template_images/{LANG}/reply-locked.gif"; ! $images['pm_inbox'] = "$current_template_images/msg_inbox.gif"; ! $images['pm_outbox'] = "$current_template_images/msg_outbox.gif"; ! $images['pm_savebox'] = "$current_template_images/msg_savebox.gif"; ! $images['pm_sentbox'] = "$current_template_images/msg_sentbox.gif"; ! $images['pm_readmsg'] = "$current_template_images/folder.gif"; ! $images['pm_unreadmsg'] = "$current_template_images/folder_new.gif"; ! $images['pm_replymsg'] = "$current_template_images/{LANG}/reply.gif"; ! $images['pm_postmsg'] = "$current_template_images/{LANG}/msg_newpost.gif"; ! $images['pm_quotemsg'] = "$current_template_images/{LANG}/icon_quote.gif"; ! $images['pm_editmsg'] = "$current_template_images/{LANG}/icon_edit.gif"; $images['pm_new_msg'] = ""; $images['pm_no_new_msg'] = ""; --- 157,210 ---- // common phpBB images, this will have immedaite effect for all mxBB pages. // /* ! $images['icon_quote'] = "$current_template_phpbb_images/{LANG}/icon_quote.gif"; ! $images['icon_edit'] = "$current_template_phpbb_images/{LANG}/icon_edit.gif"; ! $images['icon_search'] = "$current_template_phpbb_images/{LANG}/icon_search.gif"; ! $images['icon_profile'] = "$current_template_phpbb_images/{LANG}/icon_profile.gif"; ! $images['icon_pm'] = "$current_template_phpbb_images/{LANG}/icon_pm.gif"; ! $images['icon_email'] = "$current_template_phpbb_images/{LANG}/icon_email.gif"; ! $images['icon_delpost'] = "$current_template_phpbb_images/icon_delete.gif"; ! $images['icon_ip'] = "$current_template_phpbb_images/{LANG}/icon_ip.gif"; ! $images['icon_www'] = "$current_template_phpbb_images/{LANG}/icon_www.gif"; ! $images['icon_icq'] = "$current_template_phpbb_images/{LANG}/icon_icq_add.gif"; ! $images['icon_aim'] = "$current_template_phpbb_images/{LANG}/icon_aim.gif"; ! $images['icon_yim'] = "$current_template_phpbb_images/{LANG}/icon_yim.gif"; ! $images['icon_msnm'] = "$current_template_phpbb_images/{LANG}/icon_msnm.gif"; ! $images['icon_minipost'] = "$current_template_phpbb_images/icon_minipost.gif"; ! $images['icon_gotopost'] = "$current_template_phpbb_images/icon_minipost.gif"; ! $images['icon_minipost_new'] = "$current_template_phpbb_images/icon_minipost_new.gif"; ! $images['icon_latest_reply'] = "$current_template_phpbb_images/icon_latest_reply.gif"; ! $images['icon_newest_reply'] = "$current_template_phpbb_images/icon_newest_reply.gif"; ! $images['forum'] = "$current_template_phpbb_images/folder_big.gif"; ! $images['forum_new'] = "$current_template_phpbb_images/folder_new_big.gif"; ! $images['forum_locked'] = "$current_template_phpbb_images/folder_locked_big.gif"; ! $images['folder'] = "$current_template_phpbb_images/folder.gif"; ! $images['folder_new'] = "$current_template_phpbb_images/folder_new.gif"; ! $images['folder_hot'] = "$current_template_phpbb_images/folder_hot.gif"; ! $images['folder_hot_new'] = "$current_template_phpbb_images/folder_new_hot.gif"; ! $images['folder_locked'] = "$current_template_phpbb_images/folder_lock.gif"; ! $images['folder_locked_new'] = "$current_template_phpbb_images/folder_lock_new.gif"; ! $images['folder_sticky'] = "$current_template_phpbb_images/folder_sticky.gif"; ! $images['folder_sticky_new'] = "$current_template_phpbb_images/folder_sticky_new.gif"; ! $images['folder_announce'] = "$current_template_phpbb_images/folder_announce.gif"; ! $images['folder_announce_new'] = "$current_template_phpbb_images/folder_announce_new.gif"; ! $images['post_new'] = "$current_template_phpbb_images/{LANG}/post.gif"; ! $images['post_locked'] = "$current_template_phpbb_images/{LANG}/reply-locked.gif"; ! $images['reply_new'] = "$current_template_phpbb_images/{LANG}/reply.gif"; ! $images['reply_locked'] = "$current_template_phpbb_images/{LANG}/reply-locked.gif"; ! $images['pm_inbox'] = "$current_template_phpbb_images/msg_inbox.gif"; ! $images['pm_outbox'] = "$current_template_phpbb_images/msg_outbox.gif"; ! $images['pm_savebox'] = "$current_template_phpbb_images/msg_savebox.gif"; ! $images['pm_sentbox'] = "$current_template_phpbb_images/msg_sentbox.gif"; ! $images['pm_readmsg'] = "$current_template_phpbb_images/folder.gif"; ! $images['pm_unreadmsg'] = "$current_template_phpbb_images/folder_new.gif"; ! $images['pm_replymsg'] = "$current_template_phpbb_images/{LANG}/reply.gif"; ! $images['pm_postmsg'] = "$current_template_phpbb_images/{LANG}/msg_newpost.gif"; ! $images['pm_quotemsg'] = "$current_template_phpbb_images/{LANG}/icon_quote.gif"; ! $images['pm_editmsg'] = "$current_template_phpbb_images/{LANG}/icon_edit.gif"; $images['pm_new_msg'] = ""; $images['pm_no_new_msg'] = ""; *************** *** 213,227 **** $images['Topic_watch'] = ""; $images['topic_un_watch'] = ""; ! $images['topic_mod_lock'] = "$current_template_images/topic_lock.gif"; ! $images['topic_mod_unlock'] = "$current_template_images/topic_unlock.gif"; ! $images['topic_mod_split'] = "$current_template_images/topic_split.gif"; ! $images['topic_mod_move'] = "$current_template_images/topic_move.gif"; ! $images['topic_mod_delete'] = "$current_template_images/topic_delete.gif"; ! $images['voting_graphic'][0] = "$current_template_images/voting_bar.gif"; ! $images['voting_graphic'][1] = "$current_template_images/voting_bar.gif"; ! $images['voting_graphic'][2] = "$current_template_images/voting_bar.gif"; ! $images['voting_graphic'][3] = "$current_template_images/voting_bar.gif"; ! $images['voting_graphic'][4] = "$current_template_images/voting_bar.gif"; */ --- 212,271 ---- $images['Topic_watch'] = ""; $images['topic_un_watch'] = ""; ! $images['topic_mod_lock'] = "$current_template_phpbb_images/topic_lock.gif"; ! $images['topic_mod_unlock'] = "$current_template_phpbb_images/topic_unlock.gif"; ! $images['topic_mod_split'] = "$current_template_phpbb_images/topic_split.gif"; ! $images['topic_mod_move'] = "$current_template_phpbb_images/topic_move.gif"; ! $images['topic_mod_delete'] = "$current_template_phpbb_images/topic_delete.gif"; ! $images['voting_graphic'][0] = "$current_template_phpbb_images/voting_bar.gif"; ! $images['voting_graphic'][1] = "$current_template_phpbb_images/voting_bar.gif"; ! $images['voting_graphic'][2] = "$current_template_phpbb_images/voting_bar.gif"; ! $images['voting_graphic'][3] = "$current_template_phpbb_images/voting_bar.gif"; ! $images['voting_graphic'][4] = "$current_template_phpbb_images/voting_bar.gif"; ! */ ! ! // ! // Repopulate the $theme colors - for standalone mxBB ! // ! /* ! $template_config_row['body_background'] = ""; ! $template_config_row['body_bgcolor'] = "E5E5E5"; ! $template_config_row['body_text'] = "000000"; ! $template_config_row['body_link'] = "006699"; ! $template_config_row['body_vlink'] = "5493B4"; ! $template_config_row['body_alink'] = ""; ! $template_config_row['body_hlink'] = "DD6900"; ! $template_config_row['tr_color1'] = "EFEFEF"; ! $template_config_row['tr_color2'] = "DEE3E7"; ! $template_config_row['tr_color3'] = "D1D7DC"; ! $template_config_row['tr_class1'] = ""; ! $template_config_row['tr_class2'] = ""; ! $template_config_row['tr_class3'] = ""; ! $template_config_row['th_color1'] = "98AAB1"; ! $template_config_row['th_color2'] = "006699"; ! $template_config_row['th_color3'] = "FFFFFF"; ! $template_config_row['th_class1'] = "cellpic1.gif"; ! $template_config_row['th_class2'] = "cellpic3.gif"; ! $template_config_row['th_class3'] = "cellpic2.jpg"; ! $template_config_row['td_color1'] = "FAFAFA"; ! $template_config_row['td_color2'] = "FFFFFF"; ! $template_config_row['td_color3'] = ""; ! $template_config_row['td_class1'] = "row1"; ! $template_config_row['td_class2'] = "row2"; ! $template_config_row['td_class3'] = ""; ! $template_config_row['fontface1'] = "Verdana, Arial, Helvetica, sans-serif"; ! $template_config_row['fontface2'] = "Trebuchet MS"; ! $template_config_row['fontface3'] = "Courier, \'Courier New\', sans-serif"; ! $template_config_row['fontsize1'] = "10"; ! $template_config_row['fontsize2'] = "11"; ! $template_config_row['fontsize3'] = "12"; ! $template_config_row['fontcolor1'] = "444444"; ! $template_config_row['fontcolor2'] = "006600"; ! $template_config_row['fontcolor3'] = "FFA34F"; ! $template_config_row['span_class1'] = ""; ! $template_config_row['span_class2'] = ""; ! $template_config_row['span_class3'] = ""; ! $template_config_row['img_size_poll'] = "0"; ! $template_config_row['img_size_privmsg'] = "0"; */ *************** *** 230,233 **** --- 274,282 ---- \********************************************************************************/ // + // Logo + // + $mx_images['mx_logo'] = "$current_template_images/logo.gif";; + + // // SiteLog // --- overall_header.tpl DELETED --- --- message_body.tpl DELETED --- --- login_body.tpl DELETED --- --- overall_footer.tpl DELETED --- --- overall_noheader.tpl DELETED --- |