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...> - 2007-10-05 11:09:50
|
Update of /cvsroot/mxbb/mx_smartor/album_mod In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10367/album_mod Modified Files: album_bbconstants.php album_common.php album_constants.php Log Message: spaces removed after ?> Index: album_bbconstants.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album_mod/album_bbconstants.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** album_bbconstants.php 27 Sep 2007 00:31:45 -0000 1.4 --- album_bbconstants.php 5 Oct 2007 11:09:43 -0000 1.5 *************** *** 61,63 **** define('ALBUM_THUMBNAIL', this_smartor_mxurl('smartor_mode=album_thumbnail', true)); ! ?> --- 61,63 ---- define('ALBUM_THUMBNAIL', this_smartor_mxurl('smartor_mode=album_thumbnail', true)); ! ?> \ No newline at end of file Index: album_constants.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album_mod/album_constants.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** album_constants.php 7 Jun 2007 20:13:11 -0000 1.10 --- album_constants.php 5 Oct 2007 11:09:43 -0000 1.11 *************** *** 102,109 **** define('ALBUM_PRIVATE', 3); ! if( !defined('PAGE_ALBUM') ) ! { ! define('PAGE_ALBUM', -502); ! } // Path (trailing slash required) --- 102,115 ---- define('ALBUM_PRIVATE', 3); ! !defined('PAGE_ALBUM') ? define('PAGE_ALBUM', -502) : false; ! ! //Redefine some GD constants ! !defined('IMAGETYPE_PNG') ? define('IMAGETYPE_PNG', 3) : false; ! !defined('IMAGETYPE_JPEG') ? define('IMAGETYPE_JPEG', 2) : false; ! !defined('IMAGETYPE_GIF') ? define('IMAGETYPE_GIF', 1) : false; ! ! !defined('IMG_PNG') ? define('IMG_PNG', IMAGETYPE_PNG) : false; ! !defined('IMG_JPG') ? define('IMG_JPG', IMAGETYPE_JPEG) : false; ! !defined('IMG_GIF') ? define('IMG_GIF', IMAGETYPE_GIF) : false; // Path (trailing slash required) Index: album_common.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album_mod/album_common.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** album_common.php 9 Aug 2007 13:16:53 -0000 1.19 --- album_common.php 5 Oct 2007 11:09:43 -0000 1.20 *************** *** 199,203 **** 'U_INDEX' => append_sid($mx_root_path . "index.".$phpEx), 'L_USERNAME' => $lang['Username'], ! 'L_DESCRIPTION' => $lang['Description'], 'L_PIC_NAME' => $lang['Pic_Name'], 'L_NO_PICS' => $lang['No_Pics'], --- 199,203 ---- 'U_INDEX' => append_sid($mx_root_path . "index.".$phpEx), 'L_USERNAME' => $lang['Username'], ! 'L_DESCRIPTION' => $lang['Description'], 'L_PIC_NAME' => $lang['Pic_Name'], 'L_NO_PICS' => $lang['No_Pics'], *************** *** 230,232 **** include_once($album_root_path . 'album_hierarchy_functions.' . $phpEx); ! ?> --- 230,232 ---- include_once($album_root_path . 'album_hierarchy_functions.' . $phpEx); ! ?> \ No newline at end of file |
|
From: OryNider <ory...@us...> - 2007-10-05 11:09:50
|
Update of /cvsroot/mxbb/mx_smartor/language/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10367/language/lang_english Modified Files: lang_admin.php Log Message: spaces removed after ?> Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/language/lang_english/lang_admin.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** lang_admin.php 9 Aug 2007 13:18:02 -0000 1.7 --- lang_admin.php 5 Oct 2007 11:09:44 -0000 1.8 *************** *** 29,34 **** $lang['Moderator_pics_limit'] = 'Pics limit per category for each moderator (-1 = unlimited)'; $lang['Pics_Approval'] = 'Pics Approval'; ! $lang['Rows_per_page'] = 'Number of rows on thumbnail page'; ! $lang['Cols_per_page'] = 'Number of columns on thumbnail page'; $lang['Thumbnail_quality'] = 'Thumbnail quality (1-100)'; $lang['Thumbnail_cache'] = 'Thumbnail cache'; --- 29,34 ---- $lang['Moderator_pics_limit'] = 'Pics limit per category for each moderator (-1 = unlimited)'; $lang['Pics_Approval'] = 'Pics Approval'; ! $lang['Rows_per_page'] = 'Number of rows on thumbnail page (in categories)'; ! $lang['Cols_per_page'] = 'Number of columns on thumbnail page (in categories)'; $lang['Thumbnail_quality'] = 'Thumbnail quality (1-100)'; $lang['Thumbnail_cache'] = 'Thumbnail cache'; *************** *** 180,185 **** $lang['SP_Display_most_viewed'] = 'Display most viewed pictures block'; $lang['SP_Display_random'] = 'Display random pictures block'; ! $lang['SP_Pic_row'] = 'Number of rows on thumbnail blocks'; ! $lang['SP_Pic_col'] = 'Number of columns on thumbnail blocks'; $lang['SP_Midthumb_use'] = 'Use mid-thumbnail'; $lang['SP_Midthumb_cache'] = 'Enable caching of mid-thumbnail'; --- 180,185 ---- $lang['SP_Display_most_viewed'] = 'Display most viewed pictures block'; $lang['SP_Display_random'] = 'Display random pictures block'; ! $lang['SP_Pic_row'] = 'Number of rows on thumbnail page (in index)'; ! $lang['SP_Pic_col'] = 'Number of columns on thumbnail page (in index)'; $lang['SP_Midthumb_use'] = 'Use mid-thumbnail'; $lang['SP_Midthumb_cache'] = 'Enable caching of mid-thumbnail'; |
|
From: OryNider <ory...@us...> - 2007-10-05 11:09:50
|
Update of /cvsroot/mxbb/mx_smartor/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10367/templates/subSilver Modified Files: album_showpage_body.tpl Log Message: spaces removed after ?> Index: album_showpage_body.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/templates/subSilver/album_showpage_body.tpl,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** album_showpage_body.tpl 4 Jul 2007 15:50:06 -0000 1.8 --- album_showpage_body.tpl 5 Oct 2007 11:09:45 -0000 1.9 *************** *** 211,220 **** <td valign="top" align="left"><b><span class="genmed">{L_PIC_ID}: {PIC_ID} - {L_PIC_TYPE}: {PIC_TYPE} - {L_PIC_SIZE}: {PIC_SIZE}</span></b></td> </tr> - <!-- BEGIN bbcode_switch --> <tr> <td valign="top" align="right"><span class="genmed">{L_PIC_BBCODE}:</span></td> <td valign="top" align="left"><form name="select_all" action=""><input name="BBCode" size="50" maxlength="100" value="{PIC_BBCODE}" type="text" readonly="1" onClick="javascript:this.form.BBCode.focus();this.form.BBCode.select();"/></form></td> </tr> - <!-- END bbcode_switch --> <tr> <td align="right"><span class="genmed">{L_VIEW}:</span></td> --- 211,218 ---- |
|
From: OryNider <ory...@us...> - 2007-10-05 02:34:21
|
Update of /cvsroot/mxbb/mx_smartor/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv25894 Modified Files: admin_album_auth.php Log Message: restoring the file from the Beta version :P Index: admin_album_auth.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/admin/admin_album_auth.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** admin_album_auth.php 9 Aug 2007 13:16:48 -0000 1.11 --- admin_album_auth.php 5 Oct 2007 02:34:12 -0000 1.12 *************** *** 4,63 **** * @package mxBB Portal Module - mx_smartor * @version $Id$ ! * @copyright (c) 2003 [sma...@ho..., Smartor] mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ ! define('IN_PORTAL', 1); ! if( !empty($setmodules) ) { ! $filename = basename(__FILE__); ! $module['Smartor_Album']['Permissions'] = "modules/mx_smartor/admin/" .$filename; return; } - // // Let's set the root dir for phpBB - // - $module_root_path = '../'; - $mx_root_path = '../../../'; - $phpEx = substr(strrchr(__FILE__, '.'), 1); - require($mx_root_path . 'admin/pagestart.' . $phpEx); - - define('ALBUM_MOD_PATH', 'album_mod/'); - - // Get general album information - if (!isset($album_root_path) || empty($album_root_path)) - { - $album_root_path = $module_root_path . ALBUM_MOD_PATH . ''; - } ! require($album_root_path . 'album_common.'.$phpEx); ! // require($module_root_path . 'album_mod/album_constants.'.$phpEx); // ********************************************************************** // Read language definition // ********************************************************************** ! if ( file_exists( $module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_admin.' . $phpEx ) ) ! { ! include( $module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_admin.' . $phpEx ); ! } ! else if ( file_exists( $module_root_path . 'language/lang_english/lang_admin.' . $phpEx ) ) { include( $module_root_path . 'language/lang_english/lang_admin.' . $phpEx ); } ! if ( file_exists( $module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.' . $phpEx ) ) ! { ! include( $module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.' . $phpEx ); ! } ! else if ( file_exists( $module_root_path . 'language/lang_english/lang_main.' . $phpEx ) ) { ! include( $module_root_path . 'language/lang_english/lang_main.' . $phpEx ); } ! if( !isset($HTTP_POST_VARS['submit']) ) { ! // Build the category selector $sql = "SELECT cat_id, cat_title, cat_order FROM ". ALBUM_CAT_TABLE ." --- 4,48 ---- * @package mxBB Portal Module - mx_smartor * @version $Id$ ! * @copyright (c) 2002-2006 [Smartor, Volodymyr (CLowN) Skoryk, IdleVoid, Jon Ohlsson] mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ ! /* Powered by Photo Album v2.x.x (c) 2002-2003 Smartor */ ! define( 'IN_PORTAL', 1 ); ! ! if ( !empty( $setmodules ) ) { ! $filename = basename( __FILE__ ); ! $module['Smartor_Album']['Permissions'] = "modules/mx_smartor/admin/" . $filename; return; } // Let's set the root dir for phpBB ! $module_root_path = './../'; ! $mx_root_path = './../../../'; ! $phpEx = substr(strrchr(__FILE__, '.'), 1); ! require( $mx_root_path . 'admin/pagestart.' . $phpEx ); ! include_once( $module_root_path . 'album_mod/album_common.' . $phpEx ); // ********************************************************************** // Read language definition // ********************************************************************** ! if ( !file_exists( $module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_admin.' . $phpEx ) ) { include( $module_root_path . 'language/lang_english/lang_admin.' . $phpEx ); } ! else { ! include( $module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_admin.' . $phpEx ); } ! $album_user_id = ALBUM_PUBLIC_GALLERY; ! ! if ( !isset( $HTTP_POST_VARS['submit'] ) ) { ! /* // Build the category selector $sql = "SELECT cat_id, cat_title, cat_order FROM ". ALBUM_CAT_TABLE ." *************** *** 80,111 **** ); } ! $template->set_filenames(array( ! 'body' => 'admin/album_cat_select_body.tpl') ! ); ! ! $template->assign_vars(array( 'L_ALBUM_AUTH_TITLE' => $lang['Album_Auth_Title'], 'L_ALBUM_AUTH_EXPLAIN' => $lang['Album_Auth_Explain'], 'L_SELECT_CAT' => $lang['Select_a_Category'], ! 'S_ALBUM_ACTION' => append_sid("admin_album_auth.$phpEx"), ! 'L_LOOK_UP_CAT' => $lang['Look_up_Category']) ! ); ! $template->pparse('body'); ! include($mx_root_path . 'admin/page_footer_admin.'.$phpEx); } else { ! if( !isset($HTTP_GET_VARS['cat_id']) ) { ! $cat_id = intval($HTTP_POST_VARS['cat_id']); ! $template->set_filenames(array( ! 'body' => 'admin/album_auth_body.tpl') ! ); ! $template->assign_vars(array( 'L_ALBUM_AUTH_TITLE' => $lang['Album_Auth_Title'], 'L_ALBUM_AUTH_EXPLAIN' => $lang['Album_Auth_Explain'], --- 65,100 ---- ); } + */ + album_read_tree(); + $s_album_cat_list = album_get_tree_option( ALBUM_ROOT_CATEGORY, ALBUM_AUTH_VIEW, ALBUM_SELECTBOX_INCLUDE_ALL | ALBUM_SELECTBOX_INCLUDE_ROOT ); + // --- Album Category Hierarchy : end + $template->set_filenames( array( 'body' => 'admin/album_cat_select_body.tpl' ) + ); ! $template->assign_vars( array( 'L_ALBUM_AUTH_TITLE' => $lang['Album_Auth_Title'], 'L_ALBUM_AUTH_EXPLAIN' => $lang['Album_Auth_Explain'], 'L_SELECT_CAT' => $lang['Select_a_Category'], ! 'S_ALBUM_ACTION' => append_sid( "admin_album_auth.$phpEx" ), ! 'L_LOOK_UP_CAT' => $lang['Look_up_Category'], ! // --- Album Category Hierarchy : begin ! // --- version : 1.1.0 ! 'CAT_SELECT_TITLE' => $s_album_cat_list ) ! // --- Album Category Hierarchy : end ! ); ! $template->pparse( 'body' ); ! include( $mx_root_path . 'admin/page_footer_admin.' . $phpEx ); } else { ! if ( !isset( $HTTP_GET_VARS['cat_id'] ) ) { ! $cat_id = intval( $HTTP_POST_VARS['cat_id'] ); ! $template->set_filenames( array( 'body' => 'admin/album_auth_body.tpl' ) ); ! $template->assign_vars( array( 'L_ALBUM_AUTH_TITLE' => $lang['Album_Auth_Title'], 'L_ALBUM_AUTH_EXPLAIN' => $lang['Album_Auth_Explain'], *************** *** 123,220 **** 'L_IS_MODERATOR' => $lang['Is_Moderator'], ! 'S_ALBUM_ACTION' => append_sid("admin_album_auth.$phpEx?cat_id=$cat_id"), ! ) ! ); // Get the list of phpBB usergroups $sql = "SELECT group_id, group_name FROM " . GROUPS_TABLE . " ! WHERE group_single_user <> " . TRUE ." ORDER BY group_name ASC"; ! if ( !($result = $db->sql_query($sql)) ) { ! mx_message_die(GENERAL_ERROR, 'Could not get group list', '', __LINE__, __FILE__, $sql); } ! while( $row = $db->sql_fetchrow($result) ) { $groupdata[] = $row; } // Get info of this cat $sql = "SELECT cat_id, cat_title, cat_view_groups, cat_upload_groups, cat_rate_groups, cat_comment_groups, cat_edit_groups, cat_delete_groups, cat_moderator_groups ! FROM ". ALBUM_CAT_TABLE ." WHERE cat_id = '$cat_id'"; ! if( !$result = $db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, 'Could not get Category information', '', __LINE__, __FILE__, $sql); } ! $thiscat = $db->sql_fetchrow($result); ! $view_groups = @explode(',', $thiscat['cat_view_groups']); ! $upload_groups = @explode(',', $thiscat['cat_upload_groups']); ! $rate_groups = @explode(',', $thiscat['cat_rate_groups']); ! $comment_groups = @explode(',', $thiscat['cat_comment_groups']); ! $edit_groups = @explode(',', $thiscat['cat_edit_groups']); ! $delete_groups = @explode(',', $thiscat['cat_delete_groups']); ! $moderator_groups = @explode(',', $thiscat['cat_moderator_groups']); ! for ($i = 0; $i < count($groupdata); $i++) { ! $template->assign_block_vars('grouprow', array( 'GROUP_ID' => $groupdata[$i]['group_id'], 'GROUP_NAME' => $groupdata[$i]['group_name'], ! ! 'VIEW_CHECKED' => (in_array($groupdata[$i]['group_id'], $view_groups)) ? 'checked="checked"' : '', ! ! 'UPLOAD_CHECKED' => (in_array($groupdata[$i]['group_id'], $upload_groups)) ? 'checked="checked"' : '', ! ! 'RATE_CHECKED' => (in_array($groupdata[$i]['group_id'], $rate_groups)) ? 'checked="checked"' : '', ! ! 'COMMENT_CHECKED' => (in_array($groupdata[$i]['group_id'], $comment_groups)) ? 'checked="checked"' : '', ! ! 'EDIT_CHECKED' => (in_array($groupdata[$i]['group_id'], $edit_groups)) ? 'checked="checked"' : '', ! ! 'DELETE_CHECKED' => (in_array($groupdata[$i]['group_id'], $delete_groups)) ? 'checked="checked"' : '', ! ! 'MODERATOR_CHECKED' => (in_array($groupdata[$i]['group_id'], $moderator_groups)) ? 'checked="checked"' : '') ); } ! $template->pparse('body'); ! include($mx_root_path . 'admin/page_footer_admin.'.$phpEx); } else { ! $cat_id = intval($HTTP_GET_VARS['cat_id']); ! $view_groups = @implode(',', $HTTP_POST_VARS['view']); ! $upload_groups = @implode(',', $HTTP_POST_VARS['upload']); ! $rate_groups = @implode(',', $HTTP_POST_VARS['rate']); ! $comment_groups = @implode(',', $HTTP_POST_VARS['comment']); ! $edit_groups = @implode(',', $HTTP_POST_VARS['edit']); ! $delete_groups = @implode(',', $HTTP_POST_VARS['delete']); ! $moderator_groups = @implode(',', $HTTP_POST_VARS['moderator']); ! $sql = "UPDATE ". ALBUM_CAT_TABLE ." SET cat_view_groups = '$view_groups', cat_upload_groups = '$upload_groups', cat_rate_groups = '$rate_groups', cat_comment_groups = '$comment_groups', cat_edit_groups = '$edit_groups', cat_delete_groups = '$delete_groups', cat_moderator_groups = '$moderator_groups' WHERE cat_id = '$cat_id'"; ! if ( !$result = $db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, 'Could not update Album config table', '', __LINE__, __FILE__, $sql); } ! // okay, return a message... ! $message = $lang['Album_Auth_successfully'] . '<br /><br />' . sprintf($lang['Click_return_album_auth'], '<a href="' . append_sid("admin_album_auth.$phpEx") . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_admin_index'], '<a href="' . append_sid($mx_root_path . "admin/index.$phpEx?pane=right") . '">', '</a>'); ! ! mx_message_die(GENERAL_MESSAGE, $message); } } - - /* Powered by Photo Album v2.x.x (c) 2002-2003 Smartor */ - ?> \ No newline at end of file --- 112,201 ---- 'L_IS_MODERATOR' => $lang['Is_Moderator'], ! 'S_ALBUM_ACTION' => append_sid( "admin_album_auth.$phpEx?cat_id=$cat_id" ), ! )); + // // Get the list of phpBB usergroups + // $sql = "SELECT group_id, group_name FROM " . GROUPS_TABLE . " ! WHERE group_single_user <> " . true . " ORDER BY group_name ASC"; ! if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, 'Could not get group list', '', __LINE__, __FILE__, $sql ); } ! while ( $row = $db->sql_fetchrow( $result ) ) { $groupdata[] = $row; } + // // Get info of this cat + // $sql = "SELECT cat_id, cat_title, cat_view_groups, cat_upload_groups, cat_rate_groups, cat_comment_groups, cat_edit_groups, cat_delete_groups, cat_moderator_groups ! FROM " . ALBUM_CAT_TABLE . " WHERE cat_id = '$cat_id'"; ! if ( !$result = $db->sql_query( $sql ) ) { ! mx_message_die( GENERAL_ERROR, 'Could not get Category information', '', __LINE__, __FILE__, $sql ); } ! $thiscat = $db->sql_fetchrow( $result ); ! $view_groups = @explode( ',', $thiscat['cat_view_groups'] ); ! $upload_groups = @explode( ',', $thiscat['cat_upload_groups'] ); ! $rate_groups = @explode( ',', $thiscat['cat_rate_groups'] ); ! $comment_groups = @explode( ',', $thiscat['cat_comment_groups'] ); ! $edit_groups = @explode( ',', $thiscat['cat_edit_groups'] ); ! $delete_groups = @explode( ',', $thiscat['cat_delete_groups'] ); ! $moderator_groups = @explode( ',', $thiscat['cat_moderator_groups'] ); ! for ( $i = 0; $i < count( $groupdata ); $i++ ) { ! $template->assign_block_vars( 'grouprow', array( 'GROUP_ID' => $groupdata[$i]['group_id'], 'GROUP_NAME' => $groupdata[$i]['group_name'], ! 'VIEW_CHECKED' => ( in_array( $groupdata[$i]['group_id'], $view_groups ) ) ? 'checked="checked"' : '', ! 'UPLOAD_CHECKED' => ( in_array( $groupdata[$i]['group_id'], $upload_groups ) ) ? 'checked="checked"' : '', ! 'RATE_CHECKED' => ( in_array( $groupdata[$i]['group_id'], $rate_groups ) ) ? 'checked="checked"' : '', ! 'COMMENT_CHECKED' => ( in_array( $groupdata[$i]['group_id'], $comment_groups ) ) ? 'checked="checked"' : '', ! 'EDIT_CHECKED' => ( in_array( $groupdata[$i]['group_id'], $edit_groups ) ) ? 'checked="checked"' : '', ! 'DELETE_CHECKED' => ( in_array( $groupdata[$i]['group_id'], $delete_groups ) ) ? 'checked="checked"' : '', ! 'MODERATOR_CHECKED' => ( in_array( $groupdata[$i]['group_id'], $moderator_groups ) ) ? 'checked="checked"' : '' ) ); } ! $template->pparse( 'body' ); ! include( $mx_root_path . 'admin/page_footer_admin.' . $phpEx ); } else { ! $cat_id = intval( $HTTP_GET_VARS['cat_id'] ); ! $view_groups = @implode( ',', $HTTP_POST_VARS['view'] ); ! $upload_groups = @implode( ',', $HTTP_POST_VARS['upload'] ); ! $rate_groups = @implode( ',', $HTTP_POST_VARS['rate'] ); ! $comment_groups = @implode( ',', $HTTP_POST_VARS['comment'] ); ! $edit_groups = @implode( ',', $HTTP_POST_VARS['edit'] ); ! $delete_groups = @implode( ',', $HTTP_POST_VARS['delete'] ); ! $moderator_groups = @implode( ',', $HTTP_POST_VARS['moderator'] ); ! $sql = "UPDATE " . ALBUM_CAT_TABLE . " SET cat_view_groups = '$view_groups', cat_upload_groups = '$upload_groups', cat_rate_groups = '$rate_groups', cat_comment_groups = '$comment_groups', cat_edit_groups = '$edit_groups', cat_delete_groups = '$delete_groups', cat_moderator_groups = '$moderator_groups' WHERE cat_id = '$cat_id'"; ! if ( !$result = $db->sql_query( $sql ) ) { ! mx_message_die( GENERAL_ERROR, 'Could not update Album config table', '', __LINE__, __FILE__, $sql ); } + // okay, return a message... + $message = $lang['Album_Auth_successfully'] . '<br /><br />' . sprintf( $lang['Click_return_album_auth'], '<a href="' . append_sid( "admin_album_auth.$phpEx" ) . '">', '</a>' ) . '<br /><br />' . sprintf( $lang['Click_return_admin_index'], '<a href="' . append_sid( $mx_root_path . "admin/index.$phpEx?pane=right" ) . '">', '</a>' ); ! mx_message_die( GENERAL_MESSAGE, $message ); } } ?> \ No newline at end of file |
|
From: OryNider <ory...@us...> - 2007-10-05 02:19:00
|
Update of /cvsroot/mxbb/mx_smartor/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv17906 Modified Files: Tag: core28x admin_album_auth.php Log Message: fixed. Index: admin_album_auth.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/admin/admin_album_auth.php,v retrieving revision 1.11 retrieving revision 1.11.2.1 diff -C2 -d -r1.11 -r1.11.2.1 *** admin_album_auth.php 9 Aug 2007 13:16:48 -0000 1.11 --- admin_album_auth.php 5 Oct 2007 02:18:25 -0000 1.11.2.1 *************** *** 4,63 **** * @package mxBB Portal Module - mx_smartor * @version $Id$ ! * @copyright (c) 2003 [sma...@ho..., Smartor] mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ ! define('IN_PORTAL', 1); ! if( !empty($setmodules) ) { ! $filename = basename(__FILE__); ! $module['Smartor_Album']['Permissions'] = "modules/mx_smartor/admin/" .$filename; return; } - // // Let's set the root dir for phpBB - // - $module_root_path = '../'; - $mx_root_path = '../../../'; - $phpEx = substr(strrchr(__FILE__, '.'), 1); - require($mx_root_path . 'admin/pagestart.' . $phpEx); - - define('ALBUM_MOD_PATH', 'album_mod/'); - - // Get general album information - if (!isset($album_root_path) || empty($album_root_path)) - { - $album_root_path = $module_root_path . ALBUM_MOD_PATH . ''; - } ! require($album_root_path . 'album_common.'.$phpEx); ! // require($module_root_path . 'album_mod/album_constants.'.$phpEx); // ********************************************************************** // Read language definition // ********************************************************************** ! if ( file_exists( $module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_admin.' . $phpEx ) ) ! { ! include( $module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_admin.' . $phpEx ); ! } ! else if ( file_exists( $module_root_path . 'language/lang_english/lang_admin.' . $phpEx ) ) { include( $module_root_path . 'language/lang_english/lang_admin.' . $phpEx ); } ! if ( file_exists( $module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.' . $phpEx ) ) ! { ! include( $module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.' . $phpEx ); ! } ! else if ( file_exists( $module_root_path . 'language/lang_english/lang_main.' . $phpEx ) ) { ! include( $module_root_path . 'language/lang_english/lang_main.' . $phpEx ); } ! if( !isset($HTTP_POST_VARS['submit']) ) { ! // Build the category selector $sql = "SELECT cat_id, cat_title, cat_order FROM ". ALBUM_CAT_TABLE ." --- 4,48 ---- * @package mxBB Portal Module - mx_smartor * @version $Id$ ! * @copyright (c) 2002-2006 [Smartor, Volodymyr (CLowN) Skoryk, IdleVoid, Jon Ohlsson] mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ ! /* Powered by Photo Album v2.x.x (c) 2002-2003 Smartor */ ! define( 'IN_PORTAL', 1 ); ! ! if ( !empty( $setmodules ) ) { ! $filename = basename( __FILE__ ); ! $module['Smartor_Album']['Permissions'] = "modules/mx_smartor/admin/" . $filename; return; } // Let's set the root dir for phpBB ! $module_root_path = './../'; ! $mx_root_path = './../../../'; ! $phpEx = substr(strrchr(__FILE__, '.'), 1); ! require( $mx_root_path . 'admin/pagestart.' . $phpEx ); ! include_once( $module_root_path . 'album_mod/album_common.' . $phpEx ); // ********************************************************************** // Read language definition // ********************************************************************** ! if ( !file_exists( $module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_admin.' . $phpEx ) ) { include( $module_root_path . 'language/lang_english/lang_admin.' . $phpEx ); } ! else { ! include( $module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_admin.' . $phpEx ); } ! $album_user_id = ALBUM_PUBLIC_GALLERY; ! ! if ( !isset( $HTTP_POST_VARS['submit'] ) ) { ! /* // Build the category selector $sql = "SELECT cat_id, cat_title, cat_order FROM ". ALBUM_CAT_TABLE ." *************** *** 80,111 **** ); } ! $template->set_filenames(array( ! 'body' => 'admin/album_cat_select_body.tpl') ! ); ! ! $template->assign_vars(array( 'L_ALBUM_AUTH_TITLE' => $lang['Album_Auth_Title'], 'L_ALBUM_AUTH_EXPLAIN' => $lang['Album_Auth_Explain'], 'L_SELECT_CAT' => $lang['Select_a_Category'], ! 'S_ALBUM_ACTION' => append_sid("admin_album_auth.$phpEx"), ! 'L_LOOK_UP_CAT' => $lang['Look_up_Category']) ! ); ! $template->pparse('body'); ! include($mx_root_path . 'admin/page_footer_admin.'.$phpEx); } else { ! if( !isset($HTTP_GET_VARS['cat_id']) ) { ! $cat_id = intval($HTTP_POST_VARS['cat_id']); ! $template->set_filenames(array( ! 'body' => 'admin/album_auth_body.tpl') ! ); ! $template->assign_vars(array( 'L_ALBUM_AUTH_TITLE' => $lang['Album_Auth_Title'], 'L_ALBUM_AUTH_EXPLAIN' => $lang['Album_Auth_Explain'], --- 65,100 ---- ); } + */ + album_read_tree(); + $s_album_cat_list = album_get_tree_option( ALBUM_ROOT_CATEGORY, ALBUM_AUTH_VIEW, ALBUM_SELECTBOX_INCLUDE_ALL | ALBUM_SELECTBOX_INCLUDE_ROOT ); + // --- Album Category Hierarchy : end + $template->set_filenames( array( 'body' => 'admin/album_cat_select_body.tpl' ) + ); ! $template->assign_vars( array( 'L_ALBUM_AUTH_TITLE' => $lang['Album_Auth_Title'], 'L_ALBUM_AUTH_EXPLAIN' => $lang['Album_Auth_Explain'], 'L_SELECT_CAT' => $lang['Select_a_Category'], ! 'S_ALBUM_ACTION' => append_sid( "admin_album_auth.$phpEx" ), ! 'L_LOOK_UP_CAT' => $lang['Look_up_Category'], ! // --- Album Category Hierarchy : begin ! // --- version : 1.1.0 ! 'CAT_SELECT_TITLE' => $s_album_cat_list ) ! // --- Album Category Hierarchy : end ! ); ! $template->pparse( 'body' ); ! include( $mx_root_path . 'admin/page_footer_admin.' . $phpEx ); } else { ! if ( !isset( $HTTP_GET_VARS['cat_id'] ) ) { ! $cat_id = intval( $HTTP_POST_VARS['cat_id'] ); ! $template->set_filenames( array( 'body' => 'admin/album_auth_body.tpl' ) ); ! $template->assign_vars( array( 'L_ALBUM_AUTH_TITLE' => $lang['Album_Auth_Title'], 'L_ALBUM_AUTH_EXPLAIN' => $lang['Album_Auth_Explain'], *************** *** 123,220 **** 'L_IS_MODERATOR' => $lang['Is_Moderator'], ! 'S_ALBUM_ACTION' => append_sid("admin_album_auth.$phpEx?cat_id=$cat_id"), ! ) ! ); // Get the list of phpBB usergroups $sql = "SELECT group_id, group_name FROM " . GROUPS_TABLE . " ! WHERE group_single_user <> " . TRUE ." ORDER BY group_name ASC"; ! if ( !($result = $db->sql_query($sql)) ) { ! mx_message_die(GENERAL_ERROR, 'Could not get group list', '', __LINE__, __FILE__, $sql); } ! while( $row = $db->sql_fetchrow($result) ) { $groupdata[] = $row; } // Get info of this cat $sql = "SELECT cat_id, cat_title, cat_view_groups, cat_upload_groups, cat_rate_groups, cat_comment_groups, cat_edit_groups, cat_delete_groups, cat_moderator_groups ! FROM ". ALBUM_CAT_TABLE ." WHERE cat_id = '$cat_id'"; ! if( !$result = $db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, 'Could not get Category information', '', __LINE__, __FILE__, $sql); } ! $thiscat = $db->sql_fetchrow($result); ! $view_groups = @explode(',', $thiscat['cat_view_groups']); ! $upload_groups = @explode(',', $thiscat['cat_upload_groups']); ! $rate_groups = @explode(',', $thiscat['cat_rate_groups']); ! $comment_groups = @explode(',', $thiscat['cat_comment_groups']); ! $edit_groups = @explode(',', $thiscat['cat_edit_groups']); ! $delete_groups = @explode(',', $thiscat['cat_delete_groups']); ! $moderator_groups = @explode(',', $thiscat['cat_moderator_groups']); ! for ($i = 0; $i < count($groupdata); $i++) { ! $template->assign_block_vars('grouprow', array( 'GROUP_ID' => $groupdata[$i]['group_id'], 'GROUP_NAME' => $groupdata[$i]['group_name'], ! ! 'VIEW_CHECKED' => (in_array($groupdata[$i]['group_id'], $view_groups)) ? 'checked="checked"' : '', ! ! 'UPLOAD_CHECKED' => (in_array($groupdata[$i]['group_id'], $upload_groups)) ? 'checked="checked"' : '', ! ! 'RATE_CHECKED' => (in_array($groupdata[$i]['group_id'], $rate_groups)) ? 'checked="checked"' : '', ! ! 'COMMENT_CHECKED' => (in_array($groupdata[$i]['group_id'], $comment_groups)) ? 'checked="checked"' : '', ! ! 'EDIT_CHECKED' => (in_array($groupdata[$i]['group_id'], $edit_groups)) ? 'checked="checked"' : '', ! ! 'DELETE_CHECKED' => (in_array($groupdata[$i]['group_id'], $delete_groups)) ? 'checked="checked"' : '', ! ! 'MODERATOR_CHECKED' => (in_array($groupdata[$i]['group_id'], $moderator_groups)) ? 'checked="checked"' : '') ); } ! $template->pparse('body'); ! include($mx_root_path . 'admin/page_footer_admin.'.$phpEx); } else { ! $cat_id = intval($HTTP_GET_VARS['cat_id']); ! $view_groups = @implode(',', $HTTP_POST_VARS['view']); ! $upload_groups = @implode(',', $HTTP_POST_VARS['upload']); ! $rate_groups = @implode(',', $HTTP_POST_VARS['rate']); ! $comment_groups = @implode(',', $HTTP_POST_VARS['comment']); ! $edit_groups = @implode(',', $HTTP_POST_VARS['edit']); ! $delete_groups = @implode(',', $HTTP_POST_VARS['delete']); ! $moderator_groups = @implode(',', $HTTP_POST_VARS['moderator']); ! $sql = "UPDATE ". ALBUM_CAT_TABLE ." SET cat_view_groups = '$view_groups', cat_upload_groups = '$upload_groups', cat_rate_groups = '$rate_groups', cat_comment_groups = '$comment_groups', cat_edit_groups = '$edit_groups', cat_delete_groups = '$delete_groups', cat_moderator_groups = '$moderator_groups' WHERE cat_id = '$cat_id'"; ! if ( !$result = $db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, 'Could not update Album config table', '', __LINE__, __FILE__, $sql); } ! // okay, return a message... ! $message = $lang['Album_Auth_successfully'] . '<br /><br />' . sprintf($lang['Click_return_album_auth'], '<a href="' . append_sid("admin_album_auth.$phpEx") . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_admin_index'], '<a href="' . append_sid($mx_root_path . "admin/index.$phpEx?pane=right") . '">', '</a>'); ! ! mx_message_die(GENERAL_MESSAGE, $message); } } - - /* Powered by Photo Album v2.x.x (c) 2002-2003 Smartor */ - ?> \ No newline at end of file --- 112,201 ---- 'L_IS_MODERATOR' => $lang['Is_Moderator'], ! 'S_ALBUM_ACTION' => append_sid( "admin_album_auth.$phpEx?cat_id=$cat_id" ), ! )); + // // Get the list of phpBB usergroups + // $sql = "SELECT group_id, group_name FROM " . GROUPS_TABLE . " ! WHERE group_single_user <> " . true . " ORDER BY group_name ASC"; ! if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, 'Could not get group list', '', __LINE__, __FILE__, $sql ); } ! while ( $row = $db->sql_fetchrow( $result ) ) { $groupdata[] = $row; } + // // Get info of this cat + // $sql = "SELECT cat_id, cat_title, cat_view_groups, cat_upload_groups, cat_rate_groups, cat_comment_groups, cat_edit_groups, cat_delete_groups, cat_moderator_groups ! FROM " . ALBUM_CAT_TABLE . " WHERE cat_id = '$cat_id'"; ! if ( !$result = $db->sql_query( $sql ) ) { ! mx_message_die( GENERAL_ERROR, 'Could not get Category information', '', __LINE__, __FILE__, $sql ); } ! $thiscat = $db->sql_fetchrow( $result ); ! $view_groups = @explode( ',', $thiscat['cat_view_groups'] ); ! $upload_groups = @explode( ',', $thiscat['cat_upload_groups'] ); ! $rate_groups = @explode( ',', $thiscat['cat_rate_groups'] ); ! $comment_groups = @explode( ',', $thiscat['cat_comment_groups'] ); ! $edit_groups = @explode( ',', $thiscat['cat_edit_groups'] ); ! $delete_groups = @explode( ',', $thiscat['cat_delete_groups'] ); ! $moderator_groups = @explode( ',', $thiscat['cat_moderator_groups'] ); ! for ( $i = 0; $i < count( $groupdata ); $i++ ) { ! $template->assign_block_vars( 'grouprow', array( 'GROUP_ID' => $groupdata[$i]['group_id'], 'GROUP_NAME' => $groupdata[$i]['group_name'], ! 'VIEW_CHECKED' => ( in_array( $groupdata[$i]['group_id'], $view_groups ) ) ? 'checked="checked"' : '', ! 'UPLOAD_CHECKED' => ( in_array( $groupdata[$i]['group_id'], $upload_groups ) ) ? 'checked="checked"' : '', ! 'RATE_CHECKED' => ( in_array( $groupdata[$i]['group_id'], $rate_groups ) ) ? 'checked="checked"' : '', ! 'COMMENT_CHECKED' => ( in_array( $groupdata[$i]['group_id'], $comment_groups ) ) ? 'checked="checked"' : '', ! 'EDIT_CHECKED' => ( in_array( $groupdata[$i]['group_id'], $edit_groups ) ) ? 'checked="checked"' : '', ! 'DELETE_CHECKED' => ( in_array( $groupdata[$i]['group_id'], $delete_groups ) ) ? 'checked="checked"' : '', ! 'MODERATOR_CHECKED' => ( in_array( $groupdata[$i]['group_id'], $moderator_groups ) ) ? 'checked="checked"' : '' ) ); } ! $template->pparse( 'body' ); ! include( $mx_root_path . 'admin/page_footer_admin.' . $phpEx ); } else { ! $cat_id = intval( $HTTP_GET_VARS['cat_id'] ); ! $view_groups = @implode( ',', $HTTP_POST_VARS['view'] ); ! $upload_groups = @implode( ',', $HTTP_POST_VARS['upload'] ); ! $rate_groups = @implode( ',', $HTTP_POST_VARS['rate'] ); ! $comment_groups = @implode( ',', $HTTP_POST_VARS['comment'] ); ! $edit_groups = @implode( ',', $HTTP_POST_VARS['edit'] ); ! $delete_groups = @implode( ',', $HTTP_POST_VARS['delete'] ); ! $moderator_groups = @implode( ',', $HTTP_POST_VARS['moderator'] ); ! $sql = "UPDATE " . ALBUM_CAT_TABLE . " SET cat_view_groups = '$view_groups', cat_upload_groups = '$upload_groups', cat_rate_groups = '$rate_groups', cat_comment_groups = '$comment_groups', cat_edit_groups = '$edit_groups', cat_delete_groups = '$delete_groups', cat_moderator_groups = '$moderator_groups' WHERE cat_id = '$cat_id'"; ! if ( !$result = $db->sql_query( $sql ) ) { ! mx_message_die( GENERAL_ERROR, 'Could not update Album config table', '', __LINE__, __FILE__, $sql ); } + // okay, return a message... + $message = $lang['Album_Auth_successfully'] . '<br /><br />' . sprintf( $lang['Click_return_album_auth'], '<a href="' . append_sid( "admin_album_auth.$phpEx" ) . '">', '</a>' ) . '<br /><br />' . sprintf( $lang['Click_return_admin_index'], '<a href="' . append_sid( $mx_root_path . "admin/index.$phpEx?pane=right" ) . '">', '</a>' ); ! mx_message_die( GENERAL_MESSAGE, $message ); } } ?> \ No newline at end of file |
|
From: OryNider <ory...@us...> - 2007-10-03 00:43:59
|
Update of /cvsroot/mxbb/mx_shotcast/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv24430 Modified Files: Tag: core28x shotcast_stats.tpl Log Message: template fix. Index: shotcast_stats.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_shotcast/templates/subSilver/shotcast_stats.tpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** shotcast_stats.tpl 6 Jun 2007 23:21:19 -0000 1.1 --- shotcast_stats.tpl 3 Oct 2007 00:43:52 -0000 1.1.2.1 *************** *** 2,16 **** <style type="text/css"> <!-- ! .table {font-family: Verdana; font-size: 10px;} td.nav { border-top: 1px solid #FFFFFF; border-bottom: 1px solid #859288; padding: 1px 0 1px 5px; font-weight: bold; font-size: 12px} ! td.stat { border-top: 1px solid #FFFFFF; border-bottom: 1px solid #859288; padding: 1px 0 1px 5px; color: #000e88;} --> </style> </head> ! <table width="{BLOCK_SIZE}" cellpadding="0" cellspacing="0" border="0" class="forumline"> ! <tr> ! <td> ! ! <table width="100%" cellpadding="0" cellspacing="1" border="0" class="forumline" style="border:none; padding:4px;"> <tr> <td class="row1" align="center" valign="middle" rowspan="1"> --- 2,12 ---- <style type="text/css"> <!-- ! .table { font-family: Verdana; font-size: 10px; background-color: #c0c0c0; } td.nav { border-top: 1px solid #FFFFFF; border-bottom: 1px solid #859288; padding: 1px 0 1px 5px; font-weight: bold; font-size: 12px} ! td.stat { border-top: 1px solid #FFFFFF; border-bottom: 1px solid #859288; padding: 1px 0 1px 5px; color: ##000e88;} --> </style> </head> ! <table width="{BLOCK_SIZE}" cellpadding="4" cellspacing="1" border="0" class="forumline" style="border-top:none;"> <tr> <td class="row1" align="center" valign="middle" rowspan="1"> *************** *** 79,84 **** </td> - </tr> - </table> - <br clear="all" /> --- 75,77 ---- |
|
From: OryNider <ory...@us...> - 2007-10-03 00:42:52
|
Update of /cvsroot/mxbb/mx_shotcast/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv23962 Modified Files: shotcast_stats.tpl Log Message: template upgrade Index: shotcast_stats.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_shotcast/templates/subSilver/shotcast_stats.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** shotcast_stats.tpl 6 Jun 2007 23:21:19 -0000 1.1 --- shotcast_stats.tpl 3 Oct 2007 00:42:42 -0000 1.2 *************** *** 2,16 **** <style type="text/css"> <!-- ! .table {font-family: Verdana; font-size: 10px;} td.nav { border-top: 1px solid #FFFFFF; border-bottom: 1px solid #859288; padding: 1px 0 1px 5px; font-weight: bold; font-size: 12px} ! td.stat { border-top: 1px solid #FFFFFF; border-bottom: 1px solid #859288; padding: 1px 0 1px 5px; color: #000e88;} --> </style> </head> ! <table width="{BLOCK_SIZE}" cellpadding="0" cellspacing="0" border="0" class="forumline"> ! <tr> ! <td> ! ! <table width="100%" cellpadding="0" cellspacing="1" border="0" class="forumline" style="border:none; padding:4px;"> <tr> <td class="row1" align="center" valign="middle" rowspan="1"> --- 2,12 ---- <style type="text/css"> <!-- ! .table { font-family: Verdana; font-size: 10px; background-color: #c0c0c0; } td.nav { border-top: 1px solid #FFFFFF; border-bottom: 1px solid #859288; padding: 1px 0 1px 5px; font-weight: bold; font-size: 12px} ! td.stat { border-top: 1px solid #FFFFFF; border-bottom: 1px solid #859288; padding: 1px 0 1px 5px; color: ##000e88;} --> </style> </head> ! <table width="{BLOCK_SIZE}" cellpadding="4" cellspacing="1" border="0" class="forumline" style="border-top:none;"> <tr> <td class="row1" align="center" valign="middle" rowspan="1"> *************** *** 79,84 **** </td> - </tr> - </table> - <br clear="all" /> --- 75,77 ---- |
|
From: OryNider <ory...@us...> - 2007-10-02 22:38:00
|
Update of /cvsroot/mxbb/mx_glance/contrib In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv29415 Modified Files: Tag: core28x mx_glance_sdesc.zip Log Message: Index: mx_glance_sdesc.zip =================================================================== RCS file: /cvsroot/mxbb/mx_glance/contrib/mx_glance_sdesc.zip,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -d -r1.1.2.2 -r1.1.2.3 Binary files /tmp/cvssXAGKh and /tmp/cvsbOINeB differ |
|
From: OryNider <ory...@us...> - 2007-10-02 22:37:20
|
Update of /cvsroot/mxbb/mx_glance/templates/_core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv28958 Added Files: glance_body.tpl glance_body_big.tpl Log Message: upgrade for 2.9.x --- NEW FILE: glance_body.tpl --- <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.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 --> <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.TOPIC_FOLDER_IMG_SRC} </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.tpl --- <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.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> <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.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> <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...> - 2007-10-02 22:36:43
|
Update of /cvsroot/mxbb/mx_glance/contrib In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv28934 Modified Files: mx_glance_sdesc.zip Log Message: upgrade for 2.9.x Index: mx_glance_sdesc.zip =================================================================== RCS file: /cvsroot/mxbb/mx_glance/contrib/mx_glance_sdesc.zip,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsn1CqLU and /tmp/cvs9hw30k differ |
|
From: OryNider <ory...@us...> - 2007-10-02 22:35:51
|
Update of /cvsroot/mxbb/mx_glance/templates/_core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv28460/_core Log Message: Directory /cvsroot/mxbb/mx_glance/templates/_core added to the repository |
|
From: OryNider <ory...@us...> - 2007-10-02 22:01:36
|
Update of /cvsroot/mxbb/mx_glance/contrib In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3511 Added Files: Tag: core28x mx_glance_sdesc.zip Removed Files: Tag: core28x mx_glance_sdesc.php Log Message: exploit vurnerable fie archived. --- mx_glance_sdesc.php DELETED --- --- NEW FILE: mx_glance_sdesc.zip --- (This appears to be a binary file; contents omitted.) |
|
From: OryNider <ory...@us...> - 2007-10-02 21:57:27
|
Update of /cvsroot/mxbb/mx_glance/contrib In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv2154 Added Files: mx_glance_sdesc.zip Removed Files: mx_glance_sdesc.php Log Message: exploit bug, file archived :P --- mx_glance_sdesc.php DELETED --- --- NEW FILE: mx_glance_sdesc.zip --- (This appears to be a binary file; contents omitted.) |
|
From: OryNider <ory...@us...> - 2007-10-02 05:13:51
|
Update of /cvsroot/mxbb/mx_music/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv22272 Modified Files: music_cat.php music_media_cat.php music_page.php music_pic_cat.php Log Message: youtube removed the feature for custom image :( Index: music_media_cat.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/includes/music_media_cat.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** music_media_cat.php 21 Sep 2007 23:22:45 -0000 1.6 --- music_media_cat.php 2 Oct 2007 05:13:45 -0000 1.7 *************** *** 955,959 **** $url_download = append_sid($thissong['song_url']); $lang['Download'] = ( !empty($lang['Share']) ? $lang['Share'] : 'Share URL' ); ! $img_id = !empty($thissong['song_imagename']) ? $thissong['song_imagename'] : 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; $url_video = ( !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/v/' . $videoid['song_url'][1] : $url_download ); //$url_player = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/player2.swf?video_id=' . $videoid['song_url'][1] : $url_download; --- 955,960 ---- $url_download = append_sid($thissong['song_url']); $lang['Download'] = ( !empty($lang['Share']) ? $lang['Share'] : 'Share URL' ); ! //$img_id = !empty($thissong['song_imagename']) ? $img_id : 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; ! $img_id = 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; $url_video = ( !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/v/' . $videoid['song_url'][1] : $url_download ); //$url_player = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/player2.swf?video_id=' . $videoid['song_url'][1] : $url_download; Index: music_page.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/includes/music_page.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** music_page.php 21 Sep 2007 23:22:45 -0000 1.10 --- music_page.php 2 Oct 2007 05:13:45 -0000 1.11 *************** *** 137,141 **** else { ! $img_id = $song_image_path . $thissong['song_imagename']; } --- 137,141 ---- else { ! $img_id = PORTAL_URL . $song_image_path . $thissong['song_imagename']; } *************** *** 429,433 **** $url_download = append_sid($thissong['song_url']); $lang['Download'] = ( !empty($lang['Share']) ? $lang['Share'] : 'Share URL' ); ! $img_id = !empty($thissong['song_imagename']) ? $thissong['song_imagename'] : 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; $url_video = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/v/' . $videoid['song_url'][1] : $url_download; //$url_player = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/player2.swf?video_id=' . $videoid['song_url'][1] : $url_download; --- 429,434 ---- $url_download = append_sid($thissong['song_url']); $lang['Download'] = ( !empty($lang['Share']) ? $lang['Share'] : 'Share URL' ); ! //$img_id = !empty($thissong['song_imagename']) ? $img_id : 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; ! $img_id = 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; $url_video = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/v/' . $videoid['song_url'][1] : $url_download; //$url_player = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/player2.swf?video_id=' . $videoid['song_url'][1] : $url_download; Index: music_pic_cat.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/includes/music_pic_cat.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** music_pic_cat.php 21 Sep 2007 23:22:45 -0000 1.5 --- music_pic_cat.php 2 Oct 2007 05:13:45 -0000 1.6 *************** *** 662,666 **** $url_download = append_sid($thissong['song_url']); $lang['Download'] = ( !empty($lang['Share']) ? $lang['Share'] : 'Share URL' ); ! $img_id = !empty($thissong['song_imagename']) ? $thissong['song_imagename'] : 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; $url_video = ( !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/v/' . $videoid['song_url'][1] : $url_download ); //$url_player = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/player2.swf?video_id=' . $videoid['song_url'][1] : $url_download; --- 662,667 ---- $url_download = append_sid($thissong['song_url']); $lang['Download'] = ( !empty($lang['Share']) ? $lang['Share'] : 'Share URL' ); ! //$img_id = !empty($thissong['song_imagename']) ? $img_id : 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; ! $img_id = 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; $url_video = ( !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/v/' . $videoid['song_url'][1] : $url_download ); //$url_player = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/player2.swf?video_id=' . $videoid['song_url'][1] : $url_download; Index: music_cat.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/includes/music_cat.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** music_cat.php 21 Sep 2007 23:22:45 -0000 1.12 --- music_cat.php 2 Oct 2007 05:13:45 -0000 1.13 *************** *** 668,672 **** $url_download = append_sid($thissong['song_url']); $lang['Download'] = ( !empty($lang['Share']) ? $lang['Share'] : 'Share URL' ); ! $img_id = !empty($thissong['song_imagename']) ? $thissong['song_imagename'] : 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; $url_video = ( !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/v/' . $videoid['song_url'][1] : $url_download ); //$url_player = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/player2.swf?video_id=' . $videoid['song_url'][1] : $url_download; --- 668,673 ---- $url_download = append_sid($thissong['song_url']); $lang['Download'] = ( !empty($lang['Share']) ? $lang['Share'] : 'Share URL' ); ! //$img_id = !empty($thissong['song_imagename']) ? $img_id : 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; ! $img_id = 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; $url_video = ( !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/v/' . $videoid['song_url'][1] : $url_download ); //$url_player = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/player2.swf?video_id=' . $videoid['song_url'][1] : $url_download; |
|
From: OryNider <ory...@us...> - 2007-10-02 05:11:25
|
Update of /cvsroot/mxbb/mx_music/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21137/includes Modified Files: Tag: core28x music_cat.php music_media_cat.php music_page.php music_pic_cat.php Log Message: youtube removed the feature for custom image :( Index: music_media_cat.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/includes/music_media_cat.php,v retrieving revision 1.2.2.3 retrieving revision 1.2.2.4 diff -C2 -d -r1.2.2.3 -r1.2.2.4 *** music_media_cat.php 21 Sep 2007 23:24:52 -0000 1.2.2.3 --- music_media_cat.php 2 Oct 2007 05:11:19 -0000 1.2.2.4 *************** *** 955,959 **** $url_download = append_sid($thissong['song_url']); $lang['Download'] = ( !empty($lang['Share']) ? $lang['Share'] : 'Share URL' ); ! $img_id = !empty($thissong['song_imagename']) ? $thissong['song_imagename'] : 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; $url_video = ( !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/v/' . $videoid['song_url'][1] : $url_download ); //$url_player = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/player2.swf?video_id=' . $videoid['song_url'][1] : $url_download; --- 955,960 ---- $url_download = append_sid($thissong['song_url']); $lang['Download'] = ( !empty($lang['Share']) ? $lang['Share'] : 'Share URL' ); ! //$img_id = !empty($thissong['song_imagename']) ? $img_id : 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; ! $img_id = 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; $url_video = ( !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/v/' . $videoid['song_url'][1] : $url_download ); //$url_player = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/player2.swf?video_id=' . $videoid['song_url'][1] : $url_download; Index: music_page.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/includes/music_page.php,v retrieving revision 1.7.2.3 retrieving revision 1.7.2.4 diff -C2 -d -r1.7.2.3 -r1.7.2.4 *** music_page.php 21 Sep 2007 23:24:53 -0000 1.7.2.3 --- music_page.php 2 Oct 2007 05:11:20 -0000 1.7.2.4 *************** *** 137,141 **** else { ! $img_id = $song_image_path . $thissong['song_imagename']; } --- 137,141 ---- else { ! $img_id = PORTAL_URL . $song_image_path . $thissong['song_imagename']; } *************** *** 429,433 **** $url_download = append_sid($thissong['song_url']); $lang['Download'] = ( !empty($lang['Share']) ? $lang['Share'] : 'Share URL' ); ! $img_id = !empty($thissong['song_imagename']) ? $thissong['song_imagename'] : 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; $url_video = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/v/' . $videoid['song_url'][1] : $url_download; //$url_player = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/player2.swf?video_id=' . $videoid['song_url'][1] : $url_download; --- 429,434 ---- $url_download = append_sid($thissong['song_url']); $lang['Download'] = ( !empty($lang['Share']) ? $lang['Share'] : 'Share URL' ); ! //$img_id = !empty($thissong['song_imagename']) ? $img_id : 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; ! $img_id = 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; $url_video = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/v/' . $videoid['song_url'][1] : $url_download; //$url_player = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/player2.swf?video_id=' . $videoid['song_url'][1] : $url_download; Index: music_pic_cat.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/includes/music_pic_cat.php,v retrieving revision 1.2.2.3 retrieving revision 1.2.2.4 diff -C2 -d -r1.2.2.3 -r1.2.2.4 *** music_pic_cat.php 21 Sep 2007 23:24:53 -0000 1.2.2.3 --- music_pic_cat.php 2 Oct 2007 05:11:20 -0000 1.2.2.4 *************** *** 662,666 **** $url_download = append_sid($thissong['song_url']); $lang['Download'] = ( !empty($lang['Share']) ? $lang['Share'] : 'Share URL' ); ! $img_id = !empty($thissong['song_imagename']) ? $thissong['song_imagename'] : 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; $url_video = ( !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/v/' . $videoid['song_url'][1] : $url_download ); //$url_player = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/player2.swf?video_id=' . $videoid['song_url'][1] : $url_download; --- 662,667 ---- $url_download = append_sid($thissong['song_url']); $lang['Download'] = ( !empty($lang['Share']) ? $lang['Share'] : 'Share URL' ); ! //$img_id = !empty($thissong['song_imagename']) ? $img_id : 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; ! $img_id = 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; $url_video = ( !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/v/' . $videoid['song_url'][1] : $url_download ); //$url_player = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/player2.swf?video_id=' . $videoid['song_url'][1] : $url_download; Index: music_cat.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/includes/music_cat.php,v retrieving revision 1.8.2.3 retrieving revision 1.8.2.4 diff -C2 -d -r1.8.2.3 -r1.8.2.4 *** music_cat.php 21 Sep 2007 23:24:52 -0000 1.8.2.3 --- music_cat.php 2 Oct 2007 05:11:19 -0000 1.8.2.4 *************** *** 668,672 **** $url_download = append_sid($thissong['song_url']); $lang['Download'] = ( !empty($lang['Share']) ? $lang['Share'] : 'Share URL' ); ! $img_id = !empty($thissong['song_imagename']) ? $thissong['song_imagename'] : 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; $url_video = ( !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/v/' . $videoid['song_url'][1] : $url_download ); //$url_player = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/player2.swf?video_id=' . $videoid['song_url'][1] : $url_download; --- 668,673 ---- $url_download = append_sid($thissong['song_url']); $lang['Download'] = ( !empty($lang['Share']) ? $lang['Share'] : 'Share URL' ); ! //$img_id = !empty($thissong['song_imagename']) ? $img_id : 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; ! $img_id = 'http://img.' . $domain . '/vi/' . $videoid['song_url'][1] . '/default.jpg'; $url_video = ( !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/v/' . $videoid['song_url'][1] : $url_download ); //$url_player = !empty($videoid['song_url'][1]) ? 'http://' . $domain . '/player2.swf?video_id=' . $videoid['song_url'][1] : $url_download; |
|
From: OryNider <ory...@us...> - 2007-10-02 05:11:22
|
Update of /cvsroot/mxbb/mx_music/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21137/admin Modified Files: Tag: core28x admin_music_cfg.php Log Message: youtube removed the feature for custom image :( Index: admin_music_cfg.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/admin/admin_music_cfg.php,v retrieving revision 1.4.2.3 retrieving revision 1.4.2.4 diff -C2 -d -r1.4.2.3 -r1.4.2.4 *** admin_music_cfg.php 21 Sep 2007 22:25:17 -0000 1.4.2.3 --- admin_music_cfg.php 2 Oct 2007 05:11:18 -0000 1.4.2.4 *************** *** 87,91 **** $message = $lang['Music_config_updated'] . "<br /><br />" . sprintf($lang['Click_return_music_config'], "<a href=\"" . append_sid("admin_music_cfg.$phpEx") . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_admin_index'], "<a href=\"" . append_sid($mx_root_path . "admin/index.$phpEx?pane=right") . "\">", "</a>"); ! message_die(GENERAL_MESSAGE, $message); } } --- 87,91 ---- $message = $lang['Music_config_updated'] . "<br /><br />" . sprintf($lang['Click_return_music_config'], "<a href=\"" . append_sid("admin_music_cfg.$phpEx") . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_admin_index'], "<a href=\"" . append_sid($mx_root_path . "admin/index.$phpEx?pane=right") . "\">", "</a>"); ! mx_message_die(GENERAL_MESSAGE, $message); } } |
|
From: OryNider <ory...@us...> - 2007-10-02 05:07:07
|
Update of /cvsroot/mxbb/mx_shotcast/images In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv17680 Added Files: Tag: core28x adview.gif icon_radio.gif icon_radio_hot.gif iframe_bg.png mp3.gif offline.gif online.gif real_front.gif shotcast_front_01.gif shotcast_front_02.gif shotcast_front_03.gif spacer.gif wmp.gif wmp_front.gif Log Message: readding files... --- NEW FILE: iframe_bg.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mp3.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: spacer.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_radio_hot.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: online.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: wmp_front.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: offline.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: real_front.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: shotcast_front_01.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: wmp.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: adview.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: shotcast_front_03.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: shotcast_front_02.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_radio.gif --- (This appears to be a binary file; contents omitted.) |
|
From: OryNider <ory...@us...> - 2007-10-02 05:06:29
|
Update of /cvsroot/mxbb/mx_shotcast In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv17516 Added Files: Tag: core28x shotcast_last10.php stop_real.php stop_wmp.php Log Message: readding files... --- NEW FILE: stop_wmp.php --- <?php define( 'IN_PORTAL', 1 ); $module_root_path = './'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($module_root_path . 'shotcast_config.'.$phpEx); if (empty($song[0])) { $song[0] = $text[6]; } ?> <html><head> <STYLE type=text/css>BODY { PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px; BACKGROUND-REPEAT: repeat-x; FONT-FAMILY: Arial, Helvetica, sans-serif; BACKGROUND-COLOR: #CEDEDF; } </STYLE> </head><body> <TABLE cellSpacing=0 cellPadding=0 width=315 border=0> <TBODY> <TR> <TD vAlign=top align=left> <TABLE cellSpacing=0 cellPadding=0 width=300 border=0> <TBODY> <!-- Check Media Player Version --> <SCRIPT LANGUAGE="JavaScript"> var WMP7; var Mac; var Win; var Unix; var Linux; Win = navigator.userAgent.indexOf("Win") > -1; Mac = navigator.userAgent.indexOf("Mac") > -1; Unix = navigator.appVersion.indexOf("X11") > -1; Linux = navigator.appVersion.indexOf("Linux") > -1; if (Mac) { if ( navigator.appName == "Netscape" ){ //Netscape code document.write (' <Embed id="wmp" name="wmp" type="audio/mpeg"'); document.write (' pluginspage="http://www.microsoft.com/windows/windowsmedia/"'); document.write (' filename="http://<?=$scip;?>:<?=$scport;?>"'); document.write (' src="http://<?=$scip;?>:<?=$scport;?>"'); document.write (' Name=MediaPlayer'); document.write (' ShowControls=1'); document.write (' ShowDisplay=1'); document.write (' ShowStatusBar=1'); document.write (' AUTOSTART=1'); document.write (' width=332'); document.write (' height=354>'); document.write (' </Embed>'); } if ( navigator.appName != "Netscape" ){ document.write(' <embed id="wmp" name="wmp" type="audio/mpeg" width="332" height="354" ShowTracker="0" ShowDisplay="0" ShowGotoBar="0" ShowStatusBar="1" ShowCaptioning="0" AUTOSTART="1" src="http://<?=$scip;?>:<?=$scport;?>" ></embed>'); } } if (Win) { if ( navigator.appName != "Netscape" ){ WMP7 = new ActiveXObject('WMPlayer.OCX'); } // Windows Media Player 7 Code if ( WMP7 ) { document.write ('<OBJECT ID=MediaPlayer '); document.write (' CLASSID=CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6'); document.write (' standby="Loading Microsoft Windows Media Player components..."'); document.write (' TYPE="application/x-oleobject" width="332" height="354">'); document.write ('<PARAM NAME="url" VALUE="http://<?=$scip;?>:<?=$scport;?>">'); document.write ('<PARAM NAME="AutoStart" VALUE="false">'); document.write ('<PARAM NAME="ShowControls" VALUE="1">'); document.write ('<PARAM NAME="uiMode" VALUE="mini">'); document.write (' <Embed type="application/x-mplayer2"'); document.write (' pluginspage="http://www.microsoft.com/isapi/redir.dll?prd=windows&sbp=mediaplayer&ar=Media&sba=Plugin&"'); document.write (' filename="http://<?=$scip;?>:<?=$scport;?>"'); document.write (' src="http://<?=$scip;?>:<?=$scport;?>"'); document.write (' Name="MediaPlayer"'); document.write (' ShowControls="1"'); document.write (' ShowDisplay="1"'); document.write (' ShowStatusBar="1"'); document.write (' AUTOSTART="false"'); document.write (' width="332"'); document.write (' height="354">'); document.write (' </embed>'); document.write ('</OBJECT>'); } // Windows Media Player 6.4 Code else { //IE Code document.write ('<OBJECT ID=MediaPlayer '); document.write (' CLASSID=CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95'); document.write (' CODEBASE=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715 '); document.write (' standby="Loading Microsoft Windows Media Player components..."'); document.write (' TYPE="application/x-oleobject" width="332" height="354">'); document.write (' <PARAM NAME="FileName" VALUE="http://<?=$scip;?>:<?=$scport;?>">'); document.write ('<PARAM NAME="url" VALUE="http://<?=$scip;?>:<?=$scport;?>"> '); document.write ('<PARAM NAME="AutoStart" VALUE="1">'); document.write ('<PARAM NAME="ShowControls" VALUE="1">'); //Firefox code document.write (' <Embed type="application/x-mplayer2"'); document.write (' pluginspage="http://www.microsoft.com/isapi/redir.dll?prd=windows&sbp=mediaplayer&ar=Media&sba=Plugin&"'); document.write (' filename="http://<?=$scip;?>:<?=$scport;?>"'); document.write (' src="http://<?=$scip;?>:<?=$scport;?>"'); document.write (' Name="MediaPlayer"'); document.write (' ShowControls="1"'); document.write (' ShowDisplay="1"'); document.write (' ShowStatusBar="1"'); document.write (' AUTOSTART="false"'); document.write (' width="332"'); document.write (' height="354">'); document.write (' </embed>'); document.write ('</OBJECT>'); } } else { document.write(' <embed type="audio/mpeg" width="332" height="354" AUTOSTART="1" filename="http://<?=$scip;?>:<?=$scport;?>" src="http://<?=$scip;?>:<?=$scport;?>" ></embed>'); } </SCRIPT> </TD></TR> </TBODY></TABLE> </body> </html> --- NEW FILE: stop_real.php --- <?php define( 'IN_PORTAL', 1 ); $module_root_path = './'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($module_root_path . 'shotcast_config.'.$phpEx); if (empty($song[0])) { $song[0] = $text[6]; } ?> <html> <head> <title>RealMedia</title> </head> <body> <p> <object id="RVOCX" classid="CLSID:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" width="320" height="172"> <param name="SRC" value="http://<?=$scip;?>:<?=$scport;?>/<?=$playlist;?>"> <param name="CONTROLS" value="ImageWindow"> <param name="CONSOLE" value="cons"> <embed autostart="true" src="http://<?=$scip;?>:<?=$scport;?>/<?=$playlist;?>" type="audio/x-pn-realaudio-plugin" width="320" height="172" controls="ImageWindow" console="cons"> </embed> <param name="autostart" value="false"> </object> </p> <p> <object id=RVOCX classid="CLSID:CFCDAA03-8BE4-11CF-B84B-0020AFBBCCFA" width="320" height="30" > <param name="SRC" value="http://<?=$scip;?>:<?=$scport;?>/<?=$playlist;?>"> <param name="CONTROLS" value="ControlPanel"> <param name="CONSOLE" value="cons"> <embed src="http://<?=$scip;?>:<?=$scport;?>/<?=$playlist;?>" type="audio/x-pn-realaudio-plugin" width="320" height="30" controls="ControlPanel" console="cons" > </embed> </object> </p> </body> </html> --- NEW FILE: shotcast_last10.php --- <?php /** * * @package mxBB Portal Module - mx_shotcast * @version $Id: shotcast_last10.php,v 1.2.2.2 2007/10/02 05:06:23 orynider Exp $ * @copyright (c) 2002-2006 [OryNider] mxBB Development Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ // // ERROR HANDLING // //error_reporting( E_ALL ); @ini_set( 'display_errors', '1' ); // -------------------------------------------------------------------------------- // Security check // if( !defined('IN_PORTAL') || !is_object($mx_block)) { die("Hacking attempt"); } // // Common Includes and Read Module Settings // if( !file_exists($module_root_path . 'includes/common.'.$phpEx) ) { mx_message_die(GENERAL_ERROR, "Could not find mx_shotcast includes folder.", "", __LINE__, __FILE__); } @define('_SHOTCAST_CONFIG', true); include_once($module_root_path . 'includes/common.'.$phpEx); include_once($module_root_path . 'getinfo.'.$phpEx); $bgcolor = '#ffffff'; // Page background color $tablew = '100%'; // Table width $tableh = '1'; $toprow = '#c0c0c0'; // Top background color $bottom = '#ffffff'; // Bottom background color $border = '#000000'; // Border color $thickness = '2'; // Border thickness $padding = '4'; // Cell padding $font = 'Verdana'; // Font $fontsize = '2'; // Font size $block_size = ( isset($block_size) && !empty($block_size) ? $block_size : '100%' ); $refresh = '30'; // How often should it refresh? (seconds) // Return JavaScript or HTML $jsOutput=FALSE; // TRUE=js | FALSE=HTML // try to get the target from the url... /* $host = $_REQUEST[host]; if (!$host) $host = $yourIP; $port = $_REQUEST[port]; if (!$port) $port = $yourPORT; */ $host = $shotcast_config['shotcast_host']; // IP adress or domain $port = $shotcast_config['shotcast_port']; // Port if( empty($lang['Before_that_you_heard']) && empty($lang['Now_Playing']) ) { $lang['Before_that_you_heard'] = "Before that you heard"; $lang['Now_Playing'] = "Now Playing"; $lang['Off_Air'] = "The server is <b>Off-Air</b>, try again later."; } $lf = chr(10); // 0x0A [\n] // The lastN is configurable at the DNAS with, ShowLastSongs= it defaults to 10 and has a maximum of 20 $t_max = $_REQUEST[n]; if (!t_max || $t_max<1 || $t_max>19) $t_max=10; //19 is the max here because 20=current_track+19 // Let's get /index.html first... to keep this short, there is no code to handle the dnas being down // or not running, so the script will display nothing in those cases. $connect_timeout=5; $success=0; if (@phpversion() >= '5.0.0' && ($text[1] == 1)) { $state = "Up"; } else { $state = "Down"; } if (@phpversion() < '5.0.0') { $state = "Up"; } $fp1 = @fsockopen($host, $port, &$errno, &$errstr, $connect_timeout); //open connection if (!$fp1) { //if this fails, I'm done.... $er = '<p>' . $lang['Socket_functions_disabled'] . '</p>'; @fclose($fp1); $success++; } else { $er = ''; $request="GET /index.html HTTP/1.1\r\nHost:" . $host . ":" . $port . "\r\nUser-Agent: SHOUTcast DNAS Status [index] * (Mozilla/PHP)\r\nConnection: close\r\n\r\n"; //get index.html @fputs($fp1,$request,strlen($request)); $page=''; while(!feof($fp1)) { $page .= fread($fp1, 16384); } @fclose($fp1); // now I have the entire /index.html in $page -- all I want from here is the current track... // (hint-hint) $song00 = ereg_replace("</b></td>.*", "", ereg_replace(".*Current Song: </font></td><td><font class=default><b>", "", $page)); // easy, right <img src="images/smilies/smile.gif" border="0" alt=""> // now let's get /played.html... (this is kinda long) $fp = @fsockopen($host, $port, &$errno, &$errstr, $connect_timeout); if(!$fp) { //if connection could not be made @fclose($fp); $success++; } else { $request="GET /played.html HTTP/1.1\r\nHost: " . $host . ":" . $port . "\r\nUser-Agent: SHOUTcast DNAS Status [played] * (Mozilla/PHP)\r\n"."Connection: close\r\n\r\n"; @fputs($fp,$request,strlen($request)); $page=''; while (!feof($fp)) { $page .= @fread($fp, 16384); } @fclose($fp); //close connection $played_html=$page; if ($played_html) { $played_html = ereg_replace('<x>','|-|',ereg_replace('</tr>','',ereg_replace('</td><td>','<x>',ereg_replace('<tr><td>','',ereg_replace('</tr>','</tr>' . $lf,ereg_replace('-->','--]',ereg_replace('<!--','[!--',ereg_replace('</table><br><br>.*','',ereg_replace('.*<b>Current Song</b></td></tr>','',$played_html))))))))); $xxn = strlen($played_html); $r = 2; $t_count = 0; $reading = 0; $track[0] = $song00; while ($r<$xxn & $t_count<=$t_max) { $cur = substr($played_html,$r,1); if ($cur == $lf) { $reading=0; } if ($reading == 1) { $track[$t_count] .= $cur; } if ($cur == "|" & substr($played_html,$r-1,1) == "-" & substr($played_html,$r-2,1) == "|") { $reading = 1; $t_count++; } $r++; } } } } // I now have $track[0-N] containg the current plus last N tracks... // Output time... if (!empty($er)) { // I couldn't connect to the DNAS $r = 0; $output_string = ''; $output_string .= '<table width="' . $tablew . '" height="' . $tableh . '" class="forumline" border="' . $thickness . '" bordercolor="' . $border . '"><tr bgcolor="' . $toprow . '"><td vAlign=top> <table width="100%" border="0" cellpadding="' . $padding . '"><tr><td> <font face=' . $font . ' size=' . $fontsize . '>' . $er; //Now playing... if ($success != 0) { $output_string .= '<td><tr>'; } if ($success == 0) { while ($r <= $t_max) { if ($r==0) { $output_string .= '<tr><td vAlign=top> ' . $lang['Before_that_you_heard'] . ' :</i><br><br>'; } else { $output_string .= str_replace("'", "'",str_replace('"', '"',$track[$r])) . '<br>'; } $r++; } } // I also want to close the table code now.... $output_string .= '</td></tr></font></td></tr></table></td></tr></table>'; echo $output_string . ''; } else if ($success == 0 && $state == "Up") { echo " <table width=\" . $block_size . \" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" class=\"forumline\">\n"; $r = 0; $output_string=''; //tweak the output string (the table init) here.... $output_string .= '<table width="' . $tablew . '" height="' . $tableh . '" class="forumline" border="' . $thickness . '" bordercolor="' . $border . '"><tr bgcolor="' . $toprow . '"><td vAlign=top> <table width="100%" border="0" cellpadding="' . $padding . '"><tr><td vAlign=top> <font face=' . $font . ' size=' . $fontsize . '>'; //Now playing... while ($r<=$t_max) { if ($r==0) { $output_string .= $lang['Now_Playing'] . ': <A><b>'.str_replace("'", "'",str_replace('"', '"',$track[$r])).'</b></A></td></tr></table></td></tr><tr><td><table bgcolor=' . $bottom . ' width="100%" border="0" cellpadding="' . $padding . '"><tr><td><br><font face=' . $font . ' size=' . $fontsize . '> ' . $lang['Before_that_you_heard'] . ' :<b><br><br>'; } else { $output_string .= str_replace("'", "'",str_replace('"', '"',$track[$r])) . '<br>'; } $r++; } // I also want to close the table code now.... $output_string .= '</b></font></td></tr></table></td></tr></table>'; echo $output_string . ''; } else { // I couldn't connect to the DNAS $r = 0; $output_string = ''; $output_string .= '<table width="' . $tablew . '" height="' . $tableh . '" class="forumline" border="' . $thickness . '" bordercolor="' . $border . '"><tr bgcolor="' . $toprow . '"><td vAlign=top> <table width="100%" border="0" cellpadding="' . $padding . '"><tr><td> <font face=' . $font . ' size=' . $fontsize . '>' . $lang['Off_Air']; //Now playing... if ($success != 0) { $output_string .= '<td><tr>'; } if ($success == 0) { while ($r <= $t_max) { if ($r==0) { $output_string .= '<tr><td vAlign=top> ' . $lang['Before_that_you_heard'] . ' :</i><br><br>'; } else { $output_string .= str_replace("'", "'",str_replace('"', '"',$track[$r])) . '<br>'; } $r++; } } // I also want to close the table code now.... $output_string .= '</td></tr></font></td></tr></table></td></tr></table>'; echo $output_string . ''; } ?> |
|
From: OryNider <ory...@us...> - 2007-10-02 05:04:43
|
Update of /cvsroot/mxbb/mx_shotcast/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv16425 Modified Files: Tag: core28x shotcast_front.tpl Log Message: upgrading... Index: shotcast_front.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_shotcast/templates/subSilver/shotcast_front.tpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** shotcast_front.tpl 6 Jun 2007 23:21:16 -0000 1.1 --- shotcast_front.tpl 2 Oct 2007 05:04:39 -0000 1.1.2.1 *************** *** 14,18 **** <td class="row1" align="center" valign="middle" rowspan="2"> <!-- END switch_listeners_list_off --> ! <a href="javascript:void(0);" onClick="window.open('{S_MOREINFO}','','scrollbars=no,resizable=yes,width=350,height=200')"><img src="{SHOTCAST_IMG}" alt="{L_VERSION}" border="0" /></a> </td> <td class="row1" align="left"> --- 14,18 ---- <td class="row1" align="center" valign="middle" rowspan="2"> <!-- END switch_listeners_list_off --> ! <a href="javascript:void(0);" onClick="window.open('{S_MOREINFO}','','scrollbars=no,resizable=yes,width=350,height=112')"><img src="{SHOTCAST_IMG}" alt="{L_VERSION}" border="0" /></a> </td> <td class="row1" align="left"> *************** *** 27,33 **** <!-- END switch_user_logged_out --> <!-- BEGIN switch_user_logged_in --> ! [ <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_STATION}','','scrollbars=no,resizable=yes,width=350,height=200')">{L_CLICK_TO_LISTEN_STATION}</a> ] ! <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_WMP}','','scrollbars=no,resizable=yes,width=350,height=200')"><img src="{WMP_IMG}" alt="{L_CLICK_TO_LISTEN_WMP}" border="0" /></a> ! <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_REAL}','','scrollbars=no,resizable=yes,width=350,height=200')"><img src="{REAL_IMG}" alt="{L_CLICK_TO_LISTEN_REAL}" border="0" /></a> <!-- END switch_user_logged_in --> <!-- BEGIN switch_user_listening --> --- 27,33 ---- <!-- END switch_user_logged_out --> <!-- BEGIN switch_user_logged_in --> ! [ <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_STATION}','','scrollbars=no,resizable=yes,width=350,height=96')">{L_CLICK_TO_LISTEN_STATION}</a> ] ! <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_WMP}','','scrollbars=no,resizable=yes,width=350,height=96')"><img src="{WMP_IMG}" alt="{L_CLICK_TO_LISTEN_WMP}" border="0" /></a> ! <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_REAL}','','scrollbars=no,resizable=yes,width=350,height=96')"><img src="{REAL_IMG}" alt="{L_CLICK_TO_LISTEN_REAL}" border="0" /></a> <!-- END switch_user_logged_in --> <!-- BEGIN switch_user_listening --> |
|
From: OryNider <ory...@us...> - 2007-10-02 05:04:43
|
Update of /cvsroot/mxbb/mx_shotcast/templates/subSilver/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv16425/admin Modified Files: Tag: core28x shotcast_config_body.tpl Log Message: upgrading... Index: shotcast_config_body.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_shotcast/templates/subSilver/admin/shotcast_config_body.tpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** shotcast_config_body.tpl 6 Jun 2007 23:21:44 -0000 1.1 --- shotcast_config_body.tpl 2 Oct 2007 05:04:39 -0000 1.1.2.1 *************** *** 31,34 **** --- 31,38 ---- <td class="row2"><input type="text" maxlength="16" size="16" name="check_period" value="{CHECK_PERIOD}" /></td> </tr> + <tr> + <td class="row1"><span class="genmed">{L_FORCE_ONLINE}:</span></td> + <td class="row2"><span class="genmed"><input type="radio" {FORCE_ON_ENABLED} name="force_online" value="1" />{L_YES} <input type="radio" {FORCE_ON_DISABLED} name="force_online" value="0" />{L_NO}</span></td> + </tr> <tr> <td class="row1">{L_SHOW_LISTEN}<br><span class="gensmall">{L_SHOW_LISTEN_INFO}</span></td> |
|
From: OryNider <ory...@us...> - 2007-10-02 05:04:15
|
Update of /cvsroot/mxbb/mx_shotcast/templates/pubOry In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv16137 Modified Files: Tag: core28x shotcast_front.tpl Log Message: upgrading... Index: shotcast_front.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_shotcast/templates/pubOry/shotcast_front.tpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** shotcast_front.tpl 6 Jun 2007 23:21:15 -0000 1.1 --- shotcast_front.tpl 2 Oct 2007 05:04:10 -0000 1.1.2.1 *************** *** 14,18 **** <td class="row1" align="center" valign="middle" rowspan="2"> <!-- END switch_listeners_list_off --> ! <a href="javascript:void(0);" onClick="window.open('{S_MOREINFO}','','scrollbars=no,resizable=yes,width=350,height=200')"><img src="{SHOTCAST_IMG}" alt="{L_VERSION}" border="0" /></a> </td> <td class="row1" align="left"> --- 14,18 ---- <td class="row1" align="center" valign="middle" rowspan="2"> <!-- END switch_listeners_list_off --> ! <a href="javascript:void(0);" onClick="window.open('{S_MOREINFO}','','scrollbars=no,resizable=yes,width=350,height=112')"><img src="{SHOTCAST_IMG}" alt="{L_VERSION}" border="0" /></a> </td> <td class="row1" align="left"> *************** *** 27,33 **** <!-- END switch_user_logged_out --> <!-- BEGIN switch_user_logged_in --> ! [ <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_STATION}','','scrollbars=no,resizable=yes,width=350,height=200')">{L_CLICK_TO_LISTEN_STATION}</a> ] ! <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_WMP}','','scrollbars=no,resizable=yes,width=350,height=200')"><img src="{WMP_IMG}" alt="{L_CLICK_TO_LISTEN_WMP}" border="0" /></a> ! <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_REAL}','','scrollbars=no,resizable=yes,width=350,height=200')"><img src="{REAL_IMG}" alt="{L_CLICK_TO_LISTEN_REAL}" border="0" /></a> <!-- END switch_user_logged_in --> <!-- BEGIN switch_user_listening --> --- 27,33 ---- <!-- END switch_user_logged_out --> <!-- BEGIN switch_user_logged_in --> ! [ <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_STATION}','','scrollbars=no,resizable=yes,width=350,height=96')">{L_CLICK_TO_LISTEN_STATION}</a> ] ! <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_WMP}','','scrollbars=no,resizable=yes,width=350,height=96')"><img src="{WMP_IMG}" alt="{L_CLICK_TO_LISTEN_WMP}" border="0" /></a> ! <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_REAL}','','scrollbars=no,resizable=yes,width=350,height=96')"><img src="{REAL_IMG}" alt="{L_CLICK_TO_LISTEN_REAL}" border="0" /></a> <!-- END switch_user_logged_in --> <!-- BEGIN switch_user_listening --> |
|
From: OryNider <ory...@us...> - 2007-10-02 05:04:14
|
Update of /cvsroot/mxbb/mx_shotcast/templates/pubOry/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv16137/admin Modified Files: Tag: core28x shotcast_config_body.tpl Log Message: upgrading... Index: shotcast_config_body.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_shotcast/templates/pubOry/admin/shotcast_config_body.tpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** shotcast_config_body.tpl 6 Jun 2007 23:21:32 -0000 1.1 --- shotcast_config_body.tpl 2 Oct 2007 05:04:08 -0000 1.1.2.1 *************** *** 31,34 **** --- 31,38 ---- <td class="row2"><input type="text" maxlength="16" size="16" name="check_period" value="{CHECK_PERIOD}" /></td> </tr> + <tr> + <td class="row1"><span class="genmed">{L_FORCE_ONLINE}:</span></td> + <td class="row2"><span class="genmed"><input type="radio" {FORCE_ON_ENABLED} name="force_online" value="1" />{L_YES} <input type="radio" {FORCE_ON_DISABLED} name="force_online" value="0" />{L_NO}</span></td> + </tr> <tr> <td class="row1">{L_SHOW_LISTEN}<br><span class="gensmall">{L_SHOW_LISTEN_INFO}</span></td> |
|
From: OryNider <ory...@us...> - 2007-10-02 05:03:48
|
Update of /cvsroot/mxbb/mx_shotcast/templates/blueGray In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv15552 Modified Files: Tag: core28x shotcast_front.tpl Log Message: upgrading... Index: shotcast_front.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_shotcast/templates/blueGray/shotcast_front.tpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** shotcast_front.tpl 6 Jun 2007 23:20:47 -0000 1.1 --- shotcast_front.tpl 2 Oct 2007 05:03:41 -0000 1.1.2.1 *************** *** 14,18 **** <td class="row1" align="center" valign="middle" rowspan="2"> <!-- END switch_listeners_list_off --> ! <a href="javascript:void(0);" onClick="window.open('{S_MOREINFO}','','scrollbars=no,resizable=yes,width=350,height=200')"><img src="{SHOTCAST_IMG}" alt="{L_VERSION}" border="0" /></a> </td> <td class="row1" align="left"> --- 14,18 ---- <td class="row1" align="center" valign="middle" rowspan="2"> <!-- END switch_listeners_list_off --> ! <a href="javascript:void(0);" onClick="window.open('{S_MOREINFO}','','scrollbars=no,resizable=yes,width=350,height=112')"><img src="{SHOTCAST_IMG}" alt="{L_VERSION}" border="0" /></a> </td> <td class="row1" align="left"> *************** *** 27,33 **** <!-- END switch_user_logged_out --> <!-- BEGIN switch_user_logged_in --> ! [ <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_STATION}','','scrollbars=no,resizable=yes,width=350,height=200')">{L_CLICK_TO_LISTEN_STATION}</a> ] ! <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_WMP}','','scrollbars=no,resizable=yes,width=350,height=200')"><img src="{WMP_IMG}" alt="{L_CLICK_TO_LISTEN_WMP}" border="0" /></a> ! <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_REAL}','','scrollbars=no,resizable=yes,width=350,height=200')"><img src="{REAL_IMG}" alt="{L_CLICK_TO_LISTEN_REAL}" border="0" /></a> <!-- END switch_user_logged_in --> <!-- BEGIN switch_user_listening --> --- 27,33 ---- <!-- END switch_user_logged_out --> <!-- BEGIN switch_user_logged_in --> ! [ <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_STATION}','','scrollbars=no,resizable=yes,width=350,height=96')">{L_CLICK_TO_LISTEN_STATION}</a> ] ! <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_WMP}','','scrollbars=no,resizable=yes,width=350,height=96')"><img src="{WMP_IMG}" alt="{L_CLICK_TO_LISTEN_WMP}" border="0" /></a> ! <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_REAL}','','scrollbars=no,resizable=yes,width=350,height=96')"><img src="{REAL_IMG}" alt="{L_CLICK_TO_LISTEN_REAL}" border="0" /></a> <!-- END switch_user_logged_in --> <!-- BEGIN switch_user_listening --> |
|
From: OryNider <ory...@us...> - 2007-10-02 05:03:44
|
Update of /cvsroot/mxbb/mx_shotcast/templates/blueGray/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv15552/admin Modified Files: Tag: core28x shotcast_config_body.tpl Log Message: upgrading... Index: shotcast_config_body.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_shotcast/templates/blueGray/admin/shotcast_config_body.tpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** shotcast_config_body.tpl 6 Jun 2007 23:20:46 -0000 1.1 --- shotcast_config_body.tpl 2 Oct 2007 05:03:39 -0000 1.1.2.1 *************** *** 31,34 **** --- 31,38 ---- <td class="row2"><input type="text" maxlength="16" size="16" name="check_period" value="{CHECK_PERIOD}" /></td> </tr> + <tr> + <td class="row1"><span class="genmed">{L_FORCE_ONLINE}:</span></td> + <td class="row2"><span class="genmed"><input type="radio" {FORCE_ON_ENABLED} name="force_online" value="1" />{L_YES} <input type="radio" {FORCE_ON_DISABLED} name="force_online" value="0" />{L_NO}</span></td> + </tr> <tr> <td class="row1">{L_SHOW_LISTEN}<br><span class="gensmall">{L_SHOW_LISTEN_INFO}</span></td> |
|
From: OryNider <ory...@us...> - 2007-10-02 05:03:19
|
Update of /cvsroot/mxbb/mx_shotcast/templates/SwiftBlue In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv15272 Modified Files: Tag: core28x shotcast_front.tpl Log Message: upgrading... Index: shotcast_front.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_shotcast/templates/SwiftBlue/shotcast_front.tpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** shotcast_front.tpl 6 Jun 2007 23:20:32 -0000 1.1 --- shotcast_front.tpl 2 Oct 2007 05:03:14 -0000 1.1.2.1 *************** *** 14,18 **** <td class="row1" align="center" valign="middle" rowspan="2"> <!-- END switch_listeners_list_off --> ! <a href="javascript:void(0);" onClick="window.open('{S_MOREINFO}','','scrollbars=no,resizable=yes,width=350,height=200')"><img src="{SHOTCAST_IMG}" alt="{L_VERSION}" border="0" /></a> </td> <td class="row1" align="left"> --- 14,18 ---- <td class="row1" align="center" valign="middle" rowspan="2"> <!-- END switch_listeners_list_off --> ! <a href="javascript:void(0);" onClick="window.open('{S_MOREINFO}','','scrollbars=no,resizable=yes,width=350,height=112')"><img src="{SHOTCAST_IMG}" alt="{L_VERSION}" border="0" /></a> </td> <td class="row1" align="left"> *************** *** 27,33 **** <!-- END switch_user_logged_out --> <!-- BEGIN switch_user_logged_in --> ! [ <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_STATION}','','scrollbars=no,resizable=yes,width=350,height=200')">{L_CLICK_TO_LISTEN_STATION}</a> ] ! <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_WMP}','','scrollbars=no,resizable=yes,width=350,height=200')"><img src="{WMP_IMG}" alt="{L_CLICK_TO_LISTEN_WMP}" border="0" /></a> ! <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_REAL}','','scrollbars=no,resizable=yes,width=350,height=200')"><img src="{REAL_IMG}" alt="{L_CLICK_TO_LISTEN_REAL}" border="0" /></a> <!-- END switch_user_logged_in --> <!-- BEGIN switch_user_listening --> --- 27,33 ---- <!-- END switch_user_logged_out --> <!-- BEGIN switch_user_logged_in --> ! [ <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_STATION}','','scrollbars=no,resizable=yes,width=350,height=96')">{L_CLICK_TO_LISTEN_STATION}</a> ] ! <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_WMP}','','scrollbars=no,resizable=yes,width=350,height=96')"><img src="{WMP_IMG}" alt="{L_CLICK_TO_LISTEN_WMP}" border="0" /></a> ! <a href="javascript:void(0);" onClick="window.open('{S_LISTEN_REAL}','','scrollbars=no,resizable=yes,width=350,height=96')"><img src="{REAL_IMG}" alt="{L_CLICK_TO_LISTEN_REAL}" border="0" /></a> <!-- END switch_user_logged_in --> <!-- BEGIN switch_user_listening --> |